1/11/2010

Phillipine National Railways (PNR) Train Schedule

Tutuban to Bicutan
0605
0655
0725
0820
1205
1535
1650
1720
1735

Bicutan to Tutuban
0605
0650
0745
0815
0905
1250
1620
1735
1810

12/13/2009

Community Builder Password Verification

If you have used the community builder, try checking their password verification. The info message tells us that passwords should not contain spaces but it only trims the spaces preceding and ending your input.

e.g.
_ _ _ password _ _ _ will be trimmed to password
_ _ _ pass_word _ _ _ will be accepted and be trimmed to pass_word

The password field accepts spaces after all.

10/04/2009

Google App Engine and Grails 1.2-M2

When I was trying to create my first Google Wave robot using Grails, I noticed that Grails 1.2-M2 is not compatible with the Google App Engine. Reverting to Grails 1.1.1 made the example in http://www.grails.org/plugin/app-engine work.

Note: In the site, appcfg.sh's permissions must be changed to be able to use $APPENGINE_HOME/bin/appcfg.sh update ./target/war

9/06/2009

Customizing Grails/Groovy Drop-Down List

Grails is a powerful framework based on Groovy. Since most of the basic CRUD operations are done by Grails, we sometimes want to edit some of the fields generated in the GSP specially if it is a drop-down list.

There are two ways to edit the drop-down list:
1. By overriding the toString function of the domain
class Student {
String firstName
String lastName

String toString(){
StringBuilder sb = new StringBuilder()
sb.append(firstName)
sb.append(" ")
sb.append(lastName)
return sb.toString()
}
}
Without touching the GSPs, the drop-down list will show the first names and last names of the students and not the default package.domain : id (e.g. Student : 1)

2. By setting the attribute optionValue in g:select tag
optionValue="firstName"
will show only the first names of the students. If you want to show the first names and last names, you may opt to use
optionValue="${{it.firstName + ' ' + it.lastName}}"
Note that character/s can be inserted for each iteration inside single quotes.