App-Changelog2x

 view release on metacpan or  search on metacpan

bin/changelog2x  view on Meta::CPAN

and no constraints are applied. The URL may be absolute, relative, etc.

The only distinction between this parameter and the next one, is that this one
will occur first in the C<< <head> >> block, and thus be first in the CSS
cascade model.

=item --color URL [ html ]

As above, but this parameter is used to allow a second URL to be specified,
one that will follow the previous one in the CSS cascade order. This allows
the user to have a "main" stylesheet with font, spacing, etc. declarations
while also using this option to select between color schemes for text,
backgrounds, etc. (hence the choice of C<color> as the option name).

=item --javascript URL [ html ]

Like the two CSS-related options above, this allows the specification of a URL
to be included in the document head-section. Unlike the previous, this URL is
assumed to refer to a Javascript resource. As such, it triggers the generation
of a C<< <script> >> element with a C<type> attribute set to C<text/javascript>
and a C<href> attribute set to the value of this parameter.

ex/README  view on Meta::CPAN

The files in this directory are sample applications (other than the
changelog2x script) and sample CSS stylesheets that can be used with
the XHTML output styles.

The changelog2x script allows two CSS files to be specified (not counting
the open-ended 'headcontent' or 'headcontentfile' command-line parameters).
The main one, specified with the '--css' option, is assumed to be general
styling, fonts, spacing, etc. The second, specified via '--color', can be
used to select a color-scheme defined using the same class names and applied
via the cascade mode.


FILES:

changelogml.css
    This is a basic set of styles for the XHTML content, with no colors
    explicitly specified. It sets up fonts, spacing, etc. The fonts preference
    is for the Deja Vu Sans family, falling back to Bitstream Vera Sans,
    Helvetica, then finally Arial. No specific font is given for fixed-width
    text in the filenames, but the table-of-contents links are styled to use
    Deja Vu Sans Mono, falling back to Bitstream Vera Sans Mono, Courier New
    and finally monospace. The <ul> containers used for listing filenames have
    the <li> tags styled to use the "»" character in place of the traditional
    bullet.

black-white.css
    This is a very short set of styles that augment the above sheet by
    specifying a black-text-on-white color scheme. All other colors are
    grey-tones (the annotation of file actions and the hover-color over

ex/changelogml.css  view on Meta::CPAN

/*
    Core stylings for ChangeLogML files that have been rendered into XHTML

    $Id: changelogml.css 8 2009-01-19 06:46:50Z rjray $
 */

body {
  font-family:    DejaVu Sans, Bitstream Vera Sans, Helvetica, Arial;
}

hr {
  width:          100%;
  height:         1px;
}

ul {
  margin-left:    0;
  padding-left:   1em;
}

.changelog {
  font-family:    DejaVu Sans, Bitstream Vera Sans, Helvetica, Arial;
  font-size:      12pt;
  padding:        0 2em 0 2em;
}

h1.changelog-title {
  font-size:      160%;
  text-align:     center;
  width:          80%;
  margin-left:    auto;
  margin-right:   auto;
}

.changelog-abstract {
  width:          50%;
  margin-left:    auto;
  margin-right:   auto;
}

.changelog-toc-div {
  text-align:     center;
  font-family:    DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace;
  font-size:      80%;
  width:          70%;
  margin-left:    auto;
  margin-right:   auto;
}

.changelog-toc-link {
  font-family:    DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace;
  font-size:      80%;
}

.changelog-release-div {
  padding-left:   0.5em;
  padding-right:  0.5em;
  padding-top:    3px;
  padding-bottom: 3px;

  margin-top:     2px;
  margin-bottom:  2px;
}

.changelog-subproject-heading {
  font-size:      125%;
  font-weight:    bold;
  padding-bottom: 3px;
}

.changelog-release-heading {
  font-size:      115%;
  font-weight:    bold;
  padding-bottom: 3px;
}

.changelog-release-changes-container {
  padding:        none;
  margin:         none;
}

.changelog-release-change {
  padding-left:   2em;

ex/changelogml.css  view on Meta::CPAN

  text-indent:    -1em;
  margin-top:     2px;
  margin-bottom:  2px;
}

.changelog-release-change-li:before {
  content:        "\00BB \0020";
}

.changelog-release-file-action {
  font-style:     italic;
}

.changelog-release-change-para {
  margin-top:     0.5em;
}



( run in 2.669 seconds using v1.01-cache-2.11-cpan-5735350b133 )