diff options
author | Thomas Broyer <tbroyer@src.gnome.org> | 2001-10-17 01:08:24 +0000 |
---|---|---|
committer | Thomas Broyer <tbroyer@src.gnome.org> | 2001-10-17 01:08:24 +0000 |
commit | 0c4d3048d46547792ecd3e78b94603ff37d1510e (patch) | |
tree | 708500c5f727e119103cdb83cfa54f1e5af51f55 /tests/REC | |
parent | e74d9fef32ceffb20f62f42c453b3bfef4c656df (diff) | |
download | libxslt-0c4d3048d46547792ecd3e78b94603ff37d1510e.tar.gz libxslt-0c4d3048d46547792ecd3e78b94603ff37d1510e.tar.bz2 libxslt-0c4d3048d46547792ecd3e78b94603ff37d1510e.zip |
reworked internal representation of tokenized number format and
* libxslt/numbers.c: reworked internal representation of
tokenized number format and parsing/tokenization. This fixes
many bugs regarding separator and default tokens.
* tests/REC/test-7.7-3.out: the fix changes the output of this
test. It now complies to the XSLT spec (wow! ;o)
Diffstat (limited to 'tests/REC')
-rw-r--r-- | tests/REC/test-7.7-3.out | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/REC/test-7.7-3.out b/tests/REC/test-7.7-3.out index 80825639..72814505 100644 --- a/tests/REC/test-7.7-3.out +++ b/tests/REC/test-7.7-3.out @@ -1,29 +1,29 @@ <?xml version="1.0"?> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format">1.First Chapter</fo:block> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format">1 First Chapter</fo:block> Here is some text. <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format">1.1 First Chapter, First Section</fo:block> More text here. - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format">1.1 1 First Chapter, First Section, First Subsection</fo:block> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format">1.1.1 First Chapter, First Section, First Subsection</fo:block> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format">1.1 2 First Chapter, First Section, Second Subsection</fo:block> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format">1.1.2 First Chapter, First Section, Second Subsection</fo:block> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format">2.Second Chapter</fo:block> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format">2 Second Chapter</fo:block> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format">A.First Appendix</fo:block> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format">A First Appendix</fo:block> <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format">A.1 First Appendix, First Section</fo:block> - <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format">B.Second Appendix</fo:block> + <fo:block xmlns:fo="http://www.w3.org/1999/XSL/Format">B Second Appendix</fo:block> |