init
This commit is contained in:
commit
72a26edcff
22092 changed files with 2101903 additions and 0 deletions
265
lib/sd/CHANGELOG.md
Normal file
265
lib/sd/CHANGELOG.md
Normal file
|
|
@ -0,0 +1,265 @@
|
|||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||
|
||||
## [1.9.1] - 2019-10-20
|
||||
### Fixed
|
||||
- Fixed broken "text" selectors [#175](https://sourceforge.net/p/simplehtmldom/bugs/175/)
|
||||
|
||||
## [1.9] - 2019-05-30
|
||||
### Added
|
||||
- Added unit test for bug reports
|
||||
- Added test for bug [#153](https://sourceforge.net/p/simplehtmldom/bugs/153/)
|
||||
- Added test for bug [#163](https://sourceforge.net/p/simplehtmldom/bugs/163/)
|
||||
- Added test for bug [#166](https://sourceforge.net/p/simplehtmldom/bugs/166/)
|
||||
- Added test for bug [#169](https://sourceforge.net/p/simplehtmldom/bugs/169/)
|
||||
- Added unit test for character sets UTF-8, CP1251 and CP1252 (#142)
|
||||
- Added support for meta charset to parse_charset
|
||||
- Added detection for CP1251 to parse_charset, using iconv
|
||||
- Added LICENSE file (MIT) to the project root
|
||||
- Added functions to `simple_html_dom_node`
|
||||
- `remove`: Removes the current node recursively from the DOM tree
|
||||
- `removeChild`: Removes a child node recursively from the DOM tree
|
||||
- `hasClass`: Checks if the current node has the specified class name
|
||||
- `addClass`: Adds one or more classes to the current node
|
||||
- `removeClass`: Removes one or more classes from the current node
|
||||
- `save`: Saves the current node to disk
|
||||
### Changed
|
||||
- Changed manual from custom implementation to MkDocs (https://www.mkdocs.org/)
|
||||
### Fixed
|
||||
- Fixed warning when trying to clear() the DOM on a null nodes list (#153)
|
||||
- Fixed missing whitespace when returning plaintext (#163)
|
||||
- Fixed broken detection of duplicate attributes (#166)
|
||||
- Fixed broken detection of CP1252 (ISO-8859-1) documents (#142)
|
||||
- Fixed error using next-sibling combinator ('E + F') on last child
|
||||
- Fixed selector parsing for attribute selectors ending on "s" or "i" (#169)
|
||||
|
||||
## [1.8.1] - 2019-01-13
|
||||
### Fixed
|
||||
- Fixed various bugs related to parsing classes and ids
|
||||
|
||||
## [1.8] - 2019-01-13
|
||||
### Added
|
||||
- Added documentation for `simple_html_dom_node::find`
|
||||
- Added documentation for `simple_html_dom_node::parse_selector`
|
||||
- Added documentation for `simple_html_dom_node::seek`
|
||||
- Added documentation for `simple_html_dom_node::match`
|
||||
- Added unit tests for bug reports
|
||||
- Added test for bug [#62](https://sourceforge.net/p/simplehtmldom/bugs/62/)
|
||||
- Added test for bug [#79](https://sourceforge.net/p/simplehtmldom/bugs/79/)
|
||||
- Added test for bug [#144](https://sourceforge.net/p/simplehtmldom/bugs/144/)
|
||||
- Added unit tests for CSS selectors
|
||||
- Added ability to define constants before simple_html_dom does
|
||||
- 'DEFAULT_TARGET_CHARSET'
|
||||
- 'DEFAULT_BR_TEXT'
|
||||
- 'DEFAULT_SPAN_TEXT'
|
||||
- 'MAX_FILE_SIZE'
|
||||
- Added support for CSS combinators
|
||||
- Added support for Child Combinator (`>`)
|
||||
- Added support for Next Sibling Combinator (`+`)
|
||||
- Added support for Subsequent Sibling Combinator (`~`)
|
||||
- Added support for multiclass selectors (`.class.class.class`)
|
||||
- Added support for multiattribute selectors (`[attr1][attr2][attribute3]`)
|
||||
- Added support for attribute selectors
|
||||
- Added support for pipe selectors (`|=`)
|
||||
- Added support for tilde selectors (`~=`)
|
||||
- Added support for case sensitivity selectors (`i` and `s`)
|
||||
- Added unit tests for PHP compatibility to PHP 5.6+
|
||||
- Added coding standard using PHP_CodeSniffer
|
||||
### Changed
|
||||
- Removed automatic filtering of 'tbody' selectors (#79)
|
||||
> Remove 'tbody' from all selectors to maintain the previous state!
|
||||
- Coding standard using PHP_CodeSniffer
|
||||
### Fixed
|
||||
- Fixed broken CSS selector attributes with value "0" (#62)
|
||||
- Fixed broken simple_html_dom::load_file
|
||||
- Fixed forward slashes in CSS selector breaks value matching using '*=' (#144)
|
||||
- Fixed Universal Selectors
|
||||
|
||||
## [1.7] - 2018-12-10
|
||||
### Added
|
||||
- Added code documentation to improve readability
|
||||
- Added unit tests for `simple_html_dom::$self_closing_tags`
|
||||
- Added unit tests for `simple_html_dom::$optional_closing_tags`
|
||||
- Added unit tests for bug reports
|
||||
- Added test for bug [#56](https://sourceforge.net/p/simplehtmldom/bugs/56/)
|
||||
- Added test for bug [#97](https://sourceforge.net/p/simplehtmldom/bugs/97/)
|
||||
- Added test for bug [#116](https://sourceforge.net/p/simplehtmldom/bugs/116/)
|
||||
- Added test for bug [#121](https://sourceforge.net/p/simplehtmldom/bugs/127/)
|
||||
- Added test for bug [#127](https://sourceforge.net/p/simplehtmldom/bugs/127/)
|
||||
- Added test for bug [#154](https://sourceforge.net/p/simplehtmldom/bugs/154/)
|
||||
- Added test for bug [#160](https://sourceforge.net/p/simplehtmldom/bugs/160/)
|
||||
- Added unit tests for memory management of the parser
|
||||
- Added bit flags to `simple_html_dom::load()`
|
||||
- Added bit flag `HDOM_SMARTY_AS_TEXT` to optionally filter Smarty scripts (#154)\
|
||||
**Note**: Smarty scripts are no longer filtered by default!\
|
||||
- Added build script to automate releases
|
||||
- Added support for attributes without whitespace to separate them
|
||||
### Changed
|
||||
- Improved documentation and readability for `$self_closing_tags`
|
||||
- Improved documentation and readability for `$block_tags`
|
||||
- Improved documentation and readability for `$optional_closing_tags`
|
||||
- Updated list of `simple_html_dom::$self_closing_tags`
|
||||
- Removed 'spacer' (obsolete)
|
||||
- Added 'area'
|
||||
- Added 'col'
|
||||
- Added 'meta'
|
||||
- Added 'param'
|
||||
- Added 'source'
|
||||
- Added 'track'
|
||||
- Added 'wbr'
|
||||
- Updated list of `simple_html_dom::$optional_closing_tags`
|
||||
- Removed "nobr" (obsolete)
|
||||
- Added 'th' as closable element to 'td'
|
||||
- Added 'td' as closable element to 'th'
|
||||
- Added 'optgroup' with 'optgroup' and 'option' as closable elements
|
||||
- Added 'optgroup' as closable element to 'option'
|
||||
- Added 'rp' with 'rp' and 'rt' as closable elements
|
||||
- Added 'rt' with 'rt' and 'rp' as closable elements
|
||||
- Clarified meaning of `simple_html_dom->parent`
|
||||
- Changed default `$offset` for `file_get_html()` from -1 to 0 (#161)
|
||||
- Changed `simple_html_dom::load()` to remove script tags before replacing newline characters
|
||||
- `simple_html_dom_node::text()` no longer adds whitespace to top level span elements (only to sub-elements)
|
||||
- `simple_html_dom_node::text()` adds blank lines between paragraphs
|
||||
- Normalized line endings in the repository to LF via `.gitattributes`
|
||||
- Improved performance of `simple_html_dom::parse_charset()` by approximately 25%
|
||||
- Improved performance of `simple_html_dom::parse()` by approximately 10%
|
||||
### Deprecated
|
||||
- `str_get_html()` is deprecated and should be replaced by `new simple_html_dom()`
|
||||
### Removed
|
||||
- Removed protected function `simple_html_dom::copy_until_char_escaped()`
|
||||
### Fixed
|
||||
- Fixed compatibility issues with PHP 7.3
|
||||
- Fixed typo (#147)
|
||||
- Fixed handling of incorrectly escaped text (#160)
|
||||
- Restore functionality of `$maxLen` in `file_get_html()`
|
||||
- Fixed load_file breaks if an error ocurred in another script
|
||||
|
||||
## [1.6] - 2014-05-28
|
||||
### Added
|
||||
- Added some ability to insert and create nodes
|
||||
- Add ability to search the "noise" array
|
||||
|
||||
## [1.5] - 2012-09-10
|
||||
### Added
|
||||
- Added flag: LOCK_EX while calling "file_put_contents()"
|
||||
- Added support for detecting the source html character set. This is used to convert characters when plaintext is requested.
|
||||
- Other little fixes and features, too numerous to categorize
|
||||
### Changed
|
||||
- Error of "file_get_contents()" will be thrown as an exception
|
||||
### Fixed
|
||||
- Fixed the typo of "token_blank_t"
|
||||
- Memory leak fixed
|
||||
|
||||
## [1.11] - 2008-12-14
|
||||
### Added
|
||||
- Supports xpath generated from Firebug
|
||||
- New method "dump" of "simple_html_dom_node"
|
||||
- New attribute "xmltext" of "simple_html_dom_node"
|
||||
### Changed
|
||||
- Remove preg_quote on selector match function: `[attribute*=value]`
|
||||
- Element "Comment" will treat as children
|
||||
### Fixed
|
||||
- Fixed the problem with `<pre>`
|
||||
- Fixed bug #2207477 (does not load some pages properly)
|
||||
- Fixed bug #2315853 (Error with character after < sign)
|
||||
|
||||
## [1.10] - 2008-10-25
|
||||
### Changed
|
||||
- Negative indexes supports of "find" method, thanks for Vadim Voituk
|
||||
- Constructor with automatically load contents either text or file/url, thanks for Antcs
|
||||
- Fully supports wildcard in selectors
|
||||
### Fixed
|
||||
- Fixed bug of confusing by the < symbol inside the text
|
||||
- Fixed bug of dash in selectors
|
||||
- Fixed bug of `<nobr>`
|
||||
- Fixed bug #2155883 (Nested List Parses Incorrectly)
|
||||
- Fixed bug #2155113 (error with unclosed html tags)
|
||||
|
||||
## [1.00] - 2008-09-05
|
||||
### Added
|
||||
- New method "getAllAttributes" of "simple_html_dom_node"
|
||||
- Supports full javascript string in selector: `$e->find("a[onclick=alert('hello')]")`
|
||||
### Changed
|
||||
- Changed selector "*=" to case-insentive
|
||||
### Fixed
|
||||
- Fixed the bug of selector in some critical conditions
|
||||
- Fixed the bug of striping php tags
|
||||
- Fixed the bug of remove_noise()
|
||||
- Fixed the bug of noise in attributes
|
||||
|
||||
## [0.99] - 2008-08-03
|
||||
### Changed
|
||||
- Performance tuning (boost 10%)
|
||||
- Memory requirement reduced by 25%
|
||||
- Changed function name from "file_get_dom()" to "file_get_html()"
|
||||
- Changed function name from "str_get_dom()" to "str_get_html()"
|
||||
### Fixed
|
||||
- Fixed bug #2011286 (Error with unclosed html tags)
|
||||
- Fixed bug #2012551 (Error parsing divs)
|
||||
- Fixed bug #2020924 (Error for missed tag)
|
||||
- Fixed bug (problem with `<body>` tag's innertext)
|
||||
|
||||
## [0.98] - 2008-06-24
|
||||
### Added
|
||||
- Supports "multiple class" selector feature: `<div class="a b c"></div>`
|
||||
- New "callback function" feature
|
||||
- New "multiple selectors" feature: $dom->find('p,a,b')
|
||||
- New examples
|
||||
- Supports extract contents from HTML features: $dom->plaintext
|
||||
### Changed
|
||||
- Performance tuning (boost 20%)
|
||||
- Changed simple_html_dom_node method name from "text()" to "makeup()"
|
||||
### Fixed
|
||||
- Fixed the bug of $dom->clear()
|
||||
- Fixed the bug of text nodes' innertext
|
||||
- Fixed the bug of comment nodes' innertext
|
||||
- Fixed the bug of decendent selector with optional tags
|
||||
|
||||
## [0.97] - 2008-05-09
|
||||
### Added
|
||||
- New node type "comment" (eg. $dom->find('comment'))
|
||||
- Add self-closing tags: 'base', 'spacer'
|
||||
- New example "simple_html_dom_utility.php"
|
||||
### Changed
|
||||
- File and class name changed (html_dom_parser->simple_html_dom)
|
||||
### Removed
|
||||
- ($dom->save_file) will not support anymore
|
||||
- Remove example "example_customize_parser.php"
|
||||
### Fixed
|
||||
- Fixed the bug of outertext (th)
|
||||
- Fixed the bug of regular expression escaping chars ($dom->find)
|
||||
- Fixed the bug while line-breaker and "\t" in tags
|
||||
|
||||
## [0.96] - 2008-04-27
|
||||
### Added
|
||||
- Reference section in manual
|
||||
- Added traverse section in manual
|
||||
- Added the solution while server behind proxy in FAQ (Thanks to Yousuke Shaggy)
|
||||
- New method to remove attribute.
|
||||
- New DOM operations(first_child, last_child, next_sibling, previous_sibling) (Request #1936000)
|
||||
### Changed
|
||||
- Now file_get_dom supports full file_get_contents parameters
|
||||
### Fixed
|
||||
- Fixed the bug of self-closing tags in the end of file
|
||||
- Fixed the bug of blanks in the end of tag
|
||||
- Fixed some typo of testcase
|
||||
|
||||
## [0.95] - 2008-04-13
|
||||
### Added
|
||||
- Supports tag name with namespace
|
||||
### Changed
|
||||
- New attribute filters (Thanks to Yousuke Kumakura)
|
||||
- Refine structure of testcase
|
||||
### Fixed
|
||||
- Fix the bug of optional-closing tags
|
||||
- Fix the bug of parsing the line break next to the tag's name
|
||||
|
||||
## [0.94] - 2008-04-06
|
||||
### Added
|
||||
- Add FAQ section in manual
|
||||
### Fixed
|
||||
- Fixed infinity loop while the source content is BAD HTML
|
||||
- Fixed the bug of adding new attributes to self closing tags
|
||||
- Fixed the bug of customize parser without $dom->remove_noise()
|
||||
Loading…
Add table
Add a link
Reference in a new issue