Cleanup after move.
This commit is contained in:
parent
4f8fc24226
commit
e8386eca37
6 changed files with 1 additions and 259 deletions
|
@ -1 +0,0 @@
|
||||||
xxxx
|
|
39
COPYRIGHT
39
COPYRIGHT
|
@ -1,39 +0,0 @@
|
||||||
Copyrights
|
|
||||||
----------
|
|
||||||
|
|
||||||
Doctrine
|
|
||||||
--------
|
|
||||||
|
|
||||||
Doctrine is a Object Relational Mapper built from scratch with PHP5. It contains a few ports of other popular PHP classes/libraries.
|
|
||||||
|
|
||||||
Url: http://www.doctrine-project.org
|
|
||||||
Copyright: 2005-2009 Konsta Vesterinen
|
|
||||||
License: LGPL - see LICENSE file
|
|
||||||
|
|
||||||
symfony
|
|
||||||
-------
|
|
||||||
|
|
||||||
Doctrine contains ports of a few symfony classes/libraries
|
|
||||||
|
|
||||||
Url: http://www.symfony-project.org
|
|
||||||
Copyright: Fabien Potencier
|
|
||||||
License: MIT - see LICENSE file
|
|
||||||
|
|
||||||
Zend Framework
|
|
||||||
--------------
|
|
||||||
|
|
||||||
Doctrine contains ports of a few Zend components and has borrowed concepts and ideas from the Zend Framework project.
|
|
||||||
|
|
||||||
Url: http://framework.zend.com
|
|
||||||
Copyright: Copyright © 2006-2009 by Zend Technologies, All rights reserved.
|
|
||||||
License: New BSD License
|
|
||||||
|
|
||||||
eZ Components
|
|
||||||
------------
|
|
||||||
|
|
||||||
Doctrine SchemaTool, Platforms and SchemaManagers borrow ideas and concepts
|
|
||||||
from ezcDatabaseSchema.
|
|
||||||
|
|
||||||
Url: http://www.ezcomponents.org
|
|
||||||
License: New BSD License
|
|
||||||
Copyright: Copyright (C) 2005-2009 eZ Systems AS. All rights reserved.
|
|
|
@ -7,7 +7,7 @@
|
||||||
<project name="Doctrine2" default="build" basedir=".">
|
<project name="Doctrine2" default="build" basedir=".">
|
||||||
<import file="build-dependencies.xml"/>
|
<import file="build-dependencies.xml"/>
|
||||||
|
|
||||||
<taskdef classname="NativePhpunitTask" classpath="./tools/" name="nativephpunit" />
|
<taskdef classname="NativePhpunitTask" classpath="./tests/" name="nativephpunit" />
|
||||||
<taskdef classname="phing.tasks.ext.d51PearPkg2Task" name="d51pearpkg2" />
|
<taskdef classname="phing.tasks.ext.d51PearPkg2Task" name="d51pearpkg2" />
|
||||||
|
|
||||||
<property file="build.properties" />
|
<property file="build.properties" />
|
||||||
|
|
92
jpgraph.php
92
jpgraph.php
|
@ -1,92 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
// If you dont have jpgraph, you need to download it from:
|
|
||||||
// http://www.aditus.nu/jpgraph/jpdownload.php
|
|
||||||
|
|
||||||
$jpgraphPath = '../lib/jpgraph-3.0.3/src'; // put the path to your jpgraph install here
|
|
||||||
|
|
||||||
// ------------------------------------------
|
|
||||||
|
|
||||||
require_once "$jpgraphPath/jpgraph.php";
|
|
||||||
require_once "$jpgraphPath/jpgraph_line.php";
|
|
||||||
|
|
||||||
$logsPath = 'logs/';
|
|
||||||
|
|
||||||
$revisions = array();
|
|
||||||
$graphs = array();
|
|
||||||
|
|
||||||
if (isset($_POST['test'])) {
|
|
||||||
list($testsuite, $testcase) = explode('#', $_POST['test']);
|
|
||||||
}
|
|
||||||
|
|
||||||
$items = scandir($logsPath);
|
|
||||||
foreach ($items as $item) {
|
|
||||||
if ($item[0] != '.') {
|
|
||||||
$revisions[] = $item;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach ($revisions as $rev) {
|
|
||||||
$xml = simplexml_load_file($logsPath . $rev . '/log.xml');
|
|
||||||
foreach ($xml->testsuite as $suite) {
|
|
||||||
foreach ($suite->testcase as $test) {
|
|
||||||
if (stripos((string)$suite['name'], 'performance') !== false || stripos((string)$test['name'], 'performance') !== false) {
|
|
||||||
$name = (string)$suite['name'] . '#' . (string)$test['name'];
|
|
||||||
$graphs[$name][] = (double)$test['time'];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($testsuite) && isset($testcase)) {
|
|
||||||
$graphName = $testsuite . '#' . $testcase;
|
|
||||||
$graphData = $graphs[$graphName];
|
|
||||||
|
|
||||||
// Create the graph. These two calls are always required
|
|
||||||
$graph = new Graph(650,250);
|
|
||||||
|
|
||||||
//$graph->SetScale('intint');
|
|
||||||
$graph->SetScale('textlin');
|
|
||||||
$graph->yaxis->scale->SetAutoMin(0);
|
|
||||||
|
|
||||||
$graph->title->Set($testsuite);
|
|
||||||
$graph->subtitle->Set($testcase);
|
|
||||||
|
|
||||||
$graph->xaxis->title->Set('revision');
|
|
||||||
$graph->yaxis->title->Set('seconds');
|
|
||||||
$graph->SetMargin(100, 100, 50, 50);
|
|
||||||
|
|
||||||
// Create the linear plot
|
|
||||||
$lineplot = new LinePlot($graphData);
|
|
||||||
$lineplot->SetColor('blue');
|
|
||||||
|
|
||||||
$graph->xaxis->SetTickLabels($revisions);
|
|
||||||
|
|
||||||
// Add the plot to the graph
|
|
||||||
$graph->Add($lineplot);
|
|
||||||
|
|
||||||
// Display the graph
|
|
||||||
$graph->Stroke();
|
|
||||||
} else {
|
|
||||||
|
|
||||||
echo '<html><head></head><body>';
|
|
||||||
echo 'Pick a test and click "show":<br/>';
|
|
||||||
echo '<form method="post" action="' . $_SERVER['PHP_SELF'] . '">';
|
|
||||||
|
|
||||||
echo '<select name="test">';
|
|
||||||
|
|
||||||
foreach ($graphs as $name => $data) {
|
|
||||||
echo '<option value="' . $name . '">' . $name . '</option>';
|
|
||||||
}
|
|
||||||
|
|
||||||
echo '</select>';
|
|
||||||
|
|
||||||
echo '<button type="submit">Show</button>';
|
|
||||||
|
|
||||||
echo '</form>';
|
|
||||||
echo '</body></html>';
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
126
phpdoc.ini
126
phpdoc.ini
|
@ -1,126 +0,0 @@
|
||||||
; Default configuration file for PHPDoctor
|
|
||||||
|
|
||||||
; This config file will cause PHPDoctor to generate API documentation of
|
|
||||||
; itself.
|
|
||||||
|
|
||||||
|
|
||||||
; PHPDoctor settings
|
|
||||||
; -----------------------------------------------------------------------------
|
|
||||||
|
|
||||||
; Names of files to parse. This can be a single filename, or a comma separated
|
|
||||||
; list of filenames. Wildcards are allowed.
|
|
||||||
|
|
||||||
;files = "*.php"
|
|
||||||
files = *.php
|
|
||||||
|
|
||||||
; Names of files or directories to ignore. This can be a single filename, or a
|
|
||||||
; comma separated list of filenames. Wildcards are NOT allowed.
|
|
||||||
|
|
||||||
ignore = "CVS, .svn, .git, _compiled, vendor"
|
|
||||||
|
|
||||||
; The directory to look for files in, if not used the PHPDoctor will look in
|
|
||||||
; the current directory (the directory it is run from).
|
|
||||||
|
|
||||||
source_path = "./lib"
|
|
||||||
|
|
||||||
; If you do not want PHPDoctor to look in each sub directory for files
|
|
||||||
; uncomment this line.
|
|
||||||
|
|
||||||
;subdirs = off
|
|
||||||
|
|
||||||
; Set how loud PHPDoctor is as it runs. Quiet mode suppresses all output other
|
|
||||||
; than warnings and errors. Verbose mode outputs additional messages during
|
|
||||||
; execution.
|
|
||||||
|
|
||||||
;quiet = on
|
|
||||||
;verbose = on
|
|
||||||
|
|
||||||
; Select the doclet to use for generating output.
|
|
||||||
|
|
||||||
doclet = standard
|
|
||||||
;doclet = debug
|
|
||||||
|
|
||||||
; The directory to find the doclet in. Doclets are expected to be in a
|
|
||||||
; directory named after themselves at the location given.
|
|
||||||
|
|
||||||
;doclet_path = ./doclets
|
|
||||||
|
|
||||||
; The directory to find taglets in. Taglets allow you to make PHPDoctor handle
|
|
||||||
; new tags and to alter the behavour of existing tags and their output.
|
|
||||||
|
|
||||||
;taglet_path = ./taglets
|
|
||||||
|
|
||||||
; If the code you are parsing does not use package tags or not all elements
|
|
||||||
; have package tags, use this setting to place unbound elements into a
|
|
||||||
; particular package.
|
|
||||||
|
|
||||||
default_package = "Doctrine"
|
|
||||||
|
|
||||||
; Specifies the name of a HTML file containing text for the overview
|
|
||||||
; documentation to be placed on the overview page. The path is relative to
|
|
||||||
; "source_path" unless an absolute path is given.
|
|
||||||
|
|
||||||
overview = readme.html
|
|
||||||
|
|
||||||
; Package comments will be looked for in a file named package.html in the same
|
|
||||||
; directory as the first source file parsed in that package or in the directory
|
|
||||||
; given below. If package comments are placed in the directory given below then
|
|
||||||
; they should be named "<packageName>.html".
|
|
||||||
|
|
||||||
package_comment_dir = ./
|
|
||||||
|
|
||||||
; Parse out global variables and/or global constants?
|
|
||||||
|
|
||||||
;globals = off
|
|
||||||
;constants = off
|
|
||||||
|
|
||||||
; Generate documentation for all class members
|
|
||||||
|
|
||||||
;private = on
|
|
||||||
|
|
||||||
; Generate documentation for public and protected class members
|
|
||||||
|
|
||||||
protected = on
|
|
||||||
|
|
||||||
; Generate documentation for only public class members
|
|
||||||
|
|
||||||
;public = on
|
|
||||||
|
|
||||||
; Use the PEAR compatible handling of the docblock first sentence
|
|
||||||
|
|
||||||
;pear_compat = on
|
|
||||||
|
|
||||||
; Standard doclet settings
|
|
||||||
; -----------------------------------------------------------------------------
|
|
||||||
|
|
||||||
; The directory to place generated documentation in. If the given path is
|
|
||||||
; relative to it will be relative to "source_path".
|
|
||||||
|
|
||||||
d = "api"
|
|
||||||
|
|
||||||
; Specifies the title to be placed in the HTML <title> tag.
|
|
||||||
|
|
||||||
windowtitle = "Doctrine"
|
|
||||||
|
|
||||||
; Specifies the title to be placed near the top of the overview summary file.
|
|
||||||
|
|
||||||
doctitle = "Doctrine: PHP Object-Relational Mapper"
|
|
||||||
|
|
||||||
; Specifies the header text to be placed at the top of each output file. The
|
|
||||||
; header will be placed to the right of the upper navigation bar.
|
|
||||||
|
|
||||||
header = "Doctrine"
|
|
||||||
|
|
||||||
; Specifies the footer text to be placed at the bottom of each output file. The
|
|
||||||
; footer will be placed to the right of the lower navigation bar.
|
|
||||||
|
|
||||||
footer = "Doctrine"
|
|
||||||
|
|
||||||
; Specifies the text to be placed at the bottom of each output file. The text
|
|
||||||
; will be placed at the bottom of the page, below the lower navigation bar.
|
|
||||||
|
|
||||||
;bottom = "This document was generated by <a href="http://phpdoctor.sourceforge.net/">PHPDoctor: The PHP Documentation Creator</a>"
|
|
||||||
|
|
||||||
; Create a class tree?
|
|
||||||
|
|
||||||
;tree = off
|
|
Loading…
Add table
Reference in a new issue