wanted.pl 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. # Copyright (C) 2006 Alex Schroeder <alex@emacswiki.org>
  2. #
  3. # This program is free software; you can redistribute it and/or modify
  4. # it under the terms of the GNU General Public License as published by
  5. # the Free Software Foundation; either version 2 of the License, or
  6. # (at your option) any later version.
  7. #
  8. # This program is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. # GNU General Public License for more details.
  12. #
  13. # You should have received a copy of the GNU General Public License
  14. # along with this program; if not, write to the
  15. # Free Software Foundation, Inc.
  16. # 59 Temple Place, Suite 330
  17. # Boston, MA 02111-1307 USA
  18. use strict;
  19. use v5.10;
  20. our ($WantedPageName, $WantedPageNameFilter, $WantedPageReferrerFilter);
  21. AddModuleDescription('wanted.pl', 'Wanted Pages Extension');
  22. our ($q, %Action, %IndexHash, @MyAdminCode);
  23. push(@MyAdminCode, \&WantedAction);
  24. sub WantedAction {
  25. my ($id, $menuref, $restref) = @_;
  26. push(@$menuref, ScriptLink('action=wanted', Ts('Wanted Pages'), 'wanted'));
  27. }
  28. sub PrintWantedData {
  29. my %links = %{(GetFullLinkList(1,0,0,1))};
  30. my %wanted;
  31. foreach my $page (sort keys %links) {
  32. next if defined $WantedPageReferrerFilter and ($page =~ m/$WantedPageReferrerFilter/);
  33. foreach my $link (@{$links{$page}}) {
  34. next if defined $WantedPageNameFilter and ($link =~ m/$WantedPageNameFilter/);
  35. push @{$wanted{$link}}, $page if not $IndexHash{$link};
  36. }
  37. }
  38. print $q->p(Ts('%s pages', scalar keys %wanted));
  39. foreach my $page (sort keys %wanted) {
  40. my @references = map {GetPageLink($_)} (sort @{$wanted{$page}});
  41. my $pageLink = sprintf( T('%s, referenced from:'), GetEditLink($page,$page) );
  42. print $q->ul( $q->li($pageLink, $q->ul($q->li(\@references))));
  43. }
  44. }
  45. $Action{'wanted'} = \&DoWantedPages;
  46. sub DoWantedPages {
  47. my $title = defined $WantedPageName ? $WantedPageName : T('Wanted Pages');
  48. print GetHeader('', $title, '', 1), $q->start_div({-class=>'content wanted'});
  49. PrintWantedData();
  50. print $q->end_div();
  51. PrintFooter();
  52. }