trusty (3) HTMLDocument.addDocumentStylesheet.3kaya.gz

Provided by: kaya_0.4.4-6ubuntu3_amd64 bug

NAME

       HTMLDocument::addDocumentStylesheet - Adds a linked external stylesheet to the document

SYNOPSIS

       Void addDocumentStylesheet( HTMLDocument doc, [MediaType] media, String uri )

ARGUMENTS

       doc The HTML document

       media A list of media types that this stylesheet applies to

       uri The location of the stylesheet.

DESCRIPTION

       Adds  a  linked external stylesheet to the document. See the HTMLDocument.MediaType (3kaya) documentation
       for an explanation of the various media types. Currently only  CSS  stylesheets  are  supported  by  this
       function.

    addDocumentStylesheet(doc,[MTall],
                          "/styles/base.css");
    addDocumentStylesheet(doc,[MTprint],
                          "/styles/print.css");
    addDocumentStylesheet(doc,[MTscreen,MTprojection,MThandheld],
                          "/styles/visual.css");

       If the media array is empty, [MTall] will be used.

AUTHORS

       Kaya  standard  library  by  Edwin  Brady,  Chris  Morris  and  others  (kaya@kayalang.org).  For further
       information see http://kayalang.org/

LICENSE

       The Kaya standard library is free software; you can redistribute it and/or modify it under the  terms  of
       the  GNU  Lesser  General  Public  License  (version  2.1  or any later version) as published by the Free
       Software Foundation.

       HTMLDocument.MediaType (3kaya)