|
|
{extends "layout_view.tpl"}
|
|
|
|
|
|
{block name="title"}
|
|
|
{title}{$title}{/title}
|
|
|
{/block}
|
|
|
|
|
|
{block name="content"}
|
|
|
{strip}
|
|
|
<div class="help_section">
|
|
|
{tr}The documents are returned sorted on relevance depending on order, proximity, frequency of terms. {/tr}
|
|
|
</div>
|
|
|
<div class="help_section">
|
|
|
<h4>{tr}Default search behavior{/tr}</h4>
|
|
|
<p>
|
|
|
<strong>{tr}Tiki uses the asterisk{/tr}</strong> {tr}"*" as wildcard symbol that broadens a search by finding words that start with the same letters.{/tr}<br />
|
|
|
{tr}Example:{/tr} <strong>{tr}Home*{/tr}</strong> {tr}will find objects that contain a term starting with "Home" like "HomePage", "Home", "Homework", etc.{/tr}
|
|
|
</p>
|
|
|
<p>
|
|
|
{tr}By default, all search terms are <em>optional</em>.{/tr} {tr}It behaves like an OR logic.{/tr}
|
|
|
|
|
|
{tr}Objects that contain the more terms are rated higher in the results and will appear first.{/tr} {tr}For example,
|
|
|
<strong>wiki forum</strong>
|
|
|
will find:{/tr}
|
|
|
</p>
|
|
|
<ul>
|
|
|
<li>{tr}objects that include both tokenized terms{/tr}</li>
|
|
|
<li>{tr}objects that include the term <strong>wiki</strong>{/tr}</li>
|
|
|
<li>{tr}objects that include the term <strong>forum</strong>{/tr} or <strong>forums</strong></li>
|
|
|
</ul>
|
|
|
|
|
|
<h4>{tr}Boolean operators{/tr}</h4>
|
|
|
<p>{tr}You can use AND or OR or NOT also to do a boolean search.{/tr}
|
|
|
{tr}Example: <strong>wiki and forum</strong> will find objects with both terms.{/tr}
|
|
|
{tr}Example:<strong>wiki or forum</strong>will find objects with one of the term.{/tr}</p>
|
|
|
|
|
|
<h4>{tr}Grouping terms{/tr}</h4>
|
|
|
<p>{tr}Use parenthesis ( ) to group terms into subexpressions.{/tr}
|
|
|
{tr}Example: <strong>wiki and (forum blog)</strong> twill find objects that contain <strong>wiki</strong> and <strong>forum</strong> or that contain <strong>wiki</strong> and <strong>blog</strong> in any order.{/tr}</p>
|
|
|
<h4>{tr}Finding phrases{/tr}</h4>
|
|
|
<p>{tr}Use double quotes ( <kbd>" "</kbd> ) around a phrase to find terms in the exact order, next to each other.{/tr}
|
|
|
{tr}Example: <kbd>"Alex Bell"</kbd> will not find <strong>Bell Alex</strong> or <strong>Alex G. Bell</strong> but <strong>Alex Bells</strong>.{/tr}</p>
|
|
|
|
|
|
</div>
|
|
|
{/strip}
|
|
|
{/block}
|