History log of /dokuwiki/ (Results 6801 – 6825 of 10561)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
a8254dfa15-Jan-2011 Andreas Gohr <andi@splitbrain.org>

made ajax quicksearch its own object

This makes it possible for plugin and template authors to overwrite or
extend the quicksearch JavaScript logic.

d83e78ed15-Jan-2011 Andreas Gohr <andi@splitbrain.org>

added missing change for path length shortener in ajax backend

bced415914-Jan-2011 Adrian Lang <dokuwiki@adrianlang.de>

Deprecate $NS in doku.php

$NS is only used in lib/exe/{ajax,mediamanager}.php when no $ID context
is present. The two functions which use $NS in inc/template.php are only
called through those both e

Deprecate $NS in doku.php

$NS is only used in lib/exe/{ajax,mediamanager}.php when no $ID context
is present. The two functions which use $NS in inc/template.php are only
called through those both endpoints, not through doku.php. In doku.php,
$ID is the only correct value, $NS is not kept synchronous with $ID.

Use getNS($ID) in functions which are called through doku.php.

show more ...

301971b314-Jan-2011 Andreas Gohr <andi@splitbrain.org>

correctly(?) shorten namespaces for RTL langunages in quicksearch

5ba8d19614-Jan-2011 Andreas Gohr <andi@splitbrain.org>

shorten quicksearch namespaces in JavaScript

This patch moves the shortening of namespaces in the quicksearch results
to JavaScript. This makes it independend from used template and will
always try

shorten quicksearch namespaces in JavaScript

This patch moves the shortening of namespaces in the quicksearch results
to JavaScript. This makes it independend from used template and will
always try to fill the width of the result pane correctly.

Things missing:

* Make it work with RTL-languages
* Check Browser compatibility (only tested in Chrome so far)

show more ...

ef7acde614-Jan-2011 Christian Wichmann <nospam@zone0.de>

German (informal) language update

168cead414-Jan-2011 Christian Wichmann <nospam@zone0.de>

German language update

d0b9cae114-Jan-2011 Andreas Gohr <andi@splitbrain.org>

coding style fix

11aec52a14-Jan-2011 Andreas Gohr <andi@splitbrain.org>

updated adLDAP library to 3.3.2

[+] New feature: Move the user to a new OU using user_move() function
[-] Bug fix: Prevent an 'undefined index' error in recursive_groups()
when full PHP E_ALL lo

updated adLDAP library to 3.3.2

[+] New feature: Move the user to a new OU using user_move() function
[-] Bug fix: Prevent an 'undefined index' error in recursive_groups()
when full PHP E_ALL logging is enabled
[-] Bug fix: user_groups() does not return primary group when objectsid
is not given (Tracker ID:2931213)
[-] Bug fix: Undefined index in function user_info for non-existent
users (Tracker ID:2922729)
[-] Bug fix: Force user_info to find objectCategory of person as if a
sAMAccountName also exists in a group it will return that group.
(Tracker ID:3006096)
[-] Bug fix: Return false for user_info if the user does not exist
[-] Bug fix: user_info, checks for for a "count" value that not exist in
$entries array if "memberof" isn't passed in $fields array. (Tracker
ID:2993172)
[-] Bug fix: In authenticate() if user authentication fails function
returns and does not rebind with admin credentials - so the other
funcions don't work anymore as $this->_bind === false. (Tracker
ID:2987887)
[-] Bug fix: When calling $ldap->user_modify('user',
array("expires"=>0)) the function fails due to the value being 0.
Changed to isset (Tracker ID:3036726)

show more ...

99fef16412-Jan-2011 Yaron Shahrabani <sh.yaron@gmail.com>

Hebrew language update

299c342312-Jan-2011 Andreas Gohr <andi@splitbrain.org>

fixed brackets

b58bcfed12-Jan-2011 Andreas Gohr <andi@splitbrain.org>

removed setter/getter to match coding style

since we don't use setter/getters for the other options it doesn't make
sense to have them for the keep-alive function

a6bacf7011-Jan-2011 Tobias Sarnowski <sarnowski@new-thoughts.org>

do not reuse errornous http connections

As soon as something goes wrong while querying a http server
do not reuse the same connection again, its state is undefined.

In addition, check the connectio

do not reuse errornous http connections

As soon as something goes wrong while querying a http server
do not reuse the same connection again, its state is undefined.

In addition, check the connection for feof() before reusing it.

show more ...

1415e8b511-Jan-2011 Tobias Sarnowski <sarnowski@new-thoughts.org>

keep http connections application wide alive

Using a static context for the connection pool allows connection
reuse throughout the whole application without additional changes
in other places.

4481b2a011-Jan-2011 Tobias Sarnowski <sarnowski@new-thoughts.org>

added keep-alive capabilities to the http client

The DokuHTTPClient is now able to keep connections alive. This
feature is enabled by default. It can be disabled with
$client->setKeepAlive(false

added keep-alive capabilities to the http client

The DokuHTTPClient is now able to keep connections alive. This
feature is enabled by default. It can be disabled with
$client->setKeepAlive(false);
and asked with
$client->isKeepAlive();.

show more ...

ba0267b312-Jan-2011 Michael Hamann <michael@content-space.de>

Fix metaFiles for ids that require utf-8 escaping

Before this change metaFiles didn't return anything for ids where the
part without the namespace needs (utf-8) filename escaping.

01032c3309-Jan-2011 Michael Hamann <michael@content-space.de>

Fix FS#2131 - metaFiles returning unrelated files

283c718312-Jan-2011 Usama Akkad <uahello@gmail.com>

Arabic language update

9063ec1412-Jan-2011 Adrian Lang <lang@cosmocode.de>

Remove trailing whitespace in buildAttributes output

ff72517310-Jan-2011 Michael Hamann <michael@content-space.de>

Add define for metadata usage limit in p_get_first_heading

This commit introduces a new define P_GET_FIRST_HEADING_METADATA_LIMIT
that can be set in preload.php in order to change the limit for how

Add define for metadata usage limit in p_get_first_heading

This commit introduces a new define P_GET_FIRST_HEADING_METADATA_LIMIT
that can be set in preload.php in order to change the limit for how many
pages the first heading shall be loaded from metadata in
p_get_first_heading. Changing this is probably most interesting for
Wikis with a lot of pages where loading the title index costs a
significant amount of time and memory.

show more ...

517a47ec10-Jan-2011 Michael Hamann <michael@content-space.de>

Call the indexer for hidden pages

This makes sure that the indexer is also called for hidden pages so they
aren't missing in the title index and digest subscriptions work for
them, too. Hidden pages

Call the indexer for hidden pages

This makes sure that the indexer is also called for hidden pages so they
aren't missing in the title index and digest subscriptions work for
them, too. Hidden pages are already filtered from the search results.

show more ...

cc58224c10-Jan-2011 Michael Hamann <michael@content-space.de>

Fix msg() calls when messages have already been printed

This commit fixes two bugs that occurred when msg() was called after
html_msgarea() had already been called.
- the $MSG array is now cleared w

Fix msg() calls when messages have already been printed

This commit fixes two bugs that occurred when msg() was called after
html_msgarea() had already been called.
- the $MSG array is now cleared when it has been printed (otherwise $MSG
has been printed again when another msg() call was done)
- headers_sent() didn't work for me, it always reported false although
html_msgarea() had already been called which might be explainable with
output buffering. This makes msg() now depend on the first call of
html_msgarea() or headers_sent() in order to not to break msg() in
ajax requests etc.

show more ...

bf0c93c210-Jan-2011 Michael Hamann <michael@content-space.de>

Use title index for more than 11 p_first_heading calls

This change makes p_get_first_heading load the title index when more
than 11 requests that caused a call to p_get_metadata have already been
do

Use title index for more than 11 p_first_heading calls

This change makes p_get_first_heading load the title index when more
than 11 requests that caused a call to p_get_metadata have already been
done. This means that small pages and the breadcrums won't trigger the
loading of the title index but for larger pages or the sitemap the title
index will be used. This is necessary because every call to
p_get_metadata can trigger the parsing and rendering of a whole page and
there can be many calls when useheading is activated and e.g. the
index/sitemap page is displayed.

Additionally this adds a small title cache that caches titles requested
from p_get_metadata.

Further tests should be done how this affects memory usage and how often
the index loading is triggered in order to see if that parameter should
be adjusted.

show more ...

4a81940210-Jan-2011 Michael Hamann <michael@content-space.de>

Activate the render parameter of p_get_metadata

p_get_metadata has a $render parameter that has been disabled by the
restructuring of metadata rendering. This change reactivates it so
rendering meta

Activate the render parameter of p_get_metadata

p_get_metadata has a $render parameter that has been disabled by the
restructuring of metadata rendering. This change reactivates it so
rendering metadata can be prevented. This is e.g. used in the search and
in some plugins like indexmenu that use p_get_first_heading. The default
of the parameter has been changed to true as otherwise the new caching
structure won't work as almost all calls to p_get_metadata don't set the
$render parameter.
The indexer call to p_get_first_heading has been changed to set $render
to true as in the indexer only one page will be rendered and the title
in the index should really be the current one.
This does not fix the problem that rendering pages with lots of links or
displaying the index can cause the parsing/rendering of a lot of pages.

show more ...

d6a4a04010-Jan-2011 Michael Hamann <michael@content-space.de>

Use md5 of the id in the subscription lockdir. FS#2112

Filenames can't contain ":" on windows and the lock directory contained
the unescaped page id. The lock function tries in an endless loop to
cr

Use md5 of the id in the subscription lockdir. FS#2112

Filenames can't contain ":" on windows and the lock directory contained
the unescaped page id. The lock function tries in an endless loop to
create the lock directory when it fails and the directory doesn't exist.
Just escaping the directory name won't work as then the filename length
limit will be quickly hit when using deep namespace structures with utf8
names. Thus using the md5sum seems to be the best solution. Perhaps the
lock function could also be changed to create a file with that name that
contains the id so the id can be retrieved for debugging purposes.

show more ...

1...<<271272273274275276277278279280>>...423