Statistics
| Branch: | Tag: | Revision:

root / snf-webproject / synnefo / webproject / urls.py @ a6b17d33

History | View | Annotate | Download (4.6 kB)

1
# Copyright 2011 GRNET S.A. All rights reserved.
2
#
3
# Redistribution and use in source and binary forms, with or
4
# without modification, are permitted provided that the following
5
# conditions are met:
6
#
7
#   1. Redistributions of source code must retain the above
8
#      copyright notice, this list of conditions and the following
9
#      disclaimer.
10
#
11
#   2. Redistributions in binary form must reproduce the above
12
#      copyright notice, this list of conditions and the following
13
#      disclaimer in the documentation and/or other materials
14
#      provided with the distribution.
15
#
16
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
# POSSIBILITY OF SUCH DAMAGE.
28
#
29
# The views and conclusions contained in the software and
30
# documentation are those of the authors and should not be
31
# interpreted as representing official policies, either expressed
32
# or implied, of GRNET S.A.
33

    
34
import os
35

    
36

    
37
# Import * in order to import the http exception handlers: handler*
38
try:
39
    from django.conf.urls.defaults import *
40
except ImportError:  # Django==1.4
41
    from django.conf.urls import *
42

    
43
from synnefo.util.entry_points import extend_urls
44
from django.utils.importlib import import_module
45
from django.template import Context, loader, RequestContext
46
from django import http
47
from django.conf import settings
48

    
49
urlpatterns = patterns('')
50

    
51
ROOT_REDIRECT = getattr(settings, 'WEBPROJECT_ROOT_REDIRECT', None)
52
if ROOT_REDIRECT:
53
    urlpatterns += patterns('django.views.generic.simple',
54
                            url(r'^$', 'redirect_to', {'url': ROOT_REDIRECT}))
55

    
56
urlpatterns += patterns('',
57
    (r'^lang/$', 'synnefo.webproject.i18n.set_language')
58
)
59

    
60
if getattr(settings, 'WEBPROJECT_SERVE_STATIC', settings.DEBUG):
61

    
62
    for module_name, ns in settings.STATIC_FILES.iteritems():
63
        module = import_module(module_name)
64
        app_dir = 'static'
65

    
66
        # hook defined that application contains media files in other than
67
        # ``static`` directory
68
        # (e.g. django.contrib.admin which contains media files in media dir)
69
        if type(ns) == tuple:
70
            app_dir = ns[0]
71
            ns = ns[1]
72

    
73
        static_root = os.path.join(os.path.dirname(module.__file__), app_dir)
74
        if ns:
75
            # app contains static files in <appname>/static/
76
            urlns = ns
77
            url_r = r'^%s%s/(?P<path>.*)$' % (settings.MEDIA_URL.lstrip("/"),
78
                                              urlns)
79
            urlpatterns += patterns('', url(url_r,
80
                 'django.views.static.serve',
81
                 {'document_root': static_root,
82
                  'show_indexes': getattr(settings,
83
                      'WEBPROJECT_STATIC_SHOW_INDEXES', True)}))
84

    
85
        else:
86
            # app contains static files in <appname>/static/<appname>
87
            for fpath in os.listdir(static_root):
88
                urlns = ns + fpath
89
                url_r = r'^%s%s/(?P<path>.*)$' % (settings.MEDIA_URL.lstrip("/"), urlns)
90
                static_root = os.path.join(static_root, urlns)
91
                urlpatterns += patterns('',  url(url_r,
92
                     'django.views.static.serve',
93
                     {'document_root': static_root,
94
                      'show_indexes': getattr(settings,
95
                          'WEBPROJECT_STATIC_SHOW_INDEXES', True)}))
96

    
97
    # also serve the media root after all explicitly defined paths
98
    # to be able to serve uploaded files
99
    urlpatterns += patterns('', url(r'^%s(?P<path>.*)$' % \
100
         settings.MEDIA_URL.lstrip("/"),
101
         'django.views.static.serve',
102
         {'document_root': settings.MEDIA_ROOT,
103
          'show_indexes': getattr(settings,
104
              'WEBPROJECT_STATIC_SHOW_INDEXES', True)}))
105

    
106
urlpatterns = extend_urls(urlpatterns, 'synnefo')
107

    
108

    
109
def handle500(request, template_name="500.html"):
110
    t = loader.get_template(template_name)
111
    context = Context({})
112
    try:
113
        context = RequestContext(request)
114
    except:
115
        pass
116
    return http.HttpResponseServerError(t.render(context))
117

    
118
handler500 = handle500