History log of /dokuwiki/inc/confutils.php (Results 26 – 50 of 79)
Revision Date Author Comments
# 6453acd5 01-Mar-2017 Andreas Gohr <gohr@cosmocode.de>

skip empty line when reading jQuery versions. fixes #1886


# 65a6bb07 03-Feb-2017 Andreas Gohr <andi@splitbrain.org>

Merge branch 'jqsplit'

* jqsplit:
Restore smoothness.css using update.sh
allow selecting the preferred CDN and add event
load jquery via https always
split off jquery from other JS and add C

Merge branch 'jqsplit'

* jqsplit:
Restore smoothness.css using update.sh
allow selecting the preferred CDN and add event
load jquery via https always
split off jquery from other JS and add CDN option #1766
use external version file for jquery updates
removed jQuery.browser calls
replace deprecated bind() calls
replace deprecated delegate() calls
fixed radio options in media manager for new jQ-UI
jQuery Updates

show more ...


# fa078663 21-Dec-2016 Andreas Gohr <gohr@cosmocode.de>

allow selecting the preferred CDN and add event

We now have two CDNs available. code.jquery.com which is the more
popular one and CDNjs which is the faster one. Plugin authors can use a
plugin hook

allow selecting the preferred CDN and add event

We now have two CDNs available. code.jquery.com which is the more
popular one and CDNjs which is the faster one. Plugin authors can use a
plugin hook to easily implement their own preferred CDN. Authors might
even use this event to conditionally load additional JavaScript files.

show more ...


# 6506eaac 30-Nov-2016 Andreas Gohr <gohr@cosmocode.de>

do not static cache useheading during tests

This took me way to long to figure out. The useheading setting was
cached in a static variable which is fine usually as it doesn't change
during a single

do not static cache useheading during tests

This took me way to long to figure out. The useheading setting was
cached in a static variable which is fine usually as it doesn't change
during a single request. But in testing we want to change it often.

show more ...


# 61537d47 26-Nov-2016 Andreas Gohr <andi@splitbrain.org>

split off jquery from other JS and add CDN option #1766

jQuery (and UI and Migrate) are now loaded separately from the rest of
the JavaScript. This adds at least one HTTP request more but has some
a

split off jquery from other JS and add CDN option #1766

jQuery (and UI and Migrate) are now loaded separately from the rest of
the JavaScript. This adds at least one HTTP request more but has some
advantages:

* browsers can cache it independently
* the cache is only invalidated when versions update
* we do not apply any transformations (replacements, minimizing, etc) on
this code anymore which makes our dispatcher faster for the other JS
* browsers seem to load (not execut) both (jquery and other) parallel,
which might increase download speed a bit

This split allowed for the introduction of a new config: jquerycdn. When
enabled the 3 jquery files are loaded from jQueries CDN. This adds
another two HTTP requests but:

* since it's another host those files do not apply to the 4 request per
host limit and can be loaded (not executed) in paralell which might
increase download speeds a bit
* the CDN is distributed worldwide which means files are requested from
the closest location, increasing the download speeds
* since these files/CDN are very popular, chances are high that people
already have them cached in their browsers, reducing the download time
to 0 and effectiely halving the javascript needed to download

The option currently defaults to 'off', but I would argue 'on' would be
the better default.

show more ...


# b96ff25b 03-Aug-2016 Elan Ruusamäe <glen@delfi.ee>

Update confutils.php

spelling fix


# 4286c64e 28-May-2015 Christopher Smith <chris@jalakai.co.uk>

update confToHash() inline documentation for new parameter


# 10b38f10 18-May-2015 Christopher Smith <chris@jalakai.co.uk>

Define the negation character in a constant


# 3a7669bd 18-May-2015 Christopher Smith <chris@jalakai.co.uk>

Ensure single value negation is not affected by white space
differences


# f266a919 18-May-2015 Christopher Smith <chris@jalakai.co.uk>

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


# 4c353447 17-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 ...


# 45ae4bb8 17-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


# 79e79377 07-Jan-2015 Andreas Gohr <gohr@cosmocode.de>

Remove error supression for file_exists()

In an older version of PHP a file_exists() call would issue a warning
when the file did not exist. This was fixed in later PHP releases. Since
we require PH

Remove error supression for file_exists()

In an older version of PHP a file_exists() call would issue a warning
when the file did not exist. This was fixed in later PHP releases. Since
we require PHP 5.3 now, there's no need to supress any error here
anymore. This might even give a minor performance boost.

show more ...


# 42ea7f44 01-Oct-2014 Gerrit Uitslag <klapinklapin@gmail.com>

Many PHPDocs, some unused and dyn declared vars

many PHPDocs
some unused variables
some dynamically declared variables declared


# 0e2431b7 17-Feb-2014 Gerrit Uitslag <klapinklapin@gmail.com>

Improve PHPDocs, rename auth_basic to DokuWiki_Auth_Plugin


# 020ea9e1 31-Jul-2013 Christopher Smith <chris@jalakai.co.uk>

unit tests for self deleting of user accounts


# 2a7abf2d 31-Jul-2013 Christopher Smith <chris@jalakai.co.uk>

FS#2751 - self deletion of user account


# dd74fecf 08-Sep-2012 Michael Hamann <michael@content-space.de>

Remove BOM in linesToHash, partial fix for FS#2464

The BOM at the beginning of some plugin.info.txt files prevented the
plugin manager from correctly reading the base property and thus it
installed

Remove BOM in linesToHash, partial fix for FS#2464

The BOM at the beginning of some plugin.info.txt files prevented the
plugin manager from correctly reading the base property and thus it
installed the plugin in the wrong directory.

show more ...


# e3ab6fc5 28-Jul-2012 Michael Hamann <michael@content-space.de>

Fixed and extended PHPDoc comments and added additional @var comments


# e4eda66b 21-Mar-2011 Andreas Gohr <andi@splitbrain.org>

fixed handling of legacy and subscriber config options FS#2208

This was broken in 3a48618a538412994ec244d5a9fde5c4a6161d10


# 3a48618a 22-Feb-2011 Anika Henke <anika@selfthinker.org>

improved actionOK and its use


# e3776c06 29-Nov-2010 Michael Hamann <michael@content-space.de>

Remove enc=utf-8 in VIM modeline as it is not allowed in VIM 7.3

As of VIM 7.3 it is no longer possible to specify the encoding in the
modeline. This gives an error message whenever such a file is o

Remove enc=utf-8 in VIM modeline as it is not allowed in VIM 7.3

As of VIM 7.3 it is no longer possible to specify the encoding in the
modeline. This gives an error message whenever such a file is opened,
thus this commit removes the enc setting from the modeline.

show more ...


# ad74fe66 22-Jun-2010 Adrian Lang <lang@cosmocode.de>

Rewrite mimetype (faster, shorter, no PHP Notice)


# de4d479a 17-May-2010 Adrian Lang <lang@cosmocode.de>

Let actionOK detect auth backend capabilities


# d3f4f410 26-Jan-2010 Adrian Lang <lang@cosmocode.de>

Merge branch 'master' of github.com:splitbrain/dokuwiki


1234