summaryrefslogtreecommitdiff
path: root/beautifulsoup/__init__.py
AgeCommit message (Collapse)Author
2011-02-26Updated TODO.Leonard Richardson
2011-02-26Removed the redundant pretty_print argument except for the top level.Leonard Richardson
2011-02-26Renamed replace_with_html_entities to substitute_html_entities.Leonard Richardson
2011-02-26First stab at HTML entity replacement.Leonard Richardson
2011-02-26Emit an XML declaration when appropriate.Leonard Richardson
2011-02-21Removed the now-useless Entities class.Leonard Richardson
2011-02-21Got rid of isString.Leonard Richardson
2011-02-20Fixed bug in the BS constructor lookup, and added the test file I've been ↵Leonard Richardson
working on this whole time.
2011-02-20Renamed the registry variable to builder_registry.Leonard Richardson
2011-02-20Started using the builder registry.Leonard Richardson
2011-02-20Renamed constructor arguments to comply with PEP 8.Leonard Richardson
2011-02-20Discovered that html5lib can't be made to support SoupStrainers, and changed ↵Leonard Richardson
the test suite appropriately.
2011-02-20Tag.is_empty_element is determined dynamically, based on a) whether the ↵Leonard Richardson
builder used to create the tag had an explicit list of empty-element tags, and b) whether the tag actually contains anything.
2011-02-19Set up an lxml parser that only parses XML, though it's not very functional yet.Leonard Richardson
2011-02-18Made Unicode, Dammit more PEP-8 compliant.Leonard Richardson
2011-02-18Made Unicode, Dammit more PEP-8 compliant.Leonard Richardson
2011-02-18Made conversion of markup to Unicode the responsibility of the builder, not ↵Leonard Richardson
the BeautifulSoup class itself. lxml uses Unicode, Dammit; html5lib uses its internal algorithms.
2011-02-18Moved the substitution code to the Tag constructor so that we don't have to ↵Leonard Richardson
rely on handle_starttag to trigger it.
2011-02-18Convert all entities to Unicode, don't make it configurable.Leonard Richardson
2011-02-13Added tests for namespaced doctypes.Leonard Richardson
2011-01-28Made .string a dynamic property.Leonard Richardson
2011-01-28Moved the code back into a beautifulsoup/ directory.Leonard Richardson