]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - pgsrc/FindPage
Update PHP Doc
[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   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. This takes a few seconds.
24 The results will show all lines on a given page which contain a
25 match.
26
27 <<WikiFormRich action=FullTextSearch method=GET nobr=1 class=wikiaction
28   editbox[] name=s text=""
29   submit[]
30   checkbox[] name=case_exact
31   pulldown[] name=regex value="auto,none,glob,posix,pcre,sql">>
32
33 In a fuzzy pages search the titles of all pages are examined to find
34 those which are similarly spelled or similar sounding (English).
35
36 <?plugin-form FuzzyPages ?>
37
38 ------
39
40 == Tips ==
41
42 * Separate words with a space. All words have to match as substrings.
43 * '##OR##', grouping with parenthesis, string-quoting and some glob-style wildcard characters are also supported.
44 * To exclude words from a title search or full text search, prepend a '##-##'.
45 * Use '##^xx##' or '##xx~*##' to match words starting with '##xx##'.
46 * Use '##~*xx##' or '##xx$##' to match words ending with '##xx##'.
47 * Use '##^word$##' to match exact words.
48 * Use //regex=auto// and '##re:##' like '##re:word.*xx##' or //regex=posix// to use Posix regular expressions. (not yet)
49 * Use //regex=auto// and '##//##' like '##/^word$/##' or //regex=pcre// to match using Perl-style regular expressions.
50 * Use //regex=sql// to match using SQL-style wildcards '##%##' and '##_##'.
51 * Use //regex=none// to match any wildcards verbatim.
52
53 === Example ===
54 * '##wiki text -php##' looks for all pages containing the words '##wiki##' and '##text##', but not containing the word '##php##'.
55
56 ----
57 [[PhpWikiDocumentation]]