]> git.pld-linux.org Git - packages/ZendFramework.git/blob - ZendFramework-deps.patch
disable pear generated deps, use the manually defined ones
[packages/ZendFramework.git] / ZendFramework-deps.patch
1 --- ZendFramework-1.7.6/library/Zend/Service/Audioscrobbler/Exception.php~      2009-03-10 22:15:39.811374312 +0200
2 +++ ZendFramework-1.7.6/library/Zend/Service/Audioscrobbler/Exception.php       2009-03-10 22:15:31.689629002 +0200
3 @@ -0,0 +1,32 @@
4 +<?php
5 +/**
6 + * Zend Framework
7 + *
8 + * LICENSE
9 + *
10 + * This source file is subject to the new BSD license that is bundled
11 + * with this package in the file LICENSE.txt.
12 + * It is also available through the world-wide-web at this URL:
13 + * http://framework.zend.com/license/new-bsd
14 + * If you did not receive a copy of the license and are unable to
15 + * obtain it through the world-wide-web, please send an email
16 + * to license@zend.com so we can send you a copy immediately.
17 + *
18 + * @category   Zend
19 + * @package    Zend_Service
20 + * @subpackage Audioscrobbler
21 + * @copyright  Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
22 + * @license    http://framework.zend.com/license/new-bsd     New BSD License
23 + * @version    $Id$
24 + */
25 +
26 +/**
27 + * @category   Zend
28 + * @package    Zend_Service
29 + * @subpackage Audioscrobbler
30 + * @copyright  Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
31 + * @license    http://framework.zend.com/license/new-bsd     New BSD License
32 + */
33 +class Zend_Service_Audioscrobbler_Exception extends Exception
34 +{
35 +}
36 --- ZendFramework-1.12.4/library/Zend/Xml/Security.php~ 2014-05-19 22:41:57.000000000 +0300
37 +++ ZendFramework-1.12.4/library/Zend/Xml/Security.php  2014-05-19 23:12:43.208009810 +0300
38 @@ -39,7 +39,7 @@
39      protected static function heuristicScan($xml)
40      {
41          if (strpos($xml, '<!ENTITY') !== false) {
42 -            require_once 'Exception.php';
43 +            require_once 'Zend/Xml/Exception.php';
44              throw new Zend_Xml_Exception(self::ENTITY_DETECT);
45          }
46      }
47 @@ -96,7 +96,7 @@
48              foreach ($dom->childNodes as $child) {
49                  if ($child->nodeType === XML_DOCUMENT_TYPE_NODE) {
50                      if ($child->entities->length > 0) {
51 -                        require_once 'Exception.php';
52 +                        require_once 'Zend/Xml/Exception.php';
53                          throw new Zend_Xml_Exception(self::ENTITY_DETECT);
54                      }
55                  }
56 @@ -130,7 +130,7 @@
57      public static function scanFile($file, DOMDocument $dom = null)
58      {
59          if (!file_exists($file)) {
60 -            require_once 'Exception.php';
61 +            require_once 'Zend/Xml/Exception.php';
62              throw new Zend_Xml_Exception(
63                  "The file $file specified doesn't exist"
64              );
This page took 0.038696 seconds and 3 git commands to generate.