diff options
author | gbrandl <devnull@localhost> | 2006-11-26 23:14:57 +0100 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2006-11-26 23:14:57 +0100 |
commit | eacc98529bcfc9a6139321d2fd9e68bb076f1fa8 (patch) | |
tree | d9f53fa2417f93bbe9cf40686c255c97fedaf77f | |
parent | 1698cf234384c6cadfc76f480ba4712fb6d94b9c (diff) | |
download | pygments-eacc98529bcfc9a6139321d2fd9e68bb076f1fa8.tar.gz |
[svn] Update changelog.
-rw-r--r-- | CHANGES | 12 | ||||
-rwxr-xr-x | scripts/check_sources.py | 3 |
2 files changed, 13 insertions, 2 deletions
@@ -3,7 +3,15 @@ Pygments changelog Version 0.6 ----------- -(released Nov XX, 2006) +(released Dec XX, 2006) + +- Added a Scheme lexer (thanks to Marek Kubica). + +- Added some functions to iterate over existing lexers, formatters + and lexers. + +- The HtmlFormatter's `get_style_defs()` can now take a list as an + argument to generate CSS with multiple prefixes. - Support for guessing input encoding added. @@ -19,7 +27,7 @@ Version 0.5.1 ------------- (released Oct 30, 2006) -- Fix traceback in ``pygmentize -L`` (thanks to Piotr Ozarowski). +- Fixed traceback in ``pygmentize -L`` (thanks to Piotr Ozarowski). Version 0.5 diff --git a/scripts/check_sources.py b/scripts/check_sources.py index 59fd8b01..d8f4f82b 100755 --- a/scripts/check_sources.py +++ b/scripts/check_sources.py @@ -186,6 +186,9 @@ def main(argv): num = 0 out = cStringIO.StringIO() + # TODO: replace os.walk run with iteration over output of + # `svn list -R`. + for root, dirs, files in os.walk(path): if '.svn' in dirs: dirs.remove('.svn') |