History log of /dokuwiki/lib/plugins/ (Results 1351 – 1375 of 2893)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
73d93f2b30-Jan-2014 Andreas Gohr <andi@splitbrain.org>

extension manager: some minor tweaks in the info screen

3e23f03e30-Jan-2014 SteScho <schoch@dsb.net>

Update auth.php

In Novell eDir the group search returns strings, not arrays. Added if-statement which determines if the result is an array or an string.

d149d9d629-Jan-2014 Petr Klíma <qaxi@seznam.cz>

translation update

b15cd32d28-Jan-2014 jgpcx <jerry@gpcx.de>

Update action.php

fix bug that only allows admins any AJAX calls

56305e5a27-Jan-2014 huseyin can <huseyincan73@gmail.com>

translation update

d02f9f2e25-Jan-2014 Momo50 <c.brothelande@gmail.com>

translation update

58e8fa0025-Jan-2014 Martin Michalek <michalek.dev@gmail.com>

translation update

975e2a1924-Jan-2014 Andreas Gohr <andi@splitbrain.org>

removed empty language files

our translation interface used to submit empty files for a while but no
longer does, so these can go

ca149a9e24-Jan-2014 Myeongjin <aranet100@gmail.com>

translation update

a18d5a4522-Jan-2014 cross <cross1962@gmail.com>

translation update

1093058c21-Jan-2014 Paweł Jan Czochański <czochanski@gmail.com>

translation update

13bc346a19-Jan-2014 Marina Vladi <deldadam@gmail.com>

translation update


/dokuwiki/inc/lang/fa/lang.php
/dokuwiki/inc/lang/hu/lang.php
/dokuwiki/inc/lang/ro/admin.txt
/dokuwiki/inc/lang/ro/adminplugins.txt
/dokuwiki/inc/lang/ro/backlinks.txt
/dokuwiki/inc/lang/ro/conflict.txt
/dokuwiki/inc/lang/ro/denied.txt
/dokuwiki/inc/lang/ro/diff.txt
/dokuwiki/inc/lang/ro/draft.txt
/dokuwiki/inc/lang/ro/edit.txt
/dokuwiki/inc/lang/ro/editrev.txt
/dokuwiki/inc/lang/ro/index.txt
/dokuwiki/inc/lang/ro/install.html
/dokuwiki/inc/lang/ro/lang.php
/dokuwiki/inc/lang/ro/locked.txt
/dokuwiki/inc/lang/ro/login.txt
/dokuwiki/inc/lang/ro/mailtext.txt
/dokuwiki/inc/lang/ro/newpage.txt
/dokuwiki/inc/lang/ro/norev.txt
/dokuwiki/inc/lang/ro/password.txt
/dokuwiki/inc/lang/ro/preview.txt
/dokuwiki/inc/lang/ro/pwconfirm.txt
/dokuwiki/inc/lang/ro/read.txt
/dokuwiki/inc/lang/ro/recent.txt
/dokuwiki/inc/lang/ro/register.txt
/dokuwiki/inc/lang/ro/registermail.txt
/dokuwiki/inc/lang/ro/resendpwd.txt
/dokuwiki/inc/lang/ro/resetpwd.txt
/dokuwiki/inc/lang/ro/revisions.txt
/dokuwiki/inc/lang/ro/searchpage.txt
/dokuwiki/inc/lang/ro/showrev.txt
/dokuwiki/inc/lang/ro/stopwords.txt
/dokuwiki/inc/lang/ro/subscr_digest.txt
/dokuwiki/inc/lang/ro/subscr_form.txt
/dokuwiki/inc/lang/ro/subscr_list.txt
/dokuwiki/inc/lang/ro/subscr_single.txt
/dokuwiki/inc/lang/ro/updateprofile.txt
/dokuwiki/inc/lang/ro/uploadmail.txt
authad/lang/hu/settings.php
authmysql/lang/hu/settings.php
authpgsql/lang/hu/settings.php
plugin/lang/hu/admin_plugin.txt
plugin/lang/hu/lang.php
revert/lang/hu/lang.php
usermanager/lang/hu/import.txt
usermanager/lang/hu/lang.php
99c82aef19-Jan-2014 Erli Moen <evseev.jr@gmail.com>

translation update

30b9025714-Jan-2014 Andreas Gohr <andi@splitbrain.org>

added plugins group to test

7264d33212-Jan-2014 oott123 <ip.192.168.1.1@qq.com>

translation update

b1e7580108-Jan-2014 Andreas Gohr <andi@splitbrain.org>

show a message when search returns no results

c837868a08-Jan-2014 Andreas Gohr <andi@splitbrain.org>

added missing localization

bc1b7a8a08-Jan-2014 Andreas Gohr <andi@splitbrain.org>

better filename parsing

The filename found in the URL will be used for old plugins missing a
base entry in their plugin.info.txt and lacking a subdirectory inside
the archive as well. This patch mak

better filename parsing

The filename found in the URL will be used for old plugins missing a
base entry in their plugin.info.txt and lacking a subdirectory inside
the archive as well. This patch makes sure possible query strings aren't
included in the filename.

Note: io_download() will also try to get a filename from any
content-disposition header.

If no filename can be found we simply use an md5 sum of the URL and hope
the plugin will contain it's own hint for naming.

show more ...

4bad83d808-Jan-2014 Andreas Gohr <andi@splitbrain.org>

use DOKU_LF

PHP_EOL is platform dependent, so you get in trouble while migrating
between platforms.

ec8911d408-Jan-2014 Andreas Gohr <andi@splitbrain.org>

remove unneeded try/catch blocks

they were just catching and rethrowing

5a3e1f5307-Jan-2014 Andreas Gohr <andi@splitbrain.org>

reintroduce a tiny bit of duplication

This reads some duplication in the from of haveing a Doku_Parser_Mode
and Doku_Parser_Mode_Plugin class which are basically the same but only
the latter extends

reintroduce a tiny bit of duplication

This reads some duplication in the from of haveing a Doku_Parser_Mode
and Doku_Parser_Mode_Plugin class which are basically the same but only
the latter extends DokuWiki_Plugin. This avoids the performance/RAM
problems mentioned in my previous commit. An interface keeps both
logically together.

With PHP 5.4 further deduplication could be done via Traits.

show more ...

72d89f9607-Jan-2014 Andreas Gohr <andi@splitbrain.org>

remove duplicate plugin code for syntax plugins

This makes Doku_Parser_Mode inherit from DokuWiki_Plugin which allows
for the removal of a bunch of duplicate code form
DokuWiki_Syntax_Plugin. This m

remove duplicate plugin code for syntax plugins

This makes Doku_Parser_Mode inherit from DokuWiki_Plugin which allows
for the removal of a bunch of duplicate code form
DokuWiki_Syntax_Plugin. This makes the code easier to maintain and makes
sure all DokuWiki plugins are actual instances of DokuWiki_Plugin.

However this adds a bunch of functions to the "normal" parser modes that
don't need them which could have performance/RAM implications.

show more ...

cf37525f06-Jan-2014 Andreas Gohr <andi@splitbrain.org>

typo fix

189c9cab06-Jan-2014 Andreas Gohr <andi@splitbrain.org>

purge cache only once on install

this is not a extension specific cache but a global one. no need to
purge for each installed extension

da5f0eee06-Jan-2014 Andreas Gohr <andi@splitbrain.org>

check for admin in AJAX backend

1...<<51525354555657585960>>...116