ATLAS Offline Software
Classes | Variables
JobBrowser Namespace Reference

Classes

class  JobBrowser
 

Variables

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

Variable Documentation

◆ __author__

string JobBrowser.__author__ = 'Juerg Beringer'
private

Definition at line 9 of file JobBrowser.py.

◆ __version__

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

Definition at line 10 of file JobBrowser.py.

◆ p

JobBrowser.p = JobBrowser()

Definition at line 120 of file JobBrowser.py.

◆ tableHeader

string JobBrowser.tableHeader
Initial value:
1 = """<table cellspacing="0" class="tablesorter">
2 <thead>
3 <tr>
4 <th>Last update</th>
5 <th>Dataset</th>
6 <th>Task</th>
7 <th>Release</th>
8 <th>#Jobs</th>
9 <th>Status</th>
10 <th>Details</th>
11 <th>Results</th>
12 </tr>
13 </thead>
14 <tbody>
15 """

Definition at line 31 of file JobBrowser.py.

◆ tableSorter

string JobBrowser.tableSorter
Initial value:
1 = """\
2 <script type="text/javascript" src="../js/jquery-latest.js"></script>
3 <script type="text/javascript" src="../js/jquery.tablesorter.js"></script>
4 <script type="text/javascript" id="js">
5 $(document).ready(function() {
6  $("table").tablesorter({
7  headers: { 0: { sorter: "shortDate" } },
8  sortList: [[0,1]]
9  });
10 });
11 </script>
12 """

Definition at line 18 of file JobBrowser.py.

◆ taskCount

string JobBrowser.taskCount
Initial value:
1 = """\
2 <div class="text">
3 <h3>%s task(s):</h3>
4 </div>
5 """

Definition at line 47 of file JobBrowser.py.

◆ taskCountForDS

string JobBrowser.taskCountForDS
Initial value:
1 = """\
2 <div class="text">
3 <h3>%s task(s) for dataset %s:</h3>
4 </div>
5 """

Definition at line 59 of file JobBrowser.py.

◆ taskCountForRun

string JobBrowser.taskCountForRun
Initial value:
1 = """\
2 <div class="text">
3 <h3>%s task(s) for run %s:</h3>
4 </div>
5 """

Definition at line 65 of file JobBrowser.py.

◆ taskCountLimit

string JobBrowser.taskCountLimit
Initial value:
1 = """\
2 <div class="text">
3 <h3>%s task(s), displaying last %i tasks:</h3>
4 </div>
5 """

Definition at line 53 of file JobBrowser.py.