diff --git a/VERSION b/VERSION index 86ad349e..409ab534 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.00.0 (2012-06-28 09:37:40) dev +Version 2.00.0 (2012-06-28 09:54:19) dev diff --git a/applications/examples/views/default/who.html b/applications/examples/views/default/who.html index 5f08ef53..9844856d 100644 --- a/applications/examples/views/default/who.html +++ b/applications/examples/views/default/who.html @@ -47,6 +47,7 @@
  • Christian Foster Howes (GAE support)
  • Christopher Smiga (Informix)
  • CJ Lazell (tester) +
  • Corne Dickens (import mechanism)
  • Craig Younkins (Security)
  • Daniel Lin (Taiwanese internationalization)
  • Dave Stoll (DowCommerce payment API) diff --git a/gluon/admin.py b/gluon/admin.py index df1912ee..3d80f9f5 100644 --- a/gluon/admin.py +++ b/gluon/admin.py @@ -7,6 +7,7 @@ Utility functions for the Admin application =========================================== """ import os +import site import sys import traceback import zipfile @@ -434,6 +435,7 @@ def upgrade(request, url='http://web2py.com'): def add_path_first(path): sys.path = [path]+[p for p in sys.path if (not p==path and not p==(path+'/'))] + site.addsitedir(path) def create_missing_folders(): if not global_settings.web2py_runtime_gae: