From: <var...@us...> - 2015-03-02 09:47:43
|
Revision: 9578 http://sourceforge.net/p/phpwiki/code/9578 Author: vargenau Date: 2015-03-02 09:47:36 +0000 (Mon, 02 Mar 2015) Log Message: ----------- Update themes/fusionforge/pgsrc/FindPage Modified Paths: -------------- trunk/themes/fusionforge/pgsrc/FindPage Modified: trunk/themes/fusionforge/pgsrc/FindPage =================================================================== --- trunk/themes/fusionforge/pgsrc/FindPage 2015-02-28 17:02:28 UTC (rev 9577) +++ trunk/themes/fusionforge/pgsrc/FindPage 2015-03-02 09:47:36 UTC (rev 9578) @@ -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 @@ == 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. +* Separate words with a space. All words have to match as exact strings. -=== Example === -* '##wiki text -php##' looks for all pages containing the words '##wiki##' and '##text##', but not containing the word '##php##'. + <verbatim> + Example: search for “databas” will NOT match the text “PGSQL database is a nice product.” + </verbatim> +* Search for consecutive words by using quotes. + + <verbatim> + Example: ‘white dog’ will match “This is a white dog.” + </verbatim> +* Search for some special chars, such as @ ! &, in the keyword is allowed. Yet you can NOT search for such chars only. + + <verbatim> + Example: ‘year!’ will match “Happy new year!”. + </verbatim> + + <verbatim> + Example: search for '!!!' will NOT return any result. + </verbatim> +* Search for Chinese words is allowed. +* You can search titles in “Title Search” section, and search wiki contents in “Full Text Search” section. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2019-03-28 13:56:56
|
Revision: 10058 http://sourceforge.net/p/phpwiki/code/10058 Author: vargenau Date: 2019-03-28 13:56:54 +0000 (Thu, 28 Mar 2019) Log Message: ----------- CANNOT Modified Paths: -------------- trunk/themes/fusionforge/pgsrc/FindPage Modified: trunk/themes/fusionforge/pgsrc/FindPage =================================================================== --- trunk/themes/fusionforge/pgsrc/FindPage 2018-06-11 08:27:58 UTC (rev 10057) +++ trunk/themes/fusionforge/pgsrc/FindPage 2019-03-28 13:56:54 UTC (rev 10058) @@ -1,4 +1,4 @@ -Date: Thu, 13 Oct 2016 15:09:36 +0000 +Date: Thu, 28 Mar 2019 14:56:18 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=FindPage; @@ -44,7 +44,7 @@ <verbatim> Example: 'white dog' or "white dog" will match “This is a white dog.” </verbatim> -* Search for some special chars, such as @ ! &, in the keyword is allowed. Yet you can NOT search for such chars only. +* Search for some special chars, such as @ ! &, in the keyword is allowed. Yet you CANNOT search for such chars only. <verbatim> Example: ‘year!’ will match “Happy new year!”. @@ -53,5 +53,5 @@ <verbatim> Example: search for '!!!' will NOT return any result. </verbatim> -* Search can be done in any language, including Chinese. +* Search can be done in any language. * You can search titles in “Title Search” section, and search wiki contents in “Full Text Search” section. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |