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
82b4bc90
Commit
82b4bc90
authored
15 years ago
by
Ben Adida
Browse files
Options
Downloads
Patches
Plain Diff
continued porting
parent
6686e802
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
helios
+1
-1
1 addition, 1 deletion
helios
urls.py
+3
-1
3 additions, 1 deletion
urls.py
with
4 additions
and
2 deletions
helios
@
dc792231
Compare
8006892d
...
dc792231
Subproject commit
8006892dcb25be15a69210208bed027ba1280ed3
Subproject commit
dc7922317e63b9f7546ed21c923427eb865d09c2
This diff is collapsed.
Click to expand it.
urls.py
+
3
−
1
View file @
82b4bc90
...
...
@@ -7,8 +7,10 @@ urlpatterns = patterns(
''
,
(
r
'
^auth/
'
,
include
(
'
auth.urls
'
)),
(
r
'
^helios/
'
,
include
(
'
helios.urls
'
)),
# SHOULD BE REPLACED BY APACHE STATIC PATH
(
r
'
booth/(?P<path>.*)$
'
,
'
django.views.static.serve
'
,
{
'
document_root
'
:
settings
.
ROOT_PATH
+
'
/heliosbooth
'
}),
(
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
'
}),
...
...
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