new-window.pl 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Copyright (C) 2014 Alex-Daniel Jakimenko <alex.jakimenko@gmail.com>
  2. # Copyright (C) 2008 flipflip
  3. # This program is free software: you can redistribute it and/or modify it under
  4. # the terms of the GNU General Public License as published by the Free Software
  5. # Foundation, either version 3 of the License, or (at your option) any later
  6. # version.
  7. #
  8. # This program is distributed in the hope that it will be useful, but WITHOUT
  9. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  10. # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  11. #
  12. # You should have received a copy of the GNU General Public License along with
  13. # this program. If not, see <http://www.gnu.org/licenses/>.
  14. use strict;
  15. use v5.10;
  16. AddModuleDescription('new-window.pl', 'New Window Links Extension');
  17. our ($q, @MyRules, $FullUrlPattern, $UrlProtocols, $BracketText);
  18. # Opening links in new windows is evil
  19. push(@MyRules, \&NewWindowLink);
  20. sub NewWindowLink {
  21. # compare sub LinkRules in oddmuse.pl
  22. if ($BracketText && m/\G(\[new:$FullUrlPattern\s+([^\]]+?)\])/cg
  23. or m/\G(\[new:$FullUrlPattern\])/cg) {
  24. my ($url, $text) = ($2, $3);
  25. $url =~ /^($UrlProtocols)/;
  26. my $class = "url $1"; # get protocol (http, ftp, ...)
  27. $text = $url unless $text; # use url as link text if text empty
  28. $url = UnquoteHtml($url); # quote special chars
  29. $class .= ' newwindow'; # add newwindow to class
  30. # output link
  31. my $link = $q->a({-href=>$url, -class=>$class, -target=>"_new"}, $text);
  32. return $link;
  33. }
  34. return;
  35. }