Skip to content

Commit

Permalink
Fixed one spelling mistake, limited input for ICQ numbers to 9 digits…
Browse files Browse the repository at this point in the history
… and made ICQ number in peer profiles clickable.

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@85 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
rramthun committed May 7, 2005
1 parent 1dad015 commit 3f85978
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion htroot/EditProfile_p.html
Expand Up @@ -39,7 +39,7 @@ <h2>Your Personal Profile</h2>

<tr>
<td>ICQ</td>
<td><input type="text" name="icq" value="#[icq]#" style="width:100%"></td>
<td><input type="text" name="icq" maxlength="9" value="#[icq]#" style="width:100%"></td>
</tr>
<tr>
<td>Jabber</td>
Expand Down
2 changes: 1 addition & 1 deletion htroot/ViewProfile.html
Expand Up @@ -41,7 +41,7 @@ <h2>Remote Peer Profile:</h2>

<tr>
<td>ICQ</td>
<td>#(icq)#&nbsp;::<img src=http://web.icq.com/whitepages/online?icq=#[value]#&img=5">#[value]##(/icq)#</td>
<td>#(icq)#&nbsp;::<img src=http://web.icq.com/whitepages/online?icq=#[value]#&img=5"><a href="http://wwp.icq.com/scripts/search.dll?to=#[value]#">#[value]#</a>#(/icq)#</td>
</tr>
<tr>
<td>Jabber</td>
Expand Down
2 changes: 1 addition & 1 deletion source/de/anomic/plasma/plasmaSwitchboard.java
Expand Up @@ -838,7 +838,7 @@ private void processLocalCrawling(plasmaCrawlNURL.entry urlEntry, plasmaCrawlPro
return;
}
cacheLoader.loadParallel(urlEntry.url(), urlEntry.referrerHash(), initiator, urlEntry.depth(), profile);
log.logInfo("LOCALCRAWL[" + noticeURL.localStackSize() + ", " + noticeURL.remoteStackSize() + "]: enqueed for load " + urlEntry.url());
log.logInfo("LOCALCRAWL[" + noticeURL.localStackSize() + ", " + noticeURL.remoteStackSize() + "]: enqueued for load " + urlEntry.url());
}

private boolean processGlobalCrawling(plasmaCrawlNURL.entry urlEntry) {
Expand Down

0 comments on commit 3f85978

Please sign in to comment.