use ignore_once instead of ignore for requirement checks, or rpc.php will fail becaus...
[phpfspot.git] / phpfspot.js
index 523bc4d581f26f4679f315def2614eb29a96080e..859b198147cb562fb87e8cad795224741d838428 100644 (file)
@@ -1,13 +1,13 @@
 function showImage(id)
 {
-   content = document.getElementById("content");
-   content.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=showphoto&id=' + id));
+   var image_div = document.getElementById("content");
+   image_div.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=showphoto&id=' + id));
 }
 
 function showCredits()
 {
-   content = document.getElementById("content");
-   content.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=showcredits'));
+   var credits = document.getElementById("content");
+   credits.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=showcredits'));
 }
 
 function Tags(mode, id)
@@ -37,20 +37,25 @@ function Tags(mode, id)
 function refreshAvailableTags()
 {
    // update available tags
-   content = document.getElementById("available_tags");
-   content.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=show_available_tags'));
+   var avail_tags = document.getElementById('available_tags');
+   avail_tags.innerHTML = "Loading...";
+   avail_tags.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=show_available_tags'));
 }
 
 function refreshSelectedTags()
 {
    // update selected tags
-   content = document.getElementById("selected_tags");
-   content.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=show_selected_tags'));
+   var selected_tags = document.getElementById("selected_tags");
+   selected_tags.innerHTML = "Loading...";
+   selected_tags.innerHTML = HTML_AJAX.grab(encodeURI('rpc.php?action=show_selected_tags'));
 }
 
-function showPhotoIndex()
+function showPhotoIndex(begin_with)
 {
-   HTML_AJAX.replace(document.getElementById("content"), encodeURI('rpc.php?action=show_photo_index'));
+   if(begin_with == undefined)
+      HTML_AJAX.replace(document.getElementById("content"), encodeURI('rpc.php?action=show_photo_index'));
+   else
+      HTML_AJAX.replace(document.getElementById("content"), encodeURI('rpc.php?action=show_photo_index&begin_with=' + begin_with));
 }
 
 function showBubbleDetails(object, id, direction)
@@ -92,15 +97,13 @@ function setCheckedValue(condition, value) {
    }
 }
 
-function startSearch(searchfor)
+function startTagSearch(searchfor)
 {
-   HTML_AJAX.grab(encodeURI('rpc.php?action=search&for=' + searchfor));
-
-   Tags('reset', 0);
-
+   HTML_AJAX.grab(encodeURI('rpc.php?action=tag_search&for=' + searchfor));
    refreshAvailableTags();
    refreshSelectedTags();
    showPhotoIndex();
+
 }
 
 function clearSearch()