[evolvis-commits] r16203: Removed obsolete files in src/docs dir

mirabilos at evolvis.org mirabilos at evolvis.org
Tue Mar 1 01:02:57 CET 2011


Author: mirabilos
Date: 2011-03-01 01:02:56 +0100 (Tue, 01 Mar 2011)
New Revision: 16203

Removed:
   trunk/gforge_base/evolvisforge-5.1/src/docs/doc_utils.php
   trunk/gforge_base/evolvisforge-5.1/src/docs/index.php
   trunk/gforge_base/evolvisforge-5.1/src/docs/log_formats.txt
Log:
Removed obsolete files in src/docs dir

Deleted: trunk/gforge_base/evolvisforge-5.1/src/docs/doc_utils.php
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/src/docs/doc_utils.php	2011-03-01 00:02:53 UTC (rev 16202)
+++ trunk/gforge_base/evolvisforge-5.1/src/docs/doc_utils.php	2011-03-01 00:02:56 UTC (rev 16203)
@@ -1,115 +0,0 @@
-<?php
-
-//
-// SourceForge: Breaking Down the Barriers to Open Source Development
-// Copyright 1999, 2000, 2001 (c) VA Linux Systems, Inc.
-// http://sourceforge.net
-//
-
-// colorized link to a file with CVS history
-// @param threshold age when quicklink is no longer highlighted (default is one week)
-// @param path path to file within CVS module
-//
-//
-//
-//
-//
-function util_cvs_query($path, $threshold = 604800, $module = "alexandria", $cvsroot = "/home/cvsroot", $viewcvs = "http://webdev.sourceforge.net/cgi-bin/viewcvs.cgi/") {
-
-	// cvs, the client, is too restrictive to use via PHP
-	// instead, read and munge the RCS files directly
-	//
-
-	// clean up slashes on inputs: path and cvsroot should only have
-	// leading slashes, module should have none
-	//
-	// TODO
-
-	// fail if path is unset or a directory
-	//
-	if (($path == '') || (substr($path, -1) == '/')) {
-
-		return 0;
-
-	} // if
-
-	// extract head line and first date line
-	//
-	$cvspath       = escapeshellcmd($cvsroot . "/" . $module . "/" . $path . ",v");
-	$cvstemp       = explode("/", $cvspath); 
-	$cvsfile       = $cvstemp[sizeof($cvstemp) - 1];
-
-  $datecmd       = "grep -a ^date $cvspath | head -n1";
-	$datestring    = exec($datecmd);
-
-  $versioncmd    = "grep -a ^head $cvspath | head -n1";
-	$versionstring = exec($versioncmd);
-
-	// test for error
-	//
-	if (substr($datestring, 0, 4) != "date") {
-
-		return 0;
-
-	} else {
-
-		// pull out date and format
-		//
-		$result["date_full"] = substr($datestring, 5, 19);
-		$result["date_YYYY"] = substr($datestring, 5, 4);
-		$result["date_MM"]   = substr($datestring, 10, 2);
-		$result["date_DD"]   = substr($datestring, 13, 2);
-		$result["date_HH"]   = substr($datestring, 16, 2);
-		$result["date_II"]   = substr($datestring, 19, 2);
-		$result["date_SS"]   = substr($datestring, 22, 2);
-
-    $result["date_UNIX"] = mktime($result["date_HH"], 
-																	$result["date_II"],
-																	$result["date_SS"],
-																	$result["date_MM"],  
-																	$result["date_DD"],  
-																	$result["date_YYYY"]);
-    $result["date_RFC"]  = date("Y/m/d H:i:s", $result["date_UNIX"]) . " GMT";
-
-		// pull author name
-		//
-		eregi(".*author.(.*);.state.*", $datestring, $eregi_result);
-		$result["author"]    = $eregi_result[1];
-
-		// pull head version number
-		//
-		eregi("head.(.*);", $versionstring, $eregi_result);
-		$result["version"]   = $eregi_result[1];
-
-		// generate ViewCVS string
-		//
-		$result["viewcvs"]   = $viewcvs . $module . "/" . $path;
-
-		// build quick-status HTML string
-		//
-		$result["status"]    = "<font size=\"-2\"><a href=\"" . $result["viewcvs"] . "\">" . $cvsfile . "</a> " . $result["version"] . " " . $result["date_RFC"] . " " . $result["author"] . "</font>";
-		if (time() < ($result["date_UNIX"] + $threshold)) {
-			$result["status"] = "<strong><font color=\"#000000\">" . $result["status"] . "</strong></font>";
-		} // if
-
-	} // if ... else
-
-	return $result;
-
-} // util_cvs_query
-
-// utility function to call util_cvs_query
-//
-function util_cvs_status($path) {
-
-	$result = util_cvs_query($path);
-
-	if (is_array($result)) {
-		return $result["status"] . " ";
-	}
-	else {
-		return "<font size=\"-2\">revision history n/a</font> ";
-	} // if
-} // function util_cvs_status
-
-?>

Deleted: trunk/gforge_base/evolvisforge-5.1/src/docs/index.php
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/src/docs/index.php	2011-03-01 00:02:53 UTC (rev 16202)
+++ trunk/gforge_base/evolvisforge-5.1/src/docs/index.php	2011-03-01 00:02:56 UTC (rev 16203)
@@ -1,252 +0,0 @@
-<?php include("doc_utils.php"); ?>
-
-<!-- ------------------------ HEADER ------------------------ -->
-<html>
-<head>
-  <title>SourceForge: Engine Team Documentation</title>
-</head>
-<body bgcolor="#FFFFFF">
-
-<table width="100%">
-  <tr>
-    <td>
-      <strong><font size=+1>SourceForge: Engine Team Documentation</font></strong><br />
-      <font size="-1">
-      SourceForge Engine Team [<a href="mailto:alexandria-devel at sourceforge.net">email</a>]</font>
-    </td>
-    <td>
-      <a href="http://sourceforge.net"><img src="images/sflogo2-105a.png" width="108" height="53" border="0"></a>
-    </td>
-  </tr>
-</table>
-
-<!-- ------------------------ MENU ------------------------ -->
-<p><hr /><p>
-
-<dd>
-  <a href="#0">0. Quick Links</a>
-</dd>
-
-<dd>
-  <a href="#1">1. Background</a>
-</dd>
-
-<dd>
-  <a href="#2">2. Project Management</a>
-</dd>
-
-<dd>
-  <a href="#3">3. Requirements, Design, Implementation</a>
-</dd>
-
-<dd>
-  <a href="#4">4. Projects</a>
-</dd>
-
-<p>
-  <strong>Note:</strong> revision histories in bold denote changes in the last week.
-</p>
-
-<!-- ------------------------ SECTION 0 ------------------------ -->
-<p><hr /><p>
-
-<a name="0"></a><strong>0. Quick Links</strong>
-
-<p>
-  <strong>List Archives:</strong> | alexandria-devel | alexandria-cvs | <a href="https://lists.valinux.com/archives/sf-engine/">sf-engine</a> | <a href="https://lists.valinux.com/archives/sf-onsite/">sf-onsite</a>|<br />
-  <strong>Sandboxes:</strong> | <a href="http://webdev.tperdue.sourceforge.net">tperdue</a> | <a href="http://webdev.dbrogdon.sourceforge.net">dbrogdon</a> | <a href="http://webdev.pfalcon.sourceforge.net">pfalcon</a> | <a href="http://webdev.jbyers.sourceforge.net">jbyers</a> |<br />
-  <strong>Reference:</strong> | <a href="http://webdev.sourceforge.net/cgi-bin/viewcvs.cgi/">ViewCVS</a> | <a href="https://vaweb.valinux.com/Marketing/SourceForge/">product marketing</a> |<br />
-</p>
-
-</table>
-
-<!-- ------------------------ SECTION 1 ------------------------ newer than-->
-<p><hr /><p>
-
-<a name="1"></a><strong>1. Background</strong>
-
-<ul>
-<table border="1" cellpadding="2" cellspacing="2">
-  <tr>
-    <td>Engine Team Charter, Vision</td>
-    <td><font size="-1">[<a href="background/charter.html">HTML</a>]<font></td>
-    <td><?php echo util_cvs_status("docs/background/charter.html"); ?></td>
-  </tr>
-
-  <tr>
-    <td>Engine Team Org Chart</td>
-    <td><font size="-1">[<a href="background/org_chart.html">HTML</a>]<font></td>
-    <td><?php echo util_cvs_status("docs/background/org_chart.html"); ?></td>
-  </tr>
-
-  <tr>
-    <td>Who's Who</td>
-    <td><font size="-1">[<a href="background/whos_who.html">HTML</a>]<font></td>
-    <td><?php echo util_cvs_status("docs/background/whos_who.html"); ?></td>
-  </tr>
-</table>
-</ul>
-
-<!-- ------------------------ SECTION 2 ------------------------ -->
-<p><hr /><p>
-
-<a name="1"></a><strong>2. Project Management</strong>
-
-<ul>
-<table border="1" cellpadding="2" cellspacing="2">
-  <tr>
-    <td>MRD, ERD, PRD: Requirements Discovery</td>
-    <td><font size="-1">[<a href="project_management/requirements.html">HTML</a>]<font></td>
-    <td><?php echo util_cvs_status("docs/project_management/requirements.html"); ?></td>
-  </tr>
-
-  <tr>
-    <td>Change Control and the Change Czar</td>
-    <td><font size="-1">[<a href="project_management/change_control.html">HTML</a>]<font></td>
-    <td><?php echo util_cvs_status("docs/project_management/change_control.html"); ?></td>
-  </tr>  
-
-  <tr>
-    <td>Source Control</td>
-    <td><font size="-1">[<a href="project_management/source_control.html">HTML</a>]<font></td>
-    <td><?php echo util_cvs_status("docs/project_management/source_control.html"); ?></td>
-  </tr>
-
-  <tr>
-    <td>Source Control: Branching Diagram</td>
-    <td><font size="-1">[<a href="project_management/source_branching.sda">SDA</a>]<font></td>
-    <td><?php echo util_cvs_status("docs/project_management/source_branching.sda"); ?></td>
-  </tr>
-
-  <tr>
-    <td>Community Involvement</td>
-    <td><font size="-1">[<a href="project_management/community.html">HTML</a>]<font></td>
-    <td><?php echo util_cvs_status("docs/project_management/community.html"); ?></td>
-  </tr>
-
-  <tr>
-    <td>Technical and Document Review</td>
-    <td><font size="-1">[<a href="project_management/review.html">HTML</a>]<font></td>
-    <td><?php echo util_cvs_status("docs/project_management/review.html"); ?></td>
-  </tr>
-
-  <tr>
-    <td>Development Process</td>
-    <td><font size="-1">[<a href="project_management/development_process.html">HTML</a>]<font></td>
-    <td><?php echo util_cvs_status("docs/project_management/development_process.html"); ?></td>
-  </tr>
-
-  <tr>
-    <td>PS Engineers on the Engine Team</td>
-    <td><font size="-1">[<a href="project_management/ps_engineers.html">HTML</a>]<font></td>
-    <td><?php echo util_cvs_status("docs/project_management/ps_engineers.html"); ?></td>
-  </tr>
-</table>
-</ul>
-
-<!-- ------------------------ SECTION 3 ------------------------ -->
-<p><hr /><p>
-
-<a name="1"></a><strong>3. Requirements, Design, Implementation</strong>
-
-<ul>
-<table border="1" cellpadding="2" cellspacing="2">
-  <tr>
-    <td>Architecture Tour (slides)</td>
-    <td><font size="-1">[<a href="architecture/tour/standards.htm">HTML</a>]<font></td>
-    <td><?php echo util_cvs_status("docs/architecture/tour/standards.htm"); ?></td>
-  </tr>
-
-  <tr>
-    <td>PHP Template Example: Logic and Presentation</td>
-    <td><font size="-1">[<a href="architecture/templating.php">HTML</a>]<font></td>
-    <td><?php echo util_cvs_status("docs/architecture/templating.php"); ?></td>
-  </tr>
-
-  <tr>
-    <td>Coding Standards</td>
-    <td><font size="-1">[<a href="architecture/coding_standards.html">HTML</a>]<font></td>
-    <td><?php echo util_cvs_status("docs/architecture/coding_standards.html"); ?></td>
-  </tr>
-
-  <tr>
-    <td>Site-Wide Structure and Use Cases</td>
-    <td><font size="-1">[<a href="">HTML</a>]<font></td>
-    <td><?php echo util_cvs_status("docs/"); ?></td>
-  </tr>
-</table>
-</ul>
-
-<!-- ------------------------ SECTION 4 ------------------------ -->
-<p><hr /><p>
-
-<a name="1"></a><strong>4. Projects</strong>
-
-<ul>
-<table border="1" cellpadding="2" cellspacing="2">
-  <tr>
-    <td>Code Cleanup (March Madness and April Fool's)</td>
-    <td><font size="-1">[<a href="">HTML</a>]<font></td>
-    <td><?php echo util_cvs_status("docs/"); ?></td>
-  </tr>
-
-  <tr>
-    <td>XML Interface</td>
-    <td><font size="-1">[<a href="">HTML</a>]<font></td>
-    <td><?php echo util_cvs_status("docs/"); ?></td>
-  </tr>
-
-  <tr>
-    <td>Site Searching</td>
-    <td><font size="-1">[<a href="">HTML</a>]<font></td>
-    <td><?php echo util_cvs_status("docs/"); ?></td>
-  </tr>
-
-  <tr>
-    <td>Geocrawler II</td>
-    <td><font size="-1">[<a href="">HTML</a>]<font></td>
-    <td><?php echo util_cvs_status("docs/"); ?></td>
-  </tr>
-
-  <tr>
-    <td>Reporting and Statistics Engine</td>
-    <td><font size="-1">[<a href="">HTML</a>]<font></td>
-    <td><?php echo util_cvs_status("docs/"); ?></td>
-  </tr>
-
-  <tr>
-    <td>UI Redesign</td>
-    <td><font size="-1">[<a href="">HTML</a>]<font></td>
-    <td><?php echo util_cvs_status("docs/"); ?></td>
-  </tr>
-
-  <tr>
-    <td>Doc Manager II</td>
-    <td><font size="-1">[<a href="">HTML</a>]<font></td>
-    <td><?php echo util_cvs_status("docs/"); ?></td>
-  </tr>
-
-  <tr>
-    <td>Content Manager</td>
-    <td><font size="-1">[<a href="">HTML</a>]<font></td>
-    <td><?php echo util_cvs_status("docs/"); ?></td>
-  </tr>
-
-  <tr>
-    <td>Foundry II</td>
-    <td><font size="-1">[<a href="">HTML</a>]<font></td>
-    <td><?php echo util_cvs_status("docs/"); ?></td>
-  </tr>
-</table>
-</ul>
-
-<!-- ------------------------ FOOTER ------------------------ -->
-<p><hr /><p>
-
-<p align="right">
-  <font size="-1">
-    Copyright © 1999, 2000, 2001 <a href="http://www.valinux.com/">VA Linux Systems, Inc.</a>
-  </font>
-</body>
-</html>
-<br />

Deleted: trunk/gforge_base/evolvisforge-5.1/src/docs/log_formats.txt
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/src/docs/log_formats.txt	2011-03-01 00:02:53 UTC (rev 16202)
+++ trunk/gforge_base/evolvisforge-5.1/src/docs/log_formats.txt	2011-03-01 00:02:56 UTC (rev 16203)
@@ -1,60 +0,0 @@
-From http://httpd.apache.org/docs/mod/mod_log_config.html#formats
-Combined log format http://httpd.apache.org/docs/logs.html#combined
-
-Some commonly used log format strings are:
-
-Common Log Format (CLF)
-    "%h %l %u %t \"%r\" %>s %b"
-Common Log Format with Virtual Host
-    "%v %h %l %u %t \"%r\" %>s %b"
-NCSA extended/combined log format
-    "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\""
-Referer log format
-    "%{Referer}i -> %U"
-Agent (Browser) log format
-    "%{User-agent}i"
-
-
-Used in gforge debian package
-
-LogFormat "%h %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" gforge
-
-
-The characteristics of the request itself are logged by placing "%" directives in the format string, which are replaced in the log entry by the values as follows:
-
-%...a:          Remote IP-address
-%...A:          Local IP-address
-%...B:          Bytes sent, excluding HTTP headers.
-%...b:          Bytes sent, excluding HTTP headers. In CLF format
-        i.e. a '-' rather than a 0 when no bytes are sent.
-%...c:          Connection status when response was completed.
-                'X' = connection aborted before the response completed.
-                '+' = connection may be kept alive after the response is sent.
-                '-' = connection will be closed after the response is sent.
-%...{FOOBAR}e:  The contents of the environment variable FOOBAR
-%...f:          Filename
-%...h:          Remote host
-%...H       The request protocol
-%...{Foobar}i:  The contents of Foobar: header line(s) in the request
-                sent to the server.
-%...l:          Remote logname (from identd, if supplied)
-%...m       The request method
-%...{Foobar}n:  The contents of note "Foobar" from another module.
-%...{Foobar}o:  The contents of Foobar: header line(s) in the reply.
-%...p:          The canonical Port of the server serving the request
-%...P:          The process ID of the child that serviced the request.
-%...q       The query string (prepended with a ? if a query string exists,
-        otherwise an empty string)
-%...r:          First line of request
-%...s:          Status.  For requests that got internally redirected, this is
-                the status of the *original* request --- %...>s for the last.
-%...t:          Time, in common log format time format (standard english format)
-%...{format}t:  The time, in the form given by format, which should
-                be in strftime(3) format. (potentially localized)
-
-%...T:          The time taken to serve the request, in seconds.
-%...u:          Remote user (from auth; may be bogus if return status (%s) is 401)
-%...U:          The URL path requested, not including any query string.
-%...v:          The canonical ServerName of the server serving the request.
-%...V:          The server name according to the UseCanonicalName setting.
-



More information about the evolvis-commits mailing list