Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
2.2 KiB

16 years ago
16 years ago
  1. # -*- coding: utf-8 -*-
  2. # kate: space-indent on; indent-width 4; replace-tabs on;
  3. """
  4. * Copyright © 2009-2010, Michael "Svedrin" Ziegler <diese-addy@funzt-halt.net>
  5. *
  6. * Mumble-Django is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This package is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. """
  16. from django.conf.urls.defaults import url, patterns, include
  17. from django.conf import settings
  18. from views import EXT_DIRECT_PROVIDER
  19. from forms import EXT_FORMS_PROVIDER
  20. urlpatterns = patterns(
  21. 'mumble.views',
  22. ( r'api/', include(EXT_DIRECT_PROVIDER.urls) ),
  23. ( r'forms/', include(EXT_FORMS_PROVIDER.urls) ),
  24. ( r'(?P<server>\d+)/(?P<userid>\d+)/texture.png', 'showTexture' ),
  25. ( r'(?P<userid>\d+)/update_avatar', 'update_avatar' ),
  26. ( r'murmur/tree/(?P<server>\d+)', 'mmng_tree' ),
  27. ( r'mumbleviewer/(?P<server>\d+).xml', 'mumbleviewer_tree_xml' ),
  28. ( r'mumbleviewer/(?P<server>\d+).json', 'mumbleviewer_tree_json'),
  29. ( r'mobile/(?P<server>\d+)/?$', 'mobile_show' ),
  30. ( r'mobile/?$', 'mobile_mumbles' ),
  31. ( r'(?P<server>\d+).json', 'cvp_json' ),
  32. ( r'(?P<server>\d+).xml', 'cvp_xml' ),
  33. ( r'(?P<server>\d+)/?$', 'show' ),
  34. ( r'$', 'mumbles' ),
  35. )
  36. if settings.DEBUG or True:
  37. # The following is a fake, to not break old installations. You should
  38. # really serve this stuff through the web server directly.
  39. from os.path import join, dirname, abspath, exists
  40. mediadir = join( dirname(abspath(__file__)), 'media' )
  41. print mediadir
  42. urlpatterns.insert( 1, url(r'^media/(?P<path>.*)$',
  43. 'django.views.static.serve',
  44. {'document_root': mediadir, 'show_indexes': True} ),
  45. )