Next | Query returned 34 messages, browsing 21 to 30 | Previous

History of commit frequency

CVS Commit History:


   2015-12-11 22:29:27 by Thomas Klausner | Files touched by this commit (1)
Log message:
Remove unnecessary FILES_SUBST, already in there. Noted by taca.
   2015-12-11 12:46:31 by Thomas Klausner | Files touched by this commit (2)
Log message:
Fix ALTERNATIVES file. Bump PKGREVISION.
   2015-11-04 03:00:17 by Alistair G. Crooks | Files touched by this commit (797)
Log message:
Add SHA512 digests for distfiles for textproc category

Problems found locating distfiles:
	Package cabocha: missing distfile cabocha-0.68.tar.bz2
	Package convertlit: missing distfile clit18src.zip
	Package php-enchant: missing distfile php-enchant/enchant-1.1.0.tgz

Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden).  All existing
SHA1 digests retained for now as an audit trail.
   2015-10-04 15:32:49 by Takahiro Kambe | Files touched by this commit (3) | Package updated
Log message:
Update ruby-kramdown to 1.9.0.

kramdown 1.9.0 released

This release contains some minor updates and bug fixes.

Changes

  * 3 minor changes:

    - The Rouge syntax highlighter can now be enabled/disabled for spans
      and/or blocks and options can now be set for both spans and blocks as
      well as only for spans or only for blocks (fixes #286, requested by
      Raphael R.)
    - Setting the ‘footnote_backlink’ option to an empty string now
      completely suppresses footnotes (fixes #270, requested by Kyle Barbour)
    - New converter HashAST for creating a hash from the internal tree
      structure (fixes #275, pull request by Hector Correa)

  * 1 bug fix:

    - When using the ‘hard_wrap’ option for the GFM parser, line numbers
      were lost (fixes #274, pull request by Marek Tuchowski) Published on
      Saturday, 04 July 2015
   2015-09-13 17:21:30 by Takahiro Kambe | Files touched by this commit (3) | Package updated
Log message:
Update ruby-kramdown to 1.8.0.

kramdown 1.8.0 released

This release contains only some minor updates and bug fixes.

Changes

* 4 minor changes:

  - The LaTeX converter now uses \texttt instead of \tt for code spans (fixes
    #257, reported by richard101696)

  - New option footnote_backlink for changing the backlink of footnotes in the
    HTML converter (fixes #247, requested by Benjamin Esham)

  - A quote directly followed by an ellipsis is now converted into an opening
    quotation mark (fixes #253, requested by Michael Franzl)

  - Removed warning for self-closing HTML elements that are not self-closed
    (fixes #262, requested by Gregory Pakosz)

* 3 bug fixes:

- Fixed #251: The special character sequence \` now works correctly when used
  in footnotes or headers that appear in the table of contents (reported by
  Peter Kehl)

- Fixed #254: kramdown crashed on encountering a table with multiple
  consecutive separator lines (reported by Christian Kruse)

- Fixed #256: Certain footnote definitions and codeblocks lead to crashes or
  unneeded backtracking in the regular expression engine - fixed by using
  atomic grouping (reported by Ali Ok)
   2015-06-11 18:23:35 by Takahiro Kambe | Files touched by this commit (3)
Log message:
Update ruby-kramdown to 1.7.0.

kramdown 1.7.0 released			Published on Monday, 27 April 2015

This release brings among other things support for the ‘minted’ syntax
highlighter for LaTeX and a new math engine based on MathJax-Node that outputs
to MathML.

Changes

* 4 minor changes:

  - The syntax highlighter ‘minted’ for the LaTeX converter is now \ 
available
    (fixes issue #93, initial patch #242 by l3kn)
  - A new math engine based on MathJax-Node that outputs to MathML is now
    available (patch #240 by Tom Thorogood)
  - Fixed #244, #246: Fenced code blocks now allow a dash in the code language
    name (requested and patched by Dennis Günnewig)
  - The option list in the man page as well in the output of kramdown --help
    is now sorted.

* 2 bug fixes:

  - Fixed #230: Warning message for method in
    lib/kramdown/utils/configurable.rb will not show anymore (reported by
    Robert A. Heiler)
  - Fixed #239: Handling of single/double quotes in reference style links now
    follows the same rules as with inline links (reported by Josh Davis)

kramdown 1.6.0 released			Published on Saturday, 28 February 2015

This release contains many fixes and minor enhancements as well as one major
goodie that comes with a small caveat: block IALs can now be applied to link
and abbreviation definitions!

It may not sound like much but allowing block IALs to be applied to link
definitions alleviates the problem that additional attributes could only be
specified via span IALs. Now such attributes can be stored together with the
URL and title at the link definition, for example:

	This is a ![resized image].

	[resized image]: some_image.jpg "with a title"
	{: height="36px" width="36px" style="border: 1px solid \ 
green"}

There is one small caveat, though. Regard the following construct:

	[linkdef]: http://example.com
	{:.block-ial}
	block element, e.g. a paragraph

The block IAL would have been applied to the paragraph in previous versions
but now it is applied to the link definition. However, such a construct is not
very likely encountered in the real world.

Changes

* 7 minor changes:

  - Block IALs can now be applied to link and abbreviation definitions
    (inspired by issue #194 from cabo)
  - The syntax highlighting engine for Rouge now allows custom formatter
    classes to be used (issue #214, requested by BackOrder)
  - The MathJax math engine now allows adding previews (issue #225, requested
    by jethrogb)
  - The “toc_levels” option can now also take a Range object (pull request
    #210 by Jens Krämer)
  - The generated table of contents of the HTML converter now contains ID
    attributes on the links so that back-references can be used (issue #195,
    requested by Ciro Santilli)
  - A warning is now generated when duplicate HTML attributes are detected
    (issue #201, requested by winniehell)
  - Updated used version of prawn to 2.0.0

8 bug fixes:

  - Fixed #192: Emphasis by using underscore sometimes wrongly worked within a
    word (reported by Michael Franzl)
  - Fixed #198: Empty alt attributes on <img> tags are now correctly handled
    by the kramdown converter (reported by winniehell)
  - Fixed #200: Trailing whitespace is now really removed in paragraphs
    (reported by winniehell)
  - Fixed #220: HTML blocks with attributes weren’t correctly detected when
    directly after another block (reported by Bill Tozier)
  - Fixed #199: Empty title attributes are now ignored for images when using
    the kramdown converter (reported by and pull request #206 from winniehell)
  - Leading and trailing white space from math statements is now stripped as
    the whitespace sometimes lead to LaTeX conversion errors
  - Fixed #226: Class names may now start with a dash in IALs/ALDs (reported
    by Adam Hardwick)
  - Multiple consecutive block IALs before an element are now correctly
    processed
   2015-03-13 17:13:29 by Takahiro Kambe | Files touched by this commit (5)
Log message:
Update ruby-kramdown to 1.5.0.

* pkgsrc change: add pkg_alternatives support.

Changes are too many to write here, please refer
http://kramdown.gettalong.org/news.html.
   2013-02-11 10:08:16 by Takahiro Kambe | Files touched by this commit (3)
Log message:
Update ruby-kramdown to 0.14.2.

Changes

* 1 minor change
	New option link_defs for pre-defining link definitions

* 1 bug fix
	Fixed raised errors on atx headers without text
   2012-12-17 15:29:27 by Takahiro Kambe | Files touched by this commit (3)
Log message:
Update ruby-kramdown to 0.14.1.

    Fixed GH#30: Specifying empty definitions for a definition list now works

    Better fix for the output of closed/open elements

    Using the already defined tags for HTML elements without a body
    and better output for unknown elements.

    Fixed: Using a block IAL before a definition list now works

    Fixed problem with the output of empty i/b HTML tags

    Document fix of doc/quickref.page
   2012-09-16 13:28:15 by Takahiro Kambe | Files touched by this commit (3)
Log message:
Update ruby-kramdown to 0.14.0.

kramdown 0.14.0 released
				Published on Sunday, 16 September 2012

First of all please note that this release contains a backwards-incompatible
change: The syntax for specifying a code language for a code block or code
span has changed. Instead of using lang='CODELANG' one has to use
.language-CODELANG now.

This change has been introduced to avoid problems because the lang="..."
attribute is used by HTML for other purposes than setting the code
language. Furthermore using .language-CODELANG is also proposed by HTML5 and
it seems to be a good way to achieve the needed functionality.

Other changes in this release include the possibility of setting the code
language on the starting line of a fenced code block and a way of excluding
certain headers from the table of contents by assigning the .no_toc class to
them.  Changes

* 2 major changes

  o Code language is now specified via .language-CODELANG instead of
    lang='CODELANG'
  o Implemented support for setting language on fenced code block starting
    line (initial patch by Bran)

* 1 minor change

  o Headers with an ID can be prevented from showing in the TOC by assigning
    the .no_toc class to them (patch by Tim Bates)

* 1 bug fix

  o Numeric instead of symbolic HTML entities are now the default fallback
    (patch by Gioele Barabucci)

kramdown 0.13.8 released
				Published on Friday, 31 August 2012

This release brings two new options (one for adjusting header levels and the
other for enabling/disabling coderay). And the usual bug fixes.  Changes

* 2 minor changes

  o New option header_offset for offsetting all header levels (initial patch
    by Michal Till)
  o New option enable_coderay for enabling/disabling coderay (initial patch by
    Bran)

* 5 bug fixes

  o Reserved HTML characters in abbreviation titles are now correctly output
    (patch by Alex Tomlins)
  o Similar abbreviations (like CSS and CSS3) are now correctly parsed
  o Fixed bug RF#29626: Text of mailto-link was sometimes wrongly obfuscated
    (reported by B Wright)
  o Fixed known Ruby 1.9.3 problem with RakeTest task (patch by Gioele
    Barabucci)
  o Fixed double output of ¡Æmarkdown¡Ç attribute on HTML elements in kramdown
    converter

* 1 documentation change

  o README file is now called README.md and uses kramdown syntax (patch by
    Bran)

Next | Query returned 34 messages, browsing 21 to 30 | Previous