diff options
| author | orbiter <orbiter@6c8d7289-2bf4-0310-a012-ef5d649a1542> | 2011-08-11 21:37:35 +0000 |
|---|---|---|
| committer | orbiter <orbiter@6c8d7289-2bf4-0310-a012-ef5d649a1542> | 2011-08-11 21:37:35 +0000 |
| commit | 594d8f546afdfdc1dd947c4e23dc4deba597eb69 (patch) | |
| tree | 9380036f7d570131ebc2e95cf4e4695aa368a12b /htroot/yacyinteractive.html | |
| parent | eb14111200c2b95e190d4ff331056a18ebeee85e (diff) | |
#cccamp11 maintenance fix: anons may find up to 1000 items in interactive search (was: 100)
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@7866 6c8d7289-2bf4-0310-a012-ef5d649a1542
Diffstat (limited to 'htroot/yacyinteractive.html')
| -rw-r--r-- | htroot/yacyinteractive.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/htroot/yacyinteractive.html b/htroot/yacyinteractive.html index acc083978..462cc4909 100644 --- a/htroot/yacyinteractive.html +++ b/htroot/yacyinteractive.html @@ -33,7 +33,9 @@ <script type="text/javascript"> //<![CDATA[ var q = "#[query]#"; -if (q != "") search(q); +var s = "#[startRecord]#"; +var m = "#[maximumRecords]#"; +if (q != "") search(q, m, s); //]]> </script> #(topmenu)# @@ -60,6 +62,8 @@ To see a list of all APIs, please visit the <a href="http://www.yacy-websuche.de <a href="#[promoteSearchPageGreeting.homepage]#" class="yacylogo"><img src="#[promoteSearchPageGreeting.smallImage]#" alt="yacysearch"/></a> </div> <fieldset class="yacys"> + <input type="hidden" name="maximumRecords" value="#[maximumRecords]#" /> + <input type="hidden" name="startRecord" value="#[startRecord]#" /> <input id="search" name="query" type="text" value="#[query]#" size="50" maxlength="80" /> </fieldset> <!--<pre>Raw JSON String: <div id="raw"></div></pre>--> |
