Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
Based on patch provided by Martin Wilke via PR 34405.
Pkgsrc change:
Change dependency to p5-Test-Simple. This module require Test::More,
and it is included in p5-Test-Simple>=0.10 and perl>=5.7.2.
Changes:
4.40 Mon Aug 21 19:41:24 EDT 2006
[BUG FIXES]
- All FV_ closures are now exported with ":closures". (Ed Pigg, Mark Stosberg)
[ENHANCEMENTS]
- Added new constraint for the common case of comparing one field with another,
such as a word confirmation field. Example:
constraint_methods => {
password => FV_eq_with('password_confirm'),
}
(Mark Stosberg)
4.30 Mon Jul 10 21:41:37 EDT 2006
[ENHANCEMENTS]
- A new method for constraint writers has been added: untainted_constraint_value().
If you have written a constraint which untaints, use this method to return the
untainted result. It will prepare the right result whether the user has requested
untainting or not. (Mark Stosberg)
- New built-in constraints added:
FV_min_length(3),
FV_max_length(100),
FV_length_between(3,100),
These constraints can optionally perform untainting. (Mark Stosberg)
- We now work around a bug in File::MMagic which could cause some filehandles
to be corrupted after after the file_format constraint was used.
[BUG FIXES]
- Regexp::Common regular expressions which accepted zero as a valid input would
have wrongly failed their constraints unless untainting was enabled. (Mark Stosberg)
[INTERNALS]
- Improved documentation for built-in constraints. (Mark Stosberg)
4.20 Mon Jun 12 20:44:36 EDT 2006
[ENHANCEMENTS]
- Documentation in Data::FormValidator::Filters has been improved. (Mark Stosberg}
- Added FV_split() a new filter that makes it super-easy to apply the same constraint
to a list of values passed in a single field, such as a comma separated list of e-mail
addresses. (Mark Stosberg).
[BUG FIXES]
- For input given as a hashref containing array references, values could
have been mistakenly modified by reference through filters. We now
explicitly copy elements in these case, to avoid modifying the input.
(RT#19592)
4.14 Fri Feb 17 08:59:40 EST 2006
[ENHANCEMENTS]
- Consider a field with only a null character to be invalid (Jamie Krasnoo)
[BUG FIXES]
- Fix bug in cc_number constraint, which was only present when used as a "constraint_method". (Evan A. Zacks)
4.13
[BUG FIXES]
- Updated overloading syntax to work with Template::Stash (frank)
|
|
Patch provided by Martin Wilke via PR 34419.
Changes:
! bin/enc2xs
overhauled the -C option
- added ascii-ctrl', 'null', 'utf-8-strict' to core
- auto-generated Encode::ConfigLocal no longer use v-string for version
- now searches modules via File::Find so Encode/JP/Mobile is happy
! Byte/Byte.pm CN/CN.pm EBCDIC/EBCDIC.pm JP/JP.pm KR/KR.pm Symbol/Symbol.pm
use strict added; though all they do is load XS, it's
still better a practice
! *.pm
use warnings added to all of them for better practices' sake.
2.17
! encode.pm
'chin' =~ /^zh_CN|chin(?:a|ese)?$/i is true
but chin is not china or chinese.
http://d.hatena.ne.jp/jankogai/20060508/1147090316
! Encode.xs
Integrated maintperl change (27824|27824) which I overlooked
-- sorry, Nicholas and Coverity Scan.
2.16
! bin/piconv
--xmlcref and --htmlcref added.
! Encode.pm
Copyright Notice Added.
http://rt.cpan.org/NoAuth/Bug.html?id=#19056
! *
Replaced remaining ^\t with q( ) x 4. -- Perl Best Practice pp. 20
And all .pm's are now perltidy-ed.
Changes:
! bin/enc2xs
overhauled the -C option
- added ascii-ctrl', 'null', 'utf-8-strict' to core
- auto-generated Encode::ConfigLocal no longer use v-string for version
- now searches modules via File::Find so Encode/JP/Mobile is happy
! Byte/Byte.pm CN/CN.pm EBCDIC/EBCDIC.pm JP/JP.pm KR/KR.pm Symbol/Symbol.pm
use strict added; though all they do is load XS, it's
still better a practice
! *.pm
use warnings added to all of them for better practices' sake.
2.17
! encode.pm
'chin' =~ /^zh_CN|chin(?:a|ese)?$/i is true
but chin is not china or chinese.
http://d.hatena.ne.jp/jankogai/20060508/1147090316
! Encode.xs
Integrated maintperl change (27824|27824) which I overlooked
-- sorry, Nicholas and Coverity Scan.
2.16
! bin/piconv
--xmlcref and --htmlcref added.
! Encode.pm
Copyright Notice Added.
http://rt.cpan.org/NoAuth/Bug.html?id=#19056
! *
Replaced remaining ^\t with q( ) x 4. -- Perl Best Practice pp. 20
And all .pm's are now perltidy-ed.
Changes:
2.18
! bin/enc2xs
overhauled the -C option
- added ascii-ctrl', 'null', 'utf-8-strict' to core
- auto-generated Encode::ConfigLocal no longer use v-string for version
- now searches modules via File::Find so Encode/JP/Mobile is happy
! Byte/Byte.pm CN/CN.pm EBCDIC/EBCDIC.pm JP/JP.pm KR/KR.pm Symbol/Symbol.pm
use strict added; though all they do is load XS, it's
still better a practice
! *.pm
use warnings added to all of them for better practices' sake.
2.17
! encode.pm
'chin' =~ /^zh_CN|chin(?:a|ese)?$/i is true
but chin is not china or chinese.
http://d.hatena.ne.jp/jankogai/20060508/1147090316
! Encode.xs
Integrated maintperl change (27824|27824) which I overlooked
-- sorry, Nicholas and Coverity Scan.
2.16
! bin/piconv
--xmlcref and --htmlcref added.
! Encode.pm
Copyright Notice Added.
http://rt.cpan.org/NoAuth/Bug.html?id=#19056
! *
Replaced remaining ^\t with q( ) x 4. -- Perl Best Practice pp. 20
And all .pm's are now perltidy-ed.
2.15 2006/04/06 15:44:11
! Unicode/Unicode.xs
Addressed: UTF-16, UTF-32, UCS, UTF-7 decoders mishandle illegal characters
http://rt.cpan.org/NoAuth/Bug.html?id=#18556
! Encode.pm
added str2bytes() as an alias to encode() and bytes2str() as an alias
to decode()
http://rt.cpan.org/NoAuth/Bug.html?id=#17103
! Encode.xs
Change 26922: Avoid warning with MS Visual C compiler.
Message-Id: <200601231245.k0NCj2dw009484@smtp3.ActiveState.com>
! t/perlio.t
Change 26067: As using -C to turn on utf8 IO is equivalent to the open pragma
Message-Id: <200511092227.jA9MRcYD009025@smtp3.ActiveState.com>
|
|
|
|
|
|
The Lupy project has been RETIRED!
|
|
as what ends up in there is based on details of what ones os may or may
not come with. Fixes packaging on solaris and probably others.
|
|
Release: 1.71.1
This is a minor update to the 1.71.0 release. Along with a number of bug
fixes, it includes two feature changes:
* Added support for profiling based on xml:lang and status attributes.
* Added initial support in manpages output for footnote, annotation, and alt
instances. Basically, they all now get handled the same way ulink
instances are. They are treated as a class as "note sources": A numbered
marker is generated at the place in the main text flow where they occur,
then their contents are displayed in an endnotes section at the end of the
man page.
Common
The following changes have been made to the common code since the 1.71.1
release.
* For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again.
* Add support for Xalan generating a root xml:base like saxon.
FO
The following changes have been made to the fo code since the 1.71.1 release.
* For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again.
* Add support for Xalan to add root node xml:base for db5 docs.
* Added support for profiling based on xml:lang and status attributes.
HTML
The following changes have been made to the html code since the 1.71.1
release.
* For backward compatability autoidx-ng.xsl is invoking "kosek" indexing method again.
* Add support for Xalan to add root node xml:base for db5 docs.
* Added support for profiling based on xml:lang and status attributes.
* Made changes in namespace declarations to prevent xmllint's
canonicalizer from treating them as relative namespace URIs.
- Changed xmlns:k="java:com.isogen.saxoni18n.Saxoni18nService"
to xmlns:k="http://www.isogen.com/functions/com.isogen.saxoni18n.Saxoni18nService";
Saxon accepts either form
(see http://www.saxonica.com/documentation/extensibility/functions.html);
to Saxon, "the part of the URI before the final '/' is immaterial".
- Changed, e.g. xmlns:xverb="com.nwalsh.xalan.Verbatim" to
xmlns:xverb="xalan://com.nwalsh.xalan.Verbatim"; Xalan accepts
either form
(see http://xml.apache.org/xalan-j/extensions.html#java-namespace-declare);
just as Saxon does, it will "simply use the string to the
right of the rightmost forward slash as the Java class name".
- Changed xmlns:xalanredirect="org.apache.xalan.xslt.extensions.Redirect"
to xmlns:redirect="http://xml.apache.org/xalan/redirect", and
adjusted associated code to make the current Xalan redirect spec.
(see http://xml.apache.org/xalan-j/apidocs/org/apache/xalan/lib/Redirect.html)
* Added the html.append and chunk.append parameters. By default, the
value of both is empty; but the internal DocBook XSL stylesheets
build sets their value to "<xsl:text>
</xsl:text>", in order
to ensure that all files in the docbook-xsl-doc package end in a
newline character. (Because diff and some other tools may emit
error messages and/or not behave as expected when processing
files that are not newline-terminated.)
Highlighting
The following changes have been made to the highlighting code since the 1.71.1
release.
* Added license information
Manpages
The following changes have been made to the manpages code since the 1.71.1
release.
* Added initial support in manpages output for footnote, annotation,
and alt instances. Basically, they all now get handled the same
way ulink instances are. They are treated as a class as "note
sources": A numbered marker is generated at the place in the main
text flow where they occur, then their contents are displayed in
an endnotes section at the end of the man page (currently titled
REFERENCES, for English output, but will be changed to NOTES).
This support is not yet complete. It works for most "normal"
cases, but probably mishandles a good number of cases. More
testing will be needed to expose the problems. It may well also
introduce some bugs and regressions in other areas, including
basic paragraph handling, handling of "mixed block" content,
handling of other indented content, and handling of authorblurb
and personblurb in the AUTHORS section.
Params
The following changes have been made to the params code since the 1.71.1
release.
* Added support for profiling based on xml:lang and status attributes.
* Added the html.append and chunk.append parameters. By default, the
value of both is empty; but the internal DocBook XSL stylesheets
build sets their value to "<xsl:text>
</xsl:text>", in order
to ensure that all files in the docbook-xsl-doc package end in a
newline character. (Because diff and some other tools may emit
error messages and/or not behave as expected when processing
files that are not newline-terminated.)
Profiling
The following changes have been made to the profiling code since the 1.71.1
release.
* Added support for profiling based on xml:lang and status attributes.
|
|
Based on patch provided by Martin Wilke via PR 34418.
And this version depend on p5-Pod-Escapes>=1.04.
2006-01-18 Allison Randal <allison@perl.org>
* Release 3.04
Applied test patches for Perl core integration from Steve Peters.
Added a 'reinit' method to Pod::Simple::BlackBox for Russ Allbery
so Pod::Man can provide backward compatibility to existing users
(such as Module::Build and ExtUtils::MakeMaker).
Applied patch for extracting case-preserved package names on VMS
from Craig Berry.
|
|
Based on patch privided by Martin Wilke via PR 34421.
And this version depend on p5-Devel-Symdump>=2.01.
0.18 Friday 4th August, 2006
Rewrite _CvGV in terms of B::CV - no xs dependency anymore
(suggested by Tim Bunce)
Add the (FETCH|MODIFY)_$foo_ATTRIBUTES methods to the private
stoplists. (rt #12451)
Support documentation where the method name is documented in a
::qualified style (rt #14635)
Ignores new (5.8) magic CLONE and CLONE_SKIP methods. (rt #17489)
Added a nonwhitespace option (Alex - rt #14950)
|
|
Changes:
2006-10-15 Mikio Hirabayashi
* estraier.c (est_db_search_meta): a bug about the skip parameter was fixed.
* estcmd.c (runmulti, procmulti): new functions.
* estseek.c (showdoc): class name based on attribute name was added.
* estseek.c (realmain): "helpfile" attribute was added.
* estseek.c (shownaviform): new function.
* estseek.c (realmain): "logformat" attribute was added.
- A bug about URL encoding in the pure Ruby API was fixed.
- Release: 1.4.6
|
|
|
|
Revision history for Perl extension XML::Atom::Stream
0.10 Mon Oct 2 13:36:16 JST 2006
- Fixded memory leaks problem (Thanks to Jay A Patel)
|
|
|
|
with this change in-place suggests that sometimes the prefix IS added
in catalogs.mk (and presumably not in the client package, for some reason).
|
|
SGML_ENTRIES entry - it doesn't work. Probably because expansion
in this context requires the variable to already be defined, which it
isn't.
This is lucky, because every package using catalogs.mk adds ${PREFIX}
itself to each entry. So usually it gets added just the once.
The luck stops if you do something like: make PREFIX=/usr/pkgroot2
This makes the automatic ${PREFIX} insertion suddenly work AS WELL as
the client packages adding ${PREFIX} themselves. We end up with
/usr/pkgroot2/share/xml/catalog containing lines like:
<nextCatalog catalog="/usr/pkgroot2/usr/pkgroot2/share/xml/docbook/4.3/catalog" />
... after installing textproc/docbook-xml. This in turn causes
textproc/scrollkeeper to obscurely fail to build at configure time.
|
|
|
|
Packages Collection.
The perl5 module XML::SematicDiff provides a way to compare the
contents and structure of two XML documents. By default, it returns
a list of hashrefs where each hashref describes a single difference
between the two docs.
|
|
|
|
Changes since 1.41:
- fix to avoid modifying data which is being used by tsearch() for
ordering the binary tree (report by Adrian Bunk).
- do not ignore pathnames in /tmp/, since some tools create usable
pathnames for both old/new files there (Debian #376086).
- correct ifdef for fgetc_unlocked().
- updated configure macros CF_GCC_VERSION, CF_PATH_SYNTAX and
CF_XOPEN_SOURCE
- add configure check for compress, gzip and bzip2 programs that may be
used to decompress files.
|
|
apg is a bit special as it has some hardcoded ownership, so
mark that as "destdir".
|
|
PR pkg/32062 form NAKAJI Hiroyuki <nakaji at jp dot freebsd dot org>.
|
|
|
|
|
|
tests are enabled.
|
|
|
|
Changes:
2006-09-24 Mikio Hirabayashi
* estraier.c (est_search_aidx_attr): case insensitive mode was added.
* estraier.c (est_check_cjk_only): new function.
* estraier.c (est_make_cattr_list): search speed with CJK characters was improved.
* estraier.c (est_db_add_attr_index): altering attribute index was added.
* estraier.c (est_db_attr_index_exprs): new function.
* estraier.c (est_regex_match_str): new function.
* estraier.c (est_str_make_snippet): new function.
* estraier.c (est_db_merge): a bug related to discordance of the ID attribute was fixed.
* estraier.c (est_db_merge): division of inverted files was added.
* estseek.c (showformforweb): new function.
* estseek.c (realmain, showdoc): "deftitle" and "attrwidth" attributes were added.
* estseek.c (showtitle): new function.
* wavermod.c (waver_init, waver_open): "urlrule" attribute was added.
* estproxy.c: new file.
- Release: 1.4.5
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pkglint warnings. Bumped PKGREVISION.
|
|
|
|
|
|
Changes:
2006-09-20 Mikio Hirabayashi
* estraier.c (est_db_pseudo_doc_num): new function.
* estcmd.c (runregex, procregex): "-ci" option was added.
* estseek.c (realmain): "formtype" and "candir" attributes were added.
* estseek.c (showformforfile, showformformail): new functions.
* estfraud.c (sendnodecmdputdoc, sendnodecmdoutdoc, sendnodecmdsync): new functions.
- Release: 1.4.4
|
|
* Documentation:
- Improved ContentNode documentation
Changes 2.13.1:
* First unstable 2.13.x release, to become stable 2.14.x, for GNOME 2.14.
* Node:
- Added find() overload that takes namespaces to register during the search,
using xmlXPathRegisterNs().
- set_namespace(): When creating a default namespace, avoid the
"The namespace () has not been declared" warning, by passing 0 to
xmlSearchNs() instead of an empty string.
* Build: Fix buildir!=srcdir builds.
* Documentation:
- Tutorial: Mention pkg-config.
- Reference: Grammar fixes and a small fix for find().
Changes 2.12.0:
* Added the state "Reading" to xml Reader States list.
|
|
Bump PKGREVISION.
|
|
|
|
|
|
|
|
iso-codes 0.53
--------------
Tobias Toedter <t.toedter@gmx.net>
Sun, 27 Aug 2006
[ Alastair McKinstry ]
* Fixed typo in New Zealand county name: "Hawkes's' Bay"
[ Tobias Toedter ]
* iso_3166
- ar.po updated by Ossama M. Khayat. Closes: #377530
- ro.po updated by Eddy Petrişor. Closes: #378665
- vi.po updated by Clytie Siddall. Closes: #380591
- zh_CN.po updated by Carlos Z.F. Liu. Closes: #381000
- fi.po updated by Raija Polojärvi. Closes: #382051
- ko.po updated by Sunjae Park. Closes: #384538
* debian/copyright: Update for the new SVN source code location
* iso_3166_2
- Corrected some errors in the XML file. Thanks to Andreas Schmidt
and Ulrich Mueller for the patch and hints. Closes: #375688
- Remove iso_3166_2.tab, it's no longer needed. Thanks to Ulrich
Mueller for pointing this out.
- Remove double msgid for "Hawkes Bay" in all po files. Closes: #381355
* iso_4217
- vi.po updated by Clytie Siddall via TP
- nl.po updated by Luk Claes via TP
- fi.po updated by Tommi Vainikainen via TP
- hu.po updated by Gabor Kelemen via TP
* iso_639
- vi.po updated by Clytie Siddall via TP
- eo.po updated by Edmund GRIMLEY EVANS via TP
- fi.po updated by Tommi Vainikainen via TP
- hu.po updated by Gabor Kelemen via TP
* Changed the contact address to the newly created mailing list
[ Christian Perrier ]
* iso_3166:
- dz.po updated by Kinley Tshering.
- fi.po updated by Tapio Lehtonen. Closes: #382051
[ Eugeniy Meshcheryakov ]
* iso_3166/uk.po updated
iso-codes 0.52
--------------
Tobias Toedter <t.toedter@gmx.net>
Sun, 09 Jul 2006
* Acknowledge NMU by Christian Perrier. Thanks!
* Add Tobias Toedter and Christian Perrier as additional
maintainers with Alastair's consent
[ Tobias Toedter ]
* iso_3166:
- kk.po updated by Timur Birsh. Closes: #375493
- km.po updated by Khoem Sokhem
- ru.po updated by Yuri Kozlov. Closes: #376234
- th.po updated by Theppitak Karoonboonyanan. Closes: #377217
* iso_3166_2:
- th.po updated by Theppitak Karoonboonyanan.
* iso_639:
- XML source updated.
- ru.po updated by Yuri Kozlov. Closes:
- de.po updated by Tobias Toedter
- th.po updated by Theppitak Karoonboonyanan.
* iso_4217:
- XML source updated. Closes: #376085
- de.po updated by Tobias Toedter
- th.po updated by Theppitak Karoonboonyanan.
* Remove debian/watch file from EXTRA_DIST in Makefile.am
* Move to Standards-Version: 3.7.2. No changes required.
* Remove iso_4217_historic.tab and iso_4217.tab as they are outdated
and no longer distributed
* Remove iso2tab.py and tab2h.pl as they are no longer used.
* iso2pot.py: Derive the header of POT files from the file input
* Use a more portable method of creating directories during the
installation of data files. Thanks to Julio M. Merino Vidal
for the patch. Closes: #375687
* Add debian/compat file for debhelper
* Update of the debian/copyright information
* debian/rules:
- Remove dependency on autoconf and automake
- Rewrite large parts of the build system to better conform to
standard rules files
* debian/control:
- Change Build-Depends-Indep to Build-Depends, according to
Policy 7.6. The reason is that we call the "clean" target.
- Remove autoconf and automake from Build-Depends
- Add "XC-Package-Type: udeb" to iso-3166-udeb to give debhelper
a hint about the package
* Remove the debian/ directory from the EXTRA_DIST variable in
Makefile.am, as we're not building a native Debian package.
The generated tarball does now no longer include the Debian
specific parts.
[ Miroslav Kure ]
* iso_639/cs.po updated
* iso_4217/cs.po updated
[ Christian Perrier ]
* iso_4217
- fr.po updated from the standard itself (lucky me)
iso-codes 0.51-1.1
------------------
Christian Perrier <bubulle@debian.org>
Sat, 10 Jun 2006
* NMU to allow new translations to go in. Actually I should
rather add Tobias and myself to the Uploaders field, as
co-maintainers but it's a maintainer decision
[ Alastair McKinstry ]
* Ensure that generated .pot files are left in the tarball for the
benefit of the Translation Project.
* iso_3166_2:
- Minor Danish update (Claus Hindsgaul)
[ Tobias Toedter ]
* iso_3166:
- ne.po added by Shyam Krishna Bal. Closes: #369525
- it.po corrected by Davide Viti. Closes: #370019
[ Christian Perrier ]
* iso_639
- Modify the entry for "dv/div" as of ISO-639 change of 2006-06-07
- Add "nqo" for "N'ko" as of ISO-639 change of 2006-05-21
- Update French translation from ISO-639 official names
iso-codes 0.51
--------------
Alastair McKinstry <mckinstry@debian.org>
Mon, 24 Apr 2006
[ Christian Perrier ]
* iso_639:
- fr.po updated by Christian Perrier for zxx
* iso_3166:
- Rename the Punjabi translation file name from pa_IN to pa
to fit a decision taken in -i18n
- km.po added by Kakada Hok. Closes: #359669
- dz.po added by Pema Geyleg. Closes: #361794
* Updated French translation of ISO-3166
* Updated Khmer translation of ISO-3166 (Khoem Sokhem). Closes: #359669
[ Miroslav Kure ]
* iso_639/cs.po huge update
* iso_3166/cs.po regular update
[ Tobias Toedter ]
* iso_3166:
- Inclusion of an entry for Jersey, Guernsey, and Isle of Man,
according to the ISO 3166-1 NEWSLETTER No. V-11, published
on 2006-03-29. Closes: #360425
- bg.po updated by Ognyan Kulev
- nl.po updated by Luk Claes
- eo.po updated by Edmund GRIMLEY EVANS
- id.po updated by Arief S Fitrianto
- eu.po updated by Piarres Beobide Egaña
- sk.po updated by Peter Mann
- gl.po updated by Jacobo Tarrío. Closes: #360512
- th.po updated by Theppitak Karoonboonyanan. Closes: #360565
- de.po updated by Tobias Toedter
- he.po updated by Lior Kaplan
- pt.po updated by Miguel Figueiredo
- mk.po updated by Georgi Stanojevski
- ca.po updated by Orestes Mas Casals
- tl.po updated by Eric Pareja
- wo.po updated by Mouhamadou Mamoune Mbacke
- hu.po updated by SZERVÁC Attila. Closes: #364286
- cy.po updated by Dafydd Harries
* Removed double definition of VERSION in Makefile.am
* iso_4217:
- th.po updated by Theppitak Karoonboonyanan. Closes: #360693
- pt.po updated by Miguel Figueiredo
[ Claus Hindsgaul ]
* Updated iso_3166/da.po
[ Kenshi Muto ]
* Updated iso_3166/ja.po
[ Kęstutis Biliūnas ]
* Updated iso_3166/lt.po
* Updated iso_4217/lt.po
* Updated iso_639/lt.po
|
|
This fixes problems when some installed packages are outdated.
Per wiz@'s request.
Grrr, I really hate this kind of change.
|
|
Changes in 0.8.0:
-----------------
* Use an XSLT namespace alias for XInclude output
* Updated translations:
bn (Jamil Ahmed)
bn_IN (Runa Bhattacharjee)
de (Hendrik Richter)
el (Kostas Papadimas)
es (Francisco Javier F. Serrador)
eu (Inaki Larranaga)
hi (Rajesh Ranjan)
hu (Gabor Kelemen)
id (Ahmad Riza H Nst)
ja (Satoru SATOH)
lt (Gintautas Miliauskas)
mg (Thierry Randrianiriana)
mr (Rahul Bhalrao)
or (Subhransu Behera)
pt (Duarte Loreto)
pt_BR (Leonardo Ferreira Fontenelle)
ru (Leonid Kanter)
sl (Matic Žgur)
ug (Gheyret T.Kenji)
uk (Maxim Dziumanenko)
zh_CN (Funda Wang)
(38/61 languages with 100% translation)
Changes in 0.7.2:
-----------------
* Updated translations:
bn_IN (Runa Bhattacharjee)
es (Francisco Javier F. Serrador)
fr (Benoît Dejean)
id (Ahmad Riza H Nst)
ko (Changwoo Ryu
lv (Raivis Dejus)
ml (Ani Peter)
mn (Sanlig Badral)
nl (Tino Meinen)
ta (I. Felix)
zh_HK (Chao-Hsiung Liao)
zh_TW (Chao-Hsiung Liao)
Changes in 0.7.1:
-----------------
* build: Added support for the LINGUAS environment variable (Shaun McCance)
* build: Removed the code to copy gnome-doc-utils.make in (Shaun McCance)
* build: Some fixes for HTML generation (Shaun McCance)
* build: Added the long-missing template document (Sven Herzberg)
* xml2po: Treat year as utf-8 as well (Danilo Šegan)
* xml2po: Check if "translator-credits" is translated (Danilo Šegan)
* xml2po: Updated test cases (Danilo Šegan)
* xml2po: Added Ubuntu mode supporting &language; (Danilo Šegan)
* xml2po: Mark non-translated passages with @lang; #172459 (Danilo Šegan)
* xml2po: Added entity-non-expanding serialization (Danilo Šegan)
* xml2po: Fixed attribute handling; #317110 (Danilo Šegan)
* xml2po: Improved fix for #336765 (Danilo Šegan)
* xml2po: Don't remove blank nodes followed by entities; #317502 (Danilo Šegan)
* xml2po: Integrate DTD when keeping entities; #336765 (Danilo Šegan)
* xml2po: Ignore blank nodes; #172784 (Danilo Šegan)
* xslt: Fixed plurals for fr, wa, nso; bug #338641 (Shaun McCance)
* xslt: Don't put content before attributes (Shaun McCance)
* Updated translations:
bg (Alexander Shopov)
ca (Josep Puigdemont Casamajó)
cs (Lukas Novotny)
cy (Rhys Jones)
dz (Pema Geyleg)
es (Francisco Javier F. Serrador)
et (Ivar Smolin)
fi (Ilkka Tuohela)
gl (Ignacio Casal Quinteiro)
gu (Ankit Patel)
ka (Vladimer Sichinava)
nb (Kjartan Maraas)
no (Kjartan Maraas)
ro (Dan Damian)
sv (Daniel Nylander)
th (Theppitak Karoonboonyanan)
vi (Clytie Siddall)
zh_HK (Chao-Hsiung Liao)
zh_TW (Chao-Hsiung Liao)
|
|
|
|
2006-09-14 Mikio Hirabayashi
* estraier.c (est_regex_replace): replacement with "\1" through "\9" were added.
* estcmd.c (runregex, procregex): new functions.
* estbutler.c (runsearch, procsearch): "wildmax" parameter was added.
* wavermod.c (make_doc_from_html): links of "object" and "embed" elements were added.
* estfraud.c: new file.
- Release: 1.4.3
|
|
Release: 1.71.0
The following is a list of changes that have been made since the 1.70.1
release.
Common
The following changes have been made to the common code since the 1.70.1
release.
* Further tinkering with sidebar handling. Think I got it right this
time. (re)closes bug 1541793. Thanks to Mauritz Jeanson.
* To make DocBook4-valid (the build ends up validing output of this
using xjparse), replaced author/orgname with corpauthor and
replaced all instances of tag with sgmltag.
* Added reference.autolabel parameter for controlling labels on
reference output.
* Did some touch-ups to a few files to ensure that building from PDF
and text from reference.dbk will work.
* Support rows that are *completely* overlapped by the preceding row
* New modules for supporting indexing extensions.
* Merged ref.css into reference.css, deleted ref.css, and updated
stylesheet to use reference.css instead of ref.css. Also changed
individual reference pages to use graphical admonitions.
* Added IDs in a number of places that should have time.
* Added normalization to object.title.markup.textonly mode, reverted
copyright link template in html/chunk-common.xsl to use it, and
updated a couple of places in manpages that should have already
been using it instead of object.title.markup.
* Fix attribute name
* fixed bug #1528002 olinks not handling dbhtml dir
* Fixed bug #1539010, fix xml.base.dirs template to stop recursing
if hit an absolute uri.
* Corrected XPath expression used for finding date data within *info
content -- such that dbtimestamp PIs are now correctly processed
when they occur within refentry *info content.
* Removed svn:executable property from many xml and xsl files on
which it had been inadvertently (CVS legacy).
* Support startinglinenumber on orderedlist
* fixed lang entity to remove en appendage
Extensions
The following changes have been made to the extensions code since the 1.70.1
release.
* Completely reworked extensions build system; now uses NetBeans and ant
FO
The following changes have been made to the fo code since the 1.70.1 release.
* Fixed path selection in tgroup template.
* Change tgroup position test to count preceding-sibling instead.
* Moved XSL stylesheets out of docsrc dir and into tools/xsl/build
* Citations to nonexistent biblioentries do not issue warning.
* More carefully select language substring for sorting.
* Re-enabled build of PDF version of ref docs.
* xsl:sort lang attribute now uses two-char substring of lang attribute.
* Support titlecase "Java", "Perl", and "IDL" as values for the
language attribute on classsynopsis, etc. (instead of just
lowercase "java", "perl", and "idl"). Also support "c++" and "C++"
(instead of just "cpp").
Affects HTML, FO, and manpages output. Closes bug 1552332. Thanks
to "Brian A. Vanderburg II".
* Fixed index.term.separator on secondary and tertiary entries.
* Added support for the reference.autolabel param in (X)HTML and FO
output.
* Did some touch-ups to a few files to ensure that building from PDF
and text from reference.dbk will work.
* Support rows that are *completely* overlapped by the preceding row
* Add exclude-result-prefix="mml" so xmlns output only if mml: is actually used.
* Rearranged templates for the 3 indexing methods
and changed method named 'english' to 'basic'.
* New modules for supporting indexing extensions.
* Fixed bug #1542773 section title in info not working, for db5 too.
* Fixed bug #1542773 section title in info not formatting correctly.
* Fixed bug 1545377 xml:id not supported in glossary.xsl.
* Added IDs in a number of places that should have time.
* Prevent "titleabbrev in article: no template matches" warnings.
Patch from Camille Bgnis. Closes bug #1509100.
* Turn off blank-body for fop1.extensions too since fop 0.92
does not support it either.
* Finish fixing bug #1540539
* Fix bug #1540539
* Fixed bug #1537751 sidebar content not being included.
* Add Xalan variant to test for exslt:node-set function.
Xalan can use function named node-set(), but doesn't
recognize it using function-available().
* Add curly braces around ⟨ in xsl:sort lang attribute to make it an AVT.
* Added support to FO stylesheets for handling instances of Org
where it occurs outside of *info content. In HTML stylesheets,
moved handling of Org out of info.xsl and into inline.xsl. In both
FO and HTML stylesheets, added support for correctly processing
Affiliation and Jobtitle.
* Don't output punctuation between Refname and Refpurpose if
Refpurpose is empty. Also corrected handling of Refsect2/title
instances, and removed some debugging stuff that was generated in
manpages output to mark the ends of sections.
* Added new email.delimiters.enabled param. If non-zero (the
default), delimiters are generated around e-mail addresses (output
of the email element). If zero, the delimiters are suppressed.
* Fixed handling of punctuation for methodparam in methodsynopsis.
Closes bug 1530558. Thanks to Evan Goer and Michael Fuchs.
* Removed svn:executable property from many xml and xsl files on
which it had been inadvertently (CVS legacy).
* fixed lang entity to remove en appendage
* fixed bug 1516275 set table
width to 100% when proportional columns are used
* fixed bug 1497436 confirm @cols is a number
* Initial support of syntax highlighting of programlistings.
* Chapter after preface should restart numbering of pages.
HTML
The following changes have been made to the html code since the 1.70.1
release.
* Moved XSL stylesheets out of docsrc dir and into tools/xsl/build
* Citations to nonexistent biblioentries do not issue warning.
* More carefully select language substring for sorting.
* re-Fixed typo introduced in html/synop.xsl, and re-disabled
reference.pdf build in snapshot build.
* Fixed typo introduced in previous html/synop.xsl commit.
* xsl:sort lang attribute now uses two-char substring of lang attribute.
* Support titlecase "Java", "Perl", and "IDL" as values for the
language attribute on classsynopsis, etc. (instead of just
lowercase "java", "perl", and "idl"). Also support "c++" and "C++"
(instead of just "cpp").
Affects HTML, FO, and manpages output. Closes bug 1552332. Thanks
to "Brian A. Vanderburg II".
* Further tinkering with sidebar handling. Think I got it right this
time. (re)closes bug 1541793. Thanks to Mauritz Jeanson.
* Added support for the reference.autolabel param in (X)HTML and FO
output.
* Support rows that are *completely* overlapped by the preceding row
* Exclude mml result prefix unless mml is in the output.
* Rearranged templates for the 3 indexing methods
and changed method named 'english' to 'basic'.
* New modules for supporting indexing extensions.
* Fixed bug #1542773 section title in info not working, for db5 too.
* Fixed bug #1542773 section title in info not formatting correctly.
* Fixed bug 1545377 xml:id not supported in glossary.xsl.
* Fixed part of bug #1484944 authorgroup needing a named anchor.
* Added IDs in a number of places that should have time.
* Added several new HTML parameters for controlling appearance of
content on HTML title pages:
contrib.inline.enabled:
If non-zero (the default), output of the contrib element is
displayed as inline content rather than as block content.
othercredit.like.author.enabled:
If non-zero, output of the othercredit element on titlepages is
displayed in the same style as author and editor output. If zero
(the default), othercredit output is displayed using a style
different than that of author and editor.
blurb.on.titlepage.enabled:
If non-zero, output from authorblurb and personblurb elements is
displayed on title pages. If zero (the default), output from
those elements is suppressed on title pages (unless you are
using a titlepage customization that causes them to be included).
editedby.enabled
If non-zero (the default), a localized Edited by heading is
displayed above editor names in output of the editor element.
* Added normalization to object.title.markup.textonly mode, reverted
copyright link template in html/chunk-common.xsl to use it, and
updated a couple of places in manpages that should have already
been using it instead of object.title.markup.
* Corrected XPath expression used for locating first legalnotice
instance in a document. Closes request #1476450. Thanks to Sam
Steingold.
* Correctly handle sidebar instances that have sidebar/info/title
instead of sidebar/title. This change simply makes sidebar
handling for this case identical to that of abstract. Closes bug
#1541793. Thanks to Mauritz Jeanson.
* Further refinement to cause nested QandASet to appear in top-level
TOC. Patch from Daniel Leidert. Closes patch #1509018.
* Fixed bug #1541113 predicate bugs in next/previous
* fixed bug #1528002 olinks not handling dbhtml dir
* Fixed bug #1537076 where sectioninfo/keywordset was not being processed.
* Add Xalan variant to test for exslt:node-set function.
Xalan can use function named node-set(), but doesn't
recognize it using function-available().
* Add curly braces around ⟨ in xsl:sort lang attribute to make it an AVT.
* Added support to FO stylesheets for handling instances of Org
where it occurs outside of *info content. In HTML stylesheets,
moved handling of Org out of info.xsl and into inline.xsl. In both
FO and HTML stylesheets, added support for correctly processing
Affiliation and Jobtitle.
* Don't output punctuation between Refname and Refpurpose if
Refpurpose is empty. Also corrected handling of Refsect2/title
instances, and removed some debugging stuff that was generated in
manpages output to mark the ends of sections.
* Added new email.delimiters.enabled param. If non-zero (the
default), delimiters are generated around e-mail addresses (output
of the email element). If zero, the delimiters are suppressed.
* Fixed handling of punctuation for methodparam in methodsynopsis.
Closes bug 1530558. Thanks to Evan Goer and Michael Fuchs.
* Removed svn:executable property from many xml and xsl files on
which it had been inadvertently (CVS legacy).
* Further changes related to handling when qanda.nested.in.toc is
non-zer0; deal also with answer/qandaset instances (which are
valid in DocBook 5).
* Added qanda.nested.in.toc param. Default value is zero. If
non-zero, instances of "nested" Qandaentry (ones that are children
of Answer elements) are displayed in the TOC. Closes patch 1509018
(from Daniel Leidert). Currently on affects HTML output (no patch
for FO output provided).
* Made changes to correct handling of nested answer/qandaentry
instances. Closes bug 1509043. Thanks to Daniel Leidert.
To avoid code duplication, part of the change involved adding a
new process.qandaset named template and moving the code for output
of all the question/answer table markup into that template.
* Removed obsolete DL instances from biblio.xsl that were causing
invalid XHTML output. Closes bug 1509041. Thanks to Daniel
Leidert.
* Used copy-of instead of value-of with biblioentry.item.separator,
so that it can contain linebreaks. Closes bug 1509021. Patch from
Daniel Leidert.
* Improved handling of relative locations generated files
* Fix functionsynopsis presentation
* fixed lang entity to remove en appendage
* fixed bug 1497436 confirm @cols is a number
* Initial support of syntax highlighting of programlistings.
* Support org
* Support person
* Support $keep.relative.image.uris also when chunking
Highlighting
The following changes have been made to the highlighting code since the 1.70.1
release.
* Opps, seems that I forgot to commit changes previously
* Initial support of syntax highlighting of programlistings.
HTMLHelp
The following changes have been made to the htmlhelp code since the 1.70.1
release.
* Fixed bug #1477771 where article was missing from hhc part TOC.
Lib
The following changes have been made to the lib code since the 1.70.1 release.
* Moved XSL stylesheets out of docsrc dir and into tools/xsl/build
* Added some IDs to the lib.xweb file.
* Did some touch-ups to a few files to ensure that building from PDF
and text from reference.dbk will work.
Manpages
The following changes have been made to the manpages code since the 1.70.1
release.
* Suppress footnote markers and output warning that footnotes are
not yet supported.
* Moved XSL stylesheets out of docsrc dir and into tools/xsl/build
* Fixed handling of verbatims (address, screen, etc.) within
listitem instances in varlistentry and glossentry. (We now always
use .RS instead of .TP). Closes bug 1551922 and closes Debian bug
385940. Thanks to Daniel Leidert and Jakub Wilk.
* Correctly handle lists that have block content before the actual
list items. Closes bug #1547511. Thanks to Daniel Leidert. Also,
attempt to be smarter about adding space after lists where needed.
* Adjusted normalization of person-names. The person.name.normalized
template now checks the RTF of output from person.name template
node-by-node, and does normalization only on the nodes that need
it. Also fixed normalization of email output for the metadata
comment part of the man page, such that normalization is done
before the angle brackets are added.
* Added normalization to object.title.markup.textonly mode, reverted
copyright link template in html/chunk-common.xsl to use it, and
updated a couple of places in manpages that should have already
been using it instead of object.title.markup.
* Added person.name.normalized template to cause contents of author,
editor, etc., names to be normalized. Also added normalization in
several others places in *info output that lacked it. Thanks to
Daniel Leidert.
* Properly process collabname, corpauthor, corpcredit, orgname, and
publishername before normalizing.
* Normalize corpauthor|corpcredit|orgname|publishername
* Normalize output of contrib instances.
* Handle instances of address/otheraddr/ulink in author et al in the
same way as email instances; that is, display them on the same
linke as the author, editor, etc., name.
* Don't number or link-list any Ulink instance whose string value is
identical to the value of its url attribute. Just display it inline.
* Improved handling of cases with sibling contrib, authorblurb, or
personblurb instances.
* Handle instances of authorblurb or personblurb that lack sibling
*name or email content. Also, make sure space gets properly
normalized in para and simpara within authorblurb or personblurb.
* Output linebreak before start of .RS macro in nested lists. Closes
bug #1524573. Thanks to Sam Steingold.
* Normalize space in Refsect/title output.
* Don't output punctuation between Refname and Refpurpose if
Refpurpose is empty. Also corrected handling of Refsect2/title
instances, and removed some debugging stuff that was generated in
manpages output to mark the ends of sections.
* Added new email.delimiters.enabled param. If non-zero (the
default), delimiters are generated around e-mail addresses (output
of the email element). If zero, the delimiters are suppressed.
* Reverted suppression of markup for refsect1 instances with empty titles.
* Suppressed output of .SH markup for Refsect1 instances with empty
titles.
* In manpages output, if the last/nearest *info element for
particular Refentry has multiple Copyright and/or Legalnotice
children, process them all (not just the first ones). Closes bug
1524576. Thanks to Sam Steingold for the report and to Daniel
Leidert for providing a patch.
* Made some minor fixes and clarifications to comments in the
charmap.groff.xsl file.
Params
The following changes have been made to the params code since the 1.70.1
release.
* Added reference.autolabel parameter for controlling labels on
reference output.
* Added namespace declarations to document elements for all param files.
* Updated to describe revised setup for importing index extensions.
* Added several new HTML parameters for controlling appearance of
content on HTML title pages:
contrib.inline.enabled:
If non-zero (the default), output of the contrib element is
displayed as inline content rather than as block content.
othercredit.like.author.enabled:
If non-zero, output of the othercredit element on titlepages is
displayed in the same style as author and editor output. If zero
(the default), othercredit output is displayed using a style
different than that of author and editor.
blurb.on.titlepage.enabled:
If non-zero, output from authorblurb and personblurb elements is
displayed on title pages. If zero (the default), output from
those elements is suppressed on title pages (unless you are
using a titlepage customization that causes them to be included).
editedby.enabled
If non-zero (the default), a localized Edited by heading is
displayed above editor names in output of the editor element.
* Added new email.delimiters.enabled param. If non-zero (the
default), delimiters are generated around e-mail addresses (output
of the email element). If zero, the delimiters are suppressed.
* Removed svn:executable property from many xml and xsl files on
which it had been inadvertently (CVS legacy).
* Added qanda.nested.in.toc param. Default value is zero. If
non-zero, instances of "nested" Qandaentry (ones that are children
of Answer elements) are displayed in the TOC. Closes patch 1509018
(from Daniel Leidert). Currently on affects HTML output (no patch
for FO output provided).
* Word-smithing
* Initial support of syntax highlighting of programlistings.
Template
The following changes have been made to the template code since the 1.70.1
release.
* Did some touch-ups to a few files to ensure that building from PDF
and text from reference.dbk will work.
* Added more IDs, and added support to docsrc/xsl2jref.xsl for
copying their values to output.
* Added IDs in a number of places that should have time.
Tools
The following changes have been made to the tools code since the 1.70.1
release.
* Fixed xsl-params.xsl build.
* Moved XSL stylesheets out of docsrc dir and into tools/xsl/build
* Racheted down font sizes of headings in example makefile FO output.
* Added param and attribute set to example makefile, for getting
wrapping in verbatims in FO output.
* Renamed Makefile.paramDoc to Makefile.docParam.
* Added Makefile.paramDoc file, for creating versions of param.xsl
files with doc embedded.
* Added variable to example makefile for controlling whether HTML or
XHTML is generated.
* Correctly handle cases where DocBook files have an extension other
than .xml
WordML
The following changes have been made to the wordml code since the 1.70.1
release.
* Moved XSL stylesheets out of docsrc dir and into tools/xsl/build
* Did some touch-ups to a few files to ensure that building from PDF
and text from reference.dbk will work.
* Added IDs in a number of places that should have time.
* Removed svn:executable property from many xml and xsl files on
which it had been inadvertently (CVS legacy).
|
|
Resolves PR pkg/34400 by Martin Wilke.
Pkgsrc changes:
- none
Changes since version 0.18:
===========================
Convert::ASN1 0.20 -- Tue Feb 21 18:47:43 CST 2006
Bug Fixes
* Fixed issues with decoding when calling script contains use encoding 'utf8'
* Allow zero-length timestamps to be extracted
* Fix incorrect length encoding for bitstrings
Enhancements
* Support encoding bigint's as BCD
Convert::ASN1 0.19 -- Mon Apr 18 19:40:32 CDT 2005
Bug Fixes
* Fixed reading of packets with indefinite-length encodings
Enhancements
* Add support for BCDString
|
|
|