|
|
|
@ -49,12 +49,14 @@ $(document).ready(function() {
|
|
|
|
|
.attr({type:'text/css', href: style5, rel:'stylesheet', media:'screen'})
|
|
|
|
|
.appendTo(head);
|
|
|
|
|
|
|
|
|
|
var script0 = yconf.url + '/yacy/ui/js/jquery.dimensions.js';
|
|
|
|
|
var script1 = yconf.url + '/yacy/ui/js/jquery.query.js';
|
|
|
|
|
var script2 = yconf.url + '/yacy/ui/js/jquery.form.js';
|
|
|
|
|
var script3 = yconf.url + '/yacy/ui/js/jquery.field.min.js';
|
|
|
|
|
var script4 = yconf.url + '/yacy/ui/js/jquery-faviconize-1.0.js';
|
|
|
|
|
var script5 = yconf.url + '/yacy/ui/js/jquery.ui.all.min.js';
|
|
|
|
|
|
|
|
|
|
$.getScript(script0, function(){});
|
|
|
|
|
$.getScript(script1, function(){});
|
|
|
|
|
$.getScript(script2, function(){});
|
|
|
|
|
$.getScript(script3, function(){});
|
|
|
|
@ -79,6 +81,9 @@ $(document).ready(function() {
|
|
|
|
|
$("#yquery").setValue('');
|
|
|
|
|
},
|
|
|
|
|
buttons: {
|
|
|
|
|
'>': function() {
|
|
|
|
|
$("#yside").dialog('open');
|
|
|
|
|
},
|
|
|
|
|
Next: function() {
|
|
|
|
|
startRecord = startRecord + maximumRecords;
|
|
|
|
|
$('#ysearch').trigger('submit');
|
|
|
|
@ -88,9 +93,48 @@ $(document).ready(function() {
|
|
|
|
|
if(startRecord < 0) startRecord = 0;
|
|
|
|
|
$('#ysearch').trigger('submit');
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
drag: function(event, ui) {
|
|
|
|
|
var position = $(".ui-dialog").position();
|
|
|
|
|
$("#yside").dialog('option', 'position', [position.left+yconf.width+5,position.top+32]);
|
|
|
|
|
},
|
|
|
|
|
dragStop: function(event, ui) {
|
|
|
|
|
var position = $(".ui-dialog").position();
|
|
|
|
|
$("#yside").dialog('option', 'position', [position.left+yconf.width+5,position.top+32]);
|
|
|
|
|
},
|
|
|
|
|
close: function(event, ui) {
|
|
|
|
|
$("#yside").dialog('destroy');
|
|
|
|
|
$('#yside').remove();
|
|
|
|
|
},
|
|
|
|
|
open: function(event, ui) {
|
|
|
|
|
$('<div id="yside" style="padding-left:0px; margin-left:-10px;"><ul><li>text</li><li>text</li><li>text</li><li>text</li><li>text</li><li>text</li><li>text</li></ul></div>').insertAfter(".ui-dialog-content");
|
|
|
|
|
var position = $(".ui-dialog").position();
|
|
|
|
|
$("#yside").dialog({
|
|
|
|
|
title: 'Navigation',
|
|
|
|
|
autoOpen: false,
|
|
|
|
|
draggable: false,
|
|
|
|
|
resizable: false,
|
|
|
|
|
width: 220,
|
|
|
|
|
height: yconf.height-85,
|
|
|
|
|
minHeight: yconf.height-85,
|
|
|
|
|
show: 'slide',
|
|
|
|
|
hide: 'drop',
|
|
|
|
|
position : [position.left+yconf.width+5,position.top+32],
|
|
|
|
|
open: function(event, ui) {
|
|
|
|
|
$('div.ui-widget-shadow').remove();
|
|
|
|
|
},
|
|
|
|
|
buttons: {
|
|
|
|
|
'<': function() {
|
|
|
|
|
$("#yside").dialog('close');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
$('.ui-widget-shadow').remove();
|
|
|
|
|
$('div[aria-labelledby="ui-dialog-title-yside"] div.ui-dialog-titlebar').remove();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#ysearch').keyup(function(e) {
|
|
|
|
|
if(e.which == 27) { // ESC
|
|
|
|
|
$("#ypopup").dialog('close');
|
|
|
|
@ -149,7 +193,7 @@ function yacysearch(global) {
|
|
|
|
|
else var result = 'local';
|
|
|
|
|
var ylogo = "<div class='ybpane'><a href='"+yconf.link+"' target='_blank'><img src='"+yconf.logo+"' alt='"+yconf.logo+"' title='"+yconf.logo+"' /></a></div>";
|
|
|
|
|
var yresult = "<div class='ybpane'><em>Displaying result "+start+" to "+end+"<br/> of "+total+" "+result+" results.</em></div>";
|
|
|
|
|
$("div .ui-dialog-buttonpane").prepend(ylogo+yresult);
|
|
|
|
|
$('div[aria-labelledby="ui-dialog-title-ypopup"] div.ui-dialog-buttonpane').prepend(ylogo+yresult);
|
|
|
|
|
|
|
|
|
|
$.each (
|
|
|
|
|
data.channels[0].items,
|
|
|
|
|