From: <ru...@us...> - 2009-08-24 12:18:13
|
Revision: 7077 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7077&view=rev Author: rurban Date: 2009-08-24 12:14:12 +0000 (Mon, 24 Aug 2009) Log Message: ----------- Add ENABLE_AJAX and READONLY Modified Paths: -------------- trunk/config/config-default.ini trunk/config/config-dist.ini Modified: trunk/config/config-default.ini =================================================================== --- trunk/config/config-default.ini 2009-08-24 12:12:46 UTC (rev 7076) +++ trunk/config/config-default.ini 2009-08-24 12:14:12 UTC (rev 7077) @@ -10,6 +10,8 @@ ENABLE_DOUBLECLICKEDIT = false ENABLE_XHTML_XML = false USECACHE = true +READONLY = false + ; calculated dynamically, but need a default WIKIDB_NOCACHE_MARKUP = false ENABLE_SPAMASSASSIN = false @@ -35,6 +37,7 @@ ENABLE_RECENTCHANGESBOX = false ENABLE_RATEIT = true ENABLE_PAGE_PUBLIC = false +ENABLE_AJAX = true WIKI_NAME = PhpWiki ENABLE_REVERSE_DNS = true Modified: trunk/config/config-dist.ini =================================================================== --- trunk/config/config-dist.ini 2009-08-24 12:12:46 UTC (rev 7076) +++ trunk/config/config-dist.ini 2009-08-24 12:14:12 UTC (rev 7077) @@ -127,6 +127,13 @@ ; http://momche.net/publish/article.php?page=acdropdown ;ENABLE_ACDROPDOWN = false +; Aysnchronous ajax callbacks to dynamically display pages +; (as format=xml) on demand. +; Experimental feature for plugin DynamicIncludePage, which might fail on +; some strictly non-conformant entities. +; Note: TitleSearch ajax calls are enabled by ENABLE_ACDROPDOWN (xmlrpc, not xml) +;ENABLE_AJAX = false + ; Experimental WikiPedia feature: Force Discussion/Article link at the topnavbar. ;ENABLE_DISCUSSION_LINK = true @@ -169,6 +176,12 @@ ; Default: false ;ENABLE_PAGE_PUBLIC = true +; Enable this for system maintainance (e.g. read-only mount) or a general +; read-only database. +; Default: false +;READONLY = true + + ;========================================================================== ; Part One: Authentication and security settings. ; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |