-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·229 lines (191 loc) · 8.91 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>E-Book Reader | Smart-Read</title>
<link rel="stylesheet" type="text/css" href="/css/library.css" />
<!-- Only include Modernizr at the top, everything else is at the bottom -->
<script src="/lib/modernizr-2.5.3.min.js" type="text/javascript" ></script>
</head>
<body>
<div class="navbar navbar-fixed-top"><!-- le top bar -->
<div class="navbar-inner" id="inner-top-bar">
<div class="container" style="width: 100%">
<a title="Smart-Read" accesskey="i" class="brand" href="/views/library.html" id='bar-logo'>
<h2 id="logo-replace">Smart-Read Home Page</h2>
</a>
<ul class="nav pull-right">
<li class="divider-vertical stubby"></li>
<li class="smartread">
<a title="SmartRead Home" href="/main-app/index.html#/dashboard" id="row-view-btn3" role="button">
<span id="smart_link_activity">My Activity</span>
</a>
</li>
<li class="divider-vertical stubby"></li>
<li class="smartread">
<a title="SmartRead Home" href="/main-app/index.html#/games" id="row-view-btn2" role="button">
<span id="smart_link_games">Games</span>
</a>
</li>
<li class="divider-vertical stubby"></li>
<li>
<a title="EBooks in list view" accesskey="l" href="#" id="row-view-btn" role="button">
<img src="/images/top_bar/list_view.png" class="small" alt=""/>
<span class="offscreenText">EBooks in list view</span>
</a>
</li>
<li>
<a title="EBooks in thumbnail view" accesskey="t" href="#" id='block-view-btn' role="button">
<img src="/images/top_bar/thumb_view.png" class="small" alt=""/>
<span class="offscreenText">EBooks in thumbnail view</span>
</a>
</li>
<li class="divider-vertical stubby"></li>
<li id="add-book-li">
<a title="Options" accesskey="o" href="#readium-options-modal" id="options-btn" data-toggle="modal" role="button">
<img src="/images/top_bar/lib_options.png" class="small" alt=""/>
<span class="offscreenText">Options</span>
</a>
</li>
</ul>
</div>
</div>
</div><!-- end le top bar -->
<div class='library-container' >
<div id="library-books-list">
<div id="loading-message">
<h2>Loading Library</h2>
<img src="/images/ajax-loader.gif" alt="loading..." height="42" width="42" />
</div>
</div>
<!--<div class="progress progress-success progress-striped active">
<div class="bar" style="width: 40%;"></div>
</div> -->
<div class="modal fade" id="readium-info" style="display: none" ><!-- le info modal -->
<div class="offscreenText"> Info Start </div>
<div>
<img src="/images/info_modal/about_readium_logo.png" alt="About Readium logo">
</div>
<div>
<!-- UPDATE VERSION NUMBER -->
<h3 tabindex="-1" id="version-info">Version 0.9 Release Date 01.29.13</h3>
</div>
<p>
Readium<sup>TM</sup>, a project of the International Digital Publishing Forum (IDPF) and supporters, is an open source reference system and rendering engine for EPUB® publications. To learn more, visit the <a href="http://readium.org/">project homepage</a>. To date, the project development has been lead by <a href="http://evidentpoint.com/">Evident Point</a> and <a href="http://www.bluefirereader.com/">Bluefire Productions</a>. To contribute visit the <a href="https://github.com/readium/readium">github repository</a>
</p>
<div>
<img src="/images/info_modal/partner_logos.png" alt="Readium partner logos">
</div>
<button class="offscreenText" data-dismiss="modal"> Close </button>
<div class="offscreenText"> Info End </div>
</div><!-- end le info modal -->
<div class="modal fade" id="readium-options-modal" style="display: none"><!-- le settings modal -->
<div class="offscreenText"> Options Start </div>
<div class="modal-header">
<a title="Close" class="close" data-dismiss="modal" role="button">
<span class="offscreenText">Close</span>×
</a>
<h1 tabindex="-1" id="options-heading">Readium Options:</h1>
</div>
<div class="modal-body">
<form class="form">
<fieldset>
<div class="control-group">
<div class="controls">
<label class="checkbox" for="paginate_everything">
<input type="checkbox" id="paginate_everything" value="paginate_everything">
Paginate all reflowable ePUB content
</label>
</div>
</div>
<div class="control-group">
<div class="controls">
<label class="checkbox" for="hijack_epub_urls">
<input type="checkbox" id="hijack_epub_urls" value="hijack_epub_urls">
Automatically open *.epub urls in readium
</label>
</div>
</div>
<div class="control-group">
<div class="controls">
<label class="checkbox" for="verbose_unpacking">
<input type="checkbox" id="verbose_unpacking" value="verbose_unpacking">
Show warning messages when unpacking EPUB files
</label>
</div>
</div>
</fieldset>
</form>
</div>
<div class="modal-footer">
<a accesskey="s" href="#" class="btn btn-primary" id="save-settings-btn" role="button">Save changes</a>
<a accesskey="c" href="#" class="btn" data-dismiss="modal" role="button">Cancel</a>
</div>
<div class="offscreenText"> Options End </div>
</div><!-- end le settings modal -->
<div id="add-book-modal" class="modal fade" ><!-- add le book Modal -->
<div class="offscreenText"> Add Book Start </div>
<div class="modal-header">
<a title="Close" class="close" data-dismiss="modal" role="button">
<span class="offscreenText">Close</span>×
</a>
<h1 tabindex="-1" id="add-book-header">Add Book To SmartRead Library:</h1>
</div>
<div class="modal-body">
<form class="form-horizontal">
<!--
<div class="control-group">
<label for="book-url">From the web:</label>
<div class='controls'>
<input type='text' id='book-url' class="span3" placeholder="http://">
<p class="help-block">Enter a URL to a .epub file</p>
</div>
</div>
-->
<div class="control-group">
<label for="files">From Local File:</label>
<div class="controls">
<input type="file" id="files" name="files[]" multiple />
</div>
</div>
<div class="control-group" id='unpacked-input'>
<label for="dir_input">Unpacked Directory:</label>
<div class="controls">
<input type="file" id="dir_input" webkitdirectory="" directory="">
</div>
</div>
<div class="control-group">
<label class="control-label" for="">Validate:</label>
<div class="controls">
<label class="checkbox" for="optionsCheckbox">
<input type="checkbox" id="optionsCheckbox" value="option1">
Confirm that this book complies with ePUB standards
</label>
</div>
</div>
</form>
</div>
<div class="modal-footer">
<!--<a href="#" class="btn btn-primary">Save changes</a> Help?-->
<button id='url-button' class='btn btn-primary'>Add Book</button>
<a href="#" class="btn" data-dismiss="modal" role="button">Cancel</a>
</div>
<div class="offscreenText"> Add Book End </div>
</div><!-- end add le book -->
<div id='progress-container' class='span5' style="display: none" role="status" aria-live="assertive">
</div>
</div>
<script src="/lib/jquery-1.7.1.min.js" type="text/javascript" ></script>
<!-- This one file: contains a bunch of libs minified and concatenated together -->
<script src="/scripts/libs/web_plugins.js" type="text/javascript" ></script>
<script src='/scripts/000123456677.js' type='text/javascript'></script>
<!-- Asynchronous Google Analytics snippet: mathiasbynens.be/notes/async-analytics-snippet -->
<script>
var _gaq=[['_setAccount','UA-48007775-3'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src='http://www.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
</body>
</html>