From 3996193250a6be5e4699048618452f4ca35578b6 Mon Sep 17 00:00:00 2001 From: "ctrlaltca@gmail.com" <> Date: Sat, 19 Nov 2011 13:43:01 +0000 Subject: updating phpDocumentor, part 3: patched to mantain "dot" as a namespace separator in @package --- buildscripts/PhpDocumentor/phpDocumentor/ParserDocBlock.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'buildscripts/PhpDocumentor/phpDocumentor') diff --git a/buildscripts/PhpDocumentor/phpDocumentor/ParserDocBlock.inc b/buildscripts/PhpDocumentor/phpDocumentor/ParserDocBlock.inc index 2e29caeb..15eb7602 100755 --- a/buildscripts/PhpDocumentor/phpDocumentor/ParserDocBlock.inc +++ b/buildscripts/PhpDocumentor/phpDocumentor/ParserDocBlock.inc @@ -752,7 +752,7 @@ class parserDocBlock $rest = implode($rest,"\t"); } else $value = trim($value[0]); } - $value = preg_replace('/[^\[\]0-9\-a-zA-Z_\x7f-\xff]/', '-', $value); + $value = preg_replace('/[^\[\]0-9\-a-zA-Z_\.\x7f-\xff]/', '-', $value); $this->packagedescrip = $this->package = trim($value); if (!empty($rest)) $this->packagedescrip = $rest; } else @@ -789,7 +789,7 @@ class parserDocBlock } if (!empty($value)) { - $value = preg_replace('/[^\[\]0-9\-a-zA-Z_\x7f-\xff]/', '-', $value); + $value = preg_replace('/[^\[\]0-9\-a-zA-Z_\.\x7f-\xff]/', '-', $value); } $this->subpackage = trim($value); if (!empty($rest)) $this->subpackagedescrip = $rest; @@ -806,7 +806,7 @@ class parserDocBlock { if (!is_string($value)) $value = $value->getString(); - $value = preg_replace('/[^\[\]0-9\-a-zA-Z_\x7f-\xff]/', '-', $value); + $value = preg_replace('/[^\[\]0-9\-a-zA-Z_\.\x7f-\xff]/', '-', $value); $this->category = $value; } else { -- cgit v1.2.3