]> git.wh0rd.org - tt-rss.git/blame - functions.js
start work on support for technorati tags, schema uses cascade deletes for pgsql
[tt-rss.git] / functions.js
CommitLineData
760966c1
AD
1var hotkeys_enabled = true;
2
3function disableHotkeys() {
4 hotkeys_enabled = false;
5}
6
7function enableHotkeys() {
8 hotkeys_enabled = true;
9}
10
c0e5a40e
AD
11function xmlhttp_ready(obj) {
12 return obj.readyState == 4 || obj.readyState == 0 || !obj.readyState;
13}
14
15
9cfc649a
AD
16function notify_callback() {
17 var container = document.getElementById('notify');
18 if (xmlhttp.readyState == 4) {
19 container.innerHTML=xmlhttp.responseText;
20 }
21}
22
23function rpc_notify_callback() {
24 var container = document.getElementById('notify');
25 if (xmlhttp_rpc.readyState == 4) {
26 container.innerHTML=xmlhttp_rpc.responseText;
27 }
28}
29
7726fa02
AD
30function param_escape(arg) {
31 if (typeof encodeURIComponent != 'undefined')
32 return encodeURIComponent(arg);
33 else
34 return escape(arg);
35}
36
37function param_unescape(arg) {
38 if (typeof decodeURIComponent != 'undefined')
39 return decodeURIComponent(arg);
40 else
41 return unescape(arg);
42}
43
508a81e1
AD
44function delay(gap) {
45 var then,now;
46 then=new Date().getTime();
47 now=then;
48 while((now-then)<gap) {
49 now=new Date().getTime();
50 }
51}
7726fa02 52
c05608c2
AD
53function p_notify(msg) {
54
55 var n = parent.document.getElementById("notify");
56 var nb = parent.document.getElementById("notify_body");
57
58 if (!n || !nb) return;
59
60 nb.innerHTML = msg;
61
62 if (msg.length == 0) {
63 n.style.display = "none";
64 } else {
65 n.style.display = "block";
66 }
67
68}
69
7726fa02
AD
70function notify(msg) {
71
72 var n = document.getElementById("notify");
c05608c2 73 var nb = document.getElementById("notify_body");
7726fa02 74
c05608c2 75 if (!n || !nb) return;
f0601b87 76
c05608c2 77 nb.innerHTML = msg;
7726fa02
AD
78
79 if (msg.length == 0) {
80 n.style.display = "none";
81 } else {
82 n.style.display = "block";
83 }
84
85}
86
508a81e1 87function printLockingError() {
f0601b87 88 notify("Please wait until operation finishes");}
508a81e1 89
13ad9102
AD
90var seq = "";
91
92function hotkey_handler(e) {
760966c1 93
13ad9102
AD
94 var keycode;
95
760966c1
AD
96 if (!hotkeys_enabled) return;
97
13ad9102
AD
98 if (window.event) {
99 keycode = window.event.keyCode;
100 } else if (e) {
101 keycode = e.which;
102 }
103
104 if (keycode == 13 || keycode == 27) {
105 seq = "";
106 } else {
107 seq = seq + "" + keycode;
108 }
109
110 var piggie = document.getElementById("piggie");
111
bb7cface 112 if (piggie) {
13ad9102 113
bb7cface
AD
114 if (seq.match("807371717369")) {
115 localPiggieFunction(true);
116 } else {
117 localPiggieFunction(false);
118 }
119 }
120
9cfc649a
AD
121 if (typeof localHotkeyHandler != 'undefined') {
122 localHotkeyHandler(keycode);
123 }
124
13ad9102
AD
125}
126
e828e31e 127function cleanSelectedList(element) {
f0601b87
AD
128 var content = document.getElementById(element);
129
e828e31e
AD
130 for (i = 0; i < content.childNodes.length; i++) {
131 content.childNodes[i].className = content.childNodes[i].className.replace("Selected", "");
132 }
133
134}
135
136
137function cleanSelected(element) {
138 var content = document.getElementById(element);
f0601b87
AD
139
140 for (i = 0; i < content.rows.length; i++) {
141 content.rows[i].className = content.rows[i].className.replace("Selected", "");
142 }
143
144}
145
146function getVisibleUnreadHeadlines() {
147 var content = document.getElementById("headlinesList");
148
149 var rows = new Array();
150
151 for (i = 0; i < content.rows.length; i++) {
152 var row_id = content.rows[i].id.replace("RROW-", "");
153 if (row_id.length > 0 && content.rows[i].className.match("Unread")) {
154 rows.push(row_id);
155 }
156 }
157 return rows;
158}
159
160function getVisibleHeadlineIds() {
161
162 var content = document.getElementById("headlinesList");
163
164 var rows = new Array();
165
166 for (i = 0; i < content.rows.length; i++) {
167 var row_id = content.rows[i].id.replace("RROW-", "");
168 if (row_id.length > 0) {
169 rows.push(row_id);
170 }
171 }
172 return rows;
173}
174
175function getFirstVisibleHeadlineId() {
176 var rows = getVisibleHeadlineIds();
177 return rows[0];
178}
179
180function getLastVisibleHeadlineId() {
181 var rows = getVisibleHeadlineIds();
182 return rows[rows.length-1];
183}
184
185function markHeadline(id) {
186 var row = document.getElementById("RROW-" + id);
187 if (row) {
188 row.className = row.className + "Selected";
189 }
190}
191
192function getFeedIds() {
193 var content = document.getElementById("feedsList");
194
195 var rows = new Array();
196
197 for (i = 0; i < content.rows.length; i++) {
198 var id = content.rows[i].id.replace("FEEDR-", "");
199 if (id.length > 0) {
200 rows.push(id);
201 }
202 }
203
204 return rows;
205}
13ad9102 206
ac43eba1
AD
207function setCookie(name, value, expires, path, domain, secure) {
208 document.cookie= name + "=" + escape(value) +
209 ((expires) ? "; expires=" + expires.toGMTString() : "") +
210 ((path) ? "; path=" + path : "") +
211 ((domain) ? "; domain=" + domain : "") +
212 ((secure) ? "; secure" : "");
213}
214
215function getCookie(name) {
216
217 var dc = document.cookie;
218 var prefix = name + "=";
219 var begin = dc.indexOf("; " + prefix);
220 if (begin == -1) {
221 begin = dc.indexOf(prefix);
222 if (begin != 0) return null;
223 }
224 else {
225 begin += 2;
226 }
227 var end = document.cookie.indexOf(";", begin);
228 if (end == -1) {
229 end = dc.length;
230 }
231 return unescape(dc.substring(begin + prefix.length, end));
232}
233
1a66d16e
AD
234function disableContainerChildren(id, disable, doc) {
235
236 if (!doc) doc = document;
237
238 var container = doc.getElementById(id);
ac43eba1
AD
239
240 for (var i = 0; i < container.childNodes.length; i++) {
241 var child = container.childNodes[i];
242
d5224f0d
AD
243 try {
244 child.disabled = disable;
245 } catch (E) {
246
247 }
ac43eba1
AD
248
249 if (disable) {
250 if (child.className && child.className.match("button")) {
251 child.className = "disabledButton";
252 }
253 } else {
254 if (child.className && child.className.match("disabledButton")) {
255 child.className = "button";
256 }
d5224f0d 257 }
ac43eba1
AD
258 }
259
260}
7726fa02 261
e828e31e
AD
262function gotoPreferences() {
263 document.location.href = "prefs.php";
264}
265
266function gotoMain() {
267 document.location.href = "tt-rss.php";
268}
269
8158c57a
AD
270function gotoExportOpml() {
271 document.location.href = "opml.php?op=Export";
272}
86741347
AD
273
274function getActiveFeedId() {
275 return getCookie("ttrss_vf_actfeed");
276}
277
278function setActiveFeedId(id) {
279 return setCookie("ttrss_vf_actfeed", id);
280}
090e250b
AD
281
282var xmlhttp_rpc = false;
283
284/*@cc_on @*/
285/*@if (@_jscript_version >= 5)
286// JScript gives us Conditional compilation, we can cope with old IE versions.
287// and security blocked creation of the objects.
288try {
289 xmlhttp_rpc = new ActiveXObject("Msxml2.XMLHTTP");
290} catch (e) {
291 try {
292 xmlhttp_rpc = new ActiveXObject("Microsoft.XMLHTTP");
293 } catch (E) {
294 xmlhttp_rpc = false;
295 }
296}
297@end @*/
298
299if (!xmlhttp_rpc && typeof XMLHttpRequest!='undefined') {
300 xmlhttp_rpc = new XMLHttpRequest();
301}
302
303function label_counters_callback() {
304 if (xmlhttp_rpc.readyState == 4) {
305 var reply = xmlhttp_rpc.responseXML.firstChild;
306
307 var f_document = parent.frames["feeds-frame"].document;
308
309 for (var l = 0; l < reply.childNodes.length; l++) {
310 var id = reply.childNodes[l].getAttribute("id");
311 var ctr = reply.childNodes[l].getAttribute("counter");
312
313 var feedctr = f_document.getElementById("FEEDCTR-" + id);
314 var feedu = f_document.getElementById("FEEDU-" + id);
392d4563 315 var feedr = f_document.getElementById("FEEDR-" + id);
090e250b
AD
316
317 feedu.innerHTML = ctr;
318
319 if (ctr > 0) {
320 feedctr.className = "odd";
8073cce7 321 if (!feedr.className.match("Unread")) {
392d4563
AD
322 feedr.className = feedr.className + "Unread";
323 }
090e250b
AD
324 } else {
325 feedctr.className = "invisible";
392d4563
AD
326 feedr.className = feedr.className.replace("Unread", "");
327 }
090e250b
AD
328 }
329 }
330}
331
8073cce7 332function update_label_counters(feed) {
090e250b 333 if (xmlhttp_ready(xmlhttp_rpc)) {
e47cfe37
AD
334 var query = "backend.php?op=rpc&subop=getLabelCounters";
335
336 if (feed > 0) {
337 query = query + "&aid=" + feed;
338 }
339
090e250b
AD
340 xmlhttp_rpc.open("GET", query, true);
341 xmlhttp_rpc.onreadystatechange=label_counters_callback;
342 xmlhttp_rpc.send(null);
343 }
344}