-
Notifications
You must be signed in to change notification settings - Fork 54
/
importexport.html
92 lines (85 loc) · 3.37 KB
/
importexport.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
<!--
This file is part of All Mangas Reader.
All Mangas Reader is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
All Mangas Reader is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with All Mangas Reader. If not, see <http://www.gnu.org/licenses/>.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"><title>All Mangas Reader Import / Export</title>
<link href="css/amr_style.css" rel="stylesheet" type="text/css">
<link href="css/importexport.css" rel="stylesheet" type="text/css">
<script src="js/jquery.js" type="text/javascript"></script>
<script src="js/analytics.js" type="text/javascript"></script>
<script src="js/innermenu.js" type="text/javascript"></script>
<script src="js/importexport.js" type="text/javascript"></script>
</head>
<body>
<div id="header">
<div id="subheader">
<img class="imglogo" src="img/icon-32.png" width="100" alt="AllMangasReader"/>
<h1>All Mangas Reader Import / Export Tool</h1>
</div>
</div>
<div id="menunav">
<div id="menuitems">
<ul>
<li> </li>
</ul>
</div>
</div>
<div id="corpseone">
<div id="subcorpseone">
<ul class="tabs">
<li class="tab checked">Import</li>
<li class="tab">Export</li>
</ul>
<div class="article parent ongletCont" id="ong1" style="width:100%;">
<div class="article main">
<p>To import a file, open it (with notepad for example), copy its whole content and paste it in the bow below : </p>
<div style="text-align:center">
<textarea id="importBox" cols="90" rows="5"></textarea>
</div>
<div style="text-align: center;">
<div class="button" id="importdata">Let AMR read it !</div>
</div>
<div id="resImp" style="display:none;"></div>
</div>
</div>
<div class="article parent ongletCont" id="ong2" style="display:none;width:100%;">
<div class="article main">
<input type="checkbox" id="mgCk" checked/>
<label for="mgCk">Export manga list</label><br />
<input type="checkbox" id="bmCk" checked/>
<label for="bmCk">Export bookmarks</label>
<div style="text-align: center;">
<div class="button" id="exportdata">Export file</div>
</div>
<div id="resExp" style="display:none;">
<div style="text-align:center">
<textarea id="exportBox" cols="90" rows="5"></textarea></div><br />
<div style="text-align: center;">
<div class="button" id="copytoclip">Copy content to clipboard</div>
<a class="button" id="downloadtxt" href="">Download as file</a>
</div>
<p>
To save the result of this export, click on the copy button above and paste it in a new file of your choice or just click the download button to create the text file in one step.
</p>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
All Mangas Reader 2013.
</div>
</body>
</html>