You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by fe...@apache.org on 2010/08/11 13:56:43 UTC

svn commit: r984385 - in /directory/sandbox/felixk/apacheds-docs: pom.xml src/docbkx-stylesheet/html/docbook.xsl src/main/resources/css/

Author: felixk
Date: Wed Aug 11 11:56:43 2010
New Revision: 984385

URL: http://svn.apache.org/viewvc?rev=984385&view=rev
Log:
Get css from directory website

Removed:
    directory/sandbox/felixk/apacheds-docs/src/main/resources/css/
Modified:
    directory/sandbox/felixk/apacheds-docs/pom.xml
    directory/sandbox/felixk/apacheds-docs/src/docbkx-stylesheet/html/docbook.xsl

Modified: directory/sandbox/felixk/apacheds-docs/pom.xml
URL: http://svn.apache.org/viewvc/directory/sandbox/felixk/apacheds-docs/pom.xml?rev=984385&r1=984384&r2=984385&view=diff
==============================================================================
--- directory/sandbox/felixk/apacheds-docs/pom.xml (original)
+++ directory/sandbox/felixk/apacheds-docs/pom.xml Wed Aug 11 11:56:43 2010
@@ -16,6 +16,36 @@
   <build>
     <plugins>
       <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>wagon-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>green-css</id>
+            <phase>pre-site</phase>
+            <goals>
+              <goal>download-single</goal>
+            </goals>
+            <configuration>
+              <url>http://directory.apache.org/staticresources</url>
+              <fromFile>green_20091029.css</fromFile>
+              <toFile>target/docbkx/html/css/green.css</toFile>
+            </configuration>
+          </execution>
+          <execution>
+            <id>common-css</id>
+            <phase>pre-site</phase>
+            <goals>
+              <goal>download-single</goal>
+            </goals>
+            <configuration>
+              <url>http://directory.apache.org/staticresources</url>
+              <fromFile>common_20091029.css</fromFile>
+              <toFile>target/docbkx/html/css/common.css</toFile>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
         <artifactId>maven-resources-plugin</artifactId>
         <executions>
           <execution>

Modified: directory/sandbox/felixk/apacheds-docs/src/docbkx-stylesheet/html/docbook.xsl
URL: http://svn.apache.org/viewvc/directory/sandbox/felixk/apacheds-docs/src/docbkx-stylesheet/html/docbook.xsl?rev=984385&r1=984384&r2=984385&view=diff
==============================================================================
--- directory/sandbox/felixk/apacheds-docs/src/docbkx-stylesheet/html/docbook.xsl (original)
+++ directory/sandbox/felixk/apacheds-docs/src/docbkx-stylesheet/html/docbook.xsl Wed Aug 11 11:56:43 2010
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE stylesheet [
-<!ENTITY green_css SYSTEM "../../main/resources/css/green.css">
-<!ENTITY common_css SYSTEM "../../main/resources/css/common.css">
+<!ENTITY green_css SYSTEM "../../../target/docbkx/html/css/green.css">
+<!ENTITY common_css SYSTEM "../../../target/docbkx/html/css/common.css">
 ]>
 
 <xsl:stylesheet