|
From: <caw...@us...> - 2006-12-21 20:37:34
|
Revision: 1725
http://svn.sourceforge.net/rubyeclipse/?rev=1725&view=rev
Author: cawilliams
Date: 2006-12-21 12:37:33 -0800 (Thu, 21 Dec 2006)
Log Message:
-----------
don't try to replace the plugin version (we were inadvertantly messing up the xml declaration line). We need to look into changing the rewriting of plugin.xml (we shouldn't do it at all as part of our build process)
Modified Paths:
--------------
trunk/org.rubypeople.rdt.doc.user/buildDocbook.xml
Modified: trunk/org.rubypeople.rdt.doc.user/buildDocbook.xml
===================================================================
--- trunk/org.rubypeople.rdt.doc.user/buildDocbook.xml 2006-12-21 20:36:23 UTC (rev 1724)
+++ trunk/org.rubypeople.rdt.doc.user/buildDocbook.xml 2006-12-21 20:37:33 UTC (rev 1725)
@@ -40,12 +40,6 @@
</replace>
</target>
- <target name="replaceVersionInPluginXml">
- <replace file="plugin.xml">
- <replacefilter token="1.0" value="${featureVersion}"/>
- </replace>
- </target>
-
<target name="html" depends="init,clean.docbook.generated,replaceVarInCustomizationLayer">
<!-- docbook recommends to use the saxon comiler. With jdk1.4 we could also use xalan (which ships with jdk1.4)
but with the jdk1.5 built-in XSLTC we get errors related to chunks.
@@ -63,11 +57,10 @@
<param name="eclipse.plugin.id" expression="org.rubypeople.rdt.doc.user"/>
<param name="eclipse.plugin.name" expression="Ruby Development Documentation"/>
<param name="eclipse.plugin.provider" expression="RubyPeople, Inc."/>
- <xmlcatalog id="docbook.catalog">
+ <xmlcatalog id="docbook.catalog">
<dtd publicId="-//OASIS//DTD DocBook V3.1//EN" location="${docbook.dtd.dir}/docbookx.dtd"/>
</xmlcatalog>
</style>
- <antcall target="replaceVersionInPluginXml"/>
</target>
<target name="clean">
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|