AexpressAboutAexpress (read: App Express) is an attempt of building a collection of reusable mini-apps that can easily be plugged into new web applications that use django and run on the Google App
... [More] Engine. It's about simplifying the development process by adding components that are tested and working well in other projects.
Requirementsapp-engine-patch is the port of django to the Google App Engine that is used as the basis, including its snippet library 'ragendja'.
SourceWe are using the distributed version control system Mercurial, with a main repository: http://bitbucket.org/fabian/aexpress/
Inspired byIt's inspired by the Pinax Project, which is a collection of reusable apps for django running on relational databases (so far). [Less]
OpenID Consumer/Relying Party (RP) for Google App Engine Django projects implemented as a Django app.
Derived by Wesley Tanaka from Brian Ellin's WSGI demand.openid.net OpenID consumer.
... [More]
Patches/suggestions appreciated.
Join the discussion group
To install with a new Google App Engine project:
Get the Google App Engine Helper for Django. You will need a version which works with the Django bundled with the latest version of the App Engine SDK. Get the google-app-engine-django-openid source (using the Source tab above) and copy it into the same directory, overwriting urls.py from the App Engine Helper distribution add 'openidgae' to INSTALLED_APPS in settings.py add 'openidgae.middleware.OpenIDMiddleware' to MIDDLEWARE_CLASSES in settings.py To install with an existing Google App Engine project:
get the openid and openidgae directories from the subversion respository and put them in your main application directory Modify your urls.py using this urls.py as an example add 'openidgae' to INSTALLED_APPS in settings.py add 'openidgae.middleware.OpenIDMiddleware' to MIDDLEWARE_CLASSES in settings.py To get a copy of the latest svn trunk without any polluting .svn directories, you should be able to do:
svn export http://google-app-engine-django-openid.googlecode.com/svn/trunk/ google-app-engine-django-openid-export [Less]