diff --git a/index.html b/index.html
index c4adad8d..ca75b642 100644
--- a/index.html
+++ b/index.html
@@ -81,12 +81,16 @@
The original application (developed in Qt) is at http://www.evopedia.info/
- To use it, you have to first download locally an archive from http://dumpathome.evopedia.info/dumps/finished (with a Bittorrent client).
+ To use it, you have to first download locally an archive from http://dumpathome.evopedia.info/dumps/finished, from a regular computer.
+
If you get a compressed archive (.zip, .tar.gz or .tar.bz2), you will have to decompress it.
+
For a quick test, you can start with the dump called "small" : it can be downloaded through HTTP and contains a very small subset of the English archive (note that the hyperlinks between articles will rarely work, as a lot of articles are missing in it).
+
After that, you can download an archive in your language, through a Bittorrent client. Check its size : these archives take several GB each.
+
+ - On a Firefox OS device, you simply have to put the archive files in any subdirectory of your sdcard (ex: /wikipedia_small_2010-08-14). The application needs to be installed to have the right to read the archive. For now, you have to install it manually (use the push feature of the Firefos OS Simulator). I hope it will soon be available in the MarketPlace
+ - On the Firefos OS simulator, you have to put the archive files in any subdirectory in a "fake-sdcard" folder of your firefox profile (ex : ~/.mozilla/firefox/xxxx.default/extensions/r2d2b2g@mozilla.org/profile/fake-sdcard/wikipedia_small_2010-08-14). You need to install the application from the dashboard of the simulator
- On desktops, it works on recent Firefox and Chromium, and probably on some other browsers (it even seems to work on IE10). In this case, you have to manually select the files from your archive (see the configuration section)
- - On the Firefos OS simulator, you have to put the archive files anywhere in a "fake-sdcard" folder of your firefox profile (ex : ~/.mozilla/firefox/xxxx.default/extensions/r2d2b2g@mozilla.org/profile/fake-sdcard). You need to install the application from the dashboard of the simulator (due to security restrictions in Firefox OS : only certified webapps can access the sdcard)
- - On a real Firefox OS device, you simply have to put the archive files anywhere in your sdcard. For now, the application has to be installed manually (use the push feature of the Firefos OS Simulator)
- On Android, it does not seem to work for now (tried with internal browser, Chrome and Firefox) because you can not select all the files of an archive
@@ -95,7 +99,7 @@
It is not easy to use on the Peak device from Geeksphone because the buttons and inputs are too small
Some features of the original application still have to be implemented : in particular the "Articles nearby" feature (geolocation)
- The bugtracker is on github too. I also use it as my roadmap.
+ The bugtracker is on github too. I use it as my roadmap.
Alternatively, you can send your feedback by email.
In all cases, please give me as much detail as you can : which device or browser you are using, which archive, which articles etc.
@@ -116,6 +120,11 @@
+
+ You can search the content of your Wikipedia archive by typing in the above search field.
+
It will propose articles starting with what you typed
+
+
diff --git a/js/app.js b/js/app.js
index 4ea12628..9fa84e12 100644
--- a/js/app.js
+++ b/js/app.js
@@ -21,6 +21,7 @@ define(function(require) {
// Define behavior of HTML elements
$('#searchTitles').on('click', function(e) {
searchTitlesFromPrefix($('#prefix').val());
+ $("#welcomeText").hide();
});
$('#formTitleSearch').on('submit', function(e) {
document.getElementById("searchTitles").click();
@@ -57,6 +58,7 @@ define(function(require) {
$('#about').hide();
$('#configuration').hide();
$('#formTitleSearch').show();
+ $("#welcomeText").show();
$('#titleList').show();
$('#articleContent').show();
// Give the focus to the search field, and clean up the page contents
@@ -78,6 +80,7 @@ define(function(require) {
$('#about').hide();
$('#configuration').show();
$('#formTitleSearch').hide();
+ $("#welcomeText").hide();
$('#titleList').hide();
$('#articleContent').hide();
return false;
@@ -94,6 +97,7 @@ define(function(require) {
$('#about').show();
$('#configuration').hide();
$('#formTitleSearch').hide();
+ $("#welcomeText").hide();
$('#titleList').hide();
$('#articleContent').hide();
return false;
@@ -157,7 +161,8 @@ define(function(require) {
setLocalArchiveFromArchiveList();
}
else {
- alert("No Evopedia archive found in your sdcard. Please see 'About' for more info. Also check that your device is not connected to a computer through USB device storage (which locks the sdcard content)");
+ alert("Welcome to Evopedia! This application needs a wikipedia archive in your SD-card. Please download one and put it on the SD-card (see About section). Also check that your device is not connected to a computer through USB device storage (which locks the SD-card content)");
+ $("#btnAbout").click();
}
}