You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@forrest.apache.org by ch...@apache.org on 2003/08/01 13:00:24 UTC

cvs commit: xml-forrest/src/resources/fresh-site/src/documentation/content/xdocs/samples sdocbook.xml

cheche      2003/08/01 04:00:24

  Modified:    src/resources/fresh-site/src/documentation/content/xdocs
                        site.xml
  Added:       src/resources/fresh-site/src/documentation/content/xdocs/samples
                        sdocbook.xml
  Log:
  Added Simplified docbook Sample.
  
  Revision  Changes    Path
  1.16      +1 -0      xml-forrest/src/resources/fresh-site/src/documentation/content/xdocs/site.xml
  
  Index: site.xml
  ===================================================================
  RCS file: /home/cvs/xml-forrest/src/resources/fresh-site/src/documentation/content/xdocs/site.xml,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- site.xml	19 Jul 2003 11:12:23 -0000	1.15
  +++ site.xml	1 Aug 2003 11:00:24 -0000	1.16
  @@ -32,6 +32,7 @@
       <sample-ihtml label="Sample ihtml page" href="ihtml-sample.html"/>
       <sample-ehtml label="Sample ehtml page" href="ehtml-sample.html"/>
       <faq label="FAQ" href="faq.html"/>
  +    <sdocbook label="Sample Simplifed Docbook page" href="sdocbook.html"/>
       <subdir label="Subdir" href="subdir/">
         <index label="Index" href="index.html"/>
       </subdir>
  
  
  
  1.1                  xml-forrest/src/resources/fresh-site/src/documentation/content/xdocs/samples/sdocbook.xml
  
  Index: sdocbook.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <!DOCTYPE article PUBLIC "-//OASIS//DTD Simplified DocBook XML V1.0//EN"
  "http://www.oasis-open.org/docbook/xml/simple/1.0/sdocbook.dtd">
  <article>
    <title>Simplified DocBook title</title>
  
    <subtitle>Sample Page subtitle</subtitle>
  
    <titleabbrev>Title abbrev</titleabbrev>
  
    <articleinfo>
      <author>
        <authorblurb>
          <title>Author blurb Title</title>
  
          <para>Author blurb paragraph</para>
        </authorblurb>
  
        <firstname>Juan</firstname>
  
        <othername>Jose</othername>
  
        <surname>Pablos</surname>
      </author>
  
      <date>01-August-2003</date>
    </articleinfo>
  
    <abstract>
      <title>Abstract title</title>
  
      <para>Abstract paragraph</para>
    </abstract>
  
    <epigraph>
      <attribution>Epigraph Attribution</attribution>
  
      <literallayout>Literal layout</literallayout>
  
      <para>Epigraph paragraph</para>
    </epigraph>
  
    <example>
      <title>Example title</title>
  
      <para>Example paragraph</para>
    </example>
  
    <figure>
      <title>Figure title</title>
  
      <literallayout>Literal layout</literallayout>
    </figure>
  
    <figure>
      <title>Figure Image</title>
  
      <mediaobject>
        <imageobject>
          <imagedata fileref="images/project-logo.gif" />
        </imageobject>
      </mediaobject>
    </figure>
  
    <informaltable>
      <tgroup cols="2">
        <thead>
          <row>
            <entry>Informal Table head entry</entry>
          </row>
        </thead>
  
        <tfoot>
          <row>
            <entry>Table foot entry</entry>
          </row>
        </tfoot>
  
        <tbody>
          <row>
            <entry>1</entry>
  
            <entry>2</entry>
          </row>
        </tbody>
      </tgroup>
    </informaltable>
  
    <itemizedlist>
      <listitem>
        <para>list item</para>
      </listitem>
    </itemizedlist>
  
    <note>
      <para>Note</para>
    </note>
  
    <orderedlist>
      <listitem>
        <para>Ordered list item</para>
      </listitem>
    </orderedlist>
  
    <para>Article paragraph</para>
  
    <programlisting>Program listing</programlisting>
  
    <sidebar>
      <para>Sidebar</para>
    </sidebar>
  
    <variablelist>
      <varlistentry>
        <term>Term</term>
  
        <listitem>
          <para>Definition</para>
        </listitem>
      </varlistentry>
    </variablelist>
  
    <table>
      <title>Table</title>
  
      <tgroup cols="2">
        <colspec align="center" />
  
        <thead>
          <row>
            <entry align="center">Head entry</entry>
  
            <entry align="center">Head entry</entry>
          </row>
        </thead>
  
        <tbody>
          <row>
            <entry>1</entry>
  
            <entry>2</entry>
          </row>
  
          <row>
            <entry>3</entry>
  
            <entry>4</entry>
          </row>
        </tbody>
      </tgroup>
    </table>
  
    <section>
      <title>Section title</title>
  
      <para>Section paragraph</para>
    </section>
  
    <appendix>
      <title>Appendix title</title>
  
      <para>Appendix paragraph</para>
    </appendix>
  
    <bibliography>
      <bibliomixed>Bibliography</bibliomixed>
    </bibliography>
  </article>
  
  

Re: cvs commit: xml-forrest/src/resources/fresh-site/src/documentation/content/xdocs/samples sdocbook.xml

Posted by Jeff Turner <je...@apache.org>.
On Fri, Aug 01, 2003 at 11:00:24AM -0000, cheche@apache.org wrote:
> cheche      2003/08/01 04:00:24
> 
>   Modified:    src/resources/fresh-site/src/documentation/content/xdocs
>                         site.xml
>   Added:       src/resources/fresh-site/src/documentation/content/xdocs/samples
>                         sdocbook.xml
>   Log:
>   Added Simplified docbook Sample.

Excellent!  Thanks

--Jeff