-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsingle-09-b.html
163 lines (146 loc) · 5.45 KB
/
single-09-b.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<title>Summarization Viewer</title>
<link rel="stylesheet" type="text/css" href="css/theme/jquery-ui.min.css" />
<link rel="stylesheet" type="text/css" href="css/summary-09-b.min.css" />
<script src='js/req.min.js'></script>
<script src='js/boot-09.js'></script>
</head>
<body>
<div id='app-Summary'><!-- app.Summary { -->
<div class='margin-left'><!-- margin-left { -->
<div class='control-pane' style='display:none;'><!-- control-pane { -->
<div class='controls ui-layout-north'><!-- controls { -->
<div class='filter'><!-- filter { -->
<label for="filter" class='primary'>Filter</label>
<input name="filter" id="filter-tagged"
type="checkbox" value="tagged" />
<label for="filter-tagged">sentences with notes:</label>
</div><!-- filter } -->
<div class='threshold'><!-- threshold { -->
<label for="threshold" class='primary'>Threshold</label>
<label class='values'></label>
<div class='buttons'>
<div class='expansion'>
<button name='threshold-down'
title='expand'><div
class='expand su-icon su-icon-expand' /></button
><button name='threshold-up'
title='collapse'><div
class='collapse su-icon su-icon-collapse' /></button>
</div>
<div class='global'>
<button name='threshold-all'
title='full document'><div
class='all su-icon su-icon-all' /></button
><button name='threshold-reset'
title='reset to original threshold'><div
class='reset su-icon su-icon-reset' /></button>
</div>
</div>
</div><!-- threshold } -->
<div class='options'><!-- options { -->
<label for="options" class='primary'>Options</label>
<input name="quickTag" id="options-quickTag"
type="checkbox" value="normal" />
<label for="options-quickTag">quick tag:</label>
</div><!-- options } -->
</div><!-- controls } -->
</div><!-- control-pane } -->
</div><!-- margin-left } -->
<div class='content-pane'><!-- content-pane { -->
</div><!-- content-pane } -->
<div class='margin-right'><!-- margin-right { -->
<div class='tags-pane'></div>
<div class='notes-pane'></div>
</div><!-- margin-right } -->
</div><!-- app.Summary } -->
</body>
<!-- Templates { -->
<script id='template-doc' type='text/template'>
<header>
<meta charset="utf-8" />
<h1><a href="<%= url %>"><%= title %></a></h1>
<author><%= author %></author>
<time datetime="<%= published.toISOString() %>"
pubdate="true"><%= jQuery.date2str(published) %></time>
<div class="keywords">
<% _.each(keywords, function(keyword) { %>
<div class="keyword"<%
if (keyword.rank > 0)
{
print(' data-rank="'+ Math.floor(keyword.rank * 100) +'"')
}%>
data-value="<%= keyword.value %>"><%= keyword.name %></div>
<% }); %>
</div>
</header>
<div class='sections'></div>
</script>
<script id='template-section' type='text/template'>
<div class='paragraphs'></div>
</script>
<script id='template-paragraph' type='text/template'>
<span class="controls">¶</span>
<div class='sentences'></div>
</script>
<script id='template-sentence' type='text/template'
><span class="rank"><%= (rank > 0 ? Math.floor(rank * 100) : 0) %></span
><span class="content"><% _.each(tokens, function(token) {
%><span data-id="<%= token.id %>"
data-type="<%= token.type %>"
class="<%= token.type %>"<%
if (token.value && (token.value.length > 0))
{
print(' data-value="'+ token.value +'"')
}%>><%= token.content %></span><%
}); %></span></script>
<script id='template-selection' type='text/template'>
<span class='range-control'>
<span class='su-icon su-state-reverse su-icon-tag tag'
name='note-add'
title='add note'></span>
</span>
</script>
<script id='template-note' type='text/template'>
<span class='range-control'>
<span class='su-icon ui-state-default su-icon-cancel-blue remove'
name='note-remove'
title='remove note'></span>
</span>
<div class='arrow-outer'></div>
<div class='arrow-inner'></div>
<div class='note-body'>
<!-- View.Comment renderings go here -->
</div>
<div class='note-input-pane'>
<textarea class='note-reply' title="Reply to this comment..."></textarea>
<div class='buttons'>
<button name='reply'>reply</button>
<button name='cancel-reply'>cancel</button>
</div>
</div>
</script>
<script id='template-comment' type='text/template'>
<img class='avatar' src='<%= author.get('avatarUrl') %>' />
<div class='author'><%= author.get('fullName') %></div>
<div class='created'><%= jQuery.prettyDate(created) %></div>
<div class='text'><%= text %></div>
<div class='edit'>
<textarea class='edit-comment'></textarea>
<div class='buttons editing'>
<button name='save'>save</button>
<button name='cancel-edit'>cancel</button>
</div>
</div>
<div class='buttons viewing'>
<button name='edit'>edit</button>
<button name='delete'>delete</button>
</div>
</script>
<!-- Templates } -->
</html>