mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-08 17:45:24 +02:00
Fix warnings in dstore.doc.isv build
This commit is contained in:
parent
1003ed6e14
commit
020e4a2dee
6 changed files with 209 additions and 130 deletions
|
@ -1 +1,6 @@
|
|||
bin
|
||||
index
|
||||
build.xml
|
||||
temp.bin.log
|
||||
temp.options.txt
|
||||
temp.convert.txt
|
||||
|
|
|
@ -1,6 +1,12 @@
|
|||
Last revised May 31, 2006
|
||||
Last revised July 27, 2006
|
||||
(This file is for information only; it is not included in the release.)
|
||||
|
||||
See also
|
||||
http://wiki.eclipse.org/index.php/How_to_add_things_to_the_Eclipse_doc
|
||||
with the following exceptions:
|
||||
- platformOptions.txt -> options.txt
|
||||
- overview-platform.html -> /reference/misc/overview-rse.html
|
||||
|
||||
To add new plug-ins you need to make changes in several places in
|
||||
this doc plug-in:
|
||||
|
||||
|
|
|
@ -17,5 +17,6 @@ bin.includes = META-INF/,\
|
|||
toc.html,\
|
||||
toc.xml,\
|
||||
guide/,\
|
||||
index/,\
|
||||
reference/
|
||||
customBuildCallbacks = customBuildCallbacks.xml
|
||||
|
|
|
@ -3,6 +3,66 @@
|
|||
|
||||
<target name="init">
|
||||
<available file="${basedir}/index" property="index.present" />
|
||||
<path id="path_bootclasspath">
|
||||
<fileset dir="${java.home}/lib">
|
||||
<include name="*.jar"/>
|
||||
</fileset>
|
||||
</path>
|
||||
<property name="bootclasspath" refid="path_bootclasspath"/>
|
||||
<condition property="safeBaseLocation"
|
||||
value="${baseLocation}"
|
||||
else="${eclipse.home}">
|
||||
<isset property="baseLocation"/>
|
||||
</condition>
|
||||
</target>
|
||||
|
||||
<target name="computeClasspath" unless="javadoc.classpath">
|
||||
<!-- Construct the javadoc classpath and store it in a property. -->
|
||||
<echo level="info" message="Computing classpath ..."/>
|
||||
|
||||
<!-- Add platform dependencies required by your plug-in here.
|
||||
Note that this pattern expects GMF and its dependencies to have
|
||||
been installed into the platform directory structure, as is
|
||||
the case during the build. -->
|
||||
<patternset id="platform.classpath.pattern">
|
||||
<include name="**/org.eclipse.core*.jar"/>
|
||||
<include name="**/org.eclipse.core*/**/*.jar"/>
|
||||
<include name="**/org.eclipse.compare*.jar"/>
|
||||
<include name="**/org.eclipse.debug.core*.jar"/>
|
||||
<include name="**/org.eclipse.debug.ui*.jar"/>
|
||||
<include name="**/org.eclipse.search*.jar"/>
|
||||
<include name="**/org.eclipse.swt*.jar"/>
|
||||
<include name="**/org.eclipse.swt*/**/*.jar"/>
|
||||
<include name="**/org.eclipse.ui*.jar"/>
|
||||
<include name="**/org.eclipse.ui*/**/*.jar"/>
|
||||
<include name="**/org.eclipse.update*.jar"/>
|
||||
<include name="**/org.eclipse.update*/**/*.jar"/>
|
||||
<include name="**/org.eclipse.osgi*.jar"/>
|
||||
<include name="**/org.eclipse.osgi*/**/*.jar"/>
|
||||
<include name="**/org.eclipse.equinox*.jar"/>
|
||||
<include name="**/org.eclipse.equinox*/**/*.jar"/>
|
||||
<include name="**/org.eclipse.jface*.jar"/>
|
||||
<include name="**/org.eclipse.jface*/**/*.jar"/>
|
||||
<include name="**/org.eclipse.text*.jar"/>
|
||||
<include name="**/org.eclipse.text*/**/*.jar"/>
|
||||
<include name="**/org.eclipse.team*.jar"/>
|
||||
<include name="**/org.eclipse.team*/**/*.jar"/>
|
||||
<include name="**/org.junit*.jar"/>
|
||||
<include name="**/org.junit*/**/*.jar"/>
|
||||
<include name="**/com.ibm.icu*.jar"/>
|
||||
<include name="**/com.jcraft.jsch*.jar"/>
|
||||
</patternset>
|
||||
|
||||
<pathconvert property="javadoc.classpath">
|
||||
<path>
|
||||
<fileset dir="${safeBaseLocation}">
|
||||
<patternset refid="platform.classpath.pattern"/>
|
||||
</fileset>
|
||||
</path>
|
||||
</pathconvert>
|
||||
<echo level="info" message="Done computing classpath."/>
|
||||
<echo level="info" message="Bootclasspath is: ${bootclasspath}"/>
|
||||
<echo level="info" message="Classpath is: ${javadoc.classpath}"/>
|
||||
</target>
|
||||
|
||||
<target name="all" depends="init" unless="index.present">
|
||||
|
@ -28,24 +88,29 @@
|
|||
<available file="/usr/bin/javadoc" property="javadoc" value="/usr/bin/javadoc" />
|
||||
</target>
|
||||
|
||||
<target name="generateJavadoc" depends="getJavadocPath" if="javadoc">
|
||||
<target name="generateJavadoc" depends="getJavadocPath,computeClasspath" if="javadoc">
|
||||
<property name="optionsFile" value="temp.options.txt" />
|
||||
<copy file="options.txt" tofile="${optionsFile}" overwrite="true" />
|
||||
|
||||
<condition property="argsListDelimiter" value=":">
|
||||
<os family="unix" />
|
||||
</condition>
|
||||
<condition property="argsListDelimiter" value=";">
|
||||
<os family="windows" />
|
||||
</condition>
|
||||
|
||||
<replaceregexp file="${basedir}/${optionsFile}" flags="g" match="(\r\n?|\n);" replace="${argsListDelimiter}" />
|
||||
<replace file="${basedir}/${optionsFile}" token="@rt@" value="${bootclasspath}${argsListDelimiter}${javadoc.classpath}" />
|
||||
<replace file="${basedir}/${optionsFile}" token="@baseLocation@" value="${safeBaseLocation}" />
|
||||
|
||||
<!--scrub isv plugin directories of any preexisting api doc content-->
|
||||
<delete dir="reference/api" />
|
||||
<mkdir dir="reference/api" />
|
||||
|
||||
<condition property="sep" value=":">
|
||||
<os family="unix" />
|
||||
</condition>
|
||||
<condition property="sep" value=";">
|
||||
<os family="windows" />
|
||||
</condition>
|
||||
|
||||
<copy file="options.txt" tofile="temp.options.txt" />
|
||||
<replace file="${basedir}/temp.options.txt" token="@sep@" value="${sep}" />
|
||||
<replace file="${basedir}/temp.options.txt" token="@rt@" value="${bootclasspath}" />
|
||||
|
||||
<echo message="sep = ${argsListDelimiter}"/>
|
||||
<echo message="javadoc = ${javadoc}"/>
|
||||
<exec dir="." executable="${javadoc}" output="temp.bin.log">
|
||||
<arg line="@${basedir}/temp.options.txt -J-Xmx1000M" />
|
||||
<arg line="@${basedir}/${optionsFile} -J-Xmx1000M" />
|
||||
</exec>
|
||||
</target>
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
-charset "iso-8859-1"
|
||||
-sourcepath "../org.eclipse.dstore.core/src@sep@../org.eclipse.dstore.extra/src"
|
||||
-sourcepath "../org.eclipse.dstore.core/src
|
||||
;../org.eclipse.dstore.extra/src"
|
||||
-d reference/api
|
||||
-classpath @rt@
|
||||
-breakiterator
|
||||
|
|
1
rse/doc/org.eclipse.dstore.doc.isv/reference/.cvsignore
Normal file
1
rse/doc/org.eclipse.dstore.doc.isv/reference/.cvsignore
Normal file
|
@ -0,0 +1 @@
|
|||
api
|
Loading…
Add table
Reference in a new issue