Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
privacyidea
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
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
Perun
Perun ProxyIdP
privacyidea
Commits
d8d888a2
Commit
d8d888a2
authored
10 years ago
by
Cornelius Kölbel
Browse files
Options
Downloads
Patches
Plain Diff
Fix no-cache problem with IE11
parent
aa85ab3a
No related branches found
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
Makefile
+1
-1
1 addition, 1 deletion
Makefile
debian/changelog
+7
-0
7 additions, 0 deletions
debian/changelog
privacyidea/api/system.py
+3
-0
3 additions, 0 deletions
privacyidea/api/system.py
privacyidea/api/validate.py
+3
-0
3 additions, 0 deletions
privacyidea/api/validate.py
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
15 additions
and
2 deletions
Makefile
+
1
−
1
View file @
d8d888a2
...
@@ -10,7 +10,7 @@ info:
...
@@ -10,7 +10,7 @@ info:
@
echo
"make ppa-dev - upload to launchpad development repo"
@
echo
"make ppa-dev - upload to launchpad development repo"
#VERSION=1.3~dev5
#VERSION=1.3~dev5
VERSION
=
2.0
~dev5
VERSION
=
2.0
.1
SERIES
=
"trusty precise"
SERIES
=
"trusty precise"
LOCAL_SERIES
=
`
lsb_release
-a
|
grep
Codename |
cut
-f2
`
LOCAL_SERIES
=
`
lsb_release
-a
|
grep
Codename |
cut
-f2
`
SRCDIRS
=
deploy authmodules migrations doc tests debian tools privacyidea
SRCDIRS
=
deploy authmodules migrations doc tests debian tools privacyidea
...
...
This diff is collapsed.
Click to expand it.
debian/changelog
+
7
−
0
View file @
d8d888a2
python-privacyidea (2.0.1-1trusty) trusty; urgency=low
* Fix no-cache problem with IE11
-- Cornelius Kölbel <cornelius@privacyidea.org> Sun, 01 Mar 2015 16:40:00 +0200
python-privacyidea (2.0~dev5-1trusty) trusty; urgency=low
python-privacyidea (2.0~dev5-1trusty) trusty; urgency=low
* Migrate to flask
* Migrate to flask
...
...
This diff is collapsed.
Click to expand it.
privacyidea/api/system.py
+
3
−
0
View file @
d8d888a2
...
@@ -124,6 +124,9 @@ def after_request(response):
...
@@ -124,6 +124,9 @@ def after_request(response):
# completely so that we do not have an audit_object
# completely so that we do not have an audit_object
if
"
audit_object
"
in
g
:
if
"
audit_object
"
in
g
:
g
.
audit_object
.
finalize_log
()
g
.
audit_object
.
finalize_log
()
# No chaching!
response
.
headers
[
'
Cache-Control
'
]
=
'
no-cache
'
return
response
return
response
...
...
This diff is collapsed.
Click to expand it.
privacyidea/api/validate.py
+
3
−
0
View file @
d8d888a2
...
@@ -73,6 +73,9 @@ def after_request(response):
...
@@ -73,6 +73,9 @@ def after_request(response):
# completely so that we do not have an audit_object
# completely so that we do not have an audit_object
if
"
audit_object
"
in
g
:
if
"
audit_object
"
in
g
:
g
.
audit_object
.
finalize_log
()
g
.
audit_object
.
finalize_log
()
# No chaching!
response
.
headers
[
'
Cache-Control
'
]
=
'
no-cache
'
return
response
return
response
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
d8d888a2
...
@@ -4,7 +4,7 @@ import os
...
@@ -4,7 +4,7 @@ import os
import
glob
import
glob
import
sys
import
sys
VERSION
=
"
2.0
dev5
"
VERSION
=
"
2.0
.1
"
# Taken from kennethreitz/requests/setup.py
# Taken from kennethreitz/requests/setup.py
package_directory
=
os
.
path
.
realpath
(
os
.
path
.
dirname
(
__file__
))
package_directory
=
os
.
path
.
realpath
(
os
.
path
.
dirname
(
__file__
))
...
...
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