X-Git-Url: https://git.sommitrealweird.co.uk/rss2maildir.git/blobdiff_plain/b3a0ada9892398bd6f22ec779feb7d71836b7d2c..55d5cb2f1f1831a5c8d5846d460e26fb99adc2c8:/rss2maildir.py diff --git a/rss2maildir.py b/rss2maildir.py index aaf883f..a09cff2 100755 --- a/rss2maildir.py +++ b/rss2maildir.py @@ -64,10 +64,12 @@ class HTML2Text(HTMLParser): self.inheadingtwo = False self.inotherheading = False self.inparagraph = True + self.inblockquote = False self.inlink = False self.text = "" self.currentparagraph = "" self.headingtext = "" + self.blockquote = "" HTMLParser.__init__(self) def handle_starttag(self, tag, attrs): @@ -83,16 +85,33 @@ class HTML2Text(HTMLParser): elif tag.lower() == "a": self.inlink = True elif tag.lower() == "br": + if self.inparagraph: + self.text = self.text + "\n".join(textwrap.wrap(self.currentparagraph, 70)) + self.currentparagraph = "" + elif self.inblockquote: + self.text = self.text + "\n> " + "\n> ".join([a.strip() for a in textwrap.wrap(self.blockquote, 68)]) + self.blockquote = "" + else: + self.text = self.text + "\n" + elif tag.lower() == "blockquote": + self.inblockquote = True self.text = self.text + "\n" elif tag.lower() == "p": if self.text != "": self.text = self.text + "\n\n" - self.currentparagraph = "" - self.inparagraph = True + self.currentparagraph = "" + self.inparagraph = True def handle_startendtag(self, tag, attrs): if tag.lower() == "br": - self.text = self.text + "\n" + if self.inparagraph: + self.text = self.text + "\n".join(textwrap.wrap(self.currentparagraph, 70)) + self.currentparagraph = "" + elif self.inblockquote: + self.text = self.text + "\n> " + "\n> ".join([a.strip() for a in textwrap.wrap(self.blockquote, 68)]) + self.blockquote = "" + else: + self.text = self.text + "\n" def handle_endtag(self, tag): if tag.lower() == "h1": @@ -110,14 +129,20 @@ class HTML2Text(HTMLParser): elif tag.lower() == "p": self.text = self.text + "\n".join(textwrap.wrap(self.currentparagraph, 70)) self.inparagraph = False + elif tag.lower() == "blockquote": + self.text = self.text + "\n> " + "\n> ".join([a.strip() for a in textwrap.wrap(self.blockquote, 68)]) + self.inblockquote = False + self.blockquote = "" def handle_data(self, data): - if not self.inheadingone and not self.inheadingtwo and not self.inotherheading and not self.inparagraph: - self.text = self.text + data.strip() + " " + if self.inheadingone or self.inheadingtwo or self.inotherheading: + self.headingtext = self.headingtext + data.strip() + " " + elif self.inblockquote: + self.blockquote = self.blockquote + data.strip() + " " elif self.inparagraph: self.currentparagraph = self.currentparagraph + data.strip() + " " else: - self.headingtext = self.headingtext + data.strip() + " " + self.text = self.text + data.strip() + " " def handle_entityref(self, name): if entities.has_key(name.lower()): @@ -146,8 +171,8 @@ def parse_and_deliver(maildir, url, statedir): md5sum = md5.md5(content.encode("utf8")).hexdigest() - if db.has_key(item["link"]): - data = db[item["link"]] + if db.has_key(url + "|" + item["link"]): + data = db[url + "|" + item["link"]] data = cgi.parse_qs(data) if data["contentmd5"][0] == md5sum: continue @@ -191,7 +216,7 @@ def parse_and_deliver(maildir, url, statedir): # now add to the database about the item data = urllib.urlencode((("message-id", messageid), ("created", createddate), ("contentmd5", md5sum))) - db[item["link"]] = data + db[url + "|" + item["link"]] = data db.close()