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.
 
 
 
 

76 lines
3.1 KiB

  1. Changelog
  2. =========
  3. v0.3
  4. ----
  5. Unreleased
  6. (`changes <https://github.com/earwig/mwparserfromhell/compare/v0.2...develop>`__):
  7. - Added complete support for HTML :py:class:`Tags <.Tag>`, along with
  8. appropriate unit tests. This includes forms like ``<ref>foo</ref>``,
  9. ``<ref name="bar"/>``, and wiki-markup tags like bold (``'''``), italics
  10. (``''``), and lists (``*``, ``#``, ``;`` and ``:``).
  11. - :py:class:`Wikicode's <.Wikicode>` :py:meth:`.filter` methods are now passed
  12. *recursive=True* by default instead of *False*. **This is a breaking change
  13. if you rely on any filter() methods being non-recursive by default.**
  14. - Added a :py:meth:`.matches` method to :py:class:`~.Wikicode` for
  15. page/template name comparisons.
  16. - Various fixes and cleanup.
  17. v0.2
  18. ----
  19. `Released June 20, 2013 <https://github.com/earwig/mwparserfromhell/tree/v0.2>`_
  20. (`changes <https://github.com/earwig/mwparserfromhell/compare/v0.1.1...v0.2>`__):
  21. - The parser now fully supports Python 3 in addition to Python 2.7.
  22. - Added a C tokenizer extension that is significantly faster than its Python
  23. equivalent. It is enabled by default (if available) and can be toggled by
  24. setting :py:attr:`mwparserfromhell.parser.use_c` to a boolean value.
  25. - Added a complete set of unit tests covering parsing and wikicode
  26. manipulation.
  27. - Renamed :py:meth:`.filter_links` to :py:meth:`.filter_wikilinks` (applies to
  28. :py:meth:`.ifilter` as well).
  29. - Added filter methods for :py:class:`Arguments <.Argument>`,
  30. :py:class:`Comments <.Comment>`, :py:class:`Headings <.Heading>`, and
  31. :py:class:`HTMLEntities <.HTMLEntity>`.
  32. - Added *before* param to :py:meth:`Template.add() <.Template.add>`; renamed
  33. *force_nonconformity* to *preserve_spacing*.
  34. - Added *include_lead* param to :py:meth:`Wikicode.get_sections()
  35. <.get_sections>`.
  36. - Removed *flat* param from :py:meth:`.get_sections`.
  37. - Removed *force_no_field* param from :py:meth:`Template.remove()
  38. <.Template.remove>`.
  39. - Added support for Travis CI.
  40. - Added note about Windows build issue in the README.
  41. - The tokenizer will limit itself to a realistic recursion depth to prevent
  42. errors and unreasonably long parse times.
  43. - Fixed how some nodes' attribute setters handle input.
  44. - Fixed multiple bugs in the tokenizer's handling of invalid markup.
  45. - Fixed bugs in the implementation of :py:class:`.SmartList` and
  46. :py:class:`.StringMixIn`.
  47. - Fixed some broken example code in the README; other copyedits.
  48. - Other bugfixes and code cleanup.
  49. v0.1.1
  50. ------
  51. `Released September 21, 2012 <https://github.com/earwig/mwparserfromhell/tree/v0.1.1>`_
  52. (`changes <https://github.com/earwig/mwparserfromhell/compare/v0.1...v0.1.1>`__):
  53. - Added support for :py:class:`Comments <.Comment>` (``<!-- foo -->``) and
  54. :py:class:`Wikilinks <.Wikilink>` (``[[foo]]``).
  55. - Added corresponding :py:meth:`.ifilter_links` and :py:meth:`.filter_links`
  56. methods to :py:class:`.Wikicode`.
  57. - Fixed a bug when parsing incomplete templates.
  58. - Fixed :py:meth:`.strip_code` to affect the contents of headings.
  59. - Various copyedits in documentation and comments.
  60. v0.1
  61. ----
  62. `Released August 23, 2012 <https://github.com/earwig/mwparserfromhell/tree/v0.1>`_:
  63. - Initial release.