#    a copy of the License at
#
#         http://www.apache.org/licenses/LICENSE-2.0
#
#    Unless required by applicable law or agreed to in writing, software
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
#    License for the specific language governing permissions and limitations
#    under the License.

from django.conf.urls.defaults import patterns, url, include

from horizon.views.auth import LoginView

#Added by sunxin3 for allowing register from anonymous user
from horizon.dashboards.syspanel.registers.views import register_page

urlpatterns = patterns('horizon.views.auth',
    url(r'home/$', 'user_home', name='user_home'),
    url(r'auth/login/$', LoginView.as_view(), name='auth_login'),
    url(r'auth/logout/$', 'logout', name='auth_logout'),
    #Added by sunxin3 for new urlpatterns for register
    url(r'register/$', register_page, name='regiser'),
    url(r'auth/switch/(?P<tenant_id>[^/]+)/$', 'switch_tenants',
        name='auth_switch'))

urlpatterns += patterns('',
    url(r'^i18n/setlang/$', 'django.views.i18n.set_language',
        name="set_language"),
    url(r'^i18n/', include('django.conf.urls.i18n')))
Exemple #2
0
#    Unless required by applicable law or agreed to in writing, software
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
#    License for the specific language governing permissions and limitations
#    under the License.

from django.views.generic import TemplateView
from django.conf.urls.defaults import patterns, url, include
from django.conf import settings

from horizon.views.auth import LoginView


urlpatterns = patterns('horizon.views.auth',
    url(r'home/$', 'user_home', name='user_home'),
    url(r"^%s$" % settings.LOGIN_URL.lstrip('/'), LoginView.as_view(),
        name='auth_login'),
    url(r"^%s$" % settings.LOGOUT_URL.lstrip('/'), 'logout',
        name='auth_logout'),
    url(r'auth/switch/(?P<tenant_id>[^/]+)/$', 'switch_tenants',
        name='auth_switch'))

urlpatterns += patterns('',
    url(r'^i18n/setlang/$', 'django.views.i18n.set_language',
        name="set_language"),
    url(r'^i18n/', include('django.conf.urls.i18n')))

if settings.DEBUG:
    urlpatterns += patterns('',
        url(r'^qunit/$',
            TemplateView.as_view(template_name="horizon/qunit.html"),
Exemple #3
0
#
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
#    not use this file except in compliance with the License. You may obtain
#    a copy of the License at
#
#         http://www.apache.org/licenses/LICENSE-2.0
#
#    Unless required by applicable law or agreed to in writing, software
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
#    License for the specific language governing permissions and limitations
#    under the License.

from django.conf.urls.defaults import patterns, url, include

from horizon.views.auth import LoginView

urlpatterns = patterns(
    'horizon.views.auth', url(r'home/$', 'user_home', name='user_home'),
    url(r'auth/login/$', LoginView.as_view(), name='auth_login'),
    url(r'auth/logout/$', 'logout', name='auth_logout'),
    url(r'auth/switch/(?P<tenant_id>[^/]+)/$',
        'switch_tenants',
        name='auth_switch'))

urlpatterns += patterns(
    '',
    url(r'^i18n/setlang/$',
        'django.views.i18n.set_language',
        name="set_language"), url(r'^i18n/', include('django.conf.urls.i18n')))