Ted Naleid

2,631
reputation
211 views

Registered User

name Ted Naleid
member for 1 year
seen 30 mins ago
website
location US
age
Dec
13
accepted Extracting a Date from “the meeting is on 12-DEC-2009 at 13:00” with Groovy
Dec
13
answered Extracting a Date from “the meeting is on 12-DEC-2009 at 13:00” with Groovy
Dec
12
answered Grails startup is slow
Dec
10
answered Can you have too much of “dynamic” in dynamic languages?
Dec
4
awarded  Notable Question
Dec
1
revised How can I add common actions to controllers without using inheritance?
switched to using a closure rather than a method as per OP question
Dec
1
answered How can I add common actions to controllers without using inheritance?
Nov
17
comment How can I get this snippet to work?
the resolve strategy doesn't only work with properties, otherwise calling "println size()" in the closure wouldn’t work, but it does. This is a groovy bug and a JIRA ticket should be opened on it. def given(array,closure) { closure.resolveStrategy = Closure.DELEGATE_FIRST closure.delegate = array closure() } given([1,2,3,4,5]) { assert 5 == size() assert [5] == findAll { it > 4} }
Nov
14
answered Adding a variable to all views in grails
Nov
7
awarded  Popular Question
Nov
6
answered mercurial: test whether a branch contains a changeset
Nov
1
revised Grails Acegi plugin lost password
typo
Oct
31
comment Grails Acegi plugin lost password
This is a good starting implementation. One potential problem with it is that it automatically resets the password, even if someone else requested it, so there's the potential for a malicious user to continually hit "reset password" and change the user's password without them actually wanting it changed (though they'd still get the e-mail). We did something like this, but instead had a table that held one time use tokens with a short time to live that are e-mailed to reset a password. If the token isn't used, the password is unchanged. Only one token in the table per user maximum.
Oct
31
answered Grails Acegi plugin lost password
Oct
25
comment recommendation for choosing a new web development stack
just noticed that you mentioned the play framework in your post. I'd still suggest trying out grails using a quick prototype.
Oct
25
answered recommendation for choosing a new web development stack
Oct
20
answered A simple framework for Google App Engine (like Sinatra)?
Oct
7
answered Triple single quote strings in Groovy - Should the resulting string contain extra spaces?
Sep
29
revised groovy closure variable increment
added meta class solution
Sep
29
answered groovy closure variable increment
Sep
23
answered Groovy list.sort by first, second then third elements
Sep
23
answered Groovy property definition
Sep
18
answered Grails: Supplying Data to a Global UI Element
Sep
18
comment Finding the first match - alternative to DomainClass.findAll()[0]
You could expand this pretty easily in a plugin/bootstrap by adding a zero arg find() to each domain classes metaclass that simply calls your method
Sep
16
awarded  Yearling
Aug
31
answered Grails controller methods
Aug
28
comment what can be the regex for the following string
In groovy 1.6, findAll is idiomatic for using regular expressions, much nicer than the old matcher stuff. theString.findAll(/\b(abc_\w*)\b/) results in a list of matches in theString.
Aug
26
comment Grails auto reload functionality in run-app on a custom environment
Those don't get auto-loaded for you anyway? Weird, that works fine for me even without the disable.auto.recompile. Do you have something cached? If you're using firefox hit cmd-shift-R (or ctl-shift-R on windows) to reload and bypass the cache.
Aug
25
answered Grails auto reload functionality in run-app on a custom environment
Aug
23
accepted Using Mercurial, is there an easy way to diff my working copy with the tip file in the default remote repository
Aug
20
answered [grails] how to create dummy data for unit test ?
Aug
17
accepted How do I get access to domain objects from a Quartz job?
Aug
17
answered How do I get access to domain objects from a Quartz job?
Jul
28
accepted mockForConstraintsTests abstract groovy class
Jul
26
comment What’s the best way to build a queue for long-running jobs in a Grails app?
It is definitely more complex. The main benefits would be around some of the monitoring and polling capabilities that your question alluded to some requirements around. Lots of this kind of stuff is solved in the JMS world, but there is more setup/maintenance around it. It really depends on how "enterprisey" your requirements are. If you don't care much about monitoring or what happens if your container goes down while it's processing, then I'd do something simpler. Just one potential option.
Jul
26
answered What’s the best way to build a queue for long-running jobs in a Grails app?
Jul
22
accepted Using static “hasOne” property in Grails controller class
Jul
22
answered Using static “hasOne” property in Grails controller class
Jul
20
accepted Best way to create an Admin section in Grails
Jul
17
comment Best way to create an Admin section in Grails
Nope, just let it know where the plugin is on your local disk. Here are the contents of my grails-app/conf/BuildConfig.groovy file in an application that I have my "domain" plugin installed into: grails.plugin.location.domain = "../domain" It automatically adds all of the necessary stuff to my classpath from that domain plugin when running/packaging/warring the app. (weird formatting on comments hopefully that makes sense)
Jul
17
answered Best way to create an Admin section in Grails
Jul
11
answered mockForConstraintsTests abstract groovy class
Jul
11
accepted Unit testing Abstract classes in Groovy
Jul
11
answered Unit testing Abstract classes in Groovy
Jul
8
answered Continuously poll a REST service in Grails
Jul
1
awarded  Nice Answer
Jun
30
answered How come the unix locate command still shows files/folders that aren’t there any more?
Jun
27
awarded  
Jun
25
awarded  Nice Answer
Jun
24
answered Grails validation of a list objects