<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/pygments.git, branch master</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>Remove all files, redirect to GitHub.</title>
<updated>2019-11-10T12:56:53+00:00</updated>
<author>
<name>Matth?us G. Chajdas</name>
<email>dev@anteru.net</email>
</author>
<published>2019-11-10T12:56:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=1dd3124a9770e11b6684e5dd1e6bc15a0aa3bc67'/>
<id>1dd3124a9770e11b6684e5dd1e6bc15a0aa3bc67</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix remaining issues with ShExC parser.</title>
<updated>2019-07-22T17:01:51+00:00</updated>
<author>
<name>Matth?us G. Chajdas</name>
<email>dev@anteru.net</email>
</author>
<published>2019-07-22T17:01:51+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=f1c080e184dc1bbc36eaa7cd729ff3a499de568a'/>
<id>f1c080e184dc1bbc36eaa7cd729ff3a499de568a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merged in lucaswerkmeister/pygments-main/rawstring (pull request #832)</title>
<updated>2019-07-22T17:00:07+00:00</updated>
<author>
<name>Anteru</name>
<email>bitbucket@ca.sh13.net</email>
</author>
<published>2019-07-22T17: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=059fe69659637e35ec1d7c3879e04d81dc220119'/>
<id>059fe69659637e35ec1d7c3879e04d81dc220119</id>
<content type='text'>
Fix raw strings for regex
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix raw strings for regex
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix raw strings for regex</title>
<updated>2019-07-21T21:28:27+00:00</updated>
<author>
<name>Lucas Werkmeister</name>
<email>mail@lucaswerkmeister.de</email>
</author>
<published>2019-07-21T21:28:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=4155fb1c7a2030deb8e0c84a5962f0bfc404d12b'/>
<id>4155fb1c7a2030deb8e0c84a5962f0bfc404d12b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merged in lucaswerkmeister/pygments-main/shex2 (pull request #831)</title>
<updated>2019-07-21T18:32:34+00:00</updated>
<author>
<name>Anteru</name>
<email>bitbucket@ca.sh13.net</email>
</author>
<published>2019-07-21T18:32:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=a97fa1091fad516e37830f70b0a3fb27dc1ad8eb'/>
<id>a97fa1091fad516e37830f70b0a3fb27dc1ad8eb</id>
<content type='text'>
Add lexer for ShExC
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add lexer for ShExC
</pre>
</div>
</content>
</entry>
<entry>
<title>Add lexer for ShExC</title>
<updated>2019-07-20T20:22:50+00:00</updated>
<author>
<name>Lucas Werkmeister</name>
<email>mail@lucaswerkmeister.de</email>
</author>
<published>2019-07-20T20:22:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=63b7f3c535b3d8a63a612862025fb04967b20155'/>
<id>63b7f3c535b3d8a63a612862025fb04967b20155</id>
<content type='text'>
ShExC [1] is one syntax for the ShEx (shape expressions) language [2] to
describe the structure of RDF graphs (the other two syntaxes are based on
JSON-LD and RDF and don?t need special lexers). It is syntactically similar to
SPARQL, which is why a lot of the productions of ShExCLexer are copied from
SparqlLexer, but at the same time has enough differences that I feel it?s
better to simply copy the productions rather than trying to share them between
the two lexers (compare e.?g. PN_LOCAL_ESCAPE_CHARS or IRIREF).

The example file purports to be a brief schema for Pygments lexers, which I put
together from scratch to avoid licensing issues with existing example schemas;
it should not be taken too seriously.

[1]: https://shex.io/shex-semantics/#shexc
[2]: https://shexspec.github.io/primer/
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ShExC [1] is one syntax for the ShEx (shape expressions) language [2] to
describe the structure of RDF graphs (the other two syntaxes are based on
JSON-LD and RDF and don?t need special lexers). It is syntactically similar to
SPARQL, which is why a lot of the productions of ShExCLexer are copied from
SparqlLexer, but at the same time has enough differences that I feel it?s
better to simply copy the productions rather than trying to share them between
the two lexers (compare e.?g. PN_LOCAL_ESCAPE_CHARS or IRIREF).

The example file purports to be a brief schema for Pygments lexers, which I put
together from scratch to avoid licensing issues with existing example schemas;
it should not be taken too seriously.

[1]: https://shex.io/shex-semantics/#shexc
[2]: https://shexspec.github.io/primer/
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix some typos in comments.</title>
<updated>2019-07-20T10:01:37+00:00</updated>
<author>
<name>Matth?us G. Chajdas</name>
<email>dev@anteru.net</email>
</author>
<published>2019-07-20T10:01:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=3d51447a9c1e75933ced7fd1ebf5c6c60676366d'/>
<id>3d51447a9c1e75933ced7fd1ebf5c6c60676366d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update CHANGES.</title>
<updated>2019-07-20T10:01:28+00:00</updated>
<author>
<name>Matth?us G. Chajdas</name>
<email>dev@anteru.net</email>
</author>
<published>2019-07-20T10:01:28+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=920e7ec9b50d2c509c36f16df509a10255024a5b'/>
<id>920e7ec9b50d2c509c36f16df509a10255024a5b</id>
<content type='text'>
Start a new major revision as new lexers have been merged.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Start a new major revision as new lexers have been merged.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merged in bittucket/pygments-main/hbs-update (pull request #773)</title>
<updated>2019-07-20T09:59:00+00:00</updated>
<author>
<name>Anteru</name>
<email>bitbucket@ca.sh13.net</email>
</author>
<published>2019-07-20T09:59:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=abe9fbaf8bfbc386901af8866c04ff455ccf4fa2'/>
<id>abe9fbaf8bfbc386901af8866c04ff455ccf4fa2</id>
<content type='text'>
HandlebarsLexer Update
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
HandlebarsLexer Update
</pre>
</div>
</content>
</entry>
<entry>
<title>Merged in bnbn/pygments-main (pull request #820)</title>
<updated>2019-07-20T09:55:08+00:00</updated>
<author>
<name>Anteru</name>
<email>bitbucket@ca.sh13.net</email>
</author>
<published>2019-07-20T09:55:08+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pygments.git/commit/?id=0822652bed6a1a812add14e1699ca18224e03523'/>
<id>0822652bed6a1a812add14e1699ca18224e03523</id>
<content type='text'>
Added lexer for Zig programming language
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added lexer for Zig programming language
</pre>
</div>
</content>
</entry>
</feed>
