History log of /dokuwiki/inc/ (Results 2751 – 2775 of 6649)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
a0098d4319-Jan-2014 Michael Hamann <michael@content-space.de>

FS#2901: Fix lessphp for PHP 5.2.0

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

check for false in readdir

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

translation update

99c82aef19-Jan-2014 Erli Moen <evseev.jr@gmail.com>

translation update

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

do not keep zero size files

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

localize jQuery UI date picker FS#2912


lang/af/jquery.ui.datepicker.js
lang/ar/jquery.ui.datepicker.js
lang/az/jquery.ui.datepicker.js
lang/bg/jquery.ui.datepicker.js
lang/bn/jquery.ui.datepicker.js
lang/ca-valencia/jquery.ui.datepicker.js
lang/ca/jquery.ui.datepicker.js
lang/cs/jquery.ui.datepicker.js
lang/da/jquery.ui.datepicker.js
lang/de-informal/jquery.ui.datepicker.js
lang/de/jquery.ui.datepicker.js
lang/el/jquery.ui.datepicker.js
lang/en/jquery.ui.datepicker.js
lang/eo/jquery.ui.datepicker.js
lang/es/jquery.ui.datepicker.js
lang/et/jquery.ui.datepicker.js
lang/eu/jquery.ui.datepicker.js
lang/fa/jquery.ui.datepicker.js
lang/fi/jquery.ui.datepicker.js
lang/fo/jquery.ui.datepicker.js
lang/fr/jquery.ui.datepicker.js
lang/gl/jquery.ui.datepicker.js
lang/he/jquery.ui.datepicker.js
lang/hi/jquery.ui.datepicker.js
lang/hr/jquery.ui.datepicker.js
lang/hu/jquery.ui.datepicker.js
lang/ia/jquery.ui.datepicker.js
lang/id-ni/jquery.ui.datepicker.js
lang/id/jquery.ui.datepicker.js
lang/is/jquery.ui.datepicker.js
lang/it/jquery.ui.datepicker.js
lang/ja/jquery.ui.datepicker.js
lang/kk/jquery.ui.datepicker.js
lang/km/jquery.ui.datepicker.js
lang/ko/jquery.ui.datepicker.js
lang/ku/jquery.ui.datepicker.js
lang/la/jquery.ui.datepicker.js
lang/lb/jquery.ui.datepicker.js
lang/lt/jquery.ui.datepicker.js
lang/lv/jquery.ui.datepicker.js
lang/mg/jquery.ui.datepicker.js
lang/mk/jquery.ui.datepicker.js
lang/mr/jquery.ui.datepicker.js
lang/ms/jquery.ui.datepicker.js
lang/ne/jquery.ui.datepicker.js
lang/nl/jquery.ui.datepicker.js
lang/no/jquery.ui.datepicker.js
lang/pl/jquery.ui.datepicker.js
lang/pt-br/jquery.ui.datepicker.js
lang/pt/jquery.ui.datepicker.js
lang/ro/jquery.ui.datepicker.js
lang/ru/jquery.ui.datepicker.js
lang/sk/jquery.ui.datepicker.js
lang/sl/jquery.ui.datepicker.js
lang/sq/jquery.ui.datepicker.js
lang/sr/jquery.ui.datepicker.js
lang/sv/jquery.ui.datepicker.js
lang/th/jquery.ui.datepicker.js
lang/tr/jquery.ui.datepicker.js
lang/uk/jquery.ui.datepicker.js
lang/vi/jquery.ui.datepicker.js
lang/zh-tw/jquery.ui.datepicker.js
lang/zh/jquery.ui.datepicker.js
/dokuwiki/lib/exe/js.php
/dokuwiki/lib/scripts/jquery/update.sh
74c7fac316-Jan-2014 reza_khn <reza_khn@yahoo.com>

translation update

a1fe6c8716-Jan-2014 Razvan Deaconescu <razvan.deaconescu@cs.pub.ro>

Adjust and correct translations in Romanian text files

e7ad28d216-Jan-2014 Razvan Deaconescu <razvan.deaconescu@cs.pub.ro>

Make minor corrections to Romanian language file

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

translation update

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

fix renderer:plugin() signature

in 82d616353e4c3680d88f083eb6f88fe68de92904 we introduced passing the
raw match for syntax plugins to the plugin method of the renderer. This
was introduced for rende

fix renderer:plugin() signature

in 82d616353e4c3680d88f083eb6f88fe68de92904 we introduced passing the
raw match for syntax plugins to the plugin method of the renderer. This
was introduced for renderer plugins that might need access to the raw
syntax (like the table editor or WYSIWYG plugins). However the function
signature was never updated, making these additional parameter basically
secret. With strict standard this throws errors. This patch fixes this.

show more ...

99ba9fe608-Jan-2014 Andreas Gohr <gohr@cosmocode.de>

php doc block

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

removed some unused parameters, fixed some docblocks

this file makes me cry. there is so much shit going on here.

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 ...

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

removed superflous parameter

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

removed superflous parameter

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

treat non-existing files as success on delete

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

added recursive delete function to io.php

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

AUTH_ACL_CHECK event around ACL checking

allows to modify ACL results in the AFTER event or to implement a
completely different ACL mechanism in the BEFORE event.

e0ea4d0205-Jan-2014 alhajr <alhajr300@gmail.com>

translation update

2d510ab101-Jan-2014 tomer <tomercarolldergicz@gmail.com>

translation update

8c339e9201-Jan-2014 alhajr <alhajr300@gmail.com>

translation update

49b230dd31-Dec-2013 matt carroll <matt.carroll@gmail.com>

translation update

b21beefd31-Dec-2013 Ivan Peltekov <ivan.peltekov@abv.bg>

translation update

1...<<111112113114115116117118119120>>...266