2010/02/08
The First Step of Rebooting
GAEO has started rebooting. Now you can checkout the rebooted code from the new Mercurial repository (check out here). Feel free to report us feedbacks or bugs. By the way, the new home page is also on the way. Please look forward to it.
2010/01/07
GAEO Is Going To Reboot
Hey guys,
Sorry for that there's no updates on GAEO framework for a long time.
However, we're trying to REBOOT(actually, re-design) this framework.
The new version of GAEO will be 0.5. The newer version will be more light and flexible.
I cannot promise that the old application could work perfectly with new GAEO,
but we try to give you a better one. Please looking forward to it.
The GAEO Framework Leader,
ericsk
Sorry for that there's no updates on GAEO framework for a long time.
However, we're trying to REBOOT(actually, re-design) this framework.
The new version of GAEO will be 0.5. The newer version will be more light and flexible.
I cannot promise that the old application could work perfectly with new GAEO,
but we try to give you a better one. Please looking forward to it.
The GAEO Framework Leader,
ericsk
2009/08/31
GAEO 0.3 Released!
I'm glad to announce that gaeo has new version-- 0.3. In this version, some features are added. You can see what are added/removed in the Changelog.
If you are interested in GAEO, please upgrade to 0.3 version and feel free to issue us any problem.
If you are interested in GAEO, please upgrade to 0.3 version and feel free to issue us any problem.
2009/05/20
0.3 Beta is out
We're glad to announce that GAEO 0.3 has released a beta version (link). In this release, we've fixed some bugs and added some features.
before_save and after_save hook in BaseModel
Now, you can overridebefore_saveorafter_savemethod in a BaseModel in order to hook the save (put) method. Ifbefore_savereturns aFalse, the data won't be put in Datastore.
For example,....
class Bar(BaseModel):
.....
def before_save(self):
is_valid = # check the attributes
return is_validflash (dict) object support
You can temporarily put something between actions through theflashobject in a controller. For example:class Foo(BaseController):
....
def create(self):
....
self.flash['message'] = 'Creation Done'
....
def show(self):
msg = self.flash.get('message', '')
...
2009/04/18
GAEO Talk in OSDC.tw
I've given a GAEO talk at OSDC (Open Source Developer Conference) in Taiwan. Here is the slide.
Slide Link
Slide Link
2009/04/07
GAEO 0.3 Alpha 1
I'm glad to announce that GAEO has been released a 0.3-alpha-1 version. You can download it from here.
In GAEO 0.3, the BaseView class is added and there will be an instance as a member of BaseController. From GAEO 0.3 on, the render process is handled by the BaseView object. The templates value will be also passed to the BaseView object. If you want to upgrade your application from the previous versions (before 0.3), you have to notice the changelog in the GAEO pacakage.
Send your feedback in our group. We want to hear from you. :-)
In GAEO 0.3, the BaseView class is added and there will be an instance as a member of BaseController. From GAEO 0.3 on, the render process is handled by the BaseView object. The templates value will be also passed to the BaseView object. If you want to upgrade your application from the previous versions (before 0.3), you have to notice the changelog in the GAEO pacakage.
Send your feedback in our group. We want to hear from you. :-)
2009/01/12
GAEO Doc in Japanese
Thank Tetsunosuke for helping make the GAEO documents in Japanese.
His work locates here.
どうもありがとうございます!
His work locates here.
どうもありがとうございます!
Tags:
documentation,
i18n
Subscribe to:
Posts (Atom)