<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Print 30 Boxes Calendar as a Pocketmod</title>
	<atom:link href="http://www.fairlyuseless.com/2007/06/04/print-30-boxes-calendar-as-a-pocketmod/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fairlyuseless.com/2007/06/04/print-30-boxes-calendar-as-a-pocketmod/</link>
	<description>a collection of random thoughts</description>
	<pubDate>Tue, 06 Jan 2009 22:52:16 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: Bama</title>
		<link>http://www.fairlyuseless.com/2007/06/04/print-30-boxes-calendar-as-a-pocketmod/#comment-27224</link>
		<dc:creator>Bama</dc:creator>
		<pubDate>Thu, 29 Nov 2007 21:29:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.fairlyuseless.com/2007/06/04/print-30-boxes-calendar-as-a-pocketmod/#comment-27224</guid>
		<description>Yes, but the Toodledo booklet content is awful, and the formatting is too. I have been tinkering with it, trying to get it imported here with no luck. This rePocketmod is so much nicer if there were only a swf file for it.......

::wishing::

Thanks for the great s'ware!</description>
		<content:encoded><![CDATA[<p>Yes, but the Toodledo booklet content is awful, and the formatting is too. I have been tinkering with it, trying to get it imported here with no luck. This rePocketmod is so much nicer if there were only a swf file for it&#8230;&#8230;.</p>
<p>::wishing::</p>
<p>Thanks for the great s&#8217;ware!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.fairlyuseless.com/2007/06/04/print-30-boxes-calendar-as-a-pocketmod/#comment-13487</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 04 Jun 2007 23:27:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.fairlyuseless.com/2007/06/04/print-30-boxes-calendar-as-a-pocketmod/#comment-13487</guid>
		<description>@sfo

I had seen &lt;a href="http://www.toodledo.com/" rel="nofollow"&gt;Toodledo&lt;/a&gt; mentioned on &lt;a href="http://lifehacker.com/software/lists/turn-your-toodledo-to+do-list-into-a-printed-booklet-257719.php" rel="nofollow"&gt;LifeHacker&lt;/a&gt; but saw that they had already created one.

&lt;a href="http://www.toodledo.com/booklet.php" rel="nofollow"&gt;http://www.toodledo.com/booklet.php&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>@sfo</p>
<p>I had seen <a href="http://www.toodledo.com/" rel="nofollow">Toodledo</a> mentioned on <a href="http://lifehacker.com/software/lists/turn-your-toodledo-to+do-list-into-a-printed-booklet-257719.php" rel="nofollow">LifeHacker</a> but saw that they had already created one.</p>
<p><a href="http://www.toodledo.com/booklet.php" rel="nofollow">http://www.toodledo.com/booklet.php</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.fairlyuseless.com/2007/06/04/print-30-boxes-calendar-as-a-pocketmod/#comment-13484</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 04 Jun 2007 23:22:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.fairlyuseless.com/2007/06/04/print-30-boxes-calendar-as-a-pocketmod/#comment-13484</guid>
		<description>@Narendra

http://www.fairlyuseless.com/2007/06/04/30-boxes-to-do-list-pocketmod-too/trackback/</description>
		<content:encoded><![CDATA[<p>@Narendra</p>
<p><a href="http://www.fairlyuseless.com/2007/06/04/30-boxes-to-do-list-pocketmod-too/trackback/" rel="nofollow">http://www.fairlyuseless.com/2007/06/04/30-boxes-to-do-list-pocketmod-too/trackback/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.fairlyuseless.com/2007/06/04/print-30-boxes-calendar-as-a-pocketmod/#comment-13473</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 04 Jun 2007 23:00:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.fairlyuseless.com/2007/06/04/print-30-boxes-calendar-as-a-pocketmod/#comment-13473</guid>
		<description>@sfo

I am not really a programmer, but I am really good at cut 'n paste. :)

Google "xml parsing actionscript" and that should give you plenty of info.

Load XML:
&lt;code&gt;
 function getTodo(todoXMLurl) {
	var todo = new Array();
	todo_xml = new XML();
	todo_xml.ignoreWhite = true;
	todo_xml.load(todoXMLurl);
	todo_xml.onLoad = function(sucess) {
		if (sucess) {
			parseTodo(todo_xml);
		} else {
			showError("Error loading xml. Check you public feed or network connection.");
		}
	};
}
&lt;/code&gt;

Slap it into an array:
&lt;code&gt;
function parseTodo(xmlDoc_xml) {
   temp = new Array();
   parentNode = xmlDoc_xml.firstChild;
   listTitle = parentNode.childNodes[0].childNodes[0].firstChild;
   for (var a = 6; a&lt;parentNode.firstChild.childNodes.length; a++) {
	listItem = parentNode.childNodes[0].childNodes[a].childNodes[0].firstChild;
	itemDate = parentNode.childNodes[0].childNodes[a].childNodes[1].firstChild;
	n = new AddList(listItem, itemDate);
	todos.push(n);
   }
}
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>@sfo</p>
<p>I am not really a programmer, but I am really good at cut &#8216;n paste. <img src='http://www.fairlyuseless.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Google &#8220;xml parsing actionscript&#8221; and that should give you plenty of info.</p>
<p>Load XML:<br />
<code><br />
 function getTodo(todoXMLurl) {<br />
	var todo = new Array();<br />
	todo_xml = new XML();<br />
	todo_xml.ignoreWhite = true;<br />
	todo_xml.load(todoXMLurl);<br />
	todo_xml.onLoad = function(sucess) {<br />
		if (sucess) {<br />
			parseTodo(todo_xml);<br />
		} else {<br />
			showError("Error loading xml. Check you public feed or network connection.");<br />
		}<br />
	};<br />
}<br />
</code></p>
<p>Slap it into an array:<br />
<code><br />
function parseTodo(xmlDoc_xml) {<br />
   temp = new Array();<br />
   parentNode = xmlDoc_xml.firstChild;<br />
   listTitle = parentNode.childNodes[0].childNodes[0].firstChild;<br />
   for (var a = 6; a
<parentnode .firstChild.childNodes.length; a++) {<br />
	listItem = parentNode.childNodes[0].childNodes[a].childNodes[0].firstChild;<br />
	itemDate = parentNode.childNodes[0].childNodes[a].childNodes[1].firstChild;<br />
	n = new AddList(listItem, itemDate);<br />
	todos.push(n);<br />
   }<br />
}<br />
</code></parentnode></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Narendra</title>
		<link>http://www.fairlyuseless.com/2007/06/04/print-30-boxes-calendar-as-a-pocketmod/#comment-13297</link>
		<dc:creator>Narendra</dc:creator>
		<pubDate>Mon, 04 Jun 2007 15:03:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.fairlyuseless.com/2007/06/04/print-30-boxes-calendar-as-a-pocketmod/#comment-13297</guid>
		<description>Thanks for including 30 Boxes.  Could you also include a module for 30 Boxes To Do lists.  There is an RSS icon at the top of to do lists (the big button with the check mark) that gives the feed for the current list being displayed.

That would be awesome.</description>
		<content:encoded><![CDATA[<p>Thanks for including 30 Boxes.  Could you also include a module for 30 Boxes To Do lists.  There is an RSS icon at the top of to do lists (the big button with the check mark) that gives the feed for the current list being displayed.</p>
<p>That would be awesome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sfo</title>
		<link>http://www.fairlyuseless.com/2007/06/04/print-30-boxes-calendar-as-a-pocketmod/#comment-13085</link>
		<dc:creator>sfo</dc:creator>
		<pubDate>Mon, 04 Jun 2007 04:48:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.fairlyuseless.com/2007/06/04/print-30-boxes-calendar-as-a-pocketmod/#comment-13085</guid>
		<description>Hi, I wanted to use your idea for a Toodledo calendar pocketmod, but I have not figured out how you parse the info and put it into an .swf file.  Can youi provide a tutorial on how you made this one or the Google cal mod?</description>
		<content:encoded><![CDATA[<p>Hi, I wanted to use your idea for a Toodledo calendar pocketmod, but I have not figured out how you parse the info and put it into an .swf file.  Can youi provide a tutorial on how you made this one or the Google cal mod?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.143 seconds -->
