Added: jquery/jquery.extlink.d/extlink-black.gif =================================================================== (Binary files differ) Index: jquery/jquery.extlink.d/extlink-black.gif =================================================================== --- jquery/jquery.extlink.d/extlink-black.gif 2007-03-16 18:59:58 UTC (rev 14) +++ jquery/jquery.extlink.d/extlink-black.gif 2007-03-17 07:20:45 UTC (rev 15) Property changes on: jquery/jquery.extlink.d/extlink-black.gif ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Added: jquery/jquery.extlink.d/extlink-blue.gif =================================================================== (Binary files differ) Index: jquery/jquery.extlink.d/extlink-blue.gif =================================================================== --- jquery/jquery.extlink.d/extlink-blue.gif 2007-03-16 18:59:58 UTC (rev 14) +++ jquery/jquery.extlink.d/extlink-blue.gif 2007-03-17 07:20:45 UTC (rev 15) Property changes on: jquery/jquery.extlink.d/extlink-blue.gif ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Added: jquery/jquery.extlink.d/extlink-brown.gif =================================================================== (Binary files differ) Index: jquery/jquery.extlink.d/extlink-brown.gif =================================================================== --- jquery/jquery.extlink.d/extlink-brown.gif 2007-03-16 18:59:58 UTC (rev 14) +++ jquery/jquery.extlink.d/extlink-brown.gif 2007-03-17 07:20:45 UTC (rev 15) Property changes on: jquery/jquery.extlink.d/extlink-brown.gif ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Added: jquery/jquery.extlink.d/extlink-green.gif =================================================================== (Binary files differ) Index: jquery/jquery.extlink.d/extlink-green.gif =================================================================== --- jquery/jquery.extlink.d/extlink-green.gif 2007-03-16 18:59:58 UTC (rev 14) +++ jquery/jquery.extlink.d/extlink-green.gif 2007-03-17 07:20:45 UTC (rev 15) Property changes on: jquery/jquery.extlink.d/extlink-green.gif ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Added: jquery/jquery.extlink.d/extlink-grey.gif =================================================================== (Binary files differ) Index: jquery/jquery.extlink.d/extlink-grey.gif =================================================================== --- jquery/jquery.extlink.d/extlink-grey.gif 2007-03-16 18:59:58 UTC (rev 14) +++ jquery/jquery.extlink.d/extlink-grey.gif 2007-03-17 07:20:45 UTC (rev 15) Property changes on: jquery/jquery.extlink.d/extlink-grey.gif ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Added: jquery/jquery.extlink.d/extlink-red.gif =================================================================== (Binary files differ) Index: jquery/jquery.extlink.d/extlink-red.gif =================================================================== --- jquery/jquery.extlink.d/extlink-red.gif 2007-03-16 18:59:58 UTC (rev 14) +++ jquery/jquery.extlink.d/extlink-red.gif 2007-03-17 07:20:45 UTC (rev 15) Property changes on: jquery/jquery.extlink.d/extlink-red.gif ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Added: jquery/jquery.extlink.d/extlink-white.gif =================================================================== (Binary files differ) Index: jquery/jquery.extlink.d/extlink-white.gif =================================================================== --- jquery/jquery.extlink.d/extlink-white.gif 2007-03-16 18:59:58 UTC (rev 14) +++ jquery/jquery.extlink.d/extlink-white.gif 2007-03-17 07:20:45 UTC (rev 15) Property changes on: jquery/jquery.extlink.d/extlink-white.gif ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Added: jquery/jquery.extlink.d/extlink-yellow.gif =================================================================== (Binary files differ) Index: jquery/jquery.extlink.d/extlink-yellow.gif =================================================================== --- jquery/jquery.extlink.d/extlink-yellow.gif 2007-03-16 18:59:58 UTC (rev 14) +++ jquery/jquery.extlink.d/extlink-yellow.gif 2007-03-17 07:20:45 UTC (rev 15) Property changes on: jquery/jquery.extlink.d/extlink-yellow.gif ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Added: jquery/jquery.extlink.d/extlink.psd =================================================================== (Binary files differ) Index: jquery/jquery.extlink.d/extlink.psd =================================================================== --- jquery/jquery.extlink.d/extlink.psd 2007-03-16 18:59:58 UTC (rev 14) +++ jquery/jquery.extlink.d/extlink.psd 2007-03-17 07:20:45 UTC (rev 15) Property changes on: jquery/jquery.extlink.d/extlink.psd ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Added: jquery/jquery.extlink.html =================================================================== --- jquery/jquery.extlink.html (rev 0) +++ jquery/jquery.extlink.html 2007-03-17 07:20:45 UTC (rev 15) @@ -0,0 +1,22 @@ + + + + jQuery External Link Annotation Plugin Demo + + + + + +

jQuery External Link Annotation Plugin Demo

+ + foo.html + http:bar.html + http://www.example.com + foo.html + http:bar.html + http://www.example.com + + + + Added: jquery/jquery.extlink.js =================================================================== --- jquery/jquery.extlink.js (rev 0) +++ jquery/jquery.extlink.js 2007-03-17 07:20:45 UTC (rev 15) @@ -0,0 +1,24 @@ +/* +** jquery.extlink.js -- jQuery plugin for external link annotation +** Copyright (c) 2007 Ralf S. Engelschall +** Licensed under GPL +** +** $LastChangedDate: $ +** $LastChangedRevision: $ +*/ + +(function($) { + $(document).ready(function () { + var site = String(document.location) + .replace(/^(https?:\/\/[^:\/]+).*$/, "$1"); + $("a").filter(function (i) { + return ($(this).attr("href").match(RegExp("^("+site+"|(https?:)?/)")) != null); + }).after(""); + $("img.extlink") + .css("border", "0px") + .css("padding", "0px 2px 0px 2px") + .css("position", "relative") + .css("bottom", "-1px"); + }); +})(jQuery); +