This repository has been archived by the owner on Jan 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
159 lines (137 loc) · 6.51 KB
/
options.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
<!doctype html>
<html>
<head>
<title>CinemakiPlus</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<link rel="stylesheet" type="text/css" href="options.css">
<link rel="stylesheet" type="text/css" href="bootstrap.css">
<script src="jquery.js" type="text/javascript" language="JavaScript"></script>
<script src="options.js" type="text/javascript" language="JavaScript"></script>
</head>
<body onload="" style="background:#ccc">
<div class="d1">
<div class="page-header">
<h1>Cinemaki Plus <small>configuración</small></h1>
</div>
<div id="status" class="alert-message" style="display:none;">
<p></p>
</div>
<h3>Archivos buscados</h3>
<div class="clearfix">
<label>Tamaño mínimo</label>
<div class="input">
<input type="text" name="min_size" id="min_size" class="span3">
<span class="help-inline">en MB</span>
</div>
</div>
<div class="clearfix">
<label>Tamaño máximo</label>
<div class="input">
<input type="text" name="max_size" id="max_size" class="span3">
<span class="help-inline">en MB</span>
</div>
</div>
<div class="clearfix">
<label for="normalSelect">Sitio de Torrents</label>
<div class="input">
<select id="torrent_pref" name="torrent_pref" class="span3">
<option value="TJ">Torrent Junkie</option>
<option value="TPB">The Pirate Bay</option>
</select>
</div>
</div>
<h3>Cinemaki</h3>
<div class="clearfix">
<label for="normalSelect">País</label>
<div class="input">
<select id="domain" name="domain" class="span3">
<option value="www.cinemaki.com.ar">Argentina</option>
<option value="www.cinemaki.com.br">Brazil</option>
<option value="www.cinemaki.cl">Chile</option>
<option value="www.cinemaki.com.co">Colombia</option>
<option value="www.cinemaki.com.mx">México</option>
<option value="www.cinemaki.com.pe">Peru</option>
<option value="www.cinemaki.com.ve">Venezuela</option>
</select>
</div>
</div>
<div class="clearfix">
<label>ID de usuario</label>
<div class="input">
<input type="text" name="ck_id" id="ck_id" class="span3">
<span class="help-inline"><a style="cursor:pointer;" onclick="find_user_id()">(?)</a></span>
</div>
</div>
<div class="clearfix">
<label>Nombre de usuario</label>
<div class="input">
<input type="text" disabled="" name="ck_username" id="ck_username" class="span3 disabled">
</div>
</div>
<h3>Método de descarga</h3>
<table>
<tr>
<td>
<input name="downloadm" type="radio" value="transmission">
</td>
<td>
<a href="http://transmissionbt.com" target="_blank">Transmission App</a>
<span class="help-inline">(es necesario habilitar la interface "remote" en Transmission)</span>
<div class="h" id="transmission_config">
<div class="clearfix">
<label>Host</label>
<div class="input">
<input type="text" name="transmission_host" id="transmission_host" class="span4">
</div>
</div>
</div>
</td>
</tr>
<tr>
<td>
<input name="downloadm" type="radio" value="utorrent">
</td>
<td>
<a href="http://www.utorrent.com/" target="_blank">uTorrent</a>
<span class="help-inline">(es necesario habilitar la <a target="_blank" href="http://www.utorrent.com/help/guides/webui">interface "WebUI" en uTorrent)</a></span>
<div class="h" id="utorrent_config">
<div class="clearfix">
<label>Host</label>
<div class="input">
<input type="text" name="utorrent_host" id="utorrent_host" class="span4">
</div>
</div>
<div class="clearfix">
<label>Puerto</label>
<div class="input">
<input type="text" name="utorrent_port" id="utorrent_port" class="span4">
</div>
</div>
<div class="clearfix">
<label>User</label>
<div class="input">
<input type="text" name="utorrent_user" id="utorrent_user" class="span4">
</div>
</div>
<div class="clearfix">
<label>Password</label>
<div class="input">
<input type="text" name="utorrent_pass" id="utorrent_pass" class="span4">
</div>
</div>
</div>
</td>
</tr>
<tr>
<td>
<input name="downloadm" type="radio" value="download">
</td>
<td>
Sólo descarga de archivos de torrents
</td>
</tr>
</table>
<button class="btn primary" onclick="save_options()">Grabar</button>
</div>
</body>
</html>