You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by ch...@apache.org on 2008/05/11 13:07:23 UTC

svn commit: r655301 - /incubator/shindig/trunk/php/src/common/Zend/README

Author: chabotc
Date: Sun May 11 04:07:23 2008
New Revision: 655301

URL: http://svn.apache.org/viewvc?rev=655301&view=rev
Log:
Added a note about how to rewrite the require tags for when upgrading the framework

Added:
    incubator/shindig/trunk/php/src/common/Zend/README

Added: incubator/shindig/trunk/php/src/common/Zend/README
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/php/src/common/Zend/README?rev=655301&view=auto
==============================================================================
--- incubator/shindig/trunk/php/src/common/Zend/README (added)
+++ incubator/shindig/trunk/php/src/common/Zend/README Sun May 11 04:07:23 2008
@@ -0,0 +1,6 @@
+This is a stripped copy of the Zend Framework: http://framework.zend.com/
+Which is licensed under the New BSD license: http://framework.zend.com/license
+
+To prevent having to modify the include_path, the require_once 'Zend/<file>.php' statements were rewritten using:
+# find . -type f -name "*.php" | xargs grep -l "require_once 'Zend" | xargs sed -i '' -e "s/require_once \'Zend/require_once 'src\/common\/Zend/g"
+