Edgewall Software

Changes between Version 41 and Version 42 of WikiProcessors


Ignore:
Timestamp:
Mar 10, 2010, 5:23:18 PM (14 years ago)
Author:
szybalski@…
Comment:

HTML submit form example#4. Search on wiki page. With 138K tickets this cuts the search by half. No need to go run query twice.

Legend:

Unmodified
Added
Removed
Modified
  • WikiProcessors

    v41 v42  
    7979
    8080----
     81'''Example 4''' (''Searching from a wiki page by custom field. Allows user to reuse most common searches on a wiki page''):
     82
     83{{{
     84#!html
     85<pre class="wiki">{{{
     86#!html
     87&lt;form action="/query" method="get"&gt;
     88&lt;input type="text" name="keywords" value="~" size="30"&gt; &lt;input type="submit" value="Search by Keywords#"&gt;
     89&lt;/form&gt;
     90}}}</pre>
     91}}}
     92
     93
     94''' Result:'''
     95{{{
     96#!html
     97<form action="/query" method="get">
     98<input type="text" name="keywords" value="~" size="30"> <input type="submit" value="Search by Keywords#">
     99</form>
     100}}}
     101
     102
     103----
    81104
    82105== Available Processors ==