A Python parser for MediaWiki wikicode https://mwparserfromhell.readthedocs.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

125 lines
6.1 KiB

  1. v0.4 (unreleased):
  2. - The parser now falls back on pure Python mode if C extensions cannot be
  3. built. This fixes an issue that prevented some Windows users from installing
  4. the parser.
  5. - Added support for parsing wikicode tables (patches by David Winegar).
  6. - Added a script to test for memory leaks in scripts/memtest.py.
  7. - Added a script to do releases in scripts/release.sh.
  8. - skip_style_tags can now be passed to mwparserfromhell.parse() (previously,
  9. only Parser().parse() allowed it).
  10. - The 'recursive' argument to Wikicode's filter methods now accepts a third
  11. option, RECURSE_OTHERS, which recurses over all children except instances of
  12. 'forcetype' (for example, `code.filter_templates(code.RECURSE_OTHERS)`
  13. returns all un-nested templates).
  14. - The parser now understands HTML tag attributes quoted with single quotes.
  15. When setting a tag attribute's value, quotes will be added if necessary. As
  16. part of this, Attribute's 'quoted' attribute has been changed to 'quotes',
  17. and is now either a string or None.
  18. - Calling Template.remove() with a Parameter object that is not part of the
  19. template now raises ValueError instead of doing nothing.
  20. - Parameters with non-integer keys can no longer be created with
  21. 'showkey=False', nor have the value of this attribute be set to False later.
  22. - _ListProxy.destroy() has been changed to _ListProxy.detach(), and now works
  23. in a more useful way.
  24. - If something goes wrong while parsing, ParserError will now be raised.
  25. Previously, the parser would produce an unclear BadRoute exception or allow
  26. an incorrect node tree to be build.
  27. - Fixed parser bugs involving:
  28. - nested tags;
  29. - comments in template names;
  30. - tags inside of <nowiki> tags.
  31. - Added tests to ensure that parsed trees convert back to wikicode without
  32. unintentional modifications.
  33. - Added support for a NOWEB environment variable, which disables a unit test
  34. that makes a web call.
  35. - Test coverage has been improved, and some minor related bugs have been fixed.
  36. - Updated and fixed some documentation.
  37. v0.3.3 (released April 22, 2014):
  38. - Added support for Python 2.6 and 3.4.
  39. - Template.has() is now passed 'ignore_empty=False' by default instead of True.
  40. This fixes a bug when adding parameters to templates with empty fields, and
  41. is a breaking change if you rely on the default behavior.
  42. - The 'matches' argument of Wikicode's filter methods now accepts a function
  43. (taking one argument, a Node, and returning a bool) in addition to a regex.
  44. - Re-added 'flat' argument to Wikicode.get_sections(), fixed the order in which
  45. it returns sections, and made it faster.
  46. - Wikicode.matches() now accepts a tuple or list of strings/Wikicode objects
  47. instead of just a single string or Wikicode.
  48. - Given the frequency of issues with the (admittedly insufficient) tag parser,
  49. there's a temporary skip_style_tags argument to parse() that ignores '' and
  50. ''' until these issues are corrected.
  51. - Fixed a parser bug involving nested wikilinks and external links.
  52. - C code cleanup and speed improvements.
  53. v0.3.2 (released September 1, 2013):
  54. - Added support for Python 3.2 (along with current support for 3.3 and 2.7).
  55. - Renamed Template.remove()'s first argument from 'name' to 'param', which now
  56. accepts Parameter objects in addition to parameter name strings.
  57. v0.3.1 (released August 29, 2013):
  58. - Fixed a parser bug involving URLs nested inside other markup.
  59. - Fixed some typos.
  60. v0.3 (released August 24, 2013):
  61. - Added complete support for HTML Tags, including forms like <ref>foo</ref>,
  62. <ref name="bar"/>, and wiki-markup tags like bold ('''), italics (''), and
  63. lists (*, #, ; and :).
  64. - Added support for ExternalLinks (http://example.com/ and
  65. [http://example.com/ Example]).
  66. - Wikicode's filter methods are now passed 'recursive=True' by default instead
  67. of False. This is a breaking change if you rely on any filter() methods being
  68. non-recursive by default.
  69. - Added a matches() method to Wikicode for page/template name comparisons.
  70. - The 'obj' param of Wikicode.insert_before(), insert_after(), replace(), and
  71. remove() now accepts other Wikicode objects and strings representing parts of
  72. wikitext, instead of just nodes. These methods also make all possible
  73. substitutions instead of just one.
  74. - Renamed Template.has_param() to has() for consistency with Template's other
  75. methods; has_param() is now an alias.
  76. - The C tokenizer extension now works on Python 3 in addition to Python 2.7.
  77. - Various bugfixes, internal changes, and cleanup.
  78. v0.2 (released June 20, 2013):
  79. - The parser now fully supports Python 3 in addition to Python 2.7.
  80. - Added a C tokenizer extension that is significantly faster than its Python
  81. equivalent. It is enabled by default (if available) and can be toggled by
  82. setting `mwparserfromhell.parser.use_c` to a boolean value.
  83. - Added a complete set of unit tests covering parsing and wikicode
  84. manipulation.
  85. - Renamed Wikicode.filter_links() to filter_wikilinks() (applies to ifilter as
  86. well).
  87. - Added filter methods for Arguments, Comments, Headings, and HTMLEntities.
  88. - Added 'before' param to Template.add(); renamed 'force_nonconformity' to
  89. 'preserve_spacing'.
  90. - Added 'include_lead' param to Wikicode.get_sections().
  91. - Removed 'flat' param from Wikicode.get_sections().
  92. - Removed 'force_no_field' param from Template.remove().
  93. - Added support for Travis CI.
  94. - Added note about Windows build issue in the README.
  95. - The tokenizer will limit itself to a realistic recursion depth to prevent
  96. errors and unreasonably long parse times.
  97. - Fixed how some nodes' attribute setters handle input.
  98. - Fixed multiple bugs in the tokenizer's handling of invalid markup.
  99. - Fixed bugs in the implementation of SmartList and StringMixIn.
  100. - Fixed some broken example code in the README; other copyedits.
  101. - Other bugfixes and code cleanup.
  102. v0.1.1 (released September 21, 2012):
  103. - Added support for Comments (<!-- foo -->) and Wikilinks ([[foo]]).
  104. - Added corresponding ifilter_links() and filter_links() methods to Wikicode.
  105. - Fixed a bug when parsing incomplete templates.
  106. - Fixed strip_code() to affect the contents of headings.
  107. - Various copyedits in documentation and comments.
  108. v0.1 (released August 23, 2012):
  109. - Initial release.