/usr/share/doc/lire/dev-manual/ch06.html is in lire-devel-doc 2:2.1.1-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | <html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter 6. Lire Data Types</title><meta name="generator" content="DocBook XSL Stylesheets V1.75.2"><link rel="home" href="index.html" title="Lire Developer's Manual"><link rel="up" href="pt03.html" title="Part III. Developer's Reference"><link rel="prev" href="pt03.html" title="Part III. Developer's Reference"><link rel="next" href="ch07.html" title="Chapter 7. Common Textual Elements to All XML Formats"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 6. Lire Data Types</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="pt03.html">Prev</a> </td><th width="60%" align="center">Part III. Developer's Reference</th><td width="20%" align="right"> <a accesskey="n" href="ch07.html">Next</a></td></tr></table><hr></div><div class="chapter" title="Chapter 6. Lire Data Types"><div class="titlepage"><div><div><h2 class="title"><a name="chap:lire-types-doc"></a>Chapter 6. Lire Data Types</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="section"><a href="ch06.html#id404758">Lire Textual Elements</a></span></dt><dd><dl><dt><span class="section"><a href="ch06.html#id404779"><code class="sgmltag-element">title</code> element</a></span></dt><dt><span class="section"><a href="ch06.html#id404810">DocBook Elements</a></span></dt><dt><span class="section"><a href="ch06.html#id404854"><code class="sgmltag-element">description</code> element</a></span></dt></dl></dd></dl></div><div class="section" title="Lire Textual Elements"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="id404758"></a>Lire Textual Elements</h2></div></div></div><p>This DTD module defines elements related that contains
human-readable content in all the Lire DTDs.
</p><p>This module will also imports some DocBook XML V4.1.2 elements
for richer semantic tagging.
</p><p>This module is also namespace aware and will honor the setting
of <em class="parameter"><code>LIRE.pfx</code></em> to scope its element</p><p>The latest version of that module is
<span class="productnumber">2.0</span> and its public
identifier is <span class="productname">-//LogReport.ORG//ELEMENTS Lire Textual
Elements V2.0//EN</span>™.
</p><pre class="programlisting">
<!--
Make sure LIRE.pfx is defined. This declaration will be
ignored if it was already defined.
-->
<!ENTITY % LIRE.pfx "lire:" >
<!ENTITY % LIRE.title "%LIRE.pfx;title" >
<!ENTITY % LIRE.description "%LIRE.pfx;description" >
</pre><div class="section" title="title element"><div class="titlepage"><div><div><h3 class="title"><a name="id404779"></a><code class="sgmltag-element">title</code> element</h3></div></div></div><p>The <code class="sgmltag-element">title</code> element contains a descriptive
title.
</p><p>This element represent some title in Lire. It can be used to
give a title to a report specification or to specifify the title
of a report or subreport.
</p><p>The content of this element should be localized.</p><p>This element doesn't have any attribute.</p><pre class="programlisting">
<!ELEMENT %LIRE.title; (#PCDATA) >
</pre></div><div class="section" title="DocBook Elements"><div class="titlepage"><div><div><h3 class="title"><a name="id404810"></a>DocBook Elements</h3></div></div></div><p>The standard <code class="sgmltag-element">para</code>,
<code class="sgmltag-element">formalpara</code> and admonition elements
(<code class="sgmltag-element">note</code>, <code class="sgmltag-element">tip</code>,
<code class="sgmltag-element">warning</code>, <code class="sgmltag-element">important</code> and
<code class="sgmltag-element">caution</code>) are used as well as their content may
be used.
</p><pre class="programlisting">
<!ENTITY % docbook-block.mix
"para|formalpara|warning|tip|important|caution|note">
<!ENTITY % DocBookDTD PUBLIC
"-//OASIS//DTD DocBook XML V4.1.2//EN"
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">
%DocBookDTD;
</pre></div><div class="section" title="description element"><div class="titlepage"><div><div><h3 class="title"><a name="id404854"></a><code class="sgmltag-element">description</code> element</h3></div></div></div><p>The <code class="sgmltag-element">description</code> element is used to
describe an element. It can be used to describe DLF fields,
describe a report specification or include descriptions in the
generated reports.
</p><p>This element can contains one or more of the block-level
DocBook elements we use.
</p><p>The content of this element should be localized.</p><p>This element doesn't have any attributes.</p><pre class="programlisting">
<!ELEMENT %LIRE.description; (%docbook-block.mix;)+>
</pre></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="pt03.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="pt03.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch07.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Part III. Developer's Reference </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Chapter 7. Common Textual Elements to All XML Formats </td></tr></table></div></body></html>
|