diff --git a/build.xml b/build.xml
index 0aab9826b..4ed386362 100644
--- a/build.xml
+++ b/build.xml
@@ -58,7 +58,13 @@
A 'Live-Search' input field that reacts as search-as-you-type in a pop-up window can easily be integrated in any web page.
This is the same function as can be seen on all pages of the YaCy online-interface (look at the window in the upper right corner).
- Just use the code snippet below to integrate that in your own web pages.
- Please check if the address, as given in the example '#[ip]#:#[port]#' here is correct and replace it with more appropriate values if necessary.
+ There are basically two methods for integrating the YaCy Search Widget with your web site.
+ Integration of a Search Field for Live Search
+ Integration of Live Search with YaCy Search Widget
+
+
-<script src="http://#[ip]#:#[port]#/yacy/ui/js/jquery-1.3.2.min.js" type="text/javascript"></script> +<script src="http://#[ip]#:#[port]#/jquery/js/jquery-1.7.min.js" type="text/javascript" type="text/javascript"></script> <script> $(document).ready(function() { yconf = { - url : 'http://#[ip]#:#[port]#', - logo : '/yacy/ui/img/yacy-logo.png', - link : 'http://www.yacy.net', - global : false, - width : 500, - height : 620, + url : 'http://#[ip]#:#[port]#', + title : 'YaCy Search Widget', + logo : '/yacy/ui/img/yacy-logo.png', + link : 'http://www.yacy.net', + global : false, + width : 500, + height : 600, position : ['top',30], - theme : 'start', - title : 'YaCy Portal Search' + theme : 'start' }; - $.getScript(yconf.url+'/yacy/ui/js/yacyui-portalsearch.js', function(){}); + $.getScript(yconf.url+'/portalsearch/yacyui-portalsearch.js', function(){}); }); </script> <div id="yacylivesearch"> <form id="ysearch" method="get" accept-charset="UTF-8" action="http://#[ip]#:#[port]#/yacysearch.html"> Live Search <input name="query" id="yquery" class="fancy" type="text" size="15" maxlength="80" value=""/> - <input type="hidden" name="verify" value="true" /> + <input type="hidden" name="verify" value="iffresh" /> <input type="hidden" name="maximumRecords" value="20" /> <input type="hidden" name="resource" value="local" /> <input type="hidden" name="urlmaskfilter" value=".*" /> @@ -52,15 +89,15 @@Configuration options and defaults for 'yconf':
Defaults