John Barbee > Apache-CVS-0.10 > Apache::CVS::HTML

Download:
Apache-CVS-0.10.tar.gz

Dependencies

Annotate this POD

CPAN RT

Open  1
View Bugs
Report a bug
Source  

NAME ^

Apache::CVS::HTML - subclass of Apache::CVS that prints HTML

SYNOPSIS ^

    <Location /cvs>
        SetHandler perl-script
        PerlHandler Apache::CVS::HTML
        PerlSetVar CVSRoots cvs1=>/usr/local/CVS
        PerlSetVar CSSFile /apache_cvs.css
    </Location>

DESCRIPTION ^

This is a subclass of Apache::CVS. Please see its pod page for definitive documentation. Apache::CVS::HTML override all of the print_* methods to display directories, files and revisions in HTML tables. Diffs are displayed as plain text. There is also a little directory indicator at the top of every page.

APACHE CONFIGURATION ^

CSSFile
    Path to a Cascading Stylesheet File. A default CSS file is
    provided with this distribution.

    PerlSetVar CSSFile /apache_cvs.css

CSS CONFIGURATION ^

The format of the CSS class below are: name (HTML tag, where this class shows up)

root_link (anchor, everywhere)
path_link (anchor, everywhere)
directory_link (anchor, directory listings)
file_link (anchor, directory listings)
graph_link (anchor, file listings)
revision_link (anchor, file listings, graph display)
directory_sort_link (anchor, directory listinsg)
file_sort_link (anchor, file listings)
diff_link (anchor, file listinsg)
directory_table (table, directory listing)
directory_header_row (tr, directory listing)
directory_header (th, directory listing)
directory_odd_row (tr, directory listing)
directory_even_row (tr, directory listing)
directory_data (td, directory listing)
file_table (table, file listing)
file_header_row (tr, file listing)
file_header (th, file listing)
file_odd_row (tr, file listing)
file_even_row (tr, file listing)
file_data (td, file listing)

SEE ALSO ^

Apache::CVS

AUTHOR ^

John Barbee, barbee@veribox.net

COPYRIGHT ^

Copyright 2001-2002 John Barbee

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.