[30046] trunk/www

source_changes at macosforge.org source_changes at macosforge.org
Thu Oct 18 18:40:48 PDT 2007


Revision: 30046
          http://trac.macosforge.org/projects/macports/changeset/30046
Author:   jmpp at macports.org
Date:     2007-10-18 18:40:48 -0700 (Thu, 18 Oct 2007)

Log Message:
-----------
Follow-up to r30043 and include Copyright header.

Modified Paths:
--------------
    trunk/www/contact.php
    trunk/www/includes/common.inc
    trunk/www/includes/email.inc
    trunk/www/includes/footer.inc
    trunk/www/includes/header.inc
    trunk/www/install.php
    trunk/www/ports.php

Modified: trunk/www/contact.php
===================================================================
--- trunk/www/contact.php	2007-10-19 01:37:28 UTC (rev 30045)
+++ trunk/www/contact.php	2007-10-19 01:40:48 UTC (rev 30046)
@@ -1,6 +1,7 @@
 <?php
     /* -*- coding: utf-8; mode: php; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=php:et:sw=4:ts=4:sts=4 */
     /* $Id$ */
+    /* Copyright (c) 2007, MacPorts Organization */
     $MPWEB = $_SERVER['DOCUMENT_ROOT'] . dirname($_SERVER['SCRIPT_NAME']);
     include_once("$MPWEB/includes/common.inc");
     include_once("$MPWEB/includes/email.inc");

Modified: trunk/www/includes/common.inc
===================================================================
--- trunk/www/includes/common.inc	2007-10-19 01:37:28 UTC (rev 30045)
+++ trunk/www/includes/common.inc	2007-10-19 01:40:48 UTC (rev 30046)
@@ -2,8 +2,8 @@
 
 # -*- coding: utf-8; mode: php; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=php:et:sw=4:ts=4:sts=4
 # $Id$
-# Copyright (c) 2003, OpenDarwin
-# Copyright (c) 2003-2007, MacPorts Team.
+# Copyright (c) 2004-2007, MacPorts Organization
+# Copyright (c) 2004, OpenDarwin
 
 
 #####################################################################

Modified: trunk/www/includes/email.inc
===================================================================
--- trunk/www/includes/email.inc	2007-10-19 01:37:28 UTC (rev 30045)
+++ trunk/www/includes/email.inc	2007-10-19 01:40:48 UTC (rev 30046)
@@ -1,12 +1,12 @@
 <?php
+    /* -*- coding: utf-8; mode: php; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=php:et:sw=4:ts=4:sts=4 */
+    /* $Id$ */
+    /* Copyright (c) 2004-2007, MacPorts Organization */
+    /* Copyright (c) 2004, OpenDarwin */
 
-# -*- coding: utf-8; mode: php; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=php:et:sw=4:ts=4:sts=4
-# $Id$
-# Copyright (c) 2004, OpenDarwin
 
-function obfuscate_email($email)
-{
-	return "<span class='email'>".str_replace('@', "<img src='img/at.gif' alt='at' style='width: 1em; height: 1em;' />", $email)."</span>";
-}
+    function obfuscate_email($email) {
+	    return "<span class='email'>".str_replace('@', "<img src='img/at.gif' alt='at' style='width: 1em; height: 1em;' />", $email)."</span>";
+    }
 
 ?>

Modified: trunk/www/includes/footer.inc
===================================================================
--- trunk/www/includes/footer.inc	2007-10-19 01:37:28 UTC (rev 30045)
+++ trunk/www/includes/footer.inc	2007-10-19 01:40:48 UTC (rev 30046)
@@ -1,9 +1,13 @@
 <?php
-/* -*- coding: utf-8; mode: php; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=php:et:sw=4:ts=4:sts=4 */
-/* $Id$ */
+    /* -*- coding: utf-8; mode: php; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=php:et:sw=4:ts=4:sts=4 */
+    /* $Id$ */
+    /* Copyright (c) 2004-2007, MacPorts Organization */
+    /* Copyright (c) 2004, OpenDarwin */
 ?>
 
+
 <div id="footer">
+
     <p><a href="http://validator.w3.org/check?uri=referer"><img src="img/valid-xhtml11-blue.png" alt="Valid XHTML 1.1" height="31" width="88" /></a>
     <a href="http://jigsaw.w3.org/css-validator/check/referer"> <img style="border:0;width:88px;height:31px" src="img/vcss.png" alt="Valid CSS!" /></a></p>
     Copyright &copy; 2002&ndash;<?php print date("Y"); ?>, <a href="http://www.macports.org/">MacPorts</a>.

Modified: trunk/www/includes/header.inc
===================================================================
--- trunk/www/includes/header.inc	2007-10-19 01:37:28 UTC (rev 30045)
+++ trunk/www/includes/header.inc	2007-10-19 01:40:48 UTC (rev 30046)
@@ -1,6 +1,8 @@
 <?php
     /* -*- coding: utf-8; mode: php; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=php:et:sw=4:ts=4:sts=4 */
     /* $Id$ */
+    /* Copyright (c) 2004-2007, MacPorts Organization */
+    /* Copyright (c) 2004, OpenDarwin */
     $PHP_SELF = $_SERVER['PHP_SELF'];
     global $mp_version_major, $trac_url, $svn_url, $downloads, $guide_url;
 ?>

Modified: trunk/www/install.php
===================================================================
--- trunk/www/install.php	2007-10-19 01:37:28 UTC (rev 30045)
+++ trunk/www/install.php	2007-10-19 01:40:48 UTC (rev 30046)
@@ -1,6 +1,8 @@
 <?php
     /* -*- coding: utf-8; mode: php; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=php:et:sw=4:ts=4:sts=4 */
     /* $Id$ */
+    /* Copyright (c) 2004-2007, MacPorts Organization */
+    /* Copyright (c) 2004, OpenDarwin */
     $MPWEB = $_SERVER['DOCUMENT_ROOT'] . dirname($_SERVER['SCRIPT_NAME']);
     include_once("$MPWEB/includes/common.inc");
     print_header('MacPorts -- Download &amp; Installation', 'utf-8');

Modified: trunk/www/ports.php
===================================================================
--- trunk/www/ports.php	2007-10-19 01:37:28 UTC (rev 30045)
+++ trunk/www/ports.php	2007-10-19 01:40:48 UTC (rev 30046)
@@ -1,6 +1,8 @@
 <?php
     /* -*- coding: utf-8; mode: php; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=php:et:sw=4:ts=4:sts=4 */
     /* $Id$ */
+    /* Copyright (c) 2004-2007, MacPorts Organization */
+    /* Copyright (c) 2004, OpenDarwin */
     $MPWEB = $_SERVER['DOCUMENT_ROOT'] . dirname($_SERVER['SCRIPT_NAME']);
     include_once("$MPWEB/includes/common.inc");
     include_once("$MPWEB/includes/email.inc");

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


More information about the macports-changes mailing list