History log of /dokuwiki/inc/Action/Search.php (Results 1 – 20 of 20)
Revision Date Author Comments
# d4f83172 31-Aug-2023 Andreas Gohr <andi@splitbrain.org>

code style: line breaks


# d868eb89 30-Aug-2023 Andreas Gohr <andi@splitbrain.org>

codestyle adjustments: function declaration braces/spaces


# 8c7c53b0 30-Aug-2023 Andreas Gohr <andi@splitbrain.org>

codestyle adjustments: class declaration braces


# 6723156f 29-Aug-2023 Andreas Gohr <andi@splitbrain.org>

Apply rector fixes to inc/Action


# cc21cb50 22-Oct-2018 Andreas Gohr <andi@splitbrain.org>

Update inc/Action/Search.php

Co-Authored-By: schplurtz <schplurtz@laposte.net>


# 918638dc 21-Oct-2018 Schplurtz le Déboulonné <Schplurtz@laposte.net>

use wl() when reditecting old style search url

fixes #2546


# b2c9cd19 12-Apr-2018 Andreas Gohr <gohr@cosmocode.de>

renamed ActionRouter::checkPermissions to checkPreconditions

As discussed in #1933


# 13ce475d 11-Apr-2018 Andreas Gohr <gohr@cosmocode.de>

shortened new search configs

shorter names are more in line with what we already use, makes less
layout problems in the documentation and is easier to type when telling
people about it.


# 422bbbc6 29-Mar-2018 Michael Große <grosse@cosmocode.de>

refactor: rename dta and dtb parameters

They are now named min and max respectively, which is hopefully less
cryptic.


# 3286c65d 27-Mar-2018 Michael Große <grosse@cosmocode.de>

fix(search): don't search for current page if submitting empty form

Pressing enter in the small quick-search-box while it was empty resulted
in a search for the current pageid.


# 3850270c 27-Mar-2018 Michael Große <grosse@cosmocode.de>

refactor(search): provide before/after arguments to search event

This way they can be cleanly influenced by the plugins instead of having
to modify global state.


# 1265b193 27-Mar-2018 Michael Große <grosse@cosmocode.de>

refactor(search): shorten get parameters


# 340f849a 27-Mar-2018 Michael Große <grosse@cosmocode.de>

fix(search): remove overlook from parameter

That parameter was introduced in cbcc2fa and removed in d22b78c


# 6639a152 26-Mar-2018 Michael Große <grosse@cosmocode.de>

refactor(search) run the search from Action/Search, not Ui/Search


# d22b78c8 26-Mar-2018 Michael Große <grosse@cosmocode.de>

feat(search): use dedicated url-parameter for search query

This way we do not loose the context of the current page. Further, the
new id generated from the query before wasn't really that useful (se

feat(search): use dedicated url-parameter for search query

This way we do not loose the context of the current page. Further, the
new id generated from the query before wasn't really that useful (see
issue #1124 ). And we can still generate a meaningful link "create a
page for your query", if that is considered useful.

Further redirects exist for the old urls, so bookmarked searches etc.
should mostly keep working.

show more ...


# d09b5b64 22-Mar-2018 Michael Große <grosse@cosmocode.de>

feat(search): add config options to adjust default behavior

This adds two new config options:

`search_limit_to_first_ns`:
Limit the search to the current X namespaces. When a search is executed
fro

feat(search): add config options to adjust default behavior

This adds two new config options:

`search_limit_to_first_ns`:
Limit the search to the current X namespaces. When a search is executed
from a page within a deeper namespace, the first X namespaces will be
added as filter.
Possible use case could be with language namespaces to ensure that the
default search is initially within the current language.

`search_default_fragment_behaviour`:
Option to specify the default fragment search behavior

show more ...


# 21fcef82 19-Mar-2018 Michael Große <grosse@cosmocode.de>

refactor(Search): refactor html_search into Ui/Search

This commit should be without functional changes.


# ec701221 31-Mar-2017 Andreas Gohr <andi@splitbrain.org>

explicitly declare method visibility


# ab583a1b 11-Feb-2017 Andreas Gohr <andi@splitbrain.org>

more doc block fixes


# 64ab5140 10-Feb-2017 Andreas Gohr <andi@splitbrain.org>

start of a refactoring the action routing

This is neither complete nor working, yet