Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (4.8 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
    '',
58
    (r'^lang/$', 'synnefo.webproject.i18n.set_language')
59
)
60

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

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

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

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

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

    
104
    # also serve the media root after all explicitly defined paths
105
    # to be able to serve uploaded files
106
    urlpatterns += patterns(
107
        '', url(r'^%s(?P<path>.*)$' %
108
                settings.MEDIA_URL.lstrip("/"),
109
                'django.views.static.serve',
110
                {'document_root': settings.MEDIA_ROOT,
111
                 'show_indexes': getattr(
112
                     settings, 'WEBPROJECT_STATIC_SHOW_INDEXES', True)
113
                 }))
114

    
115
urlpatterns = extend_urls(urlpatterns, 'synnefo')
116

    
117

    
118
def handle500(request, template_name="500.html"):
119
    t = loader.get_template(template_name)
120
    context = Context({})
121
    try:
122
        context = RequestContext(request)
123
    except:
124
        pass
125
    return http.HttpResponseServerError(t.render(context))
126

    
127
handler500 = handle500