<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet title="XSL formatting" type="text/xsl" href="http://blog.kiwix.org/feed/rss2/xslt" ?><rss version="2.0"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:wfw="http://wellformedweb.org/CommentAPI/"
  xmlns:content="http://purl.org/rss/1.0/modules/content/"
  xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
  <title>Kiwix au jour le jour</title>
  <link>http://blog.kiwix.org/</link>
  <atom:link href="http://blog.kiwix.org:82/feed/rss2" rel="self" type="application/rss+xml"/>
  <description></description>
  <language>fr</language>
  <pubDate>Mon, 31 Dec 2012 14:33:53 +0100</pubDate>
  <copyright>cc- by-nc</copyright>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Dotclear</generator>
  
    
  <item>
    <title>Nginx or Apache, Mirrorbrain and Piwik</title>
    <link>http://blog.kiwix.org/post/2012/12/09/Nginx-or-Apache%2C-Mirrorbrain-and-Piwik</link>
    <guid isPermaLink="false">urn:md5:ba34ac25e42d1f93d54af57c7a655b1e</guid>
    <pubDate>Sun, 09 Dec 2012 17:36:00 +0100</pubDate>
    <dc:creator>Kelson</dc:creator>
        <category>Technologie</category>
        <category>Mirrorbrain</category><category>Piwik</category><category>Statistics</category><category>Web site</category>    
    <description>    &lt;p&gt;At Kiwix we were impacted by a long term issue: we were unable to give
practical and accurate download statistics. Our traffic partly goes to &lt;a href=&quot;http://www.kiwix.org&quot;&gt;our web site&lt;/a&gt; and the other part goes to &lt;a href=&quot;http://download.kiwix.org&quot;&gt;a storage place&lt;/a&gt; where all the big files (ZIM,
ZIP, ...) are published. Of course, we wanted to have as much details as
possible about both of them. After hacking at little bit, this problem seems
now to be fixed, here is how I did it.&lt;/p&gt;
&lt;h2&gt;Audience measurement&lt;/h2&gt;
&lt;p&gt;To measure Web audience, there are two approaches:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Insert a &amp;quot;plugin&amp;quot; (dynamic image or javascript code) on each web page.
Every time a web page is loaded, it stores the page name, date and details
about the visitors browser in a database. This is extremely efficient and there
exist many free offers on the Web to do that; but this method has two
disadvantages. First, if you use free commercial tools, like &lt;a href=&quot;http://www.google.com/analytics/&quot;&gt;Google analytics&lt;/a&gt; or &lt;a href=&quot;http://www.xiti.com/&quot;&gt;Xiti&lt;/a&gt;, you actually sell the privacy of your users.
Second, this approach is inefficient to measure file downloads because no web
page is involved. To avoid the first one, you can install a free solution like
&lt;a href=&quot;http://www.piwiki.org&quot;&gt;Piwik&lt;/a&gt;, which is pretty neat, on your own
server; this will avoid informing a third part about your visitors.
Unfortunately, you cannot overcome the second problem.&lt;/li&gt;
&lt;/ul&gt;
&lt;ul&gt;
&lt;li&gt;Configure your web server to log everything and parse afterwards the log.
There is a free software to do that: &lt;a href=&quot;http://awstats.sourceforge.net/&quot;&gt;AWstats&lt;/a&gt;. AWstats is pretty old and not
practical at all. In addition, I failed to configure it so that it merges
multiple requests from an IP on one file in only one record (big files are
downloaded in chunks).&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Our case&lt;/h2&gt;
&lt;p&gt;We have been using Piwik for many years for &lt;a href=&quot;http://www.kiwix.org&quot;&gt;our web site&lt;/a&gt; and we are really satisfied with it:
it's practical, quick enough and maintained. Our problem is focused on
http://download.kiwix.org. Our case is even a little bit worse, because, in
fact, we do not really host our files. &lt;a href=&quot;http://download.kiwix.org/&quot;&gt;download.kiwix.org&lt;/a&gt; acts as master redirecting
requests to mirrors. It uses a solution called &lt;a href=&quot;http://www.mirrorbrain.org/&quot;&gt;Mirrorbrain&lt;/a&gt;. In addition to its many
weaknesses, AWstats is not able to deal correctly with HTTP 301 and 302
redirections.&lt;/p&gt;
&lt;p&gt;We have decided to put everything in Piwik, because it is better to have
everything in one tool and also because this is the best one to visualise logs.
We have now for &lt;strong&gt;both sites&lt;/strong&gt;:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A &lt;a href=&quot;http://stats.kiwix.org&quot;&gt;central place to view logs&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;All the &lt;a href=&quot;http://piwik.org/features/&quot;&gt;features of Piwik&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Our solution&lt;/h2&gt;
&lt;p&gt;We have installed Piwik and inserted the mandatory piece of code on
http://www.kiwix.org to track the visitors visiting our web site. This is easy
and straight forward. Then we created in Piwik a second site for
http://download.kiwix.org (one instance of Piwik can deal with statistics of
many sites).&lt;/p&gt;
&lt;p&gt;Later, we configured the Apache virtual host with Mirrorbrain to save logs
on the hard disk and let it run for a few days.&lt;/p&gt;
&lt;p&gt;Finally, we wrote &lt;a href=&quot;http://kiwix.svn.sourceforge.net/viewvc/kiwix/maintenance_tools/fillPiwikWithWebServerLogs.php?view=markup&quot;&gt;
a custom PHP script to upload the logs to Piwik&lt;/a&gt;, using a Piwik PHP class
called &lt;a href=&quot;http://piwik.org/docs/tracking-api/&quot;&gt;PiwikTracker.php&lt;/a&gt;. Here
are its features:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Parse all log files for a web site (also all .gz files of logrotate)&lt;/li&gt;
&lt;li&gt;Able to start from scratch to upload all logs&lt;/li&gt;
&lt;li&gt;Able to &amp;quot;follow&amp;quot; the log file an update in real time Piwik.&lt;/li&gt;
&lt;li&gt;Count HTTP redirections (HTTP 301 and 302) errors as valid downloads
(mandatory for Mirrorbrain)&lt;/li&gt;
&lt;li&gt;Merge multiple similar requests to one (only one download for one content
per IP in one month)&lt;/li&gt;
&lt;li&gt;Avoid counting request for directories, md5 checksum, favicon, ...&lt;/li&gt;
&lt;li&gt;Re-upload only new logs by two consecutive runs&lt;/li&gt;
&lt;li&gt;Works with both Apache and Nginx&lt;/li&gt;
&lt;li&gt;Configurable on the command line with arguments&lt;/li&gt;
&lt;li&gt;Warning: it cannot report about the number of downloads completed.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This script is for our own purpose, but I think it's pretty simple to reuse
it; it's pretty simple and you should not need to adapt it too much. Hope this
was helpful!&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Kiwix Compile Farm</title>
    <link>http://blog.kiwix.org/post/2012/06/14/Kiwix-Build-Farm%2C-behind-the-scene</link>
    <guid isPermaLink="false">urn:md5:c2ff922d8237db537eb2df90b1235cfc</guid>
    <pubDate>Thu, 14 Jun 2012 14:52:00 +0000</pubDate>
    <dc:creator>reg</dc:creator>
        <category>Technologie</category>
            
    <description>    &lt;p&gt;Kiwix is a special software. Special because it's difficult to define:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A Desktop software for browsing offline content with ZIM on Mac, Windows
and Linux.&lt;/li&gt;
&lt;li&gt;A Server allowing to serve ZIM content on those platforms + arm Linux.&lt;/li&gt;
&lt;li&gt;A library of ZIM files for popular content: Wikipedias, Wikileaks,
etc.&lt;/li&gt;
&lt;li&gt;Very few developers (most of the time it's 2).&lt;/li&gt;
&lt;li&gt;Very large (and growing) number of users.&lt;/li&gt;
&lt;li&gt;“Small” code base (about 50,000 lines of code).&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;So far, all this was maintained by hand, the ZIM files are created from a
complex procedure of scripts and mirror setups, the releases are created
manually on all platforms, etc.&lt;/p&gt;
&lt;p&gt;You got it, it's difficult to keep up with improving the software, fixing
bugs, generating new content ZIM files, building and testing the software on
all platforms.&lt;/p&gt;
&lt;p&gt;Our first step into the right direction was getting the translations done on
&lt;a href=&quot;http://translatewiki.net/wiki/Translating:Kiwix&quot;&gt;TranslateWiki&lt;/a&gt; and
it got us to ship Kiwix now with 80+ languages.&lt;/p&gt;
&lt;p&gt;Thanks to sponsorship by &lt;a href=&quot;http://www.wikimedia.ch&quot;&gt;Wikimedia CH&lt;/a&gt;,
we decided to first tackle the build problem as it's the most annoying.&lt;/p&gt;
&lt;h2&gt;The Problem&lt;/h2&gt;
&lt;p&gt;Kiwix releases on the following:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Mac OSX 10.6+ Intel Universal (Intel 32b, Intel64b)&lt;/li&gt;
&lt;li&gt;Linux 32b “static“ (no dependencies)&lt;/li&gt;
&lt;li&gt;Linux 64b static&lt;/li&gt;
&lt;li&gt;Sugar .xo for OLPC&lt;/li&gt;
&lt;li&gt;Windows 32b.&lt;/li&gt;
&lt;li&gt;Armel5 (kiwix-serve only)&lt;/li&gt;
&lt;li&gt;Source code.&lt;/li&gt;
&lt;li&gt;Debian wheezy package 32b.&lt;/li&gt;
&lt;li&gt;Debian wheezy package 64b.&lt;/li&gt;
&lt;li&gt;Linux 32/64b with dependencies (used to be a PPA for Ubuntu until they
removed xulrunner).&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Knowing that only reg has a Mac, that the Windows setup for building Kiwix
is complicated and that both Kelson and reg are using Linux, testing and
distributing new versions of the code is very difficult.&lt;/p&gt;
&lt;p&gt;This is not a unique problem ; most large multi platform softwares faces the
same issue and we did nothing but imitate them: we deployed a build farm.&lt;/p&gt;
&lt;h2&gt;The Solution&lt;/h2&gt;
&lt;p&gt;The solution looks like the following schema: a bunch of Virtualbox VM, a
Qemu one for arm, buildbot on all of them.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://blog.kiwix.org/public/buildbot.png&quot;&gt;&lt;img src=&quot;http://blog.kiwix.org/public/.buildbot_m.jpg&quot; alt=&quot;Builbot Diagram&quot; style=&quot;display:block; margin:0 auto;&quot; title=&quot;Builbot Diagram, Jun 2012&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;As you can see, the builbot master controls all the slaves which creates
their own builds and sends them to the Web server's repository.&lt;/p&gt;
&lt;h2&gt;Buildbot&lt;/h2&gt;
&lt;p&gt;A &lt;a href=&quot;http://en.wikipedia.org/wiki/Build_farm&quot;&gt;compile farm&lt;/a&gt; is a
set of servers ; each building a platform or target of the software. To manage
those, [a large number of
software|http://en.wikipedia.org/wiki/Comparison_of_continuous_integration_software\
exist.&lt;/p&gt;
&lt;p&gt;After some research, we chose &lt;a href=&quot;http://trac.buildbot.net/&quot;&gt;Buildbot&lt;/a&gt; because:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;It seemed easy to install&lt;/li&gt;
&lt;li&gt;It looked very powerful&lt;/li&gt;
&lt;li&gt;Its documentation was clear.&lt;/li&gt;
&lt;li&gt;It's written in Python (including the configuration file).&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The deal-maker was really the &lt;a href=&quot;http://buildbot.net/buildbot/docs/current/tutorial/&quot;&gt;tutorial&lt;/a&gt; on the
website wich allowed us to imagine the required steps without to actually get
our hands dirty.&lt;/p&gt;
&lt;p&gt;The Python configuration file is a great feature as it allows a very
flexible configuration without a dedicated syntax.&lt;/p&gt;
&lt;p&gt;Builbot is divided into two softwares:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;the master which holds the whole configuration (the only file you care
about).&lt;/li&gt;
&lt;li&gt;slaves which only needs to run the slave software (python). Those are
logic-less.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Kiwix already rent a very powerful server in a data center for serving
&lt;a href=&quot;http://download.kiwix.org/&quot;&gt;downloads&lt;/a&gt;. We used it to hold
everything.&lt;/p&gt;
&lt;h2&gt;VirtualBox&lt;/h2&gt;
&lt;p&gt;All the build slaves (except for the arm target which is not supported by
VBox) are &lt;a href=&quot;https://www.virtualbox.org/&quot;&gt;VirtualBox&lt;/a&gt; Virtual Machines
(VM):&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;512MB RAM&lt;/li&gt;
&lt;li&gt;20GB HD&lt;/li&gt;
&lt;li&gt;2 NIC: NAT for accessing Internet (dhcp) ; Host-only for buildbot (Fixed
local IP).&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;OSX VM is 1GB RAM and 40GB HDD.&lt;/p&gt;
&lt;p&gt;All the VMs were installed through &lt;a href=&quot;https://www.virtualbox.org/manual/ch07.html#idp16483152&quot;&gt;VRDP&lt;/a&gt; (VNC-like
protocol) until the network is configured and ssh access is enabled.&lt;/p&gt;
&lt;p&gt;See also: &lt;a href=&quot;http://kiwix.org/index.php/Black%26White_Project/Compilation_Farm/Setup&quot;&gt;VM
Setup&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;QEmu&lt;/h2&gt;
&lt;p&gt;&lt;a href=&quot;http://wiki.qemu.org/Main_Page&quot;&gt;QEmu&lt;/a&gt; was required to get an
armel VM. We used &lt;a href=&quot;http://people.debian.org/~aurel32/qemu/armel/&quot;&gt;aurel32&lt;/a&gt;'s debian
images.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Note&lt;/strong&gt;: In order to ease the SSH connexion, halt and start of
the VMs, we wrote a &lt;a href=&quot;http://kiwix.svn.sourceforge.net/viewvc/kiwix/buildbot/kbox?revision=3678&amp;amp;view=markup&quot;&gt;
wrapper script around VirtualBox&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;Configuring and running&lt;/h2&gt;
&lt;p&gt;Configuring buildbot is pretty straightforward once you know what you want
to do. Configuration is composed of the following components:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Slave definitions (name, login, password)&lt;/li&gt;
&lt;li&gt;Builders: targets composed of steps (commands) executed on a slave.&lt;/li&gt;
&lt;li&gt;Schedulers: Triggers for when to start builders.&lt;/li&gt;
&lt;li&gt;Status: What to do with output of builders.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The hard part is defining the builders as this is where you indicate how to
retrieve source code, launch your configure script, compile, and tranfer your
build somewhere else.&lt;/p&gt;
&lt;p&gt;Take a look at ours as an example: &lt;a href=&quot;http://kiwix.svn.sourceforge.net/viewvc/kiwix/buildbot/master.cfg?revision=HEAD&amp;amp;view=markup&quot;&gt;
master.cfg&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;We don't use any advanced feature so it's easy to understand. We chose:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;fixed time daily to run our builds (at night – server time)&lt;/li&gt;
&lt;li&gt;builds (tarball, etc) are uploaded to the server's /var/www/ for direct web
access.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Buildbot handles the transfer of files between master and slave.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;We can trigger builds at any time from the web interface.&lt;/li&gt;
&lt;li&gt;We list build results on the web page and by mail in a dedicated
mailing-list.&lt;/li&gt;
&lt;li&gt;Builds are announced and controllable by the IRC bot.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Although it's simple, it takes a lot of tweaks and tests (fortunately it's
easy) to get the configuration as wished, you need to have a proper and
documented build mechanism for all your targets otherwise you'll probably go
crazy. We completed a complete rewrite of our autotools Makefiles for all
platforms &lt;strong&gt;before&lt;/strong&gt; we setup buildbot. It sounds dumb but it's
worth noticing.&lt;/p&gt;
&lt;h2&gt;Outcomes:&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Every day, &lt;a href=&quot;http://download.kiwix.org/bin/nightly/latest/&quot;&gt;a new
release for all targets available for download&lt;/a&gt; ; properly named with the
SVN revision and the date.&lt;/li&gt;
&lt;li&gt;Ability to fire a build at any time from the Web UI.&lt;/li&gt;
&lt;li&gt;Kiwix to be integrated into Debian sid in the coming days (and thus in the
next stable release).&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Things you should know:&lt;/h2&gt;
&lt;p&gt;If you intend to reproduce, here's a few things we've learned and want to
share.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Installing OSX on non-Mac hardware is tricky: you need a recent Intel CPU
(support for VTx) but not too recent otherwise your OSX Install DVD won't know
about it (and refuse to install).&lt;/li&gt;
&lt;li&gt;On OSX, Apple packages (MacOSX updates, XCode) have an expiration period.
If you install an XCode version 2 years (that's an example) after it's been
released, the installer will fail with no useful feedback. It's due to the
package's signature being too old. You can still install it by
unpacking/repacking the packages.&lt;/li&gt;
&lt;li&gt;SSH to your QEmu VM is done using a QEmu proxy so you ssh to localhost on a
different port.&lt;/li&gt;
&lt;li&gt;VRDP requires a good connexion if you intend to do a lot of configuration
inside Windows (384k clearly is a pain!).&lt;/li&gt;
&lt;li&gt;Buildbot slaves freezes frequently. Not sure why but sometimes it fails to
answer to build request and stays attached doing nothing. As a workaround, we
delete and recreate the buildbot slave folder daily in a cron job.&lt;/li&gt;
&lt;li&gt;Buildbot slaves have network issues some times. We're not sure if it's
related to buildbot, VBox or something else but it's frequent that the slave
can't checkout the source tree or can't download our dependencies from the
web.&lt;/li&gt;
&lt;li&gt;Windows slave frequently loose connexion to the master. Might just be a
Windows configuration issue.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;What's Next?&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Improve our wrapper script to handle VRDP access to VMs by controlling
iptables.&lt;/li&gt;
&lt;li&gt;Add SSH to the Windows slave so we can do basic tests in console.&lt;/li&gt;
&lt;li&gt;Investigate the network/slaves problems so that it works 24/7.&lt;/li&gt;
&lt;li&gt;Automate &amp;amp; build a similar platform for the creation of ZIM files so we
can focus only on code thereafter.&lt;/li&gt;
&lt;/ul&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>5 ans déjà !</title>
    <link>http://blog.kiwix.org/post/2011/09/02/5-ans-d%C3%A9j%C3%A0-%21</link>
    <guid isPermaLink="false">urn:md5:f79fc8a4b570e7f3a29b4ec9d1d5f3ea</guid>
    <pubDate>Fri, 02 Sep 2011 14:57:00 +0200</pubDate>
    <dc:creator>Kelson</dc:creator>
        <category>Annonce</category>
        <category>Wikimédia France</category>    
    <description>    &lt;p&gt;Il y a cinq ans le projet &lt;a href=&quot;http://www.kiwix.org&quot;&gt;Kiwix&lt;/a&gt; était
lancé. Cela faisait déjà 6 mois à l'époque que c'était dans les cartons et
après quelques &lt;a href=&quot;http://membres.wikimedia.fr/index.php/DVD&quot; hreflang=&quot;fr&quot;&gt;tentatives de faire financer la chose par Wikimédia France&lt;/a&gt;, il a bien
fallu se rendre à l'évidence : cela ne se ferait pas de cette manière.&lt;/p&gt;
&lt;p&gt;Comme dit le diction &lt;q&gt;On n'est jamais aussi bien servi que par soi
même&lt;/q&gt;, je lançais donc le projet par moi même.&lt;/p&gt;
&lt;p&gt;Où en sommes-nous aujourd'hui :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://secure.wikimedia.org/wikipedia/strategy/wiki/Wikimedia_Movement_Strategic_Plan_Summary/Increase_Reach&quot; hreflang=&quot;en&quot;&gt;L'intérêt pour l'accès à nos contenus hors-ligne est plus grand
que jamais&lt;/a&gt;. Kiwix et openZIM occupent une place de choix parmi les
solutions techniques proposées.&lt;/li&gt;
&lt;li&gt;Nous avons maintenant une solution tout à fait viable pour Windows, OSX et
GNU/Linux avec pas mal de &lt;a href=&quot;https://secure.wikimedia.org/wikipedia/fr/wiki/Kiwix&quot; hreflang=&quot;fr&quot;&gt;fonctionnalités intéressantes&lt;/a&gt;. Bref, nous sommes bien plus loin que
nos objectifs initiaux.&lt;/li&gt;
&lt;li&gt;Kiwix a fusionné complètement avec &lt;a href=&quot;http://web.archive.org/web/20100612075112/http://www.moulinwiki.org/&quot; hreflang=&quot;en&quot;&gt;Moulinwiki&lt;/a&gt; et nous sommes désormais un peu plus nombreux à
travailler sur le logiciel, même si nous sommes vraiment encore trop peu.&lt;/li&gt;
&lt;li&gt;Nous avons une audience honorable et en croissance constante avec au
dernier recensement environ 300 visiteurs uniques et 120 téléchargements du
logiciel par jour.&lt;/li&gt;
&lt;li&gt;Kiwix est soutenu par plusieurs chapters très concrètement et par la WMF,
ainsi que des organisations extérieures au mouvement.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;http://blog.kiwix.org/public/kiwix_web_visits_chart.png&quot; alt=&quot;Statistiques de Fréquentation de http://www.kiwix.org&quot; style=&quot;display:block; margin:0 auto;&quot; title=&quot;Statistiques de Fréquentation de http://www.kiwix.org, sept. 2011&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Sur quoi travaillons nous :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Nous voulons sortir la version 0.9 finale d'ici la fin de l'année et
investissons beaucoup pour améliorer l'ergonomie du logiciel et sa
stabilité.&lt;/li&gt;
&lt;li&gt;On cherche en parallèle à augmenter le nombre de plateformes supportées
avec plus de binaires, des packages et de nouveaux ports (pour &lt;a href=&quot;https://secure.wikimedia.org/wikipedia/fr/wiki/Sugar_%28IHM%29&quot; hreflang=&quot;fr&quot;&gt;Sugar&lt;/a&gt; par exemple, mais nous tentons aussi de trouver des solutions
pour Android).&lt;/li&gt;
&lt;li&gt;Nous voulons aussi absolument améliorer la &lt;a href=&quot;http://www.kiwix.org/index.php/Kiwix-serve&quot; hreflang=&quot;en&quot;&gt;version serveur http
de Kiwix&lt;/a&gt; et développer une solution clef-en-main pour &lt;a href=&quot;https://secure.wikimedia.org/wikipedia/fr/wiki/Plug_computer&quot; hreflang=&quot;fr&quot;&gt;Plug computers&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Améliorer la communication et faire participer plus de gens (amélioration
du site Web, meilleur communication avec l'aide de la WMF, utilisation de
Translatewiki, mise en place d'un système de Feedback, …).&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.kiwix.org/index.php/Mediawiki_DumpHTML_extension_improvement&quot; hreflang=&quot;en&quot;&gt;Développer des outils pour rendre la création de ZIM beaucoup
plus simple&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Documenter et faciliter les déploiements massifs de Kiwix.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Face à tous ces challenges, il faut tous ensemble faire un effort et toutes
les bonnes volontés sont le bienvenu. Pour ma part je travaillerai à partir
d'octobre à temps plein sur Kiwix.&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Kiwix 0.9 beta1 for Win/Mac/Linux is out!</title>
    <link>http://blog.kiwix.org/post/2011/07/22/Kiwix-0.9-beta1-for-Win/Mac/Linux-is-out%21</link>
    <guid isPermaLink="false">urn:md5:ea9b8e4b9ee3e878259c55b1b7a65edd</guid>
    <pubDate>Fri, 22 Jul 2011 15:56:00 +0200</pubDate>
    <dc:creator>Kelson</dc:creator>
        <category>Annonce</category>
            
    <description>    &lt;p&gt;I have released the first beta of Kiwix 0.9. Binaries for Win32, MacOSX,
Ubuntu (PPA) are available, like the source code. You may download them from
Sourceforge or &lt;a href=&quot;http://www.kiwix.org&quot;&gt;Kiwix Web site&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;This took us almost 9 months to prepare this release... what is really a
long time between two dev. releases. But a lot of things were done like:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;the Mac OSX port,&lt;/li&gt;
&lt;li&gt;the integrated content/download manager,&lt;/li&gt;
&lt;li&gt;the new search user interface.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;http://blog.kiwix.org/public/.osx_screenshot_m.jpg&quot; alt=&quot;Mac OSX Kiwix&quot; title=&quot;Mac OSX Kiwix, juil. 2011&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Behind the scene, we newly integrate:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://aria2.sourceforge.net/&quot; hreflang=&quot;en&quot;&gt;aria2c&lt;/a&gt; to deal
with downloads/uploads,&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://ctpp.havoc.ru/en/&quot; hreflang=&quot;en&quot;&gt;ctpp2&lt;/a&gt; as a template
engine,&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://code.google.com/p/pugixml/&quot; hreflang=&quot;en&quot;&gt;pugixml&lt;/a&gt; as
xml parser,&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;... and revamped the whole set of compilation scripts.&lt;/p&gt;
&lt;p&gt;Here is the &lt;a href=&quot;http://kiwix.svn.sourceforge.net/viewvc/kiwix/moulinkiwix/CHANGELOG&quot; hreflang=&quot;en&quot;&gt;CHANGELOG&lt;/a&gt;:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Remove a hard coded path in kiwix-compact.sh (ID: 3135956)&lt;/li&gt;
&lt;li&gt;Avoid the flickering during mouseover links after canceling the
indexing&lt;/li&gt;
&lt;li&gt;Under Windows, installer adds now shortcuts to all users&lt;/li&gt;
&lt;li&gt;Force loading no plugin to avoid any problem (with libmoon for
example)&lt;/li&gt;
&lt;li&gt;Under Windows, the displayed (disk) &amp;quot;space required&amp;quot; value is now correct
in the installer&lt;/li&gt;
&lt;li&gt;kiwix-index backend argument is now an option and set as &amp;quot;xapian&amp;quot; per
default&lt;/li&gt;
&lt;li&gt;Fix regressions responsible for lower case titles in result list (ID:
3147594)&lt;/li&gt;
&lt;li&gt;Implement the HTTP 404 error in kiwix-serve&lt;/li&gt;
&lt;li&gt;Fix a small bug in the indexing code to avoid forgetting around 100
articles per ZIM file&lt;/li&gt;
&lt;li&gt;Disable DNS pre-fetching for external links&lt;/li&gt;
&lt;li&gt;New locales: Polish, Dutch&lt;/li&gt;
&lt;li&gt;Open a ZIM file directly from the command line&lt;/li&gt;
&lt;li&gt;Gnome and KDE integration: mime-type recognition + icon &amp;amp; application
associations (ZIM double-click feature)&lt;/li&gt;
&lt;li&gt;New checksum checker to be able to check ZIM file integrity&lt;/li&gt;
&lt;li&gt;A list of ZIM files to download is dynamically downloaded in the help page
if user online (ID: 3165272)&lt;/li&gt;
&lt;li&gt;Simplification and improvement of the searchbar (no search button anymore,
always available, standardized, ...)&lt;/li&gt;
&lt;li&gt;New Find-in-text bar (like in firefox, at the bottom), to replace the
dialogbox.&lt;/li&gt;
&lt;li&gt;Result sidebar removed and replaced by a result web page &amp;quot;a la google&amp;quot;&lt;/li&gt;
&lt;li&gt;Usage of jar files for a quicker startup&lt;/li&gt;
&lt;li&gt;Kiwix for Mac OSX&lt;/li&gt;
&lt;li&gt;kiwix-serve CPU usage improvement (ID: 3213104)&lt;/li&gt;
&lt;li&gt;Update the Window title by switching the tabs&lt;/li&gt;
&lt;li&gt;New integrated content manager/downloader&lt;/li&gt;
&lt;li&gt;Introduction of Desktop notifications (ID: 3315162)&lt;/li&gt;
&lt;li&gt;New way to open link in new tab with shortcuts or drag&amp;amp;drop (ID:
3311320)&lt;/li&gt;
&lt;li&gt;Option to change the profile directory&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The most important, we have done the mandatory work to setup a decentralized
solution to spread/share content (ZIM Files). We still do not use all the power
offered by the Metalink tech... but we will (we still need new mirrors, please
contact us if you have one).&lt;/p&gt;
&lt;p&gt;As a result almost all features we wanted to introduce with 0.9 are now
there. We plan to use the next beta and RC releases to fix bugs (I'm sure we
will also detect a few regressions) and polish the software. 0.9 Final release
should be there for Christmas in the worth case.&lt;/p&gt;
&lt;p&gt;More people than usual were involved. I want especially to thank:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Tomasz and Ryan, from the WMF, for the big support and together work,&lt;/li&gt;
&lt;li&gt;Renaud for the OSX port,&lt;/li&gt;
&lt;li&gt;Testers (&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/kiwix-testing&quot; hreflang=&quot;en&quot;&gt;join
us&lt;/a&gt;) which were for the first time really involved and helped us so much
with their remarks.&lt;/li&gt;
&lt;/ul&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Content manager: challenges and solutions</title>
    <link>http://blog.kiwix.org/post/2011/04/01/Content-manager%3A-challenges-and-solutions</link>
    <guid isPermaLink="false">urn:md5:b0ff250a7bbeb6de6b2f0279a7e75d93</guid>
    <pubDate>Fri, 01 Apr 2011 11:03:00 +0200</pubDate>
    <dc:creator>Kelson</dc:creator>
        <category>Technologie</category>
            
    <description>    &lt;p&gt;&lt;em&gt;This is the translation of my &lt;a href=&quot;http://blog.kiwix.org/post/2011/02/11/Kiwix-1.0%2C&quot;&gt;previous post&lt;/a&gt; in French. Thx Rupert for
it.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Kiwix 0.9 has now beta status and it's time to think seriously about version
1.0. The integrated management of content is Kiwix 1.0 core functionality,
namely ZIM files and search indexes. Kiwix will provide a new usage experience
when downloading, sharing, organizing, deleting of different content can be
done without using or installing other tools. Distribution of content will
benefit if we make the Kiwix users life even simpler than today. To provide
such functionalities we are currently addressing the following challenges:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;new content can be downloaded out of Kiwix&lt;/li&gt;
&lt;li&gt;the software needs to be robust and fast&lt;/li&gt;
&lt;li&gt;even if a content server fails or is disconnected, the user can continue to
download and share content&lt;/li&gt;
&lt;li&gt;the download cost need to stay low even if the volume skyrockets&lt;/li&gt;
&lt;li&gt;downloading and sharing content must be easy, even if the LAN is cut off
the internet&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;http://blog.kiwix.org/public/Metalink_logo.png&quot; alt=&quot;Metalink&quot; style=&quot;float:right; margin: 0 0 1em 1em;&quot; title=&quot;Metalink, fév. 2011&quot; /&gt;The
architectural solution we envision to fullfill the above requirements is to
combine the specific advantages of a centralized download via FTP/HTTP (for
efficiency) and decentralized P2P (for ruggedness and low cost). The standard
which seems to best match the requirements is Metalink. Metalink is an XML
standard for defining content by using a checksum, its sources (HTTP, FTP,
magnet, Bittorrent) and priority rules on these sources. Examples for such
rules are the geographic location, or simply a rating system for the mirrors.
The format is still fairly young, but it is being standardized by the IETF.
Compared to more traditional solutions of uniquely using HTTP, FTP or P2P, the
technology combines the strengths of each while eliminate the
disadvantages.&lt;/p&gt;
&lt;p&gt;To use Metalink, the following is necessary:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;a server capable of generating metalink files, torrent, different HTTP and
FTP mirrors, etc.&lt;/li&gt;
&lt;li&gt;a client that can interpret the metalink files. It will need to manage all
available sources, download the best and ensure sharing.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Metalink has also some existing implementations for the server called
Mirrorbrain, and for the client, called Aria2. By using them we hope to keep
the implementation effort low. To verify the architectural and tool choices we
will make a prototype.&lt;/p&gt;
&lt;p&gt;Lets elaborate a little bit on the server side. Mirrorbrain is a software
originally developed for openSUSE, but now used by many other large projects.
It is an Apache module that allows for a given file, released a bunch of
checksums, one. metalink, one. torrent, a link magnet and of course the list of
mirrors that have the file, taking into account the geographic location of the
clients IP address. A list of tools to know what the mirror has what file is
currently available, etc. When using Mirrorbrain, we can concentrate on:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;synchronization of mirrors with rsync&lt;/li&gt;
&lt;li&gt;the &amp;quot;Superseed&amp;quot; for Bittorrent&lt;/li&gt;
&lt;li&gt;possibly a Bittorrent tracker and DHT node if you do not want (only) use
the trackers / public nodes.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;On the client side, Aria2 is a command line client which &amp;quot;understands&amp;quot;
.metalink files and manages the rest. Aria2 is therefore able to download
files, and can also share files coming originally from different sources via
various protocols, at the same time. It is actively developed for several years
and is very light. Via its XML-RPC interface it can be controlled out of Kiwix.
Exactly this interface is most likely the largest part of the implementation
work.&lt;/p&gt;
&lt;p&gt;Finally, this leads us the the last challenge we need to address: where to
get the .metalink files, and therefore the available content, from? Especially
if no central server is available (e.g. in some mesh network scenarios)
.metalink files need to be available on the client device. The plan is to
integrate .metalink files into the XML files managing the content index of
Kiwix. Such an XML file then would list at the same time contents available on
local storage, as well as contents available for download. In the beginning, we
want to just include some default index into Kiwix. Later on index files can be
shared via the same technology developped for the contents itself.&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Kiwix 1.0 : Quels enjeux ? Quelles solutions ?</title>
    <link>http://blog.kiwix.org/post/2011/02/11/Kiwix-1.0%2C</link>
    <guid isPermaLink="false">urn:md5:87e1da58a7d7a4921f3acbaac2e60494</guid>
    <pubDate>Fri, 11 Feb 2011 11:37:00 +0100</pubDate>
    <dc:creator>Kelson</dc:creator>
        <category>Technologie</category>
        <category>Wikimédia France</category>    
    <description>    &lt;p&gt;Kiwix 0.9 a à peine entamé son cycle de &lt;em&gt;betas&lt;/em&gt; que nous commençons
en parallèle à sérieusement penser la version 1.0. Deux raisons à cela :
&lt;a href=&quot;http://blog.kiwix.org/post/2011/01/26/La-Wikimedia-Foundation-soutient-activement-Kiwix&quot; hreflang=&quot;fr&quot;&gt;la musique s'accélère pour Kiwix&lt;/a&gt; et nous ne voulons surtout
pas &lt;q&gt;avoir la tête dans le guidon&lt;/q&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.kiwix.org/index.php/Roadmap/fr&quot; hreflang=&quot;fr&quot;&gt;Kiwix 1.0
apportera comme fonctionnalité&lt;/a&gt; principale, la gestion intégrée des contenus
(pour faire simple : fichiers ZIM et indexes de recherche). Cela signifie
que le téléchargement, le partage, l'organisation, la suppression des
différents contenus se fera dans Kiwix et non à l'aide de logiciels externes.
Nous pensons que c'est nécessaire pour simplifier la vie de l'utilisateur, mais
aussi pour favoriser la distribution des contenus.&lt;/p&gt;
&lt;p&gt;Nous pourrions évidement implémenter et intégrer un simple téléchargement
&lt;a href=&quot;https://secure.wikimedia.org/wikipedia/fr/wiki/HTTP&quot; hreflang=&quot;fr&quot;&gt;HTTP&lt;/a&gt; ; mais cela ne serait à notre avis pas pleinement
satisfaisant. Voici les quelques défis que nous pensons nécessaires de
relever :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Il faut que le téléchargement de nouveaux contenus soit simple et puisse se
faire depuis Kiwix directement.&lt;/li&gt;
&lt;li&gt;Il faut que la solution logicielle soit robuste et rapide.&lt;/li&gt;
&lt;li&gt;Il faut que même si la plateforme de téléchargement ainsi que ses miroirs
tombent (ou sont censurés), que l'utilisateur puisse continuer à
télécharger/partager des contenus.&lt;/li&gt;
&lt;li&gt;Il faut que la plateforme de téléchargement reste bon marché, même dans le
cas de très nombreux téléchargements.&lt;/li&gt;
&lt;li&gt;Il faut que les contenus soient téléchargeables et partageables facilement,
même dans un réseau local coupé d'internet.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;img src=&quot;http://blog.kiwix.org/public/Metalink_logo.png&quot; alt=&quot;Metalink&quot; style=&quot;float:right; margin: 0 0 1em 1em;&quot; title=&quot;Metalink, fév. 2011&quot; /&gt; Pour
réussir, nous voulons combiner les avantages particuliers du téléchargement
centralisé via &lt;a href=&quot;https://secure.wikimedia.org/wikipedia/fr/wiki/FTP&quot; hreflang=&quot;fr&quot;&gt;FTP&lt;/a&gt;/HTTP (pour l'efficacité) et du &lt;a href=&quot;https://secure.wikimedia.org/wikipedia/fr/wiki/Pair_%C3%A0_pair&quot; hreflang=&quot;fr&quot;&gt;P2P&lt;/a&gt;... en particulier du P2P décentralisé (pour la robustesse et le
bas cout). Pour toutes ces raisons, notre choix technologique s'est porté sur
&lt;a href=&quot;https://secure.wikimedia.org/wikipedia/fr/wiki/Metalink&quot; hreflang=&quot;fr&quot;&gt;Metalink&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Metalink est une norme &lt;a href=&quot;https://secure.wikimedia.org/wikipedia/fr/wiki/XML&quot; hreflang=&quot;fr&quot;&gt;XML&lt;/a&gt; qui
permet de définir un contenu (en particulier à l'aide d'une &lt;a href=&quot;https://secure.wikimedia.org/wikipedia/fr/wiki/Somme_de_contr%C3%B4le&quot; hreflang=&quot;fr&quot;&gt;somme de contrôle&lt;/a&gt;), des sources (HTTP, FTP, &lt;a href=&quot;https://secure.wikimedia.org/wikipedia/en/wiki/Magnet_URI_scheme&quot; hreflang=&quot;fr&quot;&gt;magnet&lt;/a&gt;, &lt;a href=&quot;https://secure.wikimedia.org/wikipedia/fr/wiki/BitTorrent_%28protocole%29&quot; hreflang=&quot;fr&quot;&gt;Bittorent&lt;/a&gt;) et des règles de priorité sur les sources (en
fonction de la location géographique par exemple, ou tout simplement avec
l'aide d'un système de note pour les miroirs). Le format est assez jeune
encore, mais il est en cours de normalisation par l'&lt;a href=&quot;https://secure.wikimedia.org/wikipedia/fr/wiki/IETF&quot; hreflang=&quot;fr&quot;&gt;IETF&lt;/a&gt;.
Les avantages de Metalink sont clairs par rapport à des solutions plus
traditionnelles uniques comme HTTP, FTP ou le P2P ; cette technologie
permet de combiner les points forts de chacune d'entre elles tout en élimant
les désavantages.&lt;/p&gt;
&lt;p&gt;Pour utiliser Metalink, il faut :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;une solution serveur capable de générer les fichiers .metalink, .torrent,
les différents miroirs HTTP et FTP, etc. et&lt;/li&gt;
&lt;li&gt;une solution client capable d'interpréter les fichiers .metalink, de gérer
toutes les sources disponibles, de télécharger au mieux ainsi que d'assurer le
partage.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;La solution serveur s'appelle &lt;q&gt;Mirrorbrain&lt;/q&gt;. &lt;a href=&quot;http://www.mirrorbrain.org/&quot; hreflang=&quot;en&quot;&gt;Mirrorbrain&lt;/a&gt; est un logiciel
développé à l'origine pour openSUSE, mais utilisé aujourd'hui par de nombreux
autres gros projets. Mirrorbrain, c'est plusieurs choses :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;un module pour &lt;a href=&quot;https://secure.wikimedia.org/wikipedia/fr/wiki/Apache_HTTP_Server&quot; hreflang=&quot;fr&quot;&gt;Apache&lt;/a&gt; qui permet, pour un fichier donné, de sortir tout un tas de
sommes de contrôle, un .metalink, un .torrent, un lien magnet et naturellement
la liste des miroirs qui disposent du fichier en tenant compte de la
localisation géographique du client (localisation par IP),&lt;/li&gt;
&lt;li&gt;une liste d'outils pour savoir quel miroir possède quel fichier, est
actuellement disponible, etc.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;En utilisant Mirrorbrain, il ne nous restera à gérer:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;la synchronisation des miroirs avec &lt;a href=&quot;https://secure.wikimedia.org/wikipedia/fr/wiki/Rsync&quot; hreflang=&quot;fr&quot;&gt;rsync&lt;/a&gt;,&lt;/li&gt;
&lt;li&gt;le &amp;quot;superseeder&amp;quot; pour Bittorrent,&lt;/li&gt;
&lt;li&gt;éventuellement un tracker Bittorrent et noeud &lt;a href=&quot;https://secure.wikimedia.org/wikipedia/fr/wiki/Table_de_hachage_distribu%C3%A9e&quot; hreflang=&quot;fr&quot;&gt;DHT&lt;/a&gt; si on ne souhaite pas (seulement) utiliser les
trackers/noeuds publics.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;L'introduction de Mirrorbrain devrait donc être assez vite réalisée ;
dans les faits elle est déjà bien entamée.&lt;/p&gt;
&lt;p&gt;Coté client, la meilleure solution qui nous soit accessible se nomme
&lt;q&gt;Aria2&lt;/q&gt;. &lt;a href=&quot;http://aria2.sourceforge.net/&quot; hreflang=&quot;en&quot;&gt;Aria2&lt;/a&gt;
est un logiciel de téléchargement en ligne de commande qui &lt;q&gt;comprend&lt;/q&gt; les
fichiers .metalink et gère tout. Aria2 est donc capable de télécharger, et
partager lorsque c'est possible, en parallèle un même fichier depuis
différentes sources et en utilisant différents protocoles. Il est activement
développer depuis plusieurs années et est très léger. Il dispose d'une
interface &lt;a href=&quot;https://secure.wikimedia.org/wikipedia/fr/wiki/XML-RPC&quot; hreflang=&quot;fr&quot;&gt;XML-RPC&lt;/a&gt; permettant de le contrôler depuis Kiwix. Là se trouve
probablement le plus gros du boulot ; Il nous faudra rapidement faire un
prototype pour valider ce choix.&lt;/p&gt;
&lt;p&gt;Le dernier point en suspend semble être alors la question de la
disponibilité des fichiers .metalink ; en-effet, que faire si les fichiers
.metalink sont indispensables et que le serveur central est indisponible ?
Notre idée est d'intégrer les .metalink dans les fichiers XML gérant la
bibliothèque de Kiwix. Un tel fichier pourrait donc indistinctement lister des
contenus présents sur la mémoire de masse, comme des contenus disponibles en
ligne au téléchargement.&lt;/p&gt;
&lt;p&gt;La question ultime concernerait alors la mise à disposition des ces fichiers
&lt;q&gt;bibliothèque&lt;/q&gt;. Un début serait déjà de les livrer par défaut avec Kiwix.
Dans tous les cas de figures, distribuer un fichier de quelques milliers de
kilooctets est bien moins problématique que de distribuer les contenus en eux
mêmes qui font plusieurs gigaoctets.&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>La Wikimedia Foundation soutient Kiwix</title>
    <link>http://blog.kiwix.org/post/2011/01/26/La-Wikimedia-Foundation-soutient-activement-Kiwix</link>
    <guid isPermaLink="false">urn:md5:12ac2b8c62240ec00ecad59dcb1ffe8d</guid>
    <pubDate>Wed, 26 Jan 2011 12:18:00 +0100</pubDate>
    <dc:creator>Kelson</dc:creator>
        <category>Annonce</category>
        <category>openZIM</category><category>Wikimédia France</category>    
    <description>    &lt;p&gt;Nous le souhaitions depuis longtemps, la &lt;a href=&quot;http://www.wikimedia.org&quot;&gt;Wikimedia Foundation&lt;/a&gt; soutient désormais
officiellement Kiwix. Le blog technique de la Fondation l'avait &lt;a href=&quot;http://techblog.wikimedia.org/2011/01/wmf-engineering-update/&quot;&gt;laissé
entendre&lt;/a&gt; quelques fois ces dernières semaines ; mais c'est grâce à un
&lt;a href=&quot;http://techblog.wikimedia.org/2011/01/update-on-offline-wikimedia-projects/&quot;&gt;billet
complet sur le sujet &amp;quot;Wikipedia offline&amp;quot;&lt;/a&gt; que la nouvelle a été
annoncée.&lt;/p&gt;
&lt;p&gt;Cette décision est le fruit du travail autour des futures orientations
stratégiques qu'a lancé la Foundation il y a maintenant presque deux ans. Après
avoir décidé que la &lt;a href=&quot;https://secure.wikimedia.org/wikipedia/strategy/wiki/Strategic_Plan/Movement_Priorities#Increase_Reach&quot;&gt;
priorité stratégique absolue était d'augmenter la taille du lectorat&lt;/a&gt;, la
Wikimedia Foundation s'est donc logiquement intéressée aux solutions de mise à
disposition hors-ligne des contenus. Kiwix a alors retenu son attention.&lt;/p&gt;
&lt;p&gt;Cela nous réjouis naturellement beaucoup de pouvoir compter sur ce nouveau
soutien. La première étape de cette collaboration a d'ors et déjà débuté :
il s'agit d'un effort commun pour analyser et améliorer l'expérience
utilisateur. Ce travail est prévu pour durer quelques mois et son aboutissement
corrélera probablement avec la sortie finale de la version 0.9 de Kiwix.&lt;/p&gt;
&lt;p&gt;L'autre excellente nouvelle, qui va certes un peu de soi, est que le projet
OpenZIM que nous avons lancé a aussi retenu leur attention et est partie
prenante des solutions choisies. Un contrat avec &lt;a href=&quot;http://pediapress.com/&quot;&gt;PediaPress&lt;/a&gt; a été conclu pour que très rapidement
leur &lt;a href=&quot;http://www.mediawiki.org/wiki/Extension:Collection&quot;&gt;extension
pour Mediawiki nommée &amp;quot;Collection&amp;quot;&lt;/a&gt; permette aussi de créer des fichiers
ZIM.&lt;/p&gt;
&lt;p&gt;Aujourd'hui, Kiwix fonctionne déjà très bien et il est maintenant aisé de
faire des DVD avec des contenus issus de Wikipédia. Grâce à ce nouveau soutien,
la promesse d'une distribution des contenus encore plus vaste, totalement libre
et dénuée d'intérêts commerciaux sera probablement en mesure d'être tenue.&lt;/p&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Sortie de Kiwix 0.9 alpha1, aussi pour Windows</title>
    <link>http://blog.kiwix.org/post/2010/05/18/Sortie-de-Kiwix-0.9-alpha1%2C-aussi-pour-Windows</link>
    <guid isPermaLink="false">urn:md5:2281a9e7cd9a3aad31d84372077294fc</guid>
    <pubDate>Tue, 18 May 2010 13:14:00 +0200</pubDate>
    <dc:creator>Kelson</dc:creator>
        <category>Annonce</category>
        <category>Wikimédia France</category>    
    <description>    &lt;p&gt;&lt;img src=&quot;http://www.kiwix.org/images/thumb/5/5b/Kiwix_0.9_alpha1_screenshot_en.png/285px-Kiwix_0.9_alpha1_screenshot_en.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Il y a toirs semaines j'ai publié la première ébauche de Kiwix 0.9, soit la
version alpha1. Nous travaillions depuis l'été 2009 sur cette nouvelle version
et c'est donc le premier pas vers une finalisation de cette branche 0.9. Cette
release propose déjà environ 70% de l'ensemble des fonctionnalités qui seront
présentes dans la version 0.9 finale. En particulier :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Il y a maintenant une version serveur Web dénommée kiwix-serve.&lt;/li&gt;
&lt;li&gt;Le support de Windows fête son retour, et cette fois c'est permanent.&lt;/li&gt;
&lt;li&gt;Support des dernières améliorations de ZIM, en particulier la compressions
LZMA (plus rapide, moins gourmand en ressources)&lt;/li&gt;
&lt;li&gt;Réintroduction du système de suggestions qui fonctionne directement avec
ZIM (pas besoin d'avoir un index de recherche)&lt;/li&gt;
&lt;li&gt;Création d'un installeur pour Windows (merci Wilfredo et Moulinwiki)&lt;/li&gt;
&lt;li&gt;Système de signets&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Voici le CHANGELOG complet de Kiwix 0.9 alpha1 en anglais:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;ZIM library management outside the profile&lt;/li&gt;
&lt;li&gt;Windows support &amp;amp; installer&lt;/li&gt;
&lt;li&gt;Fix the Hebrew search issue with the doublequote character (ID:
2939690)&lt;/li&gt;
&lt;li&gt;First version of the search suggest feature (ID: 2799913)&lt;/li&gt;
&lt;li&gt;New icon (with white background) (ID: 2981323)&lt;/li&gt;
&lt;li&gt;New ZIM HTTP server called &amp;quot;kiwix-serve&amp;quot;&lt;/li&gt;
&lt;li&gt;New Command line indexation tool called &amp;quot;kiwix-index&amp;quot;&lt;/li&gt;
&lt;li&gt;Allow drag&amp;amp;drop over the UI to open a ZIM file&lt;/li&gt;
&lt;li&gt;Autodection of the UI locale at the first start (GNU/Linux only)&lt;/li&gt;
&lt;li&gt;New &amp;quot;Recently open&amp;quot; menu&lt;/li&gt;
&lt;li&gt;New internal library of ZIM (to be able to manage many ZIM files)&lt;/li&gt;
&lt;li&gt;New Hebrew, Portuguese, Chinese and Persian localization&lt;/li&gt;
&lt;li&gt;New Bookmarks and Notes system (coming from Moulinwiki)&lt;/li&gt;
&lt;li&gt;New script to compact search engines indexes in the profile called
&amp;quot;kiwix-compact.sh&amp;quot; (ID: 2834599)&lt;/li&gt;
&lt;li&gt;Translate ISO code in the language sub-menu (ID: 2834600)&lt;/li&gt;
&lt;li&gt;New &amp;quot;Save Page&amp;quot; (in files) feature (ID: 175508)&lt;/li&gt;
&lt;li&gt;New &amp;quot;Print as PDF&amp;quot; feature&lt;/li&gt;
&lt;li&gt;kiwix.sh check for current path (ID: 2850487)&lt;/li&gt;
&lt;li&gt;First result is now only loaded with a pretty good score (ID: 2845850)&lt;/li&gt;
&lt;li&gt;&amp;quot;Report a bug&amp;quot; and &amp;quot;request a feature&amp;quot; links in the UI&lt;/li&gt;
&lt;li&gt;Fixing issue affecting ZIM file loading with accented paths (ID:
2905488)&lt;/li&gt;
&lt;li&gt;New feature to clean the profile at the end of the session (optional)&lt;/li&gt;
&lt;li&gt;Redesign of the &amp;quot;About&amp;quot; Dialog box&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Du point de vue du code, la situation s'est aussi largement améliorée
puisque le tout compile maintenant avec les GNU autotools et que le processus
est bien documenté ; en particulier pour la compilation sous Windows. Une
conséquence de ceci est que l'on peut penser maintenant fournir des paquets
pour GNU/Linux et du travail a déjà été fourni dans ce sens. Un paquet DEB
(Debian et Ubuntu) sera désormais systématiquement fourni au téléchargement...
en attendant que Kiwix soit inséré officiellement dans Debian. Un paquet RPM
pour Fedora est en cours.&lt;/p&gt;
&lt;p&gt;Reste maintenant à faire :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Recherche multi-ZIM&lt;/li&gt;
&lt;li&gt;Gestion de multiples tabs&lt;/li&gt;
&lt;li&gt;Support de MacOS&lt;/li&gt;
&lt;li&gt;... et corriger les quelques bugs connus ;)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Liens :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://tmp.kiwix.org/scr/kiwix_0.9_alpha1_win.ogg&quot;&gt;Screencast
(vidéo) de Kiwix 0.9&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://sourceforge.net/projects/kiwix/files/&quot;&gt;Installeur Kiwix 0.9
simple pour Windows&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://sourceforge.net/projects/kiwix/files/&quot;&gt;Les fichiers ZIM
(contenus)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://blog.kiwix.org/post/2010/05/18/WPEN%200.7%20selection%20(30.000%20articles)%20avec%20Kiwix%20(tout%20en%20un)%20+%20installeur&quot;&gt;
http://tmp.kiwix.org/tmp/kiwix-0.9-alpha1-win+wp1en0.7.zip&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://blog.kiwix.org/post/2010/05/18/&quot;&gt;Les sources&lt;/a&gt;]&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://sourceforge.net/projects/kiwix/files/&quot;&gt;Kiwix 0.9 alpha1 deb
package&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://blog.kiwix.org/post/2010/05/18/Demo%20de%20kiwix-serve&quot;&gt;http://library.kiwix.org:4201&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.kiwix.org/index.php/Roadmap/fr&quot;&gt;Plan de route pour
Kiwix&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Sortie de Kiwix 0.8</title>
    <link>http://blog.kiwix.org/post/2010/02/24/Sortie-de-Kiwix-0.8</link>
    <guid isPermaLink="false">urn:md5:3d2217e4095bcb56005eb0594535c98f</guid>
    <pubDate>Wed, 24 Feb 2010 12:48:00 +0100</pubDate>
    <dc:creator>Kelson</dc:creator>
        <category>Annonce</category>
        <category>Wikimédia France</category>    
    <description>    &lt;p&gt;J'ai publié &lt;strong&gt;Kiwix 0.8&lt;/strong&gt; il y a quelques jours. C'est une
version mineure pour l'utilisateur car elle apporte quasiment rien de nouveau
en terme de fonctionnalités ; certaines même ont été supprimées. Depuis 6
mois les versions de test se sont succédées et comme plus aucun bug n'était
signalé et que je travaillais depuis longtemps sur la version 0.9, je me suis
décidé à le faire maintenant. Pour terminé, cette version fonctionne uniquement
sous GNU/Linux ; ce qui est tout de même handicapant pour de nombreux
utilisateurs en Occident... dans d'autres pays, cela l'ai beaucoup moins.&lt;/p&gt;
&lt;p&gt;Cependant, d'un point de vue technique, la version 0.8 est un pas
important :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Tout à été réécrit de manière beaucoup plus propre et modulaire et le code
a été documenté.&lt;/li&gt;
&lt;li&gt;Kiwix se base maintenant entièrement pour les contenus sur le format ZIM
dont le développement est maintenant indépendant avec la création du projet
&lt;a href=&quot;http://www.openzim.org/&quot;&gt;openZIM&lt;/a&gt;. En clair cela veut dire que
n'importe qui peut faire un ZIM et Kiwix pourra le lire.&lt;/li&gt;
&lt;li&gt;Le moteur de recherche est désormais &lt;a href=&quot;http://www.xapian.org&quot;&gt;Xapian&lt;/a&gt;, un moteur de recherche éprouvé et libre qui
bénéficie d'un bon support et offre de très nombreuses possibilités. Kiwix
offre aussi maintenant un indexer intégré, cela signifie que si vous avez des
ZIM, Kiwix peut facilement les indexer et offrir la fonctionnalité de recherche
sur ces nouveaux contenus. Un autre point important est que toutes les
recherches sont maintenant insensibles à la casse et aux accents grâce en
particulier à la librairie &lt;a href=&quot;http://packages.debian.org/fr/lenny/libunac1&quot;&gt;libunac&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;Le processus de localisation est maintenant stable et il y a de plus en
plus de langues supportées.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Bref, avec la version 0.5, nous avions fait la preuve de la validité du
concept. Avec la version 0.8 les bases sont jetés pour faire un logiciel
réellement ouvert et de qualité professionnelle.&lt;/p&gt;
&lt;p&gt;Voici le &lt;a href=&quot;http://kiwix.svn.sourceforge.net/viewvc/kiwix/branches/kiwix-0.8/kiwix/CHANGELOG&quot;&gt;
CHANGELOG&lt;/a&gt; presque complet :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Small improvement by the kiwix.sh launcher (should work now under Slackware
(see https://sourceforge.net/forum/message.php?msg_id=7561932)&lt;/li&gt;
&lt;li&gt;Fix sporadic segfault by indexing (ID: 2823597)&lt;/li&gt;
&lt;li&gt;Fix dynlib linking issue affecting at least Slackware and Fedora&lt;/li&gt;
&lt;li&gt;Use xapian-core-1.0.14&lt;/li&gt;
&lt;li&gt;Fix the &amp;quot;no icons available&amp;quot; issue (ID: 2830824)&lt;/li&gt;
&lt;li&gt;Fixed toolbar icons with RTL languages&lt;/li&gt;
&lt;li&gt;Improved toolbar UI (added icons &amp;amp; tooltip)&lt;/li&gt;
&lt;li&gt;Fixed window size/position restore&lt;/li&gt;
&lt;li&gt;Fixed address-bar not displaying TOC URLs (ID: 2806208)&lt;/li&gt;
&lt;li&gt;Fixed anchored link not working (ID: 2806207)&lt;/li&gt;
&lt;li&gt;High reducing of the xapian index disk usage&lt;/li&gt;
&lt;li&gt;Improvement of the history management&lt;/li&gt;
&lt;li&gt;Ignore now, by indexing, HTML pages with the NOINDEX meta tag&lt;/li&gt;
&lt;li&gt;French/Spanish/German/Arabic/Italian translation of the software help&lt;/li&gt;
&lt;li&gt;Fixed language switch menu (ID: 2822178)&lt;/li&gt;
&lt;li&gt;New logo and artworks&lt;/li&gt;
&lt;li&gt;Bug fix by the indexing process observer (ID: 2811642)&lt;/li&gt;
&lt;li&gt;Add a gray version of the buttons&lt;/li&gt;
&lt;li&gt;Able to index a ZIM by itself&lt;/li&gt;
&lt;li&gt;First version of a software help&lt;/li&gt;
&lt;li&gt;Add a cache strategy&lt;/li&gt;
&lt;li&gt;Use now ZIM&lt;/li&gt;
&lt;li&gt;Random page feature (ID: 2799134)&lt;/li&gt;
&lt;li&gt;Fix an issue concerning URLs with local anchors (ID: 2798769)&lt;/li&gt;
&lt;li&gt;Localisation of Xulrunner builtins (ID: 2799815)&lt;/li&gt;
&lt;li&gt;Rewrite the buggy MD5 code&lt;/li&gt;
&lt;li&gt;Remember the window geometry (ID: 1671235)&lt;/li&gt;
&lt;li&gt;32 bits support for large ZIM file (ID: 2801839)&lt;/li&gt;
&lt;li&gt;Use now Xapian&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Pour rappel, telles étaient les versions précédentes de Kiwix :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;v0.5 au printemps 2007&lt;/li&gt;
&lt;li&gt;v0.7 à l'hiver 2008 (pas de support)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Comme on peut le voir le rythme des sorties n'est pas très élevé (c'est un
euphémisme). Cela est en train de changer, j'ai repris en main le dev. du
logiciel lui-même alors qu'auparavant je travaillais surtout sur les scripts de
génération du HTML. J'ai par ailleurs de l'aide en ce moment. Par voie de
conséquence, la version 0.9 est déjà très avancée et les premières versions
alpha devraient sortir au mois d'avril avec en particulier le retour du support
complet de Windows.&lt;/p&gt;
&lt;p&gt;Pour plus d'informations :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://sourceforge.net/projects/kiwix/files/kiwix-0.8%2Bxulrunner.tar.bz2/download&quot;&gt;
Binaire statique pour x86_32 GNU/Linux&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://tmp.kiwix.org/scr/kiwix_0.8_alpha3.ogv&quot;&gt;Screencast d'une
alpha de 0.8&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://tmp.kiwix.org/zim/0.8/&quot;&gt;Quelques fichiers ZIM pour cette
version de Kiwix&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Le &lt;a href=&quot;http://kiwix.svn.sourceforge.net/viewvc/kiwix/branches/kiwix-0.8/kiwix/CHANGELOG&quot;&gt;
CHANGELOG complet&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;La &lt;a href=&quot;http://www.kiwix.org/index.php/Roadmap/fr&quot;&gt;feuille de route
pour les prochaines versions&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Le &lt;a href=&quot;http://bugs.kiwix.org&quot;&gt;catalogue de bugs et de demande
fonctionnalités&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.kiwix.org/index.php?title=Compilation/en&amp;amp;oldid=470&quot;&gt;Comment
compiler Kiwix 0.8&lt;/a&gt; (beaucoup plus simple pour la version 0.9)&lt;/li&gt;
&lt;/ul&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Avez-vous dit ZIM ?</title>
    <link>http://blog.kiwix.org/post/2010/01/26/Avez-vous-dit-ZIM</link>
    <guid isPermaLink="false">urn:md5:6a67462f6208073ba1289d25d648cd33</guid>
    <pubDate>Tue, 26 Jan 2010 17:17:00 +0100</pubDate>
    <dc:creator>Kelson</dc:creator>
        <category>openZIM</category><category>Wikimédia France</category>    
    <description>    &lt;p&gt;Il y a un an environ, &lt;a href=&quot;http://openzim.org/Project_Team&quot; hreflang=&quot;en&quot;&gt;deux acolytes et moi-même&lt;/a&gt; fondions le &lt;a href=&quot;http://openzim.org&quot; hreflang=&quot;en&quot;&gt;projet openZIM&lt;/a&gt;. L'&lt;a href=&quot;http://openzim.org/Mission_of_openZIM&quot; hreflang=&quot;en&quot;&gt;objectif&lt;/a&gt; était la
spécification d'un format de données adapté au stockage des articles issus de
Wikipédia ainsi que la création d'une bibliothèque logicielle et d'outils
nécessaires à la manipulation dudit format.&lt;/p&gt;
&lt;p&gt;Nous travaillons aujourd'hui sur les dernières améliorations de ce qui sera
probablement la première version officielle. Cependant, avant de détailler le
projet et le format, je souhaite revenir brièvement sur les conditions de sa
création.&lt;/p&gt;
&lt;p&gt;L'une des questions qui se pose assez rapidement lorsque l'on réfléchi sur
comment rendre accessible une version statique de Wikipédia est &lt;q&gt;Comment
vais-je stocker ces quantités importantes d'information ?&lt;/q&gt; Le cahier des
charges, formulé de manière simplifiée, étant :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;mémoire de masse nécessaire la plus réduite possible&lt;/li&gt;
&lt;li&gt;temps d'accès les plus réduits possible&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Dans les faits, rien n'existait qui satisfasse vraiment ces contraintes. Les
solutions de compression actuelles étant particulièrement incapables d'offrir
des temps d'accès acceptables (un dixième de seconde maximum par
ressource).&lt;/p&gt;
&lt;p&gt;Chaque initiative a donc essayé de faire au mieux (sachant que cela n'était
qu'un aspect parmi d'autres) et la meilleure des approches que j'ai pu voir
consistait à compresser &lt;em&gt;N&lt;/em&gt; articles par fichier (typiquement avec
&lt;a href=&quot;http://fr.wikipedia.org/wiki/Bzip2&quot;&gt;Bzip2&lt;/a&gt; ou &lt;a href=&quot;http://fr.wikipedia.org/wiki/LZMA&quot;&gt;LZMA&lt;/a&gt;) et de tenir un index dans une
base de données locale indépendante (type &lt;a href=&quot;http://www.sqlite.org&quot; hreflang=&quot;en&quot;&gt;SQLite&lt;/a&gt;). Ce type de solutions souffre cependant des
inconvénients suivant :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;avoir à gérer séparément l'index et les fichiers de contenu&lt;/li&gt;
&lt;li&gt;compresser des contenus qui éventuellement le sont déjà (typiquement JPEG
ou PNG)&lt;/li&gt;
&lt;li&gt;ne pas offrir de bibliothèque avec API simplifiée&lt;/li&gt;
&lt;li&gt;avoir à gérer de nombreux fichiers&lt;/li&gt;
&lt;li&gt;ne pas être correctement documentée&lt;/li&gt;
&lt;li&gt;gestion native des catégories (dev. en cours)&lt;/li&gt;
&lt;li&gt;gestion des meta-tags (dev. en cours)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Telle était la situation lorsque en 2007 nous nous sommes pour la première
fois rencontrés : Manuel, Tommi et moi-même. Tommi nous a alors présenté
quelque chose d'intéressant : il avait programmé un lecteur libre pour le
format de données ZENO qu'utilisait Directmedia (la maison d'édition qui
publiait les DVDs de Wikipédia en allemand). Le format ZENO était intéressant
parce que tout était dans un fichier et que l'on avait maintenant une librairie
pour le décoder.&lt;/p&gt;
&lt;p&gt;Il restait deux gros défis :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;augmenter l'efficacité de la compression&lt;/li&gt;
&lt;li&gt;écrire un outil pour créer les ZENOs&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;En l'espace d'un an, Tommi ayant fait cela et Directmedia ayant décidait de
ne plus publier de DVD en allemand et d'abandonner ZENO ; nous nous sommes
dit qu'il y avait vraiment là quelque chose à faire. Nous avons alors conçu le
projet openZIM et renommé le format, qui entre temps avait beaucoup évolué, en
ZIM (pour &lt;em&gt;Zeno IMproved&lt;/em&gt;).&lt;/p&gt;
&lt;p&gt;Aujourd'hui le format et les outils sont meilleurs que jamais :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;tout tient dans un fichier&lt;/li&gt;
&lt;li&gt;tout type de contenus peut être introduit&lt;/li&gt;
&lt;li&gt;compression LZMA&lt;/li&gt;
&lt;li&gt;compression paramétrable en fonction du mime-type&lt;/li&gt;
&lt;li&gt;portable&lt;/li&gt;
&lt;li&gt;librairie de référence extrêmement efficace&lt;/li&gt;
&lt;li&gt;Index par titre et par URI&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Nous sommes subventionnés par &lt;a href=&quot;http://www.wikimedia.ch&quot;&gt;Wikimedia
CH&lt;/a&gt; qui couvre nos frais de serveur ainsi que ceux occasionnés par nos
rencontres. Le format ainsi que les outils continuent d'&lt;a href=&quot;http://www.openzim.org/Roadmap&quot;&gt;évoluer rapidement&lt;/a&gt; et sont de loin la
meilleure solution actuelle… Ce qui est assez compréhensible finalement
puisqu'il n'y a pas de véritable alternative.&lt;/p&gt;
&lt;p&gt;La fondation Wikimedia s'est montrée intéressée pour proposer des
&lt;em&gt;dumps&lt;/em&gt; au format ZIM et nous discutons les contraintes techniques d'un
tel projet. &lt;a href=&quot;http://www.kiwix.org&quot;&gt;Kiwix&lt;/a&gt; utilise évidement ZIM et
propose déjà &lt;a href=&quot;http://tmp.kiwix.org/zim&quot;&gt;quelques fichiers ZIM&lt;/a&gt; à
tester. Je suis aussi convaincu que de plus en plus de projets seront en mesure
de travailler avec ce format.&lt;/p&gt;
&lt;p&gt;Le travail n'est pour autant pas terminé. Il reste en particulier à
implanter quelques fonctionnalités importantes et à régler quelques points
problématiques. Il nous faut aussi stabiliser le format ; en-effet, le
rythme des améliorations est toujours soutenu et la rétro-compatibilité a déjà
été cassée par deux fois : une chose pourtant indispensable pour une
utilisation plus large.&lt;/p&gt;
&lt;p&gt;... mais le jeux en vaut la chandelle !&lt;/p&gt;
&lt;p&gt;Pour plus d'informations :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;le &lt;a href=&quot;http://www.openzim.org&quot; hreflang=&quot;en&quot;&gt;site Web
d'openZIM&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;le &lt;a href=&quot;http://webchat.freenode.net/?channels=#openzim&quot; hreflang=&quot;en&quot;&gt;chan. IRC d'openZIM&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;la &lt;a href=&quot;https://intern.openzim.org/mailman/listinfo/dev-l&quot; hreflang=&quot;en&quot;&gt;liste de diffusion pour développeurs d'openZIM&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</description>
    
    
    
      </item>
    
  <item>
    <title>Lancement du blog</title>
    <link>http://blog.kiwix.org/post/2009/12/30/Lancement-du-blog</link>
    <guid isPermaLink="false">urn:md5:932cfa9842397dc0329ba20b82a47a55</guid>
    <pubDate>Wed, 30 Dec 2009 14:11:00 +0100</pubDate>
    <dc:creator>Kelson</dc:creator>
        <category>Annonce</category>
        <category>openZIM</category><category>Wikimédia France</category>    
    <description>    &lt;p&gt;&lt;em&gt;Mise-à-jour : Le blog a été ajouté aujourd'hui au Planète Wikimédia
francophone. Je remercie Johann pour son aide.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Depuis que je travaille sur &lt;a href=&quot;http://www.kiwix.org&quot;&gt;Kiwix&lt;/a&gt;, et on
approche des quatre ans, je m'interroge sur la nécessité de tenir un blog.
Après avoir longtemps tergiversé, j'ai décidé de tenter l'aventure et de voir
si cela en vaut la peine. J'espère que mes lecteurs, vous, me gratifierez au
début de votre indulgence, voire de vos conseils, sachant que je suis débutant
dans cet exercice.&lt;/p&gt;
&lt;p&gt;Je pense publier ici en grande majorité des articles en français et
probablement le plus souvent techniques. Je parlerai aussi évidement du projet
&lt;a href=&quot;http://www.openzim.org&quot;&gt;openZIM&lt;/a&gt; que nous avons lancé en début
d'année avec Manuel et Tommi, et qui me tient beaucoup à cœur.&lt;/p&gt;
&lt;p&gt;Les lecteurs qui me lisent par l'entremise du planète de &lt;a href=&quot;http://www.wikimedia.fr&quot;&gt;Wikimédia France&lt;/a&gt; ne doivent pour autant pas
s'inquiéter : je ne les spammerai pas avec de nombreux articles loin de
leur préoccupations. Les catégories et les tags sont à disposition pour
permettre de satisfaire cette exigence ; au pire je m'autoriserai quelques
digressions touchant la culture libre.&lt;/p&gt;
&lt;p&gt;Pour ceux qui souhaitent suivre au plus près les développements de
Kiwix :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Le &lt;a href=&quot;http://www.kiwix.org&quot;&gt;site web&lt;/a&gt; où la page de garde est une
bonne source d'informations. Les pages importantes sont pour la plupart
traduites en anglais et espagnol.&lt;/li&gt;
&lt;li&gt;Le &lt;a href=&quot;http://identi.ca/group/kiwix&quot;&gt;fil de micro-blogging de
identi.ca&lt;/a&gt; ; mais en anglais seulement et le plus souvent
technique.&lt;/li&gt;
&lt;li&gt;Le &lt;a href=&quot;http://planet.kiwix.org&quot;&gt;planet&lt;/a&gt; qui est multilingue... et
encore un peu vide.&lt;/li&gt;
&lt;li&gt;... et maintenant &lt;a href=&quot;http://blog.kiwix.org&quot;&gt;ce blog&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;</description>
    
    
    
      </item>
    
</channel>
</rss>