Revision: 4273
http://svn.sourceforge.net/winmerge/?rev=4273&view=rev
Author: gerundt
Date: 2007-05-10 14:25:35 -0700 (Thu, 10 May 2007)
Log Message:
-----------
Rename constant WINMERGE_SUP to TAB_SUPPORT.
Modified Paths:
--------------
trunk/Web/Changes.txt
trunk/Web/page.inc
trunk/Web/support/index.php
trunk/Web/support/mailing-lists.php
trunk/Web/support/tracker-shortcuts.php
Modified: trunk/Web/Changes.txt
===================================================================
--- trunk/Web/Changes.txt 2007-05-10 20:39:33 UTC (rev 4272)
+++ trunk/Web/Changes.txt 2007-05-10 21:25:35 UTC (rev 4273)
@@ -1,6 +1,9 @@
2007-05-10 Tim
PATCH: [ 1714596 ] Web: Rename "Users" tab to "Home"
Web: downloads.php index.php links.php page.inc WinMergePAD.php
+ Rename constant WINMERGE_SUP to TAB_SUPPORT.
+ Web: page.inc
+ Web\support: index.php mailing-lists.php tracker-shortcuts.php
2007-05-07 Tim
Rename function setVersion() to setTab().
Modified: trunk/Web/page.inc
===================================================================
--- trunk/Web/page.inc 2007-05-10 20:39:33 UTC (rev 4272)
+++ trunk/Web/page.inc 2007-05-10 21:25:35 UTC (rev 4273)
@@ -15,7 +15,7 @@
define ('WINMERGE_2_2', '2.2');
define ('WINMERGE_2_4', '2.4');
define ('WINMERGE_2_6', '2.6');
- define ('WINMERGE_SUP', 'sup');
+ define ('TAB_SUPPORT', 'support');
/**
* ...
@@ -157,7 +157,7 @@
if ($this->_tab == WINMERGE_1_7) { //if WinMerge 1.7 ...
$temp .= " <li class=\"selected\"><a href=\"/1.7/index.php\">1.7</a></li>\n";
}
- if ($this->_tab == WINMERGE_SUP) { //if "Support" ...
+ if ($this->_tab == TAB_SUPPORT) { //if "Support" ...
$temp .= " <li class=\"selected\"><a href=\"/support/index.php\">Support</a></li>\n";
}
else { //if NOT "Support" ...
@@ -289,7 +289,7 @@
$temp .= " </li>\n";
$temp .= "</ul>\n";
break;
- case WINMERGE_SUP: //if "Support" ...
+ case TAB_SUPPORT: //if "Support" ...
$temp .= "<h2><a href=\"/support/index.php\">Support</a></h2>\n";
$temp .= "<ul>\n";
$temp .= " <li><a href=\"/support/mailing-lists.php\">Mailing Lists</a></li>\n";
Modified: trunk/Web/support/index.php
===================================================================
--- trunk/Web/support/index.php 2007-05-10 20:39:33 UTC (rev 4272)
+++ trunk/Web/support/index.php 2007-05-10 21:25:35 UTC (rev 4273)
@@ -2,7 +2,7 @@
include('../page.inc');
$page = new Page;
- $page->printHead('WinMerge: Support', WINMERGE_SUP);
+ $page->printHead('WinMerge: Support', TAB_SUPPORT);
?>
<h2>Support</h2>
<p>WinMerge is an Open Source project, that is covered
Modified: trunk/Web/support/mailing-lists.php
===================================================================
--- trunk/Web/support/mailing-lists.php 2007-05-10 20:39:33 UTC (rev 4272)
+++ trunk/Web/support/mailing-lists.php 2007-05-10 21:25:35 UTC (rev 4273)
@@ -2,7 +2,7 @@
include('../page.inc');
$page = new Page;
- $page->printHead('WinMerge: Mailing lists', WINMERGE_SUP);
+ $page->printHead('WinMerge: Mailing lists', TAB_SUPPORT);
?>
<h2>Mailing lists</h2>
<ul>
Modified: trunk/Web/support/tracker-shortcuts.php
===================================================================
--- trunk/Web/support/tracker-shortcuts.php 2007-05-10 20:39:33 UTC (rev 4272)
+++ trunk/Web/support/tracker-shortcuts.php 2007-05-10 21:25:35 UTC (rev 4273)
@@ -2,7 +2,7 @@
include('../page.inc');
$page = new Page;
- $page->printHead('WinMerge: Tracker Shortcuts', WINMERGE_SUP);
+ $page->printHead('WinMerge: Tracker Shortcuts', TAB_SUPPORT);
?>
<h2>Tracker Shortcuts</h2>
<p><em>Tracker Shortcuts</em> are shorter and nicer URLs to <a href="http://sourceforge.net/tracker/?group_id=13216">Tracker</a>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|