This project aims to provide an Eclipse-based integrated development environment (IDE) for developing applications that run on the Google App Engine.
For more information, go here:
... [More]
http://code.google.com/p/gaedt/wiki/WikiHome
Release NotesIssues Fixed/Implemented in Version 0.8.6 Issues Fixed/Implemented in Version 0.8.5 [Less]
Django RPX authentication backend that runs on Google App Engine with App Engine Patch.
Inspired by django-rpx and django-newrpx but with support for Google App Engine thru App Engine Patch.
You
... [More] can see a live demo running at http://bergsell.appspot.com/rpx_demo/. Note that the site might appear slow at first. The reason seems to be that the app engine unloads instances that haven't been used for some time. Subsequent request have reasonable performance.
20090618: Version 0.1 releasedIntroductionThis is the alpha release of the Django-RPX-GAE-GAE authentication backend. It is in alpha stage since it has only been tested with app-engine-patch-sample-1.0 that uses Django 1.0.2 and the mileage of this is limited.
Known issues/drawbacks that will be fixedNo timeout on request to RPX server. No code review has been done. There are a few todo in the code that needs to be resolved. For some reasons, I have had a few problems with the deployment, causing internal server errors at the app enging. Currently investigating, and hopefully the demo site running this version will be stable in the future (http://bergsell.appspot.com/rpx_demo/). Anyway, I think that you should be able to use this in prototype applications. Feedback is needed to be able to take this to a stable and secure backend.
Installation instructionsUnpack the rpx module in your project. Add rpx in the INSTALLED_APPS variable in your settings. Add rpx as an authentication backend:
AUTHENTICATION_BACKENDS = ('rpx.backends.RpxBackend',
'django.contrib.auth.backends.ModelBackend')Configure the settings in the settings.py in the rpx module. You need to set the RPXNOW_API_KEY, RPXNOW_REALM, and configure the list of trusted providers. Now it should be possible to use the rpx backend. In your templates you should be able to add the tag {% rpx_iframe next %} where the next param is the url to where you would like to redirect the user after a successful authentication. Remember to load the custom rpx_tags before using these tags:
{% load rpx_tags %}
{% rpx_iframe next %}It was previously possible to use the GLOBALTAGS settings, but it has been removed from the Google App Engine Patch since release 1.0.2 (2009-06-16)
The example below will send the user to /main/ from the login page upon successful authentication.
return render_to_response(request, 'login.html',
{'next': '/main/', })Feedback is highly appreciated. [Less]
Scrabble Tools is a website used by Scrabble players to validate words and to build new words. The source will be available here.
Scrabble tools runs on Google App Engine and uses the Django framework.
Artifical Intelligence Assistant (AIA)AIA is an assistant that can do tasks like keeping accounts, arranging TODOs and so on intelligently.AIA is a web site developed based on Google App Engine.
... [More]
More informatin in: http://aiassistant.appspot.com/chat/ [Less]