~affinity/zeitgeist-affinity/django-implementation

« back to all changes in this revision

Viewing changes to music/urls.py

  • Committer: Manish Sinha
  • Date: 2011-04-19 21:17:27 UTC
  • Revision ID: manishsinha@ubuntu.com-20110419211727-c5g6u5u59kzwpafz
Added quering support in music

* Added quering support in music project
* Fixed the _icontains regex search
* Fixed the music/urls.py to redirect properly
* Updated README accordingly

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
urlpatterns = patterns('affinity.music.views',
7
7
    # Example:
8
 
    (r'^$', Resource(MusicHandler)),
 
8
    (r'^$', 'index'),
 
9
    (r'^log$', Resource(MusicHandler)),
9
10
)