ATLAS Offline Software
Loading...
Searching...
No Matches
JobBrowser Namespace Reference

Classes

class  JobBrowser

Variables

str __author__ = 'Juerg Beringer'
str __version__ = 'JobBrowser.py atlas/athena'
str tableSorter
str tableHeader
str taskCount
str taskCountLimit
str taskCountForDS
str taskCountForRun
 p = JobBrowser()

Detailed Description

ATLAS beam spot web page for displaying beam spot job data.

Variable Documentation

◆ __author__

str JobBrowser.__author__ = 'Juerg Beringer'
private

Definition at line 8 of file JobBrowser.py.

◆ __version__

str JobBrowser.__version__ = 'JobBrowser.py atlas/athena'
private

Definition at line 9 of file JobBrowser.py.

◆ p

JobBrowser.p = JobBrowser()

Definition at line 119 of file JobBrowser.py.

◆ tableHeader

str JobBrowser.tableHeader
Initial value:
= """<table cellspacing="0" class="tablesorter">
<thead>
<tr>
<th>Last update</th>
<th>Dataset</th>
<th>Task</th>
<th>Release</th>
<th>#Jobs</th>
<th>Status</th>
<th>Details</th>
<th>Results</th>
</tr>
</thead>
<tbody>
"""

Definition at line 30 of file JobBrowser.py.

◆ tableSorter

str JobBrowser.tableSorter
Initial value:
= """\
<script type="text/javascript" src="../js/jquery-latest.js"></script>
<script type="text/javascript" src="../js/jquery.tablesorter.js"></script>
<script type="text/javascript" id="js">
$(document).ready(function() {
$("table").tablesorter({
headers: { 0: { sorter: "shortDate" } },
sortList: [[0,1]]
});
});
</script>
"""

Definition at line 17 of file JobBrowser.py.

◆ taskCount

str JobBrowser.taskCount
Initial value:
= """\
<div class="text">
<h3>%s task(s):</h3>
</div>
"""

Definition at line 46 of file JobBrowser.py.

◆ taskCountForDS

str JobBrowser.taskCountForDS
Initial value:
= """\
<div class="text">
<h3>%s task(s) for dataset %s:</h3>
</div>
"""

Definition at line 58 of file JobBrowser.py.

◆ taskCountForRun

str JobBrowser.taskCountForRun
Initial value:
= """\
<div class="text">
<h3>%s task(s) for run %s:</h3>
</div>
"""

Definition at line 64 of file JobBrowser.py.

◆ taskCountLimit

str JobBrowser.taskCountLimit
Initial value:
= """\
<div class="text">
<h3>%s task(s), displaying last %i tasks:</h3>
</div>
"""

Definition at line 52 of file JobBrowser.py.