Andreas Söderlund
unread,Dec 13, 2009, 2:16:58 PM12/13/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to haxig...@googlegroups.com
If you're using mod_rewrite to change url:s, this release is for you! There are two breaking changes in this release that you need to address. Nothing big though:
1. siteUrl is removed from configuration file. Remove that variable from src/config/Config.hx. Url.siteUrl() is now used to create internal links.
2. Behavior of Url.siteUrl() changed - no slash is added after return value anymore. So the start.htt template for example that looked like this earlier: "::link::dev/integrity" now needs to be "::link::/dev/integrity".
There is also a new action for unit testing in dev (for new projects), that changed the TestRunner class a little, but that shouldn't affect your code.
v0.84 (2009-12-13)
==================
Features
- doc/mod_rewrite.conf is now rewritten for Neko when ignite/init a project with -neko.
Changed
- tests.TestRunner is removed. Added test method to dev/unittests instead.
- siteUrl is removed from configuration file. Use Url.siteUrl() instead.
- Behavior of Url.siteUrl() changed - no slash is added after return value anymore.
Update your templates if you're using it there.
Bug fixes
- Fixed a URL rewrite bug on empty requests in Apache when using mod_rewrite.