File indexing completed on 2024-04-06 12:31:48
0001 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
0002
0003 <html xmlns="http://www.w3.org/1999/xhtml">
0004 <head>
0005
0006 <title>{% block title_block %}RelMon Automatic Reports{% endblock %}</title>
0007 <meta http-equiv="content-type" content="application/xhtml+xml; charset=utf-8" />
0008 <link rel="stylesheet" href="http://cms-service-reldqm.web.cern.ch/cms-service-reldqm//style/blueprint/screen.css" type="text/css" media="screen, projection">
0009 <link rel="stylesheet" href="http://cms-service-reldqm.web.cern.ch/cms-service-reldqm//style/blueprint/print.css" type="text/css" media="print">
0010 <link rel="stylesheet" href="http://cms-service-reldqm.web.cern.ch/cms-service-reldqm//style/blueprint/plugins/fancy-type/screen.css" type="text/css" media="screen,
0011 projection">
0012 <style type="text/css">
0013 .rotation {
0014 display: block;-webkit-transform: rotate(-90deg);-moz-transform: rotate(-90deg);
0015 }
0016 div.list {
0017 font-size: 1.2em;
0018 font-variant: small-caps;
0019 font-weight: bold;
0020 letter-spacing: 1px;
0021 text-transform: lowercase;
0022 color: #666666;
0023 font-family: "Warnock Pro","Goudy Old Style","Palatino","Book Antiqua",Georgia,serif;
0024 font-style: italic;
0025 }
0026 img.fail {border:1px solid #ff0000;}
0027 img.succes {border:1px solid #00ff00;}
0028 img.null {border:1px solid #ffff00;}
0029 a.black_link:link {color: #333333}
0030 a.black_link:hover {color: #737373}
0031 a.black_link:visited {color: #333333}
0032 a.black_link:active {color: #333333}
0033 #slider {
0034 display: inline-block;
0035 width: 120px;
0036 }
0037 .defaultbtn {
0038 margin-left: 10px;
0039 font-size:9px;
0040 font-family:Century Gothic,sans-serif;
0041 font-weight:bold;
0042 color:#777777;
0043 width:45px;
0044 height:16px;
0045 border-style:solid;
0046 border-color:#CCCCCC;
0047 }
0048 </style>
0049 <link rel="stylesheet" href="http://code.jquery.com/ui/1.8.22/themes/base/jquery-ui.css" type="text/css" media="all" />
0050 <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
0051 <script src="http://code.jquery.com/ui/1.8.22/jquery-ui.min.js" type="text/javascript"></script>
0052 <script>
0053 $(function() {
0054 $( "#slider" ).slider({
0055 range: 'min',
0056 max: 10000,
0057 value: {% if not threshold %} 0.1 {% else %} {{ threshold * 10000 }} {% endif %},
0058 slide: function( event, ui ) {
0059 $( "#threshold" ).text( ui.value / 10000 );
0060 }
0061 });
0062 $( ".defaultbtn" ).click(function() {
0063 $.post( window.location, { threshold: 0.00001 })
0064 window.location = window.location.protocol + '//' + window.location.host + window.location.pathname;
0065 });
0066 $( "#threshold" ).text(
0067 {% if not threshold %} "1e-5"
0068 {% elif threshold == 0.00001 %} "1e-5"
0069 {% elif threshold == 0.000001 %} "1e-6"
0070 {% else %} {{ threshold }} {% endif %}
0071 );
0072 $(' #slider ').live('mouseup', function( event, ui ){
0073 window.location = window.location.protocol + '//' + window.location.host + window.location.pathname + '?threshold=' + $( "#slider" ).slider( "value" ) / 10000;
0074 });
0075 });
0076 </script>
0077 {% block scripts %}{% endblock %}
0078 </head>
0079
0080 </head>
0081
0082 <body>
0083
0084 <div class="container">
0085 {% block content %}<br><div class='error'>NOT IMPLEMENTED</div>{% endblock %}
0086 </div>
0087
0088 </body>
0089 </html>
0090