|
|
|
<!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',
|
|
|
|
global: true,
|
|
|
|
theme : 'start',
|
|
|
|
title : 'YaCy Portal Search'
|
|
|
|
};
|
|
|
|
$.getScript(yconf.url+'/yacy/ui/js/yacyui-portalsearch.js', function(){});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<h3>YaCy Portal Search:</h3>
|
|
|
|
<div id="yacy">
|
|
|
|
<form id="ysearch" method="get" accept-charset="UTF-8" action="http://localhost:8080/yacysearch.html">
|
|
|
|
<input name="search" id="yquery" type="text" size="15" maxlength="80" value=""/>
|
|
|
|
<input type="hidden" name="verify" value="true" />
|
|
|
|
<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="Suchen" />
|
|
|
|
</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',
|
|
|
|
global : true
|
|
|
|
theme : 'start',
|
|
|
|
title : 'YaCy Portal Search'
|
|
|
|
};
|
|
|
|
$.getScript(yconf.url+'/yacy/ui/js/yacyui-portalsearch.js', function(){});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<div id="yacy">
|
|
|
|
<form id="ysearch" method="get" accept-charset="UTF-8" action="http://localhost:8080/yacysearch.html">
|
|
|
|
<input name="query" id="yquery" type="text" size="15" maxlength="80" value=""/>
|
|
|
|
<input type="hidden" name="verify" value="true" />
|
|
|
|
<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="Suchen" />
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</pre>
|
|
|
|
<h4>Configuration options and defaults for 'yconf':</h4>
|
|
|
|
<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>
|
|
|
|
<h4>Themes:</h4>
|
|
|
|
<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'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>
|
|
|
|
|