Did you intend to commit the changes to the index.xml We don't yet have those DTDs do we?
-David > Author: rgardler > Date: Thu Aug 18 10:49:02 2005 > New Revision: 233338 > > URL: http://svn.apache.org/viewcvs?rev=233338&view=rev > Log: > remove absolute paths to resource so that versioned plugins work, submitted > by Ron Blaschke > > Modified: > > forrest/trunk/plugins/org.apache.forrest.plugin.input.simplifiedDocbook/build.xml > > forrest/trunk/plugins/org.apache.forrest.plugin.input.simplifiedDocbook/input.xmap > > forrest/trunk/plugins/org.apache.forrest.plugin.input.simplifiedDocbook/src/documentation/content/xdocs/index.xml > > Modified: > forrest/trunk/plugins/org.apache.forrest.plugin.input.simplifiedDocbook/build.xml > URL: > http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.input.simplifiedDocbook/build.xml?rev=233338&r1=233337&r2=233338&view=diff > ============================================================================== > --- > forrest/trunk/plugins/org.apache.forrest.plugin.input.simplifiedDocbook/build.xml > (original) > +++ > forrest/trunk/plugins/org.apache.forrest.plugin.input.simplifiedDocbook/build.xml > Thu Aug 18 10:49:02 2005 > @@ -20,7 +20,7 @@ > <property name="plugin-name" > value="org.apache.forrest.plugin.input.simplifiedDocbook"/> > <property name="forrest.version" value="0.7"/> > <property name="type" value="input"/> > - <property name="plugin-version" value="0.1"/> > + <property name="plugin-version" value="0.1.1"/> > <property name="description" value="Enable Simplified Docbook to be used > as input."/> > <property name="author" value="Apache Forrest Project"/> > <property name="websiteURL" > value="http://forrest.apache.org/docs/plugins/org.apache.forrest.plugin.input.simplifiedDocbook"/> > > Modified: > forrest/trunk/plugins/org.apache.forrest.plugin.input.simplifiedDocbook/input.xmap > URL: > http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.input.simplifiedDocbook/input.xmap?rev=233338&r1=233337&r2=233338&view=diff > ============================================================================== > --- > forrest/trunk/plugins/org.apache.forrest.plugin.input.simplifiedDocbook/input.xmap > (original) > +++ > forrest/trunk/plugins/org.apache.forrest.plugin.input.simplifiedDocbook/input.xmap > Thu Aug 18 10:49:02 2005 > @@ -34,7 +34,10 @@ > </sourcetype> > <sourcetype name="sdocbook-v1.0"> > <document-declaration public-id="-//OASIS//DTD Simplified DocBook > XML V1.0//EN" /> > - </sourcetype> > + </sourcetype> > + <sourcetype name="sdocbook-v4.1.2.5"> > + <document-declaration public-id="-//OASIS//DTD Simplified DocBook > XML V4.1.2.5//EN" /> > + </sourcetype> > </map:action> > </map:actions> > > @@ -51,17 +54,23 @@ > > <map:when test="docbook-v4.1.2"> > <map:generate src="{project:content.xdocs}{../../1}.xml" /> > - <map:transform > src="{forrest:plugins}/org.apache.forrest.plugin.input.simplifiedDocbook/resources/stylesheets/sdocbook2document.xsl" > /> > + <map:transform src="resources/stylesheets/sdocbook2document.xsl" > /> > <map:serialize type="xml-document"/> > </map:when> > > <map:when test="docbook-v4.2"> > <map:generate src="{project:content.xdocs}{../../1}.xml" /> > - <map:transform > src="{forrest:plugins}/org.apache.forrest.plugin.input.simplifiedDocbook/resources/stylesheets/sdocbook2document.xsl" > /> > + <map:transform src="resources/stylesheets/sdocbook2document.xsl" > /> > <map:serialize type="xml-document"/> > </map:when> > > <map:when test="sdocbook-v1.0"> > + <map:generate src="{project:content.xdocs}{../../1}.xml" /> > + <map:transform src="resources/stylesheets/sdocbook2document.xsl" > /> > + <map:serialize type="xml-document"/> > + </map:when> > + > + <map:when test="sdocbook-v4.1.2.5"> > <map:generate src="{project:content.xdocs}{../../1}.xml" /> > <map:transform > src="{forrest:plugins}/org.apache.forrest.plugin.input.simplifiedDocbook/resources/stylesheets/sdocbook2document.xsl" > /> > <map:serialize type="xml-document"/> > > Modified: > forrest/trunk/plugins/org.apache.forrest.plugin.input.simplifiedDocbook/src/documentation/content/xdocs/index.xml > URL: > http://svn.apache.org/viewcvs/forrest/trunk/plugins/org.apache.forrest.plugin.input.simplifiedDocbook/src/documentation/content/xdocs/index.xml?rev=233338&r1=233337&r2=233338&view=diff > ============================================================================== > --- > forrest/trunk/plugins/org.apache.forrest.plugin.input.simplifiedDocbook/src/documentation/content/xdocs/index.xml > (original) > +++ > forrest/trunk/plugins/org.apache.forrest.plugin.input.simplifiedDocbook/src/documentation/content/xdocs/index.xml > Thu Aug 18 10:49:02 2005 > @@ -26,5 +26,25 @@ > <p>This plugin allows files written in the Simplified Docbook > vocabulary > to be included in an Apache Forrest site.</p> > </section> > + <section> > + <title>Supported Simplified Docbook Versions</title> > + <warning>SDocbook support is not yet considered complete. However, it > + is certainly usable. If you find an element is not supported please > + raise an issue on the project issue tracker.</warning> > + <p>The following versions of SDocbook are supported. Other versions > + can be added, please raise an issue if you need additional > + support.</p> > + <ul> > + <li>-//OASIS//DTD Simplified DocBook XML V1.0//EN</li> > + <li>-//OASIS//DTD Simplified DocBook XML V4.1.2.5//EN</li> > + </ul> > + <p>This plugin can also be used to render full docbook files. However, > + it is not intended for this purpose and results may vary. Supported > DTD's > + are:</p> > + <ul> > + <li>-//OASIS//DTD DocBook XML V4.1.2//EN</li> > + <li>-//OASIS//DTD DocBook XML V4.2//EN</li> > + </ul> > + </section> > </body> > </document> >
