From: Carsten K. <car...@us...> - 2002-01-02 03:50:36
|
Update of /cvsroot/phpwiki/phpwiki/templates In directory usw-pr-cvs1:/tmp/cvs-serv3544 Modified Files: browse.html Log Message: Moved modification date out of table, so it is visible in phpwiki-printer.css with Mozilla/Amaya. Moved page actions up to fill the blank, and SignIn left under the page actions. Index: browse.html =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/templates/browse.html,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -r1.34 -r1.35 *** browse.html 2001/12/30 06:10:50 1.34 --- browse.html 2002/01/02 03:50:33 1.35 *************** *** 39,50 **** <hr class="ignore" noshade="noshade" /> <form action='<?php echo WikiURL(_("TitleSearch")); ?>' method="get" accept-charset="${CHARSET}"> - <!-- I would like not to have to use these tables, and managed to - get this stuff to work more or less correctly using - CSSs float:left; and float:right;. However float:right; seems - to cause MSIE4.01/NT to hang. - So, we use tables... --> - <table summary="Toolbar 1: Page date and page search options." class="toolbar" width="100%" - cellpadding="0" cellspacing="0" border="0"><tr valign="baseline"> - <td> <?php if ($IS_CURRENT) { ?> <?php printf(_("Last edited on %s."),"${LASTMODIFIED}"); ?> --- 39,42 ---- *************** *** 52,68 **** <?php printf(_("Version %s, saved on %s."),"${VERSION}","${LASTMODIFIED}"); ?> <?php } ?> ! </td> ! <td align="right"> ! <?php echo LinkExistingWikiWord(_("RecentChanges")) ?> ! | <?php echo LinkExistingWikiWord(_("FindPage")) ?> ! | <span><input type="hidden" name="auto_redirect" value="1" /> ! <input type="text" name="s" size="12" ! title=_("Quick Search") ! onmouseover="window.status='$_("Quick Search")'; return true;" ! onmouseout="window.status=''; return true;" /></span> ! | <?plugin-link LikePages page="[pagename]" ?> ! </td> ! </tr></table> ! <table summary="Toolbar 2: Page actions and sign in." class="toolbar" width="100%" cellpadding="0" cellspacing="0" border="0"><tr valign="baseline"> <td> --- 44,54 ---- <?php printf(_("Version %s, saved on %s."),"${VERSION}","${LASTMODIFIED}"); ?> <?php } ?> ! <hr color="black" class="toolbar" /> ! <!-- I would like not to have to use these tables, and managed to ! get this stuff to work more or less correctly using ! CSSs float:left; and float:right;. However float:right; seems ! to cause MSIE4.01/NT to hang. ! So, we use tables... --> ! <table summary="Toolbar 1: Page actions and search for pages." class="toolbar" width="100%" cellpadding="0" cellspacing="0" border="0"><tr valign="baseline"> <td> *************** *** 94,97 **** --- 80,96 ---- </td> <td align="right"> + <?php echo LinkExistingWikiWord(_("RecentChanges")) ?> + | <?php echo LinkExistingWikiWord(_("FindPage")) ?> + | <span><input type="hidden" name="auto_redirect" value="1" /> + <input type="text" name="s" size="12" + title=_("Quick Search") + onmouseover="window.status='$_("Quick Search")'; return true;" + onmouseout="window.status=''; return true;" /></span> + | <?plugin-link LikePages page="[pagename]" ?> + </td> + </tr></table> + <table summary="Toolbar 2: Sign in." class="toolbar" width="100%" + cellpadding="0" cellspacing="0" border="0"><tr valign="baseline"> + <td> <?php if ($user->is_authenticated()) { ?> <?php printf(_("You are signed in as %s"), LinkWikiWord($USERID)); ?> *************** *** 101,104 **** --- 100,106 ---- <?php } ?> </td> + + <td align="right"> + </td> </tr></table> *************** *** 118,123 **** . $errmsgs); ?> ! <div class="toolbar"> ! <!-- For debugging only, really: --> <?plugin-link _BackendInfo linktext=_("DebugInfo") --- 120,125 ---- . $errmsgs); ?> ! <table summary="For debugging only, really." class="toolbar" width="100%" ! cellpadding="0" cellspacing="0" border="0"><tr><td> <?plugin-link _BackendInfo linktext=_("DebugInfo") *************** *** 129,133 **** targetpage=_("ViewMarkup") page=[pagename] ?> ! </div> </form> </body> --- 131,135 ---- targetpage=_("ViewMarkup") page=[pagename] ?> ! </td><tr></table> </form> </body> |