Author: hboutemy Date: Thu Sep 1 21:28:17 2011 New Revision: 1164282 URL: http://svn.apache.org/viewvc?rev=1164282&view=rev Log: added javadoc and jxr reports links in top-level menu
Added: maven/shared/trunk/maven-ant/src/site/ maven/shared/trunk/maven-ant/src/site/site.xml (with props) maven/shared/trunk/maven-artifact-resolver/src/site/ maven/shared/trunk/maven-artifact-resolver/src/site/site.xml (with props) maven/shared/trunk/maven-common-artifact-filters/src/site/ maven/shared/trunk/maven-common-artifact-filters/src/site/site.xml (with props) maven/shared/trunk/maven-dependency-analyzer/src/site/ maven/shared/trunk/maven-dependency-analyzer/src/site/site.xml (with props) maven/shared/trunk/maven-dependency-tree/src/site/ maven/shared/trunk/maven-dependency-tree/src/site/site.xml (with props) maven/shared/trunk/maven-downloader/src/site/ maven/shared/trunk/maven-downloader/src/site/site.xml (with props) maven/shared/trunk/maven-osgi/src/site/ maven/shared/trunk/maven-osgi/src/site/site.xml (with props) maven/shared/trunk/maven-repository-builder/src/site/ maven/shared/trunk/maven-repository-builder/src/site/site.xml (with props) maven/shared/trunk/maven-shared-io/src/site/ maven/shared/trunk/maven-shared-io/src/site/site.xml (with props) maven/shared/trunk/maven-shared-monitor/src/site/ maven/shared/trunk/maven-shared-monitor/src/site/site.xml (with props) maven/shared/trunk/maven-verifier/src/site/ maven/shared/trunk/maven-verifier/src/site/site.xml (with props) Modified: maven/shared/trunk/file-management/src/site/site.xml maven/shared/trunk/maven-archiver/src/site/site.xml maven/shared/trunk/maven-filtering/src/site/site.xml maven/shared/trunk/maven-invoker/src/site/site.xml maven/shared/trunk/maven-model-converter/src/site/site.xml maven/shared/trunk/maven-plugin-enforcer/src/site/site.xml maven/shared/trunk/maven-reporting-api/src/site/site.xml maven/shared/trunk/maven-reporting-impl/src/site/site.xml maven/shared/trunk/maven-runtime/src/site/site.xml maven/shared/trunk/maven-shared-jar/src/site/site.xml maven/shared/trunk/maven-shared-resources/src/site/site.xml Modified: maven/shared/trunk/file-management/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/file-management/src/site/site.xml?rev=1164282&r1=1164281&r2=1164282&view=diff ============================================================================== --- maven/shared/trunk/file-management/src/site/site.xml (original) +++ maven/shared/trunk/file-management/src/site/site.xml Thu Sep 1 21:28:17 2011 @@ -23,6 +23,9 @@ under the License. <body> <menu name="Overview"> <item name="Introduction" href="index.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> </menu> <menu name="Examples"> Added: maven/shared/trunk/maven-ant/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-ant/src/site/site.xml?rev=1164282&view=auto ============================================================================== --- maven/shared/trunk/maven-ant/src/site/site.xml (added) +++ maven/shared/trunk/maven-ant/src/site/site.xml Thu Sep 1 21:28:17 2011 @@ -0,0 +1,34 @@ +<?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. +--> + +<project xmlns="http://maven.apache.org/DECORATION/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"> + <body> + <menu name="Overview"> + <item name="Introduction" href="index.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> + </menu> + + <menu ref="parent"/> + <menu ref="reports"/> + </body> +</project> \ No newline at end of file Propchange: maven/shared/trunk/maven-ant/src/site/site.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/shared/trunk/maven-ant/src/site/site.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: maven/shared/trunk/maven-ant/src/site/site.xml ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: maven/shared/trunk/maven-archiver/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-archiver/src/site/site.xml?rev=1164282&r1=1164281&r2=1164282&view=diff ============================================================================== --- maven/shared/trunk/maven-archiver/src/site/site.xml (original) +++ maven/shared/trunk/maven-archiver/src/site/site.xml Thu Sep 1 21:28:17 2011 @@ -1,4 +1,5 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> +<?xml version="1.0" encoding="UTF-8"?> + <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file @@ -17,11 +18,16 @@ KIND, either express or implied. See th specific language governing permissions and limitations under the License. --> + <project xmlns="http://maven.apache.org/DECORATION/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"> <body> <menu name="Overview"> - <item name="Reference" href="index.html"/> + <item name="Introduction" href="index.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> </menu> + <menu name="Examples"> <item name="Manifest" href="examples/manifest.html"/> <item name="Manifest Entries" href="examples/manifestEntries.html"/> Added: maven/shared/trunk/maven-artifact-resolver/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-artifact-resolver/src/site/site.xml?rev=1164282&view=auto ============================================================================== --- maven/shared/trunk/maven-artifact-resolver/src/site/site.xml (added) +++ maven/shared/trunk/maven-artifact-resolver/src/site/site.xml Thu Sep 1 21:28:17 2011 @@ -0,0 +1,34 @@ +<?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. +--> + +<project xmlns="http://maven.apache.org/DECORATION/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"> + <body> + <menu name="Overview"> + <item name="Introduction" href="index.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> + </menu> + + <menu ref="parent"/> + <menu ref="reports"/> + </body> +</project> \ No newline at end of file Propchange: maven/shared/trunk/maven-artifact-resolver/src/site/site.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/shared/trunk/maven-artifact-resolver/src/site/site.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: maven/shared/trunk/maven-artifact-resolver/src/site/site.xml ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: maven/shared/trunk/maven-common-artifact-filters/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-common-artifact-filters/src/site/site.xml?rev=1164282&view=auto ============================================================================== --- maven/shared/trunk/maven-common-artifact-filters/src/site/site.xml (added) +++ maven/shared/trunk/maven-common-artifact-filters/src/site/site.xml Thu Sep 1 21:28:17 2011 @@ -0,0 +1,34 @@ +<?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. +--> + +<project xmlns="http://maven.apache.org/DECORATION/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"> + <body> + <menu name="Overview"> + <item name="Introduction" href="index.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> + </menu> + + <menu ref="parent"/> + <menu ref="reports"/> + </body> +</project> \ No newline at end of file Propchange: maven/shared/trunk/maven-common-artifact-filters/src/site/site.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/shared/trunk/maven-common-artifact-filters/src/site/site.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: maven/shared/trunk/maven-common-artifact-filters/src/site/site.xml ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: maven/shared/trunk/maven-dependency-analyzer/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-dependency-analyzer/src/site/site.xml?rev=1164282&view=auto ============================================================================== --- maven/shared/trunk/maven-dependency-analyzer/src/site/site.xml (added) +++ maven/shared/trunk/maven-dependency-analyzer/src/site/site.xml Thu Sep 1 21:28:17 2011 @@ -0,0 +1,34 @@ +<?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. +--> + +<project xmlns="http://maven.apache.org/DECORATION/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"> + <body> + <menu name="Overview"> + <item name="Introduction" href="index.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> + </menu> + + <menu ref="parent"/> + <menu ref="reports"/> + </body> +</project> \ No newline at end of file Propchange: maven/shared/trunk/maven-dependency-analyzer/src/site/site.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/shared/trunk/maven-dependency-analyzer/src/site/site.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: maven/shared/trunk/maven-dependency-analyzer/src/site/site.xml ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: maven/shared/trunk/maven-dependency-tree/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-dependency-tree/src/site/site.xml?rev=1164282&view=auto ============================================================================== --- maven/shared/trunk/maven-dependency-tree/src/site/site.xml (added) +++ maven/shared/trunk/maven-dependency-tree/src/site/site.xml Thu Sep 1 21:28:17 2011 @@ -0,0 +1,34 @@ +<?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. +--> + +<project xmlns="http://maven.apache.org/DECORATION/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"> + <body> + <menu name="Overview"> + <item name="Introduction" href="index.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> + </menu> + + <menu ref="parent"/> + <menu ref="reports"/> + </body> +</project> \ No newline at end of file Propchange: maven/shared/trunk/maven-dependency-tree/src/site/site.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/shared/trunk/maven-dependency-tree/src/site/site.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: maven/shared/trunk/maven-dependency-tree/src/site/site.xml ------------------------------------------------------------------------------ svn:mime-type = text/plain Added: maven/shared/trunk/maven-downloader/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-downloader/src/site/site.xml?rev=1164282&view=auto ============================================================================== --- maven/shared/trunk/maven-downloader/src/site/site.xml (added) +++ maven/shared/trunk/maven-downloader/src/site/site.xml Thu Sep 1 21:28:17 2011 @@ -0,0 +1,34 @@ +<?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. +--> + +<project xmlns="http://maven.apache.org/DECORATION/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"> + <body> + <menu name="Overview"> + <item name="Introduction" href="index.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> + </menu> + + <menu ref="parent"/> + <menu ref="reports"/> + </body> +</project> \ No newline at end of file Propchange: maven/shared/trunk/maven-downloader/src/site/site.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/shared/trunk/maven-downloader/src/site/site.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: maven/shared/trunk/maven-downloader/src/site/site.xml ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: maven/shared/trunk/maven-filtering/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-filtering/src/site/site.xml?rev=1164282&r1=1164281&r2=1164282&view=diff ============================================================================== --- maven/shared/trunk/maven-filtering/src/site/site.xml (original) +++ maven/shared/trunk/maven-filtering/src/site/site.xml Thu Sep 1 21:28:17 2011 @@ -1,4 +1,5 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> +<?xml version="1.0" encoding="UTF-8"?> + <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file @@ -17,11 +18,15 @@ KIND, either express or implied. See th specific language governing permissions and limitations under the License. --> + <project xmlns="http://maven.apache.org/DECORATION/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"> <body> <menu name="Overview"> <item name="Introduction" href="index.html"/> <item name="Usage" href="usage.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> </menu> </body> </project> Modified: maven/shared/trunk/maven-invoker/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-invoker/src/site/site.xml?rev=1164282&r1=1164281&r2=1164282&view=diff ============================================================================== --- maven/shared/trunk/maven-invoker/src/site/site.xml (original) +++ maven/shared/trunk/maven-invoker/src/site/site.xml Thu Sep 1 21:28:17 2011 @@ -1,4 +1,5 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> +<?xml version="1.0" encoding="UTF-8"?> + <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file @@ -17,11 +18,15 @@ KIND, either express or implied. See th specific language governing permissions and limitations under the License. --> + <project xmlns="http://maven.apache.org/DECORATION/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"> <body> <menu name="Overview"> <item name="Introduction" href="index.html"/> <item name="Usage" href="usage.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> </menu> </body> </project> Modified: maven/shared/trunk/maven-model-converter/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-model-converter/src/site/site.xml?rev=1164282&r1=1164281&r2=1164282&view=diff ============================================================================== --- maven/shared/trunk/maven-model-converter/src/site/site.xml (original) +++ maven/shared/trunk/maven-model-converter/src/site/site.xml Thu Sep 1 21:28:17 2011 @@ -1,4 +1,5 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> +<?xml version="1.0" encoding="UTF-8"?> + <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file @@ -17,10 +18,14 @@ KIND, either express or implied. See th specific language governing permissions and limitations under the License. --> + <project xmlns="http://maven.apache.org/DECORATION/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"> <body> <menu name="Overview"> <item name="Introduction" href="index.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> </menu> </body> </project> Added: maven/shared/trunk/maven-osgi/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-osgi/src/site/site.xml?rev=1164282&view=auto ============================================================================== --- maven/shared/trunk/maven-osgi/src/site/site.xml (added) +++ maven/shared/trunk/maven-osgi/src/site/site.xml Thu Sep 1 21:28:17 2011 @@ -0,0 +1,34 @@ +<?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. +--> + +<project xmlns="http://maven.apache.org/DECORATION/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"> + <body> + <menu name="Overview"> + <item name="Introduction" href="index.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> + </menu> + + <menu ref="parent"/> + <menu ref="reports"/> + </body> +</project> \ No newline at end of file Propchange: maven/shared/trunk/maven-osgi/src/site/site.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/shared/trunk/maven-osgi/src/site/site.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: maven/shared/trunk/maven-osgi/src/site/site.xml ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: maven/shared/trunk/maven-plugin-enforcer/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-plugin-enforcer/src/site/site.xml?rev=1164282&r1=1164281&r2=1164282&view=diff ============================================================================== --- maven/shared/trunk/maven-plugin-enforcer/src/site/site.xml (original) +++ maven/shared/trunk/maven-plugin-enforcer/src/site/site.xml Thu Sep 1 21:28:17 2011 @@ -1,4 +1,5 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> +<?xml version="1.0" encoding="UTF-8"?> + <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file @@ -17,12 +18,15 @@ KIND, either express or implied. See th specific language governing permissions and limitations under the License. --> + <project xmlns="http://maven.apache.org/DECORATION/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"> <body> <menu name="Overview"> <item name="Introduction" href="index.html"/> <item name="Usage" href="usage.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> </menu> </body> </project> - Modified: maven/shared/trunk/maven-reporting-api/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-reporting-api/src/site/site.xml?rev=1164282&r1=1164281&r2=1164282&view=diff ============================================================================== --- maven/shared/trunk/maven-reporting-api/src/site/site.xml (original) +++ maven/shared/trunk/maven-reporting-api/src/site/site.xml Thu Sep 1 21:28:17 2011 @@ -1,4 +1,5 @@ <?xml version="1.0"?> + <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file @@ -20,6 +21,13 @@ under the License. <project xmlns="http://maven.apache.org/DECORATION/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"> <body> + <menu name="Overview"> + <item name="Introduction" href="index.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> + </menu> + <menu ref="parent"/> <menu ref="reports"/> </body> Modified: maven/shared/trunk/maven-reporting-impl/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-reporting-impl/src/site/site.xml?rev=1164282&r1=1164281&r2=1164282&view=diff ============================================================================== --- maven/shared/trunk/maven-reporting-impl/src/site/site.xml (original) +++ maven/shared/trunk/maven-reporting-impl/src/site/site.xml Thu Sep 1 21:28:17 2011 @@ -1,4 +1,5 @@ <?xml version="1.0"?> + <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file @@ -20,6 +21,13 @@ under the License. <project xmlns="http://maven.apache.org/DECORATION/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"> <body> + <menu name="Overview"> + <item name="Introduction" href="index.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> + </menu> + <menu ref="parent"/> <menu ref="reports"/> </body> Added: maven/shared/trunk/maven-repository-builder/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-repository-builder/src/site/site.xml?rev=1164282&view=auto ============================================================================== --- maven/shared/trunk/maven-repository-builder/src/site/site.xml (added) +++ maven/shared/trunk/maven-repository-builder/src/site/site.xml Thu Sep 1 21:28:17 2011 @@ -0,0 +1,34 @@ +<?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. +--> + +<project xmlns="http://maven.apache.org/DECORATION/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"> + <body> + <menu name="Overview"> + <item name="Introduction" href="index.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> + </menu> + + <menu ref="parent"/> + <menu ref="reports"/> + </body> +</project> \ No newline at end of file Propchange: maven/shared/trunk/maven-repository-builder/src/site/site.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/shared/trunk/maven-repository-builder/src/site/site.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: maven/shared/trunk/maven-repository-builder/src/site/site.xml ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: maven/shared/trunk/maven-runtime/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-runtime/src/site/site.xml?rev=1164282&r1=1164281&r2=1164282&view=diff ============================================================================== --- maven/shared/trunk/maven-runtime/src/site/site.xml (original) +++ maven/shared/trunk/maven-runtime/src/site/site.xml Thu Sep 1 21:28:17 2011 @@ -24,8 +24,11 @@ <menu name="Overview"> <item name="Introduction" href="index.html"/> <item name="Usage" href="usage.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> <item name="FAQ" href="faq.html"/> </menu> + <menu name="Examples"> <item name="Introspecting a URL" href="examples/introspecting-a-url.html"/> <item name="Introspecting a class" href="examples/introspecting-a-class.html"/> Added: maven/shared/trunk/maven-shared-io/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-shared-io/src/site/site.xml?rev=1164282&view=auto ============================================================================== --- maven/shared/trunk/maven-shared-io/src/site/site.xml (added) +++ maven/shared/trunk/maven-shared-io/src/site/site.xml Thu Sep 1 21:28:17 2011 @@ -0,0 +1,34 @@ +<?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. +--> + +<project xmlns="http://maven.apache.org/DECORATION/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"> + <body> + <menu name="Overview"> + <item name="Introduction" href="index.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> + </menu> + + <menu ref="parent"/> + <menu ref="reports"/> + </body> +</project> \ No newline at end of file Propchange: maven/shared/trunk/maven-shared-io/src/site/site.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/shared/trunk/maven-shared-io/src/site/site.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: maven/shared/trunk/maven-shared-io/src/site/site.xml ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: maven/shared/trunk/maven-shared-jar/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-shared-jar/src/site/site.xml?rev=1164282&r1=1164281&r2=1164282&view=diff ============================================================================== --- maven/shared/trunk/maven-shared-jar/src/site/site.xml (original) +++ maven/shared/trunk/maven-shared-jar/src/site/site.xml Thu Sep 1 21:28:17 2011 @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> +<?xml version="1.0"?> <!-- Licensed to the Apache Software Foundation (ASF) under one @@ -9,7 +9,7 @@ to you under the Apache License, Version "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 + 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 @@ -22,8 +22,13 @@ under the License. <project xmlns="http://maven.apache.org/DECORATION/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"> <body> <menu name="Overview"> - <item name="Introduction" href="index.html" /> + <item name="Introduction" href="index.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> </menu> - <menu ref="reports" /> + + <menu ref="parent"/> + <menu ref="reports"/> </body> -</project> +</project> \ No newline at end of file Added: maven/shared/trunk/maven-shared-monitor/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-shared-monitor/src/site/site.xml?rev=1164282&view=auto ============================================================================== --- maven/shared/trunk/maven-shared-monitor/src/site/site.xml (added) +++ maven/shared/trunk/maven-shared-monitor/src/site/site.xml Thu Sep 1 21:28:17 2011 @@ -0,0 +1,34 @@ +<?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. +--> + +<project xmlns="http://maven.apache.org/DECORATION/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"> + <body> + <menu name="Overview"> + <item name="Introduction" href="index.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> + </menu> + + <menu ref="parent"/> + <menu ref="reports"/> + </body> +</project> \ No newline at end of file Propchange: maven/shared/trunk/maven-shared-monitor/src/site/site.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/shared/trunk/maven-shared-monitor/src/site/site.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: maven/shared/trunk/maven-shared-monitor/src/site/site.xml ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: maven/shared/trunk/maven-shared-resources/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-shared-resources/src/site/site.xml?rev=1164282&r1=1164281&r2=1164282&view=diff ============================================================================== --- maven/shared/trunk/maven-shared-resources/src/site/site.xml (original) +++ maven/shared/trunk/maven-shared-resources/src/site/site.xml Thu Sep 1 21:28:17 2011 @@ -24,6 +24,12 @@ under the License. <menu name="Overview"> <item name="Introduction" href="index.html"/> <item name="Usage" href="usage.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> </menu> + + <menu ref="parent"/> + <menu ref="reports"/> </body> </project> Added: maven/shared/trunk/maven-verifier/src/site/site.xml URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-verifier/src/site/site.xml?rev=1164282&view=auto ============================================================================== --- maven/shared/trunk/maven-verifier/src/site/site.xml (added) +++ maven/shared/trunk/maven-verifier/src/site/site.xml Thu Sep 1 21:28:17 2011 @@ -0,0 +1,34 @@ +<?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. +--> + +<project xmlns="http://maven.apache.org/DECORATION/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"> + <body> + <menu name="Overview"> + <item name="Introduction" href="index.html"/> + <item name="JavaDocs" href="apidocs/index.html"/> + <item name="Source Xref" href="xref/index.html"/> + <!--item name="FAQ" href="faq.html"/--> + </menu> + + <menu ref="parent"/> + <menu ref="reports"/> + </body> +</project> \ No newline at end of file Propchange: maven/shared/trunk/maven-verifier/src/site/site.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/shared/trunk/maven-verifier/src/site/site.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Id Revision Propchange: maven/shared/trunk/maven-verifier/src/site/site.xml ------------------------------------------------------------------------------ svn:mime-type = text/plain