Modified: incubator/shindig/trunk/php/src/common/Zend/Validate/Date.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/Zend/Validate/Date.php?rev=655300&r1=655299&r2=655300&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/common/Zend/Validate/Date.php (original) +++ incubator/shindig/trunk/php/src/common/Zend/Validate/Date.php Sun May 11 04:06:48 2008 @@ -24,7 +24,7 @@ /** * @see Zend_Validate_Abstract */ -require_once 'Zend/Validate/Abstract.php'; +require_once 'src/common/Zend/Validate/Abstract.php'; /** @@ -107,9 +107,9 @@ public function setLocale($locale = null) { if ($locale !== null) { - require_once 'Zend/Locale.php'; + require_once 'src/common/Zend/Locale.php'; if (!Zend_Locale::isLocale($locale)) { - require_once 'Zend/Validate/Exception.php'; + require_once 'src/common/Zend/Validate/Exception.php'; throw new Zend_Validate_Exception("The locale '$locale' is no known locale"); } } @@ -156,7 +156,7 @@ $this->_setValue($valueString); if (($this->_format !== null) or ($this->_locale !== null)) { - require_once 'Zend/Date.php'; + require_once 'src/common/Zend/Date.php'; if (!Zend_Date::isDate($value, $this->_format, $this->_locale)) { $this->_error(self::FALSEFORMAT); return false;
Modified: incubator/shindig/trunk/php/src/common/Zend/Validate/Digits.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/Zend/Validate/Digits.php?rev=655300&r1=655299&r2=655300&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/common/Zend/Validate/Digits.php (original) +++ incubator/shindig/trunk/php/src/common/Zend/Validate/Digits.php Sun May 11 04:06:48 2008 @@ -24,7 +24,7 @@ /** * @see Zend_Validate_Abstract */ -require_once 'Zend/Validate/Abstract.php'; +require_once 'src/common/Zend/Validate/Abstract.php'; /** @@ -85,7 +85,7 @@ /** * @see Zend_Filter_Digits */ - require_once 'Zend/Filter/Digits.php'; + require_once 'src/common/Zend/Filter/Digits.php'; self::$_filter = new Zend_Filter_Digits(); } Modified: incubator/shindig/trunk/php/src/common/Zend/Validate/EmailAddress.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/Zend/Validate/EmailAddress.php?rev=655300&r1=655299&r2=655300&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/common/Zend/Validate/EmailAddress.php (original) +++ incubator/shindig/trunk/php/src/common/Zend/Validate/EmailAddress.php Sun May 11 04:06:48 2008 @@ -24,13 +24,13 @@ /** * @see Zend_Validate_Abstract */ -require_once 'Zend/Validate/Abstract.php'; +require_once 'src/common/Zend/Validate/Abstract.php'; /** * @see Zend_Validate_Hostname */ -require_once 'Zend/Validate/Hostname.php'; +require_once 'src/common/Zend/Validate/Hostname.php'; /** @@ -202,7 +202,7 @@ * MX checks are not supported by this system * @see Zend_Validate_Exception */ - require_once 'Zend/Validate/Exception.php'; + require_once 'src/common/Zend/Validate/Exception.php'; throw new Zend_Validate_Exception('Internal error: MX checking not available on this system'); } } Modified: incubator/shindig/trunk/php/src/common/Zend/Validate/Exception.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/Zend/Validate/Exception.php?rev=655300&r1=655299&r2=655300&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/common/Zend/Validate/Exception.php (original) +++ incubator/shindig/trunk/php/src/common/Zend/Validate/Exception.php Sun May 11 04:06:48 2008 @@ -24,7 +24,7 @@ /** * @see Zend_Exception */ -require_once 'Zend/Exception.php'; +require_once 'src/common/Zend/Exception.php'; /** Modified: incubator/shindig/trunk/php/src/common/Zend/Validate/Float.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/Zend/Validate/Float.php?rev=655300&r1=655299&r2=655300&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/common/Zend/Validate/Float.php (original) +++ incubator/shindig/trunk/php/src/common/Zend/Validate/Float.php Sun May 11 04:06:48 2008 @@ -24,7 +24,7 @@ /** * @see Zend_Validate_Abstract */ -require_once 'Zend/Validate/Abstract.php'; +require_once 'src/common/Zend/Validate/Abstract.php'; /** Modified: incubator/shindig/trunk/php/src/common/Zend/Validate/GreaterThan.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/Zend/Validate/GreaterThan.php?rev=655300&r1=655299&r2=655300&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/common/Zend/Validate/GreaterThan.php (original) +++ incubator/shindig/trunk/php/src/common/Zend/Validate/GreaterThan.php Sun May 11 04:06:48 2008 @@ -24,7 +24,7 @@ /** * @see Zend_Validate_Abstract */ -require_once 'Zend/Validate/Abstract.php'; +require_once 'src/common/Zend/Validate/Abstract.php'; /** Modified: incubator/shindig/trunk/php/src/common/Zend/Validate/Hex.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/Zend/Validate/Hex.php?rev=655300&r1=655299&r2=655300&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/common/Zend/Validate/Hex.php (original) +++ incubator/shindig/trunk/php/src/common/Zend/Validate/Hex.php Sun May 11 04:06:48 2008 @@ -24,7 +24,7 @@ /** * @see Zend_Validate_Abstract */ -require_once 'Zend/Validate/Abstract.php'; +require_once 'src/common/Zend/Validate/Abstract.php'; /** Modified: incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname.php?rev=655300&r1=655299&r2=655300&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname.php (original) +++ incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname.php Sun May 11 04:06:48 2008 @@ -24,17 +24,17 @@ /** * @see Zend_Validate_Abstract */ -require_once 'Zend/Validate/Abstract.php'; +require_once 'src/common/Zend/Validate/Abstract.php'; /** * @see Zend_Loader */ -require_once 'Zend/Loader.php'; +require_once 'src/common/Zend/Loader.php'; /** * @see Zend_Validate_Ip */ -require_once 'Zend/Validate/Ip.php'; +require_once 'src/common/Zend/Validate/Ip.php'; /** * Please note there are two standalone test scripts for testing IDN characters due to problems @@ -361,7 +361,7 @@ * Regex error * @see Zend_Validate_Exception */ - require_once 'Zend/Validate/Exception.php'; + require_once 'src/common/Zend/Validate/Exception.php'; throw new Zend_Validate_Exception('Internal error: DNS validation failed'); } elseif ($status === 0) { $valid = false; @@ -398,7 +398,7 @@ * Regex error * @see Zend_Validate_Exception */ - require_once 'Zend/Validate/Exception.php'; + require_once 'src/common/Zend/Validate/Exception.php'; throw new Zend_Validate_Exception('Internal error: local network name validation failed'); } @@ -433,7 +433,7 @@ protected function _checkRegexType($type) { if (!isset($this->_regex[$type])) { - require_once 'Zend/Validate/Exception.php'; + require_once 'src/common/Zend/Validate/Exception.php'; throw new Zend_Validate_Exception("'$type' must be one of ('" . implode(', ', array_keys($this->_regex)) . "')"); } Modified: incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/At.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/At.php?rev=655300&r1=655299&r2=655300&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/At.php (original) +++ incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/At.php Sun May 11 04:06:48 2008 @@ -24,7 +24,7 @@ /** * @see Zend_Validate_Hostname_Interface */ -require_once 'Zend/Validate/Hostname/Interface.php'; +require_once 'src/common/Zend/Validate/Hostname/Interface.php'; /** @@ -47,4 +47,4 @@ return '\x{00EO}-\x{00F6}\x{00F8}-\x{00FF}\x{0153}\x{0161}\x{017E}'; } -} \ No newline at end of file +} Modified: incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/Ch.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/Ch.php?rev=655300&r1=655299&r2=655300&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/Ch.php (original) +++ incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/Ch.php Sun May 11 04:06:48 2008 @@ -24,7 +24,7 @@ /** * @see Zend_Validate_Hostname_Interface */ -require_once 'Zend/Validate/Hostname/Interface.php'; +require_once 'src/common/Zend/Validate/Hostname/Interface.php'; /** @@ -47,4 +47,4 @@ return '\x{00EO}-\x{00F6}\x{00F8}-\x{00FF}\x{0153}'; } -} \ No newline at end of file +} Modified: incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/De.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/De.php?rev=655300&r1=655299&r2=655300&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/De.php (original) +++ incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/De.php Sun May 11 04:06:48 2008 @@ -24,7 +24,7 @@ /** * @see Zend_Validate_Hostname_Interface */ -require_once 'Zend/Validate/Hostname/Interface.php'; +require_once 'src/common/Zend/Validate/Hostname/Interface.php'; /** @@ -55,4 +55,4 @@ '\x{017E}\x{017C}\x{00F0}\x{00FE}'; } -} \ No newline at end of file +} Modified: incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/Fi.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/Fi.php?rev=655300&r1=655299&r2=655300&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/Fi.php (original) +++ incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/Fi.php Sun May 11 04:06:48 2008 @@ -24,7 +24,7 @@ /** * @see Zend_Validate_Hostname_Interface */ -require_once 'Zend/Validate/Hostname/Interface.php'; +require_once 'src/common/Zend/Validate/Hostname/Interface.php'; /** @@ -47,4 +47,4 @@ return '\x{00E5}\x{00E4}\x{00F6}'; } -} \ No newline at end of file +} Modified: incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/Hu.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/Hu.php?rev=655300&r1=655299&r2=655300&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/Hu.php (original) +++ incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/Hu.php Sun May 11 04:06:48 2008 @@ -24,7 +24,7 @@ /** * @see Zend_Validate_Hostname_Interface */ -require_once 'Zend/Validate/Hostname/Interface.php'; +require_once 'src/common/Zend/Validate/Hostname/Interface.php'; /** @@ -47,4 +47,4 @@ return '\x{00E1}\x{00E9}\x{00ED}\x{00F3}\x{00F6}\x{0151}\x{00FA}\x{00FC}\x{0171}'; } -} \ No newline at end of file +} Modified: incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/Li.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/Li.php?rev=655300&r1=655299&r2=655300&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/Li.php (original) +++ incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/Li.php Sun May 11 04:06:48 2008 @@ -24,7 +24,7 @@ /** * @see Zend_Validate_Hostname_Interface */ -require_once 'Zend/Validate/Hostname/Interface.php'; +require_once 'src/common/Zend/Validate/Hostname/Interface.php'; /** @@ -47,4 +47,4 @@ return '\x{00EO}-\x{00F6}\x{00F8}-\x{00FF}\x{0153}'; } -} \ No newline at end of file +} Modified: incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/No.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/No.php?rev=655300&r1=655299&r2=655300&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/No.php (original) +++ incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/No.php Sun May 11 04:06:48 2008 @@ -24,7 +24,7 @@ /** * @see Zend_Validate_Hostname_Interface */ -require_once 'Zend/Validate/Hostname/Interface.php'; +require_once 'src/common/Zend/Validate/Hostname/Interface.php'; /** Modified: incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/Se.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/Se.php?rev=655300&r1=655299&r2=655300&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/Se.php (original) +++ incubator/shindig/trunk/php/src/common/Zend/Validate/Hostname/Se.php Sun May 11 04:06:48 2008 @@ -24,7 +24,7 @@ /** * @see Zend_Validate_Hostname_Interface */ -require_once 'Zend/Validate/Hostname/Interface.php'; +require_once 'src/common/Zend/Validate/Hostname/Interface.php'; /** @@ -47,4 +47,4 @@ return '\x{00E5}\x{00E4}\x{00F6}\x{00FC}\x{00E9}'; } -} \ No newline at end of file +} Modified: incubator/shindig/trunk/php/src/common/Zend/Validate/Identical.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/Zend/Validate/Identical.php?rev=655300&r1=655299&r2=655300&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/common/Zend/Validate/Identical.php (original) +++ incubator/shindig/trunk/php/src/common/Zend/Validate/Identical.php Sun May 11 04:06:48 2008 @@ -20,7 +20,7 @@ */ /** Zend_Validate_Abstract */ -require_once 'Zend/Validate/Abstract.php'; +require_once 'src/common/Zend/Validate/Abstract.php'; /** * @category Zend Modified: incubator/shindig/trunk/php/src/common/Zend/Validate/InArray.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/Zend/Validate/InArray.php?rev=655300&r1=655299&r2=655300&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/common/Zend/Validate/InArray.php (original) +++ incubator/shindig/trunk/php/src/common/Zend/Validate/InArray.php Sun May 11 04:06:48 2008 @@ -24,7 +24,7 @@ /** * @see Zend_Validate_Abstract */ -require_once 'Zend/Validate/Abstract.php'; +require_once 'src/common/Zend/Validate/Abstract.php'; /** Modified: incubator/shindig/trunk/php/src/common/Zend/Validate/Int.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/Zend/Validate/Int.php?rev=655300&r1=655299&r2=655300&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/common/Zend/Validate/Int.php (original) +++ incubator/shindig/trunk/php/src/common/Zend/Validate/Int.php Sun May 11 04:06:48 2008 @@ -24,7 +24,7 @@ /** * @see Zend_Validate_Abstract */ -require_once 'Zend/Validate/Abstract.php'; +require_once 'src/common/Zend/Validate/Abstract.php'; /** Modified: incubator/shindig/trunk/php/src/common/Zend/Validate/Ip.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/Zend/Validate/Ip.php?rev=655300&r1=655299&r2=655300&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/common/Zend/Validate/Ip.php (original) +++ incubator/shindig/trunk/php/src/common/Zend/Validate/Ip.php Sun May 11 04:06:48 2008 @@ -24,7 +24,7 @@ /** * @see Zend_Validate_Abstract */ -require_once 'Zend/Validate/Abstract.php'; +require_once 'src/common/Zend/Validate/Abstract.php'; /** Modified: incubator/shindig/trunk/php/src/common/Zend/Validate/LessThan.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/Zend/Validate/LessThan.php?rev=655300&r1=655299&r2=655300&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/common/Zend/Validate/LessThan.php (original) +++ incubator/shindig/trunk/php/src/common/Zend/Validate/LessThan.php Sun May 11 04:06:48 2008 @@ -24,7 +24,7 @@ /** * @see Zend_Validate_Abstract */ -require_once 'Zend/Validate/Abstract.php'; +require_once 'src/common/Zend/Validate/Abstract.php'; /** Modified: incubator/shindig/trunk/php/src/common/Zend/Validate/NotEmpty.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/Zend/Validate/NotEmpty.php?rev=655300&r1=655299&r2=655300&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/common/Zend/Validate/NotEmpty.php (original) +++ incubator/shindig/trunk/php/src/common/Zend/Validate/NotEmpty.php Sun May 11 04:06:48 2008 @@ -24,7 +24,7 @@ /** * @see Zend_Validate_Abstract */ -require_once 'Zend/Validate/Abstract.php'; +require_once 'src/common/Zend/Validate/Abstract.php'; /** Modified: incubator/shindig/trunk/php/src/common/Zend/Validate/Regex.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/Zend/Validate/Regex.php?rev=655300&r1=655299&r2=655300&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/common/Zend/Validate/Regex.php (original) +++ incubator/shindig/trunk/php/src/common/Zend/Validate/Regex.php Sun May 11 04:06:48 2008 @@ -24,7 +24,7 @@ /** * @see Zend_Validate_Abstract */ -require_once 'Zend/Validate/Abstract.php'; +require_once 'src/common/Zend/Validate/Abstract.php'; /** @@ -112,7 +112,7 @@ /** * @see Zend_Validate_Exception */ - require_once 'Zend/Validate/Exception.php'; + require_once 'src/common/Zend/Validate/Exception.php'; throw new Zend_Validate_Exception("Internal error matching pattern '$this->_pattern' against value '$valueString'"); } if (!$status) { Modified: incubator/shindig/trunk/php/src/common/Zend/Validate/StringLength.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/Zend/Validate/StringLength.php?rev=655300&r1=655299&r2=655300&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/common/Zend/Validate/StringLength.php (original) +++ incubator/shindig/trunk/php/src/common/Zend/Validate/StringLength.php Sun May 11 04:06:48 2008 @@ -24,7 +24,7 @@ /** * @see Zend_Validate_Abstract */ -require_once 'Zend/Validate/Abstract.php'; +require_once 'src/common/Zend/Validate/Abstract.php'; /** @@ -107,7 +107,7 @@ /** * @see Zend_Validate_Exception */ - require_once 'Zend/Validate/Exception.php'; + require_once 'src/common/Zend/Validate/Exception.php'; throw new Zend_Validate_Exception("The minimum must be less than or equal to the maximum length, but $min >" . " $this->_max"); } @@ -140,7 +140,7 @@ /** * @see Zend_Validate_Exception */ - require_once 'Zend/Validate/Exception.php'; + require_once 'src/common/Zend/Validate/Exception.php'; throw new Zend_Validate_Exception("The maximum must be greater than or equal to the minimum length, but " . "$max < $this->_min"); } else { Modified: incubator/shindig/trunk/php/src/gadgets/ProxyHandler.php URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/gadgets/ProxyHandler.php?rev=655300&r1=655299&r2=655300&view=diff ============================================================================== --- incubator/shindig/trunk/php/src/gadgets/ProxyHandler.php (original) +++ incubator/shindig/trunk/php/src/gadgets/ProxyHandler.php Sun May 11 04:06:48 2008 @@ -61,9 +61,7 @@ if ($status == 200) { $output = ''; if (isset($_GET['contentType']) && $_GET['contentType'] == 'FEED') { - // We are including this library manually because the autoload doesnt work with - // this, its filename doesnt match with the class name. - require 'Zend/Feed.php'; + require 'src/common/Zend/Feed.php'; $numEntries = $_GET['numEntries']; $getSummaries = $_GET['getSummaries']; $channel = array();

