-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
142 lines (96 loc) · 6.36 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
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Application To View Time Series Data">
<meta name="keywords" content="Yusof,Bandar,DigitalLabs,TimeSeries,TimeSeriesDataCapture,Data,">
<meta name="author" content="Yusof Bandar">
<meta name="author" content="DigitalLabs">
<title>TimeSeriesDataCapture</title>
<base href="/">
<link rel="stylesheet" href="./assets/css/typeahead.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="./assets/css/jsTag.css">
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab" rel="stylesheet">
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/angular_material/1.1.8/angular-material.min.css">
<link rel="stylesheet" href="./assets/css/styling.css">
<!--jquery-->
<script type="text/javascript" src="./node_modules/jquery/dist/jquery.js"></script>
<!--angular-->
<script type="text/javascript" src="./node_modules/angular/angular.js"></script>
<script type="text/javascript" src="./node_modules/angular-animate/angular-animate.js"></script>
<script type="text/javascript" src="./node_modules/angular-aria/angular-aria.js"></script>
<script type="text/javascript" src="./node_modules/angular-messages/angular-messages.js"></script>
<script type="text/javascript" src='assets/js/angular-material.js'></script>
<!--ui-router-->
<script type="text/javascript" src="./node_modules/@uirouter/angularjs/release/angular-ui-router.js"></script>
<!-- typeahead.js https://github.com/twitter/typeahead.js-->
<!-- latest versions of typeahead do not work with angularjs, use version 0.11.1-->
<script src="assets/js/angular-typeahead.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/typeahead.js/0.10.2/typeahead.bundle.min.js"></script>
<!-- jsTag javascript file https://github.com/eranhirs/jsTag/tree/master-->
<script src="assets/js/jsTag.min.js"></script>
<!--authentication-->
<script type="text/javascript" src="node_modules/auth0-js/build/auth0.js"></script>
<script type="text/javascript" src="node_modules/angular-auth0/dist/angular-auth0.js"></script>
<script id="odauth" src="assets/js/odauth.js"></script>
<!--d3-->
<script type="text/javascript" src="node_modules/d3/dist/d3.js"></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/d3-annotation/2.3.0/d3-annotation.min.js'></script>
<!--app-->
<script src="./app/app.js"></script>
<!--controllers-->
<script src="./app/shared/index/indexController.js"></script>
<script src="./app/shared/import/importPanelController.js"></script>
<script src='./app/shared/view/viewController.js'></script>
<!--components-->
<script src='./app/components/authentication/authenticationService.js'></script>
<script src='./app/components/authentication/oneDriveAuthenticationService.js'></script>
<script src='./app/components/authentication/fileStorageAuthenticationDataService.js'></script>
<script src='./app/components/authentication/authenticationNotifyService.js'></script>
<script src='./app/components/search/searchRequestService.js'></script>
<script src="./app/components/search/searchInputService.js"></script>
<script src='./app/components/tagPrediction/tagPredictionService.js'></script>
<script src='./app/components/tagPrediction/extractTagsService.js'></script>
<script src='./app/components/dtFormatterService/dtFormatterService.js'></script>
<script src='./app/components/folder/folderBrowserService.js'></script>
<script src='./app/components/folder/getFolderService.js'></script>
<script src='./app/components/folder/folderBreadcrumbService.js'></script>
<script src='./app/components/run/runRequestService.js'></script>
<script src='./app/components/componentIds/componentIdsService.js'></script>
<script src='./app/components/algorithms/algorithmsService.js'></script>
<script src='./app/components/odauth/odauthService.js'></script>
<script src='./app/components/selection/selectionService.js'></script>
<script src='./app/components/annotations/timeSeriesAnnotationService.js'></script>
<script src='./app/components/annotations/annotationInEditService.js'></script>
<script src='./app/components/timeSeriesGraph/timeSeriesTrendService.js'></script>
<script src='./app/components/timeSeriesGraph/timeSeriesGraphService.js'></script>
<script src="./app/components/timeSeriesGraph/graphEventEmitterService.js"></script>
<script src="./app/components/timeSeriesGraph/activeColumn.js"></script>
<script src='./app/components/columnTabPanel/tagEditPanelService.js'></script>
<script src='./app/components/columnTabPanel/columnTabPanelService.js'></script>
<script src='./app/components/annotations/annotationPreviewService.js'></script>
<script src='./app/components/annotations/annotationsService.js'></script>
<script src='./app/components/export/exportDataService.js'></script>
<script src='./app/components/palette/paletteDataService.js'></script>
<!--filters-->
<script src='./app/components/componentFilters/runFilter.js'></script>
<script src='./app/components/componentFilters/componentIdFilter.js'></script>
<script src='./app/components/componentFilters/componentIdClassFilter.js'></script>
<script src='./app/components/componentFilters/dateFilter.js'></script>
<script src='./app/components/componentFilters/timeFilter.js'></script>
<script src='./app/components/tagPrediction/tagFilter.js'></script>
<!-- config -->
<script src="./configDetailsConstant.js"></script>
</head>
<body ng-app="app" ng-cloak="">
<header class='version'>
<a target="_blank" class='help' href="https://github.com/CMDT/TimeSeriesDataCapture/blob/master/Documents/help/searching.md">help</a>
<a target="_blank" class='help' href="https://github.com/CMDT/TimeSeriesDataCapture/blob/master/Documents/attribution.md">about</a>
<a target="_blank" class='help' href="https://github.com/CMDT/TimeSeriesDataCapture/blob/master/Documents/release%20notes/version%201.1.0.md">v1.1.0</a>
</header>
<ui-view></ui-view>
</body>
</html>