svn commit: r564560 - in /lenya/docu: src/documentation/content/xdocs/docs/modules/lucene/index.xml src/documentation/content/xdocs/docs/release.xml tools/document2txt.xsl

[email protected]
Newsgroups gmane.comp.cms.lenya.cvs
Message-ID <[email protected]>
Author: andreas
Date: Fri Aug 10 04:35:19 2007
New Revision: 564560

URL: http://svn.apache.org/viewvc?view=rev&rev=564560
Log:
Updated docs: path to document2txt.xsl, formatting and some additions to release guidelines, hint about notification in lucene module

Modified:
    lenya/docu/src/documentation/content/xdocs/docs/modules/lucene/index.xml
    lenya/docu/src/documentation/content/xdocs/docs/release.xml
    lenya/docu/tools/document2txt.xsl

Modified: lenya/docu/src/documentation/content/xdocs/docs/modules/lucene/index.xml
URL: http://svn.apache.org/viewvc/lenya/docu/src/documentation/content/xdocs/docs/modules/lucene/index.xml?view=diff&rev=564560&r1=564559&r2=564560
==============================================================================
--- lenya/docu/src/documentation/content/xdocs/docs/modules/lucene/index.xml (original)
+++ lenya/docu/src/documentation/content/xdocs/docs/modules/lucene/index.xml Fri Aug 10 04:35:19 2007
@@ -60,6 +60,20 @@
     </section>
     
     <section>
+      <title>Indexing Issues</title>
+      <p>
+        When the system is under high load, it can occur that a document is not indexed after a change
+        because the indexer is busy. In this case, a notification message is sent to a user which can
+        be configured in <code>modules/lucene/sitemap.xmap</code>:
+      </p>
+      <source xml:space="preserve"><![CDATA[<map:transformer name="index2"
+    logger="sitemap.transformer.luceneindextransformer2"
+    src="org.apache.cocoon.transformation.LuceneIndexTransformer2">
+  <notify user="lenya"/>
+</map:transformer>]]></source>
+    </section>
+    
+    <section>
       <title>Searching</title>
       <p>
         To be documented.

Modified: lenya/docu/src/documentation/content/xdocs/docs/release.xml
URL: http://svn.apache.org/viewvc/lenya/docu/src/documentation/content/xdocs/docs/release.xml?view=diff&rev=564560&r1=564559&r2=564560
==============================================================================
--- lenya/docu/src/documentation/content/xdocs/docs/release.xml (original)
+++ lenya/docu/src/documentation/content/xdocs/docs/release.xml Fri Aug 10 04:35:19 2007
@@ -127,15 +127,37 @@
         </ul>
       </section>
       <section>
-        <title>Create binary packages (NOTE: moved from "issues" below - ok?)</title>
+        <title>Create the Binary Packages</title>
         <ul>
-          <li>compile a pristine cocoon with the local properties from lenya</li>
-          <li>set property <em>version</em> in file <em>src/targets/properties-build.xml</em> to the appropriate Lenya version</li>
-          <li>regenerate INSTALL-src.txt and INSTALL-bin.txt with the appropriate XSLT (FIXME: which one is that, and where are the sources?)</li>
-          <li>build all distribution archives, except the windows installer .exe, with <em>./build.sh|build dist</em> in the Lenya source root directory. You will find the distribution archives under <em>dist/</em>. The <em>dist</em> target will also build and package the editors BXE and Kupu.</li>
-          <li>to create a windows installer, edit <em>lenya.nsi</em> and replace all version numbers appropriately, then compile lenya.nsi with the <a href="http://nsis.sourceforge.net/home/">NSIS compiler</a> (use the LZMA compressor for the smallest binaries)</li>
-          <li>sign the release archives/installers with your PGP/GPG key (see instructions below)</li>
-          <li>upload the release to <em>minotaur.apache.org:/x1/www/www.apache.org/dist/lenya</em></li>
+          <li>
+            Compile a pristine Cocoon with the local properties from Lenya.
+          </li>
+          <li>
+            Set the property <em>version</em> in file <code>src/targets/properties-build.xml</code>
+            to the appropriate Lenya version.
+          </li>
+          <li>
+            Re-generate <code>INSTALL-src.txt</code> and <code>INSTALL-bin.txt</code> with the
+            XSLT stylesheet <code>https://svn.apache.org/repos/asf/lenya/docu/tools/document2txt.xsl</code>. 
+          </li>
+          <li>
+            Build all distribution archives, except the windows installer .exe, with
+            <code>./build.sh|build dist</code> in the Lenya source root directory.
+            You will find the distribution archives under <em>dist/</em>. The <em>dist</em> target
+            will also build and package the editors BXE and Kupu.
+          </li>
+          <li>
+            To create a Windows installer, edit <code>lenya.nsi</code> and replace all version
+            numbers appropriately, then compile <code>lenya.nsi</code> with the
+            <a href="http://nsis.sourceforge.net/home/">NSIS compiler</a>
+            (use the LZMA compressor for the smallest binaries)
+          </li>
+          <li>
+            Sign the release archives/installers with your PGP/GPG key (see instructions below).
+          </li>
+          <li>
+            Upload the release to <code>minotaur.apache.org:/x1/www/www.apache.org/dist/lenya</code>.
+          </li>
         </ul>
       </section>
       <section>

Modified: lenya/docu/tools/document2txt.xsl
URL: http://svn.apache.org/viewvc/lenya/docu/tools/document2txt.xsl?view=diff&rev=564560&r1=564559&r2=564560
==============================================================================
--- lenya/docu/tools/document2txt.xsl (original)
+++ lenya/docu/tools/document2txt.xsl Fri Aug 10 04:35:19 2007
@@ -79,13 +79,13 @@
 <!-- ====================================================================== -->
 <xsl:template match="document">
 <xsl:text>
-+----------------------------------------------------------------+
-| NOTE:                                                          |
-| This text document is generated from the XML source            |
-| using the following stylesheet:                                |
-|                                                                |
-| lenya/pubs/docs-new/xslt/document2txt.xsl                      |
-+----------------------------------------------------------------+
++---------------------------------------------------------------------+
+| NOTE:                                                               |
+| This text document is generated from the XML source                 |
+| using the following stylesheet:                                     |
+|                                                                     |
+| https://svn.apache.org/repos/asf/lenya/docu/tools/document2txt.xsl  |
++---------------------------------------------------------------------+
 
 
 </xsl:text>
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.