You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@creadur.apache.org by rd...@apache.org on 2012/06/10 08:45:17 UTC

svn commit: r1348536 - in /creadur/rat/trunk: pom.xml src/site/site.xml

Author: rdonkin
Date: Sun Jun 10 06:45:17 2012
New Revision: 1348536

URL: http://svn.apache.org/viewvc?rev=1348536&view=rev
Log:
Improve uplinking, and prevent Maven relativizing links to siblings. Site plugin version now specified.

Modified:
    creadur/rat/trunk/pom.xml
    creadur/rat/trunk/src/site/site.xml

Modified: creadur/rat/trunk/pom.xml
URL: http://svn.apache.org/viewvc/creadur/rat/trunk/pom.xml?rev=1348536&r1=1348535&r2=1348536&view=diff
==============================================================================
--- creadur/rat/trunk/pom.xml (original)
+++ creadur/rat/trunk/pom.xml Sun Jun 10 06:45:17 2012
@@ -27,7 +27,7 @@
   <packaging>pom</packaging>
   <version>0.9-SNAPSHOT</version>
   <name>Apache Rat</name>
-  <url>http://creadur.apache.org/rat</url>
+  <url>http://creadur.apache.org/rat/</url>
   <description>
 Apache Rat is a release audit tool. It improves accuracy and efficiency when checking
 releases. It is heuristic in nature: making guesses about possible problems. It
@@ -223,6 +223,16 @@ agnostic home for software distribution 
             <encoding>${project.build.sourceEncoding}</encoding>
           </configuration>
         </plugin>
+        <plugin>
+	        <groupId>org.apache.maven.plugins</groupId>
+	        <artifactId>maven-site-plugin</artifactId>
+	        <version>3.1</version>
+	        <configuration>
+	          <outputEncoding>${project.build.sourceEncoding}</outputEncoding>
+	          <inputEncoding>${project.build.sourceEncoding}</inputEncoding>
+	          <relativizeDecorationLinks>false</relativizeDecorationLinks>
+        	</configuration>
+        </plugin>
       </plugins>
     </pluginManagement>
     <plugins>

Modified: creadur/rat/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/creadur/rat/trunk/src/site/site.xml?rev=1348536&r1=1348535&r2=1348536&view=diff
==============================================================================
--- creadur/rat/trunk/src/site/site.xml (original)
+++ creadur/rat/trunk/src/site/site.xml Sun Jun 10 06:45:17 2012
@@ -16,13 +16,19 @@
 -->
 <project name="Apache Rat">
   <body>    
-    <menu name="Apache Rat">
+    <breadcrumbs>
+      <item name="Apache" href="http://www.apache.org/"/>
+      <item name="Creadur" href="http://creadur.apache.org/"/>
+      <item name="Rat" href="http://creadur.apache.org/rat/"/>
+    </breadcrumbs>
+  
+    <menu name="Apache Rat" inherit="bottom">
       <item name="Introducing Rat" href="/index.html"/>
       <item name="Downloads" href="/download_rat.cgi"/>
       <item name="Changes" href="/RELEASE_NOTES.txt"/>
     </menu>
 
-	<menu name="Apache Creadur">
+	<menu name="Apache Creadur" inherit="bottom">
 		<item name='Project Home' href="http://creadur.apache.org"/>
 		<item name='Apache Tentacles' href="http://creadur.apache.org/tentacles"/>
 		<item name='Apache Whisker' href="http://creadur.apache.org/whisker"/>