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.
 
 
 
 

87 lines
4.1 KiB

  1. v0.4 (unreleased):
  2. - Added support for Python 2.6 and 3.4.
  3. - Template.has() is now passed 'ignore_empty=False' by default instead of True.
  4. This fixes a bug when adding parameters to templates with empty fields, and
  5. is a breaking change if you rely on the default behavior.
  6. - The 'matches' argument of Wikicode's filter methods now accepts a function
  7. (taking one argument, a Node, and returning a bool) in addition to a regex.
  8. - Re-added 'flat' argument to Wikicode.get_sections(), fixed the order in which
  9. it returns sections, and made it faster.
  10. - Wikicode.matches() now accepts a tuple or list of strings/Wikicode objects
  11. instead of just a single string or Wikicode.
  12. - Given the frequency of issues with the (admittedly insufficient) tag parser,
  13. there's a temporary skip_style_tags argument to parse() that ignores '' and
  14. ''' until these issues are corrected.
  15. - Fixed a parser bug involving nested wikilinks and external links.
  16. - C code cleanup and speed improvements.
  17. v0.3.2 (released September 1, 2013):
  18. - Added support for Python 3.2 (along with current support for 3.3 and 2.7).
  19. - Renamed Template.remove()'s first argument from 'name' to 'param', which now
  20. accepts Parameter objects in addition to parameter name strings.
  21. v0.3.1 (released August 29, 2013):
  22. - Fixed a parser bug involving URLs nested inside other markup.
  23. - Fixed some typos.
  24. v0.3 (released August 24, 2013):
  25. - Added complete support for HTML Tags, including forms like <ref>foo</ref>,
  26. <ref name="bar"/>, and wiki-markup tags like bold ('''), italics (''), and
  27. lists (*, #, ; and :).
  28. - Added support for ExternalLinks (http://example.com/ and
  29. [http://example.com/ Example]).
  30. - Wikicode's filter methods are now passed 'recursive=True' by default instead
  31. of False. This is a breaking change if you rely on any filter() methods being
  32. non-recursive by default.
  33. - Added a matches() method to Wikicode for page/template name comparisons.
  34. - The 'obj' param of Wikicode.insert_before(), insert_after(), replace(), and
  35. remove() now accepts other Wikicode objects and strings representing parts of
  36. wikitext, instead of just nodes. These methods also make all possible
  37. substitutions instead of just one.
  38. - Renamed Template.has_param() to has() for consistency with Template's other
  39. methods; has_param() is now an alias.
  40. - The C tokenizer extension now works on Python 3 in addition to Python 2.7.
  41. - Various bugfixes, internal changes, and cleanup.
  42. v0.2 (released June 20, 2013):
  43. - The parser now fully supports Python 3 in addition to Python 2.7.
  44. - Added a C tokenizer extension that is significantly faster than its Python
  45. equivalent. It is enabled by default (if available) and can be toggled by
  46. setting `mwparserfromhell.parser.use_c` to a boolean value.
  47. - Added a complete set of unit tests covering parsing and wikicode
  48. manipulation.
  49. - Renamed Wikicode.filter_links() to filter_wikilinks() (applies to ifilter as
  50. well).
  51. - Added filter methods for Arguments, Comments, Headings, and HTMLEntities.
  52. - Added 'before' param to Template.add(); renamed 'force_nonconformity' to
  53. 'preserve_spacing'.
  54. - Added 'include_lead' param to Wikicode.get_sections().
  55. - Removed 'flat' param from Wikicode.get_sections().
  56. - Removed 'force_no_field' param from Template.remove().
  57. - Added support for Travis CI.
  58. - Added note about Windows build issue in the README.
  59. - The tokenizer will limit itself to a realistic recursion depth to prevent
  60. errors and unreasonably long parse times.
  61. - Fixed how some nodes' attribute setters handle input.
  62. - Fixed multiple bugs in the tokenizer's handling of invalid markup.
  63. - Fixed bugs in the implementation of SmartList and StringMixIn.
  64. - Fixed some broken example code in the README; other copyedits.
  65. - Other bugfixes and code cleanup.
  66. v0.1.1 (released September 21, 2012):
  67. - Added support for Comments (<!-- foo -->) and Wikilinks ([[foo]]).
  68. - Added corresponding ifilter_links() and filter_links() methods to Wikicode.
  69. - Fixed a bug when parsing incomplete templates.
  70. - Fixed strip_code() to affect the contents of headings.
  71. - Various copyedits in documentation and comments.
  72. v0.1 (released August 23, 2012):
  73. - Initial release.