Welcome to www.sevenever.com
Something about programming, Linux, geek...Added an issue.
And tinyMCE dose not work now in this Edit post page, why? my problem or tinyMCE's?
gae has changed a lot since last study last September, there are 5 item in "main" group in the gae admin page, but 2 of them (Cron jobs and Task Queues) never used. Beside this, the memcache api, XMPP api is the same status. It seems that a new study of gae is necessary.
in Hitachi, Ibaraki, Japan 2009/09/05
gae 中
如果是html page的GET和POST数据,self.request.get['name']获得的是unicode类型
如果是XHR(xmlhttprequest)的GET和POST数据,self.request.get['name']获得的是str类型(utf-8)
python 中调用父类同名方法的方法fromlimodou:
class TestBase(object):
def myMethod(self):
pass
class MyTest1(TestBase):
def myMethod(self):
super(MyTest1, self).myMethod()
#other process