search_path

NAML documentation   Watch a video
   Usages of this macro
The source code below doesn't have navigation links because no usage has been compiled yet. Navigation links depend on how and where the macro is used, so first you may try finding all usages of "search_path".
... in searcher.naml
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<macro name="search_path"
 
parameters="query,author,starrer,days,index_record,sort"
 
requires="node, searcher_tool">
    <n.encode_url.remove_spaces.>
        /template/NamlServlet.jtp?macro=searcher&node=<n.id/>
        <n.add_to_path name="query" value="[n.query/]" />
        <n.add_to_path name="author" value="[n.author/]" />
        <n.add_to_path name="starrer" value="[n.starrer/]" />
        <n.add_to_path name="days" value="[n.days/]" />
        <n.add_to_path name="i" value="[n.index_record/]"
        
        default_value="0" />
        <n.add_to_path name="sort" value="[n.sort/]"
        
        default_value="relevance" />
    </n.encode_url.remove_spaces.>
</macro>