Diff: FullTextSearch

Note: You are viewing an old revision of this page. View the current version.

Differences between version 5 and previous revision of FullTextSearch.

Other diffs: Previous Major Revision, Previous Author

Newer page: version 5 Last edited on 27 June 2007 23:59 by The PhpWiki programming team Revert
Older page: version 4 Last edited on 22 May 2014 3:01 by harold Revert
@@ -1,34 +1,31 @@
-<< FullTextSearch>
+<?plugin FullTextSearch ?
  
 ---- 
  
 Additional Searches: 
-<< WikiFormRich action=TitleSearch method=GET nobr=1 class=wikiaction 
+<?plugin WikiFormRich action=TitleSearch method=GET nobr=1 class=wikiaction 
  editbox[] name=s text="" 
  submit[] 
  checkbox[] name=case_exact 
- pulldown[] name=regex value="auto,none,glob,posix,pcre,sql">
+ pulldown[] name=regex value="auto,none,glob,posix,pcre,sql" ?
  
-<< WikiFormRich action=FullTextSearch method=GET nobr=1 class=wikiaction 
+<?plugin WikiFormRich action=FullTextSearch method=GET nobr=1 class=wikiaction 
  editbox[] name=s text="" 
  submit[] 
  checkbox[] name=case_exact 
- pulldown[] name=regex value="auto,none,glob,posix,pcre,sql">
+ pulldown[] name=regex value="auto,none,glob,posix,pcre,sql" ?
  
-<< WikiFormRich action=FuzzyPages method=GET nobr=1 class=wikiaction 
+<?plugin WikiFormRich action=FuzzyPages method=GET nobr=1 class=wikiaction 
  editbox[] name=s text="" 
  submit[] 
- checkbox[] name=case_exact>
+ checkbox[] name=case_exact ?
  
 ---- 
  
 Create or edit page: 
  
-<?plugin-form CreatePage ?> 
+<?plugin-form CreatePage?> 
  
 ---- 
  
-<< IncludePage page=FindPage quiet=1 section=Tips sectionhead=1>>  
-  
-----  
-[[CategoryActionPage]]  
+<?plugin IncludePage page=FindPage quiet=1 section=Tips sectionhead=1 ?

version 5

You must enter a search term.


Additional Searches:

    case_exact regex 
    case_exact regex 
    case_exact 

Create or edit page:


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.