Thursday, July 26, 2007

第1回Grails コードリーディング!

第1回Grails コードリーディング参加ました!
とても楽しかったです。やっと、本格的にコミュニティが始動です。
色々な人があつまり、今後のGrailsに期待しつつ、
今後も皆さんで勉強会を続けられることを祈って。

そして、Google GroupのGrails-Japanを活用するのもきまり。
http://groups.google.com/group/grails-ja
※前からGoogle GroupのGrails-Japanに参加されている方も、
是非、次回は、ご参加ください!
次回は、8/24(金)です。

来月、題材として使用することになった、kakutani氏のhttp://kakutani.com/trans/ociweb/jnbFeb2004.htmlの翻訳をすこし修正してPDFにした、例のものは、以下の置いておきます。
http://groups.google.com/group/grails-ja/web/groovy-little-book.pdf
Grailsの内容を追記途中です、
また更新したらお知らせします。

Labels:

Saturday, July 21, 2007

Json-lib 2.0 リリース

Json-lib 2.0 がリリースされました。
詳しくは、
http://www.jroller.com/aalmiray/entry/json_lib_2_0_released

POGOサポートのドキュメント
http://json-lib.sourceforge.net/groovy.html

Labels:

Thursday, July 12, 2007

grails に関する誤解の・・・・

まだ続いてた。
http://www.infoq.com/news/2007/07/grails-misconceptions

Labels:

Friday, July 06, 2007

ConfigSlurper

ConfigSlurperを少しだけさわってみたので、メモしておきます。


def config = new ConfigSlurper()
def myconfig = '''
template{
id=1
x=0
y=0
style{
line=1
color="red"
}
}
'''
def yourconfig = '''
template{
id=5
x=15
y=25
}
'''
def mine = new ConfigSlurper().parse(myconfig)
def yours = new ConfigSlurper().parse(yourconfig)
mine = mine.merge(yours)

println mine

結果: ["template":["id":5, "x":15, "y":25, "style":["line":1, "color":"red"]]]

Cool!
Acegiのコンフィグは、これに決まり。そろそろ、改良します。

ConfigSlurper
http://docs.codehaus.org/display/GROOVY/ConfigSlurper

Labels: ,

grails に関する五つの誤解

grails に関する五つの誤解 必ず読みましょう!
http://graemerocher.blogspot.com/2007/07/5-more-misconceptions-about-grails.html
山田さんによる翻訳
http://blogs.metabolics.co.jp/pebble/grails/2007/07/06/1183681680000.html

Marc Palmer氏による、grails に関する10の誤解
http://www.anyware.co.uk/2005/2007/07/02/10-common-misconceptions-about-grails/

Labels:

Groovy 1.1-beta-2 リリース

Groovy 1.1 beta-2がリリースされました。
詳しくは、
http://docs.codehaus.org/display/GROOVY/2007/07/05

Labels: