this is just a basic port of the tables into django models right now. there's some serious slowness in the state creation that i need to fix before this does anything, but i want to get this in a real database on a real linode before i go too much further, so here it is
14 lines
292 B
Python
14 lines
292 B
Python
"""
|
|
markov/urls.py --- url patterns for markov stuff
|
|
|
|
"""
|
|
|
|
from django.conf.urls import patterns, url
|
|
|
|
urlpatterns = patterns('markov.views',
|
|
url(r'^$', 'index', name='markov_index'),
|
|
url(r'^import/$', 'import_file', name='markov_import_file'),
|
|
)
|
|
|
|
# vi:tabstop=4:expandtab:autoindent
|