summaryrefslogtreecommitdiffstats
path: root/debian/missing-sources/epoch/tests/render/themes/default.html
diff options
context:
space:
mode:
Diffstat (limited to 'debian/missing-sources/epoch/tests/render/themes/default.html')
-rw-r--r--debian/missing-sources/epoch/tests/render/themes/default.html70
1 files changed, 70 insertions, 0 deletions
diff --git a/debian/missing-sources/epoch/tests/render/themes/default.html b/debian/missing-sources/epoch/tests/render/themes/default.html
new file mode 100644
index 0000000..9e8bd4e
--- /dev/null
+++ b/debian/missing-sources/epoch/tests/render/themes/default.html
@@ -0,0 +1,70 @@
+<html>
+ <head>
+ <link rel="stylesheet" type="text/css" href="../css/tests.css">
+ <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
+ <script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
+ <script src="../../../dist/js/epoch.js"></script>
+ <link rel="stylesheet" type="text/css" href="../../../dist/css/epoch.css">
+ <style>
+
+ .epoch:after {
+ content:"";
+ display:table;
+ clear:both;
+ }
+
+ .ref {
+ width: 120px;
+ height: 120px;
+ float: left;
+ margin: 2px;
+ color: white;
+ text-align: center;
+ line-height: 120px;
+ font-size: 31px;
+ }
+ </style>
+
+ <script>
+ $(function() {
+ $('div[data-refs-range]').each(function(i, el) {
+ var range = $(el).attr('data-refs-range').split(',');
+ for (var i = parseInt(range[0]); i <= parseInt(range[1]); i++) {
+ $(el).append('<div class="ref category'+i+'">'+i+'</div>')
+ }
+ });
+ });
+ </script>
+
+ </head>
+ <body>
+ <h1>Default Theme</h1>
+
+ <h2>Category 10</h2>
+ <div class="epoch category10" data-refs-range="1,5"></div>
+ <div class="epoch category10" data-refs-range="6,10"></div>
+
+ <h2>Category 20</h2>
+ <div class="epoch category20" data-refs-range="1,4"></div>
+ <div class="epoch category20" data-refs-range="5,8"></div>
+ <div class="epoch category20" data-refs-range="9,12"></div>
+ <div class="epoch category20" data-refs-range="13,16"></div>
+ <div class="epoch category20" data-refs-range="17,20"></div>
+
+ <h2>Category 20b</h2>
+ <div class="epoch category20b" data-refs-range="1,4"></div>
+ <div class="epoch category20b" data-refs-range="5,8"></div>
+ <div class="epoch category20b" data-refs-range="9,12"></div>
+ <div class="epoch category20b" data-refs-range="13,16"></div>
+ <div class="epoch category20b" data-refs-range="17,20"></div>
+
+ <h2>Category 20c</h2>
+ <div class="epoch category20c" data-refs-range="1,4"></div>
+ <div class="epoch category20c" data-refs-range="5,8"></div>
+ <div class="epoch category20c" data-refs-range="9,12"></div>
+ <div class="epoch category20c" data-refs-range="13,16"></div>
+ <div class="epoch category20c" data-refs-range="17,20"></div>
+
+
+ </body>
+</html> \ No newline at end of file