You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by pi...@apache.org on 2018/04/23 19:42:05 UTC

svn commit: r1829927 [1/7] - in /manifoldcf/site/branches/CONNECTORS-1495: ./ src/site/ja/ src/site/ja/markdown/ src/site/markdown/ src/site/resources/images/ src/site/zh/ src/site/zh/markdown/ src/site/zh_CN/

Author: piergiorgio
Date: Mon Apr 23 19:42:04 2018
New Revision: 1829927

URL: http://svn.apache.org/viewvc?rev=1829927&view=rev
Log:
fixed the chinese locale using the latest version of maven-site-plugin (CONNECTORS-1495)

Added:
    manifoldcf/site/branches/CONNECTORS-1495/src/site/ja/
      - copied from r1829711, manifoldcf/site/branches/CONNECTORS-1495/src/site/ja/
    manifoldcf/site/branches/CONNECTORS-1495/src/site/resources/images/favicon.ico
      - copied unchanged from r1829711, manifoldcf/site/branches/CONNECTORS-1495/src/site/resources/images/favicon.ico
    manifoldcf/site/branches/CONNECTORS-1495/src/site/zh/
      - copied from r1829711, manifoldcf/site/branches/CONNECTORS-1495/src/site/zh_CN/
Removed:
    manifoldcf/site/branches/CONNECTORS-1495/src/site/zh_CN/
Modified:
    manifoldcf/site/branches/CONNECTORS-1495/pom.xml
    manifoldcf/site/branches/CONNECTORS-1495/src/site/ja/markdown/books-and-presentations.md
    manifoldcf/site/branches/CONNECTORS-1495/src/site/ja/markdown/developer-resources.md
    manifoldcf/site/branches/CONNECTORS-1495/src/site/ja/markdown/download.md
    manifoldcf/site/branches/CONNECTORS-1495/src/site/ja/markdown/index.md
    manifoldcf/site/branches/CONNECTORS-1495/src/site/ja/markdown/mail.md
    manifoldcf/site/branches/CONNECTORS-1495/src/site/ja/markdown/release-documentation.md
    manifoldcf/site/branches/CONNECTORS-1495/src/site/markdown/books-and-presentations.md
    manifoldcf/site/branches/CONNECTORS-1495/src/site/markdown/developer-resources.md
    manifoldcf/site/branches/CONNECTORS-1495/src/site/markdown/download.md
    manifoldcf/site/branches/CONNECTORS-1495/src/site/markdown/index.md
    manifoldcf/site/branches/CONNECTORS-1495/src/site/markdown/mail.md
    manifoldcf/site/branches/CONNECTORS-1495/src/site/markdown/release-documentation.md
    manifoldcf/site/branches/CONNECTORS-1495/src/site/markdown/verify.md
    manifoldcf/site/branches/CONNECTORS-1495/src/site/zh/markdown/books-and-presentations.md
    manifoldcf/site/branches/CONNECTORS-1495/src/site/zh/markdown/developer-resources.md
    manifoldcf/site/branches/CONNECTORS-1495/src/site/zh/markdown/download.md
    manifoldcf/site/branches/CONNECTORS-1495/src/site/zh/markdown/index.md
    manifoldcf/site/branches/CONNECTORS-1495/src/site/zh/markdown/mail.md
    manifoldcf/site/branches/CONNECTORS-1495/src/site/zh/markdown/release-documentation.md

Modified: manifoldcf/site/branches/CONNECTORS-1495/pom.xml
URL: http://svn.apache.org/viewvc/manifoldcf/site/branches/CONNECTORS-1495/pom.xml?rev=1829927&r1=1829926&r2=1829927&view=diff
==============================================================================
--- manifoldcf/site/branches/CONNECTORS-1495/pom.xml (original)
+++ manifoldcf/site/branches/CONNECTORS-1495/pom.xml Mon Apr 23 19:42:04 2018
@@ -18,13 +18,13 @@
 
 <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>
 	</parent>
-	
+
 	<modelVersion>4.0.0</modelVersion>
 	<artifactId>site</artifactId>
 
@@ -32,11 +32,12 @@
 	<packaging>pom</packaging>
 
 	<properties>
+	  <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.0</forrest2md.version>
+    <forrest2md.version>0.1.1</forrest2md.version>
 	</properties>
 	
 	<build>
@@ -61,7 +62,7 @@
 							<workingDirectory>/tmp</workingDirectory>
 							<arguments>
 								<argument>-jar</argument>
-								<argument>${project.basedir}/lib/forrest2md-v0.1.0.jar</argument>
+								<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
 								<argument>${project.basedir}/src/documentation/content/xdocs/en_US/index.xml</argument>
 								<argument>${project.basedir}/src/site/markdown/index.md</argument>
 							</arguments>
@@ -78,7 +79,7 @@
 							<workingDirectory>/tmp</workingDirectory>
 							<arguments>
 								<argument>-jar</argument>
-								<argument>${project.basedir}/lib/forrest2md-v0.1.0.jar</argument>
+								<argument>${project.basedir}/lib/forrest2md-v${forrest2md.version}.jar</argument>
 								<argument>${project.basedir}/src/documentation/content/xdocs/en_US/mail.xml</argument>
 								<argument>${project.basedir}/src/site/markdown/mail.md</argument>
 							</arguments>
@@ -95,7 +96,7 @@
               <workingDirectory>/tmp</workingDirectory>
               <arguments>
                 <argument>-jar</argument>
-                <argument>${project.basedir}/lib/forrest2md-v0.1.0.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>
@@ -112,7 +113,7 @@
               <workingDirectory>/tmp</workingDirectory>
               <arguments>
                 <argument>-jar</argument>
-                <argument>${project.basedir}/lib/forrest2md-v0.1.0.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>
@@ -129,7 +130,7 @@
               <workingDirectory>/tmp</workingDirectory>
               <arguments>
                 <argument>-jar</argument>
-                <argument>${project.basedir}/lib/forrest2md-v0.1.0.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>
@@ -146,7 +147,7 @@
               <workingDirectory>/tmp</workingDirectory>
               <arguments>
                 <argument>-jar</argument>
-                <argument>${project.basedir}/lib/forrest2md-v0.1.0.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>
@@ -163,7 +164,7 @@
               <workingDirectory>/tmp</workingDirectory>
               <arguments>
                 <argument>-jar</argument>
-                <argument>${project.basedir}/lib/forrest2md-v0.1.0.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>
@@ -180,7 +181,7 @@
               <workingDirectory>/tmp</workingDirectory>
               <arguments>
                 <argument>-jar</argument>
-                <argument>${project.basedir}/lib/forrest2md-v0.1.0.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>
@@ -197,7 +198,7 @@
               <workingDirectory>/tmp</workingDirectory>
               <arguments>
                 <argument>-jar</argument>
-                <argument>${project.basedir}/lib/forrest2md-v0.1.0.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>
@@ -216,7 +217,7 @@
               <workingDirectory>/tmp</workingDirectory>
               <arguments>
                 <argument>-jar</argument>
-                <argument>${project.basedir}/lib/forrest2md-v0.1.0.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>
@@ -233,7 +234,7 @@
               <workingDirectory>/tmp</workingDirectory>
               <arguments>
                 <argument>-jar</argument>
-                <argument>${project.basedir}/lib/forrest2md-v0.1.0.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>
@@ -250,7 +251,7 @@
               <workingDirectory>/tmp</workingDirectory>
               <arguments>
                 <argument>-jar</argument>
-                <argument>${project.basedir}/lib/forrest2md-v0.1.0.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>
@@ -267,7 +268,7 @@
               <workingDirectory>/tmp</workingDirectory>
               <arguments>
                 <argument>-jar</argument>
-                <argument>${project.basedir}/lib/forrest2md-v0.1.0.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>
@@ -284,7 +285,7 @@
               <workingDirectory>/tmp</workingDirectory>
               <arguments>
                 <argument>-jar</argument>
-                <argument>${project.basedir}/lib/forrest2md-v0.1.0.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>
@@ -301,7 +302,7 @@
               <workingDirectory>/tmp</workingDirectory>
               <arguments>
                 <argument>-jar</argument>
-                <argument>${project.basedir}/lib/forrest2md-v0.1.0.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>
@@ -318,7 +319,7 @@
               <workingDirectory>/tmp</workingDirectory>
               <arguments>
                 <argument>-jar</argument>
-                <argument>${project.basedir}/lib/forrest2md-v0.1.0.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>
@@ -337,7 +338,7 @@
               <workingDirectory>/tmp</workingDirectory>
               <arguments>
                 <argument>-jar</argument>
-                <argument>${project.basedir}/lib/forrest2md-v0.1.0.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>
@@ -354,7 +355,7 @@
               <workingDirectory>/tmp</workingDirectory>
               <arguments>
                 <argument>-jar</argument>
-                <argument>${project.basedir}/lib/forrest2md-v0.1.0.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>
@@ -371,7 +372,7 @@
               <workingDirectory>/tmp</workingDirectory>
               <arguments>
                 <argument>-jar</argument>
-                <argument>${project.basedir}/lib/forrest2md-v0.1.0.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>
@@ -388,7 +389,7 @@
               <workingDirectory>/tmp</workingDirectory>
               <arguments>
                 <argument>-jar</argument>
-                <argument>${project.basedir}/lib/forrest2md-v0.1.0.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>
@@ -405,7 +406,7 @@
               <workingDirectory>/tmp</workingDirectory>
               <arguments>
                 <argument>-jar</argument>
-                <argument>${project.basedir}/lib/forrest2md-v0.1.0.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>
@@ -422,7 +423,7 @@
               <workingDirectory>/tmp</workingDirectory>
               <arguments>
                 <argument>-jar</argument>
-                <argument>${project.basedir}/lib/forrest2md-v0.1.0.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>
@@ -439,7 +440,7 @@
               <workingDirectory>/tmp</workingDirectory>
               <arguments>
                 <argument>-jar</argument>
-                <argument>${project.basedir}/lib/forrest2md-v0.1.0.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>
@@ -460,7 +461,7 @@
 		            </goals>
 		            <configuration>
 		                <target name="checkAndDownloadForrest2md">
-							           <get src="https://github.com/david-ciamberlano/forrestxml2md/releases/download/v0.1.0/forrest2md-v0.1.0.jar"
+							           <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"/>
@@ -472,19 +473,35 @@
 		  <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-site-plugin</artifactId>
-        <version>3.7</version>
+        <version>3.7.1-SNAPSHOT</version>
         <configuration>
           <locales>en,ja,zh_CN</locales>
+          <inputEncoding>UTF-8</inputEncoding>
+          <outputEncoding>UTF-8</outputEncoding>
         </configuration>
-        <dependencies>
-          <dependency>
-            <groupId>org.apache.maven.doxia</groupId>
-            <artifactId>doxia-module-markdown</artifactId>
-            <version>1.8</version>
-          </dependency>
-        </dependencies>
       </plugin>
-		 </plugins>
+		  <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>
+		</plugins>
 	</build>
 
 </project>

Modified: manifoldcf/site/branches/CONNECTORS-1495/src/site/ja/markdown/books-and-presentations.md
URL: http://svn.apache.org/viewvc/manifoldcf/site/branches/CONNECTORS-1495/src/site/ja/markdown/books-and-presentations.md?rev=1829927&r1=1829711&r2=1829927&view=diff
==============================================================================
--- manifoldcf/site/branches/CONNECTORS-1495/src/site/ja/markdown/books-and-presentations.md (original)
+++ manifoldcf/site/branches/CONNECTORS-1495/src/site/ja/markdown/books-and-presentations.md Mon Apr 23 19:42:04 2018
@@ -4,21 +4,21 @@
 ## ManifoldCF Books
 
 All the books about the ManifoldCF project.
-* [Updated ManifoldCF in Action chapters, revised PDFs]()`
+* [Updated ManifoldCF in Action chapters, revised PDFs](https://github.com/DaddyWri/manifoldcfinaction/tree/master/pdfs)
 
 ## ManifoldCF Presentations
 
 Some presentations about the ManifoldCF project.
-* [Securing Documents in Solr with ManifoldCF by Karl Wright]()`
-* [Apache ManifoldCF by Piergiorgio Lucidi]()`
-* [Apache ManifoldCF by Shinichiro Abe]()`
-* [Barcelona presentations by Piergiorgio Lucidi]()`
-* [Alfresco Summit presentation by Piergiorgio Lucidi]()`
-* [Open Source Summit presentation by Piergiorgio Lucidi]()`
+* [Securing Documents in Solr with ManifoldCF by Karl Wright](http://www.slideshare.net/lucenerevolution/wright-nokia-manifoldcfeurocon-2011)
+* [Apache ManifoldCF by Piergiorgio Lucidi](http://www.slideshare.net/PiergiorgioLucidi/apache-manifoldcf-9508286)
+* [Apache ManifoldCF by Shinichiro Abe](http://www.slideshare.net/ShinichiroAbe/apache-manifoldcf-9231499)
+* [Barcelona presentations by Piergiorgio Lucidi](http://www.open4dev.com/journal/2013/11/9/my-two-talks-at-alfresco-summit-2013-in-barcelona.html)
+* [Alfresco Summit presentation by Piergiorgio Lucidi](http://summit.alfresco.com/barcelona/sessions/super-size-your-search)
+* [Open Source Summit presentation by Piergiorgio Lucidi](https://feathercast.apache.org/2017/10/30/oss-prague-apache-manifoldcf-and-incubation-piergiorgio-lucidi/)
 
 ## ManifoldCF Videos/Podcasts
 
 All the videos/podcasts about the ManifoldCF project.
-* [077 TMTC Karl Wright - ManifoldCF]()` (ApacheCON North America, 2011)
-* [Lucene Revolutions Eurocon 2011 - Karl Wright - ManifoldCF]()` (Lucene Revolutions Eurocon, 2011)
-* [WAT Lightning Talk]()` (Gary Bernhardt, CodeMash 2012)
+* [077 TMTC Karl Wright - ManifoldCF](http://teachmetocode.com/podcast/077-tmtc-karl-wright-manifoldcf/) (ApacheCON North America, 2011)
+* [Lucene Revolutions Eurocon 2011 - Karl Wright - ManifoldCF](http://vimeo.com/33082485) (Lucene Revolutions Eurocon, 2011)
+* [WAT Lightning Talk](https://www.destroyallsoftware.com/talks/wat) (Gary Bernhardt, CodeMash 2012)

Modified: manifoldcf/site/branches/CONNECTORS-1495/src/site/ja/markdown/developer-resources.md
URL: http://svn.apache.org/viewvc/manifoldcf/site/branches/CONNECTORS-1495/src/site/ja/markdown/developer-resources.md?rev=1829927&r1=1829711&r2=1829927&view=diff
==============================================================================
--- manifoldcf/site/branches/CONNECTORS-1495/src/site/ja/markdown/developer-resources.md (original)
+++ manifoldcf/site/branches/CONNECTORS-1495/src/site/ja/markdown/developer-resources.md Mon Apr 23 19:42:04 2018
@@ -3,26 +3,26 @@
 
 ## ソースコード
 
-ManifoldCFのソースファイルはsvnで管理されています(参照: [http://subversion.tigris.org/]()` and [http://svnbook.red-bean.com/]()`)	
+ManifoldCFのソースファイルはsvnで管理されています(参照: [http://subversion.tigris.org/](http://subversion.tigris.org/) and [http://svnbook.red-bean.com/](http://svnbook.red-bean.com/))	
 
 `svn checkout http://svn.apache.org/repos/asf/manifoldcf/trunk mcf-trunk`
 
 ## コネクションのデバグ
 
-ManifoldCFを使っていると何かの理由でリポジトリに接続できない場合もあります。このような場合は[ここ]()`から始めてください。新しいデバグ方法、ヒントなどを発見した場合は教えてください!
+ManifoldCFを使っていると何かの理由でリポジトリに接続できない場合もあります。このような場合は[ここ](https://cwiki.apache.org/confluence/display/CONNECTORS/Debugging+Connections)から始めてください。新しいデバグ方法、ヒントなどを発見した場合は教えてください!
 
 ## 更新履歴
 
-最新の変更履歴は  [ここ]()`にあります。	
+最新の変更履歴は  [ここ](http://svn.apache.org/repos/asf/manifoldcf/trunk/CHANGES.txt)にあります。	
 
 ## バグ報告、新機能案
 
-問題を発見した場合やよい新機能の案がありましたら[JIRAのチケット]()`を作成してください。チケットを作成するには先ずアカウントを作成する必要があります。その場合は、「ManifoldCF」プロジェクトを選択してください。 
+問題を発見した場合やよい新機能の案がありましたら[JIRAのチケット](http://issues.apache.org/jira)を作成してください。チケットを作成するには先ずアカウントを作成する必要があります。その場合は、「ManifoldCF」プロジェクトを選択してください。 
 
 ただし新しいチケットを作成する前に既に同様の内容のチケットがあるか確認してください。
 
 ## 寄付
 
-ManifoldCF is always looking for contributions. See the [Wiki]()` for details on contributing. 
+ManifoldCF is always looking for contributions. See the [Wiki](http://cwiki.apache.org/confluence/display/CONNECTORS/HowToContribute) for details on contributing. 
 
-We're also looking for logo ideas. Here are the [guidelines]()`.	
+We're also looking for logo ideas. Here are the [guidelines](http://cwiki.apache.org/confluence/display/CONNECTORS/Logo+Criteria).