pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/textproc/ruby-redcloth Update ruby-redcloth package to...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/466db7afa74e
branches:  trunk
changeset: 498890:466db7afa74e
user:      taca <taca%pkgsrc.org@localhost>
date:      Mon Sep 05 03:52:49 2005 +0000

description:
Update ruby-redcloth package to 3.0.3.

- version: 3.0.3
  date: 2005-02-06
  changes:
    - Stack overflow regexp on code inlines obliterated.
    - Citations scaled back.
    - Toggle span tags on CAPS with :no_span_tags accessor.

- version: 3.0.2
  date: 2005-02-02
  changes:
    - Stack overflow Regexps replaced.
    - All code blocks protected from formatting.
    - Hard breaks working.
    - Filter HTML now uses detailed cleaner.

- version: 3.0.1
  date: 2004-11-15
  changes:
    - Using `float' rather than `text-align' to align image blocks.
    - Shelving more HTML attributes to prevent them from clashing with Textile glyphs.
    - Simplifying the block regexp.

- version: 3.0
  date: 2004-10-26
  changes:
    - Broke up the Textile engine into smaller parts, recoded central block parser.
    - Added preliminary support for Markdown.
    - Added support for custom Textile prefixes.
    - RedCloth now generates XHTML fragments.
    - Complete HTML documents should now work, RedCloth ignores complex HTML.

- version: 2.0.12
  date: 2004-08-09
  changes:
    - Escaping tighter for <pre> tags that share a single line.
    - No more String#htmlesc!.  Moved to RedCloth#htmlesc.
    - Pruned out the code that was handling multibyte.

- version: 2.0.11
  date: 2004-06-01
  changes:
    - Fixed the new 2.0-style aliased links.
    - Lines starting with div opening or closing tags aren't given paragraph tags.
    - Escaped some sample markup that was being translated by RDoc.
    - Subtle changes to the quick tags to help them interact with surrounding HTML better.
    - Ensure angle brackets inside code quick tags get escaped.
    - New patch and test by F. Ros to fix <pre> tags with class settings.
    - Commented out encode_entities and fix_entities, they do nothing now.  Thanks, Denis.
    - Scaled back QTAGS a back to avoid mixing up hyphens and dels.  Thanks, Denis.
    - Work on the references to ensure they are generating at least XHTML 1.0 Transitional.

- version: 2.0.10
  date: 2004-05-26
  changes:
    - Table and list problems.  Rewrote the <pre> handling code.. again.

- version: 2.0.9
  date: 2004-05-26
  changes:
    - Improved RDoc.  Ri documentation is auto-installed now!
    - Links were consuming closing HTML tags.  (See latest test in tests/links.yml.)
    - Further speed patch from Denis.  Good good.
    - Patch by F. Ros to fix <pre> tags with class settings.

- version: 2.0.8
  date: 2004-05-22
  changes:
    - First scan of the glyphs() method only scans for pre|notextile|code, the
      deeper passes scan for all HTML.  Now inlines work around HTML tags!
      (What a pain!)
    - Moved tables and blocks into glyphs to keep them shielded from the parser
      if they are in <pre> tags.
    - Patch by Denis Mertz to speed up RedCloth by compiling the various RegExps
      only once.  Thanks, David!

- version: 2.0.7
  date: 2004-04-21
  changes:
    - New REFERENCE and QUICK-REFERENCE.  See http://hobix.com/textile/.
    - Lists rewritten to accomplish better line folding.
    - Better, greedier links.
    - Additional link and list tests.

- version: 2.0.6
  date: 2004-04-16
  changes:
    - Bold and strong tags were mixed up.  '*' is now strong.  '**' is bold.
      They were swapped until now.
    - Horizontal alignments were pretty buggy.  Combining alignments with
      indents was totally broken.
    - Fixed table problem.  Now glyphs are handled between tables and blocks.
    - Nested <pre> and <code> tags are now escaped.  Much better handling of
      HTML inside <pre> tags.  Really: quite nice.
    - Patch from Florian Gross to fix an html filtration inconsistency.

diffstat:

 textproc/ruby-redcloth/Makefile |  10 +++++-----
 textproc/ruby-redcloth/distinfo |   8 ++++----
 2 files changed, 9 insertions(+), 9 deletions(-)

diffs (39 lines):

diff -r 431b3f15ff92 -r 466db7afa74e textproc/ruby-redcloth/Makefile
--- a/textproc/ruby-redcloth/Makefile   Mon Sep 05 00:48:33 2005 +0000
+++ b/textproc/ruby-redcloth/Makefile   Mon Sep 05 03:52:49 2005 +0000
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.1.1.1 2005/03/26 16:16:44 minskim Exp $
+# $NetBSD: Makefile,v 1.2 2005/09/05 03:52:49 taca Exp $
 
-DISTNAME=      redcloth-${VER}
-PKGNAME=       ${RUBY_PKGPREFIX}-${DISTNAME}
+DISTNAME=      RedCloth-${VER}
+PKGNAME=       ${RUBY_PKGPREFIX}-redcloth-${VER}
 CATEGORIES=    textproc
-MASTER_SITES=  http://rubyforge.org/frs/download.php/514/
+MASTER_SITES=  http://rubyforge.org/frs/download.php/2896/
 
 MAINTAINER=    rasputnik%hellooperator.net@localhost
 HOMEPAGE=      http://www.whytheluckystiff.net/ruby/redcloth/
@@ -11,7 +11,7 @@
 
 USE_RUBY_SETUP=        yes
 RUBY_SETUP=    install.rb
-VER=           2.0.5
+VER=           3.0.3
 
 post-install:
        ${INSTALL_DATA_DIR} ${RUBY_DOCDIR}/redcloth
diff -r 431b3f15ff92 -r 466db7afa74e textproc/ruby-redcloth/distinfo
--- a/textproc/ruby-redcloth/distinfo   Mon Sep 05 00:48:33 2005 +0000
+++ b/textproc/ruby-redcloth/distinfo   Mon Sep 05 03:52:49 2005 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.2 2005/05/25 13:43:26 wiz Exp $
+$NetBSD: distinfo,v 1.3 2005/09/05 03:52:49 taca Exp $
 
-SHA1 (ruby/redcloth-2.0.5.tar.gz) = e731968b059a54616e0f177930b92c3d9ec51a10
-RMD160 (ruby/redcloth-2.0.5.tar.gz) = 7463cb86dfc57330b76245fa0c398dad4b839ff0
-Size (ruby/redcloth-2.0.5.tar.gz) = 18717 bytes
+SHA1 (ruby/RedCloth-3.0.3.tar.gz) = b08cf51a537fa14957d9cbceb72e08f2acc7608b
+RMD160 (ruby/RedCloth-3.0.3.tar.gz) = fc6bf6bedab2c76c488e054b532b8867ffa3aab0
+Size (ruby/RedCloth-3.0.3.tar.gz) = 37096 bytes



Home | Main Index | Thread Index | Old Index