Tweak some pages to match their "dock" icons.

This commit is contained in:
Jeff Teunissen 2002-10-01 11:38:08 +00:00
parent 5849f58c70
commit 6b5b47a594
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
<? // Preamble <? // Preamble
$pageName = "Mailing Lists"; $pageName = "Mailing Lists";
$focused = "none"; // Dock icon name to get a border $focused = "mail"; // Dock icon name to get a border
$currPage = "lists"; // Name of the page, for the menu $currPage = "lists"; // Name of the page, for the menu
require "parts/preamble.php"; // Load most of document require "parts/preamble.php"; // Load most of document

View File

@ -1,6 +1,6 @@
<? // Preamble <? // Preamble
$pageName = "News Archives"; $pageName = "News Archives";
$focused = "none"; // Dock icon name to get a border $focused = "news"; // Dock icon name to get a border
$currPage = "news"; // Name of the page, for the menu $currPage = "news"; // Name of the page, for the menu
require "parts/preamble.php"; // Load most of document require "parts/preamble.php"; // Load most of document
?> ?>

View File

@ -25,7 +25,7 @@
iconLink ('/lists.php', '/img/icons/mail.png', 'Lists', isFocused($focused, 'mail')); iconLink ('/lists.php', '/img/icons/mail.png', 'Lists', isFocused($focused, 'mail'));
// iconLink ('http://sourceforge.net/pm/?group_id=882', '/img/icons/tasks.png', 'Tasks', isFocused($focused, 'tasks')); // iconLink ('http://sourceforge.net/pm/?group_id=882', '/img/icons/tasks.png', 'Tasks', isFocused($focused, 'tasks'));
// iconLink ('http://sourceforge.net/survey/?group_id=882', '/img/icons/survey.png', 'Surveys', isFocused($focused, 'survey')); // iconLink ('http://sourceforge.net/survey/?group_id=882', '/img/icons/survey.png', 'Surveys', isFocused($focused, 'survey'));
iconLink ('/news.php', '/img/icons/news.png', 'News', isFocused($focused, 'news')); iconLink ('/news.php', '/img/icons/news.png', 'News Archives', isFocused($focused, 'news'));
iconLink ('/cgi-bin/viewcvs.cgi/', '/img/icons/cvs.png', 'CVS', isFocused($focused, 'cvs')); iconLink ('/cgi-bin/viewcvs.cgi/', '/img/icons/cvs.png', 'CVS', isFocused($focused, 'cvs'));
iconLink ('/files.php', '/img/icons/download.png', 'Downloads', isFocused($focused, 'download')); iconLink ('/files.php', '/img/icons/download.png', 'Downloads', isFocused($focused, 'download'));
echo '</TD></TR></TABLE>'; echo '</TD></TR></TABLE>';