From d54320aba9f9d003d0d884d504645475b13de86c Mon Sep 17 00:00:00 2001 From: vargenau Date: Mon, 2 Mar 2015 09:47:36 +0000 Subject: [PATCH] Update themes/fusionforge/pgsrc/FindPage git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@9578 96ab9672-09ca-45d6-a79d-3d69d39ca109 --- themes/fusionforge/pgsrc/FindPage | 36 +++++++++++++++++++------------ 1 file changed, 22 insertions(+), 14 deletions(-) diff --git a/themes/fusionforge/pgsrc/FindPage b/themes/fusionforge/pgsrc/FindPage index 7df1d7943..1d479236a 100644 --- a/themes/fusionforge/pgsrc/FindPage +++ b/themes/fusionforge/pgsrc/FindPage @@ -1,4 +1,4 @@ -Date: Tue, 7 Oct 2014 19:05:54 +0000 +Date: Mon, 2 Mar 2015 10:45:29 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.5.2) Content-Type: application/x-phpwiki; pagename=FindPage; @@ -38,16 +38,24 @@ those which are similarly spelled or similar sounding (English). == Tips == -* Separate words with a space. All words have to match as substrings. -* '##OR##', grouping with parenthesis, string-quoting and some glob-style wildcard characters are also supported. -* To exclude words from a title search or full text search, prepend a '##-##'. -* Use '##^xx##' or '##xx~*##' to match words starting with '##xx##'. -* Use '##~*xx##' or '##xx$##' to match words ending with '##xx##'. -* Use '##^word$##' to match exact words. -* Use //regex=auto// and '##re:##' like '##re:word.*xx##' or //regex=posix// to use Posix regular expressions. (not yet) -* Use //regex=auto// and '##//##' like '##/^word$/##' or //regex=pcre// to match using Perl-style regular expressions. -* Use //regex=sql// to match using SQL-style wildcards '##%##' and '##_##'. -* Use //regex=none// to match any wildcards verbatim. - -=== Example === -* '##wiki text -php##' looks for all pages containing the words '##wiki##' and '##text##', but not containing the word '##php##'. +* Separate words with a space. All words have to match as exact strings. + + + Example: search for “databas” will NOT match the text “PGSQL database is a nice product.” + +* Search for consecutive words by using quotes. + + + Example: ‘white dog’ will match “This is a white dog.” + +* Search for some special chars, such as @ ! &, in the keyword is allowed. Yet you can NOT search for such chars only. + + + Example: ‘year!’ will match “Happy new year!”. + + + + Example: search for '!!!' will NOT return any result. + +* Search for Chinese words is allowed. +* You can search titles in “Title Search” section, and search wiki contents in “Full Text Search” section. -- 2.45.0