summaryrefslogtreecommitdiff
path: root/doc/source
AgeCommit message (Collapse)Author
2015-06-25Fixed syntax errors in documentation.Leonard Richardson
2015-06-25Put the Chinese version of the documentation into its own Sphinx build to ↵Leonard Richardson
stop identifiers from conflicting. [bug=1401862]
2014-12-10Fixed inconsistent markup in documentation. [bug=1273002]Leonard Richardson
2014-12-10The select() method now supports selector grouping. Patch byLeonard Richardson
Francisco Canas [bug=1191917]
2014-12-08Rephrased the 'you need a parser' section to cover today's more common BS3 ↵Leonard Richardson
porting environments. [bug=1370364]
2014-12-07Mentioned virtual environments as a possible source for the ↵Leonard Richardson
different-parsers problem.
2014-12-07Tweaked the parser warning.Leonard Richardson
2013-12-07Added a Chinese translation of the documentation by Delong .w.Leonard Richardson
2013-11-02Added link to Japanese user translation.Leonard Richardson
2013-10-28Made it as clear as possible the Beautiful Soup does not support any ↵Leonard Richardson
standardized subset of CSS selector syntax.
2013-10-21Clarified docs.Leonard Richardson
2013-10-01Fixed a bug in which short Unicode input was improperly encoded to ASCII ↵Leonard Richardson
when checking whether or not it was a file on disk. [bug=1227016]
2013-08-12Prep for release.Leonard Richardson
2013-08-12A little cleanup.Leonard Richardson
2013-06-02Merged in big encoding-detection refactoring branch.Leonard Richardson
2013-05-20Gave new_string() the ability to create subclasses ofLeonard Richardson
NavigableString. [bug=1181986]
2013-05-20html5lib now supports Python 3. Fixed some Python 2-specificLeonard Richardson
code in the html5lib test suite. [bug=1181624]
2013-05-14Added diagnostic case for attempting to parse a URL as HTML.Leonard Richardson
2013-05-14Added warning about using NavigableString outside of Beautiful Soup.Leonard Richardson
2013-05-14Added a deprecation warning to has_key().Leonard Richardson
2013-05-09Thanks to data-*, there's now a good use for attrs again. This lets me clean ↵Leonard Richardson
up the docs quite a bit.
2013-05-09Added <body> tag to sample doc so it will work the same on all parsers.Leonard Richardson
2013-05-08Updated docs with new examples.Leonard Richardson
2013-05-08Updated docs with new examples.Leonard Richardson
2013-05-07Fixed up diagnose() and added it to the docs.Leonard Richardson
2013-05-07Mentioned the CSS selector solution to searching for a tag by multiple CSS ↵Leonard Richardson
classes.
2013-05-07Added support for the "nth-of-type" CSS selector. The CSS selector ">" can ↵Leonard Richardson
now find a tag by means other than the tag name. Code by Sven Slootweg.
2013-05-06Changed Google Groups URL.Leonard Richardson
2013-01-09Fixed table.Leonard Richardson
2012-11-03Doc fixes.Leonard Richardson
2012-09-28Fixed package name.Leonard Richardson
2012-08-17Fixed doc.Leonard Richardson
2012-08-17Prep for release.Leonard Richardson
2012-08-16As per PEP-8, allow searching by CSS class using the 'class_'Leonard Richardson
keyword argument. [bug=1037624]
2012-08-14Updated docs.Leonard Richardson
2012-07-10Fixed typo.Leonard Richardson
2012-07-03Mentioned cchardet in docs.Leonard Richardson
2012-06-10Made it clear in the doc that Beautiful Soup calls search() on regular ↵Leonard Richardson
expressions, not match()
2012-05-29Prep for release.Leonard Richardson
2012-05-24Fixed the basic failure in [bug=1003974], but not more advanced cases.Leonard Richardson
2012-05-24Comments, processing instructions, document type declarations, and markup ↵Leonard Richardson
declarations are now treated as preformatted strings, the way CData blocks are. [bug=1001025] Also in this commit: renamed detwingle method to detwingle().
2012-04-27Tweaked doc.Leonard Richardson
2012-04-27Prep for release.Leonard Richardson
2012-04-26Added a new method, wrap().Leonard Richardson
2012-04-26Renamed replace_with_children() to the jQuery name, unwrap().Leonard Richardson
2012-04-26Upon document generation, CData objects are no longer run through the ↵Leonard Richardson
formatter. [bug=988905]
2012-04-26Fixed test failure when lxml is not installed.Leonard Richardson
2012-04-18Print a warning on HTMLParseErrors to let people know they should install an ↵Leonard Richardson
external parser.
2012-04-18Fixed a bug that made the HTMLParser treebuilder generate XML definitions ↵Leonard Richardson
ending with two question marks instead of one. [bug=984258]
2012-04-16Doc update.Leonard Richardson