History log of /dokuwiki/lib/plugins/config/admin.php (Results 51 – 75 of 78)
Revision Date Author Comments
# f338aa80 26-Jun-2010 Andreas Gohr <andi@splitbrain.org>

Let config manager post to script FS#1942


# c2a6d816 01-Feb-2010 Andreas Gohr <andi@splitbrain.org>

plugin related autoloading

This patch moved the place where DOKU_PLUGIN is defined. It no longer
can be set from a normal config (only via preload)


# bccdba06 16-Mar-2009 Andreas Gohr <andi@splitbrain.org>

minor style tweak in config manager

Ignore-this: 5e16625a243ae7dc3488180dedad13b1

darcs-hash:20090316203623-7ad00-2a1ba8e3401dc45c6cee4162f94f9efc16cbb2cd.gz


# 7ed33b2a 12-Mar-2009 Anika Henke <anika@selfthinker.org>

configmgr: visual improvements (warning icons for newbies and links to each documentation page)

darcs-hash:20090312222853-f7d6d-6ad28d7747ed0a72e4f8952eb1cec606e9b6d322.gz


# f46c9e83 15-Aug-2008 Anika Henke <anika@selfthinker.org>

fixed all remaining links to wiki.splitbrain.org and to restructured pages

darcs-hash:20080815134211-f7d6d-61f4f4fa1c5f62832d7cc5ad3e3a7a78460d2981.gz


# aea87c78 08-Sep-2007 Andreas Gohr <andi@splitbrain.org>

Small fix for CSRF check in config and ACL plugins

darcs-hash:20070908142300-7ad00-ecb0aa5d77f6451b33988e6008e0297bd4425948.gz


# 634d7150 29-Aug-2007 Andreas Gohr <andi@splitbrain.org>

CSRF prevention for admin plugins

This patch adds a session based token to all form in the default action plugins.
The validity of the token is checked before any administrative function is
executed

CSRF prevention for admin plugins

This patch adds a session based token to all form in the default action plugins.
The validity of the token is checked before any administrative function is
executed aiming to protect DokuWiki's admin functions from Cross-site request
forgery (CSRF) attacks.

Another patch will follow to add the same functionality on other, less critical
functions.

More details on CSRF attacks can be found at
http://en.wikipedia.org/wiki/Cross-site_request_forgery

darcs-hash:20070829201538-7ad00-d0770224a3351fd8e38968e3a9d8e73520482445.gz

show more ...


# b8595a66 05-Aug-2007 Andreas Gohr <andi@splitbrain.org>

separated TOC from page

This patch introduces a tpl_toc() function which can be used to freely place
the Table of Contents in a template. When used, tpl_content should be called
with a parameter of

separated TOC from page

This patch introduces a tpl_toc() function which can be used to freely place
the Table of Contents in a template. When used, tpl_content should be called
with a parameter of false to supress the automatic TOC placement.

Note: if tpl_toc() us run *before* tpl_content(), TOCs will not work in the
preview. A work around is to run tpl_content() in a output buffer first.

This patch also adds a getTOC() function for admin plugins which allows plugin
authors to put create their own TOC which will be placed correctly in the
template. A convenience function html_mktocitem() is available.

The config manager was adjusted to make ue of this new feature, but some bugs
might remain.

darcs-hash:20070805132405-7ad00-77d2c3cdf66cc62b2d408cc6580f938636a109af.gz

show more ...


# dde31035 29-Jun-2007 Andreas Gohr <andi@splitbrain.org>

Show config option names in config manager

This patch outputs the config name in the config manager (instead of using a title
tag) which makes it easier to search (ctrl-f) for a specific option.

da

Show config option names in config manager

This patch outputs the config name in the config manager (instead of using a title
tag) which makes it easier to search (ctrl-f) for a specific option.

darcs-hash:20070629210648-7ad00-0e2a689b04c747298ee50b20bce287069393a84b.gz

show more ...


# e1b31a95 15-Feb-2007 Ben Coburn <btcoburn@silicodon.net>

config plugin TOC refactoring

Now uses the new toc_additem function in the Doku_Renderer_xhtml class.

darcs-hash:20070215015318-05dcb-f725b589b6ecf9b332f624f4bb9cafe7ed546172.gz


# e87ec653 28-Jul-2006 Anika Henke <a.c.henke@arcor.de>

config mgr: labels wrapped in span, not in a

darcs-hash:20060728212333-d5083-cbad284f32a6b01eb3609fe1aa960156b9ae42a3.gz


# 746855cf 10-Jul-2006 Ben Coburn <btcoburn@silicodon.net>

cleanup undefined constant notices

Undefined constants replaced with strings, see
http://www.php.net/manual/en/language.types.array.php#language.types.array.foo-bar

darcs-hash:20060710091820-05dcb-

cleanup undefined constant notices

Undefined constants replaced with strings, see
http://www.php.net/manual/en/language.types.array.php#language.types.array.foo-bar

darcs-hash:20060710091820-05dcb-cfccff2bdd633b929470c60d8eee096f50ab4c18.gz

show more ...


# 685bdd2e 20-May-2006 Ben Coburn <btcoburn@silicodon.net>

config plugin ui update 20060520

This patch hides settings that are missing config metadata and optionally
provides a list of warnings about settings that are not properly configured.
- Warnings a

config plugin ui update 20060520

This patch hides settings that are missing config metadata and optionally
provides a list of warnings about settings that are not properly configured.
- Warnings about settings are listed if $conf['allowdebug'] is true.
- Warnings are listed by the $conf string as it appears in local.php.
- Warnings show the $meta string as it would appear in the correct
settings metadata file.
- There are 3 kinds of warnings.
- undefined
There is no $meta information defined for this setting.
- no class
The setting class specified in $meta can not be found.
This setting does have a $meta entry.
- no default
The setting is missing a default value.
The setting does have a $meta entry with a valid setting class.
- Note: Settings with metadata but other warnings are allowed to appear
in the normal config settings list.

Also...
- Templates can now define their own settings classes.
- Removed an XHTML validation error from the first patch.
- More language strings to go with the new warnings.

The warnings under the 'Undefined Settings' heading are intended to
provide developers with a list of any settings that they have forgotten to
finish preparing for the config plugin. This list should be blank for stable
releases.

darcs-hash:20060520103718-05dcb-6d4e6bce78498cbf9d087e27d52e4aa30917b0a5.gz

show more ...


# 4fa2dffc 10-May-2006 Ben Coburn <btcoburn@silicodon.net>

config plugin ui organization

- organizes the configuration settings list into chunks
- provides a table of contents for the configuration chunks
- provides one chunk for each plugin with conf

config plugin ui organization

- organizes the configuration settings list into chunks
- provides a table of contents for the configuration chunks
- provides one chunk for each plugin with configurable settings
- provides one chunk for the active template (if it has settings)
- provides the config file setting as a tool-tip on the setting label
ex. $conf['start']
- provides for localization of useful strings
- generates a "smart" fallback name for plugins and templates
- plugin and template sections are only shown if they have settings
- current configuration list is organized into chunks

Note: There are NEW strings to translate into the non-english language files.

darcs-hash:20060510065732-05dcb-398d5c7efa7981f690d97a25a5110b1f39be9f8e.gz

show more ...


# e04f1f16 09-Apr-2006 chris <chris@jalakai.co.uk>

Bug#680

Update default plugins to ensure they exit immediately
if not called from within Dokuwiki

darcs-hash:20060409233841-9b6ab-555e4fced756849a5d7b9de6e4aaaea24c6da3ae.gz


# a954fae3 27-Mar-2006 Ben Coburn <btcoburn@silicodon.net>

fix config plugin function name _setup_localised_plugin_prompts

darcs-hash:20060327152528-05dcb-415564ff328ca9dd1f0fbe758924a2ae6a5b74cc.gz


# 4a778400 22-Mar-2006 Esther Brunner <esther@kaffeehaus.ch>

changes to config plugin needed for template and plugin configuration

darcs-hash:20060322140525-283c4-54953a1954beba0e78c896610b33a6f3c953cbb6.gz


# f1f77134 22-Mar-2006 Esther Brunner <esther@kaffeehaus.ch>

methods for loading config variables in syntax and amin plugins

darcs-hash:20060322110832-283c4-d8e56c241f8a34827f1c188c4db7162ef658e010.gz


# 91f04971 04-Mar-2006 Andreas Gohr <andi@splitbrain.org>

config manager fixes

This patch makes the default config widget a textarea, to avoid destroying
multiline configs as used in the SQL auth backends. It also makes HTML in
config descriptions possible

config manager fixes

This patch makes the default config widget a textarea, to avoid destroying
multiline configs as used in the SQL auth backends. It also makes HTML in
config descriptions possible and adds an accesskey to the savebutton.

darcs-hash:20060304213457-7ad00-54a32e005601a675b169c297ef9e1cf489372724.gz

show more ...


# e4a98f5c 03-Mar-2006 Anika Henke <a.c.henke@arcor.de>

changed styling logic a bit for config manager

darcs-hash:20060303122855-d5083-9dc7d8e7eea1c32aaab9a89055cf3f69efe09dc5.gz


# 24a33b42 26-Feb-2006 Andreas Gohr <andi@splitbrain.org>

changed IDs to avoid name clashes

darcs-hash:20060226172332-7ad00-f073117ba2f027935f87cf23106bf6a4316a5790.gz


# b174aeae 30-Jan-2006 chris <chris@jalakai.co.uk>

update wl,ml,buildURLParams with optional separator string, update config plugin redirect with new wl(), add meta & lang details for $conf['resendpasswd']

darcs-hash:20060130232818-9b6ab-2f395bc25c5

update wl,ml,buildURLParams with optional separator string, update config plugin redirect with new wl(), add meta & lang details for $conf['resendpasswd']

darcs-hash:20060130232818-9b6ab-2f395bc25c536b06bb5ade616a8252060ecb5278.gz

show more ...


# 6b8c9f97 30-Jan-2006 chris <chris@jalakai.co.uk>

config plugin - updated fix for redirect url construction

darcs-hash:20060130215927-9b6ab-8b37f29e304c0852c01d2b7e582b8995a1e26a19.gz


# 55fe0565 30-Jan-2006 chris <chris@jalakai.co.uk>

config plugin - correct prev fix for redirect url

darcs-hash:20060130142414-9b6ab-908e1c38b395de038436be7946fc56a07978a72a.gz


# 483eec60 30-Jan-2006 chris <chris@jalakai.co.uk>

config plugin fix for incorrect construction of redirect url

darcs-hash:20060130141843-9b6ab-ae98b660e830c37c652e96c8d0b28c24ddea0ba2.gz


1234