Work on updating eve_proxy for Django 1.4 and TZ support.

This commit is contained in:
2012-05-20 11:31:56 +01:00
parent c03989bd00
commit e1dc20ff2e
5 changed files with 45 additions and 41 deletions

View File

@@ -1,8 +1,10 @@
from django.conf.urls.defaults import *
from eve_proxy.views import EVEAPIProxyView
urlpatterns = patterns('eve_proxy.views',
# This view can be used just like EVE API's http://api.eve-online.com.
# Any parameters or URL paths are sent through the cache system and
# forwarded to the EVE API site as needed.
url(r'^', 'retrieve_xml', name='eve_proxy-retrieve_xml'),
url(r'^', EVEAPIProxyView.as_view(), name='eveproxy-apiproxy'),
)