]> code.citadel.org Git - citadel.git/commitdiff
* webcit.c: added "back, top, next" buttons to bottom of each page
authorArt Cancro <ajc@citadel.org>
Thu, 24 Jun 1999 01:44:48 +0000 (01:44 +0000)
committerArt Cancro <ajc@citadel.org>
Thu, 24 Jun 1999 01:44:48 +0000 (01:44 +0000)
        * menubar.html: replaced "User list" with "Page another user"

webcit/ChangeLog
webcit/static/menubar.html
webcit/webcit.c

index a6b0b1b555c50a573576756c7941a456c12289f5..4ab732d87c6477f8de4bdfe407652f36e5c1f944 100644 (file)
@@ -1,3 +1,7 @@
+Wed Jun 23 21:43:30 EDT 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
+       * webcit.c: added "back, top, next" buttons to bottom of each page
+       * menubar.html: replaced "User list" with "Page another user"
+
 Tue Jun 22 14:53:05 EDT 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
        * context_loop.c: rearranged some code to try to eliminate deadlocks
 
index 6ce43920f316edfd001e1ffc60a8c8cfd0340220..13499366f21ba0fcf357e1c5cecd9d73b60a46f5 100644 (file)
@@ -52,7 +52,7 @@
 </TR><TR>
        <TD BGCOLOR="#663399">
                <FONT FACE="Arial,Helvetica,sans-serif" SIZE=-1>
-               <A HREF="/userlist"><FONT COLOR="#FFFFFF">User&nbsp;list</FONT></A>
+               <A HREF="/display_page"><FONT COLOR="#FFFFFF">Page&nbsp;another&nbsp;user</FONT></A>
                </FONT>
        </TD>
 </TR><TR>
index 4b9cefb52f8b92a998b84891bee6e40f9a9ffbc1..7ab86d6c84a67442732409e657c2ebe8bc0d07e4 100644 (file)
@@ -211,7 +211,18 @@ void wDumpContent(int print_standard_html_footer)
        struct webcontent *wptr;
 
        if (fake_frames) {
-               wprintf("</TD></TR></TABLE></TABLE>\n");
+               wprintf("<CENTER><FONT SIZE=-1>"
+                       "<A HREF=\"/ungoto\">"
+                       "<IMG SRC=\"/static/back.gif\" BORDER=0>"
+                       "Ungoto</A>&nbsp;&nbsp;&nbsp;");
+               wprintf("<A HREF=\"#TheTop\">"
+                       "<IMG SRC=\"/static/up.gif\" BORDER=0>"
+                       "Top of page</A>&nbsp;&nbsp;&nbsp;");
+               wprintf("<A HREF=\"/gotonext\">"
+                       "Goto next room"
+                       "<IMG SRC=\"/static/forward.gif\" BORDER=0></A>"
+                       "</FONT>\n"
+                       "</TD></TR></TABLE></TABLE>\n");
                fake_frames = 0;
        }
 
@@ -384,7 +395,8 @@ void output_headers(int print_standard_html_head)
        
        
        if (print_standard_html_head == 1) {
-               wprintf("<TABLE border=0 width=100%>"
+               wprintf("<A NAME=\"TheTop\"></A>"
+                       "<TABLE border=0 width=100%>"
                        "<TR VALIGN=TOP><TD>");
 
                display_menubar(0);