Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GraceDB Server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IGWN Computing and Software
GraceDB
GraceDB Server
Commits
48114972
Commit
48114972
authored
15 years ago
by
Brian Moe
Browse files
Options
Downloads
Patches
Plain Diff
De-HTML-ified error messages to command line client.
Ditched drop-shadows in top menu bar. (ugly!)
parent
f8847278
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
middleware/cli.py
+15
-0
15 additions, 0 deletions
middleware/cli.py
settings.py
+1
-0
1 addition, 0 deletions
settings.py
settings_dev.py
+1
-0
1 addition, 0 deletions
settings_dev.py
static/css/style.css
+3
-3
3 additions, 3 deletions
static/css/style.css
with
20 additions
and
3 deletions
middleware/cli.py
0 → 100644
+
15
−
0
View file @
48114972
from
django.http
import
HttpResponse
class
CliExceptionMiddleware
(
object
):
def
process_exception
(
self
,
request
,
exception
):
if
'
cli_version
'
in
request
.
POST
:
response
=
HttpResponse
(
mimetype
=
'
application/json
'
)
# XXX JSON
msg
=
str
({
'
error
'
:
"
Server exception: %s
"
%
str
(
exception
)
})
response
.
write
(
msg
)
response
[
'
Content-length
'
]
=
len
(
msg
)
return
response
else
:
return
None
This diff is collapsed.
Click to expand it.
settings.py
+
1
−
0
View file @
48114972
...
...
@@ -91,6 +91,7 @@ AUTHENTICATION_BACKENDS = ('gracedb.middleware.auth.LigoAuthBackend',)
MIDDLEWARE_CLASSES
=
(
'
gracedb.middleware.accept.AcceptMiddleware
'
,
'
gracedb.middleware.auth.LigoAuthMiddleware
'
,
'
gracedb.middleware.cli.CliExceptionMiddleware
'
,
'
django.middleware.common.CommonMiddleware
'
,
'
django.contrib.sessions.middleware.SessionMiddleware
'
,
'
django.contrib.auth.middleware.AuthenticationMiddleware
'
,
...
...
This diff is collapsed.
Click to expand it.
settings_dev.py
+
1
−
0
View file @
48114972
...
...
@@ -83,6 +83,7 @@ AUTHENTICATION_BACKENDS = ('gracedb.middleware.auth.LigoAuthBackend',)
MIDDLEWARE_CLASSES
=
(
'
gracedb.middleware.accept.AcceptMiddleware
'
,
'
gracedb.middleware.auth.LigoAuthMiddleware
'
,
'
gracedb.middleware.cli.CliExceptionMiddleware
'
,
'
django.middleware.common.CommonMiddleware
'
,
'
django.contrib.sessions.middleware.SessionMiddleware
'
,
'
django.contrib.auth.middleware.AuthenticationMiddleware
'
,
...
...
This diff is collapsed.
Click to expand it.
static/css/style.css
+
3
−
3
View file @
48114972
...
...
@@ -80,7 +80,7 @@ a.link, a, a.active {
text-decoration
:
none
;
font
:
bold
1em
/
1em
Arial
,
Helvetica
,
sans-serif
;
text-transform
:
uppercase
;
text-shadow
:
2px
2px
2px
#555
;
/*
text-shadow: 2px 2px 2px #555;
*/
}
#nav
li
{
...
...
@@ -107,7 +107,7 @@ a.link, a, a.active {
text-decoration
:
none
;
font
:
bold
1em
/
1em
Arial
,
Helvetica
,
sans-serif
;
text-transform
:
uppercase
;
text-shadow
:
2px
2px
2px
#555
;
/*
text-shadow: 2px 2px 2px #555;
*/
}
#nav
a
:hover
{
/* color:#fff; / * Use if bg is dark */
...
...
@@ -125,7 +125,7 @@ a.link, a, a.active {
#contact
#nav-contact
a
{
background
:
#a9b0ba
;
/* Nav selected color */
/* color:#fff; / * Use if bg is dark */
text-shadow
:
none
;
/*
text-shadow:none;
*/
}
#home
#nav-home
a
:hover
,
#create
#nav-create
a
,
...
...
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