<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
< html xmlns = "http://www.w3.org/1999/xhtml" >
< head >
< meta http-equiv = "Content-Type" content = "text/html; charset=utf-8" / >
< / head >
< body >
< script src = "http://localhost:8080/yacy/ui/js/jquery-1.3.1.min.js" type = "text/javascript" > < / script >
< script >
$(document).ready(function() {
yconf = {
url : 'http://localhost:8080',
logo : '/yacy/ui/img/yacy-logo.png',
link : 'http://www.yacy.net',
global : false,
width : 500,
height : 620,
position : ['top',30],
theme : 'start',
title : 'YaCy Portal Search'
};
$.getScript(yconf.url+'/yacy/ui/js/yacyui-portalsearch.js', function(){});
});
< / script >
< div id = "yacylivesearch" >
< h3 > YaCy Portal Search:< / h3 >
< form id = "ysearch" method = "get" accept-charset = "UTF-8" action = "http://localhost:8080/yacysearch.html" >
Live Search < input name = "query" id = "yquery" class = "fancy" type = "text" size = "15" maxlength = "80" value = "" / >
< input type = "hidden" name = "verify" value = "false" / >
< input type = "hidden" name = "maximumRecords" value = "10" / >
< input type = "hidden" name = "resource" value = "local" / >
< input type = "hidden" name = "urlmaskfilter" value = ".*" / >
< input type = "hidden" name = "prefermaskfilter" value = "" / >
< input type = "hidden" name = "former" value = "" / >
< input type = "hidden" name = "display" value = "2" / >
< input type = "submit" name = "Enter" value = "Search" / >
< / form >
< / div >
< h4 > Code Snippet:< / h4 >
< pre >
< script src="http://localhost:8080/yacy/ui/js/jquery-1.3.1.min.js" type="text/javascript"> < /script>
< script>
$(document).ready(function() {
yconf = {
url : 'http://localhost:8080',
logo : '/yacy/ui/img/yacy-logo.png',
link : 'http://www.yacy.net',
global : false,
width : 500,
height : 620,
position : ['top',30],
theme : 'start',
title : 'YaCy Portal Search'
};
$.getScript(yconf.url+'/yacy/ui/js/yacyui-portalsearch.js', function(){});
});
< /script>
< div id="yacylivesearch">
< form id="ysearch" method="get" accept-charset="UTF-8" action="http://localhost:8080/yacysearch.html">
Live Search < input name="query" id="yquery" class="fancy" type="text" size="15" maxlength="80" value=""/>
< input type="hidden" name="verify" value="false" />
< input type="hidden" name="maximumRecords" value="10" />
< input type="hidden" name="resource" value="local" />
< input type="hidden" name="urlmaskfilter" value=".*" />
< input type="hidden" name="prefermaskfilter" value="" />
< input type="hidden" name="former" value="" />
< input type="hidden" name="display" value="2" />
< input type="submit" name="Enter" value="Search" />
< /form>
< /div>
< / pre >
< h4 > Configuration options and defaults for 'yconf':< / h4 >
< h5 > Defaults< / h5 >
< pre >
url : 'is a mandatory property - no default',
global : false,
theme : 'start',
title : 'YaCy P2P Web Search',
logo : '/yacy/ui/img/yacy-logo.png',
link : 'http://www.yacy.net',
width : 420,
height : 500,
position : ['top',50],
modal : false,
resizable: true,
show : '',
hide : ''
< / pre >
< h5 > Size and position (width | height | position)< / h5 >
Specifies where the dialog should be displayed. Possible values for position: 'center', 'left', 'right', 'top', 'bottom', or an array containing a coordinate pair (in pixel offset from top left of viewport) or the possible string values (e.g. ['right','top'] for top right corner).
< h5 > Animation effects (show | hide)< / h5 >
The effect to be used. Possible values: 'blind', 'clip', 'drop', 'explode', 'fold', 'puff', 'slide', 'scale', 'size', 'pulsate'.
< h5 > Interaction (modal | resizable)< / h5 >
If modal is set to true, the dialog will have modal behavior; other items on the page will be disabled (i.e. cannot be interacted with). Modal dialogs create an overlay below the dialog but above other page elements.
< p / >
If resizable is set to true, the dialog will be resizeable.
< h5 > Themes< / h5 >
< p > You can < a href = "http://jquery-ui.googlecode.com/files/jquery-ui-themes-1.7.zip" target = "_blank" >
download< / a > ready made themes or < a href = "http://jqueryui.com/themeroller/" target = "_blank" > create< / a >
your own custom theme. < br / > Themes are installed into: DATA/HTDOCS/yacy/ui/css/themes/< / p >
< h4 > Bookmarklet:< / h4 >
< p >
< a href = "javascript:q = " " + ( window . getSelection ? window . getSelection ( ) : document . getSelection ? document . getSelection ( ) : document . selection . createRange ( ) . text ) ; if ( ! q ) q = prompt("You didn & # 39 ; t select any text . Enter a search phrase: " , " " ) ; if ( q ! = null ) location = "http://localhost:8080/yacysearch.html?display=2&verify=true&query=" + escape ( q ) . replace ( / / g , " + " ) ; void 0 " name = "yacy" > YaCy< / a >
< / p >
< / body >
< / html >