diff --git a/Makefile b/Makefile index 04603405..eea56612 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ update: echo "remember that pymysql was tweaked" src: ### Use semantic versioning - echo 'Version 2.9.1-beta+timestamp.'`date +%Y.%m.%d.%H.%M.%S` > VERSION + echo 'Version 2.9.1-stable+timestamp.'`date +%Y.%m.%d.%H.%M.%S` > VERSION ### rm -f all junk files make clean ### clean up baisc apps diff --git a/VERSION b/VERSION index 71d5f39f..325e38e5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.9.1-beta+timestamp.2014.02.27.09.32.37 +Version 2.9.1-stable+timestamp.2014.02.28.18.37.13 diff --git a/applications/welcome/models/db.py b/applications/welcome/models/db.py index b3b7ab28..75aac0f0 100644 --- a/applications/welcome/models/db.py +++ b/applications/welcome/models/db.py @@ -16,7 +16,7 @@ else: ## connect to Google BigTable (optional 'google:datastore://namespace') db = DAL('google:datastore') ## store sessions and tickets there -session.connect(request, response, db=db) + session.connect(request, response, db=db) ## or store session in Memcache, Redis, etc. ## from gluon.contrib.memdb import MEMDB ## from google.appengine.api.memcache import Client diff --git a/applications/welcome/models/menu.py b/applications/welcome/models/menu.py index b7a2dbb8..7994b049 100644 --- a/applications/welcome/models/menu.py +++ b/applications/welcome/models/menu.py @@ -126,15 +126,7 @@ def _(): (T('Live Chat'), False, 'http://webchat.freenode.net/?channels=web2py'), ]), - (T('Plugins'), False, None, [ - ('plugin_wiki', False, - 'http://web2py.com/examples/default/download'), - (T('Other Plugins'), False, - 'http://web2py.com/plugins'), - (T('Layout Plugins'), - False, 'http://web2py.com/layouts'), - ]) - ] + (T('Plugins'), False, 'http://web2py.com/plugins')] )] if DEVELOPMENT_MENU: _()