summaryrefslogtreecommitdiff
path: root/lib/plugins
Commit message (Collapse)AuthorAge
* Swedish language updatePontus Bergendahl2009-01-28
| | | | | | Ignore-this: ec383cdf144c72fb5375c2a9015db3a darcs-hash:20090128151234-26b1c-3d2dee445e0b5dd17dc533e50f53e2a2b6f02894.gz
* Korean language updateSONG Younghwan2009-01-28
| | | | | | Ignore-this: 52ad8f9da90d450cd42cb5fb589492bd darcs-hash:20090128151137-c693b-440f1096a6074c7830e0100e96f5277e171efd60.gz
* Marathi language updateShantanoo2009-01-28
| | | | | | Ignore-this: b68d8d1a5f5e28cc4cdd02401bfedeee darcs-hash:20090128150845-ec832-39ade91a7df605dc7acfeeb05fbc6d7bbd468a2c.gz
* reverted plugin disabling method back to old behaviourAndreas Gohr2009-01-27
| | | | | | | | | | | | | | | | | | Ignore-this: b5fadadeee9de8e52c41c056cf62be6d With this patch plugins are now disabled by placing a disabled file in the plugin directory again. Even though renaming plugin directories is the method with the fewest disk accesses it makes a lot of trouble with code revision control systems and, more important, Linux package management systems. Future versions of DokuWiki may use a central config file instead. This patch also fixes the problem with the plugin manager not checking the return values of the pugin_(dis|en)able functions correctly. darcs-hash:20090127182521-7ad00-62018a546d49d57582d93298c8228fd71601a5e8.gz
* obey configured fperm setting on config save FS#1517Otto Vainio2009-01-27
| | | | | | Ignore-this: c878b6607cf1e1d12123d220efb502be darcs-hash:20090127172145-28fc2-4132d44c5dda847c9403b76beca323ec002d2e5a.gz
* Brazilian Portuguese language updateFrederico Goncalves Guimaraes2009-01-27
| | | | | | Ignore-this: dba6327126b766e79da8819152a5c25c darcs-hash:20090127165756-b9abf-16a885ad0739b31a980a5bee46ba7637b7f964d4.gz
* Korean language update송영환2009-01-27
| | | | | | Ignore-this: 175d0e952b0a579161dcd147e374c561 darcs-hash:20090127164541-3166f-2bc3d1906c66c807f1fa6628121898dc091b21c4.gz
* Hungarian language updateTihanyi Sandor2009-01-27
| | | | | | Ignore-this: b247aaab6ca9436f123ddb1298f7d14e darcs-hash:20090127154436-6e6b8-6693aec1e03e563cf32584863c258d0345425b04.gz
* Finish language updateOtto Vainio2009-01-27
| | | | | | Ignore-this: ceae810011a53eb935a7037c274ba1da darcs-hash:20090127154147-28fc2-2b3c9f25417817d3954d6dd4156248b4a04f58a6.gz
* Dutch language updateWouter Schoot2009-01-27
| | | | | | Ignore-this: 25e0dc33f99cc4b0d02627976ded5bac darcs-hash:20090127154043-a6b47-0c00c648b245221a64dba0a16130af5dbcb6a23f.gz
* removed importoldchangelog and importoldindex pluginsAndreas Gohr2009-01-25
| | | | | | | | | | Ignore-this: fb48b24cecb52541a728ba9c17597d8f These one-shot plugins where used for upgrading older DokuWiki versions and are no longer needed. If you upgrade from a really old version you might want upgrade to intermediate versions instead. darcs-hash:20090125143050-7ad00-5ff7b2cd5f61c392e9e02e13eab947d045d60b04.gz
* upgradeplugindirectory plugin: rework redirect loop fix + improve messages ↵Chris Smith2009-01-22
| | | | | | for wiki admins darcs-hash:20090122121128-f07c6-942f3696f2424432da6f45ab127273b98c7d9bf6.gz
* further updates to config_cascade patchChris Smith2009-01-22
| | | | | | | | | | - add mediameta and license config files into the cascade - update the cache validity code in cache.php, css.php & js.php to use config_cascade - redo inclusion of main config files to avoid suppression of errors in config files - add getConfigFiles($type) function - minor updates elsewhere to use config_cascade rather than hardcoded config file names darcs-hash:20090122114457-f07c6-98ad5627fd5df93edf8dd03289b9cf6d81962afe.gz
* prevent possible infinite redirect loop in upgradeplugindirectory pluginMichael Klier2009-01-20
| | | | darcs-hash:20090120222709-23886-478ff1ee40ff91f2a478735e51423e888b47a5af.gz
* French language updateNicolas Pourcelot2009-01-21
| | | | darcs-hash:20090121173138-6a2a0-10799601ac5dc943a029af047401c8e3465eb286.gz
* Spanish language upgradeLuis Dantas2009-01-21
| | | | darcs-hash:20090121173038-15659-bd88e89b637d26cfe078690dc61e8b91a0a77d9e.gz
* FS#1517, obscure passwords in config filesChris Smith2009-01-19
| | | | | | This patch extends the config 'password' class to support a "_code" parameter darcs-hash:20090119164809-f07c6-c136b559772610539bccb9e9c0191f6a973216ad.gz
* Major rework of pluginutilsChris Smith2009-01-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch completely reworks pluginutils to: - reduce the number of file accesses to enumerate and load plugins - change the way disabled plugins are recorded. a disabled plugin will now have ".disabled" added to its directory name (this halves the number of file accesses required to enumerate installed plugins) - place the guts of pluginutils code inside a class, Doku_Plugin_Controller, the existing access routines are preserved and no changes are required. - add two globals, $plugin_controller_class & $plugin_controller this allows preload.php to define its own plugin controller class - update config plugin to support new plugin structure config plugin now issues a PLUGIN_CONFIG_PLUGINLIST event before it finalizes the list of plugins it will be working with. Handlers of this event can remove plugins from the list. - update plugin manager plugin to support new plugin structure plugin manager now issues a PLUGIN_PLUGINMANAGER_PLUGINLIST event similarly to config plugin. - plugin manager updated to redirect after changes to plugins and to use msg() Finally, this patch contains a one-shot action plugin which will automatically convert a plugins directory from the old style disabled file to the new style. Note for darcs users, the new disabled format will mean a couple of old oneshot plugins, importoldchangelog and importoldindex, will have their directory names changed, which could lead to darcs wanting to record the change. darcs-hash:20090118190143-f07c6-d2e79af546a49a4af5817dd0c5cc27066e67c4d0.gz
* Rework configuration loading to use a predefined file list or cascadeChris Smith2009-01-18
| | | | | | | | | | | | This change add the global $config_cascade which holds the list of files to be read for each configuration setting group. Dokuwiki adds in its configuration file values after preload.php, giving preload.php to set its own configuration cascade. One side effect of the change is "local.protected.php" is part of the default cascade, removing the need for it to be included at the bottom of local.php. darcs-hash:20090118181204-f07c6-fea1c406da1bbdb0a52ab40914f11b835e797728.gz
* Czech language updatePavel Hajek2009-01-19
| | | | darcs-hash:20090119175459-2105c-03441bcf63592c49fa7ef1f16dada2b1df5e1f25.gz
* Brazilian Portuguese language updateLuis Dantas2009-01-18
| | | | darcs-hash:20090118200637-15659-d4230d3d5d713aa30d0034813b8f0828ca3d126e.gz
* Nepali language updateSaroj Dhakal2009-01-17
| | | | darcs-hash:20090117185001-22994-fc748e4a1c4b4c8ef48a322bdf0b474ccd4e3be7.gz
* adjusted config manager for new config option 'tocminheads'Anika Henke2009-01-17
| | | | darcs-hash:20090116235051-f7d6d-8898c5f3433c701191bfd8652bdccb6d46a8ce6b.gz
* some tweaks to recent usermanager patchAndreas Gohr2009-01-16
| | | | darcs-hash:20090116210718-7ad00-9824b47ea265a7426ed36eb020db45befd4104ec.gz
* made 'edit user' in user manager more usableAnika Henke2009-01-16
| | | | darcs-hash:20090116214702-f7d6d-89ecae0e072bbd8ae42646733bf7ceff10b59540.gz
* Portuguese Brazlian language updateJair Henrique2009-01-16
| | | | darcs-hash:20090116185506-0f120-b63ed7b126ef4a99e495600195114726cbcf135f.gz
* Allow multiple deletes in ACL pluginTom N Harris2009-01-16
| | | | darcs-hash:20090116001320-6942e-6384740cf9818d9083a767cd581a252d242a9d8c.gz
* German language updateArne Pelka2009-01-14
| | | | darcs-hash:20090114194125-ce5f5-57ad64d6f969272d6d37dd7268146d2e5842b28e.gz
* Russian language updateAlexei Tereschenko2009-01-05
| | | | darcs-hash:20090105223447-22cdf-17d85a94c7161f32c6d6c02f31c4588a050bccdc.gz
* Dutch language updateWouter Schoot2009-01-05
| | | | darcs-hash:20090105200626-a6b47-b6d6e0e014a4d019c60a90e17521123648c52009.gz
* Italian language updateDiego Pierotto2009-01-04
| | | | darcs-hash:20090104142215-35bef-9be965705b6e5958aafc1ab4179f8ceb6472ee28.gz
* Polish language updateGrzegorz Zur2009-01-02
| | | | darcs-hash:20090102131540-e561a-0995043ee67b9f1d8bd69362792136500ea0b4ef.gz
* Korean language update이동낙2008-12-30
| | | | darcs-hash:20081230185728-6a3d1-33718529206b5bec2719819d8deccac3e532bf3f.gz
* Finish language updateOtto Vainio2008-12-16
| | | | darcs-hash:20081216184544-8d1e6-b3545e256cd69a2ad1436c90eb12d84e43f365ec.gz
* ACL Manager: simpler but more logical sort in the rule tableAndreas Gohr2008-12-16
| | | | darcs-hash:20081216184056-7ad00-117f88fa93ac0fba46f98100c9da4f375dd1308c.gz
* ACL Manager: Avoid double encoding in permission table FS#1482Andreas Gohr2008-12-16
| | | | darcs-hash:20081216173112-7ad00-9d8eeff13945ccc69230cc9043ed78284612f2dc.gz
* ACL user wildcard changed to %USER% FS#1504 :!:Andreas Gohr2008-12-16
| | | | | | | | | | | | | | | | | | DokuWiki supports a wildcard which gets replaced with the currently loggedin user in its ACL configuration file. This patch changes the wildcard from @USER@ to %USER% (case sensitive) and also makes sure the ACL Manager does not replace the wildcard when displaying the currently set rules. The change was needed for better compatibility with the User Manager without complicating the code. The old @USER@ wildcard is still supported, but changing an ACL rule using it, through the ACL manager will fail. It is recommended to update ACL rules using the @USER@ wildchar to use the new %USER% one instead. darcs-hash:20081216171126-7ad00-94ce0c2afa411abc936f13572efd0e31941901ee.gz
* ACL Manager: fixed bug introduced by previous special user patchAndreas Gohr2008-12-16
| | | | darcs-hash:20081216165159-7ad00-9e50c67c837c31145a7293022b761e6dffe79b16.gz
* ACL Manager: typo fix for checking group membership FS#1529Andreas Gohr2008-12-16
| | | | darcs-hash:20081216164447-7ad00-e42b37320964359c0be8b105e0903c1a380e5b52.gz
* ACL Manager: correctly highlight when page and namespace are named the sameAndreas Gohr2008-12-16
| | | | darcs-hash:20081216163754-7ad00-a66381e543006ace0a4ff3747034290652b758fc.gz
* ACL Manager: Add footnote about permission inclusionAndreas Gohr2008-12-16
| | | | darcs-hash:20081216162305-7ad00-c1abb00d3d0992977a7f366da2eeb6e2b18b0857.gz
* ACL Manager: correctly handle multiple comma separated values in ↵Andreas Gohr2008-12-16
| | | | | | $conf['manager'] darcs-hash:20081216162114-7ad00-a68d8fcbeeca970d6aba87ef2c568e4dcd8c484a.gz
* make use of the new useHeading() function in the revert pluginAndreas Gohr2008-12-10
| | | | darcs-hash:20081210174256-7ad00-90a1f8d17c913d0ecabec80c0842a3afb3c667b1.gz
* fixed a problem with displaying current ACLs for group/user names with ↵Andreas Gohr2008-12-10
| | | | | | special chars darcs-hash:20081210172333-7ad00-f4a35cfa079a380eedd99c5141e480959864fd38.gz
* German language updateRobin Kluth2008-12-07
| | | | darcs-hash:20081207165012-1b343-8b9e7c4dccc5aa6ce1e11e9a97dbfad3044bef31.gz
* French language updateGuillaume Turri2008-12-05
| | | | darcs-hash:20081205090229-74baf-6dff489c6729923fdd512cbfac17707ea03edc06.gz
* Brazilian Portuguese language updateJeferson Propheta2008-12-05
| | | | darcs-hash:20081205085700-73425-00df7f340719a30f0bfd65c55b36ab0735583031.gz
* Brazilian portuguese updateFlavio Veras2008-12-02
| | | | darcs-hash:20081201231425-cdf66-cb61f0d5fa1e51ea8e91c3e29c87341a5e3ca9ff.gz
* Turkish language updateCihan Kahveci2008-12-02
| | | | darcs-hash:20081201230816-2225f-f163b076905dc112b165c6983b394cb28e57f27b.gz
* remove linebreaks from language files FS#1035Michael Klier2008-12-01
| | | | darcs-hash:20081201212346-23886-81f2bc6c2c021b3f1e9c7367d8ffbab12700e379.gz