Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
swh-web
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Platform
Development
swh-web
Commits
99167d94
Commit
99167d94
authored
9 years ago
by
Antoine R. Dumont
Browse files
Options
Downloads
Patches
Plain Diff
Mark the html page to be rendered as html ones
parent
612c7a23
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
swh/web/ui/controller.py
+7
-0
7 additions, 0 deletions
swh/web/ui/controller.py
with
7 additions
and
0 deletions
swh/web/ui/controller.py
+
7
−
0
View file @
99167d94
...
...
@@ -9,6 +9,9 @@ import json
from
flask
import
render_template
,
request
,
flash
from
flask
import
make_response
from
flask.ext.api.decorators
import
set_renderers
from
flask.ext.api.renderers
import
HTMLRenderer
from
swh.core.hashutil
import
ALGORITHMS
from
swh.web.ui.main
import
app
from
swh.web.ui
import
service
...
...
@@ -20,6 +23,7 @@ hash_filter_keys = ALGORITHMS
@app.route
(
'
/
'
)
@set_renderers
(
HTMLRenderer
)
def
main
():
"""
Home page
...
...
@@ -31,11 +35,13 @@ def main():
@app.route
(
'
/about
'
)
@set_renderers
(
HTMLRenderer
)
def
about
():
return
render_template
(
'
about.html
'
)
@app.route
(
'
/search
'
)
@set_renderers
(
HTMLRenderer
)
def
search
():
"""
Search for hashes in swh-storage.
...
...
@@ -53,6 +59,7 @@ def search():
@app.route
(
'
/uploadnsearch
'
,
methods
=
[
'
GET
'
,
'
POST
'
])
@set_renderers
(
HTMLRenderer
)
def
uploadnsearch
():
"""
Upload and search for hashes in swh-storage.
...
...
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