You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by cu...@apache.org on 2005/03/18 22:00:46 UTC

svn commit: r158139 [3/3] - in incubator/nutch/trunk: docs/ca/ docs/de/ docs/en/ docs/es/ docs/fi/ docs/fr/ docs/hu/ docs/jp/ docs/ms/ docs/nl/ docs/pl/ docs/pt/ docs/sv/ docs/th/ docs/zh/ site/ src/site/src/documentation/content/xdocs/ src/web/include/ca/ src/web/include/de/ src/web/include/en/ src/web/include/es/ src/web/include/fi/ src/web/include/fr/ src/web/include/hu/ src/web/include/jp/ src/web/include/ms/ src/web/include/nl/ src/web/include/pl/ src/web/include/pt/ src/web/include/sv/ src/web/include/th/ src/web/include/zh/ src/web/pages/ca/ src/web/pages/de/ src/web/pages/en/ src/web/pages/es/ src/web/pages/fi/ src/web/pages/fr/ src/web/pages/hu/ src/web/pages/jp/ src/web/pages/ms/ src/web/pages/nl/ src/web/pages/pl/ src/web/pages/pt/ src/web/pages/sv/ src/web/pages/th/ src/web/pages/zh/

Modified: incubator/nutch/trunk/site/mailing_lists.html
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/site/mailing_lists.html?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/site/mailing_lists.html (original)
+++ incubator/nutch/trunk/site/mailing_lists.html Fri Mar 18 13:00:28 2005
@@ -114,6 +114,9 @@
 <a title="" href="bot.html">Robot     </a>
 </div>
 <div class="menuitem">
+<a title="" href="i18n.html">i18n</a>
+</div>
+<div class="menuitem">
 <a title="" href="apidocs/index.html">API Docs</a>
 </div>
 </div>

Modified: incubator/nutch/trunk/site/tutorial.html
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/site/tutorial.html?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/site/tutorial.html (original)
+++ incubator/nutch/trunk/site/tutorial.html Fri Mar 18 13:00:28 2005
@@ -114,6 +114,9 @@
 <a title="" href="bot.html">Robot     </a>
 </div>
 <div class="menuitem">
+<a title="" href="i18n.html">i18n</a>
+</div>
+<div class="menuitem">
 <a title="" href="apidocs/index.html">API Docs</a>
 </div>
 </div>

Modified: incubator/nutch/trunk/site/version_control.html
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/site/version_control.html?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/site/version_control.html (original)
+++ incubator/nutch/trunk/site/version_control.html Fri Mar 18 13:00:28 2005
@@ -114,6 +114,9 @@
 <a title="" href="bot.html">Robot     </a>
 </div>
 <div class="menuitem">
+<a title="" href="i18n.html">i18n</a>
+</div>
+<div class="menuitem">
 <a title="" href="apidocs/index.html">API Docs</a>
 </div>
 </div>

Added: incubator/nutch/trunk/src/site/src/documentation/content/xdocs/i18n.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/site/src/documentation/content/xdocs/i18n.xml?view=auto&rev=158139
==============================================================================
--- incubator/nutch/trunk/src/site/src/documentation/content/xdocs/i18n.xml (added)
+++ incubator/nutch/trunk/src/site/src/documentation/content/xdocs/i18n.xml Fri Mar 18 13:00:28 2005
@@ -0,0 +1,201 @@
+<?xml version="1.0"?>
+
+<document>
+
+<header>
+<title>i18n</title>
+</header>
+
+<body>
+
+<p>The Nutch search pages are easy to internationalize.</p>
+
+<p>For each language, there are three kinds things which must be
+translated:</p>
+
+<ol>
+
+<li><b>page header</b>: This is a list of anchors included at the top of
+every page.</li>
+
+<li><b>static pages</b>: These include the "about" page, the "search"
+page and the "help" page.</li>
+
+<li><b>dynamic page text</b>: These are strings used when constructing
+search result pages.</li>
+
+</ol>
+
+<p>Each of the above is described in more detail below.</p>
+
+<section><title>Getting Started</title>
+
+<p>The things to translate are:</p>
+
+<ol>
+<li>the page header</li>
+<li>the "about" page (<tt>src/web/pages/<i>lang</i>/about.xml</tt>)</li>
+<li>the "search" page (<tt>src/web/pages/<i>lang</i>/search.xml</tt>)</li>
+<li>the "help" page (<tt>src/web/pages/<i>lang</i>/help.xml</tt>)</li>
+<li>text for search results (<tt>src/web/locale/org/nutch/jsp/search_<i>lang</i>.properties</tt>)</li>
+</ol>
+
+<p>If you'd like to provide a translation, simply post translations of
+these five files to <a href="mailto:dev@nutch.org">dev@nutch.org</a>
+as an attachment.</p>
+
+</section>
+
+<section><title>Page Header</title>
+
+<p>The Nutch page header is included at the top of every page.</p>
+
+<p>The header is filed as
+<tt>src/web/include/<i>language</i>/header.xml</tt> where
+<i>language</i> is the <a
+href="http://ftp.ics.uci.edu/pub/ietf/http/related/iso639.txt">IS0639</a>
+language code.</p>
+
+<p>The format of the header file is:</p>
+
+<pre>
+  &lt;header-menu&gt;
+    &lt;item&gt; ... &lt;/item&gt;
+    &lt;item&gt; ... &lt;/item&gt;
+  &lt;/header-menu&gt;
+</pre>
+
+<p>Each item typically includes an HTML anchor, one for each of the
+top-level pages in the translation.</p>
+
+<p>For example, the header file for an English translation is filed
+as <a
+href="http://svn.apache.org/repos/asf/incubator/nutch/trunk/src/web/include/en/header.xml"><tt>src/web/include/en/header.xml</tt></a>.</p>
+
+
+</section>
+
+<section><title>Static Page Content</title>
+
+<p>Static pages compose most of the Nutch website, and are also used
+for project documentation.  These are HTML generated from XML files by
+XSLT.  This process is used to include a standard header and footer,
+and optionally a menu of sub-pages.</p>
+
+<p>Static page content is filed as
+<tt>src/web/pages/<i>language</i>/<i>page</i>.xml</tt> where
+<i>language</i> is the IS0639 language code, as above, and <i>page</i>
+determines the name of the page generated:
+<tt>docs/<i>page</i>.html</tt>.</p>
+
+<p>The format of a static page xml file is:</p>
+
+<pre>
+  &lt;page&gt;
+    &lt;title&gt; ... &lt;/title&gt;
+    &lt;menu&gt;
+      &lt;item&gt; ... &lt;/item&gt;
+      &lt;item&gt; ... &lt;/item&gt;
+    &lt;/menu&gt;
+    &lt;body&gt; ... &lt;/body&gt;
+  &lt;/page&gt;
+</pre>
+
+The <tt>&lt;menu&gt;</tt> item is optional.
+
+<p>Note that if you use an encoding other than UTF-8 (the default for
+XML data) then you need to declare that.  Also, if you use HTML
+entities in your data, you'll need to declare these too.  Look at
+existing translations for examples of this.</p>
+
+<p>For example, the English language "about" page is filed
+as <a
+href="http://svn.apache.org/repos/asf/incubator/nutch/trunk/src/web/pages/en/about.xml"><tt>src/web/pages/en/about.xml</tt></a>.</p>
+
+</section>
+
+<section><title>Dynamic Page Content</title>
+
+<p>Java Server Pages (JSP) is used to generate Nutch search results, and
+a few other dynamic pages (cached content, score explanations, etc.).</p>
+
+<p>These use Java's <a
+href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/Locale.html">Locale</a>
+mechanism for internationalization.  For each page/language pair,
+there is a Java property file containing the translated text of that
+page.</p>
+
+<p>These property files are filed as
+<tt>src/web/locale/org/nutch/jsp/<i>page</i>_<i>language</i>.xml</tt>
+where <i>page</i> is the name of the JSP page in <a
+href="http://svn.apache.org/repos/asf/incubator/nutch/trunk/src/web/jsp/"><tt>src/web/jsp/</tt></a>
+and <i>language</i> is the IS0639 language code, as above.</p>
+
+<p>For example, text for the English language search results page is filed
+as <a
+href="http://svn.apache.org/repos/asf/incubator/nutch/trunk/src/web/locale/org/nutch/jsp/search_en.properties"><tt>src/web/locale/org/nutch/jsp/search_en.properties</tt></a>.
+ This contains something like:</p>
+
+<pre>
+  title = search results
+  search = Search
+  hits = Hits &lt;b&gt;{0}-{1}&lt;/b&gt; (out of {2} total matching documents):
+  cached = cached
+  explain = explain
+  anchors = anchors
+  next = Next
+</pre>
+
+<p>Each entry corresponds to a text fragment on the search results
+page. The "hits" entry uses Java's <a
+href="http://java.sun.com/j2se/1.4.2/docs/api/java/text/MessageFormat.html">MessageFormat</a>.</p>
+
+<p>Note that property files must use the ISO 8859-1 encoding with
+unicode escapes.  If you author them in a different encoding, please
+use Java's <tt>native2ascii</tt> tool to convert them to this
+encoding.</p>
+
+</section>
+
+<section><title>Generating Static Pages</title>
+
+<p>To generate the static pages you must have <a
+ href="http://java.sun.com/j2se/downloads.html">Java</a>, <a
+ href="http://ant.apache.org/">Ant</a> and Nutch installed.  To
+ install Nutch, either download and unpack the latest <a
+ href="http://www.nutch.org/release/nightly/">release</a>, or check it
+ out from <a
+ href="version_control.html">Subversion</a>.</p>
+
+<p>Then give the command:</p>
+
+<pre>
+  ant generate-docs
+</pre>
+
+<i>This documentation needs more detail.  Could someone
+please submit a list of the actual steps required here?</i>
+
+
+<p>Once this is working, try adding directories and files to make your
+own translation of the header and a few of the static pages.</p>
+
+</section>
+
+<section><title>Testing Dynamic Pages</title>
+
+<p>To test the dynamic pages you must also have <a
+href="http://jakarta.apache.org/tomcat/">Tomcat</a> installed.</p>
+
+<p>An index is also required.  You can collect your own by working
+through the <a href="http://www.nutch.org/tutorial.html">tutorial</a>.
+Once you have an index, follow the steps outlined at the end of the
+tutorial for searching.</p>
+
+<i>This documentation needs more detail.  Could someone
+please submit a list of the actual steps required here?</i>
+
+</section>
+
+</body>
+</document>

Modified: incubator/nutch/trunk/src/site/src/documentation/content/xdocs/site.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/site/src/documentation/content/xdocs/site.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/site/src/documentation/content/xdocs/site.xml (original)
+++ incubator/nutch/trunk/src/site/src/documentation/content/xdocs/site.xml Fri Mar 18 13:00:28 2005
@@ -27,6 +27,7 @@
     <wiki        label="Wiki"             href="ext:wiki" />    
     <tutorial    label="Tutorial"         href="tutorial.html" />
     <webmasters  label="Robot     "       href="bot.html" />
+    <i18n        label="i18n"             href="i18n.html" />
     <apidocs     label="API Docs"         href="apidocs/index.html" />
   </docs>
 

Modified: incubator/nutch/trunk/src/web/include/ca/header.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/include/ca/header.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/include/ca/header.xml (original)
+++ incubator/nutch/trunk/src/web/include/ca/header.xml Fri Mar 18 13:00:28 2005
@@ -1,9 +1,7 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
 
 <header-menu>
- <item><a href="about.html">Quan a</a></item>
- <item><a href="faq.html">FAQ</a></item>
- <item><a href="developers.html">Desenvolupadors</a></item>
- <item><a href="../en/donate.html">Dóna</a></item>
+ <item><a href="http://www.nutch.org/about.html">Quan a</a></item>
+ <item><a href="http://www.nutch.org/faq.html">FAQ</a></item>
 </header-menu>
 

Modified: incubator/nutch/trunk/src/web/include/de/header.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/include/de/header.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/include/de/header.xml (original)
+++ incubator/nutch/trunk/src/web/include/de/header.xml Fri Mar 18 13:00:28 2005
@@ -1,8 +1,6 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <header-menu>
- <item><a href="about.html">&Uuml;ber</a></item>
- <item><a href="faq.html">FAQ</a></item>
- <item><a href="../en/developers.html">Entwickler</a></item>
- <item><a href="../en/donate.html">&Uuml;nterst&uuml;tzen</a></item>
+ <item><a href="http://www.nutch.org/about.html">&Uuml;ber</a></item>
+ <item><a href="http://www.nutch.org/faq.html">FAQ</a></item>
 </header-menu>

Modified: incubator/nutch/trunk/src/web/include/en/header.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/include/en/header.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/include/en/header.xml (original)
+++ incubator/nutch/trunk/src/web/include/en/header.xml Fri Mar 18 13:00:28 2005
@@ -1,6 +1,4 @@
 <header-menu>
- <item><a href="about.html">About</a></item>
- <item><a href="faq.html">FAQ</a></item>
- <item><a href="developers.html">Developers</a></item>
- <item><a href="donate.html">Donate</a></item>
+ <item><a href="http://www.nutch.org/about.html">About</a></item>
+ <item><a href="http://www.nutch.org/faq.html">FAQ</a></item>
 </header-menu>

Modified: incubator/nutch/trunk/src/web/include/es/header.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/include/es/header.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/include/es/header.xml (original)
+++ incubator/nutch/trunk/src/web/include/es/header.xml Fri Mar 18 13:00:28 2005
@@ -1,6 +1,4 @@
 <header-menu>
- <item><a href="about.html">Acerca de</a></item>
- <item><a href="../en/faq.html">Preguntas frecuentes</a></item>
- <item><a href="../en/developers.html">Desarrolladores</a></item>
- <item><a href="../en/donate.html">Donaciones</a></item>
+ <item><a href="http://www.nutch.org/about.html">Acerca de</a></item>
+ <item><a href="http://www.nutch.org/faq.html">Preguntas frecuentes</a></item>
 </header-menu>

Modified: incubator/nutch/trunk/src/web/include/fi/header.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/include/fi/header.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/include/fi/header.xml (original)
+++ incubator/nutch/trunk/src/web/include/fi/header.xml Fri Mar 18 13:00:28 2005
@@ -1,6 +1,4 @@
 <header-menu>
- <item><a href="about.html">Projektista</a></item>
- <item><a href="../en/faq.html">FAQ</a></item>
- <item><a href="../en/developers.html">Kehittäjät</a></item>
- <item><a href="../en/donate.html">Lahjoita</a></item>
+ <item><a href="http://www.nutch.org/about.html">Projektista</a></item>
+ <item><a href="http://www.nutch.org/faq.html">FAQ</a></item>
 </header-menu>

Modified: incubator/nutch/trunk/src/web/include/fr/header.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/include/fr/header.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/include/fr/header.xml (original)
+++ incubator/nutch/trunk/src/web/include/fr/header.xml Fri Mar 18 13:00:28 2005
@@ -1,6 +1,4 @@
 <header-menu>
- <item><a href="about.html">A propos</a></item>
- <item><a href="faq.html">Questions fréquentes</a></item>
- <item><a href="../en/developers.html">Développeurs</a></item>
- <item><a href="../en/donate.html">Faire un don</a></item>
+ <item><a href="http://www.nutch.org/about.html">A propos</a></item>
+ <item><a href="http://www.nutch.org/faq.html">Questions fréquentes</a></item>
 </header-menu>

Modified: incubator/nutch/trunk/src/web/include/hu/header.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/include/hu/header.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/include/hu/header.xml (original)
+++ incubator/nutch/trunk/src/web/include/hu/header.xml Fri Mar 18 13:00:28 2005
@@ -3,8 +3,6 @@
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
 <header-menu>
- <item><a href="about.html">A Nutch-ról</a></item>
- <item><a href="../en/faq.html">GYIK</a></item>
- <item><a href="../en/developers.html">Fejlesztõk</a></item>
- <item><a href="../en/donate.html">Adomány</a></item>
+ <item><a href="http://www.nutch.org/about.html">A Nutch-ról</a></item>
+ <item><a href="http://www.nutch.org/faq.html">GYIK</a></item>
 </header-menu>

Modified: incubator/nutch/trunk/src/web/include/jp/header.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/include/jp/header.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/include/jp/header.xml (original)
+++ incubator/nutch/trunk/src/web/include/jp/header.xml Fri Mar 18 13:00:28 2005
@@ -1,6 +1,4 @@
 <header-menu>
- <item><a href="about.html">Nutchについて</a></item>
- <item><a href="faq.html">よくある質問</a></item>
- <item><a href="../en/developers.html">開発者</a></item>
- <item><a href="../en/donate.html">寄付</a></item>
+ <item><a href="http://www.nutch.org/about.html">Nutchについて</a></item>
+ <item><a href="http://www.nutch.org/faq.html">よくある質問</a></item>
 </header-menu>

Modified: incubator/nutch/trunk/src/web/include/ms/header.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/include/ms/header.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/include/ms/header.xml (original)
+++ incubator/nutch/trunk/src/web/include/ms/header.xml Fri Mar 18 13:00:28 2005
@@ -1,6 +1,4 @@
 <header-menu>
- <item><a href="about.html">Perihal</a></item>
- <item><a href="../en/faq.html">Soalan-Soalan Lazim</a></item>
- <item><a href="../en/developers.html">Pembangun Perisian</a></item>
- <item><a href="../en/donate.html">Derma</a></item>
+ <item><a href="http://www.nutch.org/about.html">Perihal</a></item>
+ <item><a href="http://www.nutch.org/faq.html">Soalan-Soalan Lazim</a></item>
 </header-menu>

Modified: incubator/nutch/trunk/src/web/include/nl/header.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/include/nl/header.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/include/nl/header.xml (original)
+++ incubator/nutch/trunk/src/web/include/nl/header.xml Fri Mar 18 13:00:28 2005
@@ -1,8 +1,6 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <header-menu>
- <item><a href="about.html">Over</a></item>
- <item><a href="faq.html">Veelgestelde vragen (FAQ)</a></item>
- <item><a href="../en/developers.html">Ontwikkelaars</a></item>
- <item><a href="../en/donate.html">Donatie</a></item>
+ <item><a href="http://www.nutch.org/about.html">Over</a></item>
+ <item><a href="http://www.nutch.org/faq.html">Veelgestelde vragen (FAQ)</a></item>
 </header-menu>

Modified: incubator/nutch/trunk/src/web/include/pl/header.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/include/pl/header.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/include/pl/header.xml (original)
+++ incubator/nutch/trunk/src/web/include/pl/header.xml Fri Mar 18 13:00:28 2005
@@ -1,7 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <header-menu>
-	<item><a href="about.html">O Nutch</a></item>
-	<item><a href="faq.html">Częste pytania</a></item>
-	<item><a href="developers.html">Deweloperzy</a></item>
-	<item><a href="donate.html">Darowizny</a></item>
+	<item><a href="http://www.nutch.org/about.html">O Nutch</a></item>
+	<item><a href="http://www.nutch.org/faq.html">Częste pytania</a></item>
 </header-menu>

Modified: incubator/nutch/trunk/src/web/include/pt/header.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/include/pt/header.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/include/pt/header.xml (original)
+++ incubator/nutch/trunk/src/web/include/pt/header.xml Fri Mar 18 13:00:28 2005
@@ -1,8 +1,6 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
 
 <header-menu>
- <item><a href="about.html">Sobre</a></item>
- <item><a href="../en/faq.html">Perguntas Mais Freqüêntes</a></item>
- <item><a href="../en/developers.html">Desenvolvedores</a></item>
- <item><a href="../en/donate.html">Doe</a></item>
+ <item><a href="http://www.nutch.org/about.html">Sobre</a></item>
+ <item><a href="http://www.nutch.org/faq.html">Perguntas Mais Freqüêntes</a></item>
 </header-menu>

Modified: incubator/nutch/trunk/src/web/include/sv/header.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/include/sv/header.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/include/sv/header.xml (original)
+++ incubator/nutch/trunk/src/web/include/sv/header.xml Fri Mar 18 13:00:28 2005
@@ -1,6 +1,4 @@
 <header-menu>
- <item><a href="about.html">Om</a></item>
- <item><a href="../en/faq.html">Vanliga frågor (FAQ)</a></item>
- <item><a href="../en/developers.html">Utvecklare</a></item>
- <item><a href="../en/donate.html">Donera</a></item>
+ <item><a href="http://www.nutch.org/about.html">Om</a></item>
+ <item><a href="http://www.nutch.org/faq.html">Vanliga frågor (FAQ)</a></item>
 </header-menu>

Modified: incubator/nutch/trunk/src/web/include/th/header.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/include/th/header.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/include/th/header.xml (original)
+++ incubator/nutch/trunk/src/web/include/th/header.xml Fri Mar 18 13:00:28 2005
@@ -1,6 +1,4 @@
 <header-menu>
- <item><a href="../th/about.html">เกี่ยวกับ</a></item>
- <item><a href="../en/faq.html">คำถามที่ถามบ่อย</a></item>
- <item><a href="../en/developers.html">นักพัฒนา</a></item>
- <item><a href="../en/donate.html">บริจาค</a></item>
+ <item><a href="http://www.nutch.org/about.html">เกี่ยวกับ</a></item>
+ <item><a href="http://www.nutch.org/faq.html">คำถามที่ถามบ่อย</a></item>
 </header-menu>

Modified: incubator/nutch/trunk/src/web/include/zh/header.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/include/zh/header.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/include/zh/header.xml (original)
+++ incubator/nutch/trunk/src/web/include/zh/header.xml Fri Mar 18 13:00:28 2005
@@ -1,6 +1,4 @@
 <header-menu>
- <item><a href="about.html">简介</a></item>
- <item><a href="../en/faq.html">常见问题</a></item>
- <item><a href="../en/developers.html">开发</a></item>
- <item><a href="../en/donate.html">捐赠</a></item>
+ <item><a href="http://www.nutch.org/about.html">简介</a></item>
+ <item><a href="http://www.nutch.org/faq.html">常见问题</a></item>
 </header-menu>

Modified: incubator/nutch/trunk/src/web/pages/ca/about.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/pages/ca/about.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/pages/ca/about.xml (original)
+++ incubator/nutch/trunk/src/web/pages/ca/about.xml Fri Mar 18 13:00:28 2005
@@ -4,10 +4,8 @@
 	<title>Quan a</title>
 
 <menu>
- <item><a href="../en/org.html">Organization</a></item>
- <item><a href="../en/credits.html">Credits</a></item>
- <item><a href="../en/press.html">Press</a></item>
- <item><a href="../en/status.html">Status</a></item>
+ <item><a href="http://www.nutch.org/credits.html">Credits</a></item>
+ <item><a href="http://www.nutch.org/">Status</a></item>
 </menu>
 
 <body>
@@ -27,7 +25,7 @@
 	<li>Operar amb un cost mínim.</li>
 </ul>
 
-<p>Aquesta proposta és sens dubte, un repte. Si creus en els mèrits d'aquest projecte, si us plau, ajuda-n's, tant com a <a href="developers.html">desenvolupador</a> o amb una <a href="../en/donate.html">donació</a>
+<p>Aquesta proposta és sens dubte, un repte. Si creus en els mèrits d'aquest projecte, si us plau, ajuda-n's, tant com a <a href="http://www.apache.org/dev/">desenvolupador</a> o amb una <a href="http://www.apache.org/foundation/contributing.html">donació</a>
 .</p>
 
 </body>

Modified: incubator/nutch/trunk/src/web/pages/de/about.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/pages/de/about.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/pages/de/about.xml (original)
+++ incubator/nutch/trunk/src/web/pages/de/about.xml Fri Mar 18 13:00:28 2005
@@ -7,10 +7,8 @@
 <title>&Uuml;ber</title>
 
 <menu>
- <item><a href="../en/org.html">Organisation</a></item>
- <item><a href="credits.html">Danksagungen</a></item>
- <item><a href="../en/press.html">Presse</a></item>
- <item><a href="status.html">Status</a></item>
+ <item><a href="http://www.nutch.org/credits.html">Danksagungen</a></item>
+ <item><a href="http://www.nutch.org/">Status</a></item>
 </menu>
 
 <body>
@@ -56,7 +54,7 @@
 <p>
 Dieses Vorhaben ist eine grosse Herausforderung, und wenn Sie wie wir an die 
 Vorzüge eines solchen Projektes glauben, so bitten wir Sie uns zu unterstützen - 
-entweder als <a href="../en/developers.html">Entwickler</a> oder durch eine <a href="../en/donate.html">Spende</a>.
+entweder als <a href="http://www.apache.org/dev/">Entwickler</a> oder durch eine <a href="http://www.apache.org/foundation/contributing.html">Spende</a>.
 </p>
 
 </body>

Modified: incubator/nutch/trunk/src/web/pages/en/about.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/pages/en/about.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/pages/en/about.xml (original)
+++ incubator/nutch/trunk/src/web/pages/en/about.xml Fri Mar 18 13:00:28 2005
@@ -3,10 +3,8 @@
 <title>about</title>
 
 <menu>
- <item><a href="org.html">Organization</a></item>
- <item><a href="credits.html">Credits</a></item>
- <item><a href="press.html">Press</a></item>
- <item><a href="status.html">Status</a></item>
+ <item><a href="http://www.nutch.org/credits.html">Credits</a></item>
+ <item><a href="http://www.nutch.org/">Status</a></item>
 </menu>
 
 <body>
@@ -43,8 +41,8 @@
 
 <p>This is a challenging proposition.  If you believe in the merits of
 this project, please help out, either as a <a
-href="developers.html">developer</a> or with a <a
-href="donate.html">donation</a>
+href="http://www.apache.org/dev/">developer</a> or with a <a
+href="http://www.apache.org/foundation/contributing.html">donation</a>
 </p>
 
 </body>

Modified: incubator/nutch/trunk/src/web/pages/es/about.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/pages/es/about.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/pages/es/about.xml (original)
+++ incubator/nutch/trunk/src/web/pages/es/about.xml Fri Mar 18 13:00:28 2005
@@ -3,10 +3,8 @@
 <title>Acerca de...</title>
 
 <menu>
- <item><a href="../en/org.html">Organización</a></item>
- <item><a href="../en/credits.html">Créditos</a></item>
- <item><a href="../en/press.html">Prensa</a></item>
- <item><a href="../en/status.html">Status</a></item>
+ <item><a href="http://www.nutch.org/credits.html">Créditos</a></item>
+ <item><a href="http://www.nutch.org/">Status</a></item>
 </menu>
 
 <body>
@@ -48,8 +46,8 @@
 
 <p>Esta es una propuesta ambiciosa. Si te convencen los méritos de
 este proyecto, te pedimos que colabores, ya sea como <a
-href="../en/developers.html">desarrollador</a> o bien a través de una <a
-href="../en/donate.html">donación</a>
+href="http://www.apache.org/dev/">desarrollador</a> o bien a través de una <a
+href="http://www.apache.org/foundation/contributing.html">donación</a>
 </p>
 
 </body>

Modified: incubator/nutch/trunk/src/web/pages/fi/about.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/pages/fi/about.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/pages/fi/about.xml (original)
+++ incubator/nutch/trunk/src/web/pages/fi/about.xml Fri Mar 18 13:00:28 2005
@@ -3,10 +3,8 @@
 <title>projektista</title>
 
 <menu>
- <item><a href="../en/org.html">Organisaatio</a></item>
- <item><a href="../en/credits.html">Tekijät</a></item>
- <item><a href="../en/press.html">Julkisuus</a></item>
- <item><a href="../en/status.html">Projektin tila</a></item>
+ <item><a href="http://www.nutch.org/credits.html">Tekijät</a></item>
+ <item><a href="http://www.nutch.org/">Projektin tila</a></item>
 </menu>
 
 <body>
@@ -40,8 +38,8 @@
 </ul>
 
 <p>Ongelma on haastava. Jos uskot projektin mahdollisuuksiin voit auttaa joko sen
-<a href="../en/developers.html">kehittämisessä</a> tai <a
-href="../en/donate.html">lahjoittamalla sille varoja</a>.</p>
+<a href="http://www.apache.org/dev/">kehittämisessä</a> tai <a
+href="http://www.apache.org/foundation/contributing.html">lahjoittamalla sille varoja</a>.</p>
 
 </body>
 </page>

Modified: incubator/nutch/trunk/src/web/pages/fr/about.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/pages/fr/about.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/pages/fr/about.xml (original)
+++ incubator/nutch/trunk/src/web/pages/fr/about.xml Fri Mar 18 13:00:28 2005
@@ -36,7 +36,7 @@
 </ul>
 
 <p>C'est un défi de taille.  Si vous croyez dans les mérites de ce projet, merci d'y contribuer en 
-tant que <a href="../en/developers.html">développeur</a> ou bien en <a href="../en/donate.html">faisant un don</a>.
+tant que <a href="http://www.apache.org/dev/">développeur</a> ou bien en <a href="http://www.apache.org/foundation/contributing.html">faisant un don</a>.
 </p>
 </body>
 </page>

Modified: incubator/nutch/trunk/src/web/pages/hu/about.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/pages/hu/about.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/pages/hu/about.xml (original)
+++ incubator/nutch/trunk/src/web/pages/hu/about.xml Fri Mar 18 13:00:28 2005
@@ -7,10 +7,8 @@
 <title>névjegy</title>
 
 <menu>
- <item><a href="../en/org.html">Szervezet</a></item>
- <item><a href="../en/credits.html">Rólunk</a></item>
- <item><a href="../en/press.html">Sajtó</a></item>
- <item><a href="../en/status.html">Státusz</a></item>
+ <item><a href="http://www.nutch.org/credits.html">Rólunk</a></item>
+ <item><a href="http://www.nutch.org/">Státusz</a></item>
 </menu>
 
 <body>
@@ -41,8 +39,8 @@
 </ul>
 
 <p>Ez egy felhívás. Ha a projekt felkeltette az érdeklõdéseset, kérlek segíts, 
- vagy mint <a href="../en/developers.html">fejlesztõ</a>, vagy mint
- <a href="../en/donate.html">támogató</a>
+ vagy mint <a href="http://www.apache.org/dev/">fejlesztõ</a>, vagy mint
+ <a href="http://www.apache.org/foundation/contributing.html">támogató</a>
 </p>
 
 </body>

Modified: incubator/nutch/trunk/src/web/pages/jp/about.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/pages/jp/about.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/pages/jp/about.xml (original)
+++ incubator/nutch/trunk/src/web/pages/jp/about.xml Fri Mar 18 13:00:28 2005
@@ -3,10 +3,8 @@
 <title>Nutchについて</title>
 
 <menu>
- <item><a href="../en/org.html">組織</a></item>
- <item><a href="../en/credits.html">協力者</a></item>
- <item><a href="../en/press.html">発表</a></item>
- <item><a href="../en/status.html">状態</a></item>
+ <item><a href="http://www.nutch.org/credits.html">協力者</a></item>
+ <item><a href="http://www.nutch.org/">状態</a></item>
 </menu>
 
 <body>
@@ -41,8 +39,8 @@
 
 <p>これはとても挑戦的な提案です。
 あなたが Nutch プロジェクトの価値を信じるならば、<a
-href="../en/developers.html">開発者</a>として、又は<a
-href="../en/donate.html">寄付</a>をしてこのプロジェクトを是非とも応援してください。
+href="http://www.apache.org/dev/">開発者</a>として、又は<a
+href="http://www.apache.org/foundation/contributing.html">寄付</a>をしてこのプロジェクトを是非とも応援してください。
 </p>
 
 </body>

Modified: incubator/nutch/trunk/src/web/pages/ms/about.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/pages/ms/about.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/pages/ms/about.xml (original)
+++ incubator/nutch/trunk/src/web/pages/ms/about.xml Fri Mar 18 13:00:28 2005
@@ -3,10 +3,8 @@
 <title>perihal</title>
 
 <menu>
- <item><a href="../en/org.html">Organisasi</a></item>
- <item><a href="../en/credits.html">Penghargaan</a></item>
- <item><a href="../en/press.html">Media</a></item>
- <item><a href="../en/status.html">Status</a></item>
+ <item><a href="http://www.nutch.org/credits.html">Penghargaan</a></item>
+ <item><a href="http://www.nutch.org/">Status</a></item>
 </menu>
 
 <body>
@@ -34,7 +32,7 @@
 </ul>
 
 <p>Ini adalah proposisi yang mencabar. Jikalau anda percaya dengan merit projek ini, anda dipelawa untuk menghulurkan bantuan, samada sebagai 
-<a href="../en/developers.html">pembangun perisian</a>atau <a href="../en/donate.html">menderma</a>.</p> 
+<a href="http://www.apache.org/dev/">pembangun perisian</a>atau <a href="http://www.apache.org/foundation/contributing.html">menderma</a>.</p> 
 
 </body>
 </page>

Modified: incubator/nutch/trunk/src/web/pages/nl/about.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/pages/nl/about.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/pages/nl/about.xml (original)
+++ incubator/nutch/trunk/src/web/pages/nl/about.xml Fri Mar 18 13:00:28 2005
@@ -5,10 +5,8 @@
 <title>Over Nutch</title>
 
 <menu>
- <item><a href="../en/org.html">Organisatie</a></item>
- <item><a href="../en/credits.html">Credits</a></item>
- <item><a href="../en/press.html">Persberichten</a></item>
- <item><a href="../en/status.html">Status</a></item>
+ <item><a href="http://www.nutch.org/credits.html">Credits</a></item>
+ <item><a href="http://www.nutch.org/">Status</a></item>
 </menu>
 
 <body>
@@ -47,8 +45,8 @@
 
 <p>Dit voornemen vormt een uitdaging.
 Als je in het belang van dit project gelooft, werk er dan aan mee, als
-<a href="developers.html">ontwikkelaar</a> of als
-<a href="donate.html">donateur</a>.
+<a href="http://www.apache.org/dev/">ontwikkelaar</a> of als
+<a href="http://www.apache.org/foundation/contributing.html">donateur</a>.
 </p>
 
 </body>

Modified: incubator/nutch/trunk/src/web/pages/pl/about.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/pages/pl/about.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/pages/pl/about.xml (original)
+++ incubator/nutch/trunk/src/web/pages/pl/about.xml Fri Mar 18 13:00:28 2005
@@ -3,10 +3,8 @@
 <title>O Projekcie</title>
 
 <menu>
- <item><a href="org.html">Organizacja</a></item>
- <item><a href="credits.html">Podziękowania</a></item>
- <item><a href="press.html">W prasie</a></item>
- <item><a href="status.html">Status</a></item>
+ <item><a href="http://www.nutch.org/credits.html">Podziękowania</a></item>
+ <item><a href="http://www.nutch.org/">Status</a></item>
 </menu>
 
 <body>
@@ -44,8 +42,8 @@
 
 <p>Takie cele są prawdziwym wyzwaniem. Jeśli jesteś przekonany o
 zaletach tego projektu, to możesz nam pomóc jako <a
-href="developers.html">deweloper</a> lub poprzez <a
-href="donate.html">darowizny</a>.
+href="http://www.apache.org/dev/">deweloper</a> lub poprzez <a
+href="http://www.apache.org/foundation/contributing.html">darowizny</a>.
 </p>
 
 </body>

Modified: incubator/nutch/trunk/src/web/pages/pt/about.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/pages/pt/about.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/pages/pt/about.xml (original)
+++ incubator/nutch/trunk/src/web/pages/pt/about.xml Fri Mar 18 13:00:28 2005
@@ -5,10 +5,8 @@
 <title>sobre</title>
 
 <menu>
- <item><a href="../en/org.html">Organização</a></item>
- <item><a href="../en/credits.html">Créditos</a></item>
- <item><a href="../en/press.html">Imprensa</a></item>
- <item><a href="../en/status.html">Status</a></item>
+ <item><a href="http://www.nutch.org/credits.html">Créditos</a></item>
+ <item><a href="http://www.nutch.org/">Status</a></item>
 </menu>
 
 <body>
@@ -51,8 +49,8 @@
 
 <p>Esta é uma proósta desafiadora.  Se você acredita nos méritos desse
 projeto, por favor ajude, ou como um
-<a href="../en/developers.html">desenvolvedor</a> ou com uma
-<a href="../en/donate.html">doação</a>.</p>
+<a href="http://www.apache.org/dev/">desenvolvedor</a> ou com uma
+<a href="http://www.apache.org/foundation/contributing.html">doação</a>.</p>
 
 </body>
 </page>

Modified: incubator/nutch/trunk/src/web/pages/sv/about.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/pages/sv/about.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/pages/sv/about.xml (original)
+++ incubator/nutch/trunk/src/web/pages/sv/about.xml Fri Mar 18 13:00:28 2005
@@ -3,10 +3,8 @@
 <title>om</title>
 
 <menu>
- <item><a href="../en/org.html">Organisation</a></item>
- <item><a href="../en/credits.html">Erkännanden</a></item>
- <item><a href="../en/press.html">Press</a></item>
- <item><a href="../en/status.html">Status</a></item>
+ <item><a href="http://www.nutch.org/credits.html">Erkännanden</a></item>
+ <item><a href="http://www.nutch.org/">Status</a></item>
 </menu>
 
 <body>
@@ -41,8 +39,8 @@
 </ul>
 
 <p>Detta är ett utmanande förslag. Om du tror på detta projekts förtjänster,
-hjälp gärna till, antingen som en <a href="../en/developers.html">utvecklare</a>
-eller med en <a href="../en/donate.html">donation</a></p>
+hjälp gärna till, antingen som en <a href="http://www.apache.org/dev/">utvecklare</a>
+eller med en <a href="http://www.apache.org/foundation/contributing.html">donation</a></p>
 
 </body>
 </page>

Modified: incubator/nutch/trunk/src/web/pages/th/about.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/pages/th/about.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/pages/th/about.xml (original)
+++ incubator/nutch/trunk/src/web/pages/th/about.xml Fri Mar 18 13:00:28 2005
@@ -3,10 +3,8 @@
 <title>about</title>
 
 <menu>
- <item><a href="../en/org.html">องค์กร</a></item>
- <item><a href="../en/credits.html">ผู้ร่วมงาน</a></item>
- <item><a href="../en/press.html">สื่อมวลชน</a></item>
- <item><a href="../en/status.html">สถานภาพ</a></item>
+ <item><a href="http://www.nutch.org/credits.html">ผู้ร่วมงาน</a></item>
+ <item><a href="http://www.nutch.org/">สถานภาพ</a></item>
 </menu>
 
 <body>
@@ -45,8 +43,8 @@
 
 <p>นี่เป็นเป้าหมายที่ท้าทาย ถ้าคุณเชื่อว่าโครงการนี้มีประโยชน์
 กรุณาให้ความร่วมมือโดยเป็น<a
-href="../en/developers.html">ผู้พัฒนา</a>หรือร่วม<a
-href="../en/donate.html">บริจาค</a>
+href="http://www.apache.org/dev/">ผู้พัฒนา</a>หรือร่วม<a
+href="http://www.apache.org/foundation/contributing.html">บริจาค</a>
 </p>
 
 </body>

Modified: incubator/nutch/trunk/src/web/pages/zh/about.xml
URL: http://svn.apache.org/viewcvs/incubator/nutch/trunk/src/web/pages/zh/about.xml?view=diff&r1=158138&r2=158139
==============================================================================
--- incubator/nutch/trunk/src/web/pages/zh/about.xml (original)
+++ incubator/nutch/trunk/src/web/pages/zh/about.xml Fri Mar 18 13:00:28 2005
@@ -4,10 +4,8 @@
 <title>简介</title>
 
 <menu>
- <item><a href="../en/org.html">组织结构</a></item>
- <item><a href="../en/credits.html">参与人员</a></item>
- <item><a href="../en/press.html">新闻报道</a></item>
- <item><a href="../en/status.html">当前状态</a></item>
+ <item><a href="http://www.nutch.org/credits.html">参与人员</a></item>
+ <item><a href="http://www.nutch.org/">当前状态</a></item>
 </menu>
 
 <!--This page is translated by Shanfeng Zhu from Engiish to simplified Chinese!-->
@@ -42,8 +40,8 @@
 
 <p> 这是一个巨大的挑战. 如果你相信它的价值, 请伸出你的援手. 你可以
 参与<a
-href="../en/developers.html">开发</a>, 或是提供<a
-href="../en/donate.html">捐赠</a>. </p>
+href="http://www.apache.org/dev/">开发</a>, 或是提供<a
+href="http://www.apache.org/foundation/contributing.html">捐赠</a>. </p>
   
 </body>
 </page>