Skip to content
Snippets Groups Projects
Commit 1e7630a1 authored by Brian Moe's avatar Brian Moe
Browse files

Blah blah... started 'doc' sub-area.

parent 4b4f1df9
No related branches found
No related tags found
No related merge requests found
......@@ -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,
......
......@@ -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 %}
......
{% extends "base.html" %}
{% block title %}Docs{% endblock %}
{% block heading %}GraceDB <em>Alpha</em> &mdash; 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 %}
......@@ -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'),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment