Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
proto3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
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
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lars Frost
proto3
Commits
7879d04d
Commit
7879d04d
authored
Mar 27, 2018
by
Robin Sonnabend
Browse files
Options
Downloads
Patches
Plain Diff
Move back.py to common-web
parent
94007c20
No related branches found
No related tags found
No related merge requests found
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
.gitmodules
+1
-1
1 addition, 1 deletion
.gitmodules
back.py
+0
-35
0 additions, 35 deletions
back.py
common
+1
-1
1 addition, 1 deletion
common
decorators.py
+1
-1
1 addition, 1 deletion
decorators.py
server.py
+1
-1
1 addition, 1 deletion
server.py
shared.py
+1
-1
1 addition, 1 deletion
shared.py
with
5 additions
and
40 deletions
.gitmodules
+
1
−
1
View file @
7879d04d
[submodule "
auth
"]
[submodule "
common
"]
path = common
url = git@git.fsmpi.rwth-aachen.de:protokollsystem/common-web.git
This diff is collapsed.
Click to expand it.
back.py
deleted
100644 → 0
+
0
−
35
View file @
94007c20
# This snippet is in public domain.
# However, please retain this link in your sources:
# http://flask.pocoo.org/snippets/120/
# Danya Alexeyevsky
import
functools
from
flask
import
session
,
request
,
redirect
as
flask_redirect
,
url_for
import
config
cookie
=
getattr
(
config
,
"
REDIRECT_BACK_COOKIE
"
,
"
back
"
)
default_view
=
getattr
(
config
,
"
REDIRECT_BACK_DEFAULT
"
,
"
index
"
)
def
anchor
(
func
,
cookie
=
cookie
):
@functools.wraps
(
func
)
def
result
(
*
args
,
**
kwargs
):
session
[
cookie
]
=
request
.
url
return
func
(
*
args
,
**
kwargs
)
return
result
def
default_url
(
default
,
**
url_args
):
return
url_for
(
default
,
**
url_args
)
def
url
(
default
=
default_view
,
cookie
=
cookie
,
**
url_args
):
return
session
.
get
(
cookie
,
default_url
(
default
,
**
url_args
))
def
redirect
(
default
=
default_view
,
cookie
=
cookie
,
**
url_args
):
print
(
request
.
url
,
request
.
url_rule
,
default
,
session
.
get
(
cookie
))
target
=
url
(
default
,
cookie
,
**
url_args
)
if
target
==
request
.
url
:
target
=
default_url
(
default
,
**
url_args
)
return
flask_redirect
(
target
)
This diff is collapsed.
Click to expand it.
common
@
3dfc2b71
Compare
f9dbd00f
...
3dfc2b71
Subproject commit
f9dbd00f0a1e413e000e42b968de0f6a0a44
558
f
Subproject commit
3dfc2b71eb6a7e0746fe8794854f739c330
558
7b
This diff is collapsed.
Click to expand it.
decorators.py
+
1
−
1
View file @
7879d04d
...
...
@@ -6,7 +6,7 @@ from hmac import compare_digest
from
models.database
import
ALL_MODELS
from
shared
import
current_user
from
utils
import
get_csrf_token
import
back
from
common
import
back
ID_KEY
=
"
id
"
KEY_NOT_PRESENT_MESSAGE
=
"
Missing {}_id.
"
...
...
This diff is collapsed.
Click to expand it.
server.py
+
1
−
1
View file @
7879d04d
...
...
@@ -55,7 +55,7 @@ from views.tables import (
TodosTable
,
DocumentsTable
,
DecisionsTable
,
TodoTable
,
ErrorTable
,
TodoMailsTable
,
DefaultMetasTable
,
DecisionCategoriesTable
)
from
legacy
import
import_old_todos
,
import_old_protocols
,
import_old_todomails
import
back
from
common
import
back
app
=
Flask
(
__name__
)
app
.
config
.
from_object
(
config
)
...
...
This diff is collapsed.
Click to expand it.
shared.py
+
1
−
1
View file @
7879d04d
...
...
@@ -5,7 +5,7 @@ import re
from
functools
import
wraps
from
enum
import
Enum
import
back
from
common
import
back
import
config
...
...
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