diff options
| author | ctrlaltca@gmail.com <> | 2011-05-25 09:34:54 +0000 | 
|---|---|---|
| committer | ctrlaltca@gmail.com <> | 2011-05-25 09:34:54 +0000 | 
| commit | 15be96d7736550fbf097bb4dd3d4c971ef1f5cc1 (patch) | |
| tree | 0ae9feb919e2303d2d034c08bce057540fe6b689 /buildscripts/PhpDocumentor | |
| parent | 8aa27c48cd1b620e3a7dee1e2de2cdc67f4e9874 (diff) | |
backported build script fixes to branch/3.1
Diffstat (limited to 'buildscripts/PhpDocumentor')
6 files changed, 14 insertions, 11 deletions
diff --git a/buildscripts/PhpDocumentor/new_phpdoc.php b/buildscripts/PhpDocumentor/new_phpdoc.php index e4adea90..bac5e514 100644 --- a/buildscripts/PhpDocumentor/new_phpdoc.php +++ b/buildscripts/PhpDocumentor/new_phpdoc.php @@ -75,7 +75,7 @@ if (!empty($_REQUEST['altuserdir'])) $configdir = $_REQUEST['altuserdir'];                         <?php
          include_once('HTML_TreeMenu-1.1.2/TreeMenu.php');
          set_time_limit(0);    // six minute timeout
 -        ini_set("memory_limit","256M");
 +        ini_set("memory_limit","1024M");
          /**
           * Directory Node
           * @package HTML_TreeMenu
 diff --git a/buildscripts/PhpDocumentor/phpDocumentor/InlineTags.inc b/buildscripts/PhpDocumentor/phpDocumentor/InlineTags.inc index 1bea7734..27ae3165 100644 --- a/buildscripts/PhpDocumentor/phpDocumentor/InlineTags.inc +++ b/buildscripts/PhpDocumentor/phpDocumentor/InlineTags.inc @@ -260,21 +260,21 @@ class parserTutorialInlineTag extends parserLinkInlineTag          {
              if (strpos(trim($this->value),' '))
              {
 -                $v = split(' ',trim($this->value));
 +				$v = explode(' ', trim($this->value));
                  $value = $c->getTutorialLink($v[0]);
                  array_shift($v);
                  $descrip = join($v,' ');
              } else $value = $c->getTutorialLink($this->value);
          } else
          {
 -            $vals = split(',',$this->value);
 +			$vals = explode(',',$this->value);
              $descrip = array();
              foreach($vals as $val)
              {
                  $val = trim($val);
                  if (strpos($val,' '))
                  {
 -                    $v = split(' ',$val);
 +                    $v = explode(' ',$val);
                      $value[] = $c->getTutorialLink($v[0]);
                      array_shift($v);
                      $descrip[] = join($v,' ');
 diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Io.inc b/buildscripts/PhpDocumentor/phpDocumentor/Io.inc index 0425096d..dac36bec 100644 --- a/buildscripts/PhpDocumentor/phpDocumentor/Io.inc +++ b/buildscripts/PhpDocumentor/phpDocumentor/Io.inc @@ -361,8 +361,9 @@ class Io              {
                  if (dirname($path) != $masterPath)
                  {
 -                    $mp = split(PATH_DELIMITER,$masterPath);
 -                    $np = split(PATH_DELIMITER,str_replace('\\','/',dirname($path)));
 +                    $mp = explode(PATH_DELIMITER, $masterPath);
 +                    $np = explode(PATH_DELIMITER, str_replace('\\', '/', dirname($path)));
 +
                      if (count($np) < count($mp))
                      {
                          $masterPath = join($np, PATH_DELIMITER);
 diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Setup.inc.php b/buildscripts/PhpDocumentor/phpDocumentor/Setup.inc.php index c1e7095f..b53634de 100644 --- a/buildscripts/PhpDocumentor/phpDocumentor/Setup.inc.php +++ b/buildscripts/PhpDocumentor/phpDocumentor/Setup.inc.php @@ -157,7 +157,7 @@ class phpDocumentor_setup          {
              phpDocumentor_out("time_limit cannot be set since your in safe_mode, please edit time_limit in your php.ini to allow enough time for phpDocumentor to run"); 
          }
 -        ini_set("memory_limit","256M");
 +        ini_set("memory_limit","1024M");
          $phpver = phpversion();
          $phpdocver = PHPDOCUMENTOR_VER;
 diff --git a/buildscripts/PhpDocumentor/phpDocumentor/common.inc.php b/buildscripts/PhpDocumentor/phpDocumentor/common.inc.php index 787afd67..f86ed5da 100644 --- a/buildscripts/PhpDocumentor/phpDocumentor/common.inc.php +++ b/buildscripts/PhpDocumentor/phpDocumentor/common.inc.php @@ -238,7 +238,9 @@ function fancy_debug($s,$v)   */
  function phpDocumentor_get_class($object)
  {
 -    return strtolower(get_class($object));
 +	if(is_object($object))
 +	    return strtolower(get_class($object));
 +	return false;
  }
 -?>
\ No newline at end of file +?>
 diff --git a/buildscripts/PhpDocumentor/phpDocumentor/phpDocumentorTParser.inc b/buildscripts/PhpDocumentor/phpDocumentor/phpDocumentorTParser.inc index b5c5c733..24a816e9 100644 --- a/buildscripts/PhpDocumentor/phpDocumentor/phpDocumentorTParser.inc +++ b/buildscripts/PhpDocumentor/phpDocumentor/phpDocumentorTParser.inc @@ -1660,7 +1660,7 @@ class phpDocumentorTParser extends Parser              } else
              {
                  $save = $value[$i];
 -                $value[$i] = split("[\t ]",str_replace("\t",'    ',$value[$i]));
 +				$value[$i] = preg_split("/[\t ]/", str_replace("\t", '    ', $value[$i]));
                  $word = trim(array_shift($value[$i]));
                  $val = join(' ',$value[$i]);
                  if (trim($word) == 'internal')
 @@ -2612,4 +2612,4 @@ class phpDocumentorTParser extends Parser          $this->_wp->setWhitespace(false);
      }
  }
 -?>
\ No newline at end of file +?>
  | 
