author | Michael Krelin <hacker@klever.net> | 2008-03-01 17:26:13 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2008-03-01 17:26:13 (UTC) |
commit | b2e587331d0020fa2bf35e5a5ada249020858e14 (patch) (unidiff) | |
tree | 1b6b490275bb54b6f579bad3cf6592a1677aa0a8 /src/components/xriProtocolHandler.js | |
parent | fe00dd0be8fd88dc8179eed7a38663f07c1288a7 (diff) | |
download | foxri-master.zip foxri-master.tar.gz foxri-master.tar.bz2 |
Signed-off-by: Michael Krelin <hacker@klever.net>
Diffstat (limited to 'src/components/xriProtocolHandler.js') (more/less context) (ignore whitespace changes)
-rwxr-xr-x | src/components/xriProtocolHandler.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/xriProtocolHandler.js b/src/components/xriProtocolHandler.js index 3d27784..2e09f64 100755 --- a/src/components/xriProtocolHandler.js +++ b/src/components/xriProtocolHandler.js | |||
@@ -284,24 +284,26 @@ function renderService(srv, doc, qxri) | |||
284 | } | 284 | } |
285 | else if (uriParts[1] == 'aim') { | 285 | else if (uriParts[1] == 'aim') { |
286 | uriParts = uriParts[2].match('^(.*)\\?.*screenname=([^&]*)', 'i'); | 286 | uriParts = uriParts[2].match('^(.*)\\?.*screenname=([^&]*)', 'i'); |
287 | if (uriParts) { | 287 | if (uriParts) { |
288 | linkContent = "<img src=\"chrome://foxri/content/aim_logo.gif\" alt=\"Chat with " + uriParts[2] + "\"/> Chat with " + uriParts[2]; | 288 | linkContent = "<img src=\"chrome://foxri/content/aim_logo.gif\" alt=\"Chat with " + uriParts[2] + "\"/> Chat with " + uriParts[2]; |
289 | } | 289 | } |
290 | } | 290 | } |
291 | 291 | ||
292 | var linkhref = u.nodeValue; | 292 | var linkhref = u.nodeValue; |
293 | var xrap = uu.getAttribute('append'); | 293 | var xrap = uu.getAttribute('append'); |
294 | if(xrap=='qxri') { | 294 | if(xrap=='qxri') { |
295 | linkhref += qxri.replace(/^xri:\/\//,''); | 295 | linkhref += qxri.replace(/^xri:\/\//,''); |
296 | }else if(xrap=='authority') { | ||
297 | linkhref += qxri.replace(/^xri:\/\//,'').replace(/\//.*,''); | ||
296 | }else if(xrap!=null){ | 298 | }else if(xrap!=null){ |
297 | dump("Unhandled @append: "+xrap+"\n"); | 299 | dump("Unhandled @append: "+xrap+"\n"); |
298 | } | 300 | } |
299 | html_uris += "<a href=\""+linkhref+"\">" | 301 | html_uris += "<a href=\""+linkhref+"\">" |
300 | + linkContent + "</a>"; | 302 | + linkContent + "</a>"; |
301 | html_uris += "</div>"; | 303 | html_uris += "</div>"; |
302 | } | 304 | } |
303 | 305 | ||
304 | var html = "<div class=\"service srv_" + getServiceClass(knownServiceType) + "\">\n"; | 306 | var html = "<div class=\"service srv_" + getServiceClass(knownServiceType) + "\">\n"; |
305 | html += html_types; | 307 | html += html_types; |
306 | html += html_paths; | 308 | html += html_paths; |
307 | html += html_mediatypes; | 309 | html += html_mediatypes; |