~kosova/+junk/tuxfamily-twiki

« back to all changes in this revision

Viewing changes to foswiki/data/System/FormattedSearch.txt

  • Committer: James Michael DuPont
  • Date: 2009-07-18 19:58:49 UTC
  • Revision ID: jamesmikedupont@gmail.com-20090718195849-vgbmaht2ys791uo2
added foswiki

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
%META:TOPICINFO{author="ProjectContributor" date="1231502400" format="1.1" version="1"}%
 
2
%META:TOPICPARENT{name="Macros"}%
 
3
%STARTINCLUDE%
 
4
---+ Formatted Search
 
5
 
 
6
_Inline search feature allows flexible formatting of search result_
 
7
 
 
8
The default output format of a =[[VarSEARCH][%<nop>SEARCH{...}%]]= is a table consisting of topic names and topic summaries. Use the =format="..."= parameter to customize the search result. The format parameter typically defines a bullet or a table row containing macros, such as =%<nop>SEARCH{ "food" format="| $topic | $summary |" }%=. See =[[VarSEARCH][%<nop>SEARCH{...}%]]= for other search parameters, such as =separator=""=.
 
9
 
 
10
%TOC%
 
11
 
 
12
---++ Syntax
 
13
 
 
14
Two parameters can be used to specify a customized search result:
 
15
 
 
16
---+++ 1. =header="..."= parameter
 
17
 
 
18
Use the header parameter to specify the header of a search result. It should correspond to the format of the format parameter. This parameter is optional. <br /> Example: =header="| <nop>*Topic:*<nop> | <nop>*Summary:*<nop> |"=
 
19
 
 
20
Format tokens that can be used in the header string:
 
21
 
 
22
| *Name:* | *Expands To:* |
 
23
| =$web= | Name of the web |
 
24
%INCLUDE{FormatTokens}%
 
25
 
 
26
---+++ 2. =footer="..."= parameter
 
27
 
 
28
Use the footer parameter to specify the footer of a search result. It should correspond to the format of the format parameter. This parameter is optional. <br /> Example: =footer="| <nop>*Topic*<nop> | <nop>*Summary*<nop> |"=
 
29
 
 
30
Format tokens that can be used in the footer string:
 
31
 
 
32
| *Name:* | *Expands To:* |
 
33
| =$web= | Name of the web |
 
34
| =$ntopics= | Number of topics found in current web |
 
35
| =$nhits= | Number of hits if =multiple="on"=. Cumulative across all topics in current web. Identical to =$ntopics= unless =multiple="on"= |
 
36
%INCLUDE{FormatTokens}%
 
37
 
 
38
---+++ 3. =format="..."= parameter
 
39
 
 
40
Use the format parameter to specify the format of one search hit.
 
41
<br /> Example: =format="| $topic | $summary |"=
 
42
 
 
43
Format tokens that can be used in the format string:
 
44
 
 
45
| *Name:* | *Expands To:* |
 
46
| =$web= | Name of the web |
 
47
| =$topic= | Topic name |
 
48
| =$topic(20)= | Topic name, "<tt>- </tt>" hyphenated each 20 characters |
 
49
| =$topic(30, -&lt;br /&gt;)= | Topic name, hyphenated each 30 characters with separator "<tt>-&lt;br /&gt;</tt>" |
 
50
| =$topic(40, ...)= | Topic name, shortended to 40 characters with "<tt>...</tt>" indication |
 
51
| =$parent= | Name of parent topic; empty if not set |
 
52
| =$parent(20)= | Name of parent topic, same hyphenation/shortening like =$topic()= |
 
53
| =$text= | Formatted topic text. In case of a =multiple="on"= search, it is the line found for each search hit. |
 
54
| =$locked= | LOCKED flag (if any) |
 
55
| =$date= | Time stamp of last topic update, e.g. =%GMTIME{"$day $mon $year - $hour:$min"}%= |
 
56
| =$isodate= | Time stamp of last topic update, e.g. =%GMTIME{"$year-$mo-$dayT$hour:$minZ"}%= |
 
57
| =$rev= | Number of last topic revision, e.g. =4= |
 
58
| =$username= | Login name of last topic update, e.g. =jsmith= |
 
59
| =$wikiname= | Wiki user name of last topic update, e.g. =<nop>JohnSmith= |
 
60
| =$wikiusername= | Wiki user name of last topic update, like =%USERSWEB%.<nop>JohnSmith= |
 
61
| =$createdate= | Time stamp of topic revision 1 |
 
62
| =$createusername= | Login name of topic revision 1, e.g. =jsmith= |
 
63
| =$createwikiname= | Wiki user name of topic revision 1, e.g. =<nop>JohnSmith= |
 
64
| =$createwikiusername= | Wiki user name of topic revision 1, e.g. =%USERSWEB%.<nop>JohnSmith= |
 
65
| =$summary= | Topic summary, just the plain text, all formatting and line breaks removed; up to 162 characters |
 
66
| =$summary(50)= | Topic summary, up to 50 characters shown |
 
67
| =$summary(showvarnames)= | Topic summary, with =%<nop>SOMEMACRO{...}%= macros shown as =SOMEMACRO{...}= |
 
68
| =$summary(noheader)= | Topic summary, with leading =---+ headers= removed%BR% *Note:* The tokens can be combined, for example =$summary(100, showvarnames, noheader)= |
 
69
| =$changes= | Summary of changes between latest rev and previous rev |
 
70
| =$changes(n)= | Summary of changes between latest rev and rev n |
 
71
| =$formname= | The name of the form attached to the topic; empty if none |
 
72
| =$formfield(name)= | The field value of a form field; for example, =$formfield(<nop>TopicClassification)= would get expanded to =PublicFAQ=. This applies only to topics that have a [[DataForms][DataForm]] |
 
73
| =$formfield(name, 10)= | Form field value, "<tt>- </tt>" hyphenated each 10 characters |
 
74
| =$formfield(name, 20, -&lt;br /&gt;)= | Form field value, hyphenated each 20 characters with separator "<tt>-&lt;br /&gt;</tt>" |
 
75
| =$formfield(name, 30, ...)= | Form field value, shortended to 30 characters with "<tt>...</tt>" indication |
 
76
| =$pattern(reg-exp)= | A regular expression pattern to extract some text from a topic (does not search meta data; use =$formfield= instead). In case of a =multiple="on"= search, the pattern is applied to the line found in each search hit.%BB% Specify a RegularExpression that covers the whole text (topic or line), which typically starts with =.*=, and must end in =.*= %BB% Put text you want to keep in parenthesis, like =$pattern(.*?(from here.*?to here).*)= %BB% Example: =$pattern(.*?\*.*?Email\:\s*([^\n\r]+).*)= extracts the e-mail address from a bullet of format =* Email: ...= %BB% This example has non-greedy =.*?= patterns to scan for the first occurance of the Email bullet; use greedy =.*= patterns to scan for the last occurance %BB% Limitation: Do not use =.*)= inside the pattern, e.g. =$pattern(.*foo(.*)bar.*)= does not work, but =$pattern(.*foo(.*?)bar.*)= does %BB% Note: Make sure that the integrity of a web page is not compromised; for example, if you include an HTML table make sure to include everything including the table end tag |
 
77
| =$count(reg-exp)= | Count of number of times a regular expression pattern appears in the text of a topic (does not search meta data). Follows guidelines for use and limitations outlined above under =$pattern(reg-exp)=. Example: =$count(.*?(---[+][+][+][+]) .*)= counts the number of &lt;H4&gt; headers in a page. |
 
78
| =$ntopics= | Number of topics found in current web. This is the current topic count, not the total number of topics |
 
79
| =$nhits= | Number of hits if =multiple="on"=. Cumulative across all topics in current web. Identical to =$ntopics= unless =multiple="on"= |
 
80
%INCLUDE{FormatTokens}%
 
81
 
 
82
---++ Examples
 
83
 
 
84
Here are some samples of formatted searches. The SearchPatternCookbook has other examples, such as [[SearchPatternCookbook#SearchUsernames][creating a picklist of usernames]], [[SearchPatternCookbook#SearchTopicChildren][searching for topic children]] and more.
 
85
 
 
86
#SearchBulletList
 
87
---+++ Bullet list showing topic name and summary
 
88
 
 
89
*Write this:*
 
90
 
 
91
=%<nop>SEARCH{ "VarREMOTE" scope="topic" nosearch="on" nototal="on" header="| <nop>*Topic* | <nop>*Summary* |" format="| [<nop>[$topic]] | $summary |"  footer="| <nop>*Topics found* | <nop>*$ntopics* |"  }%=
 
92
 
 
93
*To get this:*
 
94
 
 
95
%SEARCH{ "VarREMOTE" scope="topic" nosearch="on" nototal="on" header="| *Topic* | *Summary* |" format="| [[$topic]] | $summary |"  footer="| *Topics found* | *$ntopics* |"  }%
 
96
 
 
97
---+++ Table showing form field values of topics with a form
 
98
 
 
99
In a web where there is a form that contains a =Topic<nop>Classification= field, an =Operating<nop>System= field and an =Os<nop>Version= field we could write:
 
100
 
 
101
=| <nop>*Topic:*<nop> | <nop>*<nop>OperatingSystem:*<nop> | <nop>*<nop>OsVersion:*<nop> |= <br />
 
102
=%<nop>SEARCH{ "[T]opicClassification.*?value=\"[P]ublicFAQ\"" scope="text" type="regex" nosearch="on" nototal="on" format="| [<nop>[$topic]] | $formfield(<nop>OperatingSystem) | $formfield(<nop>OsVersion) |" }%=
 
103
 
 
104
To get this:
 
105
 
 
106
<table border="1" cellspacing="0" cellpadding="1">
 
107
<tr>
 
108
 <th bgcolor="#99CCCC"> <strong>Topic:</strong> </th>
 
109
 <th bgcolor="#99CCCC"> <strong>OperatingSystem:</strong> </th>
 
110
 <th bgcolor="#99CCCC"> <strong>OsVersion:</strong> </th></tr>
 
111
<tr>
 
112
 <td>  <a href="%SCRIPTURLPATH{"view"}%/Sandbox/IncorrectDllVersionW32PTH10DLL">IncorrectDllVersionW32PTH10DLL</a>  </td><td>  <a href="%SCRIPTURLPATH{"view"}%/Sandbox/OsWin">OsWin</a>  </td><td>  95/98  </td></tr>
 
113
<tr>
 
114
 <td>  <a href="%SCRIPTURLPATH{"view"}%/Sandbox/WinDoze95Crash">WinDoze95Crash</a>  </td>
 
115
 <td>  <a href="%SCRIPTURLPATH{"view"}%/Sandbox/OsWin">OsWin</a>  </td>
 
116
 <td>  95  </td></tr>
 
117
</table>
 
118
 
 
119
 
 
120
---+++ Extract some text from a topic using regular expression
 
121
 
 
122
*Write this:*
 
123
 
 
124
=%<nop>SEARCH{ "\*Back to:\* <nop>FrequentlyAskedQuestions" scope="text" type="regex" nosearch="on" nototal="on" header="FAQs:" format="   * $pattern(.*?FAQ\:[\n\r]*([^\n\r]+).*) [<nop>[$topic][Answer...]]" footer="Found $ntopics FAQ topics" }%=
 
125
 
 
126
*To get this:*
 
127
 
 
128
%SEARCH{ "\*Back to:\* FrequentlyAskedQuestions" scope="text" type="regex" nosearch="on" nototal="on" header="FAQs:" format="   * $pattern(.*?FAQ\:[\n\r]*([^\n\r]+).*) [[$topic][Answer...]]" footer="Found $ntopics FAQ topics" }%
 
129
 
 
130
 
 
131
---+++ Nested Search
 
132
 
 
133
Search can be nested. For example, search for some topics, then form a new search for each topic found in the first search. The idea is to build the nested search string using a formatted search in the first search.
 
134
 
 
135
Here is an example. Let's search for all topics that contain the word "culture" (first search), and let's find out where each topic found is linked from (second search).
 
136
 
 
137
   * First search:
 
138
      * =%<nop>SEARCH{ "culture" format="   * $topic is referenced by: (list all references)" nosearch="on" nototal="on" }%=
 
139
   * Second search. For each hit we want this search:
 
140
      * =%<nop>SEARCH{ "(topic found in first search)" format="$topic" nosearch="on" nototal="on" separator=", " }%=
 
141
   * Now let's nest the two. We need to escape the second search, e.g. the first search will build a valid second search string. Note that we escape the second search so that it does not get evaluated prematurely by the first search:
 
142
      * Use =$percnt= to escape the leading percent of the second search
 
143
      * Use =\"= to escape the double quotes
 
144
      * Use =$dollar= to escape the =$= of =$topic=
 
145
      * Use =$nop= to escape the =}%= sequence
 
146
 
 
147
*Write this:*
 
148
 
 
149
=%<nop>SEARCH{ "culture" format="   * $topic is referenced by:$n      * $percntSEARCH{ \"$topic\" format=\"$dollartopic\" nosearch=\"on\" nototal=\"on\" separator=\", \" }$nop%" nosearch="on" nototal="on" }%=
 
150
 
 
151
*To get this:*
 
152
 
 
153
%SEARCH{ "culture" format="   * $topic is referenced by:$n      * $percntSEARCH{ \"$topic\" format=\"$dollartopic\" nosearch=\"on\" nototal=\"on\" separator=\", \" }$nop%" nosearch="on" nototal="on" }%
 
154
 
 
155
*Note:* Nested search can be slow, especially if you nest more then 3 times. Nesting is limited to 16 levels. For each new nesting level you need to "escape the escapes", e.g. write =$dollarpercntSEARCH{= for level three, =$dollardollarpercntSEARCH{= for level four, etc.
 
156
 
 
157
---+++ Most recently changed pages
 
158
 
 
159
*Write this:*
 
160
 
 
161
=%<nop>SEARCH{ "\.*" scope="topic" type="regex" nosearch="on" nototal="on" order="modified" reverse="on"  format="| [<nop>[$topic]] | $wikiusername  | $date |" limit="7" }%=
 
162
 
 
163
*To get this:*
 
164
 
 
165
%SEARCH{ "\.*" scope="topic" type="regex" nosearch="on" nototal="on" order="modified" reverse="on"  format="| [[$topic]] | $wikiusername  | $date |" limit="7" }%
 
166
 
 
167
---+++ Search with conditional output
 
168
 
 
169
A regular expression search is flexible, but there are limitations. For example, you cannot show all topics that are up to exactly one week old, or create a report that shows all records with invalid form fields or fields within a certain range, etc. You need some additional logic to format output based on a condition:
 
170
   1. Specify a search which returns more hits then you need
 
171
   1. For each search hit apply a spreadsheet formula to determine if the hit is needed
 
172
   1. If needed, format and output the result
 
173
   1. Else supress the search hit
 
174
 
 
175
This requires the Foswiki:Extensions.SpreadSheetPlugin. The following example shows all topics that are up to exactly one week old.
 
176
 
 
177
*Write this:*
 
178
 
 
179
=%<nop>CALC{$SET(weekold, $TIMEADD($TIME(), -7, day))}%= %BR%
 
180
=%<nop>SEARCH{ "." scope="topic" type="regex" nosearch="on" nototal="on" order="modified" reverse="on" format="$percntCALC{$IF($TIME($date) &lt; $GET(weekold), &lt;nop&gt;, | [<nop>[$topic]] | $wikiusername | $date | $rev |)}$percnt" limit="100" }%=
 
181
 
 
182
   * The first line sets the =weekold= variable to the serialized date of exactly one week ago
 
183
   * The SEARCH has a deferred CALC. The =$percnt= makes sure that the CALC gets executed once for each search hit
 
184
   * The CALC compares the date of the topic with the =weekold= date
 
185
   * If topic is older, a =&lt;nop&gt;= is returned, which gets removed at the end of the rendering process
 
186
   * Otherwise, the search hit is formatted and returned
 
187
 
 
188
*To get this:*
 
189
 
 
190
%CALC{$SET(weekold, $TIMEADD($TIME(), -7, day))}%
 
191
%SEARCH{ "'1'" scope="topic" type="query" nosearch="on" nototal="on" order="modified" reverse="on" format="$percntCALC{$IF($TIME($date) < $GET(weekold), <nop>, | [[$topic]] | $wikiusername | $date | $rev |)}$percnt" limit="100" }%
 
192
 
 
193
---+++ Embedding search forms to return a formatted result
 
194
 
 
195
Use an HTML form and an embedded formatted search on the same topic. You can link them together with an =%<nop>URLPARAM{"..."}%= macro. Example:
 
196
 
 
197
*Write this:*
 
198
 
 
199
<verbatim>
 
200
<form action="%SCRIPTURLPATH{"view"}%/%WEB%/%TOPIC%">
 
201
Find Topics: 
 
202
<input type="text" name="q" size="32" value="%URLPARAM{"q" encode="entity"}%" />&nbsp;<input type="submit" class="foswikiSubmit" value="Search" />
 
203
</form>
 
204
Result:
 
205
%SEARCH{ search="%URLPARAM{"q" encode="quote"}%" type="keyword" format="   * $web.$topic: %BR% $summary" nosearch="on" }%
 
206
</verbatim>
 
207
 
 
208
*To get this:*
 
209
 
 
210
<form action="%SCRIPTURLPATH{"view"}%/%WEB%/%TOPIC%">
 
211
Find Topics: 
 
212
<input type="text" name="q" size="32" value="%URLPARAM{"q" encode="entity"}%" />&nbsp;<input type="submit" class="foswikiSubmit" value="Search" />
 
213
</form>
 
214
Result:
 
215
%SEARCH{ search="%URLPARAM{"q" encode="quote"}%" type="keyword" format="   * $web.$topic: %BR% $summary" nosearch="on" }%
 
216
 
 
217
---
 
218
*Related Topics:* UserDocumentationCategory, SearchHelp, [[%SYSTEMWEB%.Macros#VarSEARCH][Macros#VarSEARCH]], SearchPatternCookbook, RegularExpression