JsTemplate/Link.js
[gnome.introspection-doc-generator] / JsTemplate / Link.js
index 3868933..3f1b391 100644 (file)
@@ -16,16 +16,33 @@ Link = XObject.define(
     /*
     * constructor
     */ 
-    function () {
+    function (opts) {
+        XObject.extend(this,opts);
         
     }, 
     Object,
     {
         
+         /**
+         * url {String} url for link..
+         */
+        url: "",
+        /**
+         * text {String} text to show on link.
+         */
+        
+        text : "",
+        
+        /**
+         * alias {String} not sure?
+         */
         alias : "",
+        /**
+         * src {String} not sure?
+         */
         src : "",
         file : "",
-        text : "",
+        
         innerName : "",
         classLink : false,
         targetName : "",
@@ -69,7 +86,7 @@ Link = XObject.define(
             var thisLink = this;
 
             if (this.alias) {
-                linkString = this.alias.replace(/(^|[^a-z$0-9_#.:-])([|a-z$0-9_#.:-]+)($|[^a-z$0-9_#.:-])/i,
+                return  this.alias.replace(/(^|[^a-z$0-9_#.:-])([|a-z$0-9_#.:-]+)($|[^a-z$0-9_#.:-])/i,
                     function(match, prematch, symbolName, postmatch) {
                         var symbolNames = symbolName.split("|");
                         var links = [];
@@ -81,14 +98,16 @@ Link = XObject.define(
                     }
                 );
             }
-            else if (this.src) {
-                linkString = thisLink._makeSrcLink(this.src);
+            if (this.url) {
+                return thisLink._makeLink(this.url);
+            }
+            if (this.src) {
+                return thisLink._makeSrcLink(this.src);
             }
-            else if (this.file) {
-                linkString = thisLink._makeFileLink(this.file);
+            if (this.file) {
+                return thisLink._makeFileLink(this.file);
             }
 
-            return linkString;
         },