Skip to content

Commit 4286aa8

Browse files
committed
changes update for new release
1 parent b23b493 commit 4286aa8

3 files changed

Lines changed: 22 additions & 10 deletions

File tree

CHANGES

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
jsoup changelog
2-
1+
xsoup changelog
2+
*** Release 1.7.4
3+
* Added put head delete method
4+
* Added raw http post data by using dataBinary method (see curl for detail use)
35
*** Release 1.7.3 [PENDING]
6+
jsoup changelog
47
* Introduced FormElement, providing easy access to form controls and their data, and the ability to submit forms
58
with Jsoup.Connect.
69

README

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
jsoup: Java HTML parser that makes sense of real-world HTML soup.
1+
xsoup: Java HTML parser that makes sense of real-world HTML soup.
22

3-
jsoup is a Java library for working with real-world HTML. It provides a very convenient API for extracting and manipulating data, using the best of DOM, CSS, and jquery-like methods.
3+
xsoup is a Java library for working with real-world HTML. It provides a very convenient API for extracting and manipulating data, using the best of DOM, CSS, and jquery-like methods.
44

5-
jsoup implements the WHATWG HTML5 specification (http://whatwg.org/html), and parses HTML to the same DOM as modern browsers do.
5+
xsoup implements the WHATWG HTML5 specification (http://whatwg.org/html), and parses HTML to the same DOM as modern browsers do.
66

77
* parse HTML from a URL, file, or string
88
* find and extract data, using DOM traversal or CSS selectors
99
* manipulate the HTML elements, attributes, and text
1010
* clean user-submitted content against a safe white-list, to prevent XSS
1111
* output tidy HTML
1212

13-
jsoup is designed to deal with all varieties of HTML found in the wild; from pristine and validating, to invalid tag-soup; jsoup will create a sensible parse tree.
13+
xsoup is designed to deal with all varieties of HTML found in the wild; from pristine and validating, to invalid tag-soup; jsoup will create a sensible parse tree.
1414

15-
See http://jsoup.org/ for downloads and documentation.
15+
See http://xsoup.org/ for downloads and documentation.

pom.xml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
<licenses>
1717
<license>
1818
<name>The MIT License</name>
19-
<url>http://jsoup.com/license</url>
19+
2020
<distribution>repo</distribution>
2121
</license>
2222
</licenses>
2323
<scm>
2424
<url>https://github.com/JavaMonday/xsoup</url>
25-
<connection>scm:git:hhttps://github.com/JavaMonday/xsoup.git</connection>
26-
<!-- <developerConnection>scm:git:git@github.com:jhy/jsoup.git</developerConnection> -->
25+
<connection>scm:git:https://github.com/JavaMonday/xsoup.git</connection>
26+
2727
</scm>
2828
<organization>
2929
<name>Java monday</name>
@@ -192,6 +192,15 @@
192192
</roles>
193193
<timezone>+11</timezone>
194194
</developer>
195+
<developer>
196+
<id>ngocbd</id>
197+
<name>Bui Dinh Ngoc</name>
198+
<email>ngocbd@javamonday.com</email>
199+
<roles>
200+
<role>Lead Developer</role>
201+
</roles>
202+
<timezone>+7</timezone>
203+
</developer>
195204
</developers>
196205

197206
</project>

0 commit comments

Comments
 (0)