You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by br...@apache.org on 2005/05/21 17:10:42 UTC

svn commit: r171222 [3/4] - in /maven/maven-1/plugins/trunk/xdoc: ./ src/main/org/apache/maven/xdoc/ src/main/org/apache/maven/xdoc/util/ src/plugin-resources/ src/plugin-resources/templates/ src/plugin-resources/templates/scm/ src/plugin-test/ src/plugin-test/test01/xdocs/ src/plugin-test/test03/ src/plugin-test/test03/xdocs/ src/plugin-test/test03/xdocs/images/ src/plugin-test/test03/xdocs/subdir/ src/plugin-test/test03/xdocs/subdir/subdir2/ src/plugin-test/test04/ src/plugin-test/test04/xdocs/ src/plugin-test/test04/xdocs/images/ src/plugin-test/test04/xdocs/subdir/ src/plugin-test/test04/xdocs/subdir/subdir2/ src/plugin-test/testDependenciesComment/ src/test/org/apache/maven/xdoc/ src/test/org/apache/maven/xdoc/util/ xdocs/

Modified: maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/team-list.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/team-list.xml?rev=171222&r1=171221&r2=171222&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/team-list.xml (original)
+++ maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/team-list.xml Sat May 21 08:10:41 2005
@@ -17,141 +17,194 @@
  */
  -->
 
-<document>
 
-  <properties>
-    <title>Project Team</title>
-  </properties>
-  
-  <head>
-  	<script type="text/javascript">
-  	  function offsetDate(id, offset) {
-
-            var now = new Date() ;
-            var nowTime = now.getTime() ;
-            var localOffset = now.getTimezoneOffset() ;
-            var developerTime = nowTime + (offset * 60 * 60 * 1000) + (localOffset * 60 * 1000) ;
-            var developerDate = new Date(developerTime) ;
-
-            document.getElementById(id).innerHTML = developerDate;
-          }
-  	
-  	  function init() {
-	    #foreach ($developer in $project.developers)
-	       #if ($developer.timezone)
-	         #if ($developer.timezone != "")
-	           offsetDate("developer-$developer.id", "$developer.timezone");
-	         #end
-	       #end
-        #end
-      }
-    </script>
-  </head>
-  
-  <body onload="init();">
-
-    <section name="The Team">
-      <p>
-        A successful project requires many people to play many roles.
-        Some members write code or documentation, while others are
-        valuable as testers, submitting patches and suggestions.
-      </p>
-
-      <p>
-        The team is comprised of <a href="#Members">Members</a>
-        and <a href="#Contributors">Contributors</a>.  Members 
-        have direct access to the source of a project and actively
-        evolve the code-base.  Contributors improve the project
-        through submission of patches and suggestions to the Members.
-        The number of Contributors to the project is unbounded.
-        Get involved today.  All contributions to the project are
-        greatly appreciated.
-      </p>
-
-    <subsection name="Members">
-    #if ($project.developers.size() == 0)
-      <p>
-        There are no developers working on this project.  Please check
-        back at a later date.
-      </p>
-    #else
-      <p>
-        The following is a list of developers with commit privileges that have 
-        directly contributed to the project in one way or another.  
-      </p>
-      <table>
-        <thead>
-        <tr>
-          <th>Name</th>
-          <th>Id</th>
-          <th>Email</th>
-          <th>Organization</th>
-          <th>Roles</th>
-          <th>TZ Offset</th>
-          <th>Time</th>
-        </tr>
-        </thead>
-        <tbody>
-        #foreach ($developer in $project.developers)
-        <tr>
-          #if ($developer.url.length() != 0)
-          <td><a href="$developer.url">$!developer.name</a></td>
-          #else
-          <td>$!developer.name</td>
-          #end
-          <td><a name="$!developer.id"/>$!developer.id</td>
-          <td><a href="mailto:$!developer.email">$!developer.email</a></td>
-          <td>$!developer.organization</td>
-          <td>
-          #foreach ($role in $developer.roles)
-          $role<br/>
-          #end
-          </td>
-          <td>$!developer.timezone</td>
-          <td><span id="developer-$developer.id">Unknown</span></td>
-        </tr>
-        #end
-        </tbody>
-      </table>
-    #end
-	</subsection>
-	<subsection name="Contributors">
-    #if ($project.contributors.size() == 0)
-	  <p>
-	    There are no contributors listed for this project. Please check
- 	    back again later.
- 	  </p>
-    #else
-      <p>
-        The following additional people have contributed to this project
-        through the way of suggestions, patches or documentation.
-      </p>
-      <table>
-        <thead>
-        <tr>
-          <th>Name</th>
-          <th>Email</th>
-          <th>Organization</th>
-          <th>Roles</th>
-        </tr>
-        </thead>
-        <tbody>
-        #foreach ($contributor in $project.contributors)
-        <tr>
-          <td>$!contributor.name</td>
-          <td><a href="mailto:$!contributor.email">$!contributor.email</a></td>
-          <td>$!contributor.organization</td>
-          <td>
-          #foreach ($role in $contributor.roles)
-          $role<br/>
-          #end
-          </td>
-        </tr>
-        #end
-        </tbody>
-      </table>
-    #end
-    </subsection>
-    </section>
-  </body>
+<document>
+    <properties>
+        <title key="template.team_list.title"
+            bundle="plugin-resources\templates\templates" />
+    </properties>
+
+    <head>
+        <script type="text/javascript">
+            function offsetDate(id, offset) {
+              var now = new Date() ;
+              var nowTime = now.getTime() ;
+              var localOffset = now.getTimezoneOffset() ;
+              var developerTime = nowTime + (offset * 60 * 60 * 1000) + (localOffset * 60 * 1000) ;
+              var developerDate = new Date(developerTime) ;
+
+              document.getElementById(id).innerHTML = developerDate;
+            }
+
+            function init() {
+                #foreach ($developer in $project.developers)
+                    #if ($developer.timezone)
+                        #if ($developer.timezone != "")
+                            offsetDate("developer-$developer.id", "$developer.timezone");
+                        #end
+                    #end
+                #end
+            }
+        </script>
+    </head>
+
+    <body onload="init();">
+
+        <section key="template.team_list.section.title"
+            bundle="plugin-resources\templates\templates">
+            <p>
+                <message key="template.team_list.section.description1"
+                    bundle="plugin-resources\templates\templates" />
+            </p>
+
+            <p>
+                <message key="template.team_list.section.description2"
+                    bundle="plugin-resources\templates\templates" />
+            </p>
+
+            <subsection key="template.team_list.section.members.title"
+                bundle="plugin-resources\templates\templates">
+                #if ($project.developers.size() == 0)
+                  <p>
+                      <message
+                          key="template.team_list.section.no_developer"
+                          bundle="plugin-resources\templates\templates" />
+                  </p>
+                #else
+                <p>
+                    <message key="template.team_list.section.developers"
+                        bundle="plugin-resources\templates\templates" />
+                </p>
+                <table>
+                    <thead>
+                        <tr>
+                            <th>
+                                <message key="template.team_list.section.developer.name"
+                                    bundle="plugin-resources\templates\templates" />
+                            </th>
+                            <th>
+                                <message key="template.team_list.section.developer.id"
+                                    bundle="plugin-resources\templates\templates" />
+                            </th>
+                            <th>
+                                <message key="template.team_list.section.developer.email"
+                                    bundle="plugin-resources\templates\templates" />
+                            </th>
+                            <th>
+                                <message key="template.team_list.section.developer.organization"
+                                    bundle="plugin-resources\templates\templates" />
+                            </th>
+                            <th>
+                                <message key="template.team_list.section.developer.roles"
+                                    bundle="plugin-resources\templates\templates" />
+                            </th>
+                            <th>
+                                <message key="template.team_list.section.developer.offset"
+                                    bundle="plugin-resources\templates\templates" />
+                            </th>
+                            <th>
+                                <message key="template.team_list.section.developer.time"
+                                    bundle="plugin-resources\templates\templates" />
+                            </th>
+                        </tr>
+                    </thead>
+                    <tbody>
+                        #foreach ($developer in $project.developers)
+                        <tr>
+                            #if ($developer.url.length() != 0)
+                            <td>
+                                <a href="$developer.url">
+                                    $!developer.name
+                                </a>
+                            </td>
+                            #else
+                            <td>$!developer.name</td>
+                            #end
+                            <td>
+                                <a name="$!developer.id" />
+                                $!developer.id
+                            </td>
+                            <td>
+                                <a href="mailto:$!developer.email">
+                                    $!developer.email
+                                </a>
+                            </td>
+                            <td>$!developer.organization</td>
+                            <td>
+                                #foreach ($role in $developer.roles)
+                                $role
+                                <br />
+                                #end
+                            </td>
+                            <td>$!developer.timezone</td>
+                            <td>
+                                <span id="developer-$developer.id">
+                                    <message key="template.team_list.section.developer.timezone.unknown"
+                                        bundle="plugin-resources\templates\templates" />
+                                </span>
+                            </td>
+                        </tr>
+                        #end
+                    </tbody>
+                </table>
+                #end
+            </subsection>
+            <subsection
+                key="template.team_list.section.contributors.title"
+                bundle="plugin-resources\templates\templates">
+                #if ($project.contributors.size() == 0)
+                <p>
+                    <message key="template.team_list.section.no_contributor"
+                        bundle="plugin-resources\templates\templates" />
+                </p>
+                #else
+                <p>
+                    <message key="template.team_list.section.contributors"
+                        bundle="plugin-resources\templates\templates" />
+                </p>
+                <table>
+                    <thead>
+                        <tr>
+                            <th>
+                                <message key="template.team_list.section.contributor.name"
+                                    bundle="plugin-resources\templates\templates" />
+                            </th>
+                            <th>
+                                <message key="template.team_list.section.contributor.email"
+                                    bundle="plugin-resources\templates\templates" />
+                            </th>
+                            <th>
+                                <message key="template.team_list.section.contributor.organization"
+                                    bundle="plugin-resources\templates\templates" />
+                            </th>
+                            <th>
+                                <message key="template.team_list.section.contributor.roles"
+                                    bundle="plugin-resources\templates\templates" />
+                            </th>
+                        </tr>
+                    </thead>
+                    <tbody>
+                        #foreach ($contributor in $project.contributors)
+                        <tr>
+                            <td>$!contributor.name</td>
+                            <td>
+                                <a href="mailto:$!contributor.email">
+                                    $!contributor.email
+                                </a>
+                            </td>
+                            <td>$!contributor.organization</td>
+                            <td>
+                                #foreach ($role in $contributor.roles)
+                                $role
+                                <br />
+                                #end
+                            </td>
+                        </tr>
+                        #end
+                    </tbody>
+                </table>
+                #end
+            </subsection>
+        </section>
+    </body>
 </document>

Added: maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/templates.properties
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/templates.properties?rev=171222&view=auto
==============================================================================
--- maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/templates.properties (added)
+++ maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/templates.properties Sat May 21 08:10:41 2005
@@ -0,0 +1,154 @@
+# -------------------------------------------------------------------
+# 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.
+# -------------------------------------------------------------------
+
+# To display the default language
+defaultLocale.byDefault=English [By default]
+
+# For cvs.xml
+template.cvs.title=CVS
+template.cvs.section1.title=Repository
+template.cvs.section1.no_repository=No SCM repository is defined.
+template.cvs.section2.title=Web Access
+template.cvs.section3.title=Anonymous CVS Access
+template.cvs.section3.description=This project's CVS repository can be checked out through anonymous (pserver) CVS with the following instruction set. When prompted for a password for anonymous, simply press the Enter key.
+template.cvs.section3.updates=Updates from within the module's directory do not need the -d parameter.
+template.cvs.section4.title=Developer CVS Access via SSH
+template.cvs.section4.description=Only project developers can access the CVS tree via this method. SSH1 must be installed on your client machine. Substitute <b>name</b> with the proper value. Enter your site password when prompted.
+template.cvs.section4.remember=Remember to replace 'username' with your actual username on the server.
+template.cvs.section5.title=CVS Access behind a firewall
+template.cvs.section5.description1=For those developers who are stuck behind a corporate firewall, 
+template.cvs.section5.description2=can use the viewcvs web interface to checkout the source code.
+
+# For cvs-usage.xml
+template.cvs_usage.title=CVS
+template.cvs_usage.section1.title=Repository
+template.cvs_usage.section1.no_repository=No SCM repository is defined.
+template.cvs_usage.section2.title=Web Access
+template.cvs_usage.section3.title=Anonymous Access with Maven
+template.cvs_usage.section3.description=This project's CVS repository can be checked out through anonymous (pserver) CVS with the following instruction on a single line.
+template.cvs_usage.section4.title=Anonymous CVS Access
+template.cvs_usage.section4.description=This project's CVS repository can be checked out through anonymous (pserver) CVS with the following instruction set. When prompted for a password for anonymous, simply press the Enter key.
+template.cvs_usage.section4.updates=Updates from within the module's directory do not need the -d parameter.
+template.cvs_usage.section5.title=Developer Access with Maven
+template.cvs_usage.section5.description=Only project developers can access the CVS tree via this method. Substitute <b>username</b> with the proper value.
+template.cvs_usage.section5.remember=Remember to replace 'username' with your actual username on the server.<br/> Also change <code>ssh</code> in <code>maven.scm.cvs.rsh=ssh</code>  to the name of your ssh executable.
+template.cvs_usage.section6.title=Developer CVS Access via SSH
+template.cvs_usage.section6.description=Only project developers can access the CVS tree via this method. SSH1 must be installed on your client machine. Substitute  <b>username</b> with the proper value. Enter your site password when prompted.
+template.cvs_usage.section6.remember=Remember to replace 'username' with your actual username on the server.
+template.cvs_usage.section7.title=CVS Access behind a firewall
+template.cvs_usage.section7.description1=For those developers who are stuck behind a corporate firewall, 
+template.cvs_usage.section7.description2=can use the viewcvs web interface to checkout the source code.
+
+# For dependencies.xml
+template.dependencies.title=Dependencies
+template.dependencies.section.title=Dependencies
+template.dependencies.section.no_dependency=There are no dependencies for this project. It is a standalone application that does not depend on any other project.
+template.dependencies.section.dependencies=The following is a list of dependencies for this project. These dependencies are required to compile and run the application:
+template.dependencies.section.artifactID=Artifact ID
+template.dependencies.section.type=Type
+template.dependencies.section.version=Version
+template.dependencies.section.url=URL
+
+# For issue-tracking.xml
+template.issue_tracking.title=Issue Tracking
+template.issue_tracking.section.title=Issue Tracking
+
+# For mail_lists.xml
+template.mail_lists.not_available=Not Available
+template.mail_lists.title=Mailing Lists
+template.mail_lists.section.title=Mailing Lists
+template.mail_lists.section.no_mail_list=There are no mailing lists established for this project. Please check back at a later date.
+template.mail_lists.section.mail_lists=These are the mailing lists that have been established for this project. For each list, there is a subscribe, unsubscribe, and an archive link.
+template.mail_lists.section.list_name=List Name
+template.mail_lists.section.subscribe=Subscribe
+template.mail_lists.section.unsubscribe=Unsubscribe
+template.mail_lists.section.archive=Archive
+
+# For maven-reports.xml
+template.maven_reports.title=Project Reports
+template.maven_reports.section.title=Maven Generated Reports
+template.maven_reports.section.maven_reports1=This document provides an overview of the various reports that are automatically generated by 
+template.maven_reports.section.maven_reports2=. Each report is briefly described below.
+template.maven_reports.section.subsection.title=Overview
+template.maven_reports.section.subsection.document=Document
+template.maven_reports.section.subsection.description=Description
+
+# For project-info.xml
+template.project_info.title=Project Information
+template.project_info.section.title=General Project Information
+template.project_info.section.project_information1=This document provides an overview of the various documents and links that are part of this project's general information.  All of this content is automatically generated by 
+template.project_info.section.project_information2=on behalf of the project.
+template.project_info.section.subsection.title=Overview
+template.project_info.section.subsection.document=Document
+template.project_info.section.subsection.description=Description
+template.project_info.section.subsection.document.mailing_lists=Mailing Lists
+template.project_info.section.subsection.description.mailing_lists=This document provides subscription and archive information for this project's mailing lists.
+template.project_info.section.subsection.document.project_team=Project Team
+template.project_info.section.subsection.description.project_team=This document provides information on the members of this project. These are the individuals who have contributed to the project in one form or another.
+template.project_info.section.subsection.document.dependencies=Dependencies
+template.project_info.section.subsection.description.dependencies=This document lists the projects dependencies and provides information on each dependency.
+template.project_info.section.subsection.document.source_repository=Source Repository
+template.project_info.section.subsection.description.source_repository=This is a link to the online source repository that can be viewed via a web browser.
+template.project_info.section.subsection.document.issue_tracking=Issue Tracking
+template.project_info.section.subsection.description.issue_tracking=This is a link to the issue tracking system for this project.  Issues (bugs, features, change requests) can be created and queried using this link.
+
+# For team-list.xml
+template.team_list.title=Team list
+template.team_list.section.title=The Team
+template.team_list.section.description1=A successful project requires many people to play many roles. Some members write code or documentation, while others are valuable as testers, submitting patches and suggestions.
+template.team_list.section.description2=The team is comprised of Members and Contributors. Members have direct access to the source of a project and actively evolve the code-base. Contributors improve the project through submission of patches and suggestions to the Members. The number of Contributors to the project is unbounded. Get involved today. All contributions to the project are greatly appreciated.
+template.team_list.section.members.title=Members
+template.team_list.section.no_developer=There are no developers working on this project. Please check back at a later date.
+template.team_list.section.developers=The following is a list of developers with commit privileges that have directly contributed to the project in one way or another.  
+template.team_list.section.developer.name=Name
+template.team_list.section.developer.id=Id
+template.team_list.section.developer.email=Email
+template.team_list.section.developer.organization=Organization
+template.team_list.section.developer.roles=Roles
+template.team_list.section.developer.offset=TZ Offset
+template.team_list.section.developer.time=Time
+template.team_list.section.contributors.title=Contributors
+template.team_list.section.no_contributor=There are no contributors listed for this project. Please check back again later.
+template.team_list.section.contributors=The following additional people have contributed to this project through the way of suggestions, patches or documentation.
+template.team_list.section.contributor.name=Name
+template.team_list.section.contributor.email=Email
+template.team_list.section.contributor.organization=Organization
+template.team_list.section.contributor.roles=Roles
+template.team_list.section.developer.timezone.unknown=Unknown
+
+# For navigation.jelly
+navigation.menu.project_documentation=Project Documentation
+navigation.menu.item.about=About
+navigation.menu.item.downloads=Downloads
+navigation.menu.item.project_info=Project Info
+navigation.menu.item.mailing_lists=Mailing Lists
+navigation.menu.item.project_team=Project Team
+navigation.menu.item.dependencies=Dependencies
+navigation.menu.item.source_repository=Source Repository
+navigation.menu.item.issue_tracking=Issue Tracking
+navigation.menu.item.project_reports=Project Reports
+navigation.menu.item.development_process=Development Process
+
+# For site.jsl
+site.legend=Legend
+site.last_published=Last published
+site.doc_for=Doc for 
+site.external_link=External Link
+site.opens_new_window=Opens in a new window
+site.language=Language
+site.goals=Goals
+site.goal=Goal
+site.description=Description

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/templates.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/templates.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/templates_de.properties
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/templates_de.properties?rev=171222&view=auto
==============================================================================
--- maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/templates_de.properties (added)
+++ maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/templates_de.properties Sat May 21 08:10:41 2005
@@ -0,0 +1,153 @@
+# -------------------------------------------------------------------
+# 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.
+# -------------------------------------------------------------------
+
+# Translated by Daniel Frey (daniel.frey@xmatrix.ch)
+
+# To display the default language
+defaultLocale.byDefault=Deutsche [Durch Rückstellung]
+
+# For cvs.xml
+template.cvs.title = CVS
+template.cvs.section1.title = Repository
+template.cvs.section1.no_repository = Es ist kein SCM definiert.
+template.cvs.section2.title = Zugriff über das Web
+template.cvs.section3.title = Anonymer CVS Zugriff
+template.cvs.section3.description = This project's CVS repository can be checked out through anonymous (pserver) CVS with the following instruction set. When prompted for a password for anonymous, simply press the Enter key.
+template.cvs.section3.updates = Updates from within the module's directory do not need the -d parameter.
+template.cvs.section4.title = Developer CVS Access via SSH
+template.cvs.section4.description = Only project developers can access the CVS tree via this method. SSH1 must be installed on your client machine. Substitute <b>name</b> with the proper value. Enter your site password when prompted.
+template.cvs.section4.remember = Remember to replace 'username' with your actual username on the server.
+template.cvs.section5.title = CVS Access behind a firewall
+template.cvs.section5.description1 = For those developers who are stuck behind a corporate firewall, 
+template.cvs.section5.description2 = can use the viewcvs web interface to checkout the source code.
+
+# For cvs-usage.xml
+template.cvs_usage.title = CVS
+template.cvs_usage.section1.title = Repository
+template.cvs_usage.section1.no_repository = No SCM repository is defined.
+template.cvs_usage.section2.title = Web Access
+template.cvs_usage.section3.title = Anonymous Access with Maven
+template.cvs_usage.section3.description = This project's CVS repository can be checked out through anonymous (pserver) CVS with the following instruction on a single line.
+template.cvs_usage.section4.title = Anonymous CVS Access
+template.cvs_usage.section4.description = This project's CVS repository can be checked out through anonymous (pserver) CVS with the following instruction set. When prompted for a password for anonymous, simply press the Enter key.
+template.cvs_usage.section4.updates = Updates from within the module's directory do not need the -d parameter.
+template.cvs_usage.section5.title = Developer Access with Maven
+template.cvs_usage.section5.description = Only project developers can access the CVS tree via this method. Substitute <b>username</b> with the proper value.
+template.cvs_usage.section5.remember = Remember to replace 'username' with your actual username on the server.<br/> Also change <code>ssh</code> in <code>maven.scm.cvs.rsh = ssh</code>  to the name of your ssh executable.
+template.cvs_usage.section6.title = Developer CVS Access via SSH
+template.cvs_usage.section6.description = Only project developers can access the CVS tree via this method. SSH1 must be installed on your client machine. Substitute  <b>username</b> with the proper value. Enter your site password when prompted.
+template.cvs_usage.section6.remember = Remember to replace 'username' with your actual username on the server.
+template.cvs_usage.section7.title = CVS Access behind a firewall
+template.cvs_usage.section7.description1 = For those developers who are stuck behind a corporate firewall, 
+template.cvs_usage.section7.description2 = can use the viewcvs web interface to checkout the source code.
+
+# For dependencies.xml
+template.dependencies.title = Abhängigkeiten
+template.dependencies.section.title = Abhängigkeiten
+template.dependencies.section.no_dependency = Für dieses Projekt existieren keine Abhängigkeiten. Es ist eine autonome Lösung ohne externe Abhängigkeiten.
+template.dependencies.section.dependencies = Im Foldenden finden Sie eine Liste der Abhängikeiten für dieses Projekt. Diese Abhängikeiten müssen zur Verfügung stehen, um das Projekt zu kompilieren oder laufen zu lassen:
+template.dependencies.section.artifactID = Artifact ID
+template.dependencies.section.type = Typ
+template.dependencies.section.version = Version
+template.dependencies.section.url = URL
+
+# For issue-tracking.xml
+template.issue_tracking.title = Fehlerbehandlung
+template.issue_tracking.section.title = Fehlerbehandlung
+
+# For mail_lists.xml
+template.mail_lists.title = Mailinglisten
+template.mail_lists.section.title = Mailinglisten
+template.mail_lists.section.no_mail_list = Für dieses Projekt wurden keine Mailinglisten eingerichtet. Bitte schauen Sie später nochmals rein.
+template.mail_lists.section.mail_lists = Dies sind die Mailinglisten, die für dieses Projekt eingerichtet worden sind. Für jede Liste gibt es einen Abonnieren-, Abbestellen- und einen Archiv-Link.
+template.mail_lists.section.list_name = Mailinglisten Name
+template.mail_lists.section.subscribe = Abonnieren
+template.mail_lists.section.unsubscribe = Abbgestellen
+template.mail_lists.section.archive = Archiv
+
+# For maven-reports.xml
+template.maven_reports.title = Projekt Reports
+template.maven_reports.section.title = Maven Generierte Reports
+template.maven_reports.section.maven_reports1 = Dieses Dokument zeigt einen Überblick über die verschiedenen Reports, die von 
+template.maven_reports.section.maven_reports2 = generiert worden sind. Für jeden Report finden Sie unten eine kurze Beschreibung.
+template.maven_reports.section.subsection.title = Überblick
+template.maven_reports.section.subsection.document = Dokument
+template.maven_reports.section.subsection.description = Beschreibung
+
+# For project-info.xml
+template.project_info.title = Projektinformation
+template.project_info.section.title = Allgemeine Projekinformation
+template.project_info.section.project_information1 = Dieses Dokument zeigt einen Überblick über die verschiedenen Dokumente und Verknüpfungen, die zur allgemeinen Information dieses Projekte gehören. Der Inhalt dieser Dokumente ist automatisch durch 
+template.project_info.section.project_information2 = generiert worden.
+template.project_info.section.subsection.title = Überblick
+template.project_info.section.subsection.document = Dokument
+template.project_info.section.subsection.description = Beschreibung
+template.project_info.section.subsection.document.mailing_lists = Mailinglisten
+template.project_info.section.subsection.description.mailing_lists = Dieses Dokument zeigt Abonnier- und Archivierungs-Informationen für die Mailinglisten dieses Projektes.
+template.project_info.section.subsection.document.project_team = Projekt Team
+template.project_info.section.subsection.description.project_team = Dieses Dokument zeigt Informationen über die Leute, die zu diesem Projekt beigetragen haben. Diese Leute haben in der einen oder anderen Form zum Gelingen dieses Projektes beigetragen.
+template.project_info.section.subsection.document.dependencies = Abhängigkeiten
+template.project_info.section.subsection.description.dependencies = Dieses Dokument listet die Abhängigkeiten von diesem Projekt zu anderen Resourcen an und liefert Informationen dazu.
+template.project_info.section.subsection.document.source_repository = Quell-Verzichnis
+template.project_info.section.subsection.description.source_repository = Dieses Dokument zeigt Zugriffsmöglichkeiten auf den Quellbaum dieses Projektes.
+template.project_info.section.subsection.document.issue_tracking = Fehlerbehandlung
+template.project_info.section.subsection.description.issue_tracking = Dieses Dokument zeigt einen Link zur Website für die Fehlerbehandlung für dieses Projekt. Dort können Fehler, Änderungen und neue Anforderungen gemeldet werden.
+
+# For team-list.xml
+template.team_list.title = Team
+template.team_list.section.title = Das Team
+template.team_list.section.description1 = Ein erfolgreiches Projekt erfordert, dass viele Leute verschieden Rollen innerhalb des Teams wahrnehmen. Einige schreiben Quellcode, während andere ausprobieren und testen, wieder andere Vorschläge für Verbesserungen machen.
+template.team_list.section.description2 = Das Team besteht aus Entwickler und Beitragende. Entwickler haben direkten Zugriff auf den Quellcode des Projektes und entwickeln die Quellcode-Basis weiter. Beitragende helfen, das Projekt zu verbessern, indem sie Fehlermeldungen, Änderungswünsche oder sogar Verbeserungsvorschläge einbringen und den Entwicklern melden. Die Anzahl von Beitragenden in diesem Projekt ist unbegrenzt. Beteiligen Sie sich heute noch! Jeder Beitrag ist von höchstem Wert.
+template.team_list.section.members.title = Entwickler
+template.team_list.section.no_developer = In diesem Projekt arbeiten keine Entwickler. Schauen Sie doch später nochmals rein.
+template.team_list.section.developers = Im Folgenden finden Sie eine Liste der Entwickler dieses Projektes, die auf die eine oder andere Weise zum Gelingen dieses Projektes beigetragen haben.
+template.team_list.section.developer.name = Name
+template.team_list.section.developer.id = Kennung
+template.team_list.section.developer.email = E-Mail
+template.team_list.section.developer.organization = Organisation
+template.team_list.section.developer.roles = Rolle
+template.team_list.section.developer.offset = Zeitverschiebung
+template.team_list.section.developer.time = Zeit
+template.team_list.section.contributors.title = Helfer
+template.team_list.section.no_contributor = Für dieses Projekt sind keine Helfer definiert. Bitte schauen Sie später nochmals rein.
+template.team_list.section.contributors = Im Folgenden finden Sie Leute, die auf die eine oder andere Weise zu Gelingen dieses Projektes biegetragen haben. Dies kann zum Beisiel in der Form von Fehlermeldungen, Änderungswünschen, Lösungsvorschlägen, Tests, Dokumentation erfolgt sein.
+template.team_list.section.contributor.name = Name
+template.team_list.section.contributor.email = E-Mail
+template.team_list.section.contributor.organization = Organisation
+template.team_list.section.contributor.roles = Rolle
+
+# For navigation.jelly
+navigation.menu.project_documentation = Dokumentation
+navigation.menu.item.about = Über
+navigation.menu.item.downloads = Downloads
+navigation.menu.item.project_info = Informationen
+navigation.menu.item.mailing_lists = Mailinglisten
+navigation.menu.item.project_team = Projekt Team
+navigation.menu.item.dependencies = Abhängigkeiten
+navigation.menu.item.source_repository = Quelle
+navigation.menu.item.issue_tracking = Fehlerbehandlung
+navigation.menu.item.project_reports = Reports
+navigation.menu.item.development_process = Entwicklungs Prozess
+
+# For site.jsl
+site.legend = Legende
+site.last_published = Letzte Änderung
+site.doc_for = Dokumentation für 
+site.external_link = Externe Links
+site.opens_new_window = Öffnet in einem neuen Fenster
+site.language = Sprache
+site.locale.en = Englisch
+site.locale.fr = Französisch
\ No newline at end of file

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/templates_de.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/templates_de.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/templates_fr.properties
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/templates_fr.properties?rev=171222&view=auto
==============================================================================
--- maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/templates_fr.properties (added)
+++ maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/templates_fr.properties Sat May 21 08:10:41 2005
@@ -0,0 +1,156 @@
+# -------------------------------------------------------------------
+# 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.
+# -------------------------------------------------------------------
+
+# Translated by Vincent Siveton (vincent.siveton@gmail.com)
+
+# To display the default language
+defaultLocale.byDefault=Français [Par défaut]
+
+# For cvs.xml
+template.cvs.title=CVS
+template.cvs.section1.title=Repository
+template.cvs.section1.no_repository=Aucun dépôt SCM n'est défini.
+template.cvs.section2.title=Accès Web
+template.cvs.section3.title=Accès de façon anonyme
+template.cvs.section3.description=Le dépôt d'archive CVS de ce projet peut être vérifié de façon anonyme (pserver) avec les instructions suivantes. Lorsqu'un mot de passe pour anonyme est demandé, appuyez simplement sur la touche Enter.
+template.cvs.section3.updates=Les mises à jour à partir d'un module n'ont pas besoin du paramètre -d.
+template.cvs.section4.title=Accès CVS pour les dévelopeurs via SSH
+template.cvs.section4.description=Seulement les dévelopeurs du projet peuvent accéder à l'arbre de CVS par l'intermédiaire de cette méthode. SSH1 doit être installé sur votre machine client. Remplacez <b>nom</b> avec la valeur appropriée. Entrez votre mot de passe une fois incité.
+template.cvs.section4.remember=Rappelez-vous de remplacer le 'username' par votre nom d'utilisateur réel dans le serveur.
+template.cvs.section5.title=Accès CVS derrière un firewall
+template.cvs.section5.description1=Pour les dévelopeurs qui sont coincés derrière un firewall, 
+template.cvs.section5.description2=peut utiliser l'interface Web pour effectuer un checkout du code source.
+
+# For cvs-usage.xml
+template.cvs_usage.title=CVS
+template.cvs_usage.section1.title=Repository
+template.cvs_usage.section1.no_repository=Aucun dépôt SCM n'est défini.
+template.cvs_usage.section2.title=Accès Web
+template.cvs_usage.section3.title=Accès de façon anonyme avec Maven
+template.cvs_usage.section3.description=Le dépôt d'archive CVS de ce projet peut être vérifié de façon anonyme (pserver) avec les instructions suivantes. Lorsqu'un mot de passe pour anonyme est demandé, appuyez simplement sur la touche Enter.
+template.cvs_usage.section4.title=Accés CVS de façon anonyme
+template.cvs_usage.section4.description=Le dépôt d'archive CVS de ce projet peut être vérifié de façon anonyme (pserver) avec les instructions suivantes. Lorsqu'un mot de passe pour anonyme est demandé, appuyez simplement sur la touche Enter.
+template.cvs_usage.section4.updates=Les mises à jour à partir d'un module n'ont pas besoin du paramètre -d.
+template.cvs_usage.section5.title=Accès CVS pour les dévelopeurs avec Maven
+template.cvs_usage.section5.description=Seulement les dévelopeurs du projet peuvent accéder à l'arbre de CVS par l'intermédiaire de cette méthode. Remplacez <b>nom</b> avec la valeur appropriée.
+template.cvs_usage.section5.remember=Rappelez-vous de remplacer le 'username' par votre nom d'utilisateur réel dans le serverr. <br /> Changez aussi <code>ssh</code> dans <code>maven.scm.cvs.rsh=ssh</code> avec le nom de exécutable SSH.
+template.cvs_usage.section6.title=Accès CVS pour les dévelopeurs via SSH
+template.cvs_usage.section6.description=Seulement les dévelopeurs du projet peuvent accéder à l'arbre de CVS par l'intermédiaire de cette méthode. SSH1 doit être installé sur votre machine client. Remplacez <b>nom</b> avec la valeur appropriée. Entrez votre mot de passe une fois incité.
+template.cvs_usage.section6.remember=Rappelez-vous de remplacer le 'username' par votre nom d'utilisateur réel dans le serveur.
+template.cvs_usage.section7.title=Accès CVS derrière un firewall
+template.cvs_usage.section7.description1=Pour les dévelopeurs qui sont coincés derrière un firewal, 
+template.cvs_usage.section7.description2=peut utiliser l'interface Web pour effectuer un checkout du code source.
+
+# For dependencies.xml
+template.dependencies.title=Dépendances
+template.dependencies.section.title=Dépendances
+template.dependencies.section.no_dependency=Il n'y a aucune dépendance pour ce projet. C'est une application autonome qui ne dépend d'aucun autre projet.
+template.dependencies.section.dependencies=Ce qui suit est une liste des dépendances pour ce projet. Ces dépendances sont exigées pour compiler et exécuter l'application:
+template.dependencies.section.artifactID=Artefact ID
+template.dependencies.section.type=Type
+template.dependencies.section.version=Version
+template.dependencies.section.url=URL
+
+# For issue-tracking.xml
+template.issue_tracking.title=Contrôle des livraisons
+template.issue_tracking.section.title=Contrôle des livraisons
+
+# For mail_lists.xml
+template.mail_lists.not_available=Non-disponible
+template.mail_lists.title=Listes de diffusion
+template.mail_lists.section.title=Listes de diffusion
+template.mail_lists.section.no_mail_list=Il n'y a aucune liste de diffusion établie pour ce projet. Vérifiez plus tard si une liste de diffusion est disponible.
+template.mail_lists.section.mail_lists=Ce sont les listes de diffusion qui ont été établies pour ce projet. Pour chaque liste, il y a une souscription, une annulation de souscription, et un lien vers les archives.
+template.mail_lists.section.list_name=Nom de la liste
+template.mail_lists.section.subscribe=Souscription
+template.mail_lists.section.unsubscribe=Annulation de souscription
+template.mail_lists.section.archive=Archive
+
+# For maven-reports.xml
+template.maven_reports.title=Rapports sur le projet
+template.maven_reports.section.title=Rapports produits par Maven
+template.maven_reports.section.maven_reports1=Ce document fournit une vue d'ensemble des divers rapports qui sont automatiquement produits par 
+template.maven_reports.section.maven_reports2=. Chaque document est brièvement décrit.
+template.maven_reports.section.subsection.title=Vue d'ensemble
+template.maven_reports.section.subsection.document=Document
+template.maven_reports.section.subsection.description=Description
+
+# For project-info.xml
+template.project_info.title=Information sur le projet
+template.project_info.section.title=Information générale sur le project
+template.project_info.section.project_information1=Ce document fournit une vue d'ensemble des divers documents et liens qui font partie des informations générales de ce projet. Tout ce contenu est automatiquement produit par 
+template.project_info.section.project_information2=pour ce projet.
+template.project_info.section.subsection.title=Vue d'ensemble
+template.project_info.section.subsection.document=Document
+template.project_info.section.subsection.description=Description
+template.project_info.section.subsection.document.mailing_lists=Listes de diffusion
+template.project_info.section.subsection.description.mailing_lists=Ce document fournit l'abonnement ainsi que les archives pour les listes de diffusion de ce projet.
+template.project_info.section.subsection.document.project_team=Membres de ce projet
+template.project_info.section.subsection.description.project_team=Ce document fournit des informations sur les membres de ce projet. Ce sont les individus qui ont contribué au projet d'une façon ou d'une autre.
+template.project_info.section.subsection.document.dependencies=Dépendances
+template.project_info.section.subsection.description.dependencies=Ce document énumère les dépendances de ce projet et fournit des informations sur chaque dépendance.
+template.project_info.section.subsection.document.source_repository=Dépôt de sources
+template.project_info.section.subsection.description.source_repository=C'est un lien au dépôt de sources en ligne qui peut être regardé par l'intermédiaire d'un browser Web.
+template.project_info.section.subsection.document.issue_tracking=Contrôle des livraisons
+template.project_info.section.subsection.description.issue_tracking=C'est un lien au système de contrôle des livraisons pour ce projet. Des issues (bogues, dispositifs, demandes de changement) peuvent être créées et questionnées en utilisant ce lien.
+
+# For team-list.xml
+template.team_list.title=Membres de l'équipe
+template.team_list.section.title=L'équipe
+template.team_list.section.description1=Un projet réussi exige que beaucoup de personnes jouent plusieurs rôles. Quelques personnes écrivent le code ou la documentation, alors que d'autres testent, soumettent des patches ou des suggestions.
+template.team_list.section.description2=L'équipe est composée des membres et des collaborateurs . Les membres ont un accès direct aux sources du projet et font évolué activement le code de base. Les contribuants améliorent le projet par la soumission de patches et des suggestions aux membres. Le nombre de contribuants au projet est illimité. Toutes les contributions au projet sont considérablement appréciées.
+template.team_list.section.members.title=Members=Membres
+template.team_list.section.no_developer=Il n'y a aucun dévelopeur travaillant sur ce projet. Vérifiez plus tard si des dévelopeurs ont été ajouté.
+template.team_list.section.developers=Ce qui suit est la liste des dévelopeurs avec leurs rôles qui ont contribué d'une manière ou d'une autre au projet.
+template.team_list.section.developer.name=Nom
+template.team_list.section.developer.id=Id
+template.team_list.section.developer.email=Email
+template.team_list.section.developer.organization=Organisation
+template.team_list.section.developer.roles=Rôles
+template.team_list.section.developer.offset=TZ Offset
+template.team_list.section.developer.time=Heure GMT
+template.team_list.section.contributors.title=Collaborateurs
+template.team_list.section.no_contributor=Il n'y a aucun collaborateur travaillant sur ce projet. Vérifiez plus tard si des collaborateurs ont été ajouté.
+template.team_list.section.contributors=Les personnes additionnelles suivantes ont contribué à ce projet pour leurs suggestions, ou leurs apports à la documentation ou aux patches.
+template.team_list.section.contributor.name=Nom
+template.team_list.section.contributor.email=Email
+template.team_list.section.contributor.organization=Organisation
+template.team_list.section.contributor.roles=Rôles
+template.team_list.section.developer.timezone.unknown=Inconnu
+
+# For navigation.jelly
+navigation.menu.project_documentation=Documentation sur le projet
+navigation.menu.downloads=Téléchargements
+navigation.menu.item.about=A propos
+navigation.menu.item.project_info=Info sur le projet
+navigation.menu.item.mailing_lists=Listes de diffusion
+navigation.menu.item.project_team=Equipe du projet
+navigation.menu.item.dependencies=Dépendances
+navigation.menu.item.source_repository=Source Repository
+navigation.menu.item.issue_tracking=Contrôle des livraisons
+navigation.menu.item.project_reports=Rapports sur le projet
+navigation.menu.item.development_process=Processus de développement
+
+# For site.jsl
+site.legend=Légende
+site.last_published=Dernière publication
+site.doc_for=Doc pour
+site.external_link=Lien externe
+site.opens_new_window=Ouverture dans une nouvelle fenêtre
+site.language=Langue
+site.goals=Buts
+site.goal=But
+site.description=Description

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/templates_fr.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-resources/templates/templates_fr.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Modified: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/maven.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-test/maven.xml?rev=171222&r1=171221&r2=171222&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/xdoc/src/plugin-test/maven.xml (original)
+++ maven/maven-1/plugins/trunk/xdoc/src/plugin-test/maven.xml Sat May 21 08:10:41 2005
@@ -19,4 +19,9 @@
   <goal name="testPlugin">
     <maven:reactor basedir="${basedir}" includes="test*/project.xml" goals="testPlugin" banner="Test" ignoreFailures="false"/>
   </goal>
+  <goal name="multixdoc">
+    <maven:reactor basedir="${basedir}" 
+    includes="test*/project.xml" 
+    goals="xdoc" banner="Test" ignoreFailures="false" />
+  </goal>
 </project>

Added: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/maven.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/maven.xml?rev=171222&view=auto
==============================================================================
--- maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/maven.xml (added)
+++ maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/maven.xml Sat May 21 08:10:41 2005
@@ -0,0 +1,76 @@
+<!-- 
+/*
+ * 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.
+ */
+ -->
+<project xmlns:util="jelly:util" 
+  xmlns:j="jelly:core" 
+  xmlns:assert="assert" 
+  xmlns:doc="doc" 
+  xmlns:x="jelly:xml">
+
+  <goal name="testPlugin" prereqs="clean,xdoc">
+    <j:set var="linkcheck" value="${maven.build.dir}/linkcheck/linkcheck-results.xml"/>
+    <assert:assertFileExists file="${linkcheck}"/>
+    <util:file var="linkcheckFile" name="${linkcheck}"/>
+    <x:parse var="linkcheckDoc" xml="${linkcheckFile.toURL()}"/>
+    <x:set var="countLogo" select="count($linkcheckDoc/linkcheck/file/result[contains(child::target,'apache-maven-project.png')][contains(child::status,'NOT FOUND')])"/>
+    <assert:assertEquals expected="0" value="${countLogo.intValue().toString()}" msg="Logo not found."/>
+    <x:set var="countUrl" select="count($linkcheckDoc/linkcheck/file/result[contains(child::target,'project-info.html')][contains(child::status,'NOT FOUND')])"/>
+    <assert:assertEquals expected="0" value="${countUrl.intValue().toString()}" msg="Url not found."/>
+    <assert:assertFileExists file="velocity.log"/> 
+    
+    <!-- Test the output according the project.properties file -->
+    <!-- maven.xdoc.locale.supported=en_CA, fr_CA -->
+    <!-- Test Default language -->
+    <assert:assertFileExists file="${maven.docs.dest}/cvs-usage.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/mail-lists.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/dependencies.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/maven-reports.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/team-list.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/downloads.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/index.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/myfile_i18n.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/issue-tracking.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/project-info.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/subdir/testjsltosite.html"/>
+    <!-- Test en_CA language -->    
+    <assert:assertFileExists file="${maven.docs.dest}/en_CA/cvs-usage.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/en_CA/mail-lists.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/en_CA/dependencies.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/en_CA/maven-reports.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/en_CA/team-list.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/en_CA/downloads.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/en_CA/index.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/en_CA/myfile_i18n.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/en_CA/issue-tracking.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/en_CA/project-info.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/en_CA/subdir/testjsltosite.html"/>
+    
+    <!-- Test fr_CA language -->    
+    <assert:assertFileExists file="${maven.docs.dest}/fr_CA/cvs-usage.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/fr_CA/mail-lists.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/fr_CA/dependencies.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/fr_CA/maven-reports.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/fr_CA/team-list.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/fr_CA/downloads.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/fr_CA/index.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/fr_CA/myfile_i18n.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/fr_CA/issue-tracking.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/fr_CA/project-info.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/fr_CA/subdir/testjsltosite.html"/>
+  </goal>
+  
+</project>

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/maven.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/maven.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/project.properties
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/project.properties?rev=171222&view=auto
==============================================================================
--- maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/project.properties (added)
+++ maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/project.properties Sat May 21 08:10:41 2005
@@ -0,0 +1,23 @@
+# -------------------------------------------------------------------
+# 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.
+# -------------------------------------------------------------------
+
+maven.xdoc.locale.default=en
+maven.xdoc.locale.supported=en_CA, fr_CA
+
+# Presentation Properties
+maven.xdoc.date=left
+maven.xdoc.date.format=dd MMMM yyyy HH:mm z
+maven.xdoc.date.locale=en

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/project.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/project.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/project.xml?rev=171222&view=auto
==============================================================================
--- maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/project.xml (added)
+++ maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/project.xml Sat May 21 08:10:41 2005
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+ * 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.
+ */
+ -->
+<project>
+  <pomVersion>3</pomVersion>
+  <issueTrackingUrl>http://jira.codehaus.org/browse/MAVEN</issueTrackingUrl>
+  <id>test-maven-xdoc-plugin-03</id>
+  <name>MPXDOC-128</name>
+  <groupId>maven</groupId>
+  <currentVersion>1.0</currentVersion>
+  <organization>
+    <name>Apache Software Foundation</name>
+    <url>/project-info.html</url>
+    <logo>/images/apache-maven-project.png</logo>
+  </organization>
+  <logo>/images/maven.gif</logo>
+  <description>Test for MPXDOC-128</description>
+  <shortDescription>Test for MPXDOC-128</shortDescription>
+  <url>/project-info.html</url>
+</project>
+

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/project.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/images/apache-maven-project.png
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/images/apache-maven-project.png?rev=171222&view=auto
==============================================================================
Binary file - no diff available.

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/images/apache-maven-project.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/images/maven.gif
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/images/maven.gif?rev=171222&view=auto
==============================================================================
Binary file - no diff available.

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/images/maven.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/myfile_i18n.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/myfile_i18n.xml?rev=171222&view=auto
==============================================================================
--- maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/myfile_i18n.xml (added)
+++ maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/myfile_i18n.xml Sat May 21 08:10:41 2005
@@ -0,0 +1,36 @@
+<?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.
+ */
+ -->
+
+<document>
+    <properties>
+        <author email="vincent.siveton@gmail.com">Vincent Siveton</author>
+        <title key="myfile_i18n.title"/>
+    </properties>
+
+    <body>
+        <section key="myfile_i18n.section1.title">
+            <p>
+                <message key="myfile_i18n.section1.description1"/>
+            </p>
+            <p>
+                <message key="myfile_i18n.section1.description2"/>
+            </p>
+        </section>
+    </body>
+</document>
\ No newline at end of file

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/myfile_i18n.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/myfile_i18n.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/navigation-pdf.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/navigation-pdf.xml?rev=171222&view=auto
==============================================================================
--- maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/navigation-pdf.xml (added)
+++ maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/navigation-pdf.xml Sat May 21 08:10:41 2005
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!-- 
+/*
+ * 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.
+ */
+ -->
+
+<project name="Nanuq"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:noNamespaceSchemaLocation="MAVEN_HOME/maven-navigation-1.0.xsd">
+
+    <title>MPXDOC128</title>
+    
+    <body>
+        <menu name="General Project Information">
+            <item name="myfile_i18n"
+                href="/myfile_i18n.html" />
+            <item name="testjsltosite" 
+                href="/subdir/testjsltosite.html" />
+            <item name="testjsltosite2" 
+                href="/subdir/subdir2/testjsltosite2.html" />
+        </menu>
+    </body>
+</project>

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/navigation-pdf.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/navigation-pdf.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/navigation.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/navigation.xml?rev=171222&view=auto
==============================================================================
--- maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/navigation.xml (added)
+++ maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/navigation.xml Sat May 21 08:10:41 2005
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!-- 
+/*
+ * 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.
+ */
+ -->
+
+<project name="MPXDOC-128"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:noNamespaceSchemaLocation="MAVEN_HOME/maven-navigation-1.0.xsd">
+
+    <title key="navigation.title"/>
+
+    <body>
+    <breadcrumbs>
+      <item name="Maven" href="http://maven.apache.org"/>
+      <item name="Maven Plugins" href="http://maven.apache.org/reference/plugins/index.html"/>
+    </breadcrumbs>
+        <links>
+<!--
+            <item name="PDF Documentation" href="app.pdf"
+                img="images/pdf.gif"/>
+-->
+        </links>
+
+        <!-- project overview -->
+        <menu key="navigation.menu1.title">
+            <item key="navigation.menu1.item1"
+                href="/myfile_i18n.html" />
+            <item key="navigation.menu1.item2" 
+                href="/subdir/testjsltosite.html" />
+            <item key="navigation.menu1.item3" 
+                href="/subdir/subdir2/testjsltosite2.html" />
+        </menu>
+    </body>
+</project>

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/navigation.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/navigation.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/subdir/subdir2/testjsltosite.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/subdir/subdir2/testjsltosite.xml?rev=171222&view=auto
==============================================================================
--- maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/subdir/subdir2/testjsltosite.xml (added)
+++ maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/subdir/subdir2/testjsltosite.xml Sat May 21 08:10:41 2005
@@ -0,0 +1,36 @@
+<?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.
+ */
+ -->
+
+<document>
+    <properties>
+        <author email="vincent.siveton@gmail.com">Vincent Siveton</author>
+        <title key="testjstltosite.title"/>
+    </properties>
+
+    <body>
+        <section key="testjstltosite.section1.title">
+            <p>
+                <message key="testjstltosite.section1.description1"/>
+            </p>
+    	    <p>
+                <message key="testjstltosite.section1.description2"/>
+    	    </p>
+        </section>
+    </body>
+</document>
\ No newline at end of file

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/subdir/subdir2/testjsltosite.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/subdir/subdir2/testjsltosite.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/subdir/subdir2/testjsltosite2.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/subdir/subdir2/testjsltosite2.xml?rev=171222&view=auto
==============================================================================
--- maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/subdir/subdir2/testjsltosite2.xml (added)
+++ maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/subdir/subdir2/testjsltosite2.xml Sat May 21 08:10:41 2005
@@ -0,0 +1,36 @@
+<?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.
+ */
+ -->
+
+<document>
+    <properties>
+        <author email="vincent.siveton@gmail.com">Vincent Siveton</author>
+        <title key="testjstltosite.title"/>
+    </properties>
+
+    <body>
+        <section key="testjstltosite.section1.title">
+            <p>
+                <message key="testjstltosite.section1.description1"/>
+            </p>
+    	    <p>
+                <message key="testjstltosite.section1.description2"/>
+    	    </p>
+        </section>
+    </body>
+</document>
\ No newline at end of file

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/subdir/subdir2/testjsltosite2.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/subdir/subdir2/testjsltosite2.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/subdir/testjsltosite.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/subdir/testjsltosite.xml?rev=171222&view=auto
==============================================================================
--- maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/subdir/testjsltosite.xml (added)
+++ maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/subdir/testjsltosite.xml Sat May 21 08:10:41 2005
@@ -0,0 +1,38 @@
+<?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.
+ */
+ -->
+
+<document>
+    <properties>
+        <author email="vincent.siveton@gmail.com">Vincent Siveton</author>
+        <title key="testjstltosite.title"/>
+    </properties>
+
+    <body>
+        <section key="testjstltosite.section1.title">
+            <subsection key="testjstltosite.section1.title">
+                <p>
+                    <message key="testjstltosite.section1.description1"/>
+                </p>
+                <p>
+                    <message key="testjstltosite.section1.description2"/>
+                </p>
+            </subsection>
+        </section>
+    </body>
+</document>
\ No newline at end of file

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/subdir/testjsltosite.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/subdir/testjsltosite.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/xdocs.properties
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/xdocs.properties?rev=171222&view=auto
==============================================================================
--- maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/xdocs.properties (added)
+++ maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/xdocs.properties Sat May 21 08:10:41 2005
@@ -0,0 +1,18 @@
+# From navigation.xml
+navigation.title=MPXDOC-128
+navigation.menu1.title=General Project Information
+navigation.menu1.item1=myfile_i18n
+navigation.menu1.item2=testjsltosite
+navigation.menu1.item3=testjsltosite2
+
+# From myfile_i18n.xml
+myfile_i18n.title=Xdoc test Document
+myfile_i18n.section1.title=Title 1
+myfile_i18n.section1.description1=empty document
+myfile_i18n.section1.description2=This document is generated separately from other xdoc documents but should retain the site stylesheet and navigation.
+
+# From testjstltosite.xml
+testjstltosite.title=test jslToSite tag
+testjstltosite.section1.title=Title 1
+testjstltosite.section1.description1=empty document
+testjstltosite.section1.description2=This document is generated separately from other xdoc documents but should retain the site stylesheet and navigation.

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/xdocs.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/xdocs.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/xdocs_fr.properties
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/xdocs_fr.properties?rev=171222&view=auto
==============================================================================
--- maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/xdocs_fr.properties (added)
+++ maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/xdocs_fr.properties Sat May 21 08:10:41 2005
@@ -0,0 +1,18 @@
+# From navigation.xml
+navigation.title=MPXDOC-128
+navigation.menu1.title=Information générale sur le projet
+navigation.menu1.item1=myfile_i18n
+navigation.menu1.item2=testjsltosite
+navigation.menu1.item3=testjsltosite2
+
+# From myfile_i18n.xml
+myfile_i18n.title=Document Xdoc test
+myfile_i18n.section1.title=Titre 1
+myfile_i18n.section1.description1=document vide
+myfile_i18n.section1.description2=Ce document est produit séparément des autres documents XDOC mais devrait maintenir le stylesheet et la navigation d'emplacement.
+
+# From testjstltosite.xml
+testjstltosite.title=test jslToSite tag
+testjstltosite.section1.title=Titre 1
+testjstltosite.section1.description1=document vide
+testjstltosite.section1.description2=Ce document est produit séparément des autres documents XDOC mais devrait maintenir le stylesheet et la navigation d'emplacement.

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/xdocs_fr.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test03/xdocs/xdocs_fr.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test04/maven.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test04/maven.xml?rev=171222&view=auto
==============================================================================
--- maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test04/maven.xml (added)
+++ maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test04/maven.xml Sat May 21 08:10:41 2005
@@ -0,0 +1,76 @@
+<!-- 
+/*
+ * 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.
+ */
+ -->
+<project xmlns:util="jelly:util" 
+  xmlns:j="jelly:core" 
+  xmlns:assert="assert" 
+  xmlns:doc="doc" 
+  xmlns:x="jelly:xml">
+
+  <goal name="testPlugin" prereqs="clean,xdoc">
+    <j:set var="linkcheck" value="${maven.build.dir}/linkcheck/linkcheck-results.xml"/>
+    <assert:assertFileExists file="${linkcheck}"/>
+    <util:file var="linkcheckFile" name="${linkcheck}"/>
+    <x:parse var="linkcheckDoc" xml="${linkcheckFile.toURL()}"/>
+    <x:set var="countLogo" select="count($linkcheckDoc/linkcheck/file/result[contains(child::target,'apache-maven-project.png')][contains(child::status,'NOT FOUND')])"/>
+    <assert:assertEquals expected="0" value="${countLogo.intValue().toString()}" msg="Logo not found."/>
+    <x:set var="countUrl" select="count($linkcheckDoc/linkcheck/file/result[contains(child::target,'project-info.html')][contains(child::status,'NOT FOUND')])"/>
+    <assert:assertEquals expected="0" value="${countUrl.intValue().toString()}" msg="Url not found."/>
+    <assert:assertFileExists file="velocity.log"/> 
+    
+    <!-- Test the output according the project.properties file -->
+    <!-- maven.xdoc.locale.list=en_CA, fr_CA -->
+    <!-- Test Default language -->
+    <assert:assertFileExists file="${maven.docs.dest}/cvs-usage.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/mail-lists.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/dependencies.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/maven-reports.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/team-list.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/downloads.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/index.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/myfile_i18n.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/issue-tracking.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/project-info.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/subdir/testjsltosite.html"/>
+    <!-- Test en_CA language -->    
+    <assert:assertFileExists file="${maven.docs.dest}/en_CA/cvs-usage.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/en_CA/mail-lists.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/en_CA/dependencies.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/en_CA/maven-reports.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/en_CA/team-list.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/en_CA/downloads.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/en_CA/index.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/en_CA/myfile_i18n.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/en_CA/issue-tracking.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/en_CA/project-info.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/en_CA/subdir/testjsltosite.html"/>
+    
+    <!-- Test fr_CA language -->    
+    <assert:assertFileExists file="${maven.docs.dest}/fr_CA/cvs-usage.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/fr_CA/mail-lists.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/fr_CA/dependencies.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/fr_CA/maven-reports.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/fr_CA/team-list.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/fr_CA/downloads.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/fr_CA/index.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/fr_CA/myfile_i18n.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/fr_CA/issue-tracking.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/fr_CA/project-info.html"/>
+    <assert:assertFileExists file="${maven.docs.dest}/fr_CA/subdir/testjsltosite.html"/>
+  </goal>
+  
+</project>

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test04/maven.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test04/maven.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test04/project.properties
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test04/project.properties?rev=171222&view=auto
==============================================================================
--- maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test04/project.properties (added)
+++ maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test04/project.properties Sat May 21 08:10:41 2005
@@ -0,0 +1,24 @@
+# -------------------------------------------------------------------
+# 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.
+# -------------------------------------------------------------------
+
+maven.xdoc.locale.default=en
+maven.xdoc.locale.supported=en_CA, fr_CA
+
+# Presentation Properties
+maven.xdoc.date=left
+maven.xdoc.date.format=dd MMMM yyyy HH:mm z
+maven.xdoc.date.locale=en
+maven.xdoc.ui.localeList.asSelect=true

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test04/project.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test04/project.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test04/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test04/project.xml?rev=171222&view=auto
==============================================================================
--- maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test04/project.xml (added)
+++ maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test04/project.xml Sat May 21 08:10:41 2005
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+ * 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.
+ */
+ -->
+<project>
+  <pomVersion>3</pomVersion>
+  <issueTrackingUrl>http://jira.codehaus.org/browse/MAVEN</issueTrackingUrl>
+  <id>test-maven-xdoc-plugin-04</id>
+  <name>MPXDOC-128</name>
+  <groupId>maven</groupId>
+  <currentVersion>1.0</currentVersion>
+  <organization>
+    <name>Apache Software Foundation</name>
+    <url>/project-info.html</url>
+    <logo>/images/apache-maven-project.png</logo>
+  </organization>
+  <logo>/images/maven.gif</logo>
+  <description>An other test for MPXDOC-128</description>
+  <shortDescription>An other test for MPXDOC-128</shortDescription>
+  <url>/project-info.html</url>
+</project>
+

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test04/project.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test04/xdocs/images/apache-maven-project.png
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test04/xdocs/images/apache-maven-project.png?rev=171222&view=auto
==============================================================================
Binary file - no diff available.

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test04/xdocs/images/apache-maven-project.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test04/xdocs/images/maven.gif
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test04/xdocs/images/maven.gif?rev=171222&view=auto
==============================================================================
Binary file - no diff available.

Propchange: maven/maven-1/plugins/trunk/xdoc/src/plugin-test/test04/xdocs/images/maven.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org