--- bin/html.pl 2009/05/18 19:15:05 7 +++ bin/html.pl 2009/11/02 15:43:01 12 @@ -3,13 +3,16 @@ use warnings; use strict; -my $recepies = '/srv/sysadmin-cookbook/recepies'; +my $svn = "http://svn.rot13.org/index.cgi/sysadmin-cookbook"; +my $recepies = 'recepies/'; use File::Find; use File::Slurp; +use File::Path; use Data::Dump qw/dump/; use XML::Simple; use Regexp::Common qw /URI/; +use XML::FeedPP; my @html; sub html { push @html, @_ } @@ -33,33 +36,38 @@ $d =~ s{:\d\d\.\d+Z}{}; $d =~ s{T}{ }; my $r = $_->{revision}; - qq|
  • $_->{msg} $d
  • | + qq|
  • $_->{msg} $d
  • | } reverse @{ $log->{logentry} } ); $path =~ s{^$recepies/*(.*?[^/]+)$}{$1} || next; return '' . qq|| - . ( $path =~ m{(\.sh|Makefile)$}i ? qq|$path| : '' ) + . ( $path =~ m{(\.sh|Makefile|\.conf)$}i ? qq|$path| : '' ) . qq|
    $content
    | ; } my @names; find({ follow => 0, no_chdir => 1, wanted => sub { - push @names, $_ unless m{/\.}; + push @names, $_ unless m{/\.} || m{^\.}; }}, $recepies ); my $last_level = 0; my $toc_html = ''; sub header { - my ($level, $content) = @_; - my $display = $content; + my ($level, $name) = @_; + + my $display = $name; $display =~ s{^\d+[\.-]}{}; $display =~ s{-}{ }g; $display =~ s{\.\w+$}{}; - $content =~ s{\W+}{_}g; - html qq||; + + my $anchor = $name; + $anchor =~ s{]+>}{}g; + $anchor =~ s{\W+}{_}g; + + html qq||; html qq|$display|; if ( $last_level > $level ) { @@ -67,34 +75,89 @@ } elsif ( $last_level < $level ) { $toc_html .= "" foreach ( 1 .. $last_level ); +$feed_all->to_file( "rss/index.xml" ); + print qq| Sysadmin Cookbook @@ -109,6 +172,10 @@ padding: 0.3em; } +h1 .p { + color: #888; +} + .toc { font-size: 80%; } @@ -135,7 +202,7 @@ Creative Commons License Sysadmin Cookbook by Dobrica Pavlinusic is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 Croatia License.
    - Source code repository + Source code repository | . "
    $toc_html
    " , join("\n", @html)