Fb2RSS

A Facebook to RSS conversion tool
git clone git://xatko.vsos.ethz.ch/Fb2RSS.git
Log | Files | Refs | Submodules

commit 64e978c6416779d47bc4406d1a3e59543aa85583
parent 182ad77e8f1f5f7b8614b473b34a6948734da377
Author: Dominik Schmidt <das1993@hotmail.com>
Date:   Tue, 30 Jun 2015 22:46:01 +0200

Finally remove commented lines.

Diffstat:
Fb2RSS.d | 2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/Fb2RSS.d b/Fb2RSS.d @@ -150,8 +150,6 @@ class FBStream : RandomFiniteAssignable!(Post){ rss.setAttribute("xmlns","http://www.w3.org/2005/Atom"); rss.addChild(new XmlNode("id").addCData(url)); rss.addChild(new XmlNode("title").addCData(title)); - //rss.addChild(new XmlNode("author").addChild(new XmlNode("name").addCData(title))); - //rss.addChild(new XmlNode("updated").addCData(posts[0].time.toISOExtString())); foreach(ref Post p; posts){ XmlNode e=new XmlNode("entry"); e.addChild(new XmlNode("title").addCData(p.title));