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