Good morning, I pushed a few changes a couple of days ago and I think I am really close to be done with the Pakefile (modulo command line argument support).
I would be happy to get your feedback about what has been done and the result you get. Here is how you can test : 1. install Pake: pear channel-discover pear.symfony-project.com pear channel-discover pear.indeyets.pp.ru pear install indeyets/pake You might also have to install pecl/svn (sudo pecl install svn) 2. svn up the website/ directory of the AZC's repository, you also need trunk/ but I believe every body checked out the whole repository :) 3. run "pake -T" and you should get the list of available tasks. The name should be the same as in the Makefile 4. run "pake website" and after a while you should get a new version of the website available in htdocs/ I attached an example VHost so you can easily test the website with Apache. If you have a custom configuration, you can copy pake/config.yaml to /wherever/you/want/config.mine.yaml and then export the path in the ZETA_PAKE_FILE env variable [1] Known issue: - There is a duplicate entry in the navigation part, I need to fix this but I did not found where the problem is yet. (any help/patch welcome :)) Have a nice day :) 1. https://fisheye6.atlassian.com/browse/zetacomponents/website/Pakefile?hb=true#to549 -- Jérôme Renard http://39web.fr | http://jrenard.info | http://twitter.com/jeromerenard
<VirtualHost *> ServerName zetacomponents.loc ServerAlias *.zetacomponents.loc zetac.loc DirectoryIndex index.html DocumentRoot "/absolute/path/to/zetacomponents/website/htdocs" <Directory "/absolute/path/to/zetacomponents/website/htdocs"> Options +Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny Allow from all </Directory> Alias /zetacomponents /absolute/path/to/zetacomponents/website/htdocs </VirtualHost>