/[sysadmin-cookbook-html]/bin/html.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /bin/html.pl

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 8 by dpavlin, Sat Aug 15 01:20:45 2009 UTC revision 11 by dpavlin, Tue Sep 1 18:06:08 2009 UTC
# Line 3  Line 3 
3  use warnings;  use warnings;
4  use strict;  use strict;
5    
6    my $svn = "http://svn.rot13.org/index.cgi/sysadmin-cookbook";
7  my $recepies = 'recepies/';  my $recepies = 'recepies/';
8    
9  use File::Find;  use File::Find;
10  use File::Slurp;  use File::Slurp;
11    use File::Path;
12  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
13  use XML::Simple;  use XML::Simple;
14  use Regexp::Common qw /URI/;  use Regexp::Common qw /URI/;
15    use XML::FeedPP;
16    
17  my @html;  my @html;
18  sub html { push @html, @_ }  sub html { push @html, @_ }
# Line 33  sub file { Line 36  sub file {
36                          $d =~ s{:\d\d\.\d+Z}{};                          $d =~ s{:\d\d\.\d+Z}{};
37                          $d =~ s{T}{ };                          $d =~ s{T}{ };
38                          my $r = $_->{revision};                          my $r = $_->{revision};
39                          qq|<li>$_->{msg} <a class="date" title="r$r" href="http://svn.rot13.org/index.cgi/sysadmin-cookbook/revision?rev=$r">$d</a></li>|                          qq|<li>$_->{msg} <a class="date" title="r$r" href="$svn/revision?rev=$r">$d</a></li>|
40                  } reverse @{ $log->{logentry} }                  } reverse @{ $log->{logentry} }
41          );          );
42    
43          $path =~ s{^$recepies/*(.*?[^/]+)$}{$1} || next;          $path =~ s{^$recepies/*(.*?[^/]+)$}{$1} || next;
44          return ''          return ''
45                  . qq|<ul class=changes>$changes</ul>|                  . qq|<ul class=changes>$changes</ul>|
46                  . ( $path =~ m{(\.sh|Makefile)$}i ? qq|<a class="path" href="recepies/$path">$path</a>| : '' )                  . ( $path =~ m{(\.sh|Makefile)$}i ? qq|<a class="path" href="$svn/view/recepies/$path">$path</a>| : '' )
47                  . qq|<pre class=content>$content</pre>|                  . qq|<pre class=content>$content</pre>|
48                  ;                  ;
49  }  }
# Line 53  find({ follow => 0, no_chdir => 1, wante Line 56  find({ follow => 0, no_chdir => 1, wante
56  my $last_level = 0;  my $last_level = 0;
57  my $toc_html = '';  my $toc_html = '';
58  sub header {  sub header {
59          my ($level, $content) = @_;          my ($level, $name) = @_;
60          my $display = $content;  
61            my $display = $name;
62          $display =~ s{^\d+[\.-]}{};          $display =~ s{^\d+[\.-]}{};
63          $display =~ s{-}{ }g;          $display =~ s{-}{ }g;
64          $display =~ s{\.\w+$}{};          $display =~ s{\.\w+$}{};
65          $content =~ s{\W+}{_}g;  
66          html qq|<a name=$content></a>|;          my $anchor = $name;
67            $anchor =~ s{</?[^>]+>}{}g;
68            $anchor =~ s{\W+}{_}g;
69    
70            html qq|<a name=$anchor></a>|;
71          html qq|<h$level>$display</h$level>|;          html qq|<h$level>$display</h$level>|;
72    
73          if ( $last_level > $level ) {          if ( $last_level > $level ) {
# Line 67  sub header { Line 75  sub header {
75          } elsif ( $last_level < $level ) {          } elsif ( $last_level < $level ) {
76                  $toc_html .= "<ul>";                  $toc_html .= "<ul>";
77          }          }
78          $toc_html .= qq|<li><a href="#$content">$display</li>|;          $toc_html .= qq|<li><a href="#$anchor">$display</li>|;
79          $last_level = $level;          $last_level = $level;
80  }  }
81    
82  my $to_path = '';  my $to_path = '';
83    our @item;
84    
85    sub mkfilepath {
86            my $path = shift;
87            $path =~ s{/[^/]+$}{};
88            mkpath $path unless -d $path;
89    }
90    
91    sub new_feed {
92            my $name = shift;
93            my $feed = XML::FeedPP::RSS->new();
94            $feed->title( "Sysadmin Cookbook" . ( $name ? " :: $name" : '' ) );
95            $feed->link( "http://sysadmin-cookbook.rot13.org/" . ( $name ? "#$name" : '' ) );
96            #$feed->pubDate( "Thu, 23 Feb 2006 14:43:43 +0900" );
97            return $feed;
98    }
99    
100    our $feed_all = new_feed;
101    sub add_item {
102            my $name = shift;
103            my $content = join("\n", @_);
104            return unless $name && $content;
105    
106            add_feed_item_description($feed_all, $name, "http://sysadmin-cookbook.rot13.org/rss/$name.xml", $content);
107    
108            my $item_feed = new_feed( $name );
109            add_feed_item_description($item_feed, $name, "http://sysadmin-cookbook.rot13.org/#$name", $content);
110            my $file = "rss/$name.xml";
111            mkfilepath $file;
112            $item_feed->to_file($file);
113    
114            warn "# $name\n";
115    }
116    
117    sub add_feed_item_description {
118            my ( $feed, $name, $url, $description ) = @_;
119            my $item = $feed->add_item( $url );
120            $item->title( $name );
121            #$item->pubDate( "2006-02-23T14:43:43+09:00" );
122            $item->description( $description );
123    }
124    
125  foreach my $path ( sort @names ) {  foreach my $path ( sort @names ) {
126    
127          next if ( -d $path && ! -e "$path/.svn" );          next if ( -d $path && ! -e "$path/.svn" );
128    
129          my $name = $path;          my $name = $path;
130    #       $name =~ s{^$recepies.*?([^/]+)$}{$1} || next;
131          $name =~ s{^$recepies.*?([^/]+)$}{$1} || next;          $name =~ s{^$recepies.*?([^/]+)$}{$1} || next;
132          next unless $name;  
133            my @just_path = split m{/}, $path;
134            @just_path = splice @just_path, 1, -1;
135    
136          if ( -d $path ) {          if ( -d $path ) {
137                  header 1,$name;                  add_item( splice(@item,0) );
138                    my $h1 = join(' ',@just_path);
139                    $h1 = qq|<span class="p">$h1</span> | if $h1;
140                    $h1 .= $name;
141                    header 1, $h1;
142                  $to_path = '';                  $to_path = '';
143                    push @item, $name;
144          } elsif ( -l $path ) {          } elsif ( -l $path ) {
145                  $to_path = " " . readlink $path;                  $to_path = " " . readlink $path;
146                  next;                  next;
147          } else {          } else {
148                  header 2, $name . $to_path;                  header 2, $name . $to_path;
149                  $to_path = '';                  $to_path = '';
150                  html file( $path );                  my $content = file $path;
151                    html $content;
152                    push @item, qq|<h4>$name</h4>\n$content|;
153          }          }
154    
155  };  };
156    
157  $toc_html .= "</ul>" foreach ( 1 .. $last_level );  $toc_html .= "</ul>" foreach ( 1 .. $last_level );
158    
159    $feed_all->to_file( "rss/index.xml" );
160    
161  print qq|  print qq|
162  <html><head>  <html><head>
163  <title>Sysadmin Cookbook</title>  <title>Sysadmin Cookbook</title>
# Line 111  h1 { Line 172  h1 {
172          padding: 0.3em;          padding: 0.3em;
173  }  }
174    
175    h1 .p {
176            color: #888;
177    }
178    
179  .toc {  .toc {
180          font-size: 80%;          font-size: 80%;
181  }  }
# Line 137  li .date { Line 202  li .date {
202          <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/hr/"><img alt="Creative Commons License" style="border-width:0; float: right" src="http://i.creativecommons.org/l/by-nc-sa/3.0/hr/88x31.png" /></a>          <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/hr/"><img alt="Creative Commons License" style="border-width:0; float: right" src="http://i.creativecommons.org/l/by-nc-sa/3.0/hr/88x31.png" /></a>
203          <span xmlns:dc="http://purl.org/dc/elements/1.1/" href="http://purl.org/dc/dcmitype/Text" property="dc:title" rel="dc:type">Sysadmin Cookbook</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://www.rot13.org/~dpavlin/" property="cc:attributionName" rel="cc:attributionURL">Dobrica Pavlinusic</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/hr/">Creative Commons Attribution-Noncommercial-Share Alike 3.0 Croatia License</a>.          <span xmlns:dc="http://purl.org/dc/elements/1.1/" href="http://purl.org/dc/dcmitype/Text" property="dc:title" rel="dc:type">Sysadmin Cookbook</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://www.rot13.org/~dpavlin/" property="cc:attributionName" rel="cc:attributionURL">Dobrica Pavlinusic</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/hr/">Creative Commons Attribution-Noncommercial-Share Alike 3.0 Croatia License</a>.
204          <br />          <br />
205          <small><a href="http://svn.rot13.org/index.cgi/sysadmin-cookbook/">Source code repository</a></small>          <small><a href="$svn">Source code repository</a></small>
206          |          |
207          . "<div class=toc>$toc_html</div>"          . "<div class=toc>$toc_html</div>"
208          , join("\n", @html)          , join("\n", @html)

Legend:
Removed from v.8  
changed lines
  Added in v.11

  ViewVC Help
Powered by ViewVC 1.1.26