Fixed missing break; causing overflow
[dylansserver.git] / index.php
index 485b063..bf2249b 100644 (file)
--- a/index.php
+++ b/index.php
@@ -163,7 +163,7 @@ class index extends cms {
         </li>
 
         <li><a href=
-        "git">git://dylansserver.com</a></li>
+        "/git/">git://dylansserver.com</a></li>
 
         <li>
           <h3>some notes:</h3>
@@ -172,6 +172,13 @@ class index extends cms {
         <li><a href=
         "/notes/">here</a> [<a href="/notes/rss">rss</a>]</li>
 
+        <li>
+          <h3>my resume:</h3>
+        </li>
+
+        <li>[<a href=
+        "/resume">pdf</a>]</li>
+
         <li>
         </li>
 OTHER_PROJECTS;
@@ -187,7 +194,7 @@ OTHER_PROJECTS;
 
   protected function display_exhibits() {
     echo "<div id='exhibit'>";
-    $sql = "SELECT text FROM projects";
+    $sql = "SELECT text FROM projects ORDER BY rank";
     $result = $this->db->query($sql);
     while ($entry = $result->fetch_object()) {
       echo $entry->text;
@@ -201,7 +208,7 @@ OTHER_PROJECTS;
           <h3>my projects:</h3>
         </li>
 HEREDOC;
-    $sql = "SELECT title FROM projects";
+    $sql = "SELECT title FROM projects ORDER BY rank";
     $result = $this->db->query($sql);
     while ($entry = $result->fetch_object()) {
       echo "<li><a class='tab' href='$entry->title'>$entry->title</a></li>";
@@ -666,15 +673,15 @@ class rss extends cms {
          echo <<<END_OF_ENTRY
          <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
       <channel>
-           <title>dylanstestserver.com/notes/rss</title>
-               <link>http://dylanstestserver.com/notes</link>
-               <description>dylanstestserver.com/notes/rss</description>
-               <atom:link href="http://dylanstestserver.com/notes/rss" rel="self" type="application/rss+xml" />
+           <title>dylansserver.com/notes/rss</title>
+               <link>http://dylansserver.com/notes</link>
+               <description>dylansserver.com/notes/rss</description>
+               <atom:link href="http://dylansserver.com/notes/rss" rel="self" type="application/rss+xml" />
 END_OF_ENTRY;
        while ($entry = $result->fetch_object()) {
          $title = $entry->title;
          $date_posted = $entry->date_posted;
-         $url = "http://dylanstestserver.com/note/" . $entry->url;
+         $url = "http://dylansserver.com/note/" . $entry->url;
          $text = $entry->text;
          $text = strip_tags($text);
          $end_of_first_sentence = strpos($text, '.');
@@ -751,6 +758,7 @@ switch (cms::determine_type()) {
   case "rss":
     $rss = new rss();
        $rss->display();
+    break;
   case 'archive':
     $archive = new archive;
        $archive->display();