* Include XML_Util 1.2.1 which should be included from 1.9.0.
Release date: 2011-06-04 23:46 UTC
Release state: stable
Changelog:
* Fixed Bug #17744: Empty changelog causes fatal error in setChangelogentry
[dufuz]
* Fixed Bug #18340: raiseErro typo [doconnor]
* Fixed Bug #18349: package.xml version not recognized when single quoted
[dufuz]
* Fixed Bug #18364: date.timezone errors for sh/bat files when TZ is not set
in php.ini [dufuz]
* Fixed Bug #18388: Parenteses error in REST.php line 232 [dufuz]
* Fixed Bug #18428: invalid preg_match patterns [glen]
* Fixed Bug #18486: REST/10.php does not check error condition [dufuz]
* Fixed a problem in RunTest and code coverage. Correctly register the
code coverage shutdown function in case we are inside a namespace. [sebastian]
* Fixed a bug with extensions not providing their config.m4 and co in the root
directory of their pecl package but rather in a sub directory, such as
xhprof. [dufuz]
2010-09-12 01:30 Rocky Bernstein
* ChangeLog, doc/home-page.html, doc/rdebug-emacs.texi,
lib/ChangeLog, test/pm.rb: pm.rb: spelling mistake
2010-08-13 05:32 Rocky Bernstein
* ChangeLog, cli/ruby-debug/commands/frame.rb,
cli/ruby-debug/helper.rb, cli/ruby-debug/processor.rb,
ext/ruby_debug.c, lib/ChangeLog: Add Debugger.inside_emacs?
Environment variable EMACS for inside Emacs is deprecated in
favor of INSIDE_EMACS. Rubyforge #28465.
2010-08-03 02:53 Rocky Bernstein
* emacs/rdebug-breaks.el: Off by one on showing breakpoint
positions
2010-08-02 19:07 Rocky Bernstein
* doc/rdebug-emacs.texi: More small document changes
2010-08-02 18:03 Rocky Bernstein
* doc/rdebug-emacs.texi: A couple more small emacs doc changes
2010-08-02 17:45 Rocky Bernstein
* doc/rdebug-emacs.texi, emacs/INSTALL, emacs/README: More small
changes to docs.
2010-08-02 12:51 Rocky Bernstein
* CHANGES, ChangeLog, INSTALL.SVN, configure.ac, emacs/AUTHORS,
emacs/INSTALL, emacs/Makefile.am, emacs/README, emacs/rdebug.el,
lib/ChangeLog: Go over installation instructions for Emacs.
Add a basic files, README, INSTALL and AUTHORS.
Change version from 0.10.4vc to 0.10.4rc1
2009-11-28 22:56 Rocky Bernstein
* ChangeLog, emacs/rdebug-annotate.el, emacs/rdebug-breaks.el,
emacs/rdebug-core.el, emacs/rdebug-info.el,
emacs/rdebug-source.el, emacs/rdebug-track.el, lib/ChangeLog: Fix
problem caused by gdb-ui renamed to gdb-mi. Rubyforge tracker
#27152
Remove all Emacs byte compile warning messages.
Note however all of this code will eventually be phased out in
favor
of emacs-dbgr (on github).
2009-03-31 09:49 Rocky Bernstein
* emacs/rdebug-locring.el: Comment change
2009-03-11 18:57 Rocky Bernstein
* cli/ruby-debug/commands/catchpoint.rb, emacs/rdebug-core.el,
emacs/rdebug-track.el, emacs/test/test-regexp.el: Update "catch"
command help string. Reindent some emacs files to make tests
happy.
2009-02-10 04:32 Rocky Bernstein
* emacs/rdebug-core.el: Remove the annoying disappearing command
window when we there's an initial error in running the Ruby
program
= Prawn: Fast, Nimble PDF Generation For Ruby
Prawn is a PDF writing library for Ruby designed to be tiny, fast, and nimble,
just like the majestic sea creature.
Development on this library was initially made possible thanks to
the many people who donated to the Ruby Mendicant project:
http://rubymendicant.wikidot.com
The project is currently maintained by Gregory Brown, with lots of help from
Prawn's core developers and the community.
The PDF::Reader library implements a PDF parser conforming as much as
possible to the PDF specification from Adobe.
It provides programmatic access to the contents of a PDF file with
a high degree of flexibility.
The PDF 1.7 specification is a weighty document and not all aspects
are currently supported. I welcome submission of PDF files that
exhibit unsupported aspects of the spec to assist with improving out
support.
Net::LDAP for Ruby (also called net-ldap) implements client access for the
Lightweight Directory Access Protocol (LDAP), an IETF standard protocol for
accessing distributed directory services. Net::LDAP is written completely in
Ruby with no external dependencies. It supports most LDAP client features
and a subset of server features as well.
Net::LDAP has been tested against modern popular LDAP servers including
OpenLDAP and Active Directory. The current release is mostly compliant with
earlier versions of the IETF LDAP RFCs (2251-2256, 2829-2830, 3377, and 3771).
Our roadmap for Net::LDAP 1.0 is to gain full *client* compliance with
the most recent LDAP RFCs (4510-4519, plus portions of 4520-4532).
from the ChangeLog:
Add support for decoding OBEX Action command.
Add support for decoding SMP commands.
Add support for decoding ATT commands.
Add support for missing LE decoding.
(contains fixes for PR#43823).
2011.0517:
Bugfix from Sophie Hamilton: call tzset() when changing timezones.
Bugfix: bail out of tests cleanly when tzset doesn't work.
2011.0505:
Bugfix: make sure $ampm is defined so no undefined string warnings
are issued.
Honor the GMT flag when parsing time specs. Patch from
kris at shannon.id.au.
Bugfix: RT#31477 noon & midnight would match in the middle of strings.
Added %v conversion for Time::CTime
Added tests to disprove invalid bug reports.
It is required by new ruby-linecache package.
Ruby 1.9's relative_relative for Rubinus and MRI 1.8
Here we add in Module RequireRelative method: *require_relative*,
and *abs_file*.
Example:
require 'rubygems'; require 'require_relative'
require_relative './lib/foo'
absolute_path = RequireRelative.abs_file
But why *abs_file*? Well, recall that ==__FILE__== does not give an absolute
path. So if you have chdir'd before using ==__FILE__==, you might not be
able to retrieve the full path.
Based on PR#44939 by Susumu Miwa.
Modified by Makoto Fujiwawa and me in pkgsrc-wip.
Quickml server provides very-easy-to-use mailing list service.
It was too open in this age, some limitation is provided in
this package. The original code is written by Satoru Takabayashi.
PR#44976 by David H. Gutteridge.
This module implements the Wagner-Fischer dynamic programming
technique, used here to calculate the edit distance of two strings.
The edit distance is a measure of the degree of proximity between two
strings, based on "edits": the operations of substitutions, deletions
or insertions needed to transform the string into the other one (and
vice versa). The module is designed to be easily extensible by
functioning as a base class for other modules.
PR#44975 by David H. Gutteridge.
This module leverages Algorithm::Diff to let you compare the degree of
sameness of arrays or strings. It returns a result set that defines
exactly how similar these things are.