Author: piergiorgio
Date: Wed May 9 22:24:15 2018
New Revision: 1831286
URL: http://svn.apache.org/viewvc?rev=1831286&view=rev
Log:
- updated the maven-site-plugin dependency with the latest stable that includes
what we asked them for fixing the multilanguage feature (CONNECTORS-1495)
- added the PDF rendition for each language using the maven-pdf-plugin
- downgraded the maven-fluido-skin to 1.6 for some compatibility issues with
maven-pdf-plugin
- temporary fix of who.md template
Added:
manifoldcf/site/branches/CONNECTORS-1495/src/site/pdf.xml (with props)
manifoldcf/site/branches/CONNECTORS-1495/src/site/pdf_ja.xml (with props)
manifoldcf/site/branches/CONNECTORS-1495/src/site/pdf_zh.xml (with props)
Modified:
manifoldcf/site/branches/CONNECTORS-1495/README.txt
manifoldcf/site/branches/CONNECTORS-1495/pom.xml
manifoldcf/site/branches/CONNECTORS-1495/src/site/ja/markdown/who.md
manifoldcf/site/branches/CONNECTORS-1495/src/site/markdown/who.md
manifoldcf/site/branches/CONNECTORS-1495/src/site/site.xml
manifoldcf/site/branches/CONNECTORS-1495/src/site/site_ja.xml
manifoldcf/site/branches/CONNECTORS-1495/src/site/site_zh.xml
manifoldcf/site/branches/CONNECTORS-1495/src/site/zh/markdown/who.md
Modified: manifoldcf/site/branches/CONNECTORS-1495/README.txt
URL:
http://svn.apache.org/viewvc/manifoldcf/site/branches/CONNECTORS-1495/README.txt?rev=1831286&r1=1831285&r2=1831286&view=diff
==============================================================================
--- manifoldcf/site/branches/CONNECTORS-1495/README.txt (original)
+++ manifoldcf/site/branches/CONNECTORS-1495/README.txt Wed May 9 22:24:15 2018
@@ -1,3 +1,16 @@
+--- NEW WEBSITE DEVELOPMENT ---
+
+1. To convert xdocs templates to the markdown format run the following command:
+mvn clean package
+
+2. To test the new website run the following:
+mvn clean site:run
+
+3. To generate a PDF document from markdown for each language run:
+mvn clean site
+
+---- Legacy ---
+
This directory contains the ManifoldCF web site. To update the site, do the
following:
1. Modify the site sources in ./src
Modified: manifoldcf/site/branches/CONNECTORS-1495/pom.xml
URL:
http://svn.apache.org/viewvc/manifoldcf/site/branches/CONNECTORS-1495/pom.xml?rev=1831286&r1=1831285&r2=1831286&view=diff
==============================================================================
--- manifoldcf/site/branches/CONNECTORS-1495/pom.xml (original)
+++ manifoldcf/site/branches/CONNECTORS-1495/pom.xml Wed May 9 22:24:15 2018
@@ -1,28 +1,22 @@
<?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 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.
--->
+<!-- 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/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
-
+
<parent>
<groupId>org.apache.manifoldcf</groupId>
<artifactId>mcf-parent</artifactId>
- <version>2.10-SNAPSHOT</version>
+ <version>2.11-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -32,20 +26,20 @@
<packaging>pom</packaging>
<properties>
- <project.url>http://manifoldcf.apache.org</project.url>
+ <project.url>http://manifoldcf.apache.org</project.url>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
- <maven.compiler.target>1.8</maven.compiler.target>
- <forrest2md.version>0.1.1</forrest2md.version>
+ <maven.compiler.target>1.8</maven.compiler.target>
+ <forrest2md.version>0.1.1</forrest2md.version>
</properties>
-
+
<build>
<plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
+ <plugin>
+ <groupId>org.springframework.boot</groupId>
+
<artifactId>spring-boot-maven-plugin</artifactId>
+ </plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
@@ -86,421 +80,419 @@
</configuration>
</execution>
<execution>
- <id>ConvertXdocsToMd-Verify</id>
- <goals>
- <goal>exec</goal>
- </goals>
- <phase>prepare-package</phase>
- <configuration>
- <executable>java</executable>
- <workingDirectory>/tmp</workingDirectory>
- <arguments>
- <argument>-jar</argument>
-
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
-
<argument>${project.basedir}/src/documentation/content/xdocs/en_US/verify.xml</argument>
-
<argument>${project.basedir}/src/site/markdown/verify.md</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>ConvertXdocsToMd-Security</id>
- <goals>
- <goal>exec</goal>
- </goals>
- <phase>prepare-package</phase>
- <configuration>
- <executable>java</executable>
- <workingDirectory>/tmp</workingDirectory>
- <arguments>
- <argument>-jar</argument>
-
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
-
<argument>${project.basedir}/src/documentation/content/xdocs/en_US/security.xml</argument>
-
<argument>${project.basedir}/src/site/markdown/security.md</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>ConvertXdocsToMd-Books-And-Presentation</id>
- <goals>
- <goal>exec</goal>
- </goals>
- <phase>prepare-package</phase>
- <configuration>
- <executable>java</executable>
- <workingDirectory>/tmp</workingDirectory>
- <arguments>
- <argument>-jar</argument>
-
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
-
<argument>${project.basedir}/src/documentation/content/xdocs/en_US/books-and-presentations.xml</argument>
-
<argument>${project.basedir}/src/site/markdown/books-and-presentations.md</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>ConvertXdocsToMd-Developer-Resources</id>
- <goals>
- <goal>exec</goal>
- </goals>
- <phase>prepare-package</phase>
- <configuration>
- <executable>java</executable>
- <workingDirectory>/tmp</workingDirectory>
- <arguments>
- <argument>-jar</argument>
-
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
-
<argument>${project.basedir}/src/documentation/content/xdocs/en_US/developer-resources.xml</argument>
-
<argument>${project.basedir}/src/site/markdown/developer-resources.md</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>ConvertXdocsToMd-Download</id>
- <goals>
- <goal>exec</goal>
- </goals>
- <phase>prepare-package</phase>
- <configuration>
- <executable>java</executable>
- <workingDirectory>/tmp</workingDirectory>
- <arguments>
- <argument>-jar</argument>
-
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
-
<argument>${project.basedir}/src/documentation/content/xdocs/en_US/download.xml</argument>
-
<argument>${project.basedir}/src/site/markdown/download.md</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>ConvertXdocsToMd-Release-Documentation</id>
- <goals>
- <goal>exec</goal>
- </goals>
- <phase>prepare-package</phase>
- <configuration>
- <executable>java</executable>
- <workingDirectory>/tmp</workingDirectory>
- <arguments>
- <argument>-jar</argument>
-
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
-
<argument>${project.basedir}/src/documentation/content/xdocs/en_US/release-documentation.xml</argument>
-
<argument>${project.basedir}/src/site/markdown/release-documentation.md</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>ConvertXdocsToMd-Who</id>
- <goals>
- <goal>exec</goal>
- </goals>
- <phase>prepare-package</phase>
- <configuration>
- <executable>java</executable>
- <workingDirectory>/tmp</workingDirectory>
- <arguments>
- <argument>-jar</argument>
-
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
-
<argument>${project.basedir}/src/documentation/content/xdocs/en_US/who.xml</argument>
-
<argument>${project.basedir}/src/site/markdown/who.md</argument>
- </arguments>
- </configuration>
- </execution>
-
- <!-- Executions for converting japanese contents (ja_JP) -->
- <execution>
- <id>ConvertXdocsToMd-Index-ja_JP</id>
- <goals>
- <goal>exec</goal>
- </goals>
- <phase>prepare-package</phase>
- <configuration>
- <executable>java</executable>
- <workingDirectory>/tmp</workingDirectory>
- <arguments>
- <argument>-jar</argument>
-
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
-
<argument>${project.basedir}/src/documentation/content/xdocs/ja_JP/index.xml</argument>
-
<argument>${project.basedir}/src/site/ja/markdown/index.md</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>ConvertXdocsToMd-Mail-ja_JP</id>
- <goals>
- <goal>exec</goal>
- </goals>
- <phase>prepare-package</phase>
- <configuration>
- <executable>java</executable>
- <workingDirectory>/tmp</workingDirectory>
- <arguments>
- <argument>-jar</argument>
-
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
-
<argument>${project.basedir}/src/documentation/content/xdocs/ja_JP/mail.xml</argument>
-
<argument>${project.basedir}/src/site/ja/markdown/mail.md</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>ConvertXdocsToMd-Books-And-Presentation-ja_JP</id>
- <goals>
- <goal>exec</goal>
- </goals>
- <phase>prepare-package</phase>
- <configuration>
- <executable>java</executable>
- <workingDirectory>/tmp</workingDirectory>
- <arguments>
- <argument>-jar</argument>
-
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
-
<argument>${project.basedir}/src/documentation/content/xdocs/ja_JP/books-and-presentations.xml</argument>
-
<argument>${project.basedir}/src/site/ja/markdown/books-and-presentations.md</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>ConvertXdocsToMd-Developer-Resources-ja_JP</id>
- <goals>
- <goal>exec</goal>
- </goals>
- <phase>prepare-package</phase>
- <configuration>
- <executable>java</executable>
- <workingDirectory>/tmp</workingDirectory>
- <arguments>
- <argument>-jar</argument>
-
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
-
<argument>${project.basedir}/src/documentation/content/xdocs/ja_JP/developer-resources.xml</argument>
-
<argument>${project.basedir}/src/site/ja/markdown/developer-resources.md</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>ConvertXdocsToMd-Download-ja_JP</id>
- <goals>
- <goal>exec</goal>
- </goals>
- <phase>prepare-package</phase>
- <configuration>
- <executable>java</executable>
- <workingDirectory>/tmp</workingDirectory>
- <arguments>
- <argument>-jar</argument>
-
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
-
<argument>${project.basedir}/src/documentation/content/xdocs/ja_JP/download.xml</argument>
-
<argument>${project.basedir}/src/site/ja/markdown/download.md</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>ConvertXdocsToMd-Release-Documentation-ja_JP</id>
- <goals>
- <goal>exec</goal>
- </goals>
- <phase>prepare-package</phase>
- <configuration>
- <executable>java</executable>
- <workingDirectory>/tmp</workingDirectory>
- <arguments>
- <argument>-jar</argument>
-
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
-
<argument>${project.basedir}/src/documentation/content/xdocs/ja_JP/release-documentation.xml</argument>
-
<argument>${project.basedir}/src/site/ja/markdown/release-documentation.md</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>ConvertXdocsToMd-Who-ja_JP</id>
- <goals>
- <goal>exec</goal>
- </goals>
- <phase>prepare-package</phase>
- <configuration>
- <executable>java</executable>
- <workingDirectory>/tmp</workingDirectory>
- <arguments>
- <argument>-jar</argument>
-
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
-
<argument>${project.basedir}/src/documentation/content/xdocs/ja_JP/who.xml</argument>
-
<argument>${project.basedir}/src/site/ja/markdown/who.md</argument>
- </arguments>
- </configuration>
- </execution>
-
- <!-- Executions for converting chinese contents (zh_CN)-->
- <execution>
- <id>ConvertXdocsToMd-Index-zh_CN</id>
- <goals>
- <goal>exec</goal>
- </goals>
- <phase>prepare-package</phase>
- <configuration>
- <executable>java</executable>
- <workingDirectory>/tmp</workingDirectory>
- <arguments>
- <argument>-jar</argument>
-
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
-
<argument>${project.basedir}/src/documentation/content/xdocs/zh_CN/index.xml</argument>
-
<argument>${project.basedir}/src/site/zh_CN/markdown/index.md</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>ConvertXdocsToMd-Mail-zh_CN</id>
- <goals>
- <goal>exec</goal>
- </goals>
- <phase>prepare-package</phase>
- <configuration>
- <executable>java</executable>
- <workingDirectory>/tmp</workingDirectory>
- <arguments>
- <argument>-jar</argument>
-
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
-
<argument>${project.basedir}/src/documentation/content/xdocs/zh_CN/mail.xml</argument>
-
<argument>${project.basedir}/src/site/zh_CN/markdown/mail.md</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>ConvertXdocsToMd-Books-And-Presentation-zh_CN</id>
- <goals>
- <goal>exec</goal>
- </goals>
- <phase>prepare-package</phase>
- <configuration>
- <executable>java</executable>
- <workingDirectory>/tmp</workingDirectory>
- <arguments>
- <argument>-jar</argument>
-
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
-
<argument>${project.basedir}/src/documentation/content/xdocs/zh_CN/books-and-presentations.xml</argument>
-
<argument>${project.basedir}/src/site/zh_CN/markdown/books-and-presentations.md</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>ConvertXdocsToMd-Developer-Resources-zh_CN</id>
- <goals>
- <goal>exec</goal>
- </goals>
- <phase>prepare-package</phase>
- <configuration>
- <executable>java</executable>
- <workingDirectory>/tmp</workingDirectory>
- <arguments>
- <argument>-jar</argument>
-
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
-
<argument>${project.basedir}/src/documentation/content/xdocs/zh_CN/developer-resources.xml</argument>
-
<argument>${project.basedir}/src/site/zh_CN/markdown/developer-resources.md</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>ConvertXdocsToMd-Download-zh_CN</id>
- <goals>
- <goal>exec</goal>
- </goals>
- <phase>prepare-package</phase>
- <configuration>
- <executable>java</executable>
- <workingDirectory>/tmp</workingDirectory>
- <arguments>
- <argument>-jar</argument>
-
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
-
<argument>${project.basedir}/src/documentation/content/xdocs/zh_CN/download.xml</argument>
-
<argument>${project.basedir}/src/site/zh_CN/markdown/download.md</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>ConvertXdocsToMd-Release-Documentation-zh_CN</id>
- <goals>
- <goal>exec</goal>
- </goals>
- <phase>prepare-package</phase>
- <configuration>
- <executable>java</executable>
- <workingDirectory>/tmp</workingDirectory>
- <arguments>
- <argument>-jar</argument>
-
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
-
<argument>${project.basedir}/src/documentation/content/xdocs/zh_CN/release-documentation.xml</argument>
-
<argument>${project.basedir}/src/site/zh_CN/markdown/release-documentation.md</argument>
- </arguments>
- </configuration>
- </execution>
- <execution>
- <id>ConvertXdocsToMd-Who-zh_CN</id>
- <goals>
- <goal>exec</goal>
- </goals>
- <phase>prepare-package</phase>
- <configuration>
- <executable>java</executable>
- <workingDirectory>/tmp</workingDirectory>
- <arguments>
- <argument>-jar</argument>
-
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
-
<argument>${project.basedir}/src/documentation/content/xdocs/zh_CN/who.xml</argument>
-
<argument>${project.basedir}/src/site/zh_CN/markdown/who.md</argument>
- </arguments>
- </configuration>
- </execution>
-
+ <id>ConvertXdocsToMd-Verify</id>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <phase>prepare-package</phase>
+ <configuration>
+
<executable>java</executable>
+
<workingDirectory>/tmp</workingDirectory>
+ <arguments>
+
<argument>-jar</argument>
+
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
+
<argument>${project.basedir}/src/documentation/content/xdocs/en_US/verify.xml</argument>
+
<argument>${project.basedir}/src/site/markdown/verify.md</argument>
+ </arguments>
+ </configuration>
+ </execution>
+ <execution>
+
<id>ConvertXdocsToMd-Security</id>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <phase>prepare-package</phase>
+ <configuration>
+
<executable>java</executable>
+
<workingDirectory>/tmp</workingDirectory>
+ <arguments>
+
<argument>-jar</argument>
+
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
+
<argument>${project.basedir}/src/documentation/content/xdocs/en_US/security.xml</argument>
+
<argument>${project.basedir}/src/site/markdown/security.md</argument>
+ </arguments>
+ </configuration>
+ </execution>
+ <execution>
+
<id>ConvertXdocsToMd-Books-And-Presentation</id>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <phase>prepare-package</phase>
+ <configuration>
+
<executable>java</executable>
+
<workingDirectory>/tmp</workingDirectory>
+ <arguments>
+
<argument>-jar</argument>
+
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
+
<argument>${project.basedir}/src/documentation/content/xdocs/en_US/books-and-presentations.xml</argument>
+
<argument>${project.basedir}/src/site/markdown/books-and-presentations.md</argument>
+ </arguments>
+ </configuration>
+ </execution>
+ <execution>
+
<id>ConvertXdocsToMd-Developer-Resources</id>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <phase>prepare-package</phase>
+ <configuration>
+
<executable>java</executable>
+
<workingDirectory>/tmp</workingDirectory>
+ <arguments>
+
<argument>-jar</argument>
+
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
+
<argument>${project.basedir}/src/documentation/content/xdocs/en_US/developer-resources.xml</argument>
+
<argument>${project.basedir}/src/site/markdown/developer-resources.md</argument>
+ </arguments>
+ </configuration>
+ </execution>
+ <execution>
+
<id>ConvertXdocsToMd-Download</id>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <phase>prepare-package</phase>
+ <configuration>
+
<executable>java</executable>
+
<workingDirectory>/tmp</workingDirectory>
+ <arguments>
+
<argument>-jar</argument>
+
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
+
<argument>${project.basedir}/src/documentation/content/xdocs/en_US/download.xml</argument>
+
<argument>${project.basedir}/src/site/markdown/download.md</argument>
+ </arguments>
+ </configuration>
+ </execution>
+ <execution>
+
<id>ConvertXdocsToMd-Release-Documentation</id>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <phase>prepare-package</phase>
+ <configuration>
+
<executable>java</executable>
+
<workingDirectory>/tmp</workingDirectory>
+ <arguments>
+
<argument>-jar</argument>
+
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
+
<argument>${project.basedir}/src/documentation/content/xdocs/en_US/release-documentation.xml</argument>
+
<argument>${project.basedir}/src/site/markdown/release-documentation.md</argument>
+ </arguments>
+ </configuration>
+ </execution>
+ <execution>
+ <id>ConvertXdocsToMd-Who</id>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <phase>prepare-package</phase>
+ <configuration>
+
<executable>java</executable>
+
<workingDirectory>/tmp</workingDirectory>
+ <arguments>
+
<argument>-jar</argument>
+
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
+
<argument>${project.basedir}/src/documentation/content/xdocs/en_US/who.xml</argument>
+
<argument>${project.basedir}/src/site/markdown/who.md</argument>
+ </arguments>
+ </configuration>
+ </execution>
+
+ <!-- Executions for converting japanese
contents (ja_JP) -->
+ <execution>
+
<id>ConvertXdocsToMd-Index-ja_JP</id>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <phase>prepare-package</phase>
+ <configuration>
+
<executable>java</executable>
+
<workingDirectory>/tmp</workingDirectory>
+ <arguments>
+
<argument>-jar</argument>
+
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
+
<argument>${project.basedir}/src/documentation/content/xdocs/ja_JP/index.xml</argument>
+
<argument>${project.basedir}/src/site/ja/markdown/index.md</argument>
+ </arguments>
+ </configuration>
+ </execution>
+ <execution>
+
<id>ConvertXdocsToMd-Mail-ja_JP</id>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <phase>prepare-package</phase>
+ <configuration>
+
<executable>java</executable>
+
<workingDirectory>/tmp</workingDirectory>
+ <arguments>
+
<argument>-jar</argument>
+
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
+
<argument>${project.basedir}/src/documentation/content/xdocs/ja_JP/mail.xml</argument>
+
<argument>${project.basedir}/src/site/ja/markdown/mail.md</argument>
+ </arguments>
+ </configuration>
+ </execution>
+ <execution>
+
<id>ConvertXdocsToMd-Books-And-Presentation-ja_JP</id>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <phase>prepare-package</phase>
+ <configuration>
+
<executable>java</executable>
+
<workingDirectory>/tmp</workingDirectory>
+ <arguments>
+
<argument>-jar</argument>
+
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
+
<argument>${project.basedir}/src/documentation/content/xdocs/ja_JP/books-and-presentations.xml</argument>
+
<argument>${project.basedir}/src/site/ja/markdown/books-and-presentations.md</argument>
+ </arguments>
+ </configuration>
+ </execution>
+ <execution>
+
<id>ConvertXdocsToMd-Developer-Resources-ja_JP</id>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <phase>prepare-package</phase>
+ <configuration>
+
<executable>java</executable>
+
<workingDirectory>/tmp</workingDirectory>
+ <arguments>
+
<argument>-jar</argument>
+
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
+
<argument>${project.basedir}/src/documentation/content/xdocs/ja_JP/developer-resources.xml</argument>
+
<argument>${project.basedir}/src/site/ja/markdown/developer-resources.md</argument>
+ </arguments>
+ </configuration>
+ </execution>
+ <execution>
+
<id>ConvertXdocsToMd-Download-ja_JP</id>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <phase>prepare-package</phase>
+ <configuration>
+
<executable>java</executable>
+
<workingDirectory>/tmp</workingDirectory>
+ <arguments>
+
<argument>-jar</argument>
+
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
+
<argument>${project.basedir}/src/documentation/content/xdocs/ja_JP/download.xml</argument>
+
<argument>${project.basedir}/src/site/ja/markdown/download.md</argument>
+ </arguments>
+ </configuration>
+ </execution>
+ <execution>
+
<id>ConvertXdocsToMd-Release-Documentation-ja_JP</id>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <phase>prepare-package</phase>
+ <configuration>
+
<executable>java</executable>
+
<workingDirectory>/tmp</workingDirectory>
+ <arguments>
+
<argument>-jar</argument>
+
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
+
<argument>${project.basedir}/src/documentation/content/xdocs/ja_JP/release-documentation.xml</argument>
+
<argument>${project.basedir}/src/site/ja/markdown/release-documentation.md</argument>
+ </arguments>
+ </configuration>
+ </execution>
+ <execution>
+
<id>ConvertXdocsToMd-Who-ja_JP</id>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <phase>prepare-package</phase>
+ <configuration>
+
<executable>java</executable>
+
<workingDirectory>/tmp</workingDirectory>
+ <arguments>
+
<argument>-jar</argument>
+
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
+
<argument>${project.basedir}/src/documentation/content/xdocs/ja_JP/who.xml</argument>
+
<argument>${project.basedir}/src/site/ja/markdown/who.md</argument>
+ </arguments>
+ </configuration>
+ </execution>
+
+ <!-- Executions for converting chinese
contents (zh_CN) -->
+ <execution>
+
<id>ConvertXdocsToMd-Index-zh_CN</id>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <phase>prepare-package</phase>
+ <configuration>
+
<executable>java</executable>
+
<workingDirectory>/tmp</workingDirectory>
+ <arguments>
+
<argument>-jar</argument>
+
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
+
<argument>${project.basedir}/src/documentation/content/xdocs/zh_CN/index.xml</argument>
+
<argument>${project.basedir}/src/site/zh_CN/markdown/index.md</argument>
+ </arguments>
+ </configuration>
+ </execution>
+ <execution>
+
<id>ConvertXdocsToMd-Mail-zh_CN</id>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <phase>prepare-package</phase>
+ <configuration>
+
<executable>java</executable>
+
<workingDirectory>/tmp</workingDirectory>
+ <arguments>
+
<argument>-jar</argument>
+
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
+
<argument>${project.basedir}/src/documentation/content/xdocs/zh_CN/mail.xml</argument>
+
<argument>${project.basedir}/src/site/zh_CN/markdown/mail.md</argument>
+ </arguments>
+ </configuration>
+ </execution>
+ <execution>
+
<id>ConvertXdocsToMd-Books-And-Presentation-zh_CN</id>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <phase>prepare-package</phase>
+ <configuration>
+
<executable>java</executable>
+
<workingDirectory>/tmp</workingDirectory>
+ <arguments>
+
<argument>-jar</argument>
+
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
+
<argument>${project.basedir}/src/documentation/content/xdocs/zh_CN/books-and-presentations.xml</argument>
+
<argument>${project.basedir}/src/site/zh_CN/markdown/books-and-presentations.md</argument>
+ </arguments>
+ </configuration>
+ </execution>
+ <execution>
+
<id>ConvertXdocsToMd-Developer-Resources-zh_CN</id>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <phase>prepare-package</phase>
+ <configuration>
+
<executable>java</executable>
+
<workingDirectory>/tmp</workingDirectory>
+ <arguments>
+
<argument>-jar</argument>
+
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
+
<argument>${project.basedir}/src/documentation/content/xdocs/zh_CN/developer-resources.xml</argument>
+
<argument>${project.basedir}/src/site/zh_CN/markdown/developer-resources.md</argument>
+ </arguments>
+ </configuration>
+ </execution>
+ <execution>
+
<id>ConvertXdocsToMd-Download-zh_CN</id>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <phase>prepare-package</phase>
+ <configuration>
+
<executable>java</executable>
+
<workingDirectory>/tmp</workingDirectory>
+ <arguments>
+
<argument>-jar</argument>
+
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
+
<argument>${project.basedir}/src/documentation/content/xdocs/zh_CN/download.xml</argument>
+
<argument>${project.basedir}/src/site/zh_CN/markdown/download.md</argument>
+ </arguments>
+ </configuration>
+ </execution>
+ <execution>
+
<id>ConvertXdocsToMd-Release-Documentation-zh_CN</id>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <phase>prepare-package</phase>
+ <configuration>
+
<executable>java</executable>
+
<workingDirectory>/tmp</workingDirectory>
+ <arguments>
+
<argument>-jar</argument>
+
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
+
<argument>${project.basedir}/src/documentation/content/xdocs/zh_CN/release-documentation.xml</argument>
+
<argument>${project.basedir}/src/site/zh_CN/markdown/release-documentation.md</argument>
+ </arguments>
+ </configuration>
+ </execution>
+ <execution>
+
<id>ConvertXdocsToMd-Who-zh_CN</id>
+ <goals>
+ <goal>exec</goal>
+ </goals>
+ <phase>prepare-package</phase>
+ <configuration>
+
<executable>java</executable>
+
<workingDirectory>/tmp</workingDirectory>
+ <arguments>
+
<argument>-jar</argument>
+
<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
+
<argument>${project.basedir}/src/documentation/content/xdocs/zh_CN/who.xml</argument>
+
<argument>${project.basedir}/src/site/zh_CN/markdown/who.md</argument>
+ </arguments>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>download-files</id>
+ <phase>initialize</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <target
name="checkAndDownloadForrest2md">
+ <get
+
src="https://github.com/david-ciamberlano/forrestxml2md/releases/download/v${forrest2md.version}/forrest2md-v${forrest2md.version}.jar"
+
dest="${project.basedir}/lib/" verbose="false" usetimestamp="true" />
+ </target>
+ </configuration>
+ </execution>
</executions>
</plugin>
<plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <id>download-files</id>
- <phase>initialize</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <target name="checkAndDownloadForrest2md">
- <get
src="https://github.com/david-ciamberlano/forrestxml2md/releases/download/v${forrest2md.version}/forrest2md-v${forrest2md.version}.jar"
-
dest="${project.basedir}/lib/"
-
verbose="false"
-
usetimestamp="true"/>
- </target>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-site-plugin</artifactId>
- <version>3.7.1-SNAPSHOT</version>
- <configuration>
- <locales>en,ja,zh_CN</locales>
- <inputEncoding>UTF-8</inputEncoding>
- <outputEncoding>UTF-8</outputEncoding>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-install-plugin</artifactId>
- <executions>
- <execution>
- <id>install-file</id>
- <phase>generate-resources</phase>
- <goals>
- <goal>install-file</goal>
- </goals>
- <inherited>false</inherited>
- <configuration>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-site-plugin</artifactId>
- <version>3.7.1-SNAPSHOT</version>
-
<file>${project.basedir}/lib/maven-site-plugin-3.7.1-SNAPSHOT.jar</file>
- <packaging>jar</packaging>
- </configuration>
- </execution>
- </executions>
- </plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-site-plugin</artifactId>
+ <version>3.7.1</version>
+ <configuration>
+ <locales>en,ja,zh_CN</locales>
+ <inputEncoding>UTF-8</inputEncoding>
+ <outputEncoding>UTF-8</outputEncoding>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-pdf-plugin</artifactId>
+ <version>1.4</version>
+ <configuration>
+ <locales>en,ja,zh_CN</locales>
+ </configuration>
+ <executions>
+ <execution>
+ <id>pdf</id>
+ <phase>site</phase>
+ <goals>
+ <goal>pdf</goal>
+ </goals>
+ <configuration>
+
<outputDirectory>${project.reporting.outputDirectory}</outputDirectory>
+
<includeReports>false</includeReports>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
Modified: manifoldcf/site/branches/CONNECTORS-1495/src/site/ja/markdown/who.md
URL:
http://svn.apache.org/viewvc/manifoldcf/site/branches/CONNECTORS-1495/src/site/ja/markdown/who.md?rev=1831286&r1=1831285&r2=1831286&view=diff
==============================================================================
--- manifoldcf/site/branches/CONNECTORS-1495/src/site/ja/markdown/who.md
(original)
+++ manifoldcf/site/branches/CONNECTORS-1495/src/site/ja/markdown/who.md Wed
May 9 22:24:15 2018
@@ -3,15 +3,18 @@
## Committers
- (in alphabetical order):
-* Shinichiro Abe <shinichiro>
-* Ahmet Arslan <iorixxx>
-* Erlend Garåsen <ridder>
-* Furkan KAMACI <kamaci>
-* Maciej Lizewski <mlizewski>
-* Piergiorgio Lucidi <piergiorgio>
-* Minoru Osuka <minoru>
-* Simon Willnauer <simonw>
-* Karl Wright <kwright>
-* Mingchun Zhao <mingchun>
-* Jukka Zitting <jukka>
+(in alphabetical order):
+
+* Shinichiro Abe (shinichiro)
+* Ahmet Arslan (iorixxx)
+* Erlend Garåsen (ridder)
+* Rafa Haro (rharo)
+* Furkan KAMACI (kamaci)
+* Maciej Lizewski (mlizewski)
+* Piergiorgio Lucidi (piergiorgio)
+* Minoru Osuka (minoru)
+* Graeme Seaton (graemes)
+* Simon Willnauer (simonw)
+* Karl Wright (kwright)
+* Mingchun Zhao (mingchun)
+* Jukka Zitting (jukka)
\ No newline at end of file
Modified: manifoldcf/site/branches/CONNECTORS-1495/src/site/markdown/who.md
URL:
http://svn.apache.org/viewvc/manifoldcf/site/branches/CONNECTORS-1495/src/site/markdown/who.md?rev=1831286&r1=1831285&r2=1831286&view=diff
==============================================================================
--- manifoldcf/site/branches/CONNECTORS-1495/src/site/markdown/who.md (original)
+++ manifoldcf/site/branches/CONNECTORS-1495/src/site/markdown/who.md Wed May
9 22:24:15 2018
@@ -3,17 +3,18 @@
## Committers
- (in alphabetical order):
-* Shinichiro Abe <shinichiro>
-* Ahmet Arslan <iorixxx>
-* Erlend Garåsen <ridder>
-* Rafa Haro <rharo>
-* Furkan KAMACI <kamaci>
-* Maciej Lizewski <mlizewski>
-* Piergiorgio Lucidi <piergiorgio>
-* Minoru Osuka <minoru>
-* Graeme Seaton <graemes>
-* Simon Willnauer <simonw>
-* Karl Wright <kwright>
-* Mingchun Zhao <mingchun>
-* Jukka Zitting <jukka>
+(in alphabetical order):
+
+* Shinichiro Abe (shinichiro)
+* Ahmet Arslan (iorixxx)
+* Erlend Garåsen (ridder)
+* Rafa Haro (rharo)
+* Furkan KAMACI (kamaci)
+* Maciej Lizewski (mlizewski)
+* Piergiorgio Lucidi (piergiorgio)
+* Minoru Osuka (minoru)
+* Graeme Seaton (graemes)
+* Simon Willnauer (simonw)
+* Karl Wright (kwright)
+* Mingchun Zhao (mingchun)
+* Jukka Zitting (jukka)
\ No newline at end of file
Added: manifoldcf/site/branches/CONNECTORS-1495/src/site/pdf.xml
URL:
http://svn.apache.org/viewvc/manifoldcf/site/branches/CONNECTORS-1495/src/site/pdf.xml?rev=1831286&view=auto
==============================================================================
--- manifoldcf/site/branches/CONNECTORS-1495/src/site/pdf.xml (added)
+++ manifoldcf/site/branches/CONNECTORS-1495/src/site/pdf.xml Wed May 9
22:24:15 2018
@@ -0,0 +1,54 @@
+<?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
+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.
+-->
+
+<document xmlns="http://maven.apache.org/DOCUMENT/1.0.1"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/DOCUMENT/1.0.1
http://maven.apache.org/xsd/document-1.0.1.xsd"
+ outputName="Apache-ManifoldCF-docs">
+
+ <meta>
+ <title>Apache ManifoldCF</title>
+ <author>The Apache ManifoldCF Team</author>
+ </meta>
+
+ <toc name="Table of Contents">
+ <item name="Introduction" ref="index.md"/>
+ <item name="Who we are" ref="who.md"/>
+ <item name="Books and presentations" ref="books-and-presentations.md"/>
+ <item name="Download" ref="download.md"/>
+ <item name="Developer resources" ref="developer-resources.md"/>
+ <item name="Release documentation" ref="release-documemtation.md"/>
+ <item name="Security" ref="security.md"/>
+ <item name="Verify" ref="verify.md"/>
+ </toc>
+
+ <cover>
+ <author>The Apache ManifoldCF Team</author>
+ <coverTitle>Apache ManifoldCF</coverTitle>
+ <coverSubTitle>v. ${project.version}</coverSubTitle>
+ <coverType>End-User Documentation</coverType>
+ <projectName>${project.name}</projectName>
+
<projectLogo>http://manifoldcf.apache.org/images/ManifoldCF-logo.PNG</projectLogo>
+ <companyName>The Apache Software Foundation</companyName>
+ <companyLogo>http://www.apache.org/img/asf_logo.png</companyLogo>
+
+ </cover>
+</document>
\ No newline at end of file
Propchange: manifoldcf/site/branches/CONNECTORS-1495/src/site/pdf.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: manifoldcf/site/branches/CONNECTORS-1495/src/site/pdf.xml
------------------------------------------------------------------------------
svn:keywords = Date Revision Author HeadURL Id
Propchange: manifoldcf/site/branches/CONNECTORS-1495/src/site/pdf.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Added: manifoldcf/site/branches/CONNECTORS-1495/src/site/pdf_ja.xml
URL:
http://svn.apache.org/viewvc/manifoldcf/site/branches/CONNECTORS-1495/src/site/pdf_ja.xml?rev=1831286&view=auto
==============================================================================
--- manifoldcf/site/branches/CONNECTORS-1495/src/site/pdf_ja.xml (added)
+++ manifoldcf/site/branches/CONNECTORS-1495/src/site/pdf_ja.xml Wed May 9
22:24:15 2018
@@ -0,0 +1,54 @@
+<?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
+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.
+-->
+
+<document xmlns="http://maven.apache.org/DOCUMENT/1.0.1"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/DOCUMENT/1.0.1
http://maven.apache.org/xsd/document-1.0.1.xsd"
+ outputName="Apache-ManifoldCF-docs">
+
+ <meta>
+ <title>Apache ManifoldCF</title>
+ <author>The Apache ManifoldCF Team</author>
+ </meta>
+
+ <toc name="Table of Contents">
+ <item name="Introduction" ref="index.md"/>
+ <item name="Who we are" ref="who.md"/>
+ <item name="Books and presentations" ref="books-and-presentations.md"/>
+ <item name="Download" ref="download.md"/>
+ <item name="Developer resources" ref="developer-resources.md"/>
+ <item name="Release documentation" ref="release-documemtation.md"/>
+ <item name="Security" ref="security.md"/>
+ <item name="Verify" ref="verify.md"/>
+ </toc>
+
+ <cover>
+ <author>The Apache ManifoldCF Team</author>
+ <coverTitle>${project.name}</coverTitle>
+ <coverSubTitle>v. ${project.version}</coverSubTitle>
+ <coverType>End-User Documentation</coverType>
+ <projectName>${project.name}</projectName>
+
<projectLogo>http://manifoldcf.apache.org/images/ManifoldCF-logo.PNG</projectLogo>
+ <companyName>The Apache Software Foundation</companyName>
+ <companyLogo>http://www.apache.org/img/asf_logo.png</companyLogo>
+
+ </cover>
+</document>
\ No newline at end of file
Propchange: manifoldcf/site/branches/CONNECTORS-1495/src/site/pdf_ja.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: manifoldcf/site/branches/CONNECTORS-1495/src/site/pdf_ja.xml
------------------------------------------------------------------------------
svn:keywords = Date Revision Author HeadURL Id
Propchange: manifoldcf/site/branches/CONNECTORS-1495/src/site/pdf_ja.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Added: manifoldcf/site/branches/CONNECTORS-1495/src/site/pdf_zh.xml
URL:
http://svn.apache.org/viewvc/manifoldcf/site/branches/CONNECTORS-1495/src/site/pdf_zh.xml?rev=1831286&view=auto
==============================================================================
--- manifoldcf/site/branches/CONNECTORS-1495/src/site/pdf_zh.xml (added)
+++ manifoldcf/site/branches/CONNECTORS-1495/src/site/pdf_zh.xml Wed May 9
22:24:15 2018
@@ -0,0 +1,54 @@
+<?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
+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.
+-->
+
+<document xmlns="http://maven.apache.org/DOCUMENT/1.0.1"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/DOCUMENT/1.0.1
http://maven.apache.org/xsd/document-1.0.1.xsd"
+ outputName="Apache-ManifoldCF-docs">
+
+ <meta>
+ <title>Apache ManifoldCF</title>
+ <author>The Apache ManifoldCF Team</author>
+ </meta>
+
+ <toc name="Table of Contents">
+ <item name="Introduction" ref="index.md"/>
+ <item name="Who we are" ref="who.md"/>
+ <item name="Books and presentations" ref="books-and-presentations.md"/>
+ <item name="Download" ref="download.md"/>
+ <item name="Developer resources" ref="developer-resources.md"/>
+ <item name="Release documentation" ref="release-documemtation.md"/>
+ <item name="Security" ref="security.md"/>
+ <item name="Verify" ref="verify.md"/>
+ </toc>
+
+ <cover>
+ <author>The Apache ManifoldCF Team</author>
+ <coverTitle>${project.name}</coverTitle>
+ <coverSubTitle>v. ${project.version}</coverSubTitle>
+ <coverType>End-User Documentation</coverType>
+ <projectName>${project.name}</projectName>
+
<projectLogo>http://manifoldcf.apache.org/images/ManifoldCF-logo.PNG</projectLogo>
+ <companyName>The Apache Software Foundation</companyName>
+ <companyLogo>http://www.apache.org/img/asf_logo.png</companyLogo>
+
+ </cover>
+</document>
\ No newline at end of file
Propchange: manifoldcf/site/branches/CONNECTORS-1495/src/site/pdf_zh.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: manifoldcf/site/branches/CONNECTORS-1495/src/site/pdf_zh.xml
------------------------------------------------------------------------------
svn:keywords = Date Revision Author HeadURL Id
Propchange: manifoldcf/site/branches/CONNECTORS-1495/src/site/pdf_zh.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Modified: manifoldcf/site/branches/CONNECTORS-1495/src/site/site.xml
URL:
http://svn.apache.org/viewvc/manifoldcf/site/branches/CONNECTORS-1495/src/site/site.xml?rev=1831286&r1=1831285&r2=1831286&view=diff
==============================================================================
--- manifoldcf/site/branches/CONNECTORS-1495/src/site/site.xml (original)
+++ manifoldcf/site/branches/CONNECTORS-1495/src/site/site.xml Wed May 9
22:24:15 2018
@@ -28,7 +28,7 @@ under the License.
<skin>
<groupId>org.apache.maven.skins</groupId>
<artifactId>maven-fluido-skin</artifactId>
- <version>1.7</version>
+ <version>1.6</version>
</skin>
<custom>
@@ -46,6 +46,8 @@ under the License.
<href>/index.html</href>
</topBarIcon>
+ <sideBarEnabled>false</sideBarEnabled>
+
<twitter>
<user>ApacheManifold</user>
<showUser>true</showUser>
Modified: manifoldcf/site/branches/CONNECTORS-1495/src/site/site_ja.xml
URL:
http://svn.apache.org/viewvc/manifoldcf/site/branches/CONNECTORS-1495/src/site/site_ja.xml?rev=1831286&r1=1831285&r2=1831286&view=diff
==============================================================================
--- manifoldcf/site/branches/CONNECTORS-1495/src/site/site_ja.xml (original)
+++ manifoldcf/site/branches/CONNECTORS-1495/src/site/site_ja.xml Wed May 9
22:24:15 2018
@@ -24,13 +24,13 @@ under the License.
xsi:schemaLocation="http://maven.apache.org/DECORATION/1.8.0
http://maven.apache.org/xsd/decoration-1.8.0.xsd"
name="ManifoldCF">
<version position="none" />
-
+
<skin>
<groupId>org.apache.maven.skins</groupId>
<artifactId>maven-fluido-skin</artifactId>
- <version>1.7</version>
+ <version>1.6</version>
</skin>
-
+
<custom>
<fluidoSkin>
<sourceLineNumbersEnabled>true</sourceLineNumbersEnabled>
@@ -46,6 +46,8 @@ under the License.
<href>/index.html</href>
</topBarIcon>
+ <sideBarEnabled>false</sideBarEnabled>
+
<twitter>
<user>ApacheManifold</user>
<showUser>true</showUser>
Modified: manifoldcf/site/branches/CONNECTORS-1495/src/site/site_zh.xml
URL:
http://svn.apache.org/viewvc/manifoldcf/site/branches/CONNECTORS-1495/src/site/site_zh.xml?rev=1831286&r1=1831285&r2=1831286&view=diff
==============================================================================
--- manifoldcf/site/branches/CONNECTORS-1495/src/site/site_zh.xml (original)
+++ manifoldcf/site/branches/CONNECTORS-1495/src/site/site_zh.xml Wed May 9
22:24:15 2018
@@ -28,7 +28,7 @@ under the License.
<skin>
<groupId>org.apache.maven.skins</groupId>
<artifactId>maven-fluido-skin</artifactId>
- <version>1.7</version>
+ <version>1.6</version>
</skin>
<custom>
@@ -46,6 +46,8 @@ under the License.
<href>/index.html</href>
</topBarIcon>
+ <sideBarEnabled>false</sideBarEnabled>
+
<twitter>
<user>ApacheManifold</user>
<showUser>true</showUser>
Modified: manifoldcf/site/branches/CONNECTORS-1495/src/site/zh/markdown/who.md
URL:
http://svn.apache.org/viewvc/manifoldcf/site/branches/CONNECTORS-1495/src/site/zh/markdown/who.md?rev=1831286&r1=1831285&r2=1831286&view=diff
==============================================================================
--- manifoldcf/site/branches/CONNECTORS-1495/src/site/zh/markdown/who.md
(original)
+++ manifoldcf/site/branches/CONNECTORS-1495/src/site/zh/markdown/who.md Wed
May 9 22:24:15 2018
@@ -3,15 +3,18 @@
## Committers
- (in alphabetical order):
-* Shinichiro Abe <shinichiro>
-* Ahmet Arslan <iorixxx>
-* Erlend Garåsen <ridder>
-* Furkan KAMACI <kamaci>
-* Maciej Lizewski <mlizewski>
-* Piergiorgio Lucidi <piergiorgio>
-* Minoru Osuka <minoru>
-* Simon Willnauer <simonw>
-* Karl Wright <kwright>
-* Mingchun Zhao <mingchun>
-* Jukka Zitting <jukka>
+(in alphabetical order):
+
+* Shinichiro Abe (shinichiro)
+* Ahmet Arslan (iorixxx)
+* Erlend Garåsen (ridder)
+* Rafa Haro (rharo)
+* Furkan KAMACI (kamaci)
+* Maciej Lizewski (mlizewski)
+* Piergiorgio Lucidi (piergiorgio)
+* Minoru Osuka (minoru)
+* Graeme Seaton (graemes)
+* Simon Willnauer (simonw)
+* Karl Wright (kwright)
+* Mingchun Zhao (mingchun)
+* Jukka Zitting (jukka)
\ No newline at end of file