<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Why Toodledo’s Downtime Isn’t Bothering Me</title>
	<atom:link href="http://gothick.org.uk/2009/06/11/why-toodledos-downtime-isnt-bothering-me/feed/" rel="self" type="application/rss+xml" />
	<link>http://gothick.org.uk/2009/06/11/why-toodledos-downtime-isnt-bothering-me/</link>
	<description>Matt Gibson</description>
	<lastBuildDate>Mon, 26 Jul 2010 17:27:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Hugh O'Donnell</title>
		<link>http://gothick.org.uk/2009/06/11/why-toodledos-downtime-isnt-bothering-me/comment-page-1/#comment-1285</link>
		<dc:creator>Hugh O'Donnell</dc:creator>
		<pubDate>Fri, 12 Jun 2009 01:01:37 +0000</pubDate>
		<guid isPermaLink="false">http://gothick.org.uk/?p=408#comment-1285</guid>
		<description>Great comments on the Toodledo situation.

I&#039;m not much of a geek, although I taught computer applications in the Apple IIe days and early Mac days. Your position on responsibility is pure wisdom.

Best regards,

Hugh</description>
		<content:encoded><![CDATA[<p>Great comments on the Toodledo situation.</p>
<p>I’m not much of a geek, although I taught computer applications in the Apple IIe days and early Mac days. Your position on responsibility is pure wisdom.</p>
<p>Best regards,</p>
<p>Hugh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gothick</title>
		<link>http://gothick.org.uk/2009/06/11/why-toodledos-downtime-isnt-bothering-me/comment-page-1/#comment-1284</link>
		<dc:creator>gothick</dc:creator>
		<pubDate>Thu, 11 Jun 2009 22:35:08 +0000</pubDate>
		<guid isPermaLink="false">http://gothick.org.uk/?p=408#comment-1284</guid>
		<description>@jamfac It&#039;s a completely hacky bodge, but here it is:

&lt;code&gt;
/opt/local/bin/wget --directory-prefix=/path/to/save/ToodledoBackups --no-check-certificate --save-cookies /
tmp/toodledo_cookies.txt --post-data &#039;email=myemailaddress&amp;pass=mypassword&amp;remember=1&#039; http://www.toodledo.com
/signin.php http://www.toodledo.com/xml.php
&lt;/code&gt;

Obviously replace &quot;myemailaddress&quot;, &quot;mypassword&quot; and &quot;/path/to/save/ToodledoBackups&quot; with appropriate things for you and your system. 

This just runs wget, first on the Toodledo login page, posting my username and password and (effectively) checking the &quot;remember me&quot; box so a cookie gets saved. Then it visits the &quot;xml.php&quot; page, which simply dumps all the logged-in user&#039;s tasks in XML format. wget will automatically save with new filenames if the file it&#039;s getting already exists, so this will create a new backup file in the specified directory every time it&#039;s run, rather than overwriting the same one each time.

If you prefer a different format, &quot;csv.php&quot; will download a CSV file, and &quot;txt.php&quot; will grab plain text. There are links to all these pages from the Import/Export/Sync pages at Toodledo.

I&#039;ve got this in a script which removes the old cookie file before it runs the wget; can&#039;t remember whether that&#039;s actually needed or not.

There will be a nicer, cleaner and safer way of doing this -- using the API with a registered API key is probably the way to go. But as this never broke, I never bothered fixing it :)

Plus there&#039;s an application or two which will sync with Toodledo, I believe (maybe their iPhone app? Not sure) which would be an even easier way of making sure you didn&#039;t lose everything if Toodledo ever went away.</description>
		<content:encoded><![CDATA[<p>@jamfac It’s a completely hacky bodge, but here it is:</p>
<p><code><br />
/opt/local/bin/wget --directory-prefix=/path/to/save/ToodledoBackups --no-check-certificate --save-cookies /<br />
tmp/toodledo_cookies.txt --post-data 'email=myemailaddress&#038;pass=mypassword&#038;remember=1' <a href="http://www.toodledo.com" rel="nofollow">http://www.toodledo.com</a><br />
/signin.php <a href="http://www.toodledo.com/xml.php" rel="nofollow">http://www.toodledo.com/xml.php</a><br />
</code></p>
<p>Obviously replace “myemailaddress”, “mypassword” and “/path/to/save/ToodledoBackups” with appropriate things for you and your system. </p>
<p>This just runs wget, first on the Toodledo login page, posting my username and password and (effectively) checking the “remember me” box so a cookie gets saved. Then it visits the “xml.php” page, which simply dumps all the logged-in user’s tasks in XML format. wget will automatically save with new filenames if the file it’s getting already exists, so this will create a new backup file in the specified directory every time it’s run, rather than overwriting the same one each time.</p>
<p>If you prefer a different format, “csv.php” will download a CSV file, and “txt.php” will grab plain text. There are links to all these pages from the Import/Export/Sync pages at Toodledo.</p>
<p>I’ve got this in a script which removes the old cookie file before it runs the wget; can’t remember whether that’s actually needed or not.</p>
<p>There will be a nicer, cleaner and safer way of doing this — using the API with a registered API key is probably the way to go. But as this never broke, I never bothered fixing it <img src='http://gothick.org.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Plus there’s an application or two which will sync with Toodledo, I believe (maybe their iPhone app? Not sure) which would be an even easier way of making sure you didn’t lose everything if Toodledo ever went away.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kavey</title>
		<link>http://gothick.org.uk/2009/06/11/why-toodledos-downtime-isnt-bothering-me/comment-page-1/#comment-1283</link>
		<dc:creator>kavey</dc:creator>
		<pubDate>Thu, 11 Jun 2009 20:34:29 +0000</pubDate>
		<guid isPermaLink="false">http://gothick.org.uk/?p=408#comment-1283</guid>
		<description>You really ought to write professionally. Additionally to those book projects, I mean.</description>
		<content:encoded><![CDATA[<p>You really ought to write professionally. Additionally to those book projects, I mean.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jamfac</title>
		<link>http://gothick.org.uk/2009/06/11/why-toodledos-downtime-isnt-bothering-me/comment-page-1/#comment-1282</link>
		<dc:creator>jamfac</dc:creator>
		<pubDate>Thu, 11 Jun 2009 20:04:56 +0000</pubDate>
		<guid isPermaLink="false">http://gothick.org.uk/?p=408#comment-1282</guid>
		<description>Hi, can you please let me have a copy of your toodledo backup script - thanks!</description>
		<content:encoded><![CDATA[<p>Hi, can you please let me have a copy of your toodledo backup script — thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
