-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
86 lines (68 loc) · 3.17 KB
/
index.html
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
<!doctype html>
<!--
DONE: commit base
DONE: create basic JS folders
DONE: attach JS and CSS libs
DONE: add field for entering github project URL
DONE: transform repo urls of forms:
https://github.com/mkotsur/angular.js OR git@github.com:mkotsur/angular.js.git
into API url
DONE: retrieve basic project information when OK clicked
DONE: write e2e test for the form and establish continuous feedback
DONE: service which will transform diff (or patch) into colorized HTML
DONE: display last diff (prev:HEAD) after repo is linked
DONE: css styles for diff
DONE: fix image 404 (avatar)
DONE: improve e2e tests coverage
DONE: add links to navigate thru commits
DONE: rename all controllers to Ctrl suffix
DONE: URLs: / and /index.html should work identically with good resolution of # value
DONE: write test on diff appearance
DONE: add keyboard navigation thru commits
DONE: refactor usage of repository resource
DONE: #[gs|gc|gs.|gc.]ignore tags
TODO: make lines marked @@ in grey color
TODO: figure out what happens when commit list is not complete
TODO: collapses conflict with hash url. fix it.
TODO: decide what to do when URL is cleaned
TODO: add visual effect when diff is updated
TODO: add visual effect when next or previous pressed in terminal states
TODO: Add avatar of commiter to the diff header
TODO: Make Prev/Next buttons disability aware of ignore tags
-->
<html ng-app="MainModuleDev">
<head>
<title>GitoScoop</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/bootstrap/bootstrap.css" />
<link rel="stylesheet" href="./css/gitoscope.css" />
<script src="./js/lib/angular-1.0.0.min.js"></script>
<script src="./js/lib/angular-resource-1.0.0.min.js"></script>
<script src="./js/lib/angular-sanitize-1.0.0.min.js"></script>
<script src="./js/lib/underscore-min.js"></script>
<script src="./js/lib/jquery-1.7.1.js"></script>
<script src="./js/lib/shortcut.js"></script>
<script src="./js/lib/bootstrap/bootstrap-button.js"></script>
<script src="./js/lib/bootstrap/bootstrap-tooltip.js"></script>
<script src="./js/lib/bootstrap/bootstrap-collapse.js"></script>
<script src="./js/service/repoUrlTransformer.js"></script>
<script src="./js/service/resources.js"></script>
<script src="./js/service/patchProcessor.js"></script>
<script src="./js/service/isIgnored.js"></script>
<script src="./js/controller/RepoInitCtrl.js"></script>
<script src="./js/controller/DIffCtrl.js"></script>
<script src="./js/controller/CommitsNavigatorCtrl.js"></script>
<script src="./js/spec/mocks/commits.js"></script>
<script src="./js/spec/mocks/repo.js"></script>
<script src="./js/MainModule.js"></script>
<link href='http://fonts.googleapis.com/css?family=Chau+Philomene+One' rel='stylesheet' type='text/css'>
<script src="./js/lib/angular-mocks-1.0.0.js"></script>
</head>
<body>
<script type="text/ng-template" src="./js/templates/index.html"></script>
<script type="text/ng-template" src="./js/templates/slideshow.html"></script>
<div class="container-fluid" ng-init="repo={}; slideshow={};">
<div class="row-fluid ng-view"></div>
</div>
</body>
</html>