<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Aptivate &#124; A Blog for ICT4D &#187; Offline</title>
	<atom:link href="http://blog.aptivate.org/category/offline/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.aptivate.org</link>
	<description>International I.T. Development</description>
	<lastBuildDate>Wed, 01 Feb 2012 14:09:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.6</generator>
		<item>
		<title>Offline Websites and Low Bandwidth Simulator in Go</title>
		<link>http://blog.aptivate.org/2011/02/16/offline-websites-and-low-bandwidth-simulator-in-go/</link>
		<comments>http://blog.aptivate.org/2011/02/16/offline-websites-and-low-bandwidth-simulator-in-go/#comments</comments>
		<pubDate>Wed, 16 Feb 2011 11:29:38 +0000</pubDate>
		<dc:creator>Chris Wilson</dc:creator>
				<category><![CDATA[Appropriate Technology]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Digital Resilience]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Offline]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[bandwidth]]></category>

		<guid isPermaLink="false">http://blog.aptivate.org/?p=768</guid>
		<description><![CDATA[Jon Thompson writes about Jeff Allen's interesting new work on tools for working with low bandwidth:

<ul><li>A web proxy that simulates low bandwidth connections, and</li>
<li>one that can be fed prepackaged content repositories to serve up when offline, or on the wrong end of a slow Internet connection.</li>
</ul>

Content management systems could be extended to integrate better with these tools and make sites automatically offlineable.]]></description>
			<content:encoded><![CDATA[<p>Jon Thompson writes about <a href="http://aidworkerdaily.com/2011/02/09/jeff-go-and-some-chicken-and-biscuits/">Jeff Allen&#8217;s interesting new work on tools for working with low bandwidth</a>:</p>
<blockquote><p>Jeff continues to try and solve the low bandwidth/high latency problems that aid workers face in the field every day and that we encountered in Indonesia. We all know the joy of VSAT networks that slow to a crawl because either some folks on the team are downloading stuff they shouldn’t be downloading or all the computers are infected with bandwidth sucking viruses. It appears Jeff has moved one step closer to sorting out some of the problems surrounding bandwidth optimization by utilizing the Go programming language.</p>
<p>Rather than try and explain to you what Jeff has done I’ll let you read ‘A rate-limiting HTTP proxy in Go‘ and ‘How to control your HTTP transactions in Go‘ and sort out what he is talking about. Hopefully, this post will bait Jeff into leaving a lengthy comment that explains exactly what the hell he is up to.</p></blockquote>
<p>My understanding is that Jeff is developing two useful tools:</p>
<ul>
<li><a href="http://blog.nella.org/?p=833">A web proxy that simulates low bandwidth connections</a>, similar to the <a href="loband.org/loband/simulator.jsp">Loband Simulator</a>. Jeff&#8217;s version is probably more accurate than ours because it doesn&#8217;t need to modify the web page, but ours might be easier for non-developers to try out, because you don&#8217;t have to install any software.</li>
<li>A web proxy that can be fed <a href="http://aidworkerdaily.com/2011/02/09/jeff-go-and-some-chicken-and-biscuits/#comment-49355">prepackaged content repositories to serve up</a>, so that you can take pre-prepared content (offline websites) with you into the field, and browse them through the proxy as though you were online.</li>
</ul>
<p>People have been trying to make offlineable websites for a long time. Some of the best examples so far are using entirely client-side (in-browser) technology, such as the <a href="http://www.logcluster.org/tools/log">Logistics Operational Guide</a>, developed by the World Food Programme for the Logistics Cluster, which can <a href="http://log.logcluster.org/portable.html">run entirely offline</a> using Google Gears.</p>
<p>Gears had a lot of potential for developers to create offlineable websites, but Google has abandoned its future development in favour of the open standard HTML5, which is not ready yet. So there&#8217;s no obvious and future-proof way to develop offlineable websites at the moment. Jeff&#8217;s proxy, combined with a spidering system, could be one way to download an entire site, even if it wasn&#8217;t designed to be downloaded by the developers.</p>
<p>Another important potential comes from content management systems (CMS) such as <a href="http://wordpress.com">WordPress</a>, <a href="http://drupal.org">Drupal</a> and <a href="http://joomla.org">Joomla</a>. More and more websites are developed using such systems, rather than coded from scratch. The systems know all of the pages on the site, and the links between them, and could easily build an offlineable version of the site for download into Gears, HTML5 or Jeff&#8217;s proxy. And one plugin could potentially enable thousands of sites to be offlineable, especially if it was included in the CMS distribution and enabled by default.</p>
<p>A few wikis such as MediaWiki, MoinMoin, DocuWiki and JSPWiki have a <a href="http://www.mediawiki.org/wiki/Talk:WikiText_Transfer_Protocol">programming interface</a> (XML-RPC or WebDAV) that allows a smart client to download pages in their original text format, which could make them more efficient to store offline and also potentially editable offline. Jeff&#8217;s proxy could be extended to support sites built in such wikis automatically. There are still some limitations to this approach:</p>
<ul>
<li>The pages would not look the same as the online versions, since the styling wouldn&#8217;t be downloaded and the effects of CMS plugins would not be visible;</li>
<li>It would probably still be quite slow to download an entire site this way, by spidering, without server-side support for downloading multiple pages at once;</li>
<li>Few websites are built out of Wikis, so the potential maximum reach is limited compared to better support for WordPress, Drupal or Joomla.
</li>
</ul>
<p>Anyway, I wish I knew Go, and had time to hack on Jeff&#8217;s proxy tools.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aptivate.org/2011/02/16/offline-websites-and-low-bandwidth-simulator-in-go/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mobiles for Scientific Research</title>
		<link>http://blog.aptivate.org/2010/07/09/mobiles-for-scientific-research/</link>
		<comments>http://blog.aptivate.org/2010/07/09/mobiles-for-scientific-research/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 09:43:54 +0000</pubDate>
		<dc:creator>Chris Wilson</dc:creator>
				<category><![CDATA[Mobiles]]></category>
		<category><![CDATA[Offline]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PDAs]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[agile]]></category>
		<category><![CDATA[bandwidth]]></category>
		<category><![CDATA[data collection]]></category>
		<category><![CDATA[africa]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[ictp]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[science]]></category>

		<guid isPermaLink="false">http://blog.aptivate.org/?p=591</guid>
		<description><![CDATA[We know mobiles are very useful in areas where desktop computer and communications infrastructure is not easily available or affordable. And we&#8217;re very interested in mobile applications and scientific research in exactly these regions. So I was very interested to see a new training workshop being run by the Science Dissemination Unit (SDU) of the [...]]]></description>
			<content:encoded><![CDATA[<p>We know mobiles are very useful in areas where desktop computer and communications infrastructure is not easily available or affordable. And we&#8217;re very interested in mobile applications and scientific research in exactly these regions.</p>
<p>So I was very interested to see a new training workshop being run by the <a href="http://sdu.ictp.it">Science Dissemination Unit (SDU)</a> of the <a href="http://ictp.it">Abdus Salam International Centre for Theoretical Physics (ICTP)</a>. The workshop is on <a href="http://cdsagenda5.ictp.trieste.it/full_display.php?ida=a09152">Mobile Science: Sensing, Computing and Dissemination</a> and the deadline for applications is tomorrow, July 10th.</p>
<p>Quoting from the announcement: </p>
<blockquote><p>
The Science Dissemination Unit (SDU) of the Abdus Salam International Centre for Theoretical Physics (ICTP), with the assistance of the University of Washington (USA) and of the UCLA Centerfor Embedded Networked Sensing (USA) will hold a Workshop on &#8220;Mobile Science: Sensing, Computing and Dissemination&#8221; in Trieste (Italy) from the 2 to the 5 of November 2010.</p>
<p>Mobile applications offer tremendous benefits to academic research and<br />
education, and to society as a whole throughout the world. This is an<br />
opportunity that deserves attention and promotion, especially in less<br />
developed areas where mobile phones are the first telecommunications<br />
technology in history to have more users than in the developed world.
</p></blockquote>
<p>The specific things that interested me were:</p>
<dl>
<dt>The Mobile Science workshop aims to engage the scientific community in developing countries in the design, development, and deployment of the newest mobile scientific applications;</dt>
<dd>i.e. advocating appropriate mobile applications in scientific<br />
research/academia;</dd>
<dt>Participants will learn how to apply mobile technology tools to retrieve scientific data</dt>
<dd>I.e. designing mobile apps for science data collection;</dd>
<dt>how to apply appropriate web-based analysis to assimilate mobile data into scientific studies</dt>
<dd>I.e. web-based statistical analysis and presentation, like a free online version of SPSS? As far as I know this doesn&#8217;t exist yet. The closest that I can think of is the Google Docs spreadsheet, which is of course just a spreadsheet, requires an internet connection and doesn&#8217;t allow plugins for additional scientific analysis functionality. But there could be a very interesting app to develop here.</dd>
<dt>and how to share their scientific findings with a potentially large mobile audience.</dt>
<dd>I.e. <a href="http://www.aptivate.org/webguidelines/">low bandwidth design</a> with an emphasis on web standards for cross-platform compatibility, so that it works on the largest number of mobile devices.</dd>
</dl>
<p>If you want to apply, better get on your bike (or modem?) because the deadline is tomorrow. If you want to do mobile scientific research applications, please get in touch, we&#8217;d like to help you.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aptivate.org/2010/07/09/mobiles-for-scientific-research/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Offline Wikipedia</title>
		<link>http://blog.aptivate.org/2008/11/21/offline-wikipedia/</link>
		<comments>http://blog.aptivate.org/2008/11/21/offline-wikipedia/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 16:48:55 +0000</pubDate>
		<dc:creator>Chris Wilson</dc:creator>
				<category><![CDATA[Appropriate Technology]]></category>
		<category><![CDATA[Design and Usability]]></category>
		<category><![CDATA[Education]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Offline]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[bandwidth]]></category>

		<guid isPermaLink="false">http://tinderblog.wordpress.com/?p=52</guid>
		<description><![CDATA[I&#8217;m working on making Wikipedia, the (in)famous free encyclopaedia, available offline, for a project in a school in rural Zambia where Internet access will be slow, expensive and unreliable. What I&#8217;m looking for is: Completely offline operation Runs on Linux Reasonable selection of content from English Wikipedia, preferably with some images Looks and feels like [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m working on making <a href="http://en.wikipedia.org/">Wikipedia</a>, the <a href="http://en.wikipedia.org/wiki/Wikipedia">(in)famous</a> free encyclopaedia, available offline, for a project in a school in rural Zambia where Internet access will be slow, expensive and unreliable.</p>
<p>What I&#8217;m looking for is:</p>
<ul>
<li>Completely offline operation</li>
<li>Runs on Linux</li>
<li>Reasonable selection of content from English Wikipedia, preferably with some images</li>
<li>Looks and feels like the Wikipedia website (e.g. accessed through a browser)</li>
<li>Keyword search like the Wikipedia website</li>
</ul>
<p>Tools that have built-in search engines usually require that you download a <a title="Latest Wikipedia pages-articles XML dump file" href="http://download.wikimedia.org/enwiki/latest/enwiki-latest-pages-articles.xml.bz2">pages and articles dump file from Wikipedia</a> (about 3 GB download) and then generate a search index, which can take from half an hour to five days.</p>
<p>For an open source project that seems ideally suited to being used offline, and considering the amount of interest, there are surprisingly few options (already developed). They also took me a long time to find, so I&#8217;m collating the information here in the hope that it will help others. Here are my impressions of the solutions that I&#8217;ve tried so far, gathered from various sources including <a href="http://www.makeuseof.com/tag/4-free-tools-for-taking-wikipedia-offline/">makeuseof.com</a>.</p>
<div id="attachment_56" class="wp-caption aligncenter" style="width: 310px"><a href="http://tinderblog.files.wordpress.com/2008/11/wikipedia2.png"><img class="size-medium wp-image-56" title="The One True Wikipedia" src="http://tinderblog.files.wordpress.com/2008/11/wikipedia2.png?w=300" alt="The One True Wikipedia" width="300" height="231" /></a><p class="wp-caption-text">The One True Wikipedia, for comparison</p></div>
<p><strong><a title="MediaWiki website" href="http://www.mediawiki.org/wiki/MediaWiki">MediaWiki</a></strong> (the Wikipedia wiki software) can be <a href="http://www.blindedbytech.com/2006/08/31/how-to-install-wikipedia-for-offline-access/">downloaded and installed</a> on a computer configured as an AMP server (Apache, MySQL, PHP). You can then <a href="http://www.blindedbytech.com/2006/08/31/how-to-install-wikipedia-for-offline-access/">import a Wikipedia database dump</a> and use the wiki offline. This is quite a complex process, and importing takes a long time, about 4 hours for the articles themselves (on a 3 GHz P4). Apparently <a href="http://users.softlab.ece.ntua.gr/~ttsiod/buildWikipediaOffline.html">it takes days</a> to build the search index (I&#8217;m testing this at the moment). This method does not include any images, as the image dump is apparently 75 GB, and no longer appears to be available, and it displays some odd template codes in the text (shown in red below) which may confuse users.</p>
<div id="attachment_68" class="wp-caption aligncenter" style="width: 310px"><a href="http://tinderblog.files.wordpress.com/2008/11/offline_mediawiki.png"><img class="size-medium wp-image-68" title="Mediawiki local installation" src="http://tinderblog.files.wordpress.com/2008/11/offline_mediawiki.png?w=300" alt="Mediawiki local installation" width="300" height="231" /></a><p class="wp-caption-text">Mediawiki local installation</p></div>
<p><strong><a title="Wikipedia Selection for Schools Website" href="http://schools-wikipedia.org/">Wikipedia Selection for Schools</a></strong> is a static website, created by <a title="WikiMedia Foundation, a non-profit organisation that funds and administers Wikipedia" href="http://www.wikimedia.org">Wikimedia</a> and <a title="A British charity/NGO" href="http://www.soschildrensvillages.org.uk">SOS Childrens Villages</a>, with a hand-chosen and checked selection of articles from the main Wikipedia, and images, that fit on a DVD or 3GB of disk space. It&#8217;s available for free <a title="Wikipedia Selection for Schools Download" href="http://www.soschildrensvillages.org.uk/charity-news/2008-wikipedia-for-schools.htm">download</a> using BitTorrent, which is rather slow. Although it looks like <a title="The English Wikipedia online website" href="http://en.wikipedia.org/wiki/Main_Page">Wikipedia</a>, it&#8217;s a static website, so while it&#8217;s easy to install, it has no search feature. It also has only 5,500 articles compared to the 2 million in Wikipedia itself (about 0.25%). Another review is on the <a title="Review of Wikipedia Selection for Schools." href="http://www.speedofcreativity.org/2008/11/11/wikipedia-to-go-an-offline-download-for-schools/">Speed of Creativity Blog</a>. Older versions are available <a title="Wikipedia CD Download Page" href="http://en.wikipedia.org/wiki/Wikipedia:Wikipedia-CD/Download">here</a>. (thanks <a title="BBC News on Wikipedia CD" href="http://news.bbc.co.uk/1/hi/technology/6566749.stm">BBC</a>)</p>
<div id="attachment_57" class="wp-caption aligncenter" style="width: 310px"><a href="http://tinderblog.files.wordpress.com/2008/11/schools.png"><img class="size-medium wp-image-57" title="Wikipedia Selection for Schools" src="http://tinderblog.files.wordpress.com/2008/11/schools.png?w=300" alt="Wikipedia Selection for Schools" width="300" height="231" /></a><p class="wp-caption-text">Wikipedia Selection for Schools</p></div>
<p><strong><a href="https://addons.mozilla.org/en-US/firefox/addon/2423">Zipedia</a></strong> is a <a title="About Mozilla Firefox" href="http://www.mozilla.com/firefox/">Firefox</a> plugin which loads and indexes a Wikipedia dump file. It requires a different dump file, containing the latest metadata (8 GB) instead of the usual one (3 GB). You can then access Wikipedia offline in your browser by going to a URL such as <em>wikipedia://wiki</em>. It does not support images, and the search feature only searches article titles, not their contents. You can pass the indexed data between users as a Zip file to save time and bandwidth, and you may be able to share this file between multiple users on a computer or a network. (thanks <a href="http://www.ghacks.net/2008/08/06/download-and-use-wikipedia-offline-with-firefox/">Ghacks.net</a>)</p>
<p><a title="WikiTaxi product information page" href="http://wikitaxi.org/delphi/doku.php/products/wikitaxi/index"><strong>WikiTaxi</strong></a> is a free Windows application which also loads and indexes Wikipedia dump files. It has its own user interface, which displays Wikipedia formatting properly (e.g. tables). It looks very nice, but it&#8217;s a shame that it doesn&#8217;t run on Linux.</p>
<div id="attachment_58" class="wp-caption aligncenter" style="width: 310px"><a href="http://tinderblog.files.wordpress.com/2008/11/wikitaxi.png"><img class="size-medium wp-image-58" title="WikiTaxi screenshot (wikitaxi.org)" src="http://tinderblog.files.wordpress.com/2008/11/wikitaxi.png?w=300" alt="WikiTaxi screenshot (wikitaxi.org)" width="300" height="268" /></a><p class="wp-caption-text">WikiTaxi screenshot (wikitaxi.org)</p></div>
<p><strong><a title="Moulin Wiki Website" href="http://www.moulinwiki.org/">Moulin Wiki</a></strong> is a project to develop open source offline distributions of Wikipedia content, based on the <a title="Kiwix offline Wikipedia browser" href="http://www.kiwix.org/index.php/Main_Page">Kiwix</a> browser. They claim that their <a href="http://reg.kiwix.org/download/ar/">150 MB Arabic version</a> contains an impressive 70,000 articles, and that their <a href="http://reg.kiwix.org/download/fr/">1.5 GB French version</a> contains the entire French Wikipedia, more than 700,000 articles. Unfortunately they have not yet released an English version.</p>
<p><strong><a title="Kiwix offline Wikipedia browser" href="http://www.kiwix.org/index.php/Main_Page">Kiwix</a></strong> itself can be used to read a downloaded dump file, thereby giving access to the whole English Wikipedia via the 3 GB download. It runs on Linux only (as far as I know) and the user interface is a customised version of the Firefox browser. Unfortunately I could not get it to build on <a title="Ubuntu Linux 8.04, aka Hardy Heron" href="http://releases.ubuntu.com/8.04/">Ubuntu Hardy</a> due to an incompatible change in Xulrunner. (Kiwix developers told me that a new version would be released before the end of November 2008, but I wasn&#8217;t able to test it yet).</p>
<div id="attachment_61" class="wp-caption aligncenter" style="width: 310px"><a href="http://tinderblog.files.wordpress.com/2008/11/ocean_blue_skin_example.jpg"><img class="size-medium wp-image-61" title="Kiwix (and probably MoulinWiki)" src="http://tinderblog.files.wordpress.com/2008/11/ocean_blue_skin_example.jpg?w=300" alt="Kiwix (and probably MoulinWiki)" width="300" height="240" /></a><p class="wp-caption-text">Kiwix (and probably MoulinWiki)</p></div>
<p><strong><a title="KDE-Apps website entry for Wikipedia Dump Reader" href="http://www.kde-apps.org/content/show.php/Wikipedia+Dump+Reader?content=65244">Wikipedia Dump Reader</a></strong> is a KDE application which browses Wikipedia dump files. It generates an index on the first run, which took 5 hours on a 3 GHz P4, and you can&#8217;t use it until it&#8217;s finished. It doesn&#8217;t require extracting or uncompressing the dump file, so it&#8217;s efficient on disk space, and you can copy or share the index between computers. The display is in plain text, so it looks nothing like Wikipedia, and it includes some odd system codes in the output which could confuse users.</p>
<div id="attachment_59" class="wp-caption aligncenter" style="width: 310px"><a href="http://tinderblog.files.wordpress.com/2008/11/wikipedia-dump-reader.png"><img class="size-medium wp-image-59" title="Wikipedia Dump Reader" src="http://tinderblog.files.wordpress.com/2008/11/wikipedia-dump-reader.png?w=300" alt="Wikipedia Dump Reader" width="300" height="246" /></a><p class="wp-caption-text">Wikipedia Dump Reader</p></div>
<p><a href="http://users.softlab.ece.ntua.gr/~ttsiod/buildWikipediaOffline.html"><strong>Thanassis Tsiodras</strong></a> has created a set of scripts to extract Wikipedia article titles from the compressed dump, index them, parse and display them with a search engine. It&#8217;s a clever hack but the user interface is quite rough, it doesn&#8217;t always work, requires about two times the dump file size in additional data, it was a pain to figure out how to use it and get it working, and it looks nothing like Wikipedia, but better than the Dump Reader above.</p>
<div id="attachment_62" class="wp-caption aligncenter" style="width: 310px"><a href="http://tinderblog.files.wordpress.com/2008/11/thanassis_tsiodras.png"><img class="size-medium wp-image-62" title="Thanassis Tsiodras' Fast Wiki with Search" src="http://tinderblog.files.wordpress.com/2008/11/thanassis_tsiodras.png?w=300" alt="Thanassis Tsiodras' Fast Wiki with Search" width="300" height="231" /></a><p class="wp-caption-text">Thanassis Tsiodras&#39; Fast Wiki with Search</p></div>
<p><a title="Pocket Wikipedia website" href="http://www.free-soft.ro/pocket-wikipedia/pocket-wikipedia.html"><strong>Pocket Wikipedia</strong></a> is designed for PDAs, but apparently runs on Linux and Windows as well. The interface looks a bit rough, and I haven&#8217;t tested the keyword search yet. It doesn&#8217;t say exactly how many articles it contains, but my guess is that it&#8217;s about 3% of Wikipedia. Unfortunately it&#8217;s closed source, and as it comes from Romania, I don&#8217;t trust it enough to run it. (thanks <a title="Four free tools for taking Wikipedia offline" href="http://www.makeuseof.com/tag/4-free-tools-for-taking-wikipedia-offline/">makeuseof.com</a>)</p>
<div id="attachment_63" class="wp-caption aligncenter" style="width: 310px"><a href="http://tinderblog.files.wordpress.com/2008/11/pocketwikipedial.png"><img class="size-medium wp-image-63" title="Pocket Wikipedia on Linux" src="http://tinderblog.files.wordpress.com/2008/11/pocketwikipedial.png?w=300" alt="Pocket Wikipedia on Linux" width="300" height="219" /></a><p class="wp-caption-text">Pocket Wikipedia on Linux (makeuseof.com)</p></div>
<p><strong><a title="Webaroo Wikislice" href="http://wikislice.webaroo.com/">Wikislice</a></strong> allows users to download part of Wikipedia and view it using the free Webaroo client. Unfortunately this client appears only to work on Windows. (thanks <a title="Four free tools for taking Wikipedia offline" href="http://www.makeuseof.com/tag/4-free-tools-for-taking-wikipedia-offline/">makeuseof.com</a>)</p>
<div id="attachment_64" class="wp-caption aligncenter" style="width: 310px"><a href="http://tinderblog.files.wordpress.com/2008/11/webslices.png"><img class="size-medium wp-image-64" title="WikiSlice (makeuseof.com)" src="http://tinderblog.files.wordpress.com/2008/11/webslices.png?w=300" alt="WikiSlice (makeuseof.com)" width="300" height="190" /></a><p class="wp-caption-text">WikiSlice (makeuseof.com)</p></div>
<p><strong><a title="Encyclopodia (Wikipedia on iPod) website" href="http://encyclopodia.sourceforge.net/en/index.html">Encyclopodia</a></strong> puts the open source project on an iPod, but I want to use it on Linux.</p>
<div id="attachment_66" class="wp-caption aligncenter" style="width: 310px"><a href="http://tinderblog.files.wordpress.com/2008/11/encyclopodia.png"><img class="size-medium wp-image-66" title="Encyclopodia" src="http://tinderblog.files.wordpress.com/2008/11/encyclopodia.png?w=300" alt="Encyclopodia" width="300" height="231" /></a><p class="wp-caption-text">Encyclopodia</p></div>
<p>It appears that if you need search and Linux compatibility, then running a real Wikipedia (MediaWiki) server is probably the best option, despite the time taken.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.aptivate.org/2008/11/21/offline-wikipedia/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

