You are viewing a plain text version of this content. The canonical link for it is here.
Posted to npanday-commits@incubator.apache.org by br...@apache.org on 2011/04/25 13:59:00 UTC

svn commit: r1096484 - in /incubator/npanday/site: pom.xml src/site/apt/index.apt.vm src/site/filtered-resources/ src/site/filtered-resources/.htaccess src/site/resources/.htaccess src/site/site.xml

Author: brett
Date: Mon Apr 25 13:59:00 2011
New Revision: 1096484

URL: http://svn.apache.org/viewvc?rev=1096484&view=rev
Log:
make sure to point to the release at Codeplex for now

Added:
    incubator/npanday/site/src/site/filtered-resources/
    incubator/npanday/site/src/site/filtered-resources/.htaccess
      - copied, changed from r1096403, incubator/npanday/site/src/site/resources/.htaccess
Removed:
    incubator/npanday/site/src/site/resources/.htaccess
Modified:
    incubator/npanday/site/pom.xml
    incubator/npanday/site/src/site/apt/index.apt.vm
    incubator/npanday/site/src/site/site.xml

Modified: incubator/npanday/site/pom.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/site/pom.xml?rev=1096484&r1=1096483&r2=1096484&view=diff
==============================================================================
--- incubator/npanday/site/pom.xml (original)
+++ incubator/npanday/site/pom.xml Mon Apr 25 13:59:00 2011
@@ -25,7 +25,7 @@
     <version>7</version>
   </parent>
   <groupId>npanday</groupId>
-  <version>2.0-SNAPSHOT</version>
+  <version>1.3.1-incubating-SNAPSHOT</version>
   <artifactId>npanday-site</artifactId>
   <packaging>pom</packaging>
   <name>NPanday</name>
@@ -256,8 +256,8 @@
   </distributionManagement>
 
   <properties>
-    <npandayReleaseVersion>1.3-incubating</npandayReleaseVersion>
-    <npandayReleaseDate>10 March 2011</npandayReleaseDate>
+    <npandayReleaseVersion>1.2.1</npandayReleaseVersion>
+    <npandayReleaseDate>8 September 2010</npandayReleaseDate>
   </properties>
 
   <build>
@@ -276,6 +276,29 @@
           </execution>
         </executions>
       </plugin>    
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-resources-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>copy-resources</id>
+            <!-- here the phase you need -->
+            <phase>pre-site</phase>
+            <goals>
+              <goal>copy-resources</goal>
+            </goals>
+            <configuration>
+              <outputDirectory>${basedir}/target/site</outputDirectory>
+              <resources>
+                <resource>
+                  <directory>src/site/filtered-resources</directory>
+                  <filtering>true</filtering>
+                </resource>
+              </resources>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
     </plugins>
     <extensions>
       <extension>

Modified: incubator/npanday/site/src/site/apt/index.apt.vm
URL: http://svn.apache.org/viewvc/incubator/npanday/site/src/site/apt/index.apt.vm?rev=1096484&r1=1096483&r2=1096484&view=diff
==============================================================================
--- incubator/npanday/site/src/site/apt/index.apt.vm (original)
+++ incubator/npanday/site/src/site/apt/index.apt.vm Mon Apr 25 13:59:00 2011
@@ -30,18 +30,24 @@ NPanday 
 
 * News
 
-  ${npandayReleaseDate}: {{{./docs/${npandayReleaseVersion}/download.html} Release 1.3-incubating available}}.  This is our 9th release and the first one after we've moved to the Apache Incubator.  This release includes 2 major issues: the removal of the UAC and PAB directories, thus making NPanday more maven-like and the support of NPanday for VS 2010 and Net 4.0 Framework.
+  ~~10 March 2011: {{{./docs/1.3-incubating/download.html} Release 1.3-incubating available}}.  This is our 9th release and the first one after we've moved to the Apache Incubator.  This release includes 2 major issues: the removal of the UAC and PAB directories, thus making NPanday more maven-like and the support of NPanday for VS 2010 and Net 4.0 Framework.
 
   08 September 2010: {{{http://npanday.codeplex.com/releases/view/47408} Release 1.2.1 available}}. This is our 8th release, incorporating many bug fixes, improved documentation, greatly enhanced the performance on projects with many (transitive) dependencies and a variety of new features, include code coverage for Java and .Net modules. This is the last release to be produced from Codeplex, with the infrastructure being moved to the Apache Incubator.
   
 * Current Release and Documentation
 
-The current release is ${npandayReleaseVersion}:
+The current release is ${npandayReleaseVersion} (released on Codeplex):
 
-  * {{{./docs/${npandayReleaseVersion}/download.html} NPanday ${npandayReleaseVersion} Release}}
+  * {{{http://npanday.codeplex.com/releases/view/47408} NPanday ${npandayReleaseVersion} Release}}
 
   * {{{./docs/${npandayReleaseVersion}} NPanday ${npandayReleaseVersion} Documentation}}
 
+~~The current release is ${npandayReleaseVersion}:
+~~
+~~  * {{{./docs/${npandayReleaseVersion}/download.html} NPanday ${npandayReleaseVersion} Release}}
+~~
+~~  * {{{./docs/${npandayReleaseVersion}} NPanday ${npandayReleaseVersion} Documentation}}
+
 * Current Development Version (Incubating)
 
   * {{{./docs/${project.version}/} NPanday ${project.version} Documentation}}

Copied: incubator/npanday/site/src/site/filtered-resources/.htaccess (from r1096403, incubator/npanday/site/src/site/resources/.htaccess)
URL: http://svn.apache.org/viewvc/incubator/npanday/site/src/site/filtered-resources/.htaccess?p2=incubator/npanday/site/src/site/filtered-resources/.htaccess&p1=incubator/npanday/site/src/site/resources/.htaccess&r1=1096403&r2=1096484&rev=1096484&view=diff
==============================================================================
--- incubator/npanday/site/src/site/resources/.htaccess (original)
+++ incubator/npanday/site/src/site/filtered-resources/.htaccess Mon Apr 25 13:59:00 2011
@@ -1 +1,2 @@
-RedirectMatch permanent ^/npanday/docs/current/(.*)$ http://incubator.apache.org/npanday/docs/1.3-incubating/$1
+RedirectMatch permanent ^/npanday/docs/current/(.*)$ http://incubator.apache.org/npanday/docs/${npandayReleaseVersion}/$1
+RedirectMatch permanent ^/npanday/docs/1.2.1/(.*)$ http://incubator.apache.org/npanday/docs/1.2/$1

Modified: incubator/npanday/site/src/site/site.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/site/src/site/site.xml?rev=1096484&r1=1096483&r2=1096484&view=diff
==============================================================================
--- incubator/npanday/site/src/site/site.xml (original)
+++ incubator/npanday/site/src/site/site.xml Mon Apr 25 13:59:00 2011
@@ -25,7 +25,7 @@
     </breadcrumbs>
     
     <menu name="NPanday">
-      <item name="NPanday ${npandayReleaseVersion} Release" href="./docs/${npandayReleaseVersion}/download.html"/>
+      <item name="NPanday ${npandayReleaseVersion} Release" href="http://npanday.codeplex.com/releases/view/47408" />
       <item name="NPanday ${npandayReleaseVersion} Documentation" href="./docs/${npandayReleaseVersion}/index.html" />
     </menu>
   </body>