summaryrefslogtreecommitdiff
path: root/buildscripts/PhpDocumentor/prado_patch_dot_in_package_name.patch
diff options
context:
space:
mode:
Diffstat (limited to 'buildscripts/PhpDocumentor/prado_patch_dot_in_package_name.patch')
-rw-r--r--buildscripts/PhpDocumentor/prado_patch_dot_in_package_name.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/buildscripts/PhpDocumentor/prado_patch_dot_in_package_name.patch b/buildscripts/PhpDocumentor/prado_patch_dot_in_package_name.patch
deleted file mode 100644
index 8fa78de8..00000000
--- a/buildscripts/PhpDocumentor/prado_patch_dot_in_package_name.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-Index: phpDocumentor/ParserDocBlock.inc
-===================================================================
---- phpDocumentor/ParserDocBlock.inc (revisione 3068)
-+++ phpDocumentor/ParserDocBlock.inc (copia locale)
-@@ -752,7 +752,7 @@
- $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 @@
- }
- 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 @@
- {
- 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
- {