-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html.old
114 lines (96 loc) · 5.43 KB
/
index.html.old
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Translation Statistics">
<meta name="author" content="[email protected]">
<link rel="icon" href="assets/img/favicon.ico">
<title>transtats</title>
<!-- Bootstrap core CSS -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<link href="assets/css/ie10-viewport-bug-workaround.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="assets/css/jumbotron-narrow.css" rel="stylesheet">
<!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
<!--[if lt IE 9]><script src="assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<script src="assets/js/ie-emulation-modes-warning.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){var server_url="transtats.devlab.redhat.com";$("#applink").click(function(){$.ajax({url:"http://"+server_url+"/api/ping",dataType:'jsonp',success:function(response){window.location.href="http://"+server_url},error:function(r,s,e){document.getElementById("id_server_url").innerHTML=server_url;$("#errModal").modal()}})})})
</script>
</head>
<body>
<div class="container">
<div class="header clearfix">
<nav>
<ul class="nav nav-pills pull-right">
<li role="presentation"><a href=".">Home</a></li>
<li role="presentation"><a href="features.html">Features</a></li>
<li role="presentation"><a href="http://docs.transtats.org/" target="_blank">Docs</a></li>
</ul>
</nav>
<h3 class="text-muted">Translation Stats</h3>
</div>
<div class="jumbotron">
<h3>Overview for language translations across packages!</h3>
<p>Transtats is a django app to track translation progress of packages for downstream releases with respect to current development.</p>
<p>
<a class="btn btn-lg btn-default" href="https://github.com/transtats" role="button" target="_blank">View on GitHub</a>
<a id="applink" class="btn btn-lg btn-default" href="#" role="button">Go to App</a>
</p>
</div>
<div style="padding:40px" class="panel panel-default">
<h3>How it works...</h3><br/>
<ol>
<li><h4>Create mapping <small>between translation platforms, releases (schedule & build system) and upstream.</small></h4></li>
<li><h4>Sync with translation platforms <small>for translation statistics of packages configured.</small></h4></li>
<li><h4>Depict translation position <small>graph of package for most branches in all enabled languages.</small></h4></li>
<li><h4>Generate rule based graphs <small>release specific, for a set of packages in chosen languages.</small></h4></li>
<li><h4>Create notifications <small>based on release schedule, notify developers, managers and quality engineers.</small></h4></li>
</ol><br/>
<img src="assets/img/ts-stack.png" alt="TS Stack"/><br/><br/>
<div align="justify">Jobs operate on some inventory: translation platforms, release streams and upstream repositories
for registered packages to process translation data, and represent information in the form of graphs for enabled languages.</div>
</div>
<footer class="footer">
<p>
<span style="padding-left: 10px;padding-right: 20px" class="pull-left"><img alt="Red Hat" src="assets/img/redhat.png" style="width:150px;height:35px;"/></span>
<span class="text-muted" style="font-size: small">Transtats is a <a href="https://www.redhat.com/" target="_blank">Red Hat</a> sponsored project.<br/>
Content on this site is licensed under a <a href="https://creativecommons.org/licenses/by/4.0/" target="_blank">
Creative Commons Attribution 4.0 International license.</a>
</span>
<span class="pull-right"> </span>
</p>
</footer>
</div>
<!-- Server cannot be reached -->
<div class="modal fade" id="errModal" role="dialog">
<div class="modal-dialog">
<!-- Modal content-->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 id="id_server_url" class="modal-title"></h4>
</div>
<div class="modal-body">
<p class="text-danger">Server could not be reached at the moment. Please try after sometime.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Okay</button>
</div>
</div>
</div>
</div>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="assets/js/ie10-viewport-bug-workaround.js"></script>
</body>
</html>