This file is indexed.

/usr/share/spring-build/docbook/documentation.xml is in spring-build-scripts 2.7.0-2build1.

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
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<?xml version="1.0" encoding="UTF-8"?>
<!--
   Copyright 2010 SpringSource
   
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at
   
       http://www.apache.org/licenses/LICENSE-2.0
   
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
-->
<project name="documentation-docbook" xmlns:ivy="antlib:org.apache.ivy.ant">

	<import file="common.xml"/>
	
	<filterset id="docbook.filters" />

<!-- Main targets -->
	<target name="doc-html" depends="docbook.init"
			description="Creates both the single and multi-page HTML versions of the reference documentation.">
		<delete quiet="true" dir="${docbook.output.dir}/html"/>
		<delete quiet="true" dir="${docbook.output.dir}/htmlsingle"/>
		<mkdir dir="${docbook.output.dir}"/>

		<mkdir dir="${docbook.staging.dir}"/>
		<copy todir="${docbook.staging.dir}">
			<fileset dir="${docbook.src.dir}" erroronmissingdir="false">
				<include name="**/*.xml"/>
			</fileset>
			<filterset>
				<filterset refid="docbook.filters"/>
			</filterset>
		</copy>
		<copy todir="${docbook.staging.dir}/images">
			<fileset dir="${docbook.images.dir}" erroronmissingdir="false">
				<include name="**/*"/>
			</fileset>
		</copy>

		<ant antfile="${docbook.dir}/build-docbook.xml" inheritAll="false">
			<property name="dbf.basedir" value="${docbook.dir}"/>
			<property name="docbook.dir" value=""/>
			<property name="docbook.file" value="${ant.project.name}"/>
			<property name="docbook.src.dir" value="${docbook.staging.dir}"/>
			<property name="images.src.dir" value="${docbook.staging.dir}/images"/>
			<property name="src.dir" value="${docbook.build.dir}"/>
			<property name="css.src.dir" value="${docbook.css.dir}"/>
			<property name="styles.src.dir" value="${docbook.styles.dir}"/>
			<property name="target.dir" value="${docbook.target.dir}"/>
			<target name="html"/>
			<target name="htmlsingle"/>
		</ant>
		<move file="${docbook.target.dir}/html" todir="${docbook.output.dir}"/>
		<move file="${docbook.target.dir}/htmlsingle" todir="${docbook.output.dir}"/>

		<delete quiet="true" dir="${docbook.target.dir}"/>
	</target>

	<target name="doc-pdf" depends="docbook.init"
			description="Creates the PDF version of the reference documentation.">
		<delete quiet="true" dir="${docbook.output.dir}/pdf"/>
		<mkdir dir="${docbook.output.dir}"/>

		<mkdir dir="${docbook.staging.dir}"/>
		<copy todir="${docbook.staging.dir}">
			<fileset dir="${docbook.src.dir}" erroronmissingdir="false">
				<include name="**/*.xml"/>
			</fileset>
			<filterset>
				<filterset refid="docbook.filters"/>
			</filterset>
		</copy>
		<copy todir="${docbook.staging.dir}/images">
			<fileset dir="${docbook.images.dir}" erroronmissingdir="false">
				<include name="**/*"/>
			</fileset>
		</copy>

		<ant antfile="${docbook.dir}/build-docbook.xml" inheritAll="false">
			<property name="dbf.basedir" value="${docbook.dir}"/>
			<property name="docbook.dir" value=""/>
			<property name="docbook.file" value="${ant.project.name}"/>
			<property name="docbook.src.dir" value="${docbook.staging.dir}"/>
			<property name="images.src.dir" value="${docbook.staging.dir}/images"/>
			<property name="src.dir" value="${docbook.build.dir}"/>
			<property name="css.src.dir" value="${docbook.css.dir}"/>
			<property name="styles.src.dir" value="${docbook.styles.dir}"/>
			<property name="target.dir" value="${docbook.target.dir}"/>
			<target name="pdf"/>
		</ant>
		<move file="${docbook.target.dir}/pdf" todir="${docbook.output.dir}"/>

		<delete quiet="true" dir="${docbook.target.dir}"/>
	</target>

	<target name="doc-eclipse" depends="docbook.init"
			description="Creates the Eclipse Help version of the reference documentation.">
		<delete quiet="true" dir="${docbook.output.dir}/eclipse"/>
		<mkdir dir="${docbook.output.dir}"/>

		<mkdir dir="${docbook.staging.dir}"/>
		<copy todir="${docbook.staging.dir}">
			<fileset dir="${docbook.src.dir}" erroronmissingdir="false">
				<include name="**/*.xml"/>
			</fileset>
			<filterset>
				<filterset refid="docbook.filters"/>
			</filterset>
		</copy>
		<copy todir="${docbook.staging.dir}/images">
			<fileset dir="${docbook.images.dir}" erroronmissingdir="false">
				<include name="**/*"/>
			</fileset>
		</copy>

		<ant antfile="${docbook.dir}/build-docbook.xml" inheritAll="false">
			<property name="dbf.basedir" value="${docbook.dir}"/>
			<property name="docbook.dir" value=""/>
			<property name="docbook.file" value="${ant.project.name}"/>
			<property name="docbook.src.dir" value="${docbook.staging.dir}"/>
			<property name="images.src.dir" value="${docbook.staging.dir}/images"/>
			<property name="src.dir" value="${docbook.build.dir}"/>
			<property name="target.dir" value="${docbook.target.dir}"/>
			<property name="eclipse.plugin.name" value="${docbook.eclipse.plugin.name}"/>
			<property name="eclipse.plugin.id" value="${docbook.eclipse.plugin.id}"/>
			<property name="eclipse.plugin.provider" value="${docbook.eclipse.plugin.provider}"/>
			<target name="eclipse"/>
		</ant>
		<move file="${docbook.target.dir}/eclipse" todir="${docbook.output.dir}"/>

		<delete quiet="true" dir="${docbook.target.dir}"/>
	</target>

	<target name="doc" depends="docbook.init, ivy.init, resolve"
			description="Creates both the single and multi-page HTML versions and the PDF version of the reference documentation.">
		<delete quiet="true" dir="${docbook.output.dir}/html"/>
		<delete quiet="true" dir="${docbook.output.dir}/htmlsingle"/>
		<delete quiet="true" dir="${docbook.output.dir}/pdf"/>
		<mkdir dir="${docbook.output.dir}"/>

		<mkdir dir="${docbook.staging.dir}"/>
		<copy todir="${docbook.staging.dir}">
			<fileset dir="${docbook.src.dir}" erroronmissingdir="false">
				<include name="**/*.xml"/>
			</fileset>
			<filterset>
				<filterset refid="docbook.filters"/>
			</filterset>
		</copy>
		<copy todir="${docbook.staging.dir}/images">
			<fileset dir="${docbook.images.dir}" erroronmissingdir="false">
				<include name="**/*"/>
			</fileset>
		</copy>

		<ant antfile="${docbook.dir}/build-docbook.xml" inheritAll="false">
			<property name="dbf.basedir" value="${docbook.dir}"/>
			<property name="docbook.dir" value=""/>
			<property name="docbook.file" value="${ant.project.name}"/>
			<property name="docbook.src.dir" value="${docbook.staging.dir}"/>
			<property name="images.src.dir" value="${docbook.staging.dir}/images"/>
			<property name="src.dir" value="${docbook.build.dir}"/>
			<property name="css.src.dir" value="${docbook.css.dir}"/>
			<property name="styles.src.dir" value="${docbook.styles.dir}"/>
			<property name="target.dir" value="${docbook.target.dir}"/>
			<target name="html"/>
			<target name="htmlsingle"/>
			<target name="pdf"/>
		</ant>
		<move file="${docbook.target.dir}/htmlsingle/${ant.project.name}.zip"
				tofile="${docbook.target.dir}/htmlsingle/${ant.project.name}-single.zip"/>
		<move file="${docbook.target.dir}/html" todir="${docbook.output.dir}"/>
		<move file="${docbook.target.dir}/htmlsingle" todir="${docbook.output.dir}"/>
		<move file="${docbook.target.dir}/pdf" todir="${docbook.output.dir}"/>

		<ivy:publish resolver="integration" pubdate="${timestamp}" status="${release.type}">
			<artifacts pattern="${docbook.output.dir}/html/[artifact].[ext]"/>
			<artifacts pattern="${docbook.output.dir}/htmlsingle/[artifact].[ext]"/>
			<artifacts pattern="${docbook.output.dir}/pdf/[artifact].[ext]"/>
			<artifacts pattern="${ivy.output.dir}/[artifact].[ext]"/>
			<artifacts pattern="${license.dir}/[artifact].[ext]"/>
		</ivy:publish>

		<delete quiet="true" dir="${docbook.target.dir}"/>
	</target>

<!-- Other targets -->
	<target name="docbook.init" depends="ivy.init, docbook.download.init" if="docbook.download.needed">
		<ivy:cachepath resolveId="docbook.framework" pathid="docbook.framework" organisation="org.apache.velocity"
				module="org.apache.velocity.docbookframework.dist"
				revision="${org.apache.velocity.docbookframework.dist.version}" conf="runtime" type="zip" inline="true"
				log="download-only"/>
		<unzip dest="${docbook.dir}">
			<path refid="docbook.framework"/>
			<globmapper from="DocBook-Framework-${org.apache.velocity.docbookframework.dist.version}/*" to="*"/>
		</unzip>
		<ivy:retrieve resolveId="xslthl" pattern="${docbook.dir}/lib/[artifact]-[revision].[ext]"
				organisation="net.sourceforge.xslthl" module="com.springsource.net.sf.xslthl"
				revision="${com.springsource.net.sf.xslthl.version}" conf="runtime" type="jar" inline="true"
				log="download-only"/>
		<ivy:retrieve resolveId="xerces" pattern="${docbook.dir}/lib/[artifact]-[revision].[ext]"
				organisation="org.apache.xerces" module="com.springsource.org.apache.xerces"
				revision="${com.springsource.org.apache.xerces.version}" conf="runtime" type="jar" inline="true"
				log="download-only"/>
	</target>

	<target name="docbook.download.init">
		<condition property="docbook.download.needed">
			<not>
				<available file="${docbook.dir}" type="dir"/>
			</not>
		</condition>
	</target>

</project>