the template site now uses 'friendly' URI, so instead of showPage.php?page=blah you can now have blah.htm. Updated RewriteRule so that the tinymce WYSISYG editor is ignored as it makes use of .htm pages.
This uses the modrewrite part of Apache. The complete configuration is:
RewriteEngine on
RewriteCond %{REQUEST_URI} !/tinymce
RewriteRule (.*)\.htm$ showPage.php?page=$1
and it turns
http://www.page.com/showPage.php?page=about
into
http://www.page.com/about.htm
which is much neater.
the document store has been extended to include optional shares. Shares can be read or read/write and can be assigned to groups or to selected individuals. In addition, a template site can now have multiple file stores (each of which can be shared or have shared sub-folders) and users can be given private files stores too.
old news, but have updated the global settings to allow meetings, news and login options to be set. Meetings and news can be turned on/off with a binary setting (0/1) and login can be turned off, set as a login box or as a login link on the home page.