po4a (0.22-1) UNRELEASED; urgency=low

  [Nicolas François]
  (Sgml module)
  * Fix a typo in the "keyword" tag.
    Thanks to Chris Karakas.
  * Add the DocBook's contrib and epigraph tags
  * Be stricter on the regex matching entities
  * Escape more chars in CDATA. This fixes #301335
  * Append the content of a CDATA to the current buffer because it was
    not output at the right position
  * Don't forget some {PO4A-beg/end} in the output document

  [François Gouget (fgouget@free.fr)]
  (Xml module)
  * Append the encoding attribute if it is not defined in the <?xml> tag.
  (Sgml module) 
  * Add support for translating attribute values.
  * Use a regular expression to simplify the tag kind check.
  * Assorted spelling fixes.
  * If relative, the path of included file must be considered to be relative
    to the path of the master Sgml file.
    Fixes bug #300874 on the Alioth tracker, for the Sgml module.
  * The debug option is a space separated list of channels to print
    information for. So we must split it to set $debug.
  * Check the nsgmls exit code and issue an error if it is non-zero.
    This lets us detect the case where nsgmls is missing.
  (Chooser)
  * Store '\$@' in an intermediate variable so it does not get clobbered
    before we report the plugin-load error.
  (binaries)
  * Clarify the '--option' documentation.
  * Remove unneeded imports of TransTractor::VERSION.
  (libraries)
  * Remove unneeded imports and exports of TransTractor::VERSION.
  (General)
  * Various documentation improvements
  * Implement wrappers for textdomain(), gettext() and dgettext() in
    Po4a::Common to make the dependency on Locale::gettext optional.
  * Remove unused load_config export in Po4a::Common
  * Make the Text::WrapI18N and Term::ReadKey dependencies optional

  [Jordi Vilalta]
  (Docbook module)
  * Add the missing > in <structname>

  [Martin Quinson]
  (po4a(1))
  * Document the dataflow to explain that this tool cannot be used to 
    gettextize (Closes: #313165)

 -- Martin Quinson <mquinson@debian.org>  Wed, 27 Apr 2005 15:03:10 +0200

po4a (0.21-1) unstable; urgency=low

  [Nicolas François]
  (TeX module)
  * Fix an issue with file excluded from inclusion:
    after a gettextization, the PO file contained two \input{x}.
  * Add a generic way to specify separators.  For example, this permits
    to translate each cell separately in a tabular environment.
  * Just warn instead of dying when the documentclass cannot be found
  (Man module)
  * Add a verbose option, for "po4a -v".
  * Add comments to the PO file, and fix the testsuite accordingly.
  * Remove the with-non_breaking_spaces and with-hyphen_to_minus options
    and document the transliterations performed in pre_trans and post_trans.
  * Fix an encoding issue with non-breaking spaces.
  (Po.pm)
  * Allow multiple comment lines for a PO string.
  (po4a)
  * Add support for options/aliases in the config files.
    First try ... undocumented feature.

  [Jordi Vilalta]
  (Xml module)
  * Handle the processing instructions ( <?...?> ) simply ignoring them
  (Docbook module)
  * Wrap by default
  (Po module)
  * Handle tabs when canonizing

 -- Martin Quinson <mquinson@debian.org>  Wed, 27 Apr 2005 15:03:10 +0200

po4a (0.20-2) unstable; urgency=medium

  Release critical bug fix.

  [Martin Quinson]
  * Catch errors of Term::ReadKey::GetTerminalSize so that we can build on the 
    terminal-less settings that some debian automated builder love (Closes: #300395).

 -- Martin Quinson <mquinson@debian.org>  Mon, 21 Mar 2005 10:04:59 +0100

po4a (0.20-1) unstable; urgency=low

  [Nicolas François]
  (man module)
  * Handle requests beginning by a single quote.
  * More escapes for dots and single quotes at the beginning of a line.
  * Fix some issues with the .HP macro.
  * Fix a minor issue regarding empty lines.
  * Do not reset the wrapping mode (when set by a '.nf' request) after the end
    of a paragraph.
  * Handle lines containing only spaces as empty lines.
  * Fall back to the parser when a macro follow a '.TP'.
  * The heading of a section (.SH) or subsection (.SS) can be provided on the
    line after the macro.
  * Better support for some groff escapes (\\, \.).
  * Add a limited support for "\c".
  * Some quotes could be converted to \", which starts a groff comment.
  * Fix an issue with paragraphs starting by a new line.
    (This also touch Po.pm)
  * Honor "" in quoted macro argument, which represent a single double quote.
  * When a macro argument is pushed in the output document, convert " to \(dq
    if the argument has to be quoted.
  * Handling of input line continuation (\<RET>) should not be reserved for
    macros.
  (TeX module)
  * Add a generic TeX module:
    - it tries to separate entities that can be translated on their own (i.e.
      paragraphs, but also some commands when they are located at the
      beginning or end of these entities);
    - permits to build derivated parsers (e.g. for LaTeX, but texinfo is also
      planned);
    - allows personnalization (with '% po4a: ' lines in the tex file or a class
      file);
    - handles file inclusion.
    - customization by categories of commands
      (translated/untranslated and/or separated).
    - break paragraphs at the beginning and end of environments blocks.
    - it was tested with a book and the Python documentation
  * Add a PythonDoc and a LaTex module derivated from TeX.
    - NOTE: this module will probably be removed. Use the LaTeX module
      instead.
  (Po.pm)
  * \n or \t can be preceded by an even number of backslash.
  (translations)
  * Update French program translation

  [Martin Quinson]
  (sgml module)
  * Add <option>, <refname>, <refpurpose> and <holder> to the list of
    verbatim tags to fix the second half of #280882.
    More work needed to fix the first half.
  (debian pkg)
  * Build-depend on libtext-wrapi18n-perl for the new wrapping functions

  [Yves Rütschlé]
  (Build.PL)
  * Let the 'clean' target remove po4a.log.
  (HTML module)
  * Preserve leading and trailing spaces in tag content.
  * Fix the <img> tag.
  * Translate text only if it contains some letters.
  * Add t/22-html.t
  (Po.pm)
  * Files containing nothing to translate are obviously
    completely translated (set translation state to 100%).

  [Jordi Vilalta]
  (xml module)
  * Don't search an unquoted end for comments. Closes: #291831 in Debian
  * Now the strip option is enabled by default, as suggested by Denis
  (generic)
  * Complete the catalan documentation translation.
  * Update the spanish documentation translation with some suggestions by
    Ruben Porras.
  * Updated the scripts and modules to use the new wrapping functions.
  (Common module)
  * New module that will contain common utilities.
  * Added message wrapping functions.
  (po4a)
  * Added support for language templates in config files
  (po/bin translations)
  * Added Afrikaans translation by Theuns Smuts
  * Added Czech translation by Vlastimil Skacel
  * Added German translation by Tim Fuchs, Sebastian Aust, Thorsten Tasch
    and Laura Ohrndorf

  [Danilo Piazzalunga]
  (documentation)
  * Fix some (mostly cosmetic) typos, without changing the meaning of
    anything. Examples include case changes, spelling improvements, and the
    consistent use of 'addenda' as the plural form for 'addendum'.
  * Sorry, fellow translators, for all the new fuzzies.
  (translations)
  * Regenerate po/bin/po4a.pot and po/pod/po4a-pod.pot.
  * Update the Italian program translation.
  (testsuite)
  * Updated the expected test output to the new wrapped output.
  * Added some new test cases for man pages.
  * Rewrite the @tests array construction in t/23-man.t.
  * Specify standard column size when running some tests.
  (debian/control)
  * Build-depend on libterm-readkey-perl, needed by the wrapping functions.
  (scripts)
  * Print full help when the user asks for --help, and a terse message
    otherwise.

 -- Martin Quinson <mquinson@debian.org>  Sun,  6 Mar 2005 11:44:39 +0100

po4a (0.19-1) unstable; urgency=low

  [Jordi Vilalta]
  (po4a, po4a-translate)
  * Added the -L, --localized-charset option to convert the translated
    document to the specified charset

  [Yves Rütschlé]
  (Locale/Po4a/Po.pm)
  * Fix line numbers in error messages.  Closes: #278428

  [Nicolas François]
  (man module)
  * Improved testsuite.
  * Improve handling of nested font modifiers.  Closes: #277384
  * Recognize some (probably incorrect, but usual) comment lines.
  * Do not change hyphen to minus where it's forbiden (.so, .mso and \s
    arguments).
  * Do reset the wrapping mode when using .SH
  * Fix splitting macro arguments.  Closes: #268904
  * Do not quote the macro arguments when it would result in a breakage
    (because they are already quoted, with the need to display the quotes).
  * Add support for some macros (.R .EX .EE .cs .ss), and partial support
    for others (.ce .ul .cu)
  * Add splitargs and shiftline subroutines with some code from parse. This
    permits to handle line continuations and font requests (.B, .RI, ...)
    after a .TP.
  * fix the testsuite (make check) to take last changes into account.
  (po4a-normalize)
  * Added the -M option to po4a-normalize
  
  [Martin Quinson]
  (TransTractor)
  * Allow modules to add automatic comments in the po file.
  (sgml module)
  * Make <title> verbatim so that man page generation works.  Closes: #274278
    Thanks to Sylvain Cherrier for the bug report and testing the fix.
  * Eat the comments in the prolog since they can contain some '<' and '>' 
    preventing us to find the '>' closing the prolog. Closes: #278365

  [Danilo Piazzalunga]
  * [po/bin/it.po & po/pod/it.po] Update Italian translation, and
    convert them to ISO-8859-1 for now so that generated manual pages
    also have this encoding.  Closes: #273736
  * [po/bin/it.po & po/pod/it.po] Convert PO files back to UTF-8. Thanks to
    Jordi and everybody else for fixing the charset issues.

 -- Denis Barbier <barbier@debian.org>  Wed, 10 Nov 2004 00:09:28 +0100

po4a (0.18.1-1) unstable; urgency=high

  * Urgency set to high to have a chance for 0.18 to enter testing.
    This version has been much more tested than 0.17 and many bugs
    fixed; they were not filed on the BTS because only its developers
    are currently using po4a, but 0.18 is mature enough for a larger
    audience.

  [Jordi Vilalta]
  - [Xml.pm] Improved attributes matching when there's no tag hierarchy in
    front of an attribute
  [Denis Barbier]
  - A header comment is inserted by po4a-translate with some formats,
    remove po4a version number from this comment so that test files do
    not have to be updated at every release.

 -- Denis Barbier <barbier@debian.org>  Fri, 27 Aug 2004 23:28:33 +0200

po4a (0.18-1) unstable; urgency=low

  [Jordi Vilalta]
  - [Build.PL] Ensure we run the tests before distributing a new release
  - Added encoding support (not complete by now)
  - [Xml.pm] Added the generic XML support module
  - [Dia.pm] Changed to use Xml.pm
  - [tests] Updated most tests to work with the encoding issues
  - [documentation] General improvements
  - [translation] sync to en po/bin/es.po, po/bin/ca.po and po/pod/es.po
    with small improvements suggested by Carme Cirera
  - [Guide.pm] Added Guide XML support module
  
  [Martin Quinson]
  (generic)
  - Fix several typo in messages.
    - po4a: inverting the meaning. Closes #264535 in Debian
    - po4a-updatepo: was rather poor. Closes #264537 in Debian
    - Sgml.pm: induced a perl error (not enough args for format).
      Thanks Olivier Trichet for the last one, and Danilo for the others.
  - Various documentation & messages improvements
  - [translation] Update po/bin/fr.po
  (TransTractor)
  - Do not try (and fail miserably) to create path to output file when it's
    in the current directory (also in Po.pm).
  - [addendum] change a 'while (shift @toto) {}' to a 
    'do {shift; bla} while (scalar @toto)' so that we proceed even if @toto
    contains empty strings. (Clauses: #265383) of Debian
  (Sgml)
  - stop pushline()ing empty strings since it breaks TransTractor. Also
    closes Debian's #265383. Yup, this bug is fixed twice. Slam!
  (Man)
  - Fix tests so that they stop make sure that the nf/fi bug of man is still
    there. Test that it does not come back instead.
  - Convert on the fly the groff horror \*(lqlibc5\*(rq, which stands for
    "libc5", with the quotes. Thanks to Phillipe Batailler for bringing my
    attention to this.
  - Add support for the groff builtin registers and for the ms
    "Displays and keeps" macros. This was needed to deal with the man pages
    of shadow and dpkg.
  - No groff nbsp (ie '\ ') on the last pos of the line, or groff adds an
    extra space. Thanks to Nicolas Francois for the info. 
  - Convert \- to - on the fly. The asteatic of the printed man page may
    suffer (a hyphen is different of a minus sign in ps/pdf), but makes
    translator's life easier. Thanks to Nicolas Francois for the expertise.
  - Stick to groff_man(7) intead of man(7), and consider that when IP is
    given only one argument, that's the designator (which we have to
    translate) instead of the column indentation. Thanks Francois.
  - Deal properly with '\ ' in macro arguments. Ie, stop changing 
    '.BI -a\  addresses' to '.BI "-a addresses"' (but to .BI "-a " addresses)
  - Do not eat \ at the end of the line (and put the next one on the same
    line) when we're not on a macro definition line.
  (po4a)
  - Kill the code checking that the first argument contains no colon, since
    the filename can contain colons. This triggers false positives here.
    Thanks to Julien Louis for reporting. (Closes: #265684).

  [Danilo Piazzalunga]
  - [po/bin/it.po & po/pod/it.po] Add Italian translation

  [Carme Cirera]
  - [po/pod/ca.po] Add Catalan translation

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Wed, 25 Aug 2004 16:10:03 -0000

po4a (0.17.2-1) unstable; urgency=low

  [Martin Quinson]
  - new script: msgsearch to extract some messages from a po file. That's a
    generalization of msggrep allowing you to use OR between different
    categories. msgselect is "reserved" by gettext author to do the same using
    the SQL syntax in input. I use the LDAP one (with Perl RE ;).
  - [sgml] add refentry to verbatim so that no spaces are added.
  - [sgml] do not indent neither add superious spaces around verbatim tags
    Those two should Closes #262739 (in Debian).
  - [sgml] Allow entities def. to contain '>'. Closes #262735 (in Debian)
  - [documentation] Overhaul of po4a(7)
  - [documentation] Various pod fixup
  - TransTractor and Po mkdir the path to where they are asked to write
    something if it does not exist. Closes #263297 (in Debian)
  - [addendum] Allow extra space after the semi colon separating fields in
    headers. Closes #263299 (in Debian, provided that I understood the repport)
  - [sgml] Allow %entities; in prolog, even if they are the evil incarned on
    earth. Damn it, it wasn't easy. Fixes Alioth's #300710.
  - [sgml] Detect when the included files do not exist, and spit the right
    error message
  - [translation] keep po/bin/fr.po in sync with the code, despite my own
    effort to fuzzy the strings (I mean improve them, of course)

  [Jordi Vilalta]
  - [documentation] Further pod and english fixup
  - [translation] Complete the spanish translation of the documentation
  - Non-intrusive modifications to Po.pm and TransTractor.pm to help support
    the encoding options in the near future
  - [translation] sync to en po/bin/es.po and po/bin/ca.po

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Sat,  7 Aug 2004 16:18:53 -0700

po4a (0.17.1-1) unstable; urgency=low

  [Jordi Vilalta]
   - sync to en po/bin/es.po and po/bin/ca.po
   - Further improvement of the building mecanism
   - [po/pod/es.po] Add Spanish translation

  [Martin Quinson]
   - sync to en po/bin/fr.po
   - turn back my email address to tuxfamily instead of my professional one
   - Cleanups of the building mecanism
   - Rephrase some error messages here and there (sorry for keeping fuzzing
     the translation ;)
   - fix several brain dead errors in po4a (I swear I tested version 0.17 !)
   - add a threshold option to po4a(1). If we cannot set it from the config
     file, at least we can set it from the command file.
   - Fix Man module:
     - add support for the .na and .nh roff macro (ignored). Closes alioth's
       #300845, and allows to tackle apt-proxy(8).
     - .nf stops wrapping; .fi starts it again. The contrary was done.

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Tue, 20 Jul 2004 18:54:11 -0700

po4a (0.17-1) unstable; urgency=low

  * Introduction of the po4a(1) program.
    - have a configuration file instead of complex command line arguments
    - updates po files and translations in one shoot
    - allows to use the same pot file for different documents format [easily]

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Thu, 15 Jul 2004 21:14:13 -0700

po4a (0.16.4-1) unstable; urgency=low

  Cleaner build mecanism
  Bugs fixes (new tags for Sgml, various glitches)

  Jordi Vilalta
  * New build mecanism based on Module::Build instead of the
    deprecated MakeMaker
  * [po/pod/Makefile] Allow to handle more than one language
  * [po/bin/Makefile] Various cleanups
  * [TransTractor.pm] Fix a by one offset in the line number reference
  * [tests] Fix the false alarm resulting of previous change

  Michael Wiedmann
  * [Sgml.pm/docbook]
    translate += revremark secondary tertiary editor othername
    indent += bridgehead
    ignore += keywordset keyword
  * [TransTractor.pm] Fix two typos

  Martin Quinson
  * [Sgml.pm/docbook]
    translate += synopsis
    indent += reference shortcut
  * Build process (lintian/linda clean again)
    Call the scripts with "perl ../name" during build/test since
      Module::Build fails to chmod +x @scripts.
    Compress the translated manpage at full power to respect debian policy
  * [debian/control]
    Put myself as maintainer (not changing the uploaders)
    Fix my email address for consistancy with my other packages
    
 -- Martin Quinson <martin.quinson@tuxfamily.org>  Thu, 15 Jul 2004 16:57:48 -0700

po4a (0.16.3-1) unstable; urgency=low

  Jordi Vilalta
  * [po/bin/es.po] Various improvements 
  * [po/bin/ca.po] New translation
  
 -- Martin Quinson <martin.quinson@tuxfamily.org>  Sun, 30 May 2004 15:36:33 -0700

po4a (0.16.2-1) unstable; urgency=low

  * Makes Pierre happy and do not distribute the debian files within the
    regular archive, but in the diff.gz.
  * [Sgml.pm] 
    - Add <simpara> tag. this closes alioth's #300714.

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Wed, 26 May 2004 11:48:16 -0700

po4a (0.16.1-1) unstable; urgency=low

  Martin Quinson
  * Make sure --version option of all binary works
  * [po/bin/fr.po] back to 100%

  Jordi Vilalta
  * [po/bin/es.po] back to 100%

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Wed, 26 May 2004 10:39:16 -0700

po4a (0.16-1) unstable; urgency=low

  SGML should work. Without source change, even for (simple) XML.
  Addition of a Dia module by Jordi Vilalta.
  
  Martin Quinson
  * [all binaries]
    - add a -o/--option flag allowing to pass options to the format plugin
  * [Sgml.pm] 
    - Try to handle XML documents, with a big fat warning that this may fail,
      and that no bug should be reported if it does not work.
      Thanks to Jordi Vilalta for suggesting that.
    - New options to add tags to the mechanism without modifying the code.
    - Detect non-master files and report them properly. This was alioth's
      #300591 and savannah's #6438.
    - Put verbatim tags in their own msgid to avoid issues with
      mixing wrapped and non-wrapped. This was savannah's #7155.
    - Make a gentle error message when SGMLS.pm was not found.
    - Issue warnings ("hello, user. This is a feature") when msgid is
      skipped because it contains an entity alone, or because it contains
      only tags. The translation of those is always the msgid itself. 
      Thanks Jordi for falling into that trap ;)
    - Detect msgid containing one entity and spaces, and skip them also.
    - Add a 'include-all' option preventing the optimization described on
      two previous items.
    - Permit the translation of entity definition (not for file including
      ones, but for the rewrite ones). Thanks Jordi for the hint.
    - Add missing tags (articleinfo, which was savannah's #8475, and some more)
  * Fix a bunch of typos reported by Francois Gouget (thanks). 
    This was savannah's #7152.
  * [t/data-02/man.po] back to 100% success on tests
    Reformatting to match what we get. This does not impact the semantic of
    the file, and I believe the change is due to gettext.
  * [t/data-20/*; t/20-xml.t] New test about SGML plugin (when used in XML
    mode since it tests both modes at once)
  * [po/bin/fr.po] Complete translation. 
    [po/pod/fr.po] Complete translation of binaries man page.
    I reviewed the strings in the process and fixed some of them.

  Denis Barbier
  * Call 'xgettext -L Perl' instead of '-L c' to extract messages from
    Perl scripts.  
  * Remove trailing newlines from gettext messages.

  Jordi Vilalta
  * [po/bin/es.po] Add Spanish translation
  * [Dia.pm] New module for the diagrams saved by dia program
  * [t/21-dia.t  t/data-21] Relevant tests

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Tue, 25 May 2004 10:55:25 -0700

po4a (0.15.4-2) unstable; urgency=low

  * First official upload.  Closes: #176492
  * Fix buglets in doc/po4a.7.pod
  * Replace prefix variable by DESTDIR in debian/rules and po/bin/Makefile
    to follow GNU usage.
  * As told in section 3.1 of the Perl policy, man pages must be installed
    under section 3pm, not 3perl.
  * In debian/rules, remove the useless pods target, 'make -C po' does the
    job.
  * Make debian/rules much lighter by processing and running Makefile.PL
  * Normalize po4a-normalize, replace --help-fmt command-line flag by
    --help-format to comply with other po4a tools.
  * In Locale::Po4a::Chooser, all available formats were loaded, the
    requested one is now dynamically loaded.
  * In Locale::Po4a::Pod, remove declarations of functions when they
    are inherited from Locale::Po4a::TransTractor.
  * Some newlines were missing with the POD format, because trailing
    newlines were removed in Locale::Po4a::Pod, and some (but not all)
    were added in Locale::Po4a::Po.  These changes are removed, and
    po4a-normalize does no more lose newlines on POD files.

 -- Denis Barbier <barbier@debian.org>  Wed, 24 Mar 2004 22:33:12 +0100

po4a (0.15.4-1) unstable; urgency=low

  * Small fixup to the Sgml.pm
    move <command> to the ignore list to avoid sub-sentence splitup.
    
 -- Martin Quinson <martin.quinson@tuxfamily.org>  Wed,  12 Nov 2003 10:51:59 +0100

po4a (0.15.3-2) unstable; urgency=low

  * Fix lintian issues:
    - Bump standard-version
    - Versionned builddep on debhelper, add debian/compat

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Mon,  10 Nov 2003 14:03:37 +0100

po4a (0.15.3-1) unstable; urgency=low

  * Fix lintian issues:
    debian/control: typo and line too long
    doc/po4a.7.pod: add a NAME section
  * Fix Sgml.pm:
    - apply patch from Francois Gouget to support more docbook tags. Closes
      Savannah's #2353. 
      Add some more tags to parse a sgml file I used to fix the following:
    - Fix references for composite files. Closes Savannah's #6439.
      Do report the right file and line number for composite files.

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Mon,  10 Nov 2003 13:38:38 +0100

po4a (0.15.2-1) unstable; urgency=low

  * Fix savannah's #5139: Bad quoting.
    Quoting is a little nightmare, but I added the provided faulty example
    in the tests, and it is fixed now.

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Fri,  7 Nov 2003 15:59:42 +0100

po4a (0.15.1-1) unstable; urgency=low

  * The long awaited version.
   
  * Fix savannah's #4975: french man page is outdated.
    - This revealed to be a grave bug in the tool itself, leading to the use
      of the fuzzy strings in translation.
    - t/10-discard-fuzzy.t is a test to make sure this bug will never come back.
  * Fix savannah's #4976: po4a.7 outdated.
    - Update the man page to reflect the new option names.
  * Fix the small glitches which made the tests to fail. 
    - Now, the testsuite is more complete, and all tests success on my box.
    - README.tests is a bit of documentation on how to report make test
      failure.
 
 -- Martin Quinson <martin.quinson@tuxfamily.org>  Fri,  7 Nov 2003 13:43:17 +0100

po4a (0.15) unstable; urgency=low

  * The "Let's iritate the users by changing the option names" version.
  
  Major changes:
  * Change and unify all option names for the scripts.
  
  Minor changes:
  * Document a bit more the scripts.
  * Update copyright year for scripts (FIXME: not lib).

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Tue, 11 Feb 2003 23:53:11 +0100

po4a (0.14) unstable; urgency=low

  * The "One step outside Debian" version.
  
  * A proper Perl package is now build, thanks to Makefile.PL
    Next step: inclusion on CPAN ;)
  * Preliminary testsuite:
    - Every class is compilable
    - Man.pm works (test number 4 is known to fail, because diff don't work well on po files).
    - addendums work
    Still to do: other modules.
  * Fix po/pod/Makefile, to avoid tons of warnings and reflect the lib/ directory change.
    [Denis Barbier]
  * Updated documentation, thanks to Philippe for its review. One day,
    addendums will be usable...
  * Use warnings in all file
  * Add a 'no-wrap' flag to all msgid which must not be wrapped by
    po4a. This tag is valid for gettext and will be preserved by
    tools. It means something else for gettext, but this other meaning seems
    useless to me, and both uses can coexist. 
  * Man.pm:
    - don't split indented paragraphs on several msgids.
    - don't pretend we handle nested font modifier when we don't

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Fri,  7 Feb 2003 08:46:23 +0100

po4a (0.13.6) unstable; urgency=low

  * po4a-updatepo reports the status of the file after the update
  * Man.pm: handle UC and AT macro

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Thu, 23 Jan 2003 15:20:26 +0100

po4a (0.13.5) unstable; urgency=low

  * Make the placement of the addendum verbose when -v is passed to
    po4a-translate, thanks to the crash tests from Philippe ;)
  * More documentation improvement, thanks to the review from Philippe.

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Thu, 23 Jan 2003 09:08:14 +0100

po4a (0.13.4) unstable; urgency=low

  * Really fix the problem I though to fix in 0.13.2

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Wed, 22 Jan 2003 10:34:38 +0100

po4a (0.13.3) unstable; urgency=low

  * Man.pm: explain why we refuse to process pages generated from pod or
    sgml, document processed by db2man.xsl can be processed, since the 
    XML module of po4a isn't done yet.
  * gettextization: The fact that the original and the translated files
    don't have the same number of entries isn't fatal anymore, so that
    the user can see where there is a document structure disparity.
  * Fix problems in po4a.7.pod, thanks to Philippe Batailler.

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Wed, 22 Jan 2003 08:42:30 +0100

po4a (0.13.2) unstable; urgency=low

  * TransTractor.pm: don't check for the options passed to translate,
    since I fail to make it work with the Man.pm

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Fri, 17 Jan 2003 08:39:53 +0100

po4a (0.13.1) unstable; urgency=low

  * Sgml.pm:
    - don't translate the footnotes separatly, since it would imply to split
      the sentence containing them.
    - put all the author description (name+surname+email+...) in the same
      msgid to ease the translator work.
      
  * Makefiles:
    - implement a stats target in po/

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Sun, 12 Jan 2003 16:49:52 +0100
 
po4a (0.13) unstable; urgency=low

  * The "housekeeping is good when you want to invite people home" version.
  
  * TransTractor: Internals cleanup: 
    - translate_wrapped() don't exist anymore, and translate() take extra
      arguments to specify if we want to wrap.
    - For internals data in the object, transtractor now use TT (it used to 
      use DOC).
    - Set the package version only in this file, and not in all.
  * Po.pm:  Internals cleanup: 
    - push_wrapped() and gettext_wrapped() disapeared also.
  * All modules: Adapt to last changes in TransTractor.pm
  * New module: Chooser.pm  
    This is not a new format, but functions to manage all formats in the
    same place. 
    Before, when I added a module, I had to change all binaries to take it
    into account.
    Now, all binaries use this module to access format modules.
  * Man.pm: cosmetic changes, to make it readable by others.
  * Sgml.pm: 
    - New dtd: docbook. 
    - Should work even in case of conditional inclusion (string references in
      po files will be wrong in that case).

    - Generated source is better looking

    - ups, added "use strict;" ;)
    - Don't use SGMLS::Output anymore. This is an old piece of crap producing
      tons of warnings when used under perl -w.
    - remove debugging output
  
 -- Martin Quinson <martin.quinson@tuxfamily.org>  Sun, 12 Jan 2003 16:49:52 +0100

po4a (0.12) unstable; urgency=low

  * Rename po4a-identity to po4a-normalize, since it do normalize the
    source document.
  * We now have a decent documentation in po4a(7)
  * Several small bug and glitches fix all over there.
  * New module: SGML
    - This is the long awaited sgml module !
    - So far, it can handle only the debiandoc dtd but extending it to other
      ones should be quite easy. 
    - For now, this adds a strict dependence on libsgmls-perl and sp since
      I didn't implement the check for existing libraries, like debconf does 
      for curse.

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Thu,  9 Jan 2003 20:53:26 +0100

po4a (0.11) unstable; urgency=low

  * Tons of bug fixes: 
    - Pod.pm shouldn't fail anymore
    - Man.pm now fail on only 3% of the pages installed on my box (because
      they are too cleaver with roff for us)
    see documentation and release note for more details
  * Polishing:
    - More argument checking to detect problems
    - Redo some parts of the documentation
    - Begin the translation of documentation to french
  * New module:
    - KernelHelp: The help messages associated with each kernel compilation 
      option

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Wed, 25 Dec 2002 19:15:28 +0100

po4a (0.10.3) unstable; urgency=low

  * Move lib/ to Locale/Po4a/ so that pod translations can be builded
    without build-depending on ourself
  * Add a new script po4a-identity usefull to debug po4a modules (by
    prooving they are idempotent)
  * Fix the way the bold and italics are handeled in man pages (translator
    are only faced to POD sequence B<blabla> and I<blibli>, but this was
    broken and did not work in all cases).
  * updatepo accepts non-existent po files, so that you can bootstrap a po
    file for n documents without gettextize each one and using msgcat to
    merge the results.
  * Add a Copyright and License section in all man pages
  * Fix a bug in the handling of 'pod' and 'back' commands.

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Wed, 18 Dec 2002 08:08:45 +0100

po4a (0.10.2) unstable; urgency=low

  * Fix a bug reported by Julien Louis: Locale::Po4a::Man was not included 
    in po4a-gettextize.
  * Other bug reported by Julien Louis: indented paragraph in man pages
    shouldn't be wrapped.
  * Fix the generation of binary po files, and put the french translation.

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Fri, 13 Dec 2002 07:51:00 +0100

po4a (0.10.1) unstable; urgency=low

  * Fix a bug reported by Julien Louis: All strings containing '\n' where
    not translated.

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Thu, 12 Dec 2002 16:25:52 +0100

po4a (0.10) unstable; urgency=low

  * New name, one more code reorganization. Having more than one package
    implies to dupplicate code in the binaries. Ie, the difference between
    pod-gettextize and man-gettextize is only the module to load.
    I don't want to maintain the same code N times.
  * Po.pm, TransTractor.pm:
    - bug fixes
  * Man.pm:
    - first release.
    - seems ok to me (it fails on unknown macro, and shouldn't change the
      cat result).

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Wed, 11 Dec 2002 16:55:20 +0100

po-pod (0.9) unstable; urgency=low

  * Use the new Locale::Po4a::TransTractor as base of the parser/extractor.

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Fri, 29 Nov 2002 14:23:04 +0100

po-pod (0.8.4) unstable; urgency=low

  * Depend on the newly created liblocale-po4a-perl, and do not provide
    Po.pm anymore.

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Tue, 19 Nov 2002 17:53:37 +0100

po-pod (0.8.3) unstable; urgency=low

  * pod-gettextize:
    - output file defaults to standard output.
    - document the fact that all translations found during the merge are
      marked fuzzy, and why. 

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Tue, 19 Nov 2002 17:22:58 +0100

po-pod (0.8.2) unstable; urgency=low

  * Remove {read,write} to filehandle to avoid problems when running under
    UTF8 locales.
  * Po.pm: when calling the regular gettext, prefix it with
    Locale::gettext::, so that we get the function we are looking for, and
    not the one defined in this package.

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Mon, 18 Nov 2002 15:08:43 +0100

po-pod (0.8.1) unstable; urgency=low

  * pod-translate:
    - when a translation is discarded, remove the old generated file.

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Mon, 18 Nov 2002 09:22:55 +0100

po-pod (0.8) unstable; urgency=low
  
  * Po.pm:
    - New functions: gettext_stats, and gettext_stats_clear. Be careful
      (and read the doc ;), it's not the status of the file, it's the
      summary of its recent use through the gettext method.
    - New function: wrapped_gettext(), wrapped_push(), which do like 
      gettext() and push(), but assumes that whitespaces in msgid and 
      msgstr are not significant (and modify them).
  * pod-updatepo: INCOMPATIBLE INTERFACE CHANGE!
    - now accepts several pod files (to put their translation in only one
      file per language).  
  * pod-translate:
    - reports how much is each file translated when running verbose.
    - New option: -k set the threshold under what the translation is
      discarded. Defaults to 80. 
    - New option: -w set the width to which the resulting file should be
      wrapped. Defaults to 76.
    - New option: -a|--add-file is implemented (see man page). It's not
      specific to pod files, and should work for all modules, provided
      that they keep the file to output in a @ of lines.
  * Packaging:
    - Perl modules are now stored under /usr/share, and not /usr/lib
      because they are not arch-dependent.
    - Manpages are now installed only with dh_installman, so that we don't  
      get them twice.
    - The comments in source also says that code is GPL'ed
  * All binaries and modules:
    use (regular) gettext.pm to localize the messages ;)

 -- Martin Quinson <martin.quinson@tuxfamily.org>  Sun, 17 Nov 2002 02:09:06 +0100

po-pod (0.7) unstable; urgency=low

  * Initial release.

 -- Denis Barbier <barbier@debian.org>  Fri, 22 Mar 2002 23:47:06 +0100

