3421583e0c630e6a57cc1e461caf38bb8866c4b5
[phpfspot.git] / phpfspot.js
1 /***************************************************************************
2  *
3  * phpfspot, presents your F-Spot photo collection in Web browsers.
4  *
5  * Copyright (c) by Andreas Unterkircher
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2 of the License, or
10  *  any later version.
11  *
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with this program; if not, write to the Free Software
19  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  ***************************************************************************/
22
23 /**
24  * show photo
25  *
26  * this function will be called by client and fetches
27  * the single-photo view via AJAX from the server.
28  * Furthermore it will scrollup the browser to the top
29  * position so the image become visibile immediatley.
30  */
31 function showPhoto(id, scrollup)
32 {
33    /* is phpfspot skeleton really displayed? */
34    if(!document.getElementById('content'))
35       return;
36
37    var content = document.getElementById('content');
38
39    /* blank the screen */
40    if(scrollup != undefined) {
41       content.innerHTML = "";
42    }
43
44    /* fetch single-photo view from server */
45    HTML_AJAX.replace(content, encodeURI(web_path + '/rpc.php?action=showphoto&id=' + id));
46
47    /* scroll the window up to the top */
48    if(scrollup != undefined) {
49       window.scrollTo(0,0);
50    }
51
52    /* delete some global vars */
53    delete(origHeight); origHeight = undefined;
54    delete(origWidth); origWidth = undefined;
55    delete(photo_details_pos); photo_details_pos = undefined;
56
57 } // showPhoto()
58
59 /**
60  * scroll browser to the last shown photo
61  *
62  * this function will be called when user returns from single-photo
63  * to the photo index. It will scroll down the window (if possible)
64  * to the position of the last shown photo.
65  */
66 function moveToThumb(thumb_id)
67 {
68    if(thumb_id == undefined)
69       return;
70
71    if(thumbimg = document.getElementById('thumbimg' + thumb_id)) {
72       window.scrollTo(0, findPos(thumbimg,'top')-100);
73    }
74
75 } // moveToThumb()
76
77 /**
78  * return position of object
79  *
80  * this function returns the position of an object.
81  * depending on the parameter 'direction' it will either
82  * return the X or Y position.
83  */
84 function findPos(obj, direction) {
85    var cur = 0;
86    if (obj.offsetParent) {
87       do {
88          if(direction == 'left')
89             cur += obj.offsetLeft;
90          if(direction == 'top')
91             cur += obj.offsetTop;
92       } while (obj = obj.offsetParent);
93    }
94    return [cur];
95
96 } // findPos()
97
98 /**
99  * opens the credits page
100  */
101 function showCredits()
102 {
103    var credits = document.getElementById("content");
104    credits.innerHTML = HTML_AJAX.grab(encodeURI(web_path + '/rpc.php?action=showcredits'));
105
106 } // showCredits()
107
108 /**
109  * tag-selection handling
110  *
111  * this function is getting called by client to either
112  * - add
113  ∗ - delete
114  * - modify tag-match condition
115  *
116  * It will then fetch the result from the server via AJAX
117  * and updates the tag-selection.
118  */
119 function Tags(mode, id)
120 {
121    var objTemp = new Object();
122
123    if(mode == "add") {
124       // add tag to users session
125       objTemp['action'] = 'addtag';
126       objTemp['id'] = id;
127    }
128    else if(mode == "del") {
129       // del tag from users session
130       objTemp['action'] = 'deltag';
131       objTemp['id'] = id;
132    }
133    else if(mode == "condition") {
134       setCheckedValue(id, id.value);
135       objTemp['action'] = 'tagcondition';
136       objTemp['mode'] = id.value;
137    }
138
139    var retr = HTML_AJAX.post(web_path + '/rpc.php', objTemp);
140    if(retr == "ok") {
141       refreshAvailableTags();
142       refreshSelectedTags();
143       refreshPhotoIndex();
144    }
145    else {
146       window.alert("Server message: "+ retr);
147    }
148
149 } // Tags()
150
151 /**
152  * update available-tags tag-cloud
153  *
154  * this function queries an actual version of the tag-cloud
155  * for the available (not-selected) tags from the server via
156  * AJAX.
157  */
158 function refreshAvailableTags()
159 {
160    // update available tags
161    var avail_tags = document.getElementById('available_tags');
162    if(avail_tags != undefined) {
163       avail_tags.innerHTML = "Loading...";
164       avail_tags.innerHTML = HTML_AJAX.grab(encodeURI(web_path + '/rpc.php?action=show_available_tags'));
165    }
166
167 } // refreshAvailableTags()
168
169 /**
170  * update selected-tags list
171  *
172  * this function queries an actual version of the tag-list
173  * for the selected tags from the server via AJAX.
174  */
175 function refreshSelectedTags()
176 {
177    // update selected tags
178    var selected_tags = document.getElementById("selected_tags");
179    if(selected_tags != undefined) {
180       selected_tags.innerHTML = "Loading...";
181       selected_tags.innerHTML = HTML_AJAX.grab(encodeURI(web_path + '/rpc.php?action=show_selected_tags'));
182    }
183
184 } // refreshSelectedTags()
185
186 /**
187  * show photo index
188  *
189  * this function will fetch the photo-index view from
190  * the server via AJAX. It's also used to browse through
191  * the photo-index pages
192  */
193 function showPhotoIndex(begin_with, last_photo)
194 {
195    var url = web_path + "/rpc.php?action=show_photo_index";
196    if(begin_with != undefined)
197       url = url + '&begin_with=' + begin_with;
198    if(last_photo != undefined)
199       url = url + '&last_photo=' + last_photo;
200
201    HTML_AJAX.replace(document.getElementById("content"), encodeURI(url));
202
203 } // showPhotoIndex()
204
205 /**
206  * update photo index
207  *
208  * this function will be called, to request a refresh of the
209  * photo index. this, for example, can be caused, when changing
210  * the tag-selection.
211  */
212 function refreshPhotoIndex()
213 {
214    /* only invoke showPhotoIndex(), if photo-index is really shown */
215    if(document.getElementById("index") != undefined || startup == 1) {
216       showPhotoIndex();
217       startup = 0;
218    }
219
220 } // refreshPhotoIndex()
221
222 /**
223  * blur cursor focus
224  *
225  * this function removes the focus-rectangle which may appear
226  * when click on a link. Not always beautiful.
227  */
228 function click(object)
229 {
230    if(object.blur)
231       object.blur();
232
233 } // click()
234
235 /**
236  * change current radio-button setting
237  *
238  * This function will check the radio-button with the given value.
239  * If no radio-button is currently displayed, this function will do
240  * nothing.
241  * If the given value does not exist, the existing radio buttons will
242  * be reseted.
243  */
244 function setCheckedValue(condition, value) {
245
246    var count = condition.length;
247    if(count == undefined) {
248       condition.checked = (condition.value == value.toString());
249       return;
250    }
251    for(var i = 0; i < count; i++) {
252       condition[i].checked = false;
253       if(condition[i].value == value.toString()) {
254          condition[i].checked = true;
255       }
256    }
257
258 } // setCheckedValue()
259
260 /**
261  * Invoke a search
262  *
263  * This function will be invoked by starting
264  * any kind of search (tag-name, photo-name, date, ...).
265  */
266 function startSearch()
267 {
268    from_year = document.getElementById('fromyear').value;
269    from_month = document.getElementById('frommonth').value;
270    from_day = document.getElementById('fromday').value;
271    from = from_year +"-"+ from_month +"-"+ from_day;
272    to_year = document.getElementById('toyear').value;
273    to_month = document.getElementById('tomonth').value;
274    to_day = document.getElementById('today').value;
275    to = to_year +"-"+ to_month +"-"+ to_day;
276
277    var objTemp = new Object();
278    objTemp['action'] = 'search';
279
280    if(document.getElementsByName('searchfor_tag')[0] != undefined &&
281       document.getElementsByName('searchfor_tag')[0].value != "") {
282       objTemp['for_tag'] = document.getElementsByName('searchfor_tag')[0].value;
283    }
284    if(document.getElementsByName('searchfor_name')[0] != undefined &&
285       document.getElementsByName('searchfor_name')[0].value != "") {
286       objTemp['for_name'] = document.getElementsByName('searchfor_name')[0].value;
287    }
288    if(document.getElementsByName('consider_date')[0] != undefined &&
289       document.getElementsByName('consider_date')[0].checked == true) {
290       objTemp['from'] = from;
291       objTemp['to'] = to;
292    }
293    if(document.getElementsByName('consider_rate')[0] != undefined &&
294       document.getElementsByName('consider_rate')[0].checked == true) {
295       objTemp['rate_from'] = rate_search['from'];
296       objTemp['rate_to'] = rate_search['to'];
297    }
298
299    var retr = HTML_AJAX.post(web_path + '/rpc.php', objTemp);
300    if(retr == "ok") {
301       refreshAvailableTags();
302       refreshSelectedTags();
303       showPhotoIndex();
304    }
305    else {
306       window.alert("Server message: "+ retr);
307    }
308
309 } // startSearch()
310
311 /**
312  * enable/disable date search
313  *
314  * this function will either enable or disable the
315  * input fields for the date-search
316  */
317 function datesearch()
318 {
319    var mode = true;
320
321    if(document.getElementsByName('consider_date')[0].checked == true) {
322       mode = false;
323    }
324       
325    document.getElementById('fromyear').disabled = mode;
326    document.getElementById('frommonth').disabled = mode;
327    document.getElementById('fromday').disabled = mode;
328    document.getElementById('toyear').disabled = mode;
329    document.getElementById('tomonth').disabled = mode;
330    document.getElementById('today').disabled = mode;
331  
332 } // datesearch()
333
334 /**
335  * set view mode
336  *
337  * called for photo-index export. will return the
338  * selected mode via AJAX from the server.
339  */
340 function setViewMode(srv_webpath, mode)
341 {
342    if(srv_webpath != undefined)
343       web_path = srv_webpath;
344    else
345       web_path = '';
346
347    var exprt = document.getElementById('output');
348    exprt.innerHTML = "Loading...";
349    exprt.innerHTML = HTML_AJAX.grab(encodeURI(web_path + '/rpc.php?action=get_export&mode=' + mode));
350
351 } // setViewMode()
352
353 /**
354  * reset all search-fields
355  */
356 function clearSearch()
357 {
358    if(document.getElementsByName('searchfor_tag')[0] != undefined)
359       document.getElementsByName('searchfor_tag')[0].value = '';
360    if(document.getElementsByName('searchfor_name')[0] != undefined)
361       document.getElementsByName('searchfor_name')[0].value = '';
362
363    if(document.getElementsByName('consider_date')[0] != undefined &&
364       document.getElementsByName('consider_date')[0].checked == true) {
365       document.getElementsByName('consider_date')[0].checked = false;
366       datesearch();
367    }
368    if(document.getElementsByName('consider_rate')[0] != undefined &&
369       document.getElementsByName('consider_rate')[0].checked == true) {
370       document.getElementsByName('consider_rate')[0].checked = false;
371    }
372
373 } // clearSearch()
374
375 /**
376  * if the client is planless, ask the server what to do
377  * next.
378  */
379 function AskServerWhatToDo()
380 {
381    return HTML_AJAX.grab(encodeURI(web_path + '/rpc.php?action=what_to_do'));
382
383 } // AskServerWhatToDo()
384
385 /**
386  * init phpfspot
387  *
388  * this function will be called when the browser opens phpfspot
389  * the first time. It will fetch the tag-lists and will then
390  * switch to the right view, which the browser got told from
391  * the server (maybe someone hit the refresh button...).
392  *
393  * as parameter the server can set the correct webpath.
394  * espacialley when using user-friendly url's, the browser
395  * does not know the correct URLs to address images, stylesheets,
396  * ... then.
397  */
398 function init_phpfspot(srv_webpath)
399 {
400    if(srv_webpath != undefined)
401       web_path = srv_webpath;
402    else
403       web_path = '';
404
405    /* always load list of available tags */
406    //this should not be more necessary since 4.5.08
407    //refreshAvailableTags();
408
409    /* ask the server what we are currently displaying */
410    whattodo = AskServerWhatToDo();
411
412    if(whattodo == 'showpi' || whattodo == 'showpi_date') {
413       showPhotoIndex();
414    }
415    if(whattodo == 'showpi_tags') {
416       refreshSelectedTags();
417       showPhotoIndex();
418    }
419    if(whattodo == 'show_photo') {
420       if(photo = getPhotoToShow()) {
421          showPhoto(photo);
422          refreshSelectedTags();
423       }
424    }
425
426 } // init_phpfspot()
427
428 /**
429  * change background-color on mouse-over
430  */
431 function setBackGrdColor(item, color)
432 {
433    if(color == 'mouseover')
434       item.style.backgroundColor='#c6e9ff';
435    if(color == 'mouseout')
436       item.style.backgroundColor='#eeeeee';
437    if(color == 'mouseclick')
438       item.style.backgroundColor='#93A8CA';
439
440 } // setBackGrdColor()
441
442 /**
443  * ask server, which photo needs to be shown
444  *
445  * when user press the refresh-button in a single-photo
446  * view or maybe enters the link via an external URL, the
447  * client does not know, what photo will be shown (dimensions...).
448  * But the server can tell this the browser.
449  */
450 function getPhotoToShow()
451 {
452    var photo_to_show = HTML_AJAX.grab(encodeURI(web_path + '/rpc.php?action=get_photo_to_show'));
453
454    // if no image needs to be shown, return false from here
455    if(photo_to_show == "")
456       return false;
457    
458    return photo_to_show;
459
460 } // getPhotoToShow()
461
462 /**
463  * a fake-zoom for photo
464  *
465  * a quick to let the browser do some zooming on
466  * photos.
467  */
468 function zoom(mod)
469 {
470    var photo;
471
472    if(mod == undefined)
473       return;
474
475    /* internet explorer */
476    if(document.images['photo'].width)
477       photo = document.images['photo'];
478
479    /* all others */
480    if(photo == undefined && document.getElementById('photo').width)
481       photo = document.getElementById('photo');
482
483    if(photo != undefined) {
484
485       if(origWidth == undefined)
486          origWidth = photo.width;
487       if(origHeight == undefined)
488          origHeight = photo.height;
489
490       if(mod != 0) {
491          new_w = photo.width * (1 + mod/100);
492          new_h = photo.height * (1 + mod/100);
493          photo.width = new_w;
494          photo.height = new_h;
495
496          if(photo_details_pos == undefined) {
497             photo_details_pos = findPos(document.getElementById('photo_details'),'left');
498          }
499
500          if((photo.offsetLeft + new_w) >= photo_details_pos-20) {
501             hidePhotoDetails('true');
502          }
503          else {
504             hidePhotoDetails('false');
505          }
506       }
507       else {
508          photo.width = origWidth;
509          photo.height = origHeight;
510          hidePhotoDetails('false');
511       }
512    }
513
514 } // zoom()
515
516 /**
517  * hides the photo details layin
518  *
519  * if the photo is getting zoomed quiet large, this will
520  * auto-hide (and also restore) the photo-details-box.
521  */
522 function hidePhotoDetails(mode)
523 {
524    var photo_details;
525
526    if(photo_details = document.getElementById('photo_details')) {
527       if(mode == 'true') {
528          photo_details.style.visibility = 'hidden';
529          photo_details.style.display = 'none';
530       }
531       else {
532          photo_details.style.visibility = 'visible';
533          photo_details.style.display = '';
534       }
535    }
536 } // hidePhotoDetails()
537
538 /**
539  * show calendar
540  */
541 function showCalendar(date_box, click_obj)
542 {
543    var calendar = document.getElementById('calendar');
544    var year = document.getElementById(date_box+'year').value;
545    var month = document.getElementById(date_box+'month').value;
546    if(date_box == 'from') {
547       var xpos = document.getElementById('frompic').offsetLeft;
548       var ypos = document.getElementById('frompic').offsetTop;
549       calendar_mode = 'from';
550    }
551    if(date_box == 'to') {
552       var xpos = document.getElementById('topic').offsetLeft;
553       var ypos = document.getElementById('topic').offsetTop;
554       calendar_mode = 'to';
555    }
556    calendar.style.left = xpos + 100 + 'px';
557    calendar.style.top = ypos + 80 + 'px';
558
559    if(calendar.style.visibility == "" || calendar.style.visibility == 'hidden') {
560       calendar.style.visibility = 'visible';
561       calendar.innerHTML = "Loading...";
562       calendar.innerHTML = HTML_AJAX.grab(encodeURI(web_path +'/rpc.php?action=get_calendar_matrix&year=' + year + '&month=' + month));
563       calendar_shown = 1;
564    }
565    else {
566       hideCalendar();
567    }
568
569 } // showCalendar()
570
571 /**
572  * hide calendar
573  */
574 function hideCalendar()
575 {
576    var calendar = document.getElementById('calendar');
577    if(calendar.style.visibility != 'hidden') {
578       calendar.style.visibility = 'hidden';
579       calendar_shown = 0;
580    }
581 } // hideCalendar()
582
583 /**
584  * switch month in calendar
585  */
586 function setMonth(year, month, day)
587 {
588    var calendar = document.getElementById('calendar');
589    calendar.innerHTML = "Loading...";
590    calendar.innerHTML = HTML_AJAX.grab(encodeURI(web_path + '/rpc.php?action=get_calendar_matrix&year='+ year +'&month='+ month +'&day='+ day));
591 }
592
593 /**
594  * get the user-selected date from the calendar and
595  * put it into the date-search boxes
596  */
597 function setCalendarDate(year, month, day)
598 {
599    document.getElementById(calendar_mode+'year').value = year;
600    document.getElementById(calendar_mode+'month').value = month;
601    document.getElementById(calendar_mode+'day').value = day;
602    hideCalendar();
603
604 } // setCalendarDate()
605
606 /**
607  * reset phpfspot complelely and move to the begining
608  */
609 function resetAll()
610 {
611    HTML_AJAX.grab(encodeURI(web_path + '/rpc.php?action=reset'));
612    clearSearch();
613    refreshAvailableTags();
614    refreshSelectedTags();
615    refreshPhotoIndex();
616
617 } // resetAll()
618
619 /**
620  * find objects with their class-name
621  */
622 function WSR_getElementsByClassName(oElm, strTagName, oClassNames){
623    var arrElements = (strTagName == "*" && oElm.all)? oElm.all : oElm.getElementsByTagName(strTagName);
624    var arrReturnElements = new Array();
625    var arrRegExpClassNames = new Array();
626    if(typeof oClassNames == "object"){
627       for(var i=0; i<oClassNames.length; i++){
628          arrRegExpClassNames.push(new RegExp("(^|\s)" + oClassNames[i].replace(/-/g, "\-") + "(\s|$)"));
629       }
630    }
631    else{
632       arrRegExpClassNames.push(new RegExp("(^|\s)" + oClassNames.replace(/-/g, "\-") + "(\s|$)"));
633    }
634    var oElement;
635    var bMatchesAll;
636    for(var j=0; j<arrElements.length; j++){
637       oElement = arrElements[j];
638       bMatchesAll = true;
639       for(var k=0; k<arrRegExpClassNames.length; k++){
640          if(!arrRegExpClassNames[k].test(oElement.className)){
641             bMatchesAll = false;
642             break;
643          }
644       }
645       if(bMatchesAll){
646          arrReturnElements.push(oElement);
647       }
648    }
649    return (arrReturnElements)
650
651 } // WSR_getElementsByClassName()
652
653 /**
654  * javascript based photo preloading
655  */
656 function preloadPhotos(image_url) {
657
658    var i;
659    var timeout = 1000;
660    var waiting = 100;
661    var counting;
662
663    lbImg = WSR_getElementsByClassName(document,"img","thumb");
664    if(lbImg != undefined) {
665       for(i=0;i<lbImg.length;i++){
666          lbImg[i].src=image_url[i];
667          // to not bomb the server with requests, give the page some time
668          // to load the images one by one. if a image exceeds the timeout,
669          // the next image will be loaded.
670          if(lbImg[i].complete != undefined && lbImg[i].complete != true) {
671             counting = 0;
672             while(lbImg[i].complete != true && counting < timeout) {
673                window.setTimeout("noop()", waiting);
674                counting+=waiting;
675             }
676          }
677       }
678    }
679
680 } // preloadPhotos()
681
682 /* a function that does nothing */
683 function noop() {}
684
685 /**
686  * start slideshow
687  */
688 function startSlideShow(srv_webpath)
689 {
690    if(srv_webpath != undefined)
691       web_path = srv_webpath;
692    else
693       web_path = '';
694
695    if(!sliding) {
696       HTML_AJAX.grab(encodeURI(web_path + '/rpc.php?action=reset_slideshow'));
697       nextSlide();
698       sliding = setInterval("nextSlide()", sliding_time*1000);
699       document.getElementById('stop_ico').src = web_path + "/resources/32_stop.png";
700    }
701    else {
702       clearInterval(sliding);
703       sliding = 0;
704       document.getElementById('stop_ico').src = web_path + "/resources/32_play.png";
705    }
706
707 } // startSlideShow()
708
709 /**
710  * switch to next slide
711  */
712 function nextSlide()
713 {
714    var next_img = HTML_AJAX.grab(encodeURI(web_path + '/rpc.php?action=get_next_slideshow_img'));
715    document.getElementById('slide_img').src = next_img;
716
717 } // nextSlide()
718
719 /**
720  * switch to previous slide
721  */
722 function prevSlide()
723 {
724    var prev_img = HTML_AJAX.grab(encodeURI(web_path + '/rpc.php?action=get_prev_slideshow_img'));
725    document.getElementById('slide_img').src = prev_img;
726
727 } // prevSlide()
728
729 /**
730  * interrupt slide show
731  */
732 function pauseSlideShow()
733 {
734    if(!sliding_paused) {
735       sliding_paused = 1;
736       clearInterval(sliding);
737       document.getElementById('pause_ico').src = web_path + "/resources/32_play.png";
738    }
739    else {
740       sliding_paused = 0;
741       sliding = setInterval("nextSlide()", sliding_time*1000);
742       document.getElementById('pause_ico').src = web_path + "/resources/32_pause.png";
743    }
744
745 } // pauseSlideShow()
746
747 /**
748  * start auto-browse
749  */
750 function startAutoBrowse()
751 {
752    if(!autobrowse) {
753       autoBrowse();
754       autobrowse = setInterval("autoBrowse()", 5000);
755    }
756    else {
757       clearInterval(autobrowse);
758       autobrowse = 0;
759       document.getElementById('autobrowse_ico').src = web_path + "/resources/32_play.png";
760    }
761
762 } // startAutoBrowser()
763
764 /**
765  * auto-browsing
766  */
767 function autoBrowse()
768 {
769    if(document.getElementById('next_link')) {
770       var next_link = document.getElementById('next_link').href;
771       window.location.href = next_link;
772       document.getElementById('autobrowse_ico').src = web_path + "/resources/16_pause.png";
773    }
774    /* we have reached the last photo */
775    else {
776       if(ab_ico = document.getElementById('autobrowse_ico'))
777          ab_ico.src = web_path + "/resources/16_play.png";
778       clearInterval(autobrowse);
779    }
780
781 } // autoBrowse()
782
783 /**
784  * initiate slider to modify slide-switching-speed
785  */
786 function initSlider()
787 {
788    var sliderEl = document.getElementById ? document.getElementById("slider-1") : null;
789    var inputEl = document.forms[0]["slider-input-1"];
790    var s = new Slider(sliderEl, inputEl);
791    s.setMinimum(1);
792    s.setMaximum(10);
793    s.setValue(sliding_time);
794    document.getElementById("current_slide_time").innerHTML = sliding_time + "s Interval";
795    s.onchange = function () {
796       sliding_time = s.getValue();
797       document.getElementById("current_slide_time").innerHTML = sliding_time + "s Interval";
798       if(!sliding_paused && sliding) {
799          clearInterval(sliding);
800          sliding = setInterval("nextSlide()", sliding_time*1000);
801       }
802    };
803    window.onresize = function () {
804       s.recalculate();
805    };
806
807 } // initSlider()
808
809 /**
810  * if the sort-order (photo-name, date, ...) has been
811  * changed, update the photo-index view.
812  */
813 function update_sort_order(obj)
814 {  
815    var objTemp = new Object();
816    objTemp['value'] = obj.options[obj.selectedIndex].value;
817
818    var retr = HTML_AJAX.post(web_path + '/rpc.php?action=update_sort_order', objTemp);
819
820    if(retr == "ok") {
821       showPhotoIndex();
822    }
823    else {
824       window.alert("Server message: "+ retr);
825    }
826
827 } // update_sort_order()
828
829 /**
830  * show rate stars
831  *
832  * this function will show the requested amount of
833  * rate-stars.
834  *
835  * @param string mode
836  * @param int level
837  */
838 function show_rate(mode, level)
839 {
840    var i;
841
842    for(i = 1; i <= 5; i++) {
843       if(i <= level) {
844          document.getElementById('rate_' + mode + '_' + i).src = web_path + '/resources/star.png';
845       }
846       else {
847          document.getElementById('rate_' + mode + '_' + i).src = web_path + '/resources/empty_rate.png';
848       }
849    }
850
851 } // show_rate()
852
853 /**
854  * set rate stars
855  *
856  *
857  * this function will set the requested rate-stars-amount into a global
858  * variable (which will then later be used on form-submit) and will also
859  * update the display.
860  *
861  * @param string mode
862  * @param int level
863  */
864 function set_rate(mode, level)
865 {
866    rate_search[mode] = level;
867    show_rate(mode, level);
868
869 } // set_rate()
870
871 /**
872  * reset rate stars
873  *
874  * this function will reset the rate-star to their initial value.
875  *
876  * @param string mode
877  */
878 function reset_rate(mode)
879 {
880    if(rate_search[mode] == undefined)
881       rate_search[mode] = 0;
882
883    show_rate(mode, rate_search[mode]);
884
885 } // reset_rate()
886
887 /**
888  * handle key events
889  */
890 function keyDown(e) {
891    var evt = (e) ? e:(window.event) ? window.event:null;
892
893    if(evt) {
894       var key = (evt.charCode) ? evt.charCode :
895          ((evt.keyCode) ? evt.keyCode : ((evt.which) ? evt.which : 0));
896
897
898       if(key == 37) /* left curosr */ {
899          if(document.getElementById('prev_link')) {
900             var prev_link = document.getElementById('prev_link').href;
901             window.location.href = prev_link;
902          }
903          return;
904       }
905       if(key == 38) /* up cursor */ {
906       }
907       if(key == 39) /* right curosr */ {
908          if(document.getElementById('next_link')) {
909             var next_link = document.getElementById('next_link').href;
910             window.location.href = next_link;
911          }
912          return;
913       }
914       if(key == 73 && evt.altKey && evt.ctrlKey) /* ctrl+alt+i */ {
915          showPhotoIndex();
916          return;
917       }
918       if(key == 82 && evt.altKey && evt.ctrlKey) /* ctrl+alt+r */ {
919          resetAll();
920          return;
921       }
922    }
923 }
924
925 document.onkeydown=keyDown;
926 if(document.layers) {
927    document.captureEvents(Event.KEYDOWN);
928 }
929
930 // will be reseted by first viewing photo-index
931 var startup = 1;
932 // calendar specific
933 var calendar_shown = 0;
934 var calendar_mode = '';
935 // auto-browsing & sliding
936 var autobrowse = 0;
937 var sliding = 0;
938 var sliding_paused = 0;
939 var sliding_time = 3;
940 // zooming
941 var origHeight;
942 var origWidth;
943 // position of the last shown photo in photo-index
944 var photo_details_pos;
945 var web_path;
946 var rate_search = new Array();