mirror of
https://github.com/yacy/yacy_search_server.git
synced 2025-07-22 09:14:38 -04:00
- fix for display problem for new blog news banner
- created 'real' ip-based links instead of '.yacy'-links git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2103 6c8d7289-2bf4-0310-a012-ef5d649a1542
This commit is contained in:
htroot
@ -71,8 +71,8 @@
|
||||
<a href="ViewProfile.html?hash=#[hash]#" class="small" title="View profile of peer #[fullname]#">p</a>
|
||||
<a href="http://#[fullname]#.yacy/Wiki.html" class="small" title="Read and edit wiki on peer #[fullname]#">w</a>
|
||||
#(updatedProfile)#::<a href="ViewProfile.html?hash=#[hash]#"><img border="0" src="/env/grafics/profile.gif" align="bottom"></a>#(/updatedProfile)#
|
||||
#(updatedWikiPage)#::<a href="http://#[name]#.yacy/Wiki.html?page=#[page]#"><img border="0" src="/env/grafics/wiki.gif" align="bottom"></a>#(/updatedWikiPage)#
|
||||
#(updatedBlog)#::<a href="http://#[name]#.yacy/Blog.html?page=#[page]#"><img border="0" src="/env/grafics/blog.gif" align="bottom"></a>#(/updatedBlog)#
|
||||
#(updatedWikiPage)#::<a href="http://#[address]#/Wiki.html?page=#[page]#" title="http://#[name]#.yacy/Wiki.html?page=#[page]#"><img border="0" src="/env/grafics/wiki.gif" align="bottom"></a>#(/updatedWikiPage)#
|
||||
#(updatedBlog)#::<a href="http://#[address]#/Blog.html?page=#[page]#" title="http://#[name]#.yacy/Blog.html?page=#[page]#"><img border="0" src="/env/grafics/blog.gif" align="bottom"></a>#(/updatedBlog)#
|
||||
#(isCrawling)#::<a href="#[page]#"><img border="0" src="/env/grafics/crawl.gif" align="bottom"></a>#(/isCrawling)#
|
||||
</td>
|
||||
<td class="small"><a href="http://www.#[fullname]#.yacy" class="small">#[shortname]#</a></td>
|
||||
|
@ -319,13 +319,17 @@ public class Network {
|
||||
if ((wikiPage = (String) updatedWiki.get(seed.hash)) == null) {
|
||||
prop.put(STR_TABLE_LIST + conCount + "_updatedWikiPage", 0);
|
||||
} else {
|
||||
prop.put(STR_TABLE_LIST + conCount + "_updatedWikiPage", 1);
|
||||
prop.put(STR_TABLE_LIST + conCount + "_updatedWikiPage_page", wikiPage);
|
||||
prop.put(STR_TABLE_LIST + conCount + "_updatedWikiPage_address", seed.getAddress());
|
||||
prop.put(STR_TABLE_LIST + conCount + "_updatedWikiPage_name", seed.get(yacySeed.NAME, "deadlink"));
|
||||
}
|
||||
if ((blogPage = (String) updatedBlog.get(seed.hash)) == null) {
|
||||
prop.put(STR_TABLE_LIST + conCount + "_updatedBlog", 0);
|
||||
} else {
|
||||
prop.put(STR_TABLE_LIST + conCount + "_updatedBlog", 1);
|
||||
prop.put(STR_TABLE_LIST + conCount + "_updatedBlog_page", blogPage);
|
||||
prop.put(STR_TABLE_LIST + conCount + "_updatedBlog_address", seed.getAddress());
|
||||
prop.put(STR_TABLE_LIST + conCount + "_updatedBlog_name", seed.get(yacySeed.NAME, "deadlink"));
|
||||
}
|
||||
try {
|
||||
|
Reference in New Issue
Block a user