History log of /dokuwiki/inc/search.php (Results 51 – 75 of 130)
Revision Date Author Comments
# 5737a81e 20-Feb-2013 Michael Hamann <michael@content-space.de>

Revert the search depth behavior changes from #154

This reverts parts of the changes from #154: Before merging the pull
request, a depth of 1 returned just the pages in the root namespace.
With the

Revert the search depth behavior changes from #154

This reverts parts of the changes from #154: Before merging the pull
request, a depth of 1 returned just the pages in the root namespace.
With the changes in the pull request, a depth of 1 also returned pages
in subnamespaces of the root namespace (as it was also tested in the test case).
This reverts this part of the changes and a depth of 1 returns just the
pages in the root namespace again.

show more ...


# c33b315b 18-Feb-2013 Anika Henke <anika@selfthinker.org>

removed a bunch of functions which were deprecated in 2005/2006


# ec24a2df 29-Jan-2013 Philipp A. Hartmann <pah@qo.cx>

search: pass empty $sort to skip sorting


# 1dc5d48b 27-Jan-2013 Christopher Smith <chris@jalakai.co.uk>

change to use natural order sorting


# 5514a5a7 27-Jan-2013 Christopher Smith <chris@jalakai.co.uk>

ensure parameter is passed down during recursion


# 155e63c9 27-Jan-2013 Christopher Smith <chris@jalakai.co.uk>

add documentation for sort parameter, change false to 'natural'


# fe82d751 27-Jan-2013 Christopher Smith <chris@jalakai.co.uk>

sp.


# 8451f4ad 10-Jan-2013 Guillaume Turri <guillaume.turri@gmail.com>

If depth option is set to 0, we should recurse forever

At least if we want to be consistent with search_universal


# c647387e 09-Jan-2013 Guillaume Turri <guillaume.turri@gmail.com>

Check search limit depth with an inequality

Otherwise, when we check for equality, the test fails if the search start beneath
the max depth.
Eg: if I have the page ns1:ns2:mypage in my wiki, and lau

Check search limit depth with an inequality

Otherwise, when we check for equality, the test fails if the search start beneath
the max depth.
Eg: if I have the page ns1:ns2:mypage in my wiki, and launch the xmlrpc query
getPagelist("ns1", "depth => 1"), without this patch, it retrieves mypage

show more ...


# 1c6c1c6c 01-Oct-2012 Michael Hamann <michael@content-space.de>

Escape filename in regex in search_index()

This problem was reported in https://forum.dokuwiki.org/thread/8143.
Apart from warnings you could notice that when you have namespaces "foo"
and "f.o" and

Escape filename in regex in search_index()

This problem was reported in https://forum.dokuwiki.org/thread/8143.
Apart from warnings you could notice that when you have namespaces "foo"
and "f.o" and you open the sitemap for "foo" that "f.o" is opened, too.

show more ...


# 3009a773 28-Jul-2012 Andreas Gohr <andi@splitbrain.org>

replaced use of basename() with utf8_basename() FS#2015


# 9ea9cc52 05-Sep-2011 Kate Arzamastseva <pshns@ukr.net>

Merge branch 'master' of git://github.com/splitbrain/dokuwiki into media-revisions


# 1ffc211d 04-Sep-2011 Adrian Lang <mail@adrianlang.de>

Revert tmp commits

This reverts commit ba6c070edd92ca0fc8a6ee85d51769d64a19ee7c.
This reverts commit 923510088dda99cb2790b15308593e47369d4f01.


# 92351008 04-Sep-2011 Adrian Lang <mail@adrianlang.de>

tmp: Introduce sneaky2


# 783d2e49 04-Sep-2011 Adrian Lang <mail@adrianlang.de>

Use search_universal in search_index


# d971ea8b 30-Jul-2011 Kate Arzamastseva <pshns@ukr.net>

issue #39 sort by date desc, saved in cookie


# abc306f4 25-Jul-2011 Kate Arzamastseva <pshns@ukr.net>

mediamanager sort button


# 67c15ece 07-May-2011 Michael Hamann <michael@content-space.de>

Change when metadata is rendered - only when really needed

This changes the cache logic for metadata. It introduces a new mode that
tries to avoid rendering the page again for simple requests but st

Change when metadata is rendered - only when really needed

This changes the cache logic for metadata. It introduces a new mode that
tries to avoid rendering the page again for simple requests but still
updates the metadata when the page has been changed (but not when the
cache timeout has been reached or purge is used). It simply compares the
time of the last rendering with the last modified time of the page.

The old boolean $render parameter has been changed into an int with
three possible values. Compatibility for the old parameter is provided
using a check with is_numeric using the following mapping:
- false is still don't render (0 is the new value for that)
- true is using that new render logic which means that many plugins will
still work unchanged even if they request a lot of data using
$render=true (1 is the new value for that providing full compatibility
in the case 1 has been used instead of true)

The default value for p_get_first_heading is now that new simple cache
logic, the default value for getting metadata is the cache logic which
should be used with care but is the only way to request (rendered)
metadata that can change because of plugin installations or upgrades.

show more ...


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


# 709b1063 13-Nov-2010 Adrian Lang <dokuwiki@adrianlang.de>

Simpler ID trimming


# e63d421b 26-Oct-2010 Andreas Gohr <andi@splitbrain.org>

do not strip .txt in namespaces in index


# de3eb1d7 28-Sep-2010 Adrian Lang <lang@cosmocode.de>

Small fixes / cleanup


# 27200028 29-Aug-2010 Andreas Gohr <andi@splitbrain.org>

added missing keeptxt option to universal search FS#2014


# dfd343c4 22-Mar-2010 Andreas Gohr <andi@splitbrain.org>

fixed hashing in mediaSearch()

The hash option did not hash the correct content for the
found media files. This causes troubles in the sync plugin
http://github.com/splitbrain/dokuwiki-plugin-sync/i

fixed hashing in mediaSearch()

The hash option did not hash the correct content for the
found media files. This causes troubles in the sync plugin
http://github.com/splitbrain/dokuwiki-plugin-sync/issues#issue/1

show more ...


# 0af14a6e 01-Feb-2010 Andreas Gohr <andi@splitbrain.org>

removed more unneeded require_once() calls


123456