termcol: numeric module version requirements
[sheet.git] / source.plp
index 469f49e7250344926b12592ab535e7d154cf1077..7facf51a885f7662c1126a514df9f33696662822 100644 (file)
@@ -28,7 +28,7 @@ if ($source =~ s{(?<=\Q.inc.pl\E)/jsonp?$}{} and -r $source) {
 
 Html({
        title => "$source source code",
-       version => 'v1.1',
+       version => '1.1',
        description => !$source ? 'Index of source files for this site.' : [
                "Source code of the $source file at this site,",
                "with syntax highlighted and references linked."
@@ -91,9 +91,16 @@ else {
                        print "<$tag$arg class=\"sy-\l$type\">" if $tag;
                        if (!$type || $type eq 'Constant'
                        and $contents =~ s{^(['"]?)(/?[a-z0-9_.]+\.(?:plp?|css|js))(?=\1$)}{}) {
+                               # link other page sources, stylesheets, and javascript
                                printf '%s<a href="%s">%s</a>', $1, "/source/$2", $2;
                        }
                        if (!$type and $contents =~ s/^(\s*)([A-Z]\w+(?:::\w+)+)(?![^;\s])//) {
+                               # link perl module names (Xx::Xx...)
+                               printf '%s<a href="%s">%s</a>', $1, "/source/$2", $2;
+                       }
+                       if ($type && $type eq 'Comment'
+                       and $contents =~ s{^(.*? by )(tools/\S+)}{}) {
+                               # link generator scripts (by tools/...)
                                printf '%s<a href="%s">%s</a>', $1, "/source/$2", $2;
                        }
                        print Text::VimColor::_xml_escape($contents);