Upstream changes:
1.36 Wed 7 Jan 2009
- Fixing missing feature reported by H.Merijn Brand
1.35 Wed 17 Dec 2008
- Production release for changes in 1.34_01
- No other changes
1.34_01 Wed 19 Nov 2008
- Improving sub-classability by passing the indent level through
to the ->_write_scalar method.
1.33 Thu 24 Jul 2008
- Export Load and Dump functions by default.
Pkgsrc changes:
o Add PERL5_REQD+= 5.8.3
Upstream changes:
version: 0.30
date: Sun Jan 11 12:53:55 IST 2009
changes:
- Plug a leak in Load
- More efficient intermediate structure allocation
Upstream changes:
0.05 Mon Dec 15 2008
- skip some tests when missing English dictionary
- added license
0.04 Sun Dec 14 2008
- patch by Yanick Champoux with three changes :
- lang option
- cached Text::Aspell object
- made suggestions() context-aware
Pkgsrc changes:
o Add PERL5_REQD+=5.8.0
Upstream changes:
0.8 2008/12/07
- Added support for ddns-rev-name, ddns-txt and ddns-fwd-name
statements, based on patch by Franck Joncourt.
Upstream changes:
0.30 - 2008-11-26
* Remove the "wrapper" export, its name is too generic and clashes with a lot
of existing code. It's a negligible amount of sugar.
Pkgsrc changes:
o Add some cludges to tell pkgsrc this is really version 1.61, not 1.61a
(the module version is 1.61)
Upstream changes:
Changes for version 1.61 (Dec 29, 2008)
------------------------
- Fix bugs in locale operations for format_price (thanks Moritz Onken)
- Fix documentation in format_bytes (rt # 42036)
- Enable warning when format_bytes called with numeric precision not hash
Pkgsrc changes:
o Adjust dependencies, including reshuffling to match contents
and order in META.yml
o Require perl version 5.8, also according to META.yml
Upstream changes:
4.63 Sat Jan 3 12:46:15 EST 2009
[DOCUMENTATION]
- Improve docs for writing your own constraints (girlwithglasses)
4.62 Sat Jan 3 12:10:14 EST 2009
[DOCUMENTATION]
- Fix typo in ConstraintsFactory docs (Geraint A. Edwards)
- Clarified docs for get_filtered_data (Lisa Hagemann)
- Clarify that 'field_filter_regexp_map' can take coderefs as
values (Ron Savage)
[INTERNALS]
- Better diagnostics when load_profiles fails (Thoralf Klein)
- Improved portability of t/untaint.t (Alexandr Ciornii)
- Make some tests conditional on Date::Calc being installed (Frank Wiles)
Omega 1.0.10 (2008-12-23):
build system:
* This release now uses newer versions of the autotools (autoconf 2.62 ->
2.63; automake 1.10.1 -> 1.10.2). The newer autoconf fixes a regression
in autoconf 2.62 (and so Omega 1.0.7) with detecting the endian-ness of some
platforms.
Omega 1.0.9 (2008-10-31):
documentation:
* docs/overview.html: Document HTML parsing a bit, including robots
meta and htdig_noindex.
omega:
* omega: Catch std::exception and report what its what() method returns.
* omega: Remove undocumented and non-functional support for numeric sorting
via CGI parameter SORT=#<slot> (SORT=<slot> works as before).
build system:
* configure: Sync warning flag handling changes from xapian-core to eliminate
many warnings from GCC 4.3.
Omega 1.0.8 (2008-09-04):
documentation:
* Fix a few typos and improve wording in a few places.
indexers:
* omindex:
+ If the character encoding is specified using <meta http-equiv=...> in an
HTML document then reparse the document if it isn't the encoding we're
already using so that any preceding <title> is converted correctly
(bug#292).
+ Convert text from meta tag parameters to UTF-8 (bug#293).
+ Handle <meta charset="..."> (new in HTML 5).
+ Fix bug in HTML tag parameter parsing which was probably just a small
performance penalty in real world cases, but could perhaps result in
parsing bogus extra parameters in carefully contrived situations.
portability:
* Add missing <signal.h>, noted on FreeBSD by Henrik Brix Andersen.
Xapian-core 1.0.10 (2008-12-23):
API:
* Composing an OP_NEAR query with two non-term subqueries now throws
UnimplementedError instead of AssertionError (in a --enable-assertions build)
or leading to unexpected results (otherwise). This partly addresses bug#201.
* Using a MultiValueSorter with no values set no longer causes a hang or
segmentation fault (but it is still rather pointless!)
matcher:
* If we're using values for sorting and for another purpose, cache the
Document::Internal object created to get the value for sorting, like we do
between other uses.
flint backend:
* If the disk became full while flushing database changes to disk, the
WritableDatabase object would throw a DatabaseError exception but be left in
an inconsistent state such that further use could lead to the database on
disk ending up in a "corrupt" state (theoretically fixable, but no tool
to fix such a database exists). Now we try to ensure that the object is
left in a consistent state, but if doing so throws a further exception, we
put the WritableDatabase object in a "closed" state such that further
attempts to use it throw an exception.
* Create the lockfile "flintlock" with permissions 0666 so that the umask is
honoured just like we do for the other files (previously we used 0600).
Previously it wasn't possible to lock a database for update if it was
owned by another user, even if you otherwise had sufficient permissions via
"group" or "other".
* Fix garbled exception message when a base file can't be reread.
quartz backend:
* Fix garbled exception message when a base file can't be reread.
remote backend:
* xapian-tcpsrv and xapian-progsrv now accept -w as a short form of --writable,
as was always intended.
build system:
* This release now uses newer versions of the autotools (autoconf 2.62 ->
2.63; automake 1.10.1 -> 1.10.2).
documentation:
* INSTALL: Add new paragraphs about HP's aCC and IRIX (adapted from footnotes
in PLATFORMS).
* PLATFORMS: HP testdrive has been shut down, so all mark all those machines as
"no longer available". Update atreus' build report to 1.0.10.
* docs/queryparser.html: Add link to valueranges.html.
examples:
* delve: Add missing "and" to --help output. Report termfreq and collection
freq for each term we're asked about.
portability:
* Fix to build with GCC 4.4 snapshot.
Xapian-core 1.0.9 (2008-10-31):
API:
* Database::get_spelling_suggestion() is now faster (15% speed up for parsing
queries with FLAG_SPELLING_CORRECTION set in a test on real world data).
* Fix OP_ELITE_SET segmentation fault due to excess floating point precision
on x86 Linux (and possibly other platforms).
* Database::allterms_begin() over multiple databases now gives a TermIterator
with operations O(log(n)) rather than potentially O(n) in the number of
databases.
* Add new Database methods metadata_keys_begin() and metadata_keys_end() to
allow the complete list of metadata in a database to be retrieved (this
API addition is needed so that copydatabase can copy database metadata).
testsuite:
* Remove the cached test databases before running the testsuite.
* apitest: Fix cursordelbug1 to work on Microsoft Windows (bug#301).
* apitest,queryparsertest: Skip tests which fail because the timer granularity
is too coarse to measure how long the test took. In practice, this is only
an issue on Microsoft Windows (bug#300 and bug#308).
matcher:
* Adjust percent cutoff calculations in the matcher in a way which corresponds
to the change to percentage calculations made in 1.0.7 to allow for excess
precision.
* Query::MatchAll no longer gives match results ranked by increasing document
length.
flint backend:
* xapian-compact: Fix crash while compacting spelling table for a single
database when built with MSVC, and probably other platforms, though Linux
got lucky and happened to work (bug#305).
build system:
* configure: Disable -Wconversion for now - it's not useful for older GCC and
is buggy in GCC 4.3.
* configure: Set -Wstrict-overflow to 1 instead of 5, to avoid unreasonable
warnings under GCC 4.3.
documentation:
* Minor improvements to API documentation, including documenting the
XAPIAN_FLUSH_THRESHOLD environmental variable in WriteableDatabase::flush()
(bug#306).
* valueranges.html: Fix typos in example code, and drop superfluous empty
destructor from ValueRangeProcessor subclass.
* HACKING: Several improvements.
examples:
* copydatabase: Also copy user metadata.
Xapian-core 1.0.8 (2008-09-04):
API:
* Fix output of RSet::get_description
testsuite:
* Report subtotals per backend, rather than per testgroup per backend to make
the output easier to read.
flint backend:
* Fix WritableDatabase::add_document() and replace_document() not to be O(n*n)
in the number of values in the new document.
* Fix handling of a table created lazily after the database has had commits,
and which is then cursored while still in sequential mode.
* Fix failure to remove all the Btree entries in some cases when all the
postings for a term are removed. (bug#287)
* xapian-inspect: Show the help message on start-up. Correct the documented
alias for next from ' ' to ''. Avoid reading outside of input string when it
is empty. (bug#286)
quartz backend:
* Backport fix from flint for WritableDatabase::add_document() and
replace_document() not to be O(n*n) in the number of values in the new
document.
build system:
* configure: Report bug report URL in --help output.
* xapian-config: Report bug report URL in --help output.
* configure: Fix deprecation error for --enable-debug=full to say to instead
use '--enable-assertions --enable-log' not '--enable-debug --enable-log'.
documentation:
* valueranges.html: Expand on some sections.
examples:
* quest: Fix to catch QueryParserError instead of const char * which
QueryParser threw in Xapian < 1.0.0.
* copydatabase: Use C++ forms of C headers. Only treat '\' as a directory
separator on platforms where it is. Update counter every 13 counting up to
the end so that the digits all "rotate" and the counter ends up on the exact
total.
portability:
* Eliminate literal top-bit-set characters in testsuite source code.
2008-07-05 Redland Version 1.0.8 Released
Updated to use [1]Rasqal 0.9.16 (from 0.9.15)
Updated to use [2]Raptor 1.4.18 (from 1.4.16)
Added a 'trees' indexed in-memory storage
Improvements to low-memory and other failures of resource allocation
API additions and changes to concepts, parser and serializer classes.
Fixed Issue [3]0000256
NOTE: The next release of redland will NOT include raptor and rasqal in
the tarball, they will be separate download dependencies.
See the [4]1.0.8 Release Notes for the full details of the changes.
2008-07-05 Rasqal Version 0.9.16 Released
WARNING: ABI AND API CHANGED in this release. Rasqal 0.9.16 is
incompatible with 0.9.15.
Added a rasqal_world object used for all constructor functions
Removed deprecated functions and macros
Fixed some memory leaks and made some low-memory resiliance fixes
Query result sets can be read/written from sparql XML results format
Improved error syntax error reporting
See the Raptor 0.9.16 Release Notes for the full details of the
changes.
iso-codes 3.5.1
---------------
Tobias Quathamer <toddy@debian.org>
Fri, 2 January 2009
[ ISO 4217 translations ]
* Dutch by Freek de Kruijf (TP)
* Indonesian by Erwid M Jadied (TP)
* Vietnamese by Clytie Siddall (TP)
[ ISO 15924 translations ]
* Indonesian by Erwid M Jadied (TP)
* Traditional Chinese by Wei-Lun Chao (TP)
[ ISO 639 translations ]
* Vietnamese by Clytie Siddall (TP)
* Asturian by Marcos Alvarez Costales (TP)
[ ISO 3166 translations ]
* Vietnamese by Clytie Siddall (TP)
iso-codes 3.5
-------------
Tobias Quathamer <toddy@debian.org>
Wed, 3 December 2008
[ General ]
* Add note about missing file iso_3166.tab in README. Closes: #498367
[ ISO-639-3 ]
* Update to 2008-11-10
[ ISO-4217 ]
* Replace acronym "SDR" with "Special Drawing Rights"
[ ISO-3166 translations ]
* Portuguese by Miguel Figueiredo
* Simplified Chinese by LI Daobing (TP)
* Indonesian by Andhika Padmawan (TP)
* Irish by Kevin Scannell (TP)
* Korean by Changwoo Ryu (TP)
* Finnish by Tommi Vainikainen (TP)
* Dutch by Freek de Kruijf (TP)
* Estonian by Tõivo Leedjärv
* Occitan correction by Yannick Marchegay. Closes: alioth#311228
* Polish by Łukasz Paździora. Closes: #505898
* Esperanto by Edmund GRIMLEY EVANS (TP)
[ ISO-3166-2 translations ]
* Finnish by Tommi Vainikainen (TP)
* French completed by Christian Perrier
* Occitan correction by Yannick Marchegay. Closes: alioth#311229
[ ISO-639-3 translations ]
* French updated by Christian Perrier
* Occitan correction by Yannick Marchegay. Closes: alioth#311231
[ ISO-639 translations ]
* Simplified Chinese by LI Daobing (TP)
* Italian by Milo Casagrande (TP)
* Finnish by Tommi Vainikainen (TP)
* Dutch by Freek de Kruijf (TP)
* Occitan correction by Yannick Marchegay. Closes: alioth#311230
* German completed by Tobias Quathamer
* Esperanto by Edmund GRIMLEY EVANS (TP)
[ ISO-4217 translations ]
* Occitan correction by Yannick Marchegay. Closes: alioth#311232
* German completed by Tobias Quathamer
[ ISO-15924 translations ]
* Occitan correction by Yannick Marchegay. Closes: alioth#311227
Changes in 0.14.1:
------------------
* Fixed some LTR issues, more remain on bug #563559 (Shaun McCance)
* chmod +x gnome-doc-{tool,prepare} on configure, #557732 (Christian Persch)
* Symlink non-localized figured to C figures, #557227 (Christian Persch)
* Updated translations:
ar (Khaled Hosny)
ja (Mitsuya Shibata)
Data::HexDump - A Simple Hexadecial Dumper
DESCRIPTION
Dump in hexadecimal the content of a scalar. The result is returned in a
string. Each line of the result consists of the offset in the
source in the leftmost column of each line, followed by one or more
columns of data from the source in hexadecimal. The rightmost column
of each line shows the printable characters (all others are shown
as single dots)
Pkgsrc changes:
o Apply fix from http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=470250
to prevent this module from looping on input "words" longer than
the current wrap coloumn. Problem also reported upstream via
CPAN's RT system.
Upstream changes:
version: 0.29
date: Tue Nov 11 22:57:07 PST 2008
changes:
- Check SvNIOK when dumping and format if quotes when it's a string that looks
like a number
- Parse plain scalars as numbers when they look like numbers
- Load nulls as newSV(0) instead of &PL_sv_undef to avoid "Modification of
non-creatable hash value attempted" errors
version: 0.28
date: Mon Jun 23 15:23:24 PDT 2008
changes:
- Apply UTF8 patch supplied by KLEINJ in rt.cpan#36734
Changelog:
0.606 Wed Dec 3 00:09:34 GMT 2008 <joe@kafsemo.org>
- Ensure META.yml spec version matches URL.
0.605 Mon Dec 1 23:01:21 GMT 2008 <joe@kafsemo.org>
- Use MIT license, formalising David Megginson's original
("No warranty. Commercial and non-commercial use freely
permitted.").
- Fix from Yanick Champoux for dataElements namespaces (#41359).
version 2.0.15 (2008-12-01):
* Additional translations (see po/ChangeLog).
* Add missing G_BEGIN_DECLS/G_END_DECLS for C++ support
* Fix feature request #2101451 by removing the sub-menu
of the context menu as any other in-line spell checker does.
* Fix feature request #1523881, #1643622 and #2054637
by adding a Language selector sub-menu.
* Fix feature request #1362304 by fixing docs/Makefile.am
to install gtkspell.devhelp so that it shows in devhelp
Pkgsrc changes:
o Change to use Module::Build
Upstream changes:
0.99 October 03 2008
- Now can exclude some paths from the comparison:
- http://rt.cpan.org/Ticket/Display.html?id=39705
0.98 September 13 2008
- Added the LICENSE section to the POD (Kwalitee).
- Added the "use warnings" (Kwalitee).
- Added the "Repository URL" on the resources page.
Pkgsrc changes:
o Adjusted dependencies to fit the new requirements.
Upstream changes:
0.52 - 2008-11-19
- Fix spelling of QuoteCharacter
0.51 - 2008-11-19
- Added QuoteCharecter parameter to new() to control quoting of
attributes (perigrin)
- Added Tests and Docs
This module has a very simple task - to be a base class for PerlSAX
drivers and filters. It's default behaviour is to pass the input directly
to the output unchanged. It can be useful to use this module as a base class
so you don't have to, for example, implement the characters() callback.
The main advantages that it provides are easy dispatching of events the right
way (ie it takes care for you of checking that the handler has implemented
that method, or has defined an AUTOLOAD), and the guarantee that filters
will pass along events that they aren't implementing to handlers downstream
that might nevertheless be interested in them.
Upstream changes:
0.16 2008, Nov 25 (19:42)
- Workaround with a bug for perl 5.8.x
- Added support for multiple lexers at the same time;
- Added support to the 'x' flag on the MRULES;
0.15 2008, Nov 23 (21:27)
- Fixed some issues with a global variable.
Upstream changes:
1.37 - November 18, 2008
- Extracted the common parts of parse() and parsefile() into one
method (Refactoring - Shlomi Fish)
- Incorporated a modified version of a patch from Simon Wistow to
add support for the "xml:base" attribute.
- Renamed t/items-are-0.t into the more descriptive
t/test-generated-items.t , to highlight its significance and make
it easier to notice.
- Enabled backwards-compatibility mode for the "description" item
to not become a hash-ref by default if xml:base is specified.
1.36 - October 7, 2008
- ->parse() now explicitly returns $self.
- http://rt.cpan.org/Public/Bug/Display.html?id=34914
- ->parsefile() now explicitly returns $self.
- http://rt.cpan.org/Public/Bug/Display.html?id=34914
- Applied a patch to change the RSS-0.91 DTD URL from my.netscape.com
to rssboard.org:
- http://rt.cpan.org/Ticket/Display.html?id=39780
- Reformatted the Changes file to standardize on 4-space-indents.
- Small documentation patch: (add_item with dc:date)
- http://rt.cpan.org/Ticket/Display.html?id=39780
1.35 - September 13, 2008
- Added a Module::Build-based Build.PL so we'll have an easier time
with the META.yml and the Kwalitee.
- Kwalitee - added "use warnings" to all Perl files.
- now depending on at least perl-5.6.0.
- Kwalitee - fixed the "use" statement of
"Test::Run::CmdLine::Iface" to a runtime require.
1.34 - September 12, 2008
- fixed a typo in the documentation of lib/XML/RSS.pm -
"regardless" instead of "regarless".
- http://rt.cpan.org/Public/Bug/Display.html?id=37916
- (Reported by Reuben Thomas, Fixed by Shlomif).
- fixed a code fragment - pop() instead of shift() for older
items, and while() instead of if():
- http://rt.cpan.org/Public/Bug/Display.html?id=39231
- (Reported by Dave, Fixed by Shlomif).
Pkgsrc changes:
o No longer a Module::Build module, so adapt.
Upstream changes:
0.05 2008-08-28 00:00:00
- Adden new contact information
- No more os x garbage files (hopefully)
0.04 2008-08-28 00:00:00
- Removed Build.PL
Upstream changes:
1.0.24 2008-11-16T14:33:30
- Add trust_list_start_value patch from Ricardo Signes (RT#40814)
to enable <li value='X'> output for list numbering.
This feature is disabled by default.
1.0.23 2008-11-02T18:24:30
- Ship a release with the correct contents so that the tests pass.
1.0.22 2008-10-23T18:24:44
- RT#37909 - Fix + in email addresses.
- RT#40303 - Fix use in Mason by adding "use re 'eval'" to both files.
- Add SVN repository to Makefile.PL
- Remove META.yml from source control so it is regenerated
automatically.
Upstream changes:
2008-10-30 0.58 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Small typo in test message (RT#40410, JPL)
* Parse error test on "\0 (RT#40507)
* Fixed allow_loose_escapes bug disclosed by RT#40507
2008-10-21 0.57 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Don't bootstrap twice. Don't know how/when it came in there
2008-10-21 0.56 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Update to ppport.h 3.14_01
* Updated docs (Unicode, TODO, Release Plan)
* As Text::CSV::Encoded is about to be released, refer to it
in the documentation
* Default for eol is "", undef now treated as ""
* Don't print $\ twice (eol prevails over $\ in ->print ())
Fix only works in perl5.8 and up
* Undef treated as 0 for boolean attributes
* Trailing whitespace in pod removed
* Sync up doc with latest Text::CSV::Encoded
* YAML declared 1.4 (META.yml) instead of 1.1 (YAML)
2008-10-15 0.55 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Improve documentation on eol
* Unicode on perl-5.8.[0-2] sucks. Don't use it!
* Test error codes in expected IO failures
* Allow SetDiag to be used as class method
* Document the MS/Excel separation character
* Hint that eof is not an error per se (RT#40047)
2008-09-04 0.54 - H.Merijn Brand <h.m.brand@xs4all.nl>
* IO failure in print () was not propagated (ilmari, RT#38960)
2008-09-01 0.53 - H.Merijn Brand <h.m.brand@xs4all.nl>
* SvUPGRADE is a safer choice than sv_upgrade (Lubomir Rintel, RT#38890)
* bring docs in sync with reality for msg 2023
* Default eol for print is $\
* examples/csv-check should default to CSV , not to ;
* Tests for SetDiag (0)
* Tests for error 2030
* Code cleanup (Devel::Cover++)
Pkgsrc changes:
o Tweak MASTER_SITES so that the distfile is found
Upstream changes:
No change log available. From looking at the diff and the RT database:
o Improve forward compatibility with perl 5.10.0 maintenance releases
(RT #39875?)
o fixed [rt.cpan.org #40648] Unicode text prints text on top of text before it
Upstream changes:
Convert::ASN1 0.22 -- Mon Sep 15 14:34:45 CDT 2008
Bug Fixes
* Fix decoding of OIDs with large value for 2nd element
Enhancements
* Support for SEQUENCE with no elements in ASN.1
* Added ability to define what value is put in perl data structory
when decoding NULL elements
lxml is a Pythonic binding for the libxml2 and libxslt libraries.
It is unique in that it combines the speed and feature completeness
of these libraries with the simplicity of a native Python API,
mostly compatible but superior to the well-known ElementTree API.
This is a set of XSLT specifications to transform TEI XML documents
to HTML, to LaTeX, and to XSL Formatting Objects.
It concentrates on TEI Lite, but adding support for other modules
is fairly easy. In the main, the setup has been used on new documents,
i.e. reports and web pages that have been authored from scratch,
rather than traditional TEI-encoded existing material.
GTK-Doc 1.11 (Nov 16 2008)
============
Changes
o 531572 : one-page generation option
o 448879 : Use a footer when generating HTML documentation
o 311857 : xsltproc very slow generating index for gtk-docs.sgml
o 335239 : Using gnome-doc-utils for gtk-doc documentation
o 460753 : enable vpath build in gtkdoc-mkhtml
o 473342 : Warn about repeated symbols in sections
o 487727 : DocBook XML DTD version
o 523669 : make check: Element publisher content does not follow the...
o 530758 : gtk-doc should not expand XML tags and their attributes
o 533262 : no-template mode scans different source files
o 534627 : gtk-doc uses non-standard HTML element
o 542137 : No declaration found for: gsf_output_*
o 543855 : Fix for Bug 460753 (enable vpath build in gtkdoc-mkhtml) ...
o 544172 : Fails to parse return value of 'char const *'
o 552822 : Add rules to create $(REPORT_FILES)
o 553407 : Example Makefile.am uses obsolete INCLUDES instead of AM_...
o 554718 : gtk-doc needs to allow versioned TARGET_DIR
o 554833 : Be more careful with " struct _ < struct_name > "
o 558082 : evince docs build fails with GTK_DISABLE_SINGLE_INCLUDES
o 559281 : Correct check for existance of gtkdoc-rebase
Contributors
Behdad Esfahbod
Christian Persch
David Nečas
Felix Riemann
Jeffrey Stedfast
Marc-Andre Lureau
Matthew Barnes
Peter Kjellerstedt
Sebastian Dröge
Simon Josefsson
Stefan Kost
Pygments changelog
==================
Version 0.11.1
--------------
(released Aug 24, 2008)
- Fix a Jython compatibility issue in pygments.unistring (#358).
Version 0.11
------------
(codename Straußenei, released Aug 23, 2008)
Many thanks go to Tim Hatch for writing or integrating most of the bug
fixes and new features.
- Lexers added:
* Nasm-style assembly language, thanks to delroth
* YAML, thanks to Kirill Simonov
* ActionScript 3, thanks to Pierre Bourdon
* Cheetah/Spitfire templates, thanks to Matt Good
* Lighttpd config files
* Nginx config files
* Gnuplot plotting scripts
* Clojure
* POV-Ray scene files
* Sqlite3 interactive console sessions
* Scala source files, thanks to Krzysiek Goj
- Lexers improved:
* C lexer highlights standard library functions now and supports C99
types.
* Bash lexer now correctly highlights heredocs without preceding
whitespace.
* Vim lexer now highlights hex colors properly and knows a couple
more keywords.
* Irc logs lexer now handles xchat's default time format (#340) and
correctly highlights lines ending in ``>``.
* Support more delimiters for perl regular expressions (#258).
* ObjectiveC lexer now supports 2.0 features.
- Added "Visual Studio" style.
- Updated markdown processor to Markdown 1.7.
- Support roman/sans/mono style defs and use them in the LaTeX
formatter.
- The RawTokenFormatter is no longer registered to ``*.raw`` and it's
documented that tokenization with this lexer may raise exceptions.
- New option ``hl_lines`` to HTML formatter, to highlight certain
lines.
- New option ``prestyles`` to HTML formatter.
- New option *-g* to pygmentize, to allow lexer guessing based on
filetext (can be slowish, so file extensions are still checked
first).
- ``guess_lexer()`` now makes its decision much faster due to a cache
of whether data is xml-like (a check which is used in several
versions of ``analyse_text()``. Several lexers also have more
accurate ``analyse_text()`` now.
This module is built on Text::Aspell, but adds some of the
functionality provided by the internal gnu aspell API. This allows
one to deal with blocks of text, rather than just words. For
instance, we provide methods for iterating through the text,
serializing the object (thus remembering where we left off), and
highlighting the current misspelled word within the text.
This module provides a Perl interface to the GNU Aspell library.
This module is to meet the need of looking up many words, one at
a time, in a single session, such as spell-checking a document in
memory.
Number::Spell provides functionality for spelling out numbers.
Currently only integers are supported.
By default Number::Spell does American formatting, but can be
configured to do European formatting by calling it with the
"Format => 'eu'" option.
Based on maintainer update request by PR 39892.
Major changes in 1.0.0:
- Running dictem-initialize everytime your network/internet is up
(if case you have no permanent connection to Internet,
e.g. dial-up, adsl etc.) is a bit annoying. To avoid this dictem
is (re)initialized (if needed) automatically from
dictem-select-strategy and dictem-select-database functions. As
a result, running dictem-initialize in .emacs becomes unnecessary
- New function (dictem-reinitialize-err) added
- Minor fix in dictem-initialize-databases-alist function. Now it
returns error data in case of failure, not nil.
(just like dictem-initialize-strategies-alist)
since 20071211:
- fix a wrong encoded umlaut and enhance the check for that in the Makefile
- words added and shifted around
- additionaly put the dictionary under GPLv3
- allow Ispell F prefix flag to be combined with suffixes
- eliminate absolutely useless G flag (prefix ge)
- deactivate K suffix flag: unused
- eliminate H suffix flag: was almost unused
- remove Q and q redundancy: every Q flagged word needs a q now, too
- fix build issue with de_CH hunspell dictionary (a missing ß/ss conversion)
- better empty-line fault tolerance of dictionaries
- revise the aspell Makefile target using the myspell format now for aspell
- simplify W flag
- use sha256 checksums and prevent checksumming temporary files
since 20070829:
- words added and shifted around
- Hunspell affix fix
Changelog:
1.52 02 Oct 2008
[FIXES]
- Better handling of failures during filter loading
(rlane10 via http://www.nntp.perl.org/group/perl.cpan.testers/2008/10/msg2361238.html)
1.51 28 Sep 2008
[FIXES]
- Support PDFs with 24-bit offsets in the xref stream (PDF v1.5 only)
(thanks to Dan Richman for reporting the problem and providing an example)
1.50 20 Sep 2008
[ENHANCEMENTS]
- Support for reading PDF 1.5 compressed object streams and cross reference streams.
(we cannot write this style, but we can append to it)
[FIXES]
- Decompression of PNG-filtered streams was totally broken.
- Deleting pages now also deletes back references from annotations on that page.
- cleanse() now removes PieceInfo data. I have no idea what
PieceInfo does, but it had a whole bunch of page back links
that broke page deletion.
parsing routines. Also, they ship doxygen-generated qt help
files, but installing those will require a seperate docs package
or doxgen option to avoid the large dependency.
0.0.21 (stable)
added experimental support for dblatex(needs installed
dblatex package)
fixed issue with cp -a option on non-gnu systems
non-mandatory support for libpaper
0.0.20 (stable)
added experimental fop support(needs installed fop package)
possibility to read a stylesheet from STDIN
some small fixes/changes in docbook formats and xmlto script
0.0.19 (stable)
added supported for basename with spaces, stringparam
option for passing argument to stylesheet, bash no
longer hardcoded, added option for not cleaning temp
files for diagnostics.
iso-codes 3.4
-------------
Tobias Quathamer <toddy@debian.org>
Tue, 4 November 2008
[ ISO-3166 ]
* Changes from ISO-3166 MA Newsletter VI-3:
- NP full name to "Federal Democratic Republic of Nepal"
[ ISO-639 ]
* Update to 2008-10-21
[ ISO-639-3 ]
* Update to 2008-10-23
[ ISO-15924 translations ]
* Spanish by Juan Cuquejo Mira (TP)
[ ISO-639 translations ]
* Simplified Chinese by LI Daobing (TP)
* Finnish by Tommi Vainikainen (TP)
* Dutch by Freek de Kruijf (TP)
* Irish by Kevin Scannell (TP)
* Italian by Milo Casagrande (TP)
* Vietnamese by Clytie Siddall (TP)
* Esperanto by Edmund GRIMLEY EVANS (TP)
* Marathi correction by pn-guest. Closes: alioth#311136
* Konkani correction by pn-guest. Closes: alioth#311136
* Greek by Athanasios Lefteris. Closes: alioth#311159
* Russian by Yuri Kozlov
* French by Christian Perrier
* Lithuanian updated by Kęstutis Biliūnas.
[ ISO-639-3 translations ]
* Greek by Athanasios Lefteris. Closes: alioth#311159
* French update by Christian Perrier
* Lithuanian updated by Kęstutis Biliūnas.
[ ISO-4217 translations ]
* Simplified Chinese by LI Daobing (TP)
[ ISO-3166 translations ]
* Hindi by Kumar Appaiah (sent directly to Christian Perrier)
* Georgian by Aiet Kolkhi. Closes: #498421
* Polish by Lukasz Pazdziora (sent directly to Christian Perrier)
* Macedonian by Arangel Angov (sent directly to Christian Perrier)
* Correct wrong German translation for ETH, thanks to Stefan Lüchinger.
Closes: alioth#311152
* Russian by Yuri Kozlov
* Lithuanian updated by Kęstutis Biliūnas.
* Estonian updated by Tõivo Leedjärv, sent directly to mailing list
NOTE: Now installs de_AT, de_CH, and de_DE dictionaries
instead of "german" before.
since 20071211:
- fix a wrong encoded umlaut and enhance the check for that in the Makefile
- words added and shifted around
- additionaly put the dictionary under GPLv3
- allow Ispell F prefix flag to be combined with suffixes
- eliminate absolutely useless G flag (prefix ge)
- deactivate K suffix flag: unused
- eliminate H suffix flag: was almost unused
- remove Q and q redundancy: every Q flagged word needs a q now, too
- fix build issue with de_CH hunspell dictionary (a missing ß/ss conversion)
- better empty-line fault tolerance of dictionaries
- revise the aspell Makefile target using the myspell format now for aspell
- simplify W flag
- use sha256 checksums and prevent checksumming temporary files
since 20070829:
- words added and shifted around
- Hunspell affix fix
since 20030222:
- in order to make use of Hunspell's compound word support, categorise noun
word lists into compoundable end and non-end words.
- add blacklists to prevent by compound rules wrongly accepted words to be
accepted
- add Binnen-I support
- add "nosuggest" flag used by Hunspell to some words where it's appropriate
- in order to support as well Hunspell optimized dictionary builts and ispell
and myspell builts, a complete Makefile rewrite was done. The Makefile might
now require GNU make, sorry if that causes trouble. The good news is that
makefile dependencies are clean now and make -j is possible
- igerman98 names the Ispell dictionaries after ISO 639 language codes now
(de_{AT,CH,DE}.{aff,hash})
- isowordlist is obsoleted by isowordlist-de_{AT,CH,DE} now
1.68pre
- fix compilation problems
- skip exslt tests if not available
- added XML::LibXSLT::HAVE_EXSLT() (1/0)
1.67
- sync the binary internals to those of XML::LibXML 1.67
- update regression tests for compatibility with up-to-date libxslt
1.68pre
- compilation problem fixes
1.67
- many bugfixes (rt.cpan.org)
- added XML::LibXML::Pattern module and extended pattern support in Reader
- added XML::LibXML::XPathExpression module that can pre-compile an XPath expression
- reimplementation of the thread support (mostly by Tim Brody)
- structured errors XML::LibXML::Error
- memory leak fixes
- documentation fixes
- README - notes for building on Win32 (C.J. Madsen)
Requested by Jens Rehsack in PR 39543.
Pod::Spell is a Pod formatter whose output is good for spellchecking.
Pod::Spell rather like Pod::Text, except that it doesn't put much effort
into actual formatting, and it suppresses things that look like Perl symbols
or Perl jargon (so that your spellchecking program won't complain about
mystery words like "$thing" or "Foo::Bar" or "hashref").
Requested by Jens Rehsack in PR 39558.
This module is a subclass of Pod::PlainText which provides additional POD
markup for generating README files.
Why should one bother with this? One can simply use
pod2text Module.pm > README
A problem with doing that is that the default pod2text converter will add text
to links, so that "L<Module>" is translated to "the Module manpage"...
Packages Collection.
The Perl 5 module Text::DHCPLeases provides an object-oriented
interface to ISC DHCPD leases files. The goal is to objectify all
declarations, as defined by the ISC dhcpd package man pages. This
interface is useful for analyzing, reporting, converting lease
files, or as a tool for other applications that need to import dhcpd
lease data structures.
JSON-GLib is a library providing serialization and deserialization support for
the JavaScript Object Notation (JSON) format described by RFC 4627
JSON-GLib uses GLib native data types and the generic value container GValue for
ease of development. It also provides integration with the GObject classes for
direct serialization into, and deserialization from, JSON data streams.
Soprano (formerly known as QRDF) is a library which provides a highly
usable object-oriented C++/Qt4 framework for RDF data. It uses
different RDF storage solutions as backends through a simple plugin
system. Soprano is targetted at desktop applications that need a RDF
data storage solution. It has been optimized for easy usage and
simplicity.
CLucene is a high-performance, scalable, cross platform, full-featured,
open-source indexing and searching API. It is written in C++.
CLucene is a port of the very popular Java Lucene text search engine API.
Specifically, CLucene is the guts of a search engine, the hard stuff.
You write the easy stuff, the UI and the process of selecting and parsing your
data files to pump them into the search engine yourself.
CLucene aims to be a good alternative to Java Lucene when performance really
matters or if you want to stick to good old C++.
Redland is a set of free software libraries that provide support for the
Resource Description Framework (RDF).
* Modular, object based libraries and APIs for manipulating the RDF graph,
triples, URIs and Literals.
* Storage for graphs in memory and persistently with Sleepycat/Berkeley DB,
MySQL 3-5, PostgreSQL, AKT Triplestore, SQLite, files or URIs.
* Support for multiple syntaxes for reading and writing RDF as RDF/XML,
N-Triples and Turtle Terse RDF Triple Language, RSS and Atom syntaxes via
the Raptor RDF Parser Toolkit.
* Querying with SPARQL and RDQL using the Rasqal RDF Query Library.
* Data aggregation and recording provenance support with Redland contexts.
* Language Bindings in Perl, PHP, Python and Ruby via the Redland Bindings
package.
* Command line utility programs rdfproc (RDF), rapper (parsing) and roqet
(query).
* Portable, fast and with no known memory leaks.
Rasqal is a free software / Open Source C library that handles
Resource Description Framework (RDF) query syntaxes,
query construction and query execution returning result bindings.
The supported query languages are SPARQL and RDQL.
Packaged by Edgar Fuss and provided by PR 39756.
Kirill Siminov's libyaml is arguably the best YAML implementation.
The C library is written precisely to the YAML 1.1 specification.
It was originally bound to Python and was later bound to Ruby.
This module is a Perl XS binding to libyaml which will (eventually)
offer Perl the best YAML support to date.
This module exports the functions Dump and Load. These functions are
intended to work exactly like YAML.pm's corresponding functions.
Changes:
* add "-S", "-D" and "-m" to provide a way to show the amount of
difference relative to the total sizes of the files.
* add "-q" (suppress the "0 files changed" message for empty diffs)
This module implements a "sounds like" algorithm developed by Lawrence
Philips which he published in the June, 2000 issue of C/C++ Users Journal.
Double Metaphone is an improved version of Philips' original Metaphone
algorithm.
YAML is a data serialization language which is designed to be both
human readable and computationally powerful.
This C language implementation is developed by Kirill Simonov for Python
Software Foundation as a part of Google Summer of Code under the mentorship
of Clark Evans and released under the MIT license.
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0.
The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=...").
2008-10-09: 2.34. elim extra \ns (tx Keith Bussell)
2008-09-19: 2.33. add support for abbr (tx Nathan Youngman)
2008-07-31: 2.32. fix parsing bug with fastcompany (tx Elias Soong)
changes:
-Portability fix: fix solaris compilation problem, fix compilation
if XPath is not configured in
-Bug fixes: nasty entity bug introduced in 2.7.0, restore old behaviour
when saving an HTML doc with an xml dump function,
HTML UTF-8 parsing bug, fix reader custom error handlers
-Improvement: xmlSave options for more flexibility to save
as XML/HTML/XHTML, handle leading BOM in HTML documents
cvs: ----------------------------------------------------------------------
Don't call pkg_info to get the installed Emacs version; always use the
version matching EMACS_TYPE set by users. Be DEPENDS to it. This should
address pkg/37146 by Aleksey Cheusov.
While here convert some emacs lisp packages to user-destdir.
PyEnchant is a set of language bindings and some wrapper classes
to make the excellent Enchant spellchecker available as a Python
module. The bindings are generated using SWIG. It includes all the
functionality of Enchant with the flexibility of Python and a nice
'Pythonic' object-oriented interface. It also aims to provide some
higher-level functionality than is available in the C API.
Enchant is the spellchecking package behind the AbiWord word
processor, is being considered for inclusion in the KDE office
suite, and has been proposed as a FreeDesktop.org standard. It aims
to provide a single API to access spellchecking services on any
platform, by wrapping the natively available spellchecking facilities.
For example, it can access aspell when running under Linux and
AppleSpell on Mac OSX.
X.Org found in NetBSD-current.
Thanks a lot to all who helped, especially Matthias Scheler who did
repeated tests on Mac OS X and older versions of NetBSD to make sure the
support for those platforms wouldn't be broken (or at least, not fatally,
as I would still expect a few hiccups here and there, because there is
only so much one can test in such limited time).
On the infrastructure side, this branch brings pkgconfig-builtin.mk, in
order to write very easily new builtin.mk files. It can actually handle
more than just pkgconfig files, but it will provide a version if it finds
such a file. x11.builtin.mk has also been made more useful and now all
existing (and future!) native-X11-related builtin.mk files should include
it.
*4.0.4 (October 1, 2008)*
* Added some very basic support for images in LaTeX. [virtualfunction]
* Fixed missed caps and inline modifiers wrapped in parentheses. #43, #45
* Removed indication of quotes explicitly with square brackets. Textile 2.0 does not support this and it wasn't in RedCloth 3. #46
* Made percent signs less greedy. They must surround a phrase or else they must be surrounded with square brackets, just like sup, sub, and del phrases. #47
* Reduced link eagerness so it wouldn't include preceding quoted phrases. #48
* Fixed compatibility issues with Ruby 1.9 [Keita Yamaguchi]. #52, 53, 54
* Fixed an error when a link was badly nested in parentheses. #55
* Fixed an error on superscript/subscript parenthetical phrase. #56
* Fixed bold phrases starting with a number being recognized as unordered lists. #60
* Fixed behavior of unclosed (multi-paragraph) quotes and incorrect handling of links inside double quotations. #59, #63
* Fixed empty block HTML disappearing. #64
*4.0.3 (August 18, 2008)*
* Fix NoMethodError: private method gsub!' called for nil:NilClass when two dimensions followed by a space. #38
* Fixed unititialized constant RedCloth::TextileDoc with Rails 2.1. Came from a workaround for Rails bug #320 that was applied even when not necessary. #42
*4.0.2 (August 15, 2008)*
* Fixed link references/aliases not being recognized when they include hyphens. #36
* Dimensions in feet and inches use correct typographic characters. #25
* Limit overzealous superscript and subscript. Sup/sub phrases must be surrounded by spaces or square brackets, as in Textile 2. #35
* Fixed HTML before tables causing the opening table tag to be emitted twice. #33
* Cleaned up unused code that was causing a warning. #28
* Workaround for Rails 2.1 bug that loads a previous version of RedCloth before loading the unpacked gem. Has since been fixed in edge rails. #30
* Added a RedCloth::VERSION.to_s and .== methods so you can puts and compare RedCloth::VERSION just like in previous RedCloth releases. #26
* Fixed HTML block ending tags terminating blocks prematurely. #22
*4.0.1 (July 24, 2008)*
* Fixed lines starting with dashes being recognized as a definition list when there were no definitions.
* Created alias RedCloth.rb so Rails 2.1 gem dependency works on case-sensitive operating systems .
* Fixed parsing sentences that had two em dashes surrounded by spaces from becoming del phrases. #19
* Fixed links including prior quoted phrases. #17
*4.0.0 (July 21, 2008)*
* New SuperRedCloth (RedCloth 4.0) is a total rewrite using Ragel for the parsing.
* Markdown support has been removed.
* Single newlines become <br> tags, just as in traditional RedCloth and other Textile parsers.
* HTML special characters are automatically escaped inside code signatures, like Textile 2. This means you can simply write @<br />@ and the symbols are escaped whereas in RedCloth 3 you had to write @<br />@ to make the code fragment readable.
* The restrictions parameter is observed just like previous versions (except :hard_breaks is now the default).
* Arguments to RedCloth#to_html are called so extensions made for prior versions can work. Note: extensions need to be included rather than defined directly within the RedCloth class as was previously possible.
* Custom block tags can be implemented as in the previous version, though the means of implementing them differs.
* HTML embedded in the Textile input does not often need to be escaped from Textile parsing.
* The parser will not wrap lines that begin with a space in paragraph tags.
* Rudimentary support for LaTeX is built in.
* RedCloth::VERSION on a line by itself inserts the version number into the output.
* Output (less newlines and tabs) is identical to Textile 2 except a few cases where the RedCloth way was preferable.
* Over 500 tests prevent regression
* It's 40 times faster than the previous version.
should fix PR#39539.
Pkgsrc changes:
o Revert MAINTAINER to pkgsrc-users@ as hinted by maintainer
Upstream changes:
Revision 2.122 2008/05/23 21:30:09 abigail
Changed email address
Revision 2.121 2008/05/23 21:28:01 abigail
Changed license
(License is quadruple, Perl artistic 1&2, BSD & MIT, so should be no problem.)
2008-07-10 (1.1.3)
* Wesley Beary <monki@geemus.com> reported a bug in json/add/core's DateTime
handling: If the nominator and denominator of the offset were divisible by
each other Ruby's Rational#to_s returns them as an integer not a fraction
with '/'. This caused a ZeroDivisionError during parsing.
* Use Date#start and DateTime#start instead of sg method, while
remaining backwards compatible.
* Supports ragel >= 6.0 now.
* Corrected some tests.
* Some minor changes.
2008-07-10 (1.1.3)
* Wesley Beary <monki@geemus.com> reported a bug in json/add/core's DateTime
handling: If the nominator and denominator of the offset were divisible by
each other Ruby's Rational#to_s returns them as an integer not a fraction
with '/'. This caused a ZeroDivisionError during parsing.
* Use Date#start and DateTime#start instead of sg method, while
remaining backwards compatible.
* Supports ragel >= 6.0 now.
* Corrected some tests.
* Some minor changes.
* Switch to use rubyforge.org as MASTER_SITES and HOMEPAGE.
Changes to 0.6.21 to 0.6.22 is unknown.
= CHANGES
:0.6.21
* setup.rb version up -> 3.4.1
* fix for Ruby 1.9.
Pkgsrc changes:
o Revert MAINTAINER to pkgsrc-users@ as directed by maintainer
Upstream changes:
1.01
- Remove unnecessary use of Data::Dump in test suite
- Work around perlbug 39634, where g++ 3.3 doesn't support
__attribute__((unused))
ChangeLog:
2.05 11 Sep 2008
- Changed the shebang line in the two scripts to be less specific. Thanks
to Daniel Leidert <daniel.leidert@wgdd.de> for the suggestion.
2.04 06 Sep 2008
- Incorporated a patch from Daniel Leidert <daniel.leidert@wgdd.de> which
updates the maps iso-8859-2.xml to iso-8859-9.xml and adds the maps
iso-8859-1.xml, iso-8859-10.xml, iso-8859-11.xml, iso-8859-13.xml to
iso-8859-16.xml and windows-1251.xml.
- Updated the map windows-1250.xml and added the maps windows-1252.xml to
windows-1258.xml using data from ftp://ftp.unicode.org/Public/MAPPINGS.
ChangeLog:
2.05 11 Sep 2008
- Changed the shebang line in the two scripts to be less specific. Thanks
to Daniel Leidert <daniel.leidert@wgdd.de> for the suggestion.
ChangeLog:
1.21 13 Aug 2008
[FIXES]
- Permit comments after the %%EOF, like Adobe Reader does. Thanks to
Malcolm Cook for pointing out the incompatibility.
Version 0.8.1
-------------
Fixes:
* Ensure directories exist before reading them - bug #15755
* Close files and clean up behind us - bug #15654
* Fix potential crash when no info page exists - bug #15274 (Saleem Abdulrasool)
* Remove longopts to make non-linux work properly - bug #11839
- These options should be unused in normal operation
* If $USERNAME isn't set (MacOS), use a default name - bug #14872
* Fix potential crasher on mangled info dir file - bug #12515
[ General ]
* Do no longer install the file iso_3166.tab in /usr/share/iso-codes
[ ISO-639 ]
* ISO 639-2/B code deprecated in favor of ISO 639-2/T code for
Croatian and Serbian (2008-06-28)
* Some name changes
[ ISO-639-3 ]
* Update to 2008-08-04
[ ISO-3166 translations ]
* Portuguese updated by Miguel Figueiredo
* Indonesian updated by Andhika Padmawan (TP)
[ ISO-3166-2 translations ]
* Simplified Chinese by LI Daobing (TP)
[ ISO-639-3 translations ]
* French updated by Christian Perrier
* Simplified Chinese by LI Daobing
[ ISO-639 translations ]
* Dutch updated by Freek de Kruijf (TP)
* Finnish updated by Tommi Vainikainen (TP)
* Esperanto updated by Edmund GRIMLEY EVANS (TP)
* Xhosa updated by Friedel Wolff
* French updated by Christian Perrier
[ ISO-4217 translations ]
* Finnish updated by Tommi Vainikainen (TP)
* Norwegian Nynorsk updated by Edmund GRIMLEY EVANS (TP)
* Danish updated by Joe Hansen (TP)
[ ISO-15924 translations ]
* Spanish updated by Juan Cuquejo Mira (TP)
2.7.1: Sep 1 2008
* Portability fix: Borland C fix (Moritz Both)
* Bug fixes: python serialization wrappers, XPath QName corner
case handking and leaks (Martin)
* Improvement: extend the xmlSave to handle HTML documents and trees
* Cleanup: python serialization wrappers
2.7.0: Aug 30 2008
* Documentation: switch ChangeLog to UTF-8, improve mutithreads
and xmlParserCleanup docs
* Portability fixes: Older Win32 platforms (Rob Richards), MSVC
porting fix (Rob Richards), Mac OS X regression tests (Sven
Herzberg), non GNUCC builds (Rob Richards), compilation on
Haiku (Andreas F�rber)
* Bug fixes: various realloc problems (Ashwin), potential
double-free (Ashwin), regexp crash, icrash with invalid whitespace
facets (Rob Richards), pattern fix when streaming (William
Brack), various XML parsing and validation fixes based on the
W3C regression tests, reader tree skipping function fix (Ashwin),
Schemas regexps escaping fix (Volker Grabsch), handling of
entity push errors (Ashwin), fix a slowdown when encoder cant
serialize characters on output
* Code cleanup: compilation fix without the reader, without
the output (Robert Schwebel), python whitespace (Martin), many
space/tabs cleanups, serious cleanup of the entity handling
code
* Improvement: switch parser to XML-1.0 5th edition, add parsing
flags for old versions, switch URI parsing to RFC 3986, add
xmlSchemaValidCtxtGetParserCtxt (Holger Kaelberer), new hashing
functions for dictionnaries (based on Stefan Behnel work),
improve handling of misplaced html/head/body in HTML parser,
better regression test tools and code coverage display, better
algorithms to detect various versions of the billion laughts
attacks, make arbitrary parser limits avoidable as a parser
option
Tokyo Dystopia is a full-text search system. You can search lots of records for
some records including specified patterns. The characteristic of Tokyo Dystopia
is the following.
* High performance of search
* High scalability of target documents
* Perfect recall ratio by character N-gram method
* Phrase matching, prefix matching, suffix matching, and token matching
* Multilingualism with Unicode
* Layered Architecture of APIs
Tokyo Dystopia is available on platforms which have API conforming to C99 and
POSIX. Tokyo Dystopia is a free software licensed under the GNU Lesser General
Public License
fix:
2008-09-01 -- 0.7.2
* Fixed: Bad cleanup logic in functions
- uriAddBaseUri(..)
- uriRemoveBaseUri(..)
Previously you needed to call uriFreeUriMembers on return code
URI_ERROR_MALLOC and only then. So that's why these functions now
take cleanup off your shoulders. An extra call to uriFreeUriMembers
from your side is still needed in case of success.
* Soname: 1:7:0
Packages Collection.
The Perl 5 module String::Koremutake convert to/from Koremutake
Memorable Random Strings. The term "Memorable Random String" was
thought up by Sean B. Palmer as a name for those strings like
dopynl, glargen, glonknic, spoopwiddle, and kebble etc. that don't
have any conventional sense, but can be used as random identifiers,
especially in URIs to keep them persistent.
Ultraviolet is a syntax highlighting engine based on Textpow. Since it uses
Textmate syntax files, it offers out of the box syntax highlighting for more
than 50 languages and 20 themes.
Ultraviolet is at the same time a stand-alone command line utility and a Ruby
library.