Ok, as the title indicates this post is a bit of a mishmash…

Let me start with the time-stamped packages. You may have noticed on the downloads page that all files are named like file_2006-12-29.zip. To create those packages I wrote a simple Ant script, primarily because I couldn’t figure out how to include empty folders in the export from Eclipse ;-) Maybe it is useful for you:

<?xml version="1.0"?>
<project name="testsuite" default="default">
    <target name="default">
        <tstamp>
            <format property="TODAY" pattern="yyyy-MM-dd" />
        </tstamp>
        <property name="FILE_NAME" value="/home/dho/cakephp_testsuite_${TODAY}.zip"></property>
        <delete file="${FILE_NAME}"></delete>
        <zip destfile="${FILE_NAME}"
               basedir="/home/dho/projects/cakeprojects/cakephp-testsuite"
               includes="app/**, vendors/**"
               excludesfile="build.xml">
        </zip>
    </target>
</project>

The probably most missed feature in the bakery was added yesterday: the search functionality. Yesterday was also the final day for the wiki, its url redirects now to the bakery.

As this the last post in this year: A happy New Year to you! And see you again in 2007!