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
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Michael William Coughlin
GraceDB Server
Commits
1e7630a1
Commit
1e7630a1
authored
15 years ago
by
Brian Moe
Browse files
Options
Downloads
Patches
Plain Diff
Blah blah... started 'doc' sub-area.
parent
4b4f1df9
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
static/css/style.css
+2
-0
2 additions, 0 deletions
static/css/style.css
templates/base.html
+1
-0
1 addition, 0 deletions
templates/base.html
templates/doc/index.html
+32
-0
32 additions, 0 deletions
templates/doc/index.html
urls.py
+1
-0
1 addition, 0 deletions
urls.py
with
36 additions
and
0 deletions
static/css/style.css
+
2
−
0
View file @
1e7630a1
...
...
@@ -120,6 +120,7 @@ a.link, a, a.active {
#home
#nav-home
a
,
#create
#nav-create
a
,
#search
#nav-search
a
,
#doc
#nav-doc
a
,
#feeds
#nav-feeds
a
,
#about
#nav-about
a
,
#archive
#nav-archive
a
,
...
...
@@ -134,6 +135,7 @@ a.link, a, a.active {
#home
#nav-home
a
:hover
,
#create
#nav-create
a
,
#search
#nav-search
a
,
#doc
#nav-doc
a
,
#feeds
#nav-feeds
a
,
#about
#nav-about
a
:hover
,
#archive
#nav-archive
a
:hover
,
...
...
This diff is collapsed.
Click to expand it.
templates/base.html
+
1
−
0
View file @
1e7630a1
...
...
@@ -62,6 +62,7 @@ function changeTime(obj, label) {
<li
id=
"nav-create"
><a
href=
"{% url create %}"
>
Create
</a></li>
<li
id=
"nav-feeds"
><a
href=
"{% url feeds %}"
>
RSS
</a></li>
<li
id=
"nav-userprofile"
><a
href=
"{% url userprofile-home %}"
>
Options
</a></li>
<li
id=
"nav-doc"
><a
href=
"{% url doc %}"
>
Docs
</a></li>
{% if ligouser %}
<li
id=
"nav-user"
>
Authenticated as: {{ ligouser.name }}
</li>
{% endif %}
</ul>
{% endblock %}
...
...
This diff is collapsed.
Click to expand it.
templates/doc/index.html
0 → 100644
+
32
−
0
View file @
1e7630a1
{% extends "base.html" %}
{% block title %}Docs{% endblock %}
{% block heading %}GraceDB
<em>
Alpha
</em>
—
Overview{% endblock %}
{% block pageid %}doc{% endblock %}
{% block content %}
<div
class=
"text"
>
I am the
<strong>
DOC
</strong>
.
Find the client
<a
href=
"http://www.lsc-group.phys.uwm.edu/cgit/lalsuite/plain/glue/bin/gracedb"
>
HERE
</a>
.
<hr/>
The gravitational-wave candidate event database (GraCEDb) is a
prototype system to organize candidate events from gravitational-wave
searches and to provide an environment to record information about
follow-ups. A simple client tool is provided in
<a
href=
"https://www.lsc-group.phys.uwm.edu/daswg/projects/glue.html"
>
Glue
</a>
to submit a candidate event to the database.
You can read about using the service at the
<a
href=
"https://www.lsc-group.phys.uwm.edu/daswg/wiki/HowtoGraceDb"
>
Howto page
</a>
. More details are available at the
<a
href=
"https://www.lsc-group.phys.uwm.edu/daswg/projects/gracedb.html"
>
Project page
</a>
.
</div>
<div
class=
"text"
>
To receive email alerts when GraCEDb events are created, sign up
on the
<a
target=
"_blank"
href=
"http://listserv.ligo.org/cgi-bin/mailman/listinfo/gracedb"
>
gracedb mailing list
</a>
.
</div>
{% endblock %}
This diff is collapsed.
Click to expand it.
urls.py
+
1
−
0
View file @
1e7630a1
...
...
@@ -14,6 +14,7 @@ urlpatterns = patterns('',
url
(
r
'
^$
'
,
'
gracedb.gracedb.views.index
'
,
name
=
"
home
"
),
(
r
'
^events/
'
,
include
(
'
gracedb.gracedb.urls
'
)),
url
(
r
'
^doc/
'
,
'
gracedb.gracedb.doc.index
'
,
name
=
"
doc
"
),
(
r
'
^options/
'
,
include
(
'
gracedb.userprofile.urls
'
)),
(
r
'
^cli/create
'
,
'
gracedb.gracedb.views.create
'
),
(
r
'
^cli/ping
'
,
'
gracedb.gracedb.views.ping
'
),
...
...
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