-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 | |||
@@ -248,96 +248,98 @@ function renderService(srv, doc, qxri) | |||
248 | continue; | 248 | continue; |
249 | 249 | ||
250 | var srvType = guessServiceTypeByURI(u.nodeValue); | 250 | var srvType = guessServiceTypeByURI(u.nodeValue); |
251 | if (!knownServiceType) { | 251 | if (!knownServiceType) { |
252 | knownServiceType = srvType; | 252 | knownServiceType = srvType; |
253 | } | 253 | } |
254 | 254 | ||
255 | html_uris += "<div class=\"" + getServiceClass(srvType) + "\">"; | 255 | html_uris += "<div class=\"" + getServiceClass(srvType) + "\">"; |
256 | 256 | ||
257 | var linkContent = u.nodeValue; | 257 | var linkContent = u.nodeValue; |
258 | var uriParts = u.nodeValue.match('^(.*):(.*)$'); | 258 | var uriParts = u.nodeValue.match('^(.*):(.*)$'); |
259 | if (!uriParts) | 259 | if (!uriParts) |
260 | continue; | 260 | continue; |
261 | 261 | ||
262 | if (uriParts[1] == 'data') { | 262 | if (uriParts[1] == 'data') { |
263 | uriParts = uriParts[2].match('^(.*/.*),(.*)'); | 263 | uriParts = uriParts[2].match('^(.*/.*),(.*)'); |
264 | if (uriParts && uriParts[1].match('^image/', 'i')) { | 264 | if (uriParts && uriParts[1].match('^image/', 'i')) { |
265 | linkContent = "<img src=\"" + u.nodeValue + "\"/>"; | 265 | linkContent = "<img src=\"" + u.nodeValue + "\"/>"; |
266 | } | 266 | } |
267 | else if (uriParts) { | 267 | else if (uriParts) { |
268 | linkContent = uriParts[1] + " data"; | 268 | linkContent = uriParts[1] + " data"; |
269 | } | 269 | } |
270 | } | 270 | } |
271 | else if (uriParts[1] == 'skype') { | 271 | else if (uriParts[1] == 'skype') { |
272 | uriParts = uriParts[2].match('^(.*)\\?(.*)'); | 272 | uriParts = uriParts[2].match('^(.*)\\?(.*)'); |
273 | if (uriParts) { | 273 | if (uriParts) { |
274 | if (uriParts[2] == "call") { | 274 | if (uriParts[2] == "call") { |
275 | linkContent = "<img src=\"chrome://foxri/content/skype_call_large.png\" alt=\"Call " + uriParts[1] + "\"/>"; | 275 | linkContent = "<img src=\"chrome://foxri/content/skype_call_large.png\" alt=\"Call " + uriParts[1] + "\"/>"; |
276 | } | 276 | } |
277 | else if (uriParts[2] == "chat") { | 277 | else if (uriParts[2] == "chat") { |
278 | linkContent = "<img src=\"chrome://foxri/content/skype_chat_large.png\" alt=\"Chat with " + uriParts[1] + "\"/>"; | 278 | linkContent = "<img src=\"chrome://foxri/content/skype_chat_large.png\" alt=\"Chat with " + uriParts[1] + "\"/>"; |
279 | } | 279 | } |
280 | else if (uriParts[2] == "add") { | 280 | else if (uriParts[2] == "add") { |
281 | linkContent = "<img src=\"chrome://foxri/content/skype_add_large.png\" alt=\"Add " + uriParts[1] + " to Skype\"/>"; | 281 | linkContent = "<img src=\"chrome://foxri/content/skype_add_large.png\" alt=\"Add " + uriParts[1] + " to Skype\"/>"; |
282 | } | 282 | } |
283 | } | 283 | } |
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; |
308 | if (html_uris) { | 310 | if (html_uris) { |
309 | html += "<strong>URI(s):</strong><br/>\n"; | 311 | html += "<strong>URI(s):</strong><br/>\n"; |
310 | html += html_uris; | 312 | html += html_uris; |
311 | } | 313 | } |
312 | html += "</div>"; | 314 | html += "</div>"; |
313 | 315 | ||
314 | return html; | 316 | return html; |
315 | } | 317 | } |
316 | 318 | ||
317 | 319 | ||
318 | 320 | ||
319 | function isKnownServiceType(type) | 321 | function isKnownServiceType(type) |
320 | { | 322 | { |
321 | if (type.toLowerCase() in SERVICE_CLASSES) { | 323 | if (type.toLowerCase() in SERVICE_CLASSES) { |
322 | return true; | 324 | return true; |
323 | } | 325 | } |
324 | return false; | 326 | return false; |
325 | } | 327 | } |
326 | 328 | ||
327 | function getServiceClass(type) | 329 | function getServiceClass(type) |
328 | { | 330 | { |
329 | if (type && isKnownServiceType(type)) { | 331 | if (type && isKnownServiceType(type)) { |
330 | return SERVICE_CLASSES[type.toLowerCase()]; | 332 | return SERVICE_CLASSES[type.toLowerCase()]; |
331 | } | 333 | } |
332 | return type; | 334 | return type; |
333 | } | 335 | } |
334 | 336 | ||
335 | 337 | ||
336 | function guessServiceTypeByURI(uri) | 338 | function guessServiceTypeByURI(uri) |
337 | { | 339 | { |
338 | if (uri == null || uri == "") { | 340 | if (uri == null || uri == "") { |
339 | return "unknown"; | 341 | return "unknown"; |
340 | } | 342 | } |
341 | if (uri.match(/^https?:/i)) { | 343 | if (uri.match(/^https?:/i)) { |
342 | return "www"; | 344 | return "www"; |
343 | } | 345 | } |