blob: 606248c3875f58c49def48fb789fd947d1737a78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
<form method="get" action="{searchurl}">
<!-- BEGIN suburl -->
<input type="hidden" name="u" value="{suburl}" />
<!-- END suburl -->
<div class="tblBasic">
<table border="0" cellpadding="0" cellspacing="0" class="tblBasicGrey" width="590">
<tr>
<td class="colFirstR">Search for:</td>
<th class="colLast"><input type="text" name="q" value="{searchfor}" /> <input type="submit" value="Search" /></th>
</tr>
<!-- BEGIN main_form -->
<tr class="lastrow">
<td class="colFirst"></td>
<td class="colLast"><input type="checkbox" name="a" value="1" {comsites}/>Include community sites</td>
</tr>
<!-- END main_form -->
<!-- BEGIN archives_form -->
<tr>
<td class="colFirstR">List:<input type="hidden" name="m" value="1" /></td>
<td class="colLast"><select name="l"><!-- BEGIN archives_lists -->
<option value="{listid}"{listselect}>{listname}</option>
<!-- END archives_lists -->
</select></td>
</tr>
<tr>
<td class="colFirstR">Post date:</td>
<td class="colLast"><select name="d"><!-- BEGIN archives_dates -->
<option value="{archives_dates_val}" {archives_dates_sel}>{archives_dates_txt}</option>
<!-- END archives_dates -->
</select></td>
</tr>
<tr class="lastrow">
<td class="colFirst" align="right">Sort by:</td>
<td class="colLast"><select name="s">{archives_sort_str}</select></td>
</tr>
<!-- END archives_form -->
</table>
</div>
</form>
<div id="pgSearchContent">
<!-- BEGIN search_error -->
<div>{search_error}</div>
<!-- END search_error -->
</div>
<!-- BEGIN docbot_search -->
Based on your search term, we recommend the following links:
<ul id="pgFrontShortcutsList">
<!-- BEGIN docbot_search_loop -->
<li><a href="{docbot_url}">{docbot_url}</a></li>
<!-- END docbot_search_loop -->
</ul>
<!-- END docbot_search -->
<!-- BEGIN no_hits -->
<p>Your search for <b>{searchfor}</b> returned no hits.</p>
<!-- END no_hits -->
<!-- BEGIN main_search -->
<h2>Results {firsthit}-{lasthit} of {totalhits}.</h2>
<p>Searching in {searchpages} pages took {searchtime} seconds.
Site search powered by <a href="http://www.postgresql.org">PostgreSQL 8.3</a>.</p>
<!-- BEGIN page_links1 -->
Result pages: {page_links}<br/><br/>
<!-- END page_links1 -->
<!-- BEGIN main_search_loop -->
{hit_num}. <a href="{hit_url}">{hit_title}</a> [{hit_rank}]<br/>
<div>...{hit_abstract}...</div>
<a href="{hit_url}">{hit_url}</a><br/>
<br/>
<!-- END main_search_loop -->
<!-- BEGIN archives_search_loop -->
{arch_num} . <a href="http://archives.postgresql.org/{arch_list}/{arch_year}-{arch_month}/msg{arch_msgnum}.php">{arch_subject}</a> [{arch_rank}]<br/>
Posted {arch_date} by {arch_author}.<br/>
{arch_abstract}<br/>
<a href="http://archives.postgresql.org/{arch_list}/{arch_year}-{arch_month}/msg{arch_msgnum}.php">http://archives.postgresql.org/{arch_list}/{arch_year}-{arch_month}/msg{arch_msgnum}.php</a><br/>
<br/>
<!-- END archives_search_loop -->
<!-- BEGIN page_links2 -->
Result pages: {page_links}<br/><br/>
<!-- END page_links2 -->
<!-- END main_search -->
|