Installation notes
~~~~~~~~~~~~~~~~~~
1. Stylesheet files

Make backup of current file and copy the following .xsl files to the 
corresponding folder.

 fo/cfg/fo/layout-masters.xsl
 fo/cfg/fo/attrs/*.xsl
 fo/cfg/fo/xsl/custom.xsl (If you did not add customized code.)
 fo/xsl/common/*.xsl
 fo/xsl/fo/*.xsl

All stylesheet files are converted into XSLT 2.0.

2. Other files

 fo/cfg/fo/i18n/ja_JP.xml

This file is modified according to the following post:
 http://tech.groups.yahoo.com/group/dita-users/message/14261
 https://sourceforge.net/tracker/?func=detail&aid=2793143&group_id=132728&atid=725074


 fo/cfg/fo/font-mappings.xml

The Japanese font entry is modified to use most popular Japanese fonts.

* You don't need to copy above 2 files unless you use Japanese documents.

Revision notes
~~~~~~~~~~~~~~
Jun 25, 2009
 Fixed three bugs.
 1. According to the XSL1.1 specification, the indentation is inherited into
    the table. As this stylesheet does nothing about this behavior, user got 
    wrong table formatting result. Correct the stylesheet not to inherit 
    the indentation by defining start-indent="0pt" and end-indent="0pt" to 
    the fo:table-body and fo:table-header. (Jun 23, 2009)

    fo/xsl/fo/tables.xsl
    fo/xsl/fo/commons.xsl
    fo/cfg/fo/attrs/tables-attr.xsl
    fo/cfg/fo/attrs/toc-attr.xsl
    fo/cfg/fo/attrs/commons-attr.xsl

 2. The generated link in the index page from prolog/metadata/keywords/indexterm 
    does not referer to the start of the topic/title. Corrected the link to 
    point the start of title. (Jun 23, 2009)

    fo/xsl/fo/commons.xsl

 3. Avoid the following error.

   [java] Error on line 186 of tables_1.0.xsl:
   [java]   FORG0001: Cannot convert string "" to a double
   [java] Transformation failed: Run-time errors were reported

   This error occurs when there exits table/tgroup without colspec.
   Modify "countEntryNumber" template to return value 0 when stylesheet cannot 
   calculate the column number. (Jun 24, 2009)

   fo/xsl/fo/tables_1.0.xsl

Jun 19, 2009
  First release.

