Book coming along nicely, plus removing require_once from Zend Framework
Posted on 01/06/2009 at 08:52 PM
Just thought I would update the progress of the book, I am now on the final two chapters and the 1st draft version should be complete in about 3 weeks YAY!
I have been busy updating the Storefront over the weekend, which now has been optimized for the performance chapter and includes Model caching (which I hope is working....)
Anyway I will leave you with a nice little Ant Task for removing the require_once statements from the Zend library :)
- <target name="deploy">
- <echo message="---- Removing require_once ----" />
- <replaceregexp byline="true">
- <regexp pattern="require_once 'Zend/"/>
- <substitution expression="// require_once 'Zend/"/>
- <fileset dir="${basedir}/library/Zend" excludes="**/*Autoloader.php" includes="**/*.php" />
- </replaceregexp>
- </target>