Slight improvements to URL and email address parsing.
[sw-tools] / perl / SWMan.pm
index 23f0104..b27fca8 100644 (file)
@@ -1,6 +1,6 @@
 # -*-perl-*-
 #
-# $Id: SWMan.pm,v 1.1 1999/07/30 18:46:37 mdw Exp $
+# $Id: SWMan.pm,v 1.2 1999/08/18 17:10:07 mdw Exp $
 #
 # Display and other fiddling of manual pages
 #
@@ -28,6 +28,9 @@
 #----- Revision history -----------------------------------------------------
 #
 # $Log: SWMan.pm,v $
+# Revision 1.2  1999/08/18 17:10:07  mdw
+# Slight improvements to URL and email address parsing.
+#
 # Revision 1.1  1999/07/30 18:46:37  mdw
 # New CGI script for browsing installed software and documentation.
 #
@@ -288,18 +291,18 @@ sub man {
       # --- And email and hypertext references too ---
 
       $l =~ s! ((?:\<[bi]\>)*)         # Leading highlighting
-              ((?:http|ftp)            # A protocol name
-               ://                     # The important and obvious bit
+              ((?:https?|ftp|file|news) # A protocol name
+               :                       # The important and obvious bit
                [^]&)\s]+               # Most characters are allowed
                [^]&).,\s\'\"])         # Don't end on punctuation
               ((?:\</[bi]\>)*)         # Closing tags, optional
-            !<a href="$2">$&</a>!gx;
+            !$1<a href="$2">$&</a>$3!gx;
 
-      $l =~ s! ((?:\<[bi]\>)*)
-               ( [^\s()&;{}<>,.\`\"] [^\s()&;{}<>\`\"]* \@
-                 [^\s()&;{}<>\'\"]* [^\s()&;{}<>.,\'\"])
+      $l =~ s! ((?:\<[bi]\>)*(?:\bmailto:)?)
+               ( [^\s()&;:{}<>,.\`\"] [^\s()&;:{}<>\`\"]* \@
+                 [^\s()&;:{}<>\'\"]* [^\s()&;:{}<>.,\'\"])
                ((?:\</[bi]\>)*)
-             !<a href="mailto:$2">$&</a>!gx;
+             !$1<a href="mailto:$2">$&</a>$3!gx;
 
       # --- Done! ---