Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Helios Server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TO
Helios Server
Commits
5ee278a9
Commit
5ee278a9
authored
15 years ago
by
Ben Adida
Browse files
Options
Downloads
Patches
Plain Diff
continuing updates for port to pure django
parent
3db21b4a
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
auth
+1
-1
1 addition, 1 deletion
auth
helios
+1
-1
1 addition, 1 deletion
helios
urls.py
+11
-2
11 additions, 2 deletions
urls.py
with
13 additions
and
4 deletions
auth
@
d533f092
Compare
8a5f879a
...
d533f092
Subproject commit
8a5f879af1f5532841e2289970e976139e9f0d56
Subproject commit
d533f0923d3495a8d8507bbff2e4b3a8062548b9
This diff is collapsed.
Click to expand it.
helios
@
0507b4e9
Compare
4acfe710
...
0507b4e9
Subproject commit
4acfe710ddb818a935a932f5d8361f35eb4d08d
e
Subproject commit
0507b4e9df82a271476bae7a66ca4e5e59f0ca0
e
This diff is collapsed.
Click to expand it.
urls.py
+
11
−
2
View file @
5ee278a9
# -*- coding: utf-8 -*-
from
django.conf.urls.defaults
import
*
from
django.contrib
import
admin
from
django.conf
import
settings
urlpatterns
=
patterns
(
''
,
urlpatterns
=
patterns
(
''
,
(
r
'
^auth/
'
,
include
(
'
auth.urls
'
)),
(
r
'
^helios/
'
,
include
(
'
helios.urls
'
)),
# SHOULD BE REPLACED BY APACHE STATIC PATH
(
r
'
static/auth/(?P<path>.*)$
'
,
'
django.views.static.serve
'
,
{
'
document_root
'
:
settings
.
ROOT_PATH
+
'
/auth/media
'
}),
(
r
'
static/helios/(?P<path>.*)$
'
,
'
django.views.static.serve
'
,
{
'
document_root
'
:
settings
.
ROOT_PATH
+
'
/helios/media
'
}),
(
r
'
static/(?P<path>.*)$
'
,
'
django.views.static.serve
'
,
{
'
document_root
'
:
settings
.
ROOT_PATH
+
'
/server_ui/media
'
}),
(
r
'
^
'
,
include
(
'
server_ui.urls
'
)),
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment