You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2008/11/03 23:44:12 UTC

svn commit: r710201 - in /maven/plugins/trunk/maven-changes-plugin/src/site: apt/examples/configuring-trac-report.apt site.xml

Author: olamy
Date: Mon Nov  3 14:44:12 2008
New Revision: 710201

URL: http://svn.apache.org/viewvc?rev=710201&view=rev
Log:
[MCHANGES-90] fix apt and add link in site.xml


Modified:
    maven/plugins/trunk/maven-changes-plugin/src/site/apt/examples/configuring-trac-report.apt
    maven/plugins/trunk/maven-changes-plugin/src/site/site.xml

Modified: maven/plugins/trunk/maven-changes-plugin/src/site/apt/examples/configuring-trac-report.apt
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-changes-plugin/src/site/apt/examples/configuring-trac-report.apt?rev=710201&r1=710200&r2=710201&view=diff
==============================================================================
--- maven/plugins/trunk/maven-changes-plugin/src/site/apt/examples/configuring-trac-report.apt (original)
+++ maven/plugins/trunk/maven-changes-plugin/src/site/apt/examples/configuring-trac-report.apt Mon Nov  3 14:44:12 2008
@@ -36,7 +36,7 @@
  accessible via no authentication, basic authentication or NTLM authentication, 
  if you've used form authentication then you are out of luck.
  
- Your Trac installation needs to have the {{http://trac-hacks.org/wiki/XmlRpcPlugin}XML-RPC plugin}
+ Your Trac installation needs to have the {{{http://trac-hacks.org/wiki/XmlRpcPlugin}XML-RPC plugin}}
  installed and working for this plugin to be able to read the tickets. 
 
 ** Basic Report Configuration
@@ -46,27 +46,28 @@
  will be listed
  
 +-----------------+
-	<issueManagement>
-		<system>trac</system>
-		<url>http://mytracserver.local/trac/MYPROJECT/</url>
-	</issueManagement>
+  <issueManagement>
+    <system>trac</system>
+    <url>http://mytracserver.local/trac/MYPROJECT/</url>
+  </issueManagement>
 +-----------------+
 
 ** Configuring a Custom Query
  
- The exact query can configured in the <<<\<query\>>>> element.  See 
- {{http://trac.edgewall.org/wiki/TracQuery}TracQuery} for the exact syntax.
+ The exact query can configured in the <<<\<query\>>>> element.  
+ See {{{http://trac.edgewall.org/wiki/TracQuery}TracQuery}} for the exact syntax.
 
 +-----------------+
-...
-<plugin>
-	<groupId>org.apache.maven.plugins</groupId>
-	<artifactId>maven-changes-plugin</artifactId>
-	<configuration>
-		<query>status=accepted&amp;status=assigned&amp;status=new&amp;status=reopened&amp;order=priority&amp;component=${project.artifactId}</query>
-	</configuration>
-</plugin>
-...
+  ...
+  <plugin>
+    <groupId>org.apache.maven.plugins</groupId>
+    <artifactId>maven-changes-plugin</artifactId>
+    <version>2.1</version>
+    <configuration>
+      <query>status=accepted&amp;status=assigned&amp;status=new&amp;status=reopened&amp;order=priority&amp;component=${project.artifactId}</query>
+    </configuration>
+  </plugin>
+  ...
 +-----------------+
 
 
@@ -79,18 +80,19 @@
 +-----------------+
 <project>
   ...
-	<reporting>
-		<plugins>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-changes-plugin</artifactId>
-				<configuration>
-					<tracUser>my username</tracUser>
-					<tracPassword>my password</tracPassword>
-				</configuration>
-			</plugin>
-		</plugins>
-	</reporting>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-changes-plugin</artifactId>
+        <version>2.1</version>
+        <configuration>
+          <tracUser>my username</tracUser>
+          <tracPassword>my password</tracPassword>
+        </configuration>
+      </plugin>
+    </plugins>
+  </reporting>
   ...
 </project>
 +-----------------+
@@ -112,18 +114,19 @@
 +-----------------+
 <project>
   ...
-	<reporting>
-		<plugins>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-changes-plugin</artifactId>
-				<configuration>
-					...
-					<outputEncoding>Windows-31J</outputEncoding>
-				</configuration>
-			</plugin>
-		</plugins>
-	</reporting>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-changes-plugin</artifactId>
+        <version>2.1</version>
+        <configuration>
+          ...
+          <outputEncoding>Windows-31J</outputEncoding>
+        </configuration>
+      </plugin>
+    </plugins>
+  </reporting>
   ...
 </project>
 +-----------------+

Modified: maven/plugins/trunk/maven-changes-plugin/src/site/site.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-changes-plugin/src/site/site.xml?rev=710201&r1=710200&r2=710201&view=diff
==============================================================================
--- maven/plugins/trunk/maven-changes-plugin/src/site/site.xml (original)
+++ maven/plugins/trunk/maven-changes-plugin/src/site/site.xml Mon Nov  3 14:44:12 2008
@@ -41,6 +41,7 @@
       <item name="Specifying the Mail Sender" href="examples/specifying-mail-sender.html"/>
       <item name="Using a Custom Announcement Template" href="examples/using-a-custom-announcement-template.html"/>
       <item name="Validate Your changes.xml File" href="examples/changes-file-validation.html"/>
+      <item name="Configuring Trac Report" href="examples/configuring-trac-report.html"/>
     </menu>
   </body>
 </project>