X-Git-Url: http://git.rot13.org/?p=sysadmin-cookbook-html;a=blobdiff_plain;f=bin%2Fhtml.pl;h=e87f1a5a177fa7d70782b73f2608f9b4e1986cac;hp=6039b361b649dd1bd424b7e9e752fc0656902ce3;hb=2288b8c924fe41d554463a1dc12fe08ace48e630;hpb=b356e721222c6504f99da41d51206092e3792b3e diff --git a/bin/html.pl b/bin/html.pl index 6039b36..e87f1a5 100755 --- a/bin/html.pl +++ b/bin/html.pl @@ -3,13 +3,16 @@ use warnings; use strict; +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,14 +36,15 @@ sub file { $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; +warn "## path = $path\n"; return '' . qq|| - . ( $path =~ m{(\.sh|Makefile)$}i ? qq|$path| : '' ) + . ( $path =~ m{(\.sh|Makefile|\.conf|\.pl)$}i || -x "$recepies/$path" ? qq|$path| : '' ) . qq|
    $content
    | ; } @@ -50,53 +54,120 @@ find({ follow => 0, no_chdir => 1, wanted => sub { push @names, $_ unless m{/\.} || m{^\.}; }}, $recepies ); -my $last_level = 0; -my $toc_html = ''; +warn "## names = ",dump( @names ); + +our $last_level = 0; +our $toc_html = ''; sub header { - my ($level, $content) = @_; - my $display = $content; + my ($level, $name, $full_name) = @_; + $full_name ||= $name; + $full_name =~ s{recepies/}{}; + warn "## header $level $name [$full_name]\n"; + + my $display = $name; $display =~ s{^\d+[\.-]}{}; $display =~ s{-}{ }g; $display =~ s{\.\w+$}{}; - $content =~ s{\W+}{_}g; - html qq||; + + my $anchor = $full_name; + $anchor =~ s{]+>}{}g; + $anchor =~ s{\W+}{_}g; + + html qq||; html qq|$display|; if ( $last_level > $level ) { $toc_html .= ""; + warn "## $last_level > $level toc /ul"; } elsif ( $last_level < $level ) { $toc_html .= "" foreach ( 1 .. $last_level ); +$feed_all->to_file( "rss/index.xml" ); + print qq| Sysadmin Cookbook @@ -111,6 +182,10 @@ h1 { padding: 0.3em; } +h1 .p { + color: #888; +} + .toc { font-size: 80%; } @@ -137,7 +212,7 @@ li .date { 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)