index
:
beautifulsoup.git
master
Unnamed repository; edit this file 'description' to name the repository.
User &
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
beautifulsoup
/
element.py
Age
Commit message (
Expand
)
Author
2011-02-26
Made EntitySubstitution a utility class, not the kind of class you subclass.
Leonard Richardson
2011-02-26
The attribute list comes in as a dictionary, so stop turning it into a list f...
Leonard Richardson
2011-02-26
Minor cleanup and adding docstrings.
Leonard Richardson
2011-02-26
Removed the redundant pretty_print argument except for the top level.
Leonard Richardson
2011-02-26
Cleaned up decodeContents, and removed encodeContents, which isn't used.
Leonard Richardson
2011-02-26
Refactored the code that makes a string output-ready.
Leonard Richardson
2011-02-26
Renamed replace_with_html_entities to substitute_html_entities.
Leonard Richardson
2011-02-26
First stab at HTML entity replacement.
Leonard Richardson
2011-02-22
Solved the question of how to decide between ' (XML) and &squot; (HTML) ...
Leonard Richardson
2011-02-21
PEP-8-ified more argument names.
Leonard Richardson
2011-02-21
Renamed prettyPrint to pretty_print.
Leonard Richardson
2011-02-21
Removed the now-useless Entities class.
Leonard Richardson
2011-02-21
Got rid of isString.
Leonard Richardson
2011-02-21
Switched Tag.decode to use EntitySubstitution.substitute_xml.
Leonard Richardson
2011-02-20
Added tests of custom lists of empty-element tags.
Leonard Richardson
2011-02-20
Tag.is_empty_element is determined dynamically, based on a) whether the build...
Leonard Richardson
2011-02-18
Still trying to get html5lib to rewrite the META tag.
Leonard Richardson
2011-02-18
Moved the substitution code to the Tag constructor so that we don't have to r...
Leonard Richardson
2011-02-18
Fixed the findAll backwards compatibility alias.
Leonard Richardson
2011-02-18
Fixed test failures that were masked by the compatibility methods.
Leonard Richardson
2011-02-18
Did a bunch more renames--they're listed in the CHANGELOG.
Leonard Richardson
2011-02-18
Renamed findAllPrevious to find_all_previous.
Leonard Richardson
2011-02-18
Renamed findAllNext to find_all_next.
Leonard Richardson
2011-02-18
Renamed findNext to find_next.
Leonard Richardson
2011-02-18
Renamed a straggler generator.
Leonard Richardson
2011-02-18
Renamed the generators and made them properties.
Leonard Richardson
2011-02-18
Renamed recursiveChildGenerator to recursive_children.
Leonard Richardson
2011-02-18
Renamed findAll to find_all.
Leonard Richardson
2011-02-18
Got rid of _convertEntities altogether (though I'll probably have to introduc...
Leonard Richardson
2011-02-18
Removed builder argument from _convertEntities.
Leonard Richardson
2011-02-18
Convert all entities to Unicode, don't make it configurable.
Leonard Richardson
2011-02-13
Added tests for namespaced doctypes.
Leonard Richardson
2011-02-10
Added some elementary doctype handling.
Leonard Richardson
2011-02-10
Fixed the ability to encode strings.
Leonard Richardson
2011-01-28
Made .string a dynamic property.
Leonard Richardson
2011-01-28
Moved the code back into a beautifulsoup/ directory.
Leonard Richardson