Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added test files for bug fix to ticket 62 | Gerry LaMontagne | 2010-09-02 | 4 | -0/+70 |
| | |||||
* | Fixed Ticket 65. Lines with only a lessthan sign (<) no longer crash the ↵ | Waylan Limberg | 2010-07-14 | 2 | -1/+14 |
| | | | | raw html parser. Fixed a related but I found while debugging this as well. Also added tests for both. | ||||
* | Blockquoted text in the first item of a list is now placed in child p tag of the | Gerry LaMontagne | 2010-03-23 | 2 | -0/+55 |
| | | | | blockquote tag. Added lists8.txt and .html for test suite to test condition. | ||||
* | Fixed ticket 58. The first item of a looselist gets placed in p tags when | Gerry LaMontagne | 2010-03-22 | 1 | -2/+4 |
| | | | | | | it has a sublist. Previously, the test suite erroneously passed this condition because there was an error in the expected '.html' output file. The expected output has been corrected as well. | ||||
* | Fixed Ticket 57. Lists where the first line of an item is a nested item, now ↵ | Waylan Limberg | 2010-03-19 | 2 | -0/+142 |
| | | | | observe rules for using p tags. Thanks to Gerry LaMontagne for the patch. | ||||
* | Fixed Ticket 53. Nested lists no longer isorder items in certain edge cases. ↵ | Waylan Limberg | 2010-03-15 | 2 | -0/+22 |
| | | | | Thanks for the report and preliminary work Gerry LaMontagne. | ||||
* | Fix bug with rawhtml and markdown escaping. Previously, any inline rawhtml ↵ | Waylan Limberg | 2010-03-15 | 2 | -1/+3 |
| | | | | that contained text that fit markdown's escaping syntax (i.e. <x\]>) was never unescaped. Now it is. Markdown probably shouldn't be escaping before removing rawhtml in the first place, but this will do for now. | ||||
* | Updated last failing test as we no longer need a demo of a failing test now ↵ | Waylan Limberg | 2010-02-22 | 1 | -2/+2 |
| | | | | that the branch is merged. | ||||
* | Moved test dir back out of markdown lib. We don't need to install the tests ↵ | Waylan Limberg | 2010-02-12 | 141 | -0/+1649 |
| | | | | in everyones site-packages. We just need to distrubute them in the tarball for people to run before installing etc. | ||||
* | Moved remaining tests from merge | Waylan Limberg | 2010-02-12 | 4 | -32/+0 |
| | |||||
* | Merged tests branch | Waylan Limberg | 2010-02-12 | 137 | -1620/+0 |
|\ | |||||
| * | Moves tests to a subdir of the markdown lib. | Waylan Limberg | 2009-06-05 | 135 | -1574/+0 |
| | | |||||
| * | Initial implementation of nose testing. Still some cleanup to do, but this ↵ | Waylan Limberg | 2009-06-05 | 3 | -10/+7 |
| | | | | | | | | 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. | ||||
* | | Cleanup and additional work on previous commit. NOTE: removed special ↵ | Waylan Limberg | 2010-01-03 | 3 | -4/+7 |
| | | | | | | | | treatment if raw <div>s with multiple line breaks - they no longer automagicly process their content as markdown. This matches other implementations. Finished rest of code for use by an extension - to be added later. | ||||
* | | Fixed Ticket 48. Quoted attributes in raw html are specificly ackowledged ↵ | Waylan Limberg | 2010-01-03 | 2 | -0/+8 |
| | | | | | | | | | | | | now - allowing various arbitrary stuff (like x/html to be included without breaking the rawhtml parser. Although currently unused, the code also provides the parsed attributes as a dict. Should be useful for adding support for parsing markdown text within rawhtml in an extension. | ||||
* | | Fixed ticket 44. Raw HTML now maintains original whitespace. Important ↵ | Waylan Limberg | 2010-01-03 | 2 | -0/+18 |
| | | | | | | | | inside raw <pre> tags. | ||||
* | | Fixed Ticket 38. With smart_emphasis turned on, emphasised text can now be ↵ | Waylan Limberg | 2009-07-21 | 2 | -0/+14 |
| | | | | | | | | wrapped in punctuation without spaces and still will be converted to emphasis (ie: '[_foo_]'). Test included. Thanks for the report seanh. | ||||
* | | Fixed ticket 35. Lists now work when padded with five or more spaces after ↵ | Waylan Limberg | 2009-06-17 | 2 | -0/+32 |
|/ | | | | asterisk. Adjusted regex to eat all (one or more) of the spaces. While it may seem wrong (at least in the loose list case), this is how all other implementations work. And it solves a number of edge cases otherwise not accounted for in the list parser. | ||||
* | Improved inline pattern regex for em & strong and added tests. Fixes Ticket ↵ | Waylan Limberg | 2009-03-30 | 2 | -0/+30 |
| | | | | 30 and other related issues. Note that I went with php's behavior rather than perl's when we have have three (ie.: *** or ___) without a closing three. | ||||
* | Completed nested lists and added a test. All tests pass. | Waylan Limberg | 2009-02-04 | 2 | -0/+63 |
| | |||||
* | Fixed blockquote test to match previous commit. No space after > now is a ↵ | Waylan Limberg | 2009-01-27 | 1 | -3/+5 |
| | | | | blockquote. | ||||
* | Fixed attribute creation to remove newlines and associated misc/uche test. ↵ | Waylan Limberg | 2008-12-08 | 1 | -2/+1 |
| | | | | Apparently differant versions of ElementTree encode line breaks in attributes differantly. Therefore, we just remove any such linebreaks as they are insignificant anyway. | ||||
* | Fixed para-with-hr test. The code was working correctly, but the test was wrong. | Waylan Limberg | 2008-12-07 | 1 | -2/+3 |
| | |||||
* | Adding para-with-hr test. (Broken at the moment.) | Yuri Takhteyev | 2008-12-07 | 2 | -0/+6 |
| | |||||
* | Fixed BlockquoteProcessor to acknowledge blocks in which the blockquote ↵ | Waylan Limberg | 2008-11-13 | 2 | -2/+18 |
| | | | | starts after the first line. Also updated coresponding test as it had an error and added more detail. All core tests pass now. On to extensions. | ||||
* | Fixed whitespace only line clearing and updated another test to match pl and ↵ | Waylan Limberg | 2008-11-13 | 1 | -11/+7 |
| | | | | php output of lists. Only one test failing from core parser refactor now. | ||||
* | Updated test as core parser now matched pl and php behavior in lists. | Waylan Limberg | 2008-11-13 | 1 | -6/+4 |
| | |||||
* | Fixed a streange anomily in whitespace a start of p and li tags. Mostly odd ↵ | Waylan Limberg | 2008-11-13 | 6 | -6/+6 |
| | | | | tests corrected. | ||||
* | Fixed various issues with the core parser - mostly whitespace related and ↵ | Waylan Limberg | 2008-11-13 | 2 | -5/+5 |
| | | | | updated a few tests that weren't quite right - that is they now better match pl or php implementations. | ||||
* | Added a more thorough test of nested inline markup. Thanks John Szakmeister. | John Szakmeister | 2008-10-29 | 2 | -0/+30 |
| | |||||
* | Moved prettifyETree into a Postprocessor and added code to append all '<br ↵ | Waylan Limberg | 2008-09-04 | 2 | -6/+12 |
| | | | | />' tags with a linebreak. Also fixed a minor bug were the '<br />' tags contained 2 spaces instead of one before the slash (i.e. '<br />'). Note that by moving to a Postprocessor, anyone can override with their own code which does what they want (i.e. add indentation) with the extension api. | ||||
* | Replaced indentation with linebreaks only. At least its more consistant - ↵ | Waylan Limberg | 2008-09-03 | 41 | -243/+130 |
| | | | | and it better matches other markdown implementations. Also updated tests. | ||||
* | Oops, forgot to add mismatched-tags test. | Artem Yunusov | 2008-08-24 | 2 | -1/+18 |
| | |||||
* | Fixed Ticket 11. Disabled ``indenteTree`` for `pre` and `code` tags. Now | Waylan Limberg | 2008-08-22 | 7 | -83/+61 |
| | | | | | | | | | whitespace is preserved in codeblocks. As a side-benefit, this also solved the issue with the safe-mode tests failing. All tests incorectly altered at ElementTree conversion have been corrected for this bug. Any remaining tests that fail are unrelated to this. | ||||
* | Fixed Ticket 13. Raw block-level html are no longer being inserted into <p> ↵ | Waylan Limberg | 2008-08-22 | 11 | -39/+49 |
| | | | | | | | | | | | | | tags. Also edited numerious tests that were expecting wrong output - they now expect correct output. Note that a few **still fail** because the output before moving to ELementTree wasn't correct either. So I set the expected output to what I think it should be so we don't forget about it later. I should also note that the 'safe-mode' tests are failing. However, I believe the current expected output is correct as it is valid html. Interestingly, these tests passed prior to this fix. We'll need to special case safe-mode here. | ||||
* | Updated tests with raw block level html in them. **Note** these tests do not ↵ | Waylan Limberg | 2008-08-22 | 3 | -13/+17 |
| | | | | pass now - but they should! We need to fix the bug which the tests were previosuly hiding! | ||||
* | Removed executable status on some test files ??? not sure why it was there ↵ | Waylan Limberg | 2008-08-22 | 4 | -0/+0 |
| | | | | to begin with?? | ||||
* | Adding unicode tests for Neale's fix. (Those only pass after changing | Yuri Takhteyev | 2008-08-20 | 2 | -0/+6 |
| | | | | str to unicode.) | ||||
* | Changing string to unicode in Neale's fix. Adding test cases. | Yuri Takhteyev | 2008-08-20 | 2 | -0/+5 |
| | |||||
* | Forgot to add headers.txt to commit. | Artem Yunusov | 2008-08-13 | 1 | -0/+4 |
| | |||||
* | Header test extended. | Artem Yunusov | 2008-08-13 | 1 | -2/+5 |
| | |||||
* | A lot of bug fixes, added ElementTree support for extensions, some new tests. | Artem Yunusov | 2008-07-31 | 4 | -0/+13 |
| | |||||
* | Missing link defenition bug fixed. | Artem Yunusov | 2008-07-22 | 2 | -0/+7 |
| | |||||
* | Ops, forgot to add new test files | Artem Yunusov | 2008-07-19 | 6 | -0/+55 |
| | |||||
* | Output bug fixed(stripping text data at the end of processing in ↵ | Artem Yunusov | 2008-07-15 | 10 | -42/+48 |
| | | | | _processPlaceholders). Ticket #5 fixed. | ||||
* | A lot of bug fixes. Handlig attributes added, new hr processing. Reformatted ↵ | Artem Yunusov | 2008-07-14 | 55 | -820/+502 |
| | | | | test suite for ElementTree output. | ||||
* | Code blocks escaping bug fixed. Some test suite modifications. | Artem Yunusov | 2008-07-03 | 4 | -8/+6 |
| | |||||
* | Allow hashes (#) in body of headers -- with tests. Thank you John ↵ | Waylan Limberg | 2008-05-14 | 2 | -1/+5 |
| | | | | Szakmeister for the bug report and patch. | ||||
* | Added safe_mode to testing framework and soem tests. | Waylan Limberg | 2008-03-19 | 1 | -41/+51 |
| | |||||
* | Moved line-endings cleanup from transform to convert method so it runs prior ↵ | Waylan Limberg | 2008-03-06 | 2 | -0/+10 |
| | | | | to textPreprocessors. Raw HTML with CRLF line endings now works properly. Also added a test. Fixes [1908691]. |