blob: 7bb9c925d13eb45143347cd47db30773c3e14317 [file] [log] [blame]
<?xml version="1.0"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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.
-->
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:import href="copyover.xsl"/>
<xsl:template match="faqs">
<faqs title="{ @title}">
<xsl:apply-templates />
<faq>
<question>
How can I add my FAQ to this document?
</question>
<answer>
<p>
Follow the instructions found in <link href="../howto/howto-author-faq.html">How-To Author an FAQ.</link>
</p>
</answer>
</faq>
<faq>
<question>
How can I suggest improvements to existing FAQs?
</question>
<answer>
<p>
Given the rapid pace of change with Cocoon, many individual FAQs quickly become out-of-date and confusing to new users. If you have the relevant knowledge, please consider updating other FAQs on this page for technical errors. If you see a few typos, please consider fixing them too. Follow the instructions found in <link href="../howto/howto-author-faq.html">How-To Author an FAQ.</link>
</p>
</answer>
</faq>
</faqs>
</xsl:template>
</xsl:stylesheet>