]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - pgsrc/FindPage
Set PhpWiki version to 1.5.4
[SourceForge/phpwiki.git] / pgsrc / FindPage
1 Date: Mon, 29 Jun 2015 12:04:28 +0000
2 Mime-Version: 1.0 (Produced by PhpWiki 1.5.4)
3 Content-Type: application/x-phpwiki;
4   pagename=FindPage;
5   flags=PAGE_LOCKED%2CEXTERNAL_PAGE;
6   charset=UTF-8
7 Content-Transfer-Encoding: binary
8
9 Here are some good starting points for browsing.
10
11 * [[Help:HowToUseWiki|HowToUseWiki]] gives you the quick lowdown on Wiki markup.
12 * [[RecentChanges]] recorded automatically.
13 * [[Help:MoreAboutMechanics|MoreAboutMechanics]] of browsing and editing on this server.
14
15 Here's a title search. Try something like ##wiki or sandwich##.
16
17 <<WikiFormRich action=TitleSearch method=GET nobr=1 class=wikiaction
18   editbox[] name=s text=""
19   submit[]
20   checkbox[] name=case_exact
21   pulldown[] name=regex value="auto,none,glob,posix,pcre,sql">>
22
23 Use the following for a full text search.
24 The results will show all lines on a given page which contain a match.
25
26 <<WikiFormRich action=FullTextSearch method=GET nobr=1 class=wikiaction
27   editbox[] name=s text=""
28   submit[]
29   checkbox[] name=case_exact
30   pulldown[] name=regex value="auto,none,glob,posix,pcre,sql">>
31
32 In a fuzzy pages search the titles of all pages are examined to find
33 those which are similarly spelled or similar sounding (English).
34
35 <?plugin-form FuzzyPages ?>
36
37 ------
38
39 == Tips ==
40
41 * Separate words with a space. All words have to match as substrings.
42 * '##OR##', grouping with parenthesis, string-quoting and some glob-style wildcard characters are also supported.
43 * To exclude words from a title search or full text search, prepend a '##-##'.
44 * Use '##^xx##' or '##xx~*##' to match words starting with '##xx##'.
45 * Use '##~*xx##' or '##xx$##' to match words ending with '##xx##'.
46 * Use '##^word$##' to match exact words.
47 * Use //regex=auto// and '##re:##' like '##re:word.*xx##' or //regex=posix// to use Posix regular expressions. (not yet)
48 * Use //regex=auto// and '##//##' like '##/^word$/##' or //regex=pcre// to match using Perl-style regular expressions.
49 * Use //regex=sql// to match using SQL-style wildcards '##%##' and '##_##'.
50 * Use //regex=none// to match any wildcards verbatim.
51
52 === Example ===
53 * '##wiki text -php##' looks for all pages containing the words '##wiki##' and '##text##', but not containing the word '##php##'.
54
55 ----
56 [[PhpWikiDocumentation]]