Skip to content

Commit e0ba45d

Browse files
author
Christoph Singer
committed
Updated docs
1 parent 6b1d65b commit e0ba45d

File tree

3 files changed

+36
-32
lines changed

3 files changed

+36
-32
lines changed

CHANGELOG.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,16 @@ Compatibility with Symfony 4.3:
1111
Setting HTML content via `HtmlPageCrawler::html($html)` is *not possible* any more,
1212
use `HtmlPageCrawler::setInnerHtml($html)` instead
1313

14-
- `HtmlPageCrawler::getInnerHtml()` was removed because it is now just the same as `html()`.
15-
1614
- `HtmlPageCrawler::text()` is now just the parent `Crawler::text()` and acts as *getter* only
1715
that returns the text content from the *first* node only. For setting text content, use `HtmlPageCrawler::setText($text)` instead.
1816

17+
- `HtmlPageCrawler::attr()` is now just the parent `Crawler::attr()` and acts as *getter* only.
18+
For setting attributes use `HtmlPageCrawler::setAttribute($name, $value)` instead
19+
1920
- new method `HtmlPageCrawler::getCombinedText()` that returns the combined text from all nodes (as jQuery's `text()` function does and previous versions of `HtmlPageCrawler::text()` did)
2021

22+
- removed method `HtmlPageCrawler::isDisconnected()`
23+
2124

2225
1.4.1
2326
=====

README.md

+2-30
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ HtmlPageDom
66
[![Latest Version](http://img.shields.io/packagist/v/wa72/htmlpagedom.svg)](https://packagist.org/packages/wa72/htmlpagedom)
77
[![Downloads from Packagist](http://img.shields.io/packagist/dt/wa72/htmlpagedom.svg)](https://packagist.org/packages/wa72/htmlpagedom)
88

9-
> __Important__: BC break in current master / future 2.0 for compatibility with Symfony 4.3, see the dedicated block below the usage examples.
9+
> __Important__: BC break in version 2.0 for compatibility with Symfony 4.3, see [UPGRADE.md](UPGRADE.md).
1010
1111
`Wa72\HtmlPageDom` is a PHP library for easy manipulation of HTML documents using DOM.
1212
It requires [DomCrawler from Symfony2 components](https://github.com/symfony/DomCrawler) for traversing
@@ -69,7 +69,7 @@ the selected elements using the following jQuery-like manipulation functions:
6969
- `prepend()`, `prependTo()`
7070
- `remove()`
7171
- `replaceAll()`, `replaceWith()`
72-
- `text()` (get text content) and `setText($text)`
72+
- `text()`, `getCombinedText()` (get text content of all nodes in the Crawler), and `setText($text)`
7373
- `wrap()`, `unwrap()`, `wrapInner()`, `unwrapInner()`, `wrapAll()`
7474

7575
To get the modified DOM as HTML code use `html()` (returns innerHTML of the first node in your crawler object)
@@ -186,34 +186,6 @@ echo $page->indent()->save();
186186
echo $page->minify()->save();
187187
```
188188

189-
190-
191-
>__BC BREAK__ in current master / future 2.0 for compatibility with Symfony 4.3
192-
>------------------------------------------------------------------------------
193-
>
194-
> - `HtmlPageCrawler::html()` is now just the parent `Crawler::html()` and acts as *getter* only.
195-
> Setting HTML content via `HtmlPageCrawler::html($html)` is *not possible* any more,
196-
> use `HtmlPageCrawler::setInnerHtml($html)` instead
197-
>
198-
> - `HtmlPageCrawler::getInnerHtml()` was removed because it is now just the same as `html()`.
199-
>
200-
> - `HtmlPageCrawler::text()` is now just the parent `Crawler::text()` and acts as *getter* only
201-
> that returns the text content from the *first* node only. For setting text content, use
202-
> `HtmlPageCrawler::setText($text)` instead.
203-
>
204-
> - new method `HtmlPageCrawler::getCombinedText()` that returns the combined text from all nodes
205-
> (as jQuery's `text()` function does and previous versions of `HtmlPageCrawler::text()` did)
206-
>
207-
> __To update your code, you have to:__
208-
>
209-
> - replace all calls to `$MyCrawlerInstance->html($html)` used as *setter* by `$MyCrawlerInstance->setInnerHtml($html)`
210-
> - replace all calls to `$MyCrawlerInstance->getInnerHtml()` by `$MyCrawlerInstance->html()`
211-
> - replace all calls to `$MyCrawlerInstance->text($text)` used as *setter* by `$MyCrawlerInstance->setText($text)`
212-
> - replace all calls to `$MyCrawlerInstance->first()->text()` by `$MyCrawlerInstance->text()`
213-
> - replace all calls to `$MyCrawlerInstance->text()` (i.e. every call to `text()` not preceded
214-
> - by `first()`) by `$MyCrawlerInstance->getCombinedText()`
215-
216-
217189
Limitations
218190
-----------
219191

UPGRADE.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
Upgrade from 1.x to 2.0
2+
------------------------
3+
4+
Several changes have been made to the public API in 2.0 in order to keep
5+
compatibility with Symfony 4.3:
6+
7+
- `HtmlPageCrawler::html()` is now just the parent `Crawler::html()` and acts as *getter* only.
8+
Setting HTML content via `HtmlPageCrawler::html($html)` is *not possible* any more,
9+
use `HtmlPageCrawler::setInnerHtml($html)` instead
10+
11+
- `HtmlPageCrawler::text()` is now just the parent `Crawler::text()` and acts as *getter* only
12+
that returns the text content from the *first* node only. For setting text content, use
13+
`HtmlPageCrawler::setText($text)` instead.
14+
15+
- new method `HtmlPageCrawler::getCombinedText()` that returns the combined text from all nodes
16+
(as jQuery's `text()` function does and previous versions of `HtmlPageCrawler::text()` did)
17+
18+
- `HtmlPageCrawler::attr()` is now just the parent `Crawler::attr()` and acts as *getter* only.
19+
For setting attributes use `HtmlPageCrawler::setAttribute($name, $value)`
20+
21+
- removed method `HtmlPageCrawler::isDisconnected()`
22+
23+
__To update your code, you have to:__
24+
25+
- replace all calls to `$MyCrawlerInstance->html($html)` used as *setter* by `$MyCrawlerInstance->setInnerHtml($html)`
26+
- replace all calls to `$MyCrawlerInstance->attr($name, $value)` used as *setter* by `$MyCrawlerInstance->setAttribute($name, $value)`
27+
- replace all calls to `$MyCrawlerInstance->text($text)` used as *setter* by `$MyCrawlerInstance->setText($text)`
28+
- replace all calls to `$MyCrawlerInstance->text()` (i.e. every call to `text()` not preceded by `first()`) by `$MyCrawlerInstance->getCombinedText()`
29+
- replace all calls to `$MyCrawlerInstance->first()->text()` by `$MyCrawlerInstance->text()`

0 commit comments

Comments
 (0)