Browse Source

remove the <question> element from generated HTML.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@268978 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 24 years ago
parent
commit
2720eb2095
2 changed files with 28 additions and 28 deletions
  1. +26
    -26
      webpage/docs/faq.html
  2. +2
    -2
      webpage/xdocs/stylesheets/faq.vsl

+ 26
- 26
webpage/docs/faq.html View File

@@ -95,13 +95,13 @@
<blockquote>
<ul>
<li><a href="#what-is-ant">
<question>What is Ant?</question>
What is Ant?
</a></li>
<li><a href="#ant-name">
<question>Why do you call it Ant?</question>
Why do you call it Ant?
</a></li>
<li><a href="#history">
<question>Tell us a little bit about Ant's history.</question>
Tell us a little bit about Ant's history.
</a></li>
</ul>
</blockquote>
@@ -117,8 +117,8 @@
<blockquote>
<ul>
<li><a href="#no-gnu-tar">
<question>I get checksum errors when I try to extract the
<code>tar.gz</code> distribution file. Why?</question>
I get checksum errors when I try to extract the
<code>tar.gz</code> distribution file. Why?
</a></li>
</ul>
</blockquote>
@@ -134,11 +134,11 @@
<blockquote>
<ul>
<li><a href="#integration">
<question>Is Ant supported by my IDE/Editor?</question>
Is Ant supported by my IDE/Editor?
</a></li>
<li><a href="#emacs-mode">
<question>Why doesn't (X)Emacs parse the error messages generated
by Ant correctly?</question>
Why doesn't (X)Emacs parse the error messages generated
by Ant correctly?
</a></li>
</ul>
</blockquote>
@@ -154,11 +154,11 @@
<blockquote>
<ul>
<li><a href="#xml-entity-include">
<question>How do I include an XML snippet in my build file?</question>
How do I include an XML snippet in my build file?
</a></li>
<li><a href="#mail-logger">
<question>How do I send an email with the result of my build
process?</question>
How do I send an email with the result of my build
process?
</a></li>
</ul>
</blockquote>
@@ -174,8 +174,8 @@
<blockquote>
<ul>
<li><a href="#remove-cr">
<question>&lt;chmod&gt; or &lt;exec&gt; don't work in Ant
1.3 on Unix</question>
&lt;chmod&gt; or &lt;exec&gt; don't work in Ant
1.3 on Unix
</a></li>
</ul>
</blockquote>
@@ -198,7 +198,7 @@
<tr><td bgcolor="#828DA6">
<font color="#ffffff" face="arial,helvetica,sanserif">
<strong>
<question>What is Ant?</question>
What is Ant?
</strong>
</font>
</td></tr>
@@ -216,7 +216,7 @@
<tr><td bgcolor="#828DA6">
<font color="#ffffff" face="arial,helvetica,sanserif">
<strong>
<question>Why do you call it Ant?</question>
Why do you call it Ant?
</strong>
</font>
</td></tr>
@@ -239,7 +239,7 @@
<tr><td bgcolor="#828DA6">
<font color="#ffffff" face="arial,helvetica,sanserif">
<strong>
<question>Tell us a little bit about Ant's history.</question>
Tell us a little bit about Ant's history.
</strong>
</font>
</td></tr>
@@ -332,8 +332,8 @@
<tr><td bgcolor="#828DA6">
<font color="#ffffff" face="arial,helvetica,sanserif">
<strong>
<question>I get checksum errors when I try to extract the
<code>tar.gz</code> distribution file. Why?</question>
I get checksum errors when I try to extract the
<code>tar.gz</code> distribution file. Why?
</strong>
</font>
</td></tr>
@@ -362,7 +362,7 @@
<tr><td bgcolor="#828DA6">
<font color="#ffffff" face="arial,helvetica,sanserif">
<strong>
<question>Is Ant supported by my IDE/Editor?</question>
Is Ant supported by my IDE/Editor?
</strong>
</font>
</td></tr>
@@ -379,8 +379,8 @@
<tr><td bgcolor="#828DA6">
<font color="#ffffff" face="arial,helvetica,sanserif">
<strong>
<question>Why doesn't (X)Emacs parse the error messages generated
by Ant correctly?</question>
Why doesn't (X)Emacs parse the error messages generated
by Ant correctly?
</strong>
</font>
</td></tr>
@@ -430,7 +430,7 @@
<tr><td bgcolor="#828DA6">
<font color="#ffffff" face="arial,helvetica,sanserif">
<strong>
<question>How do I include an XML snippet in my build file?</question>
How do I include an XML snippet in my build file?
</strong>
</font>
</td></tr>
@@ -510,8 +510,8 @@
<tr><td bgcolor="#828DA6">
<font color="#ffffff" face="arial,helvetica,sanserif">
<strong>
<question>How do I send an email with the result of my build
process?</question>
How do I send an email with the result of my build
process?
</strong>
</font>
</td></tr>
@@ -719,8 +719,8 @@ ant -listener BuildMonitor
<tr><td bgcolor="#828DA6">
<font color="#ffffff" face="arial,helvetica,sanserif">
<strong>
<question>&lt;chmod&gt; or &lt;exec&gt; don't work in Ant
1.3 on Unix</question>
&lt;chmod&gt; or &lt;exec&gt; don't work in Ant
1.3 on Unix
</strong>
</font>
</td></tr>


+ 2
- 2
webpage/xdocs/stylesheets/faq.vsl View File

@@ -42,7 +42,7 @@
#macro (subtoc $faq)
#set ($id = $faq.getAttributeValue("id"))
<li><a href="$pound$id">
$xmlout.outputString($faq.getChild("question"))
$xmlout.outputString($faq.getChild("question"), true)
</a></li>
#end

@@ -59,7 +59,7 @@
<tr><td bgcolor="$subbannerbg">
<font color="$subbannerfg" face="arial,helvetica,sanserif">
<strong>
$xmlout.outputString($faq.getChild("question"))
$xmlout.outputString($faq.getChild("question"), true)
</strong>
</font>
</td></tr>


Loading…
Cancel
Save