<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/pygments.git/docs, branch typescript</title>
<subtitle>bitbucket.org: Obsolete (use python-packages/pygments-git)
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/'/>
<entry>
<title>Fix doc build with underscores in filename patterns.</title>
<updated>2012-03-10T21:10:37+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2012-03-10T21:10:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=8cd55a40d46cbbf636eb426af8db5fe9b7aaf324'/>
<id>8cd55a40d46cbbf636eb426af8db5fe9b7aaf324</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pygments-main with pygments-tim</title>
<updated>2012-02-28T02:55:15+00:00</updated>
<author>
<name>Tim Hatch</name>
<email>tim@timhatch.com</email>
</author>
<published>2012-02-28T02:55:15+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=9d519e510f887c337c7a715d80e07b15357d33dc'/>
<id>9d519e510f887c337c7a715d80e07b15357d33dc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Copyright update.</title>
<updated>2012-02-05T11:58:02+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2012-02-05T11:58:02+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=cecb6181930eb60cbbe26cd5b09d5047084faa97'/>
<id>cecb6181930eb60cbbe26cd5b09d5047084faa97</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pygments-main with pygments-tim</title>
<updated>2012-01-03T22:42:30+00:00</updated>
<author>
<name>Tim Hatch</name>
<email>tim@timhatch.com</email>
</author>
<published>2012-01-03T22:42:30+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=e6abbe90c96cb77c0a775c8ae4427eb2f49c1f98'/>
<id>e6abbe90c96cb77c0a775c8ae4427eb2f49c1f98</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed some typos in the docs.</title>
<updated>2011-08-12T10:19:52+00:00</updated>
<author>
<name>Kashif Rasul</name>
<email>kashif@nomad-labs.com</email>
</author>
<published>2011-08-12T10:19:52+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=03bc8073703550f6ca45b61c88cefac6fa09899f'/>
<id>03bc8073703550f6ca45b61c88cefac6fa09899f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix current copyright year.</title>
<updated>2011-07-09T10:05:46+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2011-07-09T10:05:46+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=a2648efced6c982e879419241ad75cacfae792bd'/>
<id>a2648efced6c982e879419241ad75cacfae792bd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bulk changes to improve many lexers inner workings</title>
<updated>2011-03-20T03:00:07+00:00</updated>
<author>
<name>Tim Hatch</name>
<email>tim@timhatch.com</email>
</author>
<published>2011-03-20T03:00:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=e7c58665d02d9a9ca75f7600361c8bb2f1989981'/>
<id>e7c58665d02d9a9ca75f7600361c8bb2f1989981</id>
<content type='text'>
Based on a suspicion that most examplefiles only exercise a small part of the
lexers, I've written some code to find suspicious parts of regular
expressions, then gone back over those to fix them.  Most of these affect
whether the regex does what it looks like it does, but none of them should
appreciably change the function of the lexer.

* a few cases which used capturing groups + bygroups incorrectly (most were
  harmless, but I think one could have generated a traceback in its previous
  state)
* a few cases which could match empty string, without a callback (this is
  highly discouraged, because if an op doesn't consume any characters, it
  might be possible to enter an empty loop).  I'll revisit
  individually the cases where a callback or state push is used.
* many cases with embedded newlines in non-verbose regexes
* many, many cases with reversed (else|elseif) style alternations
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Based on a suspicion that most examplefiles only exercise a small part of the
lexers, I've written some code to find suspicious parts of regular
expressions, then gone back over those to fix them.  Most of these affect
whether the regex does what it looks like it does, but none of them should
appreciably change the function of the lexer.

* a few cases which used capturing groups + bygroups incorrectly (most were
  harmless, but I think one could have generated a traceback in its previous
  state)
* a few cases which could match empty string, without a callback (this is
  highly discouraged, because if an op doesn't consume any characters, it
  might be possible to enter an empty loop).  I'll revisit
  individually the cases where a callback or state push is used.
* many cases with embedded newlines in non-verbose regexes
* many, many cases with reversed (else|elseif) style alternations
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove dead link.</title>
<updated>2011-01-05T22:03:25+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2011-01-05T22:03:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=13312988a0152909007fa62e8f8e308c115414da'/>
<id>13312988a0152909007fa62e8f8e308c115414da</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Switch to bitbucket as main repo.</title>
<updated>2010-09-07T07:59:05+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2010-09-07T07:59:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=717b67d975bb80ed162b0f588fa2c87bda5cb8f3'/>
<id>717b67d975bb80ed162b0f588fa2c87bda5cb8f3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add docs for ensurenl lexer option.</title>
<updated>2010-04-14T21:46:20+00:00</updated>
<author>
<name>Georg Brandl</name>
<email>georg@python.org</email>
</author>
<published>2010-04-14T21:46:20+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=c744e791cd504ce81fb0afdd928255564f249a11'/>
<id>c744e791cd504ce81fb0afdd928255564f249a11</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
