[28320] trunk/www

source_changes at macosforge.org source_changes at macosforge.org
Mon Aug 27 21:31:20 PDT 2007


Revision: 28320
          http://trac.macosforge.org/projects/macports/changeset/28320
Author:   jmpp at macports.org
Date:     2007-08-27 21:31:20 -0700 (Mon, 27 Aug 2007)

Log Message:
-----------
Improved header and page titles.

Modified Paths:
--------------
    trunk/www/archives.php
    trunk/www/downloads.php
    trunk/www/getmp.php
    trunk/www/help.php
    trunk/www/includes/header.inc
    trunk/www/index.php
    trunk/www/ports.php

Modified: trunk/www/archives.php
===================================================================
--- trunk/www/archives.php	2007-08-28 03:54:49 UTC (rev 28319)
+++ trunk/www/archives.php	2007-08-28 04:31:20 UTC (rev 28320)
@@ -2,7 +2,7 @@
     $DOCUMENT_ROOT = $_SERVER['DOCUMENT_ROOT'];
     include_once("$DOCUMENT_ROOT/macports/includes/common.inc");
     include_once("$DOCUMENT_ROOT/macports/includes/news.inc");
-    print_header('MacPorts Home', 'utf-8');
+    print_header('MacPorts -- News Archive', 'utf-8');
     /* $Id$ */
   ?>
 

Modified: trunk/www/downloads.php
===================================================================
--- trunk/www/downloads.php	2007-08-28 03:54:49 UTC (rev 28319)
+++ trunk/www/downloads.php	2007-08-28 04:31:20 UTC (rev 28320)
@@ -1,7 +1,7 @@
   <?php
     $DOCUMENT_ROOT = $_SERVER['DOCUMENT_ROOT'];
     include_once("$DOCUMENT_ROOT/macports/includes/common.inc");
-    print_header('MacPorts Downloads', 'utf-8');
+    print_header('MacPorts -- Downloads', 'utf-8');
     /* $Id$ */
   ?>
 

Modified: trunk/www/getmp.php
===================================================================
--- trunk/www/getmp.php	2007-08-28 03:54:49 UTC (rev 28319)
+++ trunk/www/getmp.php	2007-08-28 04:31:20 UTC (rev 28320)
@@ -1,7 +1,7 @@
   <?php
     $DOCUMENT_ROOT = $_SERVER['DOCUMENT_ROOT'];
     include_once("$DOCUMENT_ROOT/macports/includes/common.inc");
-    print_header('Get MacPorts', 'utf-8');
+    print_header('MacPorts -- Download & Installation', 'utf-8');
     /* $Id$ */
   ?>
 

Modified: trunk/www/help.php
===================================================================
--- trunk/www/help.php	2007-08-28 03:54:49 UTC (rev 28319)
+++ trunk/www/help.php	2007-08-28 04:31:20 UTC (rev 28320)
@@ -1,7 +1,7 @@
   <?php
     $DOCUMENT_ROOT = $_SERVER['DOCUMENT_ROOT'];
     include_once("$DOCUMENT_ROOT/macports/includes/common.inc");
-    print_header('Get Help', 'utf-8');
+    print_header('MacPorts -- Help', 'utf-8');
     /* $Id$ */
   ?>
 

Modified: trunk/www/includes/header.inc
===================================================================
--- trunk/www/includes/header.inc	2007-08-28 03:54:49 UTC (rev 28319)
+++ trunk/www/includes/header.inc	2007-08-28 04:31:20 UTC (rev 28320)
@@ -14,10 +14,10 @@
 	    $help = '/macports/help.php';
 
 	    if($PHP_SELF == $home) {
-	      echo "<li class=\"selected\"><a href=\"/macports/index.php\" title=\"MacPorts Home\">MacPorts Home</a></li>\n";
+	      echo "<li class=\"selected\"><a href=\"/macports/index.php\" title=\"Home\">Home</a></li>\n";
 	    }
 	    else {
-	      echo "<li><a href=\"/macports/index.php\" title=\"MacPorts Home\">MacPorts Home</a></li>\n";
+	      echo "<li><a href=\"/macports/index.php\" title=\"Home\">Home</a></li>\n";
 	    }
 	    if($PHP_SELF == $getmp) {
 	      echo "<li class=\"selected\"><a href=\"/macports/getmp.php\" title=\"Get MacPorts\">Get MacPorts</a></li>\n";
@@ -26,12 +26,12 @@
 	      echo "<li><a href=\"/macports/getmp.php\" title=\"Get MacPorts\">Get MacPorts</a></li>\n";
 	    }
 	  ?>
-	    <li class="last"><a href="http://trac.macports.org/" title="Bugzilla">Support & Development</a></li>
+	    <li class="last"><a href="http://trac.macports.org/" title="Support & Development">Support & Development</a></li>
 	  </ul>
 	</div>
 	<div id="r">
 	  <ul>
-	    <li><a href="/macports/docs/" title="Documentation">Documentation</a></li>
+	    <li><a href="http://geeklair.net/new_macports_guide/" title="Documentation">Documentation</a></li>
 	    <?php
 	      if($PHP_SELF == $ports) {
 		echo "<li class=\"selected\"><a href=\"/macports/ports.php\" title=\"Available Ports\">Available Ports</a></li>\n";
@@ -40,10 +40,10 @@
 		echo "<li><a href=\"/macports/ports.php\" title=\"Available Ports\">Available Ports</a></li>\n";
 	      }
 	      if($PHP_SELF == $help) {
-		echo "<li class=\"sellast\"><a href=\"/macports/help.php\" title=\"Get Help\">Get Help</a></li>\n";
+		echo "<li class=\"sellast\"><a href=\"/macports/help.php\" title=\"Help\">Help</a></li>\n";
 	      }
 	      else {
-		echo "<li class=\"last\"><a href=\"/macports/help.php\" title=\"Get Help\">Get Help</a></li>\n";
+		echo "<li class=\"last\"><a href=\"/macports/help.php\" title=\"Help\">Help</a></li>\n";
 	      }
 	    ?>
 	  </ul>

Modified: trunk/www/index.php
===================================================================
--- trunk/www/index.php	2007-08-28 03:54:49 UTC (rev 28319)
+++ trunk/www/index.php	2007-08-28 04:31:20 UTC (rev 28320)
@@ -2,7 +2,7 @@
     $DOCUMENT_ROOT = $_SERVER['DOCUMENT_ROOT'];
     include_once("$DOCUMENT_ROOT/macports/includes/common.inc");
     include_once("$DOCUMENT_ROOT/macports/includes/news.inc");
-    print_header('MacPorts Home', 'utf-8');
+    print_header('MacPorts -- Home', 'utf-8');
     /* $Id$ */
   ?>
 

Modified: trunk/www/ports.php
===================================================================
--- trunk/www/ports.php	2007-08-28 03:54:49 UTC (rev 28319)
+++ trunk/www/ports.php	2007-08-28 04:31:20 UTC (rev 28320)
@@ -2,7 +2,7 @@
 	$DOCUMENT_ROOT = $_SERVER['DOCUMENT_ROOT'];
 	include_once("$DOCUMENT_ROOT/macports/includes/common.inc");
 	include_once("$DOCUMENT_ROOT/macports/includes/email.inc");
-	print_header('Available Ports', 'utf-8');
+	print_header('MacPorts -- Available Ports', 'utf-8');
 	$by = isset($_GET['by']) ? $_GET['by'] : '';
 	$substr = isset($_GET['substr']) ? $_GET['substr'] : '';
         /* $Id$ */

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.macosforge.org/pipermail/macports-changes/attachments/20070827/cf52d740/attachment.html


More information about the macports-changes mailing list