<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-markdown.git/tests/safe_mode, branch issue253</title>
<subtitle>github.com: waylan/Python-Markdown.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/'/>
<entry>
<title>Forbid javascript:// URLs in safe mode</title>
<updated>2013-02-05T17:50:21+00:00</updated>
<author>
<name>Philipp Hagemeister</name>
<email>phihag@phihag.de</email>
</author>
<published>2013-02-05T17:50:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=f608517d9e1dee126431aafedabdabaa03ec2937'/>
<id>f608517d9e1dee126431aafedabdabaa03ec2937</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed #153. Two spaces at end of paragraph is not a linebreak.</title>
<updated>2012-10-21T20:09:09+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2012-10-21T20:09:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=5aad55f920ded6a30a61a8a9b90a52da48c79040'/>
<id>5aad55f920ded6a30a61a8a9b90a52da48c79040</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Inline html is now escaped by the searializer.</title>
<updated>2012-01-19T11:30:23+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2012-01-19T11:30:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=0735b01dd9ab63417b1e9ee204d6090257cb8dbe'/>
<id>0735b01dd9ab63417b1e9ee204d6090257cb8dbe</id>
<content type='text'>
Final fix to issue introduced in fix for #59. Weird stuff inside
angle brackets now also work in safe_mode='escape'. We just did the
same thing as with block html, let the (x)html searializer do the
escaping. Tests updated including the standalone test moved to match
the non-escape cases.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Final fix to issue introduced in fix for #59. Weird stuff inside
angle brackets now also work in safe_mode='escape'. We just did the
same thing as with block html, let the (x)html searializer do the
escaping. Tests updated including the standalone test moved to match
the non-escape cases.
</pre>
</div>
</content>
</entry>
<entry>
<title>Partial fix for issue introduced in fix for #59</title>
<updated>2012-01-19T11:13:21+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2012-01-19T11:13:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=e3c5efd182d9a80f34e3b9a770eed63c1d62b2f9'/>
<id>e3c5efd182d9a80f34e3b9a770eed63c1d62b2f9</id>
<content type='text'>
Markdown markup inside angle bracktes now gets rendered properly
in all cases except when safe_mode='escape'. Also added tests.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Markdown markup inside angle bracktes now gets rendered properly
in all cases except when safe_mode='escape'. Also added tests.
</pre>
</div>
</content>
</entry>
<entry>
<title>Cleaned up tests after merging pull request fixing #72.</title>
<updated>2012-01-19T02:41:23+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2012-01-19T02:41:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=01f4b8cdcf37e3e17e50dfbb51b49472f4b5dc95'/>
<id>01f4b8cdcf37e3e17e50dfbb51b49472f4b5dc95</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>When safe mode is 'escape', don't allow bad html to stop further processing.</title>
<updated>2012-01-14T18:10:44+00:00</updated>
<author>
<name>Mike Dirolf</name>
<email>mike@dirolf.com</email>
</author>
<published>2012-01-14T18:10:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=a2377e1129331430998de821ed3abf38247edca1'/>
<id>a2377e1129331430998de821ed3abf38247edca1</id>
<content type='text'>
See tests/html4_safe/html_then_blockquote.(txt|html).

It looks like having unclosed block-level html elements was causing
further processing not to happen, even in the case where we're
escaping HTML. Since we're escaping HTML, it seems like it shouldn't
affect processing at all. This changes output results in a couple
of other tests, but the new output seems reasonable to me.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
See tests/html4_safe/html_then_blockquote.(txt|html).

It looks like having unclosed block-level html elements was causing
further processing not to happen, even in the case where we're
escaping HTML. Since we're escaping HTML, it seems like it shouldn't
affect processing at all. This changes output results in a couple
of other tests, but the new output seems reasonable to me.
</pre>
</div>
</content>
</entry>
<entry>
<title>Moved test dir back out of markdown lib. We don't need to install the tests in everyones site-packages. We just need to distrubute them in the tarball for people to run before installing etc.</title>
<updated>2010-02-12T21:24:15+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2010-02-12T21:24:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=28caf01c8082dbed3a5ca87b070ffe5657514f01'/>
<id>28caf01c8082dbed3a5ca87b070ffe5657514f01</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Moves tests to a subdir of the markdown lib.</title>
<updated>2009-06-06T02:25:51+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2009-05-31T02:31:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=8b430d251b2518fa3303d7027f50268e0254b7a1'/>
<id>8b430d251b2518fa3303d7027f50268e0254b7a1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Initial implementation of nose testing. Still some cleanup to do, but this shows the differances between the old and the new. Also left one test failing (unsignificant white space only) to demonstrate what a failing test looks like.</title>
<updated>2009-06-06T02:25:51+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2009-05-31T02:29:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=cc452998dc1af441cf3f9c5d0c7287cb5de48c4a'/>
<id>cc452998dc1af441cf3f9c5d0c7287cb5de48c4a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replaced indentation with linebreaks only. At least its more consistant - and it better matches other markdown implementations. Also updated tests.</title>
<updated>2008-09-03T17:46:52+00:00</updated>
<author>
<name>Waylan Limberg</name>
<email>waylan@gmail.com</email>
</author>
<published>2008-09-03T17:30:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-markdown.git/commit/?id=a1c636a05557b1faa207828c9e7102391bdde5c9'/>
<id>a1c636a05557b1faa207828c9e7102391bdde5c9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
