This repository has been archived by the owner on Jul 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
49 changed files
with
488 additions
and
3,382 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
|
||
sqlite3 ../local_dbs/django_db/db.sqlite "DELETE FROM auth_permission; DELETE FROM SQLITE_SEQUENCE WHERE name='auth_permission';" | ||
sqlite3 ../local_dbs/django_db/db.sqlite "DELETE FROM django_session; DELETE FROM SQLITE_SEQUENCE WHERE name='django_session';" | ||
sqlite3 ../local_dbs/django_db/db.sqlite "DELETE FROM reversion_revision; DELETE FROM SQLITE_SEQUENCE WHERE name='reversion_revision';" | ||
sqlite3 ../local_dbs/django_db/db.sqlite "DELETE FROM reversion_version; DELETE FROM SQLITE_SEQUENCE WHERE name='reversion_version';" | ||
sqlite3 ../local_dbs/django_db/db.sqlite "DELETE FROM user_management_concepts; DELETE FROM SQLITE_SEQUENCE WHERE name='user_management_concepts';" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,34 @@ | ||
Django==1.6 | ||
Django==1.8 | ||
Flask==0.10.1 | ||
Flask-Cache==0.12 | ||
Jinja2==2.7.1 | ||
Markdown==2.3.1 | ||
MarkupSafe==0.18 | ||
Pillow==2.3.0 | ||
South==0.8.4 | ||
Werkzeug==0.9.4 | ||
Whoosh==2.5.4 | ||
Flask-Cache==0.13.1 | ||
Jinja2==2.7.3 | ||
Markdown==2.6.2 | ||
MarkupSafe==0.23 | ||
Pillow==2.8.1 | ||
Werkzeug==0.10.4 | ||
Whoosh==2.7.0 | ||
beautifulsoup4==4.3.2 | ||
bleach==1.2.2 | ||
bleach==1.4.1 | ||
coverage==3.7.1 | ||
django-appconf==0.6 | ||
django-compressor==1.3 | ||
django-devserver==0.7.0 | ||
-e git+https://github.com/toastdriven/django-haystack.git@a3a2fc3a385ea35e76941482bf18460724b6421c#egg=django_haystack-master | ||
django-appconf==1.0.1 | ||
django-compressor==1.5 | ||
django-devserver==0.8.0 | ||
django-haystack==2.3.1 | ||
django-lazysignup==0.12.2 | ||
django-reversion==1.8.0 | ||
django-simple-captcha==0.4.0 | ||
django-tastypie==0.11.0 | ||
html5lib==0.95 | ||
django-reversion==1.8.6 | ||
django-simple-captcha==0.4.5 | ||
-e git+https://github.com/django-tastypie/django-tastypie@256ebe1de9a78dfb5d4d6e938b813cf4c5c4ac1b#egg=django_tastypie-master | ||
html5lib==0.999 | ||
ipdb==0.8 | ||
ipython==1.2.1 | ||
itsdangerous==0.23 | ||
nose==1.3.0 | ||
numpy==1.9 | ||
pandas==0.13.1 | ||
python-dateutil==2.2 | ||
ipython==3.1.0 | ||
itsdangerous==0.24 | ||
nose==1.3.6 | ||
numpy==1.9.2 | ||
pandas==0.16.0 | ||
python-dateutil==2.4.2 | ||
python-mimeparse==0.1.4 | ||
pytz==2014.2 | ||
requests==2.2.1 | ||
selenium==2.39.0 | ||
six==1.4.1 | ||
pytz==2015.2 | ||
requests==2.6.0 | ||
selenium==2.45.0 | ||
six==1.9.0 | ||
wsgiref==0.1.2 |
Oops, something went wrong.