History log of /dokuwiki/inc/ (Results 2026 – 2050 of 6436)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
2b2b4cfe29-May-2015 Andreas Gohr <andi@splitbrain.org>

Upgrade to jQuery 1.11.3 and jQueryUI 1.11.4 closes #1175


lang/ar/jquery.ui.datepicker.js
lang/el/jquery.ui.datepicker.js
lang/fa/jquery.ui.datepicker.js
lang/fr/jquery.ui.datepicker.js
lang/ka/jquery.ui.datepicker.js
lang/ta/jquery.ui.datepicker.js
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/images/ui-bg_flat_0_aaaaaa_40x100.png
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/images/ui-bg_flat_75_ffffff_40x100.png
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/images/ui-bg_glass_55_fbf9ee_1x400.png
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/images/ui-bg_glass_65_ffffff_1x400.png
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/images/ui-bg_glass_75_dadada_1x400.png
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/images/ui-bg_glass_75_e6e6e6_1x400.png
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/images/ui-bg_glass_95_fef1ec_1x400.png
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/images/ui-bg_highlight-soft_75_cccccc_1x100.png
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/images/ui-icons_222222_256x240.png
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/images/ui-icons_2e83ff_256x240.png
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/images/ui-icons_454545_256x240.png
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/images/ui-icons_888888_256x240.png
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/images/ui-icons_cd0a0a_256x240.png
/dokuwiki/lib/scripts/jquery/jquery-ui-theme/smoothness.css
/dokuwiki/lib/scripts/jquery/jquery-ui.js
/dokuwiki/lib/scripts/jquery/jquery-ui.min.js
/dokuwiki/lib/scripts/jquery/jquery.js
/dokuwiki/lib/scripts/jquery/jquery.min.js
/dokuwiki/lib/scripts/jquery/update.sh
9a734b7a28-May-2015 Christopher Smith <chris@jalakai.co.uk>

Refactor code to make it simpler.
The changes should also:
- fix unlikely edge case when replacement line is the same as the
old line (would have resulted in timeout)
- reduce memory footprint
- av

Refactor code to make it simpler.
The changes should also:
- fix unlikely edge case when replacement line is the same as the
old line (would have resulted in timeout)
- reduce memory footprint
- avoid applying string search beyond maxlines replacement limit

show more ...

4286c64e28-May-2015 Christopher Smith <chris@jalakai.co.uk>

update confToHash() inline documentation for new parameter

edc61c3a28-May-2015 Ikuo Obataya <i.obataya@gmail.com>

translation update

bdca103a22-May-2015 Andreas Gohr <andi@splitbrain.org>

avoid accessing nonexistant array key. fixes #1165

d242ec8c22-May-2015 Tomas Darius Davainis <tomasdd@gmail.com>

translation update

10b38f1018-May-2015 Christopher Smith <chris@jalakai.co.uk>

Define the negation character in a constant

3a7669bd18-May-2015 Christopher Smith <chris@jalakai.co.uk>

Ensure single value negation is not affected by white space
differences

f266a91918-May-2015 Christopher Smith <chris@jalakai.co.uk>

Ensure filtering only removes empty string values
(not other values which PHP evaluates to false)

a2237e3418-May-2015 Noel Tilliot <noeltilliot@byom.de>

translation update

4c35344717-May-2015 Christopher Smith <chris@jalakai.co.uk>

Support negating of config values include earlier in the cascade
To negate a config value, prefix the value with an '!'.

E.g. to disable recognition of the gopher scheme
!gopher

This applies to:
-

Support negating of config values include earlier in the cascade
To negate a config value, prefix the value with an '!'.

E.g. to disable recognition of the gopher scheme
!gopher

This applies to:
- scheme
- stopwords

show more ...

45ae4bb817-May-2015 Christopher Smith <chris@jalakai.co.uk>

Add filtering to remove blank entries from key/value config retrieval
This applies to:
- acronyms
- entities
- interwiki
- mime
- smileys

a61966c516-May-2015 Christopher Smith <chris@jalakai.co.uk>

Provide a function to return admin plugin for the page request.

This was previously carried out in three separate places. Refactor
that code to use the new function.

Update tpl_pageTitle test to us

Provide a function to return admin plugin for the page request.

This was previously carried out in three separate places. Refactor
that code to use the new function.

Update tpl_pageTitle test to use a manager level admin plugin.

show more ...

c248bda116-May-2015 Christopher Smith <chris@jalakai.co.uk>

fix missing language code parameter for admin plugin titles
add unit test coverage

4a0a77ad16-May-2015 Gerrit Uitslag <klapinklapin@gmail.com>

var declaration, static declaration

8381d1c116-May-2015 Gerrit Uitslag <klapinklapin@gmail.com>

update to __construct

6892157116-May-2015 Gerrit Uitslag <klapinklapin@gmail.com>

replace deprecated getRevisions call

79eec18f15-May-2015 Christopher Smith <chris@jalakai.co.uk>

yet another class constructor

2863d10315-May-2015 Christopher Smith <chris@jalakai.co.uk>

another class_name to __construct

1cb97a1015-May-2015 Christopher Smith <chris@jalakai.co.uk>

update parent constructor calls to use __construct()

e56e288615-May-2015 Christopher Smith <chris@jalakai.co.uk>

PHP7 Compat updates on the phpseclib

This is a quick fix in advance of the library being updated to
the latest & PHP7 compatible version.

45e8987e15-May-2015 Christopher Smith <chris@jalakai.co.uk>

more object type hints and removal of '&' operator before objects

5c3b310d15-May-2015 Christopher Smith <chris@jalakai.co.uk>

more class constructors to __construct()

26e22ab815-May-2015 Christopher Smith <chris@jalakai.co.uk>

Changes for PHP 7 Compatibility
- replace PHP4 style class constructor function names (based on
class name) with php 5 __construct()
Also remove some '&' reference operators used with objects
And a

Changes for PHP 7 Compatibility
- replace PHP4 style class constructor function names (based on
class name) with php 5 __construct()
Also remove some '&' reference operators used with objects
And add some object type hints

show more ...

fffeeafe15-May-2015 Christopher Smith <chris@jalakai.co.uk>

Show a relevant page title for other actions

See Issue #1149
- Show 'admin' or the admin plugin name for admin functions
- Show action name for user & site actions, e.g. login, sitemape

Show a relevant page title for other actions

See Issue #1149
- Show 'admin' or the admin plugin name for admin functions
- Show action name for user & site actions, e.g. login, sitemape
- Show page name + action for page actions, e.g. changes, backlinks
- Show a utf8 pen glyph when editing
- Otherwise show the page name (as previously)

show more ...

1...<<81828384858687888990>>...258