pkgsrc/textproc/ruby-redcloth/PLIST

71 lines
2.7 KiB
Text
Raw Normal View History

2014-03-17 15:30:38 +01:00
@comment $NetBSD: PLIST,v 1.14 2014/03/17 14:34:33 taca Exp $
2005-09-22 03:40:23 +02:00
bin/redcloth
${GEM_HOME}/cache/${GEM_NAME}.gem
2014-03-17 15:30:38 +01:00
${GEM_EXTSDIR}/redcloth_scan.${RUBY_DLEXT}
${GEM_LIBDIR}/.gemtest
${GEM_LIBDIR}/.rspec
Update ruby-redcloth to 4.0.4. *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 @&lt;br /&gt;@ 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.
2008-10-03 03:31:12 +02:00
${GEM_LIBDIR}/CHANGELOG
${GEM_LIBDIR}/COPYING
${GEM_LIBDIR}/Gemfile
${GEM_LIBDIR}/README.rdoc
Update ruby-redcloth to 4.0.4. *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 @&lt;br /&gt;@ 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.
2008-10-03 03:31:12 +02:00
${GEM_LIBDIR}/Rakefile
${GEM_LIBDIR}/bin/redcloth
${GEM_LIBDIR}/doc/textile_reference.html
Update ruby-redcloth to 4.0.4. *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 @&lt;br /&gt;@ 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.
2008-10-03 03:31:12 +02:00
${GEM_LIBDIR}/ext/redcloth_scan/extconf.rb
${GEM_LIBDIR}/ext/redcloth_scan/redcloth.h
${GEM_LIBDIR}/ext/redcloth_scan/redcloth_attributes.c
${GEM_LIBDIR}/ext/redcloth_scan/redcloth_inline.c
${GEM_LIBDIR}/ext/redcloth_scan/redcloth_scan.c
${GEM_LIBDIR}/lib/case_sensitive_require/RedCloth.rb
${GEM_LIBDIR}/lib/redcloth.rb
${GEM_LIBDIR}/lib/redcloth/erb_extension.rb
Update ruby-redcloth to 4.0.4. *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 @&lt;br /&gt;@ 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.
2008-10-03 03:31:12 +02:00
${GEM_LIBDIR}/lib/redcloth/formatters/base.rb
${GEM_LIBDIR}/lib/redcloth/formatters/html.rb
${GEM_LIBDIR}/lib/redcloth/formatters/latex.rb
${GEM_LIBDIR}/lib/redcloth/formatters/latex_entities.yml
${GEM_LIBDIR}/lib/redcloth/textile_doc.rb
${GEM_LIBDIR}/lib/redcloth/version.rb
${GEM_LIBDIR}/lib/redcloth_scan.jar
Update ruby-redcloth to 4.0.4. *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 @&lt;br /&gt;@ 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.
2008-10-03 03:31:12 +02:00
${GEM_LIBDIR}/lib/redcloth_scan.${RUBY_DLEXT}
${GEM_LIBDIR}/lib/tasks/pureruby.rake
${GEM_LIBDIR}/redcloth.gemspec
${GEM_LIBDIR}/spec/benchmark_spec.rb
${GEM_LIBDIR}/spec/custom_tags_spec.rb
${GEM_LIBDIR}/spec/erb_spec.rb
${GEM_LIBDIR}/spec/extension_spec.rb
${GEM_LIBDIR}/spec/fixtures/basic.yml
${GEM_LIBDIR}/spec/fixtures/code.yml
${GEM_LIBDIR}/spec/fixtures/definitions.yml
${GEM_LIBDIR}/spec/fixtures/extra_whitespace.yml
${GEM_LIBDIR}/spec/fixtures/filter_html.yml
${GEM_LIBDIR}/spec/fixtures/filter_pba.yml
${GEM_LIBDIR}/spec/fixtures/html.yml
${GEM_LIBDIR}/spec/fixtures/images.yml
${GEM_LIBDIR}/spec/fixtures/instiki.yml
${GEM_LIBDIR}/spec/fixtures/links.yml
${GEM_LIBDIR}/spec/fixtures/lists.yml
${GEM_LIBDIR}/spec/fixtures/poignant.yml
${GEM_LIBDIR}/spec/fixtures/sanitize_html.yml
${GEM_LIBDIR}/spec/fixtures/table.yml
${GEM_LIBDIR}/spec/fixtures/textism.yml
${GEM_LIBDIR}/spec/fixtures/threshold.yml
${GEM_LIBDIR}/spec/formatters/class_filtered_html_spec.rb
${GEM_LIBDIR}/spec/formatters/filtered_html_spec.rb
${GEM_LIBDIR}/spec/formatters/html_no_breaks_spec.rb
${GEM_LIBDIR}/spec/formatters/html_spec.rb
${GEM_LIBDIR}/spec/formatters/id_filtered_html_spec.rb
${GEM_LIBDIR}/spec/formatters/latex_spec.rb
${GEM_LIBDIR}/spec/formatters/lite_mode_html_spec.rb
${GEM_LIBDIR}/spec/formatters/no_span_caps_html_spec.rb
${GEM_LIBDIR}/spec/formatters/sanitized_html_spec.rb
${GEM_LIBDIR}/spec/formatters/style_filtered_html_spec.rb
${GEM_LIBDIR}/spec/parser_spec.rb
${GEM_LIBDIR}/spec/spec_helper.rb
${GEM_LIBDIR}/tasks/compile.rake
${GEM_LIBDIR}/tasks/gems.rake
${GEM_LIBDIR}/tasks/ragel_extension_task.rb
${GEM_LIBDIR}/tasks/release.rake
${GEM_LIBDIR}/tasks/rspec.rake
${GEM_LIBDIR}/tasks/rvm.rake
${GEM_HOME}/specifications/${GEM_NAME}.gemspec