On Mon, 2011-05-30 at 00:40 -0300, Lucas Meneghel Rodrigues wrote: > This patchset fixes bugs on the web interface code, and changes API > calls to make it work under Django 1.3, the latest stable version > of the web application development framework. Also, the latest versions > of gwt and gwt-incubator were used to compile and use the frontend code > with success. Therefore, the last patch bumps version numbers of all these > components.
I've just realized that I forgot to include the DB migration patch for this patchset. I'll publish a new one with the migration patch along with a branch on my personal git repo (git:github...lmr/autotest instead of git:github...autotest/autotest). Hold on a little longer :) Cheers, Lucas > Changes from v2: > > * Other bugs found post-v2 sending were fixed and I can't find any more > obvious bugs. I ask people copied on the email to test the patchset and > let me know whether it works for you guys. > > Eric Li (1): > Fix frontend afe readonly connection > > Lucas Meneghel Rodrigues (7): > Update admin site URL dispatcher to Django 1.3 > Removing get_from_clause() from custom query class > frontend/afe/model_logic.py: Rename validate_unique > frontend/tko/models.py: Fix calls to as_sql method > Adding afe custom database engine > Change web app to use new DB engine > external_packages: Bump version number requirements for web deps > > frontend/afe/model_logic.py | 19 +--------------- > frontend/afe/readonly_connection.py | 28 ++++++++++++------------ > frontend/db/backends/afe/base.py | 22 +++++++++++++++++++ > frontend/db/backends/afe/compiler.py | 32 > +++++++++++++++++++++++++++++ > frontend/db/backends/afe/creation.py | 1 + > frontend/db/backends/afe/introspection.py | 1 + > frontend/db/backends/afe/validation.py | 1 + > frontend/settings.py | 3 +- > frontend/tko/models.py | 7 ++++- > frontend/urls.py | 2 +- > utils/external_packages.py | 12 +++++----- > 11 files changed, 87 insertions(+), 41 deletions(-) > create mode 100644 frontend/db/__init__.py > create mode 100644 frontend/db/backends/__init__.py > create mode 100644 frontend/db/backends/afe/__init__.py > create mode 100644 frontend/db/backends/afe/base.py > create mode 100644 frontend/db/backends/afe/compiler.py > create mode 100644 frontend/db/backends/afe/creation.py > create mode 100644 frontend/db/backends/afe/introspection.py > create mode 100644 frontend/db/backends/afe/validation.py > _______________________________________________ Autotest mailing list [email protected] http://test.kernel.org/cgi-bin/mailman/listinfo/autotest
