Lots of changes \
commit166d5cba1c000a566bc669ff6a2d003c340e5ee2
authorNikhil Rao <ncrao@google.com>
Tue, 31 Aug 2010 14:45:39 +0000 (31 07:45 -0700)
committerNikhil Rao <ncrao@google.com>
Tue, 31 Aug 2010 14:46:56 +0000 (31 07:46 -0700)
tree90b385975c4917678d7fa15484abc6f0acac4ea4
parent28356a0c603d8db829471f6eb3dc6613080659aa
Lots of changes \

- Added flash support
- Fixed templates to reflect model reference correctly
- Added templates to submit city, location
67 files changed:
danielfm-django-flash-8cde4bf/AUTHORS [new file with mode: 0644]
danielfm-django-flash-8cde4bf/LICENSE [new file with mode: 0644]
danielfm-django-flash-8cde4bf/README.rst [new file with mode: 0644]
danielfm-django-flash-8cde4bf/doc/source/_templates/layout.html [new file with mode: 0644]
danielfm-django-flash-8cde4bf/doc/source/changelog.rst [new file with mode: 0644]
danielfm-django-flash-8cde4bf/doc/source/conf.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/doc/source/configuration.rst [new file with mode: 0644]
danielfm-django-flash-8cde4bf/doc/source/custom_codecs.rst [new file with mode: 0644]
danielfm-django-flash-8cde4bf/doc/source/custom_storages.rst [new file with mode: 0644]
danielfm-django-flash-8cde4bf/doc/source/getting_involved.rst [new file with mode: 0644]
danielfm-django-flash-8cde4bf/doc/source/index.rst [new file with mode: 0644]
danielfm-django-flash-8cde4bf/doc/source/installation.rst [new file with mode: 0644]
danielfm-django-flash-8cde4bf/doc/source/modules/codec/index.rst [new file with mode: 0644]
danielfm-django-flash-8cde4bf/doc/source/modules/codec/json_impl.rst [new file with mode: 0644]
danielfm-django-flash-8cde4bf/doc/source/modules/codec/json_zlib_impl.rst [new file with mode: 0644]
danielfm-django-flash-8cde4bf/doc/source/modules/codec/pickle_impl.rst [new file with mode: 0644]
danielfm-django-flash-8cde4bf/doc/source/modules/context_processors.rst [new file with mode: 0644]
danielfm-django-flash-8cde4bf/doc/source/modules/decorators.rst [new file with mode: 0644]
danielfm-django-flash-8cde4bf/doc/source/modules/index.rst [new file with mode: 0644]
danielfm-django-flash-8cde4bf/doc/source/modules/middleware.rst [new file with mode: 0644]
danielfm-django-flash-8cde4bf/doc/source/modules/models.rst [new file with mode: 0644]
danielfm-django-flash-8cde4bf/doc/source/modules/storage/cookie.rst [new file with mode: 0644]
danielfm-django-flash-8cde4bf/doc/source/modules/storage/index.rst [new file with mode: 0644]
danielfm-django-flash-8cde4bf/doc/source/modules/storage/session.rst [new file with mode: 0644]
danielfm-django-flash-8cde4bf/doc/source/usage.rst [new file with mode: 0644]
danielfm-django-flash-8cde4bf/ez_setup.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/fabfile.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/setup.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/__init__.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/codec/__init__.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/codec/json_impl.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/codec/json_zlib_impl.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/codec/pickle_impl.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/context_processors.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/decorators.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/middleware.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/models.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/storage/__init__.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/storage/cookie.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/storage/session.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/tests/__init__.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/tests/codec.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/tests/context_processors.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/tests/decorators.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/tests/models.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/tests/storage.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/tests/suite.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/tests/testproj/__init__.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/tests/testproj/app/__init__.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/tests/testproj/app/models.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/tests/testproj/app/tests.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/tests/testproj/app/urls.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/tests/testproj/app/views.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/tests/testproj/manage.py [new file with mode: 0755]
danielfm-django-flash-8cde4bf/src/djangoflash/tests/testproj/media/test.css [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/tests/testproj/settings.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/tests/testproj/templates/simple.html [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/tests/testproj/urls.py [new file with mode: 0644]
danielfm-django-flash-8cde4bf/src/djangoflash/views.py [new file with mode: 0644]
viper/djangoflash [new symlink]
viper/listing/views.py
viper/settings.py
viper/templates/layout/base.html
viper/templates/listing/index.html
viper/templates/listing/submit_city.html [new file with mode: 0644]
viper/templates/listing/submit_location.html [new file with mode: 0644]
viper/viper.db