Skip to content

Commit

Permalink
remove chart module (see wq/django-rest-pandas#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
sheppard committed Jan 10, 2016
1 parent 4b32294 commit af12881
Show file tree
Hide file tree
Showing 11 changed files with 1 addition and 217 deletions.
Empty file removed contrib/chart/__init__.py
Empty file.
14 changes: 0 additions & 14 deletions contrib/chart/serializers.py

This file was deleted.

12 changes: 0 additions & 12 deletions contrib/chart/urls.py

This file was deleted.

32 changes: 0 additions & 32 deletions contrib/chart/views.py

This file was deleted.

3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,7 @@ def find_wq_packages(submodule):
tests_require=[
'psycopg2',
'wq.io>=0.5.1',
'rest_pandas>=0.4.0',
'Pillow',
'python-social-auth==0.2.7',
'python-social-auth',
],
)
Empty file removed tests/chart_app/__init__.py
Empty file.
14 changes: 0 additions & 14 deletions tests/chart_app/models.py

This file was deleted.

35 changes: 0 additions & 35 deletions tests/chart_app/views.py

This file was deleted.

1 change: 0 additions & 1 deletion tests/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
'tests.rest_app',
'tests.conflict_app',
'tests.patterns_app',
'tests.chart_app',
'tests.files_app',
)

Expand Down
98 changes: 0 additions & 98 deletions tests/test_chart.py

This file was deleted.

9 changes: 0 additions & 9 deletions tests/urls.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,12 @@
from django.conf.urls import patterns, include, url
from wq.db import rest
from wq.db.contrib.chart.urls import make_urls
from tests.chart_app import views

from tests.test_relate import create_reltype
create_reltype()

chart_urls = make_urls({
'timeseries': views.TimeSeriesView,
'scatter': views.ScatterView,
'boxplot': views.BoxPlotView,
})

rest.autodiscover()
urlpatterns = patterns(
'',
url(r'^', include(rest.router.urls)),
url(r'^chart', include(chart_urls)),
url(r'^search/', include('wq.db.contrib.search.urls')),
)

0 comments on commit af12881

Please sign in to comment.