Fix xml entities in xdoc source files (only in Maven 1.1 because of a bug in an old Jelly version). git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@399086 13f79535-47bb-0310-9956-ffa450edef68
91 lines
2.3 KiB
XML
91 lines
2.3 KiB
XML
<?xml version="1.0"?>
|
|
<!--
|
|
/*
|
|
* Copyright 2001-2004 The Apache Software Foundation.
|
|
*
|
|
* 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.
|
|
*/
|
|
-->
|
|
|
|
<!-- $Id$ -->
|
|
<!DOCTYPE document [
|
|
<!ENTITY % common-links SYSTEM "common/links.xml">
|
|
%common-links;
|
|
]>
|
|
<document>
|
|
|
|
<properties>
|
|
<title>Introduction to HiveMind</title>
|
|
<author email="hlship@apache.org">Howard M. Lewis Ship</author>
|
|
</properties>
|
|
|
|
<body>
|
|
<section name="MPXDOC-17">
|
|
<table>
|
|
<tr>
|
|
<th>Entity</th>
|
|
<th>Expected result</th>
|
|
<th>Actual result</th>
|
|
</tr>
|
|
<tr>
|
|
<td>_module</td>
|
|
<td><code><module></code></td>
|
|
<td>&_module;</td>
|
|
</tr>
|
|
<tr>
|
|
<td>module</td>
|
|
<td><a href="descriptor.html#module">module</a></td>
|
|
<td>&module;</td>
|
|
</tr>
|
|
<tr>
|
|
<td>apache.a</td>
|
|
<td>Apache</td>
|
|
<td>&apache.a;</td>
|
|
</tr>
|
|
<tr>
|
|
<td>apache.b</td>
|
|
<td><Apache></td>
|
|
<td>&apache.b;</td>
|
|
</tr>
|
|
<tr>
|
|
<td>apache.c</td>
|
|
<td>[Apache]</td>
|
|
<td>&apache.c;</td>
|
|
</tr>
|
|
<tr>
|
|
<td>apache.d</td>
|
|
<td>
|
|
<a href="http://www.apache.org/">&apache.b;</a>
|
|
</td>
|
|
<td>&apache.d;</td>
|
|
</tr>
|
|
<tr>
|
|
<td>apache.e</td>
|
|
<td><a href="http://www.apache.org/">&apache.b;</a></td>
|
|
<td>&apache.e;</td>
|
|
</tr>
|
|
<tr>
|
|
<td>apache.f</td>
|
|
<td><em>&apache.a;</em></td>
|
|
<td>&apache.f;</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<p><a href="#Section_2">blah</a></p>
|
|
</section>
|
|
<section name="Section 2">
|
|
<p><a href="/servlet/x?param=1&q=foo">foo -> bar</a></p>
|
|
</section>
|
|
</body>
|
|
</document>
|