Search
The search looks up full words in title (page basename), page_src (the creole source) and tag (page tags) without giving special search commands in the search string.
Search fields
- title (TEXT)
- page_src (TEXT)
- tag (TEXT)
- creation_time (DATETIME)
- modified_time (DATETIME)
- modified_user (TEXT)
Search syntax (Whoosh)
Logic operators
- AND
- Example: "foo AND bar" - Search will find all items with foo and bar.
- OR
- Example: "foo OR bar" - Search will find all items with foo, bar or with foo and bar.
- NOT
- Example: "foo NOT bar" - Search will find all items with foo and no bar.
Search in specific fields
A search pattern like foo:bar does look for bar in the field named foo.
This search pattern can also be combined with other search text via logical operators.
Search for specific content
- Wildcards:
- Range:
- From To:
- Above:
- Below:
- Named constants:
- now: Current date
- -[num]y: Current date minus [num] years
- +[num]mo: Current date plus [num] months
- -[num]d: Current date minus [num] days
- ...
Examples
- modified_user:system-page results in a list of all system pages.
- modified_time:[-5d to now] results in a list of all pages which have been modified within the last 5 days.
- tag:foo results in a list of all pages which are tagged with foo.