Wed Dec 10 12:32:27 2008 UTC ()
Remove homepage URL from DESCR.


(wiz)
diff -r1.1 -r1.2 pkgsrc/www/py-beautifulsoup/DESCR

cvs diff -r1.1 -r1.2 pkgsrc/www/py-beautifulsoup/DESCR (expand / switch to unified diff)

--- pkgsrc/www/py-beautifulsoup/DESCR 2008/09/05 15:46:51 1.1
+++ pkgsrc/www/py-beautifulsoup/DESCR 2008/12/10 12:32:27 1.2
@@ -1,12 +1,10 @@ @@ -1,12 +1,10 @@
1Beautiful Soup parses arbitrarily invalid XML- or HTML-like substance 1Beautiful Soup parses arbitrarily invalid XML- or HTML-like substance
2into a tree representation. It provides methods and Pythonic idioms 2into a tree representation. It provides methods and Pythonic idioms
3that make it easy to search and modify the tree. 3that make it easy to search and modify the tree.
4 4
5A well-formed XML/HTML document will yield a well-formed data 5A well-formed XML/HTML document will yield a well-formed data
6structure. An ill-formed XML/HTML document will yield a 6structure. An ill-formed XML/HTML document will yield a correspondingly
7correspondingly ill-formed data structure. If your document is only 7ill-formed data structure. If your document is only locally
8locally well-formed, you can use this library to find and process the 8well-formed, you can use this library to find and process the
9well-formed part of it. The BeautifulSoup class has heuristics for 9well-formed part of it. The BeautifulSoup class has heuristics for
10obtaining a sensible parse tree in the face of common HTML errors. 10obtaining a sensible parse tree in the face of common HTML errors.
11 
12WWW: http://www.crummy.com/software/BeautifulSoup/