this software does not have any MySQL requirements
[phpfspot.git] / phpfspot.js
index 4951fe1fa1f2dbf8d0b97daafed6498b4e9e45f3..859b198147cb562fb87e8cad795224741d838428 100644 (file)
@@ -1,13 +1,13 @@
 function showImage(id)
 {
 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()
 {
 }
 
 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)
 }
 
 function Tags(mode, id)
@@ -37,20 +37,25 @@ function Tags(mode, id)
 function refreshAvailableTags()
 {
    // update available tags
 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
 }
 
 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)
 }
 
 function showBubbleDetails(object, id, direction)
@@ -92,8 +97,16 @@ function setCheckedValue(condition, value) {
    }
 }
 
    }
 }
 
-function startsearch()
+function startTagSearch(searchfor)
 {
 {
-   searchfor = document.getElementsByName('searchfor')[0].value;
-   HTML_AJAX.grab(encodeURI('rpc.php?action=search&for=' + searchfor));
+   HTML_AJAX.grab(encodeURI('rpc.php?action=tag_search&for=' + searchfor));
+   refreshAvailableTags();
+   refreshSelectedTags();
+   showPhotoIndex();
+
+}
+
+function clearSearch()
+{
+   document.getElementsByName('searchfor')[0].value = '';
 }
 }