From: <var...@us...> - 2021-08-10 10:04:33
|
Revision: 10475 http://sourceforge.net/p/phpwiki/code/10475 Author: vargenau Date: 2021-08-10 10:04:30 +0000 (Tue, 10 Aug 2021) Log Message: ----------- configurator.php: add missing configs DISABLE_UPLOAD_ONLY_ALLOWED_EXTENSIONS, ENABLE_AJAX, ENABLE_MAILNOTIFY, ENABLE_RECENTCHANGESBOX, ENABLE_PAGE_PUBLIC, READONLY, LDAP_SEARCH_FILTER, ENABLE_RATEIT Modified Paths: -------------- trunk/configurator.php Modified: trunk/configurator.php =================================================================== --- trunk/configurator.php 2021-08-10 09:33:35 UTC (rev 10474) +++ trunk/configurator.php 2021-08-10 10:04:30 UTC (rev 10475) @@ -468,9 +468,15 @@ $properties["NUM_SPAM_LINKS"] = new numeric_define_optional('NUM_SPAM_LINKS'); +$properties["DISABLE_UPLOAD_ONLY_ALLOWED_EXTENSIONS"] = + new boolean_define_commented_optional('DISABLE_UPLOAD_ONLY_ALLOWED_EXTENSIONS'); + $properties["GOOGLE_LINKS_NOFOLLOW"] = new boolean_define_commented_optional('GOOGLE_LINKS_NOFOLLOW'); +$properties["ENABLE_AJAX"] = + new boolean_define_commented_optional('ENABLE_AJAX'); + $properties["ENABLE_DISCUSSION_LINK"] = new boolean_define_commented_optional('ENABLE_DISCUSSION_LINK'); @@ -486,6 +492,18 @@ $properties["ENABLE_SEARCHHIGHLIGHT"] = new boolean_define_commented_optional('ENABLE_SEARCHHIGHLIGHT'); +$properties["ENABLE_MAILNOTIFY"] = + new boolean_define_commented_optional('ENABLE_MAILNOTIFY'); + +$properties["ENABLE_RECENTCHANGESBOX"] = + new boolean_define_commented_optional('ENABLE_RECENTCHANGESBOX'); + +$properties["ENABLE_PAGE_PUBLIC"] = + new boolean_define_commented_optional('ENABLE_PAGE_PUBLIC'); + +$properties["READONLY"] = + new boolean_define_commented_optional('READONLY'); + $properties["Part One"] = new part('_part1', $SEPARATOR . "\n", " Part One: Authentication and security settings. See Part Three for more."); @@ -1084,6 +1102,12 @@ e.g.: LDAP_SEARCH_FIELD = sAMAccountName"); +$properties["LDAP SEARCH FILTER"] = + new _define_optional('LDAP_SEARCH_FILTER', "(uid=\$userid)", " +If you want to check against special attributes, such as external partner, employee status. +Default: undefined. This overrides LDAP_SEARCH_FIELD. +Example (&(uid=\$userid)(employeeType=y)(myCompany=My Company*)(!(myCompany=My Company Partner*)))"); + $properties["LDAP OU USERS"] = new _define_optional('LDAP_OU_USERS', "ou=Users", " If you have an organizational unit for all users, define it here. @@ -1474,6 +1498,8 @@ new _define_commented_optional('BABYCART_PATH', "/usr/local/bin/babycart"); $properties["GOOGLE_LICENSE_KEY"] = new _define_commented_optional('GOOGLE_LICENSE_KEY'); +$properties["ENABLE_RATEIT"] = + new boolean_define_commented_optional('ENABLE_RATEIT'); $properties["RATEIT_IMGPREFIX"] = new _define_commented_optional('RATEIT_IMGPREFIX'); //BStar $properties["GRAPHVIZ_EXE"] = This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |