Skip to content

Commit

Permalink
UTF-8
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4394 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
apfelmaennchen committed Jan 24, 2008
1 parent 7b40075 commit d59f9e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions htroot/xml/bookmarks/posts/all.java
Expand Up @@ -79,12 +79,12 @@ public static serverObjects respond(httpHeader header, serverObjects post, serve
while(it.hasNext()){
bookmark=switchboard.bookmarksDB.getBookmark((String) it.next());
prop.put("posts_"+count+"_url", bookmark.getUrl());
prop.putHTML("posts_"+count+"_title", bookmark.getTitle());
prop.putHTML("posts_"+count+"_description", bookmark.getDescription());
prop.put("posts_"+count+"_title", bookmark.getTitle());
prop.put("posts_"+count+"_description", bookmark.getDescription());
prop.put("posts_"+count+"_md5", serverCodings.encodeMD5Hex(bookmark.getUrl()));
date=new Date(bookmark.getTimeStamp());
prop.put("posts_"+count+"_time", serverDate.formatISO8601(date));
prop.putHTML("posts_"+count+"_tags", bookmark.getTagsString().replaceAll(","," "));
prop.put("posts_"+count+"_tags", bookmark.getTagsString().replaceAll(","," "));

// additional XML tags
prop.put("posts_"+count+"_isExtended",extendedXML ? "1" : "0");
Expand Down

0 comments on commit d59f9e0

Please sign in to comment.