|
From: Maxim <wz...@us...> - 2005-09-06 20:23:46
|
Update of /cvsroot/bbps/bbps/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30673 Modified Files: bookmark_detail.tpl index.tpl Log Message: Added 'random link' at top of the page. Resized favicons to 16x16 in css. Rechecking for favicons when editing bookmarks now 'on demand', i.e. by setting a checkbox in bookmark editting screen. Some cleanup of old code. Index: bookmark_detail.tpl =================================================================== RCS file: /cvsroot/bbps/bbps/templates/bookmark_detail.tpl,v retrieving revision 1.75 retrieving revision 1.76 diff -C2 -d -r1.75 -r1.76 *** bookmark_detail.tpl 4 Jun 2005 21:53:16 -0000 1.75 --- bookmark_detail.tpl 6 Sep 2005 20:23:38 -0000 1.76 *************** *** 44,48 **** <tr valign="top"> <td><label class="label" for="f_bookmark_private" accesskey="p"><span class="accesskey">P</span>rivate</label></td> ! <td><input type="checkbox" id="f_bookmark_private" name="f_bookmark_private" value="1" <?php echo $bookmark_is_private ?> /> </tr> </table> --- 44,52 ---- <tr valign="top"> <td><label class="label" for="f_bookmark_private" accesskey="p"><span class="accesskey">P</span>rivate</label></td> ! <td><input type="checkbox" id="f_bookmark_private" name="f_bookmark_private" value="1" <?php echo $bookmark_is_private ?> /><td> ! </tr> ! <tr valign="top"> ! <td><label class="label" for="f_bookmark_recheck_bookmark" accesskey="p"><span class="accesskey">R</span>echeck favicon</label></td> ! <td><input type="checkbox" id="f_bookmark_recheck_bookmark" name="f_bookmark_recheck_bookmark" value="1"/> Current: <img src="<?php echo $GLOBALS['CONF_FAVICON_DIR']."/".$bookmark['bbps_bookmark_favicon']; ?>" title="favicon" alt="None"/> <td> </tr> </table> Index: index.tpl =================================================================== RCS file: /cvsroot/bbps/bbps/templates/index.tpl,v retrieving revision 1.88 retrieving revision 1.89 diff -C2 -d -r1.88 -r1.89 *** index.tpl 6 Sep 2005 17:03:43 -0000 1.88 --- index.tpl 6 Sep 2005 20:23:38 -0000 1.89 *************** *** 1,3 **** - <div id="header"> <div style="width:20%; top:10px;"> --- 1,2 ---- *************** *** 45,49 **** <a href="./index.php?action=admin" title="Edit you password, colours etc.">Adminpanel</a> - <a href="./index.php?action=stats" title="Bookmark statistics">Statistics</a> - ! <?php } ?><a href="./index.php?action=mostvisited" title="List of most visited bookmarks">Most visited</a> - <?php if ($CONF_DISPLAY_RATING == TRUE) { ?> --- 44,51 ---- <a href="./index.php?action=admin" title="Edit you password, colours etc.">Adminpanel</a> - <a href="./index.php?action=stats" title="Bookmark statistics">Statistics</a> - ! <?php } ! ?> ! <a href="./index.php?action=mostvisited" title="List of most visited bookmarks">Most visited</a> - ! <a href="./redirector.php?bid=<?php echo randomBookmark(); ?>" title="Take me directly to a random bookmarked site">Random site</a> - <?php if ($CONF_DISPLAY_RATING == TRUE) { ?> *************** *** 98,100 **** <!-- Better remove this: <div class="spacer"> </div> --> ! </div> \ No newline at end of file --- 100,102 ---- <!-- Better remove this: <div class="spacer"> </div> --> ! </div> |