Tempita is a small templating language for text substitution. It is
meant for projects that require a bit more power than string.Tempalte or
% substitution.
Changes from previous:
0.10 2011-10-15 17:17:03
- special case "people" and "heroes"
0.09 2011-10-15 14:32:04
- fix inflection of "a" to "some"
0.08 2011-10-11 22:31:58
- special case the verb "belongs", as the new fallback to verbs was
breaking DBIx::Class::Schema::Loader tests.
0.07 2011-10-10 22:07:35
- remove special case for "single", as it was wrong
0.06 2011-10-10 22:01:14
- handle "negative acknowledges"
0.05 2011-10-10 21:37:57
- fix some bugs discovered in String::ToIdentifier::EN
- better support for numbers and number words
which is required to update databases/p5-DBIx-Class-Schema-Loader.
This module exports two functions.
- camelize : convert from under_score text to CamelCase one
- decamelize : convert from CamelCase text to under_score one
Changes from previous:
1.55 22 Jun 2011
[FIXES]
Performance enhancement saving large files
https://rt.cpan.org/Ticket/Display.html?id=69021
Thanks to David Porter of Audacitas Limited for the patch
1.54 26 Mar 2011
[FIXES]
- appendPDF was broken intermittently if appended doc was bigger than main doc
Thanks to Charlie Katz for a sample PDF
http://chrisdolan.net/talk/2011/03/26/cam-pdf-fixes-appendpdf-bug/
1.53 25 Mar 2011
[FIXES]
- Handle PDF 1.5 case where "endstream" token crosses a 1024-byte boundary
Thanks to Charlie Katz for a sample PDF
- Allow whitespace after the 'stream' token for better interoperability
http://rt.cpan.org/Ticket/Display.html?id=42819
Credit to Vonne 'Robert' Bannavong
- Fix broken crunchjpgs.pl, patch submitted by George Greer
- Tolerate leading zeros on objnums and gennums
http://www.cpanforum.com/posts/11494
Changes from previous:
0.08 2010.12.06
- Altered explode() to canonicalize line endings to \n, handling
DOS (\r\n) and older mac (\r) line breaks cleanly. Thanks to Matt
Gramlich for the patch.
- Removed sign() and auto_install() from Makefile.PL.
- Removed magic svn keywords.
- Converted test suite to Test::More.
- Added author tests (xt/) and modified SYNOPSIS for all modules to
make them pass the compilation test.
Changes from previous:
* Versions being seperate from Module versions results in dependency confusion
Bumped all versions to match the distribution version number.
[RT #67655]
* Fix decrypt to work with Perl 5.14
[RT #67656]
* Update the Filter-Simple URL
[RT #49778]
coccigrep is a semantic grep for the C language based on coccinelle.
It can be used to find where a given structure is used in code
files. coccigrep depends on the spatch program which comes with
coccinelle.
Change from previous:
2.08 2011-08-02 neilb
* updated testsuite to refer to dict.org, as test.dict.org no longer exists
* updated testsuite to reflect the much greater list of databases now hosted on dict.org
Pdfgrep is a tool to search text in PDF files. It works similar to
grep.
Features
========
* search for regular expressions.
* support for some important grep options, including:
o filename output.
o page number output.
o optional case insensitivity.
o count occurrences.
* and the most important feature: color output!
Changes from previous:
2011-08-23 David E. Wheeler <david@justatheory.org>
* Release 3.19
Fixed occasional test failure when tests are run in parallel
(HARNESS_OPTIONS=j6:c). Thanks to Alexei Znamensky for the report and
Marc Green for the fix.
Added "pod_handler" option. This is a callback that can be used to
inspect the content on a "=pod" line. Marc Green/Google Summer of
Code.
Added tests for proper line-ending parsing from the previous
release. The tests were in the repository, but didn't make it into
the MANIFEST or, therefore, the release. Reported by Marc Green.
Added the "parse_empty_lists" option. When enabled, Pod::Simple
will recognize empty lists (that is, a blocks with '=over' and
'=back' but nothing in between). Disabled by default. Marc
Green/Google Summer of Code.
Added the "whiteline_handler" attribute. It's much like
"code_handler", "cut_handler", and "pod_handler", except it's
triggered on lines that contain only whitespace characters. Marc
Green/Google Summer of Code.
Added "raw" attribute to L<> treelet that contains the L<>'s raw
contents. Marc Green/Google Summer of Code.
Pod directives autoclosed by Pod::Simple are now denoted as such
by the new "fake_closer" attribue. Marc Green/Google Summer of
Code.
Fixed incompatibility with Pod::Simple::HTMLBatch in
Pod::Simple::XHTML. Patch by Eric Johnson.
2011-07-16 David E. Wheeler <david@justatheory.org>
* Release 3.18
Pod::Simple now properly parses Pod files using Mac OS Classic line-
endings (\r). Marc Green/Google Summer of Code.
Fixed test failure in 't/search50.t when the test finds a .pod but
the module is in a .pm. Thanks to the cpan-testers who reported
this when the test searched for Capture::Tiny.
2011-07-09 David E. Wheeler <david@justatheory.org>
* Release 3.17
Documented tertiary methods. Patch from Shawn H Corey.
Added "backlink" option to Pod::Simple::XHTML. Thanks to Marc
Green/Google Summer of Code for the pull request.
Typos fixed in Pod::Simple::HTMLBatch. Reported by Shawn H Corey.
Fixed quoting of value returned by a "strip_verbatim_indent()"
code reference so that regex meta characters are properly escaped.
Added "anchor_items" option to Pod::Simple::XHMTL. This allows
text items (which are output as <dt> elements) to have IDs that
can be referenced in the "#" part of a URL. Marc Green/Google
Summer of Code.
Added "recurse" option to Pod::Simple::Search. It's enabled by
default; disable it to turn off recursion into subdirectories.
Marc Green/Google Summer of Code.
Added documentation to clarify the behavior of the "content_seen"
method. Thanks to Olaf Alders for the pull request.
2011-03-14 David E. Wheeler <david@justatheory.org>
* Release 3.16
Fixed invalid HTML generated for nested lists by Pod::Simple::XHTML
(Fitz Elliott).
Replaced the invalid "<nobr>" tag -- created for "S<>" -- with
'<span style="white-space: nowrap;">' (Fitz Elliott).
Fixed some nerbles in our own Pod (Michael Stevens)
Improved the "Minimal code" example in Pod::Simple::HTML. The key
is to use pase_file(), not parse_from_file() (which should
otherwise be undocumented, and is just there for Pod::Parser
compatibility.
Added the html_charset() and html_encode_chars() attributes to
Pod::Simple::XHTML. Inspired by a bug report from Agent Zhang
(RT #29587).
Added "Minimal code" example to the Pod::Simple::XHTML documentation.
Fixed mispelling of the "=encoding" markup in the parser (it was
spelled "=encode"). Thanks to "TTY" for the patch. (RT #24820).
2010-11-11 David E. Wheeler <david@justatheory.org>
* Release 3.15
Removed "perlpod.pod" and "perlpodspec.pod". These now just live
in the Perl core.
Fixed stylesheet names output by HTMLBatch to match the names of
the actual stylesheet files (broken in 3.09). Thanks to Kevin Ryde
for the report (RT #56725).
Added missing closing slash to the CSS links in the XHTML output.
Thanks to HarleyPig for the patch!
Added parens around bar "qw(...)" in t/xhtml05.t. Thanks to Jerry
D. Hedden for the patch.
Improved the Pod::Simple::HTML docs. Thanks to Gabor Szabo for the
patch.
Pod::Simple::XHTML now properly encodes entities in URLs in the
anchor tag. Thanks to John McNamara for the report (RT-60249).
Pod::Simple::HTML and XHTML now strip whitespace from the end of
section names that appear as anchor names for headers (in HTML)
and IDs (in XHTML). Such whitespace appeared when "X<>" entities
were stripped out but not the space between them (RT-56572).
Make test "t/search50.t" always pass on case-insensitive file
systems rather than just skip VMS.
Changes from previous:
1.000
Released: 2011-02-21 23:25:42 UTC
Converted to Dist::Zilla for the release process
Add some more common misspellings, thanks RT#61505
Fix a typo in check_pod_case which prevented it from working
Changes from previous:
Version 2011041701 Sun Apr 17 14:22:58 CEST 2011
+ Fix documentation (matches should be match). Reported by cogent@cpan.org
in RT ticket 2833.
+ Added patterns for JavaDoc comments. (RT 13174 by chris+rt@chrisdolan.net)
Version 2011041602 Sat Apr 16 17:06:28 CEST 2011
+ Fix typo in repository (avar@cpan.org)
Version 2011041601 Sat Apr 16 16:07:29 CEST 2011
+ Fix bugs 61712 & 6940: $RE {num} {decimal} and $RE {num} {real} no longer
match a single dot.
Changes from previous:
1.41 Sun 17 Apr 2011
- Add Text::Dif::Config to MANIFEST.
1.40 Sat 16 Apr 2011
- Added DIFF_OUTPUT_UNICODE env variable to allow outputting unicode
characters. Thanks to Shlomi Fish for the patch.
Changes from previous:
0.07 2011.01.28
- Use $ua->env_proxy to load local proxy settings. (RT 53817)
- Fixed documentation for find_in_html. (RT 19183)
- Removed sign() and auto_install() from Makefile.PL.
- Removed magic svn keywords.
- Converted test suite to Test::More.
- Added author tests (xt/) and modified SYNOPSIS for all modules to
make them pass the compilation test.
Changes from previous:
0.07 2011-06-26T05:48:03
- Moved to [GitHub](http://github.com/theory/text-diff-html/).
- Switched to a static README.md, rather than a generated README.
Changes from previous:
0.006 2010-10-25 15:36:37 America/New_York
give explicit Sub::Exporter requirement
do not warn if a coderef prefix generator returns undef
write Perl bindings should double-check this.
XXX: This will almost certainly not work on LP64 platforms as it casts
XXX: Perl-provided pointers to int and back. However, fixing this
XXX: requires changing the API of the parent Sablotron package, which
XXX: doesn't seem like a great idea at the moment.
Changes from previous:
p5-Template-Declare-0.45
0.45 2011-04-15
* Added new HTML 5 elements to the HTML Tag set. (Theory)
0.44 2010-12-08
* Added support for $TAG_INDENTATION and $EOL (Marc Chantreux)
* Add a current_base_path() convenience function (trs)
Changelog:
FlightCrew v0.7.2 2011.08.15
- Use Inno for Windows installer.
- Add version display to GUI and CLI.
- Fix Sigil issue #813: erroneous Resource is reachable but not present in OPF detection.
- OS X minimum version bumped to 10.6.
- made the CSS resource use detection far more robust
- fixed an issue with CSS @import rules in the '@import "something.css"' format not being
recognized
- fixed an issue with links to fonts in commented-out CSS producing "not in manifest" errors
(issue #15)
- fixed an issue with "background" and "background-image" CSS rules that referenced images
having those same images marked as unreachable files (issue #21)
- fixed an issue with "src" declarations in @font-face rules that have a space before the colon
throwing error messages about unreachable files (issue #21)
- clarified what "reachable" means in the error messages
Changes from previous:
0.11 Fri Jun 24 2011
- pod fixes and pod test
0.09 Thu Jun 23 2011
- Better tests, use of LANG
- Compile time check for at least one speller.
It provides SAX, DOM, and special Jabber stream APIs. Library is coded
in ANSI C except the network code (which is POSIX compatible), thus
highly portable.
08-10-2011: version 1.12.0
This version features a new, work-in-progress mandoc output mode:
-Tman. This mode allows a system maintainer to distribute man media
for older systems that may not natively support mdoc, such as old
Solaris systems. The -Ofragment option was added to mandoc's -Thtml
and -Txhtml modes.
While adding features, an apropos utility has been merged from the
mandoc-tools sandbox. This interfaces with mandocdb for semantic
search of manual content. apropos is different from the traditional
apropos primarily in allowing keyword search (such as for functions,
utilities, etc.) and regular expressions. Note that the calling
syntax for apropos is likely to change as it settles down.
In documentation news, the mdoc and man manuals have been made
considerably more readable by adding MACRO OVERVIEW sections, by
moving the gory details of the LANGUAGE SYNTAX to the roff manual,
and by moving the very technical MACRO SYNTAX sections down to the
bottom of the page.
Furthermore, for tbl, the -Tascii mode horizontal spacing of tables
was rewritten completely. It is now compatible with groff, both
with and without frames and rulers. Nesting of indented blocks is
now supported in man, and several bugs were fixed regarding
indentation and alignment. The page headers in mdoc are now nicer
for very long titles.
[ENHANCEMENTS]
* Now ignores minified Javascript files. Anything matching -min.js
or .min.js is ignored.
* Added Groovy support (--groovy).
* Added .pm6 as a --perl extension.
* Lua can now get detected from the shebang line. Thanks, Matthew Wild.
* Added support for version numbers in executables in shebang
detection. Now if your Perl program's shebang refers to
/usr/local/bin/perl-5.14.1, ack will find it.
Release highlights
The AsciiDoc plugin architecture has been enhanced, unified and extended:
- Plugin commands have been added to the asciidoc(1) --backend option.
- An asciidoc(1) --theme option has been implemented to specify a
theme and to manage theme plugins.
- A plugin build command (for creating plugins) added.
- build, install, list and remove plugin commands are all recognized
by asciidoc(1) --backend, --filter and --theme options.
A security update by Kenny MacDermid removes the use of eval() on
untrusted input (to disallow code malicious execution).
Complete changelog can be accessed here:
http://www.methods.co.nz/asciidoc/CHANGELOG.html
Changes from previous:
1.12 Fri 17 Jun 2011
- Template::Tiny is unchanged for a year, moving to stable release
- Cleaning up POD grammar a bit (ADAMK)
- Removing test dependency on Capture::Tiny for tiny purity (ADAMK)
Changes from previous:
version 0.91: Mon Jul 11 22:40:02 CEST 2011
Fixes:
- forcearray option with one element
rt.cpan.org#69336 [Matt W Johnson]
version 0.90: Wed Jun 15 10:20:48 CEST 2011
Fixes:
- initialize XML::LibXML::Parser into safe mode.
rt.cpan.org#68803 [Yann Kerherve]
Improvements:
- new Parser and ParserOpts parameters
version 0.15: Thu Apr 28 10:22:34 CEST 2011
Fixes:
- parser object recreated each time, because it cannot be
reused (any more?). [Didier Brun]
cleanup, into a jumbo distfile patch. I've almost got a clean WARNS
build; the remaining warnings are almost certainly bugs and need
investigation by someone with deeper knowledge of rtf and/or troff
than I have.
PKGREVISION -> 3
Changes from previous:
0.41 2011.09.26
* Added a dependency to DateTime::TimeZone (leto)
0.40 2011.09.18
* Fixed tests for Windows (wchristian)
* use all upper case UTF-8 (tsgit)
0.39 2011.06.20
* Disabled external entities and network to avoid possible security flaw (yannk)
0.38 2011.05.22
* Fixed a bug where content with newlines wasn't encoded in perl >= 5.12 (emasaka)
https://rt.cpan.org/Public/Bug/Display.html?id=61637
While here,
* fixes egg-info `requires' information for python>2.6, with bump dependency on
py-docutils with egg-info.
Release 1.0.8 (Sep 23, 2011)
============================
* #627: Fix tracebacks for AttributeErrors in autosummary generation.
* Fix the ``abbr`` role when the abbreviation has newlines in it.
* #727: Fix the links to search results with custom object types.
* #648: Fix line numbers reported in warnings about undefined
references.
* #696, #666: Fix C++ array definitions and template arguments
that are not type names.
* #633: Allow footnotes in section headers in LaTeX output.
* #616: Allow keywords to be linked via intersphinx.
* #613: Allow Unicode characters in production list token names.
* #720: Add dummy visitors for graphviz nodes for text and man.
* #704: Fix image file duplication bug.
* #677: Fix parsing of multiple signatures in C++ domain.
* #637: Ignore Emacs lock files when looking for source files.
* #544: Allow .pyw extension for importable modules in autodoc.
* #700: Use ``$(MAKE)`` in quickstart-generated Makefiles.
* #734: Make sidebar search box width consistent in browsers.
* #644: Fix spacing of centered figures in HTML output.
* #767: Safely encode SphinxError messages when printing them to
sys.stderr.
* #611: Fix LaTeX output error with a document with no sections but
a link target.
* Correctly treat built-in method descriptors as methods in autodoc.
* #706: Stop monkeypatching the Python textwrap module.
* #657: viewcode now works correctly with source files that have
non-ASCII encoding.
* #669: Respect the ``noindex`` flag option in py:module directives.
* #675: Fix IndexErrors when including nonexisting lines with
:rst:dir:`literalinclude`.
* #676: Respect custom function/method parameter separator strings.
* #682: Fix JS incompatibility with jQuery >= 1.5.
* #693: Fix double encoding done when writing HTMLHelp .hhk files.
* #647: Do not apply SmartyPants in parsed-literal blocks.
* C++ domain now supports array definitions.
While here,
* register egg-info.
* switch to use external roman.py module.
* set LICENSE.
Release 0.8.1 (2011-08-30)
==========================
* General:
- Fix [ 3364658 ] (Change last file with Apache license to BSD-2-Clause)
and [ 3395920 ] (correct copyright info for rst.el).
* docutils/test/
- Apply [ 3303733 ] and [ 3365041 ] to fix tests under py3k.
* docutils/writers/latex2e/__init__.py
- Clean up Babel language setting. Restores Sphinx compatibility.
Release 0.8 (2011-07-07)
========================
* General:
- Handle language codes according to `BCP 47`_.
- If the specified language is not supported by Docutils,
warn and fall back to English.
- Math support: reStructuredText "math" role and directive,
``math`` and ``math_block`` doctree elements.
- Decode command line arguments with the locale's preferred encoding
(to allow, e.g., ``--title=Dornröschen``).
- Orphaned "python" reader and "newlatex2e" writer moved to the sandbox.
- New sub-module `error_reporting`: handle encoding/decoding errors
when reporting exceptions.
- Some additions to the Docutils core are released under the 2-Clause BSD
license, see COPYING_ for details.
.. _BCP 47: http://www.rfc-editor.org/rfc/bcp/bcp47.txt
.. _COPYING: COPYING.html
* reStructuredText:
- Most directives now support a "name" option that attaches a
reference name.
- Directive content may start on the first line also when the directive
type accepts options.
* docs/dev/policies.txt:
- Recommend the 2-Clause BSD license
(http://www.spdx.org/licenses/BSD-2-Clause)
for code that is kept under the author's copyright.
* tools/buildhtml.py:
- Fix ``--local`` switch.
* Fix [ 3018371 ] Added Lithuanian mappings by Dalius Dobravolskas.
* docutils/writers/html4css1/__init__.py
- Set "lang" argument for objects with class argument
"language-<language tag>".
- New setting "math-output" with support for HTML, MathML, and LaTeX.
* docutils/writers/latex2e/__init__.py
- Fix [ 3043986 ] AttributeError using :local: with table of content.
- Place title data in the document preamble.
- Load `babel` package only if required.
- Update list of supported languages.
- New config setting "hyperref-options".
No hard-coded "unicode" hyperref option (clash with xetex).
- Set language for custom roles, paragraphs, block-quotes, and
line-quotes with class argument "language-<language tag>".
- Fix [ 3095603 ] wrong quotes output for russian and other languages.
- Convert image URI to a local file path.
- Apply [ 3148141 ] fix multicolumn support when a colspanning cell
has more than one paragraph (Wolfgang Scherer).
- \leavevmode before longtable only when needed (prevents spurious vspace)
- do not advance table counter for tables without caption
* docutils/writers/xetex/__init__.py
- New writer generating LaTeX code for compiling with ``xelatex``.
A separate writer (inheriting from latex2e) instead of a ``--xetex``
option allows separate config options for XeTeX vs. LaTeX2e.
* docutils/writers/manpage.py
- Fix: BUG#3219183 - vertical space in definition lists containing markup.
- Fix: vertical space cleaning for option group ``.``.
* tools/editors/emacs/rst.el:
- Fix [ 3001100 ] does not handle spaces in filenames
(thanks to Jakub Wilk)
* docutils/utils.py:
- strip whitespace from stylesheet arguments
- exclude combining chars from column_width
(partial fix for [ 2926161 ])
* docutils/parsers/rst/directives/misc.py:
- Fix [ 1830389 ] Replace not breaking on getting system_messages from
nested_parse
* docutils/io.py:
- Do not close() sys.stdin, sys.stdout, or sys.stderr. Prevents
``Exception ValueError: 'I/O operation on closed file.'`` with Python 3.
Changes from previous:
1.21 Mon Dec 27 12:35:35 2010
- updated the compatibility for Text::CSV_XS version 0.80
* added getline_all() and getaline_hr_all()
* added missing test file
1.20 Wed Oct 20 13:53:59 2010
- couldn't parse the csv containing the column starting with '0'. (hiratara)
* patched by hiratara
* enhanced getline regexp (makamaka)
* resolved a bug in bleadperl-fb85c04
- added tests into t/71_pp.t (hiratara)
1.19 Sat Oct 2 14:15:59 2010
- getline didn't work correctly with 0 or null containing lines
(pointed by Bernhard Prott)
- updated the compatibility for Text::CSV_XS version 0.74
* real eol support for parsing streams (beyond \n, \r and \r\n)
* clarify doc for always_quote to not quote undef fields
and XS and PP incompatibility of UTF8 process for print and combine
Release 1.2.6 - 2011/09/29
--------------------------
Improvements
^^^^^^^^^^^^
* Improved error message on type cast.
* Added geo point value validation on type cast.
* Supported :doc:`/tutorial/query_expansion`.
* Added `--query_expansion` option to
:doc:`/commands/select` for query expansion.
* Added geometry conversion macro between degree and msec.
* Supported type cast in :doc:`/functions/geo_distance` ().
* Don't split tokens with full width space in command line. #986
* Supported conversion between TokyoGeoPoint and WGS84GeoPoint.
* Exported grn_geo_select_in_circle() and grn_geo_select_in_rectangle().
* Supported CentOS 6.
* Supported the current Debian GNU/Linux sid.
Patch by SATOH Fumiyasu. GitHub#3
Fixes
^^^^^
* Fixed a bug that geo point is loaded as broken value.
Thanks
^^^^^^
* SATOH Fumiyasu
Release 1.2.5 - 2011/08/29
--------------------------
Improvements
^^^^^^^^^^^^
* Added experimental Windows installer support.
* Accepted "#" and "-" as a valid name characters. #1043
* Accepted all valid characters except "_" as the first character. #1043
* Supported `--each` for `[...]` form :doc:`/commands/load`. #1044
* Added documentation for :doc:`/suggest`.
* Supported threshold as `--frequency_threshold` and
`--conditional_probability_threshold` options in all
:doc:`/commands/suggest` types. #1042
* [groonga-suggest-httpd] Supported log reopen by SIGUSR1. #1048
* Supported string input for reference vector column value. #1051
* [groonga-suggest-httpd] Added `--n-lines-per-log-file`
option that changes log line limitation for a file.
* [groonga-suggest-httpd] Added `p` parameter for
`--conditional_probability_threshold`.
* Added GRN_CTX_PER_DB flag for grn_ctx_init() and grn_ctx_open(). #1053
* Exported grn_ctx_close(). #1035
Fixes
^^^^^
* Fixed a crash bug that invalid value is passed as match expression
argument in :doc:`/commands/select`. #1047
* Fixed a bug that hash table cursor returns garbage records.
Changes from previous:
2011-09-07 0.85 - H.Merijn Brand <h.m.brand@xs4all.nl>
* NAME / DISTNAME in Makefile.PL
2011-09-07 0.84 - H.Merijn Brand <h.m.brand@xs4all.nl>
* More cross-checks for META data
2011-08-07 0.83 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Fix spurious auto_diag warning (RT#69673)
* Tested with 50 versions of perl, including 1.15.1
2011-05-01 0.82 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Doc fix (RT#66905, Peter Newman)
* Documentation overhaul (pod links)
2011-03-07 0.81 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Add is_missing ()
* Doc overhaul
* Fix Build on OpenVMS (RT#65654, Martin P.J. Zinser)
* Fix SetDiag () leak (RT#66453, Sven Scholing)
2010-12-24 0.80 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Implement getline_all () and getaline_hr_all ()
* Fixed another parsing for eol = \r (RT#61525)
2010-11-26 0.79 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Use correct type for STRLEN (HP-UX/PA-RISC/32)
* More code coverage
* EOF unreliable when line-end missing at eof
2010-11-26 0.78 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Version 0.77 broke MacOS exported CSV files with only \r
2010-10-23 0.77 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Internals now use warn () instead of (void)fprintf (stderr, ...)
Now the test in t/80_diag also passes on Windows
* Better parsing for eol = \r and set as such (RT#61525)
* Workaround for AIX cpp bug (RT#62388, Jan Dubois)
2010-10-09 0.76 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Windows doesn't support STDERR redirection as used in t/80_diag
2010-10-05 0.75 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Fixed undefinedness of $\ in print (RT#61880)
2010-09-29 0.74 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Spelling fixes
* Real eol support for parsing streams (beyond \n, \r and \r\n)
* Clarify doc for always_quote to not quote undef fields
* Clarify UTF8 process for print () and combine ()
Major changes since 1.7:
- Improve syntax highlighting of preformatted text blocks to better
distinguish them from list items with hanging indentation and nested
list items.
- Match italic and bold text and inline code fragments across line
breaks, within a single block, but prevent them from matching across
blocks.
- Generally improve multi-line font lock by extending the search
region to include full blocks.
- Fixed an issue, reported by Joost Kremners, where for multi-line
lists, the position of the list marker was not being added to the
list of possible indentation levels.
- Make indentation work when the previous line is not indented.
- Avoid a problem where indentation positions were getting skipped
over when tab cycling.
- Fixed an issue when column 0 is the natural automatic indentation stop.
- Set tab width to 4, the natural tab width for Markdown documents.
- Stop announcing “TAB” in the minibuffer when tab is pressed.
Changelog:
Version 1.0.1 - September 2011, by Martin von Gagern
Updated Polish, Ukrainian, Slovenian, Dutch, Finnish, Swedish and Czech translations
Version 1.0.0 - September 2011, by Martin von Gagern
Changed major version to 1 to reflect maturity of the package
Updated Dutch, French, Danish and Slovenian translations
Added Ukrainian translation
Improved error reporting in case a child process has problems
Added tests to the test suite
Updated gnulib
2011-09-12 (1.6.0)
* Extract utilities (prettifier and GUI-editor) in its own gem json-utils.
* Split json/add/core into different files for classes to be serialised.
(Dependency to devel/ruby-spruz has gone to force coming ruby-json-utils.)
2011-09-12 (1.6.0)
* Extract utilities (prettifier and GUI-editor) in its own gem json-utils.
* Split json/add/core into different files for classes to be serialised.
= Release History
== 2.2.2 / 2011-08-13 Charlie Savage
* ++API CHANGE+++
Reader#relax_ng_validate now takes a RelaxNG object. This is
what the documentation has always said it takes, but it previously
took a string. In addition, it now returns true or false instead of 0 or -1.
Reader#schema_validate now takes a Schema object. This is
what the documentation has always said it takes, but it previously
took a string. In addition, it now returns true or false instead of 0 or -1.
Fixes GitHub issue #30.
* Added Parser::Context#close and HTMLParser::Context#close methods that
allow the underlying io stream (file, string, etc) to be closed. Once a
parser is done parsing its data, it now calls one of these methods.
This means that if you parse thousands of files at the same time,
without running Ruby's garbage colllector, you won't get a too
many files open error. Fixes GitHub issue #29.
* Fixed bug where Node#inner_xml caused an error when it had no child nodes.
Fixes GitHub issues #31
* Don't require 'rake' in the gemspec to avoid annoying Bunlder bugs
2011-08-31 (1.5.4)
* Fix memory leak when used from multiple JRuby. (Patch by
jfirebaugh@github).
* Apply patch by Eric Wong <nocode@yhbt.net> that fixes garbage collection
problem reported in https://github.com/flori/json/issues/46.
* Add :quirks_mode option to parser and generator.
* Add support for Rational and Complex number additions via json/add/complex
and json/add/rational requires.
== 1.1.3 / 2011-08-27
* Converted to 'hoe' for release.
* Converted tests to RSpec 2.
* Extracted the body of htmldiff into a class available from
diff/lcs/htmldiff.
* Migrated development and issue tracking to GitHub.
* Bugs fixed:
- Eliminated the explicit use of RubyGems in both bin/htmldiff and bin/ldiff.
Resolves issue 4 (https://github.com/halostatue/diff-lcs/issues/4).
- Eliminated Ruby warnings. Resolves issue 3
(https://github.com/halostatue/diff-lcs/issues/3).
definitions (weak and non-weak). GNU as silently discards the weak
symbol in this case, but LLVM is more strict.(weak and non-weak). GNU as
silently discards the weak symbol in this case, but LLVM is more strict.
02-09-2011: version 1.11.7
Added demandoc utility for stripping away macros and escapes. This
replaces the historical deroff utility. Also improved the mdoc and
man manuals.
16-08-2011: version 1.11.6
Handling of tr macro in roff implemented. This makes Perl documentation
much more readable. Hyphenation is also now enabled in man format
documents. Many other general improvements have been implemented.
Furthermore, a 64-bit Windows binary is now available at mdocml-win64.zip
and a Mac OS X universal binary is available at mdocml-macosx.zip.
24-07-2011: version 1.11.5
Significant eqn improvements. mdocml can now parse arbitrary eqn
input (although few GNU extensions are accepted, nor is mixing
low-level roff with eqn). See the eqn manual for details. For the
time being, equations are rendered as simple in-line text. The
equation parser satisfies the language specified in the Second
Edition User's Guide.
This is also the first release featuring a distributed Windows
binary, available at /binaries/mdocml-win32.zip.
12-07-2011: version 1.11.4
Bug-fixes and clean-ups across all systems, especially in makewhatis
(note: still not connected to the general build and must be compiled
with make makewhatis) and the man parser. This release was
significantly assisted by participants in OpenBSD's c2k11. Thanks!
26-05-2011: version 1.11.3
Introduce locale-encoding of output with the -Tlocale output option
and Unicode escaped-character input. See mandoc and mandoc_char,
respectively, for details. This allows for non-ASCII characters
(e.g., \[u5000]) to be rendered in the locale's encoding, if said
environment supports wide-character encoding (if it does not,
-Tascii is used instead). Locale support can be turned off at
compile time by removing -DUSE_WCHAR in the Makefile, in which case
-Tlocale is always a synonym for -Tascii.
Furthermore, multibyte-encoded documents, such as those in UTF-8,
may be on-the-fly recoded into mandoc input by using the newly-added
preconv utility. Note: in the future, this feature may be integrated
into mandoc.
12-05-2011: version 1.11.2
Corrected some installation issues in version 1.11.1. Further
migration to libmandoc. Initial public release (this utility is
very much under development) of makewhatis, initially named mandoc-db.
This utility produces keyword databases of manual content mandoc-cgi,
mandoc-tools, which features semantic querying of manual content.
* internal attributes now raise an internal attribute error now instead
of returning an undefined. This fixes problems when passing undefined
objects to Python semantics expecting APIs.
* traceback support now works properly for PyPy. (Tested with 1.4)
* implemented operator intercepting for sandboxed environments. This
allows application developers to disable builtin operators for better
security. (For instance limit the mathematical operators to actual
integers instead of longs)
* groupby filter now supports dotted notation for grouping by attributes
of attributes.
* scoped blocks not properly treat toplevel assignments and imports.
Previously an import suddenly "disappeared" in a scoped block.
* automatically detect newer Python interpreter versions before loading code
from bytecode caches to prevent segfaults on invalid opcodes. The segfault
in earlier Jinja2 versions here was not a Jinja2 bug but a limitation in
the underlying Python interpreter. If you notice Jinja2 segfaulting in
earlier versions after an upgrade of the Python interpreter you don't have
to upgrade, it's enough to flush the bytecode cache. This just no longer
makes this necessary, Jinja2 will automatically detect these cases now.
* the sum filter can now sum up values by attribute. This is a backwards
incompatible change. The argument to the filter previously was the
optional starting index which defaultes to zero. This now became the
second argument to the function because it's rarely used.
* like sum, sort now also makes it possible to order items by attribute.
* like sum and sort, join now also is able to join attributes of objects
as string.
* the internal eval context now has a reference to the environment.
* added a mapping test to see if an object is a dict or an object with
a similar interface.
This release adds support for context on GtkBuilder UI elements, fixes for out-
of-source tree builds and a few intltool-update fixes for Windows and .py.in.
2.41 2011-06-01 (by Todd Rinaldo
- Tests are cleaned. promoting to stable. No changes since 2.40_02
2.40_02 2011-05-31 (by Todd Rinaldo)
- TODO some tests which fail in Free BSD due to improper expat CVE patch
http://www.freebsd.org/cgi/query-pr.cgi?pr=157469
2.40_01 2011-05-24 (by Todd Rinaldo)
- better installation instructions
- Small spelling patches from Debian package - Thanks Nicholas Bamber
- RT 68399 - Upgrade Devel::CheckLib to 0.93 to make it
perl 5.14 compliant - qw()
- RT 67207 - Stop doing tied on globs - Thanks sprout
- RT 31319 - Fix doc links in POD for XML/Parser.pm
kramdown is a free GPL-licensed Ruby library for parsing and
converting a superset of Markdown. It is completely written in Ruby,
supports standard Markdown (with some minor modifications) and various
extensions that have been made popular by the PHP Markdown Extra
package and Maruku.
2011-06-20 (1.5.3)
* Alias State#configure method as State#merge to increase duck type synonymy
with Hash.
* Add as_json methods in json/add/core, so rails can create its json objects
the new way.
Queequeg is a tiny English grammar checker for non-native speakers
who are not used to verb conjugation and number agreement. We
especially focus on people who're writing academic papers or business
documents where thorough checking is required. We aim to reduce
this laborious work with automated checking. Queequeg is named
after a character in Herman Melville's masterpiece.
Tilt is a thin interface over a bunch of different Ruby template engines in
an attempt to make their usage as generic possible. This is useful for web
frameworks, static site generators, and other systems that support multiple
template engines but don't want to code for each of them individually.
The following features are supported for all template engines (assuming the
feature is relevant to the engine):
* Custom template evaluation scopes / bindings
* Ability to pass locals to template evaluation
* Support for passing a block to template evaluation for "yield"
* Backtraces with correct filenames and line numbers
* Template file caching and reloading
* Fast, method-based template source compilation
The primary goal is to get all of the things listed above right for all
template engines included in the distribution.