add a basic index of all pages...
authorArun Persaud <arun@nubati.net>
Fri, 25 Nov 2011 05:24:36 +0000 (21:24 -0800)
committerArun Persaud <apersaud@lbl.gov>
Fri, 25 Nov 2011 05:39:56 +0000 (21:39 -0800)
need to restrict this still to not show all, e.g. add first and last button to next and prev and only show a few page links

getjson.php
index.php
style.css

index b220544468463127448c8b020ed882970f0e1941..0b414be61d106e435b24f109de52fcfca2366015 100644 (file)
@@ -9,40 +9,46 @@ $usePDO=$iniarray["usePDO"];
 $N=$iniarray["pics_per_page"];
 /* end parse ini-file */
 
-if (isset($_REQUEST["P"]))
-  $OFFSET = "".($_REQUEST["P"]*$N-$N).",";
-else
-  $OFFSET = "";
-
 if($usePDO)
   $DB = new PDO("sqlite:$DBFILE");
 else
   $DB = new SQlite3($DBFILE);
 
-$result = $DB->query("SELECT * FROM photos LIMIT $OFFSET $N");
 
-$row = array();
+/* do database query */
+if (isset($_REQUEST["P"]))
+  {
+    $OFFSET = "".($_REQUEST["P"]*$N-$N);
 
-$i = 0;
+    $result = $DB->query("SELECT * FROM photos LIMIT $OFFSET, $N");
+  }
+else if (isset($_REQUEST["T"]))
+  {
+    $result = $DB->query("SELECT count(*) as total FROM photos");
+  }
+else
+  $result=null;
 
+/* encode result as an array */
+$tmp=array();
 if(!$usePDO)
   {
     /* convert results into array */
-    $tmp=array();
-    while($res = $result->fetchArray(SQLITE3_ASSOC)){
-      $tmp[]=$res;
-    }
-    $result=$tmp;
+    while($res = $result->fetchArray(SQLITE3_ASSOC))
+      {
+       $tmp[]=$res;
+      }
   }
+else
+  {
+    foreach($result as $res)
+      {
+        $tmp[]=$res;
+      }
+  }
+$result=$tmp;
 
-foreach ($result as $res)
-{
-  $row[$i] = $res;
-  $i++;
-}
-
-
-echo json_encode($row);
+echo json_encode($result);
 
 /* close the database */
 if($usePDO)
@@ -50,5 +56,6 @@ if($usePDO)
 else
   $DB->close();
 
+
 ?>
 
index 5f045433d197bff0dca0c7a0c4ca2803b9605271..018beddc3578929e0915c7f3b23aa5fce66a7f29 100644 (file)
--- a/index.php
+++ b/index.php
@@ -30,7 +30,7 @@ else
 <button class="next"   onclick="right()">next </button>
 
 <div class="permalink"></div>
-
+<div class="index"></div>
 <div class="pics"> </div>
 
 <footer>
@@ -49,6 +49,15 @@ var N=<?php echo $N ?>;
 var count=0;
 
 function myreload(a) {
+  d3.json("<?php echo $webbase?>/getjson.php?T=1", function(json) {
+      s="page ";
+      n = json[0].total/N;
+      for(i=1;i<=n+1;i++)
+       {
+         s+=" <a href=\"<?php echo $webbase?>/page/"+i+"\">"+i+"</a>";
+       }
+      d3.select(".index").html(s);
+    });
   d3.json("<?php echo $webbase?>/getjson.php?P="+a, function(json) {
       count=0;
       pics.selectAll("li").remove();
@@ -72,7 +81,7 @@ function myreload(a) {
 
   permalink="<?php echo $webbase ?>/page/"+page;
   d3.select(".permalink").html("Permalink: <a href=\""+permalink+"\">"+permalink+"</a>");
-  d3.select(".debug").text("P, count= "+a+" "+count);
+  d3.select(".debug").text("P,N ="+a+" "+N);
 }
 
 function left() {
index b394c6c5649ffd7b43c4910aa14755f2a56ded84..6c25246b87d914593d1b16b761f0cb2a306d6c69 100644 (file)
--- a/style.css
+++ b/style.css
@@ -1,6 +1,9 @@
 
 h1 {color:red}
-body {background-color: black}
+body {
+    background-color: black;
+    color: #eee;
+}
 
 .permalink {
     float:right;
@@ -10,6 +13,11 @@ body {background-color: black}
 
 a[visited]{ color: #aaa;}
 
+.index {
+    margin: 0 auto;
+    width:70%;
+}
+
 .pics li { 
   display: inline;
   list-style: none;
@@ -30,3 +38,6 @@ footer {
     color: #999;
     float:right;
 }
+
+
+.debug { position: absolute; top:0; left:0}
\ No newline at end of file