-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some code cleanup, PEP8 updates, updated requirements.
git-svn-id: https://projects.ninemoreminutes.com/svn/django-datatables/trunk@42 d7121a62-6ae3-45d9-917d-ff5cd7ed6f65
- Loading branch information
Showing
12 changed files
with
188 additions
and
75 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
__version__ = '0.2a0' | ||
|
||
from columns import * | ||
from datatable import * | ||
from decorators import * | ||
|
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
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,21 +1,27 @@ | ||
# MacOS with Python 2.6.6 from python.org may need to use tox==1.4.2 with | ||
# PIP Requirements File (for a development/build environment) | ||
# virtualenv==1.8.2 and pip==1.2.1 instead. | ||
argparse==1.2.1 | ||
coverage==3.6 | ||
coverage==3.7 | ||
decorator==3.4.0 | ||
distribute==0.6.36 | ||
Django==1.5.1 | ||
django-debug-toolbar==0.9.4 | ||
django-devserver==0.6.2 | ||
django-extensions==1.1.1 | ||
django-fortunecookie==0.1.3 | ||
https://github.com/gregmuellegger/django-setuptest/tarball/master#egg=django-setuptest | ||
django-sortedm2m==0.5.0 | ||
docutils==0.10 | ||
Jinja2==2.6 | ||
pep8==1.4.5 | ||
py==1.4.13 | ||
distribute==0.7.3 | ||
django-debug-toolbar==0.11.0 | ||
django-devserver==0.7.0 | ||
django-extensions==1.2.5 | ||
django-fortunecookie==0.1.5 | ||
django-setuptest==0.1.4 | ||
django-sortedm2m==0.6.0 | ||
Django==1.5.5 | ||
docutils==0.11 | ||
Jinja2==2.7.1 | ||
MarkupSafe==0.18 | ||
pep8==1.4.6 | ||
pip-tools==0.3.4 | ||
py==1.4.18 | ||
Pygments==1.6 | ||
Sphinx==1.2b1 | ||
South==0.7.6 | ||
tox==1.4.3 | ||
virtualenv==1.9.1 | ||
six==1.4.1 | ||
South==0.8.4 | ||
Sphinx==1.2b3 | ||
sqlparse==0.1.10 | ||
tox==1.6.1 | ||
virtualenv==1.10.1 |
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,12 +1,12 @@ | ||
# PIP Requirements File (for automated testing with Tox, excludes Django) | ||
argparse | ||
coverage | ||
decorator | ||
distribute | ||
django-debug-toolbar | ||
django-devserver | ||
django-extensions | ||
django-fortunecookie>=0.1.1 | ||
https://github.com/gregmuellegger/django-setuptest/tarball/master#egg=django-setuptest | ||
django-sortedm2m | ||
South | ||
argparse==1.2.1 | ||
coverage==3.7 | ||
decorator==3.4.0 | ||
distribute==0.7.3 | ||
django-debug-toolbar==0.11.0 | ||
django-devserver==0.7.0 | ||
django-extensions==1.2.5 | ||
django-fortunecookie==0.1.5 | ||
django-setuptest==0.1.4 | ||
django-sortedm2m==0.6.0 | ||
South==0.8.4 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# Django | ||
from django.conf.urls import patterns, include, url | ||
|
||
urlpatterns = patterns('test_app.views', *[ | ||
|
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
Oops, something went wrong.