123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278 |
- # Copyright (C) 2004, 2005 Fletcher T. Penney <fletcher@freeshell.org>
- #
- # This program is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation; either version 3 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- use strict;
- use v5.10;
- AddModuleDescription('clustermap.pl', 'ClusterMap Module');
- our ($q, %Action, %Page, $OpenPageName, @MyRules, @MyAdminCode, $HomePage, $DeletedPage, $RCName, $InterMap, $BannedContent, $BannedHosts, %AdminPages, $RssExclude, @AdminPages, $NearMap);
- our ($ClusterMapPage, %ClusterMap, $ClusterMapTOC, $FilterUnclusteredRegExp, @ClusterMapAdminPages, $PrintTOCAnchor);
- my %Unclustered = ();
- $ClusterMapPage = "Site_Map" unless defined $ClusterMapPage;
- # Don't list the following pages as unclustered
- # By default, journal pages and Comment pages
- $FilterUnclusteredRegExp = '\d\d\d\d-\d\d-\d\d|\d* *Comments on .*'
- unless defined $FilterUnclusteredRegExp;
- # The following pages are added to the AdminPage list and
- # are not classified as unclustered.
- # They are also added to the Important Pages list on the administration page
- @ClusterMapAdminPages = ( $HomePage, $DeletedPage, $BannedContent,
- $BannedHosts, $InterMap, $NearMap, $RCName, $RssExclude)
- unless @ClusterMapAdminPages;
- $ClusterMapTOC = 1 unless defined $ClusterMapTOC;
- $PrintTOCAnchor = 0;
- %ClusterMap = ();
- *OldPrintRcHtml = \&PrintRcHtml;
- *PrintRcHtml = \&ClusterMapPrintRcHtml;
- push(@MyAdminCode, \&ClusterMapAdminRule);
- $Action{clustermap} = \&DoClusterMap;
- $Action{unclustered} = \&DoUnclustered;
- push(@MyRules, \&ClusterMapRule);
- foreach (@ClusterMapAdminPages){
- $AdminPages{$_} = 1;
- }
- sub ClusterMapRule {
- if (/\G^([\n\r]*\<\s*clustermap\s*\>\s*)$/cgm) {
- Dirty($1);
- my $oldpos = pos;
- my $oldstr = $_;
- CreateClusterMap();
- print "</p>"; # Needed to clean up, but could cause problems
- # if <clustermap> isn't put into a new paragraph
- PrintClusterMap();
- pos = $oldpos;
- $oldstr =~ s/.*?\<\s*clustermap\s*\>//s;
- $_ = $oldstr;
- return '';
- }
- return;
- }
- sub DoClusterMap {
- # Get list of all clusters
- # For each cluster, get list of all pages in that cluster
- # Create map, using body of cluster pages, followed by titles of pages
- # within that cluster
- print GetHeader('',$ClusterMapPage,'');
- CreateClusterMap();
- if ($ClusterMapTOC) {
- my $TOCCount = 0;
- print '<div class="toc"><h2>Categories</h2><ol>';
- foreach my $cluster ( sort keys %ClusterMap) {
- $cluster =~ s/_/ /g;
- print "<li><a href=\"#toc$TOCCount\">$cluster</a></li>";
- $TOCCount++;
- }
- print '</ol></div>';
- $PrintTOCAnchor = 1;
- }
- print '<div class="content">';
- PrintClusterMap();
- print '</div>';
- PrintFooter();
- }
- sub DoUnclustered {
- print GetHeader('','Pages without a Cluster','');
- print '<div class="content">';
- CreateClusterMap();
- PrintUnclusteredMap();
- print '</div>';
- PrintFooter();
- }
- sub PrintClusterMap {
- my $TOCCount = 0;
- foreach my $cluster (sort keys %ClusterMap) {
- local %Page;
- local $OpenPageName='';
- my $free = $cluster;
- $free =~ s/_/ /g;
- OpenPage($cluster);
- if ( FreeToNormal(GetCluster($Page{text})) eq $cluster ) {
- # Don't display the page name twice if the cluster page is also
- # a member of the cluster
- $Page{text} =~ s/^\[*($cluster|$free)\]*\n*//s;
- }
- if ($PrintTOCAnchor) {
- print $q->h1("<a id=\"toc$TOCCount\"></a>" . GetPageOrEditLink($free, $free));
- $TOCCount++;
- } else {
- print $q->h1(GetPageOrEditLink($free, $free));
- }
- PrintWikiToHTML($Page{text}, 0);
- print "<ul>";
- foreach my $page (sort keys %{$ClusterMap{$cluster}}) {
- my $title = $page;
- $title =~ s/_/ /g;
- print "<li>" . ScriptLink($page, $title, 'local') . "</li>";
- }
- print "</ul>";
- }
- }
- sub CreateClusterMap {
- my @pages = AllPagesList();
- local %Page;
- local $OpenPageName='';
- foreach my $page ( @pages) {
- OpenPage($page);
- my $cluster = FreeToNormal(GetCluster($Page{text}));
- next if ($cluster eq $DeletedPage); # Don't map Deleted Pages
- next if (TextIsFile($Page{text})); # Don't map files
- if ($cluster eq "") { # Grab Unclustered Pages
- $Unclustered{$page} = 1;
- next;
- }
- if ($cluster ne FreeToNormal($page)) { # Create Cluster Map
- $ClusterMap{$cluster}{$page} = 1;
- }
- }
- # Strip out Admin Pages
- foreach my $page (@AdminPages) {
- delete($Unclustered{$page});
- }
- }
- sub ClusterMapPrintRcHtml {
- my ( @options ) = @_;
- my $cluster = GetParam('rcclusteronly');
- if ($cluster ne "") {
- CreateClusterMap();
- print "Pages in this cluster:";
- print "<ul>";
- foreach my $page (sort keys %{$ClusterMap{$cluster}}) {
- my $title = $page;
- $title =~ s/_/ /g;
- print "<li>" . ScriptLink($page, $title, 'local') . "</li>";
- }
- print "</ul>";
- }
- OldPrintRcHtml(@options);
- }
- sub PrintUnclusteredMap {
- print "<ul>";
- foreach my $page (sort keys %Unclustered) {
- my $title = $page;
- $title =~ s/_/ /g;
- if ($title !~ /^($FilterUnclusteredRegExp)$/) {
- print "<li>" . ScriptLink($page, $title, 'local') . "</li>";
- }
- }
- print "</ul>";
- }
- sub ClusterMapAdminRule {
- my ($id, $menuref) = @_;
- push(@$menuref, ScriptLink('action=clustermap', T('Clustermap'), 'clustermap'));
- push(@$menuref, ScriptLink('action=unclustered', T('Pages without a Cluster'), 'unclustered'));
- }
- *OldBrowseResolvedPage = \&BrowseResolvedPage;
- *BrowseResolvedPage = \&ClusterMapBrowseResolvedPage;
- sub ClusterMapBrowseResolvedPage {
- my $title = shift;
- $title =~ s/_/ /g;
- my $id = FreeToNormal($title);
- if ($id eq $ClusterMapPage) {
- CreateClusterMap();
- print GetHeader('',$title,'');
- print '<div class="content">';
- if ($ClusterMapTOC) {
- my $TOCCount = 0;
- print '<div class="toc"><h2>Categories</h2><ol>';
- foreach my $cluster ( sort keys %ClusterMap) {
- $cluster =~ s/_/ /g;
- print "<li><a href=\"#toc$TOCCount\">$cluster</a></li>";
- $TOCCount++;
- }
- print '</ol></div>';
- $PrintTOCAnchor = 1;
- }
- PrintClusterMap();
- print '</div>';
- PrintFooter();
- } else {
- OldBrowseResolvedPage($id);
- }
- }
- *OldPrintWikiToHTML = \&PrintWikiToHTML;
- *PrintWikiToHTML = \&ClusterMapPrintWikiToHTML;
- sub ClusterMapPrintWikiToHTML {
- my ($pageText, $savecache, $revision, $islocked) = @_;
- # Cause an empty page with the name $ClusterMapPage to
- # display a map.
- if (($ClusterMapPage eq $OpenPageName)
- && ($pageText =~ /^\s*$/s)){
- SetParam('rcclusteronly',0);
- CreateClusterMap();
- print '<div class="content">';
- if ($ClusterMapTOC) {
- my $TOCCount = 0;
- print '<div class="toc"><h2>Contents</h2><ol>';
- foreach my $cluster ( sort keys %ClusterMap) {
- print "<li><a href=\"#toc$TOCCount\">$cluster</a></li>";
- $TOCCount++;
- }
- print '</ol></div>';
- $PrintTOCAnchor = 1;
- }
- PrintClusterMap();
- print '</div>';
- }
- OldPrintWikiToHTML(@_);
- }
|