diff --git a/htroot/yacy/ui/css/base.css b/htroot/yacy/ui/css/base.css
index 29ffc27fb..0f2d8d227 100644
--- a/htroot/yacy/ui/css/base.css
+++ b/htroot/yacy/ui/css/base.css
@@ -64,7 +64,7 @@ div.top {
color: #999999;
}
.small {
- font: normal Arial, Helvetica, sans-serif;
+ font: normal small Arial, Helvetica, sans-serif;
font-size: 9px;
}
.normal {
@@ -250,12 +250,12 @@ div.searchresults.hidden {
margin-bottom:0.6em;
margin-left:22px;
}
-.searchresults .url a,. searchselect .url a {
+.searchresults .url a, .searchselect .url a {
color:#20A020;
text-decoration:none;
}
img.favicon{
- width: 16px;pagesize
+ width: 16px;
height: 16px;
vertical-align: middle;
margin-left: -20px;
diff --git a/htroot/yacy/ui/welcome.html b/htroot/yacy/ui/welcome.html
index 2ecbc4229..233bac83b 100644
--- a/htroot/yacy/ui/welcome.html
+++ b/htroot/yacy/ui/welcome.html
@@ -10,16 +10,18 @@
apfelmaennchen
Change Log
- - 19-04-2007: new double-accordion sidebar menu is up and running (I am open for suggestions on how to populate the menus).
- - 19-04-2007: search results are now retrieved from yacysearch.rss (XML) and does no longer need a seperate servlet
+ - 10-05-2008: bookmarks are now retrieved from /xml/bookmarks/xbel/xbel.xml and do no longer require a seperate servlet
+ - 19-04-2008: new double-accordion sidebar menu is up and running (I am open for suggestions on how to populate the menus).
+ - 19-04-2008: search results are now retrieved from yacysearch.rss (XML) and do no longer need a seperate servlet
Bug Tracker
- Please report bugs in the official YaCy-Forum - thanks!
- - 19-04-2007: if you open more than one search tab, only the first result item is shown. I would be greatful for any hint...
- - 19-04-2007: resource types 'sciencenet' and 'bookmarks' doen't work yet. For 'sciencenet' we have to solve the Ajax cross domain restriction.
- - 19-04-2007: currently only contentdom="text" is working, all others will fail...
- - 19-04-2007: language selection is not yet supported
+ - 10-05-2008: there is an issue with Firefox 3.0b5 and the jQuery XML parsing of the search result (one symptom is the broken pagination)
+ - 19-04-2008: if you open more than one search tab in Firefox 2.x or Safari, only the first result item is shown. I would be greatful for any hint...
+ - 19-04-2008: resource types 'sciencenet' and 'bookmarks' doen't work yet. For 'sciencenet' we have to solve the Ajax cross domain restriction.
+ - 19-04-2008: currently only contentdom="text" is working, all others will fail...
+ - 19-04-2008: language selection is not yet supported
\ No newline at end of file
diff --git a/htroot/yacy/ui/ymarks.html b/htroot/yacy/ui/ymarks.html
index eda138cef..9ccc0ac54 100644
--- a/htroot/yacy/ui/ymarks.html
+++ b/htroot/yacy/ui/ymarks.html
@@ -1,13 +1,32 @@
@@ -32,36 +51,7 @@
|
-
- #{bookmarks}#
-
-
-
- |
-
- #(public)#
-
- ::
-
- #(/public)#
- |
-
- #[title]#
- #[description]#
- #[link]#
- |
- #{tags}# #[tag]#,#{/tags}# |
-
- #[date]#
- |
-
-
-
-
-
- |
-
- #{/bookmarks}#
+
diff --git a/htroot/yacy/ui/ysearch.html b/htroot/yacy/ui/ysearch.html
index eb2986cc2..028158c38 100644
--- a/htroot/yacy/ui/ysearch.html
+++ b/htroot/yacy/ui/ysearch.html
@@ -2,15 +2,17 @@
//').html('[loading...]').appendTo(tabid);
$.ajax({
type: "GET",
url: query,
dataType: "xml",
success: function(xml) {
var totalResults = parseInt($(xml).find('totalResults').text().replace(".",""));
- var startIndex = parseInt($(xml).find('startIndex').text());
+ var startIndex = parseInt($(xml).find('startIndex').text());
var itemsPerPage = parseInt($(xml).find('itemsPerPage').text());
- var query = $(xml).find('Query').attr('searchTerms');
+ var query = $(xml).find('Query').attr('searchTerms');
var endIndex = startIndex+itemsPerPage;
if (endIndex > totalResults) {
endIndex = totalResults;
@@ -21,8 +23,8 @@
var currentPage = ((startIndex-1)/itemsPerPage);
} else {
var currentPage = 0;
- }
- $("#pagination").pagination(totalResults, {
+ }
+ $(pagination).pagination(totalResults, {
current_page:currentPage,
items_per_page:itemsPerPage,
num_edge_entries:1,
@@ -69,5 +71,4 @@
}); //close $(
//]]>
-