1.1 --- a/junoblog.py Wed Jul 22 02:05:16 2009 +0900 1.2 +++ b/junoblog.py Wed Jul 22 02:46:23 2009 +0900 1.3 @@ -14,13 +14,13 @@ 1.4 'use_debugger': True}) 1.5 1.6 User = model('User', name = 'string', 1.7 - title = 'Unicode', 1.8 + title = 'unicode', 1.9 password = 'string') 1.10 1.11 Blog = model('Blog', name = 'string', 1.12 - title = 'Unicode', 1.13 + title = 'unicode', 1.14 date = 'string', 1.15 - text = 'UnicodeText') 1.16 + text = 'unicodetext') 1.17 1.18 @get('/') 1.19 def home(web):