1
0
mirror of https://github.com/gnosygnu/xowa.git synced 2024-10-27 20:34:16 +00:00

$version_number

This commit is contained in:
gnosygnu 2016-07-10 23:36:24 -04:00
parent 175603c217
commit 38b6a9b862
17 changed files with 1451 additions and 756 deletions

View File

@ -0,0 +1,380 @@
<!DOCTYPE html>
<html dir="ltr">
<head>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<title>App/Import/mwad - XOWA</title>
<link rel="shortcut icon" href="https://gnosygnu.github.io/xowa/xowa_logo.png" />
<link rel="stylesheet" href="https://gnosygnu.github.io/xowa/xowa_common.css" type="text/css">
</head>
<body class="mediawiki ltr sitedir-ltr ns-0 ns-subject skin-vector action-submit vector-animateLayout" spellcheck="false">
<div id="mw-page-base" class="noprint"></div>
<div id="mw-head-base" class="noprint"></div>
<div id="content" class="mw-body">
<h1 id="firstHeading" class="firstHeading"><span>App/Import/mwad</span></h1>
<div id="bodyContent" class="mw-body-content">
<div id="siteSub">From XOWA: the free, open-source, offline wiki application</div>
<div id="contentSub"></div>
<div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr">
<p>
<a href="https://github.com/Mattze96/mwad" rel="nofollow" class="external text">mwad</a> is a python script / executable by <a href="https://github.com/Mattze96" rel="nofollow" class="external text">Mattze96</a> to generate XML dumps using the MediaWiki API
</p>
<div id="toc" class="toc">
<div id="toctitle">
<h2>
Contents
</h2>
</div>
<ul>
<li class="toclevel-1 tocsection-1">
<a href="#Overview:_XML_Dumps"><span class="tocnumber">1</span> <span class="toctext">Overview: XML Dumps</span></a>
</li>
<li class="toclevel-1 tocsection-2">
<a href="#Usage"><span class="tocnumber">2</span> <span class="toctext">Usage</span></a>
<ul>
<li class="toclevel-2 tocsection-3">
<a href="#Generating_the_dump"><span class="tocnumber">2.1</span> <span class="toctext">Generating the dump</span></a>
<ul>
<li class="toclevel-3 tocsection-4">
<a href="#Executable"><span class="tocnumber">2.1.1</span> <span class="toctext">Executable</span></a>
</li>
<li class="toclevel-3 tocsection-5">
<a href="#Python_script"><span class="tocnumber">2.1.2</span> <span class="toctext">Python script</span></a>
</li>
</ul>
</li>
<li class="toclevel-2 tocsection-6">
<a href="#Importing_the_dump"><span class="tocnumber">2.2</span> <span class="toctext">Importing the dump</span></a>
</li>
</ul>
</li>
<li class="toclevel-1 tocsection-7">
<a href="#Other_notes"><span class="tocnumber">3</span> <span class="toctext">Other notes</span></a>
</li>
<li class="toclevel-1 tocsection-8">
<a href="#mwad_usage_notes"><span class="tocnumber">4</span> <span class="toctext">mwad usage notes</span></a>
</li>
<li class="toclevel-1 tocsection-9">
<a href="#References"><span class="tocnumber">5</span> <span class="toctext">References</span></a>
</li>
</ul>
</div>
<h2>
<span class="mw-headline" id="Overview:_XML_Dumps">Overview: XML Dumps</span>
</h2>
<p>
XOWA is an offline wiki application for online wikis. It works by converting a MediaWiki XML dump into an .xowa sqlite3 database.
</p>
<p>
XML dumps can be obtained in the following locations:
</p>
<ul>
<li>
Wikimedia wikis: <a href="https://dumps.wikimedia.org/backup-index.html" rel="nofollow" class="external free">https://dumps.wikimedia.org/backup-index.html</a>
</li>
<li>
Wikia wikis: On the Special:Statistics for a given wiki. For example, for the freespeech wikia wiki, one can go to <a href="http://freespeech.wikia.com/wiki/Special:Statistics" rel="nofollow" class="external free">http://freespeech.wikia.com/wiki/Special:Statistics</a>
</li>
<li>
Other wikis: Varies and depends on wiki setup.
</li>
</ul>
<p>
For non-Wikimedia wikis (Wikia wikis and other wikis), the dumps may not be available or out-of-date. For example, the freespech wikia has a dump date of 2013-12-26, which is over 2 and a half years old.
</p>
<p>
For Wikia wikis, one can request an XML dump by doing the following:
</p>
<ul>
<li>
Logging in with a user account
</li>
<li>
Requesting a dump through the Special:Statistics page
</li>
<li>
Waiting for the dump to be generated
</li>
</ul>
<p>
Other wikis may require emails to the wiki's admins.
</p>
<p>
An alternative to this process is to use Mattze96's mwad: the Media Wiki Api dump
</p>
<h2>
<span class="mw-headline" id="Usage">Usage</span>
</h2>
<p>
Currently mwad is available as a command-line executable and a python script.
</p>
<ul>
<li>
For up-to-date info, see <a href="https://github.com/Mattze96/mwad" rel="nofollow" class="external free">https://github.com/Mattze96/mwad</a>
</li>
<li>
For info as of 2016-07-10, see <a href="#mwad_usage_notes" id="xolnki_2">mwad usage notes below</a>
</li>
<li>
For a walk-through synopsis, see the following:
</li>
</ul>
<h3>
<span class="mw-headline" id="Generating_the_dump">Generating the dump</span>
</h3>
<h4>
<span class="mw-headline" id="Executable">Executable</span>
</h4>
<ul>
<li>
Open up a command prompt
</li>
</ul>
<dl>
<dd>
<code>cmd</code>
</dd>
</dl>
<ul>
<li>
Change to the mwad directory
</li>
</ul>
<dl>
<dd>
<code>cd C:\xowa\bin\windows\python\mwad</code>
</dd>
</dl>
<ul>
<li>
Run mwad with the following options
</li>
</ul>
<dl>
<dd>
mediawiki_api_dump.win32.exe <a href="http://freespeech.wikia.com" rel="nofollow" class="external free">http://freespeech.wikia.com</a>
</dd>
</dl>
<h4>
<span class="mw-headline" id="Python_script">Python script</span>
</h4>
<ul>
<li>
Make sure you have Python 3 installed on your system
</li>
<li>
Open up a command prompt
</li>
</ul>
<dl>
<dd>
<code>cmd</code>
</dd>
</dl>
<ul>
<li>
Change to the mwad directory
</li>
</ul>
<dl>
<dd>
<code>cd C:\xowa\bin\any\python\mwad</code>
</dd>
</dl>
<ul>
<li>
Run mwad with the following options
</li>
</ul>
<dl>
<dd>
python mediawiki_api_dump.py <a href="http://freespeech.wikia.com" rel="nofollow" class="external free">http://freespeech.wikia.com</a>
</dd>
</dl>
<p>
Both cases will generate an xml file called <code>freespeech.wikia.com-20160710-pages-articles.xml</code>
</p>
<h3>
<span class="mw-headline" id="Importing_the_dump">Importing the dump</span>
</h3>
<ul>
<li>
Create a folder called C:\xowa\wiki\freespeech.wikia.com
</li>
<li>
Move the xml file to C:\xowa\wiki\freespeech.wikia.com
</li>
<li>
Rename the file to freespeech.wikia.com.xml
</li>
<li>
Choose "Main Menu" -&gt; "Tools" -&gt; "Import Offline"
</li>
<li>
Change "Wiki" to "Other wiki"
</li>
<li>
Change "Where to get the dump" to "read from file"
</li>
<li>
Select the XML file by clicking "..."
</li>
<li>
Press "Import Now"
</li>
</ul>
<p>
Depending on the wiki, the Main_Page may not be available. You can use the XOWA search bar to look for pages in the wiki.
</p>
<h2>
<span class="mw-headline" id="Other_notes">Other notes</span>
</h2>
<ul>
<li>
<b>Do not run this on Wikimedia wikis</b>. Wikimedia has strict web-crawling policies. If you run this on a Wikimedia wiki, such as en.wikipedia.org, your IP address will probably be banned and you will be unable to access Wikipedia.
</li>
<li>
<b>Pay attention to the licenses for the wiki</b>. All Wikia wikis are under a Creative Commons license for article text<sup id="cite_ref-wikia_licensing_0-0" class="reference"><a href="#cite_note-wikia_licensing-0">[1]</a></sup>. Other wikis may follow similiarly permissive licensing but it is your responsibility to check. If a wiki has a strict copyright license, please do not run mwad on it.
</li>
<li>
<b>Web-scraping policies may get your IP banned</b>. Different wikis may have different limits on number of articles downloaded, even through their API. If you're downloading a large wiki, you should consult first with the wiki's admins. Otherwise, your IP address may be flagged as an unauthorized web-crawler and you will be banned.
</li>
</ul>
<p>
<br>
</p>
<h2>
<span class="mw-headline" id="mwad_usage_notes">mwad usage notes</span>
</h2>
<pre>
usage: mediawiki_api_dump.py [-h] [-v] [-n NAME] [-l LOG] [-c] [-x] url
Create a wiki xml-dump via api.php
positional arguments:
url download url
optional arguments:
-h, --help show this help message and exit
-v, --verbose verbose level... repeat up to three times
-n NAME, --name NAME name of the wiki for filename etc.
-l LOG, --log LOG specify log-file.
-c, --compress compress output file with bz2
-x, --xowa special XOWA mode: xml to stdout, progress to stderr
Example:
./mediawiki_api_dump.py http://wiki.archlinux.org
</pre>
<h2>
<span class="mw-headline" id="References">References</span>
</h2>
<ol class="references">
<li id="cite_note-wikia_licensing-0">
<span class="mw-cite-backlink"><a href="#cite_ref-wikia_licensing_0-0">^</a></span> <span class="reference-text">See <a href="http://www.wikia.com/Licensing" rel="nofollow" class="external autonumber">[1]</a></span>
</li>
</ol>
</div>
</div>
</div>
<div id="mw-head" class="noprint">
<div id="left-navigation">
<div id="p-namespaces" class="vectorTabs">
<h3>Namespaces</h3>
<ul>
<li id="ca-nstab-main" class="selected"><span><a id="ca-nstab-main-href" href="index.html">Page</a></span></li>
</ul>
</div>
</div>
</div>
<div id='mw-panel' class='noprint'>
<div id='p-logo'>
<a style="background-image: url(https://gnosygnu.github.io/xowa/xowa_logo.png);" href="http://xowa.org/" title="Visit the main page"></a>
</div>
<div class="portal" id='xowa-portal-home'>
<h3>XOWA</h3>
<div class="body">
<ul>
<li><a href="http://xowa.org/index.html" title='Visit the main page'>Main page</a></li>
<li><a href="http://xowa.org/screenshots.html" title='See screenshots of XOWA'>Screenshots</a></li>
<li><a href="https://www.youtube.com/watch?v=q0qbXYXEH6M" title="See a video of XOWA Desktop in action">Video</a></li>
<li><a href="http://xowa.org/home/wiki/Help/Download_XOWA.html" title='Download the XOWA application'>Download XOWA</a></li>
<li><a href="http://xowa.org/home/wiki/Dashboard/Image_databases.html" title='Download offline wikis and image databases'>Download wikis</a></li>
</ul>
</div>
</div>
<div class="portal" id='xowa-portal-started'>
<h3>Getting started</h3>
<div class="body">
<ul>
<li><a href="http://xowa.org/home/wiki/App/Setup/System_requirements.html" title='Get XOWA&apos;s system requirements'>Requirements</a></li>
<li><a href="http://xowa.org/home/wiki/App/Setup/Installation.html" title='Get instructions for installing XOWA'>Installation</a></li>
<li><a href="http://xowa.org/home/wiki/App/Import/Simple_Wikipedia.html" title='Learn how to set up Simple Wikipedia'>Simple Wikipedia</a></li>
<li><a href="http://xowa.org/home/wiki/App/Import/English_Wikipedia.html" title='Learn how to set up English Wikipedia'>English Wikipedia</a></li>
<li><a href="http://xowa.org/home/wiki/App/Import/Other_wikis.html" title='Learn how to set up other Wikipedias'>Other Wikipedias</a></li>
</ul>
</div>
</div>
<div class="portal" id='xowa-portal-android'>
<h3>Android</h3>
<div class="body">
<ul>
<li><a href="http://xowa.org/home/wiki/Android/Setup.html" title='Setup XOWA on your Android device'>Setup</a></li>
<li><a href="https://www.youtube.com/watch?v=jsMTBxGweUw" title="See a video of XOWA Android in action">Video</a></li>
</ul>
</div>
</div>
<div class="portal" id='xowa-portal-help'>
<h3>Help</h3>
<div class="body">
<ul>
<li><a href="http://xowa.org/home/wiki/Help/About.html" title='Get more information about XOWA'>About</a></li>
<li><a href="http://xowa.org/home/wiki/Help/Contents.html" title='View a list of help topics'>Contents</a></li>
<li><a href="http://xowa.org/home/wiki/Help/Media.html" title='Read what others have written about XOWA'>Media</a></li>
<li><a href="http://xowa.org/home/wiki/Help/Feedback.html" title='Questions? Comments? Leave feedback for XOWA'>Feedback</a></li>
</ul>
</div>
</div>
<div class="portal" id='xowa-portal-blog'>
<h3>Blog</h3>
<div class="body">
<ul>
<li><a href="http://xowa.org/home/wiki/Blog.html" title='Follow XOWA''s development process'>Current</a></li>
</ul>
</div>
</div>
<div class="portal" id='xowa-portal-links'>
<h3>Links</h3>
<div class="body">
<ul>
<li><a href="http://dumps.wikimedia.org/backup-index.html" title="Get wiki datababase dumps directly from Wikimedia">Wikimedia dumps</a></li>
<li><a href="https://archive.org/search.php?query=xowa" title="Search archive.org for XOWA files">XOWA @ archive.org</a></li>
<li><a href="http://en.wikipedia.org" title="Visit Wikipedia (and compare to XOWA!)">English Wikipedia</a></li>
</ul>
</div>
</div>
<div class="portal" id='xowa-portal-donate'>
<h3>Donate</h3>
<div class="body">
<ul>
<li><a href="https://archive.org/donate/index.php" title="Support archive.org!">archive.org</a></li><!-- listed first due to recent fire damages: http://blog.archive.org/2013/11/06/scanning-center-fire-please-help-rebuild/ -->
<li><a href="https://donate.wikimedia.org/wiki/Special:FundraiserRedirector" title="Support Wikipedia!">Wikipedia</a></li>
<!-- <li><a href="" title="Support XOWA! (but only after you've supported archive.org and Wikipedia)">XOWA</a></li> -->
</ul>
</div>
</div>
</div>
</body>
</html>

View File

@ -58,35 +58,152 @@
</div>
<ul>
<li class="toclevel-1 tocsection-1">
<a href="#Release:_v3.7.1.2_.282016-07-03_23:40_Sun.29"><span class="tocnumber">1</span> <span class="toctext">Release: v3.7.1.2 (2016-07-03 23:40 Sun)</span></a>
<a href="#Release:_v3.7.2.1_.282016-07-10_21:00_Sun.29"><span class="tocnumber">1</span> <span class="toctext">Release: v3.7.2.1 (2016-07-10 21:00 Sun)</span></a>
<ul>
<li class="toclevel-2 tocsection-2">
<a href="#.28PC_.26_Android.29_Fix_broken_search_for_multiple_words_in_2016-05_wikis_and_earlier"><span class="tocnumber">1.1</span> <span class="toctext">(PC &amp; Android) Fix broken search for multiple words in 2016-05 wikis and earlier</span></a>
<a href="#.28Wiki.29_Publish_2016-07_Haitian_Wikipedia"><span class="tocnumber">1.1</span> <span class="toctext">(Wiki) Publish 2016-07 Haitian Wikipedia</span></a>
</li>
<li class="toclevel-2 tocsection-3">
<a href="#.28PC.29_Fix_2016-07_English_Wikipedia_import_failure"><span class="tocnumber">1.2</span> <span class="toctext">(PC) Fix 2016-07 English Wikipedia import failure</span></a>
</li>
<li class="toclevel-2 tocsection-4">
<a href="#.28Server.29_Fix_images_not_showing_for_Wikitext_databases"><span class="tocnumber">1.3</span> <span class="toctext">(Server) Fix images not showing for Wikitext databases</span></a>
</li>
<li class="toclevel-2 tocsection-5">
<a href="#.28PC.29_Add_Table_of_Contents_support_for_HTML_databases_on_the_PC"><span class="tocnumber">1.4</span> <span class="toctext">(PC) Add Table of Contents support for HTML databases on the PC</span></a>
</li>
<li class="toclevel-2 tocsection-6">
<a href="#.28PC.29_Include_mwad_.28MediaWiki_API_dump.29_for_creating_XML_dumps_for_Wikia_and_other_wikis_.7Bcontributed_by_Mattze96.7D"><span class="tocnumber">1.5</span> <span class="toctext">(PC) Include mwad (MediaWiki API dump) for creating XML dumps for Wikia and other wikis {contributed by Mattze96}</span></a>
</li>
<li class="toclevel-2 tocsection-7">
<a href="#.28PC.29_Fix_minor_Wikibase_issues.2C_including_wikibase-item"><span class="tocnumber">1.6</span> <span class="toctext">(PC) Fix minor Wikibase issues, including wikibase-item</span></a>
</li>
<li class="toclevel-2 tocsection-8">
<a href="#.28PC.29_Target_Java_1.7.2C_not_Java_1.8"><span class="tocnumber">1.7</span> <span class="toctext">(PC) Target Java 1.7, not Java 1.8</span></a>
</li>
<li class="toclevel-2 tocsection-9">
<a href="#Next_release:_v3.7.3"><span class="tocnumber">1.8</span> <span class="toctext">Next release: v3.7.3</span></a>
</li>
</ul>
</li>
<li class="toclevel-1 tocsection-3">
<a href="#Release:_v3.7.1.1_.282016-07-03_18:00_Sun.29"><span class="tocnumber">2</span> <span class="toctext">Release: v3.7.1.1 (2016-07-03 18:00 Sun)</span></a>
<li class="toclevel-1 tocsection-10">
<a href="#Release:_v3.7.1.2_.282016-07-03_23:40_Sun.29"><span class="tocnumber">2</span> <span class="toctext">Release: v3.7.1.2 (2016-07-03 23:40 Sun)</span></a>
<ul>
<li class="toclevel-2 tocsection-4">
<a href="#.28Wiki.29_2016-06_German_Wiktionary.2C_Wikisource.2C_Wikivoyage.2C_Wikiquote.2C_Wikibooks.2C_Wikiversity.2C_and_Wikinews"><span class="tocnumber">2.1</span> <span class="toctext">(Wiki) 2016-06 German Wiktionary, Wikisource, Wikivoyage, Wikiquote, Wikibooks, Wikiversity, and Wikinews</span></a>
<li class="toclevel-2 tocsection-11">
<a href="#.28PC_.26_Android.29_Fix_broken_search_for_multiple_words_in_2016-05_wikis_and_earlier"><span class="tocnumber">2.1</span> <span class="toctext">(PC &amp; Android) Fix broken search for multiple words in 2016-05 wikis and earlier</span></a>
</li>
<li class="toclevel-2 tocsection-5">
<a href="#.28PC.29_Support_Gallery"><span class="tocnumber">2.2</span> <span class="toctext">(PC) Support Gallery</span></a>
</ul>
</li>
<li class="toclevel-1 tocsection-12">
<a href="#Release:_v3.7.1.1_.282016-07-03_18:00_Sun.29"><span class="tocnumber">3</span> <span class="toctext">Release: v3.7.1.1 (2016-07-03 18:00 Sun)</span></a>
<ul>
<li class="toclevel-2 tocsection-13">
<a href="#.28Wiki.29_2016-06_German_Wiktionary.2C_Wikisource.2C_Wikivoyage.2C_Wikiquote.2C_Wikibooks.2C_Wikiversity.2C_and_Wikinews"><span class="tocnumber">3.1</span> <span class="toctext">(Wiki) 2016-06 German Wiktionary, Wikisource, Wikivoyage, Wikiquote, Wikibooks, Wikiversity, and Wikinews</span></a>
</li>
<li class="toclevel-2 tocsection-6">
<a href="#.28PC_.26_Android.29_More_minor_fixes_for_Download_Central_including_connection_disruption_and_WAKE_LOCK_fixes"><span class="tocnumber">2.3</span> <span class="toctext">(PC &amp; Android) More minor fixes for Download Central including connection disruption and WAKE_LOCK fixes</span></a>
<li class="toclevel-2 tocsection-14">
<a href="#.28PC.29_Support_Gallery"><span class="tocnumber">3.2</span> <span class="toctext">(PC) Support Gallery</span></a>
</li>
<li class="toclevel-2 tocsection-7">
<a href="#.28Android.29_Multiple_fixes_for_severe_crashes"><span class="tocnumber">2.4</span> <span class="toctext">(Android) Multiple fixes for severe crashes</span></a>
<li class="toclevel-2 tocsection-15">
<a href="#.28PC_.26_Android.29_More_minor_fixes_for_Download_Central_including_connection_disruption_and_WAKE_LOCK_fixes"><span class="tocnumber">3.3</span> <span class="toctext">(PC &amp; Android) More minor fixes for Download Central including connection disruption and WAKE_LOCK fixes</span></a>
</li>
<li class="toclevel-2 tocsection-8">
<a href="#Next_release:_v3.7.2"><span class="tocnumber">2.5</span> <span class="toctext">Next release: v3.7.2</span></a>
<li class="toclevel-2 tocsection-16">
<a href="#.28Android.29_Multiple_fixes_for_severe_crashes"><span class="tocnumber">3.4</span> <span class="toctext">(Android) Multiple fixes for severe crashes</span></a>
</li>
<li class="toclevel-2 tocsection-17">
<a href="#Next_release:_v3.7.2"><span class="tocnumber">3.5</span> <span class="toctext">Next release: v3.7.2</span></a>
</li>
</ul>
</li>
</ul>
</div>
<h2>
<span class="mw-headline" id="Release:_v3.7.2.1_.282016-07-10_21:00_Sun.29">Release: v3.7.2.1 (2016-07-10 21:00 Sun)</span>
</h2>
<p>
The PC version is a major release. It fixes a breaking change for importing 2016-07 wikis. It also adds Table of Contents for HTML databases, fixes an HTTP server bug, and includes mwad -- a new utility for creating XML dumps
</p>
<p>
The Android version is a minor release. It handles the new 2016-07 wikis and the Table of Contents support.
</p>
<h3>
<span class="mw-headline" id=".28Wiki.29_Publish_2016-07_Haitian_Wikipedia">(Wiki) Publish 2016-07 Haitian Wikipedia</span>
</h3>
<p>
I fell behind on French wikis this week while waiting for the new month's dumps. French Wikipedia is uploading now, and the rest will be generated and uploaded during the week.
</p>
<p>
In the meantime, I added Haitian Wikipedia as per the request at <a href="https://github.com/gnosygnu/xowa/issues/67" rel="nofollow" class="external free">https://github.com/gnosygnu/xowa/issues/67</a>
</p>
<h3>
<span class="mw-headline" id=".28PC.29_Fix_2016-07_English_Wikipedia_import_failure">(PC) Fix 2016-07 English Wikipedia import failure</span>
</h3>
<p>
2016-07 English Wikipedia failed to import. This was due to the categorylinks.sql file and some specific SQL parsing in XOWA.
</p>
<p>
v3.7.2.1 resolves this issue, and English Wikipedia now imports correctly
</p>
<h3>
<span class="mw-headline" id=".28Server.29_Fix_images_not_showing_for_Wikitext_databases">(Server) Fix images not showing for Wikitext databases</span>
</h3>
<p>
This was kindly reported by ve3lst in <a href="https://github.com/gnosygnu/xowa/issues/68" rel="nofollow" class="external free">https://github.com/gnosygnu/xowa/issues/68</a> I broke images for Wikitext databases back in v3.6.4.3. Note that images do show for HTML databases (databases from Download Central).
</p>
<p>
v3.7.2.1 resolves this issue. Viewing a page on the HTTP Server will now shows images.
</p>
<h3>
<span class="mw-headline" id=".28PC.29_Add_Table_of_Contents_support_for_HTML_databases_on_the_PC">(PC) Add Table of Contents support for HTML databases on the PC</span>
</h3>
<p>
v3.7.2.1 now generates Table of Contents for HTML databases on the PC. Note that this only affects new wikis such as Haitian and French. The 2016-07 version of English Wikipedia will have them when I release it next week. I'll redo German Wikipedia later to include this as well.
</p>
<h3>
<span class="mw-headline" id=".28PC.29_Include_mwad_.28MediaWiki_API_dump.29_for_creating_XML_dumps_for_Wikia_and_other_wikis_.7Bcontributed_by_Mattze96.7D">(PC) Include mwad (MediaWiki API dump) for creating XML dumps for Wikia and other wikis {contributed by Mattze96}</span>
</h3>
<p>
For those who are unaware, Mattze96 was the amazing developer who contributed the original HTTP Server code. This time, Mattze96 contributed mwad: the MediaWiki API dump tool. This tool allows creating XML dumps for Wikia and other wikis (<a href="https://wiki.archlinux.org/" rel="nofollow" class="external free">https://wiki.archlinux.org/</a>).
</p>
<p>
If you use XOWA for Wikia wikis, or other non-Wikimedia wikis, you definitely want to try it out. For more info, see <a href="http://xowa.org/home/wiki/App/Import/mwad.html" id="xolnki_10" title="App/Import/mwad">App/Import/mwad</a> as well as <a href="https://github.com/Mattze96/mwad" rel="nofollow" class="external free">https://github.com/Mattze96/mwad</a> and <a href="https://github.com/gnosygnu/xowa/issues/66" rel="nofollow" class="external free">https://github.com/gnosygnu/xowa/issues/66</a>
</p>
<h3>
<span class="mw-headline" id=".28PC.29_Fix_minor_Wikibase_issues.2C_including_wikibase-item">(PC) Fix minor Wikibase issues, including wikibase-item</span>
</h3>
<p>
There are two issues here:
</p>
<ul>
<li>
<b>Scribunto failure due to wikibase-item</b>: On a low level, XOWA was using the term "wikibase-entityid". Instead, it should have been "wikibase-item". This was causing an error in Scribunto that generated script errors on many ht.w pages
</li>
<li>
<b>species.wikimedia.org links were not showing in the "In Other Languages" section</b>: This is a fairly minor issue. XOWA shows "In other languages" at the bottom of the page. Due to a change in 3.6.4.1, links to species.wikimedia.org were not showing
</li>
</ul>
<h3>
<span class="mw-headline" id=".28PC.29_Target_Java_1.7.2C_not_Java_1.8">(PC) Target Java 1.7, not Java 1.8</span>
</h3>
<p>
I noticed that I accidentally bumped the Java version requirement from 1.7 to 1.8 back in 2016-03. v3.7.2.1 now requires Java 1.7 only
</p>
<h3>
<span class="mw-headline" id="Next_release:_v3.7.3">Next release: v3.7.3</span>
</h3>
<ul>
<li>
<b>Table of contents minutiae</b>: There are a few minor bugs for TOC. In addition, it still needs full integration with Wikivoyage. Both of these will be part of the next release
</li>
<li>
<b>mwad support</b>: I did more work on the TOC, but wasn't able to integrate it for this release. It should be part of the next one.
</li>
<li>
<b>Wikis</b>: I'm uploading French this week and then will shift to English Wikipedia for next week week.
</li>
<li>
<b>Redlinks for HTTP Server</b>: This slipped from this week's schedule. I'm going to keep it on the schedule for next week, but it may go another week.
</li>
</ul>
<h2>
<span class="mw-headline" id="Release:_v3.7.1.2_.282016-07-03_23:40_Sun.29">Release: v3.7.1.2 (2016-07-03 23:40 Sun)</span>
</h2>
@ -118,7 +235,7 @@
<span class="mw-headline" id=".28Wiki.29_2016-06_German_Wiktionary.2C_Wikisource.2C_Wikivoyage.2C_Wikiquote.2C_Wikibooks.2C_Wikiversity.2C_and_Wikinews">(Wiki) 2016-06 German Wiktionary, Wikisource, Wikivoyage, Wikiquote, Wikibooks, Wikiversity, and Wikinews</span>
</h3>
<p>
These wikis are available at <a href="http://xowa.org/home/wiki/Special:XowaDownloadCentral.html" id="xolnki_10" title="Special:XowaDownloadCentral" class="xowa-visited">Download Central</a>.
These wikis are available at <a href="http://xowa.org/home/wiki/Special:XowaDownloadCentral.html" id="xolnki_11" title="Special:XowaDownloadCentral" class="xowa-visited">Download Central</a>.
</p>
<h3>
<span class="mw-headline" id=".28PC.29_Support_Gallery">(PC) Support Gallery</span>
@ -150,7 +267,7 @@
There were a number of fixes for crashes in uncommon scenarios. Most of these involved switching SD cards, or deleting wikis outside XOWA. The crash was bad enough such that XOWA would not work unless the Storage files were cleared (or XOWA was reinstalled).
</p>
<p>
These are fixed in this version. For more info, see the <a href="http://xowa.org/home/wiki/Change_log.html" id="xolnki_11" title="Change log">Change log</a>
These are fixed in this version. For more info, see the <a href="http://xowa.org/home/wiki/Change_log.html" id="xolnki_12" title="Change log">Change log</a>
</p>
<h3>
<span class="mw-headline" id="Next_release:_v3.7.2">Next release: v3.7.2</span>

View File

@ -58,35 +58,152 @@
</div>
<ul>
<li class="toclevel-1 tocsection-1">
<a href="#Release:_v3.7.1.2_.282016-07-03_23:40_Sun.29"><span class="tocnumber">1</span> <span class="toctext">Release: v3.7.1.2 (2016-07-03 23:40 Sun)</span></a>
<a href="#Release:_v3.7.2.1_.282016-07-10_21:00_Sun.29"><span class="tocnumber">1</span> <span class="toctext">Release: v3.7.2.1 (2016-07-10 21:00 Sun)</span></a>
<ul>
<li class="toclevel-2 tocsection-2">
<a href="#.28PC_.26_Android.29_Fix_broken_search_for_multiple_words_in_2016-05_wikis_and_earlier"><span class="tocnumber">1.1</span> <span class="toctext">(PC &amp; Android) Fix broken search for multiple words in 2016-05 wikis and earlier</span></a>
<a href="#.28Wiki.29_Publish_2016-07_Haitian_Wikipedia"><span class="tocnumber">1.1</span> <span class="toctext">(Wiki) Publish 2016-07 Haitian Wikipedia</span></a>
</li>
<li class="toclevel-2 tocsection-3">
<a href="#.28PC.29_Fix_2016-07_English_Wikipedia_import_failure"><span class="tocnumber">1.2</span> <span class="toctext">(PC) Fix 2016-07 English Wikipedia import failure</span></a>
</li>
<li class="toclevel-2 tocsection-4">
<a href="#.28Server.29_Fix_images_not_showing_for_Wikitext_databases"><span class="tocnumber">1.3</span> <span class="toctext">(Server) Fix images not showing for Wikitext databases</span></a>
</li>
<li class="toclevel-2 tocsection-5">
<a href="#.28PC.29_Add_Table_of_Contents_support_for_HTML_databases_on_the_PC"><span class="tocnumber">1.4</span> <span class="toctext">(PC) Add Table of Contents support for HTML databases on the PC</span></a>
</li>
<li class="toclevel-2 tocsection-6">
<a href="#.28PC.29_Include_mwad_.28MediaWiki_API_dump.29_for_creating_XML_dumps_for_Wikia_and_other_wikis_.7Bcontributed_by_Mattze96.7D"><span class="tocnumber">1.5</span> <span class="toctext">(PC) Include mwad (MediaWiki API dump) for creating XML dumps for Wikia and other wikis {contributed by Mattze96}</span></a>
</li>
<li class="toclevel-2 tocsection-7">
<a href="#.28PC.29_Fix_minor_Wikibase_issues.2C_including_wikibase-item"><span class="tocnumber">1.6</span> <span class="toctext">(PC) Fix minor Wikibase issues, including wikibase-item</span></a>
</li>
<li class="toclevel-2 tocsection-8">
<a href="#.28PC.29_Target_Java_1.7.2C_not_Java_1.8"><span class="tocnumber">1.7</span> <span class="toctext">(PC) Target Java 1.7, not Java 1.8</span></a>
</li>
<li class="toclevel-2 tocsection-9">
<a href="#Next_release:_v3.7.3"><span class="tocnumber">1.8</span> <span class="toctext">Next release: v3.7.3</span></a>
</li>
</ul>
</li>
<li class="toclevel-1 tocsection-3">
<a href="#Release:_v3.7.1.1_.282016-07-03_18:00_Sun.29"><span class="tocnumber">2</span> <span class="toctext">Release: v3.7.1.1 (2016-07-03 18:00 Sun)</span></a>
<li class="toclevel-1 tocsection-10">
<a href="#Release:_v3.7.1.2_.282016-07-03_23:40_Sun.29"><span class="tocnumber">2</span> <span class="toctext">Release: v3.7.1.2 (2016-07-03 23:40 Sun)</span></a>
<ul>
<li class="toclevel-2 tocsection-4">
<a href="#.28Wiki.29_2016-06_German_Wiktionary.2C_Wikisource.2C_Wikivoyage.2C_Wikiquote.2C_Wikibooks.2C_Wikiversity.2C_and_Wikinews"><span class="tocnumber">2.1</span> <span class="toctext">(Wiki) 2016-06 German Wiktionary, Wikisource, Wikivoyage, Wikiquote, Wikibooks, Wikiversity, and Wikinews</span></a>
<li class="toclevel-2 tocsection-11">
<a href="#.28PC_.26_Android.29_Fix_broken_search_for_multiple_words_in_2016-05_wikis_and_earlier"><span class="tocnumber">2.1</span> <span class="toctext">(PC &amp; Android) Fix broken search for multiple words in 2016-05 wikis and earlier</span></a>
</li>
<li class="toclevel-2 tocsection-5">
<a href="#.28PC.29_Support_Gallery"><span class="tocnumber">2.2</span> <span class="toctext">(PC) Support Gallery</span></a>
</ul>
</li>
<li class="toclevel-1 tocsection-12">
<a href="#Release:_v3.7.1.1_.282016-07-03_18:00_Sun.29"><span class="tocnumber">3</span> <span class="toctext">Release: v3.7.1.1 (2016-07-03 18:00 Sun)</span></a>
<ul>
<li class="toclevel-2 tocsection-13">
<a href="#.28Wiki.29_2016-06_German_Wiktionary.2C_Wikisource.2C_Wikivoyage.2C_Wikiquote.2C_Wikibooks.2C_Wikiversity.2C_and_Wikinews"><span class="tocnumber">3.1</span> <span class="toctext">(Wiki) 2016-06 German Wiktionary, Wikisource, Wikivoyage, Wikiquote, Wikibooks, Wikiversity, and Wikinews</span></a>
</li>
<li class="toclevel-2 tocsection-6">
<a href="#.28PC_.26_Android.29_More_minor_fixes_for_Download_Central_including_connection_disruption_and_WAKE_LOCK_fixes"><span class="tocnumber">2.3</span> <span class="toctext">(PC &amp; Android) More minor fixes for Download Central including connection disruption and WAKE_LOCK fixes</span></a>
<li class="toclevel-2 tocsection-14">
<a href="#.28PC.29_Support_Gallery"><span class="tocnumber">3.2</span> <span class="toctext">(PC) Support Gallery</span></a>
</li>
<li class="toclevel-2 tocsection-7">
<a href="#.28Android.29_Multiple_fixes_for_severe_crashes"><span class="tocnumber">2.4</span> <span class="toctext">(Android) Multiple fixes for severe crashes</span></a>
<li class="toclevel-2 tocsection-15">
<a href="#.28PC_.26_Android.29_More_minor_fixes_for_Download_Central_including_connection_disruption_and_WAKE_LOCK_fixes"><span class="tocnumber">3.3</span> <span class="toctext">(PC &amp; Android) More minor fixes for Download Central including connection disruption and WAKE_LOCK fixes</span></a>
</li>
<li class="toclevel-2 tocsection-8">
<a href="#Next_release:_v3.7.2"><span class="tocnumber">2.5</span> <span class="toctext">Next release: v3.7.2</span></a>
<li class="toclevel-2 tocsection-16">
<a href="#.28Android.29_Multiple_fixes_for_severe_crashes"><span class="tocnumber">3.4</span> <span class="toctext">(Android) Multiple fixes for severe crashes</span></a>
</li>
<li class="toclevel-2 tocsection-17">
<a href="#Next_release:_v3.7.2"><span class="tocnumber">3.5</span> <span class="toctext">Next release: v3.7.2</span></a>
</li>
</ul>
</li>
</ul>
</div>
<h2>
<span class="mw-headline" id="Release:_v3.7.2.1_.282016-07-10_21:00_Sun.29">Release: v3.7.2.1 (2016-07-10 21:00 Sun)</span>
</h2>
<p>
The PC version is a major release. It fixes a breaking change for importing 2016-07 wikis. It also adds Table of Contents for HTML databases, fixes an HTTP server bug, and includes mwad -- a new utility for creating XML dumps
</p>
<p>
The Android version is a minor release. It handles the new 2016-07 wikis and the Table of Contents support.
</p>
<h3>
<span class="mw-headline" id=".28Wiki.29_Publish_2016-07_Haitian_Wikipedia">(Wiki) Publish 2016-07 Haitian Wikipedia</span>
</h3>
<p>
I fell behind on French wikis this week while waiting for the new month's dumps. French Wikipedia is uploading now, and the rest will be generated and uploaded during the week.
</p>
<p>
In the meantime, I added Haitian Wikipedia as per the request at <a href="https://github.com/gnosygnu/xowa/issues/67" rel="nofollow" class="external free">https://github.com/gnosygnu/xowa/issues/67</a>
</p>
<h3>
<span class="mw-headline" id=".28PC.29_Fix_2016-07_English_Wikipedia_import_failure">(PC) Fix 2016-07 English Wikipedia import failure</span>
</h3>
<p>
2016-07 English Wikipedia failed to import. This was due to the categorylinks.sql file and some specific SQL parsing in XOWA.
</p>
<p>
v3.7.2.1 resolves this issue, and English Wikipedia now imports correctly
</p>
<h3>
<span class="mw-headline" id=".28Server.29_Fix_images_not_showing_for_Wikitext_databases">(Server) Fix images not showing for Wikitext databases</span>
</h3>
<p>
This was kindly reported by ve3lst in <a href="https://github.com/gnosygnu/xowa/issues/68" rel="nofollow" class="external free">https://github.com/gnosygnu/xowa/issues/68</a> I broke images for Wikitext databases back in v3.6.4.3. Note that images do show for HTML databases (databases from Download Central).
</p>
<p>
v3.7.2.1 resolves this issue. Viewing a page on the HTTP Server will now shows images.
</p>
<h3>
<span class="mw-headline" id=".28PC.29_Add_Table_of_Contents_support_for_HTML_databases_on_the_PC">(PC) Add Table of Contents support for HTML databases on the PC</span>
</h3>
<p>
v3.7.2.1 now generates Table of Contents for HTML databases on the PC. Note that this only affects new wikis such as Haitian and French. The 2016-07 version of English Wikipedia will have them when I release it next week. I'll redo German Wikipedia later to include this as well.
</p>
<h3>
<span class="mw-headline" id=".28PC.29_Include_mwad_.28MediaWiki_API_dump.29_for_creating_XML_dumps_for_Wikia_and_other_wikis_.7Bcontributed_by_Mattze96.7D">(PC) Include mwad (MediaWiki API dump) for creating XML dumps for Wikia and other wikis {contributed by Mattze96}</span>
</h3>
<p>
For those who are unaware, Mattze96 was the amazing developer who contributed the original HTTP Server code. This time, Mattze96 contributed mwad: the MediaWiki API dump tool. This tool allows creating XML dumps for Wikia and other wikis (<a href="https://wiki.archlinux.org/" rel="nofollow" class="external free">https://wiki.archlinux.org/</a>).
</p>
<p>
If you use XOWA for Wikia wikis, or other non-Wikimedia wikis, you definitely want to try it out. For more info, see <a href="http://xowa.org/home/wiki/App/Import/mwad.html" id="xolnki_10" title="App/Import/mwad">App/Import/mwad</a> as well as <a href="https://github.com/Mattze96/mwad" rel="nofollow" class="external free">https://github.com/Mattze96/mwad</a> and <a href="https://github.com/gnosygnu/xowa/issues/66" rel="nofollow" class="external free">https://github.com/gnosygnu/xowa/issues/66</a>
</p>
<h3>
<span class="mw-headline" id=".28PC.29_Fix_minor_Wikibase_issues.2C_including_wikibase-item">(PC) Fix minor Wikibase issues, including wikibase-item</span>
</h3>
<p>
There are two issues here:
</p>
<ul>
<li>
<b>Scribunto failure due to wikibase-item</b>: On a low level, XOWA was using the term "wikibase-entityid". Instead, it should have been "wikibase-item". This was causing an error in Scribunto that generated script errors on many ht.w pages
</li>
<li>
<b>species.wikimedia.org links were not showing in the "In Other Languages" section</b>: This is a fairly minor issue. XOWA shows "In other languages" at the bottom of the page. Due to a change in 3.6.4.1, links to species.wikimedia.org were not showing
</li>
</ul>
<h3>
<span class="mw-headline" id=".28PC.29_Target_Java_1.7.2C_not_Java_1.8">(PC) Target Java 1.7, not Java 1.8</span>
</h3>
<p>
I noticed that I accidentally bumped the Java version requirement from 1.7 to 1.8 back in 2016-03. v3.7.2.1 now requires Java 1.7 only
</p>
<h3>
<span class="mw-headline" id="Next_release:_v3.7.3">Next release: v3.7.3</span>
</h3>
<ul>
<li>
<b>Table of contents minutiae</b>: There are a few minor bugs for TOC. In addition, it still needs full integration with Wikivoyage. Both of these will be part of the next release
</li>
<li>
<b>mwad support</b>: I did more work on the TOC, but wasn't able to integrate it for this release. It should be part of the next one.
</li>
<li>
<b>Wikis</b>: I'm uploading French this week and then will shift to English Wikipedia for next week week.
</li>
<li>
<b>Redlinks for HTTP Server</b>: This slipped from this week's schedule. I'm going to keep it on the schedule for next week, but it may go another week.
</li>
</ul>
<h2>
<span class="mw-headline" id="Release:_v3.7.1.2_.282016-07-03_23:40_Sun.29">Release: v3.7.1.2 (2016-07-03 23:40 Sun)</span>
</h2>
@ -118,7 +235,7 @@
<span class="mw-headline" id=".28Wiki.29_2016-06_German_Wiktionary.2C_Wikisource.2C_Wikivoyage.2C_Wikiquote.2C_Wikibooks.2C_Wikiversity.2C_and_Wikinews">(Wiki) 2016-06 German Wiktionary, Wikisource, Wikivoyage, Wikiquote, Wikibooks, Wikiversity, and Wikinews</span>
</h3>
<p>
These wikis are available at <a href="http://xowa.org/home/wiki/Special:XowaDownloadCentral.html" id="xolnki_10" title="Special:XowaDownloadCentral" class="xowa-visited">Download Central</a>.
These wikis are available at <a href="http://xowa.org/home/wiki/Special:XowaDownloadCentral.html" id="xolnki_11" title="Special:XowaDownloadCentral" class="xowa-visited">Download Central</a>.
</p>
<h3>
<span class="mw-headline" id=".28PC.29_Support_Gallery">(PC) Support Gallery</span>
@ -150,7 +267,7 @@
There were a number of fixes for crashes in uncommon scenarios. Most of these involved switching SD cards, or deleting wikis outside XOWA. The crash was bad enough such that XOWA would not work unless the Storage files were cleared (or XOWA was reinstalled).
</p>
<p>
These are fixed in this version. For more info, see the <a href="http://xowa.org/home/wiki/Change_log.html" id="xolnki_11" title="Change log">Change log</a>
These are fixed in this version. For more info, see the <a href="http://xowa.org/home/wiki/Change_log.html" id="xolnki_12" title="Change log">Change log</a>
</p>
<h3>
<span class="mw-headline" id="Next_release:_v3.7.2">Next release: v3.7.2</span>

View File

@ -36,151 +36,171 @@
</ul>
</li>
<li class="toclevel-1 tocsection-4">
<a href="#v3.7.1.2_.282017-07-03.29"><span class="tocnumber">2</span> <span class="toctext">v3.7.1.2 (2017-07-03)</span></a>
</li>
<li class="toclevel-1 tocsection-5">
<a href="#v3.7.1.1_.282017-07-03.29"><span class="tocnumber">3</span> <span class="toctext">v3.7.1.1 (2017-07-03)</span></a>
<a href="#v3.7.2.1_.282017-07-10.29"><span class="tocnumber">2</span> <span class="toctext">v3.7.2.1 (2017-07-10)</span></a>
<ul>
<li class="toclevel-2 tocsection-5">
<a href="#Wiki"><span class="tocnumber">2.1</span> <span class="toctext">Wiki</span></a>
</li>
<li class="toclevel-2 tocsection-6">
<a href="#Wiki"><span class="tocnumber">3.1</span> <span class="toctext">Wiki</span></a>
<a href="#PC"><span class="tocnumber">2.2</span> <span class="toctext">PC</span></a>
</li>
<li class="toclevel-2 tocsection-7">
<a href="#PC"><span class="tocnumber">3.2</span> <span class="toctext">PC</span></a>
<a href="#Server"><span class="tocnumber">2.3</span> <span class="toctext">Server</span></a>
</li>
<li class="toclevel-2 tocsection-8">
<a href="#Android"><span class="tocnumber">3.3</span> <span class="toctext">Android</span></a>
<a href="#Android"><span class="tocnumber">2.4</span> <span class="toctext">Android</span></a>
</li>
<li class="toclevel-2 tocsection-9">
<a href="#Dev"><span class="tocnumber">3.4</span> <span class="toctext">Dev</span></a>
<a href="#Dev"><span class="tocnumber">2.5</span> <span class="toctext">Dev</span></a>
</li>
</ul>
</li>
<li class="toclevel-1 tocsection-10">
<a href="#v3.6.4.2_.282016-06-27.29"><span class="tocnumber">4</span> <span class="toctext">v3.6.4.2 (2016-06-27)</span></a>
<a href="#v3.7.1.2_.282017-07-03.29"><span class="tocnumber">3</span> <span class="toctext">v3.7.1.2 (2017-07-03)</span></a>
</li>
<li class="toclevel-1 tocsection-11">
<a href="#v3.7.1.1_.282017-07-03.29"><span class="tocnumber">4</span> <span class="toctext">v3.7.1.1 (2017-07-03)</span></a>
<ul>
<li class="toclevel-2 tocsection-11">
<a href="#PC_2"><span class="tocnumber">4.1</span> <span class="toctext">PC</span></a>
<li class="toclevel-2 tocsection-12">
<a href="#Wiki_2"><span class="tocnumber">4.1</span> <span class="toctext">Wiki</span></a>
</li>
<li class="toclevel-2 tocsection-13">
<a href="#PC_2"><span class="tocnumber">4.2</span> <span class="toctext">PC</span></a>
</li>
<li class="toclevel-2 tocsection-14">
<a href="#Android_2"><span class="tocnumber">4.3</span> <span class="toctext">Android</span></a>
</li>
<li class="toclevel-2 tocsection-15">
<a href="#Dev_2"><span class="tocnumber">4.4</span> <span class="toctext">Dev</span></a>
</li>
</ul>
</li>
<li class="toclevel-1 tocsection-12">
<a href="#v3.6.4.1_.282016-06-25.29"><span class="tocnumber">5</span> <span class="toctext">v3.6.4.1 (2016-06-25)</span></a>
<li class="toclevel-1 tocsection-16">
<a href="#v3.6.4.2_.282016-06-27.29"><span class="tocnumber">5</span> <span class="toctext">v3.6.4.2 (2016-06-27)</span></a>
<ul>
<li class="toclevel-2 tocsection-13">
<a href="#Wiki_2"><span class="tocnumber">5.1</span> <span class="toctext">Wiki</span></a>
</li>
<li class="toclevel-2 tocsection-14">
<a href="#PC_3"><span class="tocnumber">5.2</span> <span class="toctext">PC</span></a>
</li>
<li class="toclevel-2 tocsection-15">
<a href="#Server"><span class="tocnumber">5.3</span> <span class="toctext">Server</span></a>
</li>
<li class="toclevel-2 tocsection-16">
<a href="#Android_2"><span class="tocnumber">5.4</span> <span class="toctext">Android</span></a>
</li>
<li class="toclevel-2 tocsection-17">
<a href="#Dev_2"><span class="tocnumber">5.5</span> <span class="toctext">Dev</span></a>
<a href="#PC_3"><span class="tocnumber">5.1</span> <span class="toctext">PC</span></a>
</li>
</ul>
</li>
<li class="toclevel-1 tocsection-18">
<a href="#v3.6.3.4_.282016-06-22.29"><span class="tocnumber">6</span> <span class="toctext">v3.6.3.4 (2016-06-22)</span></a>
<a href="#v3.6.4.1_.282016-06-25.29"><span class="tocnumber">6</span> <span class="toctext">v3.6.4.1 (2016-06-25)</span></a>
<ul>
<li class="toclevel-2 tocsection-19">
<a href="#Server_2"><span class="tocnumber">6.1</span> <span class="toctext">Server</span></a>
<a href="#Wiki_3"><span class="tocnumber">6.1</span> <span class="toctext">Wiki</span></a>
</li>
<li class="toclevel-2 tocsection-20">
<a href="#PC_4"><span class="tocnumber">6.2</span> <span class="toctext">PC</span></a>
</li>
</ul>
</li>
<li class="toclevel-1 tocsection-20">
<a href="#v3.6.3.3_.282016-06-21.29"><span class="tocnumber">7</span> <span class="toctext">v3.6.3.3 (2016-06-21)</span></a>
<ul>
<li class="toclevel-2 tocsection-21">
<a href="#PC_4"><span class="tocnumber">7.1</span> <span class="toctext">PC</span></a>
<a href="#Server_2"><span class="tocnumber">6.3</span> <span class="toctext">Server</span></a>
</li>
<li class="toclevel-2 tocsection-22">
<a href="#Android_3"><span class="tocnumber">6.4</span> <span class="toctext">Android</span></a>
</li>
</ul>
</li>
<li class="toclevel-1 tocsection-22">
<a href="#v3.6.3.2_.282016-06-20.29"><span class="tocnumber">8</span> <span class="toctext">v3.6.3.2 (2016-06-20)</span></a>
<ul>
<li class="toclevel-2 tocsection-23">
<a href="#PC_5"><span class="tocnumber">8.1</span> <span class="toctext">PC</span></a>
<a href="#Dev_3"><span class="tocnumber">6.5</span> <span class="toctext">Dev</span></a>
</li>
</ul>
</li>
<li class="toclevel-1 tocsection-24">
<a href="#v3.6.3.1_.282016-06-19.29"><span class="tocnumber">9</span> <span class="toctext">v3.6.3.1 (2016-06-19)</span></a>
<a href="#v3.6.3.4_.282016-06-22.29"><span class="tocnumber">7</span> <span class="toctext">v3.6.3.4 (2016-06-22)</span></a>
<ul>
<li class="toclevel-2 tocsection-25">
<a href="#Wiki_3"><span class="tocnumber">9.1</span> <span class="toctext">Wiki</span></a>
</li>
<li class="toclevel-2 tocsection-26">
<a href="#PC_6"><span class="tocnumber">9.2</span> <span class="toctext">PC</span></a>
<a href="#Server_3"><span class="tocnumber">7.1</span> <span class="toctext">Server</span></a>
</li>
</ul>
</li>
<li class="toclevel-1 tocsection-26">
<a href="#v3.6.3.3_.282016-06-21.29"><span class="tocnumber">8</span> <span class="toctext">v3.6.3.3 (2016-06-21)</span></a>
<ul>
<li class="toclevel-2 tocsection-27">
<a href="#Android_3"><span class="tocnumber">9.3</span> <span class="toctext">Android</span></a>
</li>
<li class="toclevel-2 tocsection-28">
<a href="#Server_3"><span class="tocnumber">9.4</span> <span class="toctext">Server</span></a>
<a href="#PC_5"><span class="tocnumber">8.1</span> <span class="toctext">PC</span></a>
</li>
</ul>
</li>
<li class="toclevel-1 tocsection-28">
<a href="#v3.6.3.2_.282016-06-20.29"><span class="tocnumber">9</span> <span class="toctext">v3.6.3.2 (2016-06-20)</span></a>
<ul>
<li class="toclevel-2 tocsection-29">
<a href="#Doc"><span class="tocnumber">9.5</span> <span class="toctext">Doc</span></a>
</li>
<li class="toclevel-2 tocsection-30">
<a href="#Dev_3"><span class="tocnumber">9.6</span> <span class="toctext">Dev</span></a>
<a href="#PC_6"><span class="tocnumber">9.1</span> <span class="toctext">PC</span></a>
</li>
</ul>
</li>
<li class="toclevel-1 tocsection-31">
<a href="#v3.5.1.1_.282016-05-01.29"><span class="tocnumber">10</span> <span class="toctext">v3.5.1.1 (2016-05-01)</span></a>
<li class="toclevel-1 tocsection-30">
<a href="#v3.6.3.1_.282016-06-19.29"><span class="tocnumber">10</span> <span class="toctext">v3.6.3.1 (2016-06-19)</span></a>
<ul>
<li class="toclevel-2 tocsection-31">
<a href="#Wiki_4"><span class="tocnumber">10.1</span> <span class="toctext">Wiki</span></a>
</li>
<li class="toclevel-2 tocsection-32">
<a href="#Windows_.2F_Linux_.2F_Mac_OS_X"><span class="tocnumber">10.1</span> <span class="toctext">Windows / Linux / Mac OS X</span></a>
<a href="#PC_7"><span class="tocnumber">10.2</span> <span class="toctext">PC</span></a>
</li>
<li class="toclevel-2 tocsection-33">
<a href="#Android_4"><span class="tocnumber">10.3</span> <span class="toctext">Android</span></a>
</li>
</ul>
</li>
<li class="toclevel-1 tocsection-33">
<a href="#v3.4.4.1_.282016-04-24.29"><span class="tocnumber">11</span> <span class="toctext">v3.4.4.1 (2016-04-24)</span></a>
<ul>
<li class="toclevel-2 tocsection-34">
<a href="#Windows_.2F_Linux_.2F_Mac_OS_X_2"><span class="tocnumber">11.1</span> <span class="toctext">Windows / Linux / Mac OS X</span></a>
<a href="#Server_4"><span class="tocnumber">10.4</span> <span class="toctext">Server</span></a>
</li>
<li class="toclevel-2 tocsection-35">
<a href="#Android_4"><span class="tocnumber">11.2</span> <span class="toctext">Android</span></a>
<a href="#Doc"><span class="tocnumber">10.5</span> <span class="toctext">Doc</span></a>
</li>
<li class="toclevel-2 tocsection-36">
<a href="#Dev_4"><span class="tocnumber">10.6</span> <span class="toctext">Dev</span></a>
</li>
</ul>
</li>
<li class="toclevel-1 tocsection-36">
<a href="#v3.4.3.1_.282016-04-17.29"><span class="tocnumber">12</span> <span class="toctext">v3.4.3.1 (2016-04-17)</span></a>
<li class="toclevel-1 tocsection-37">
<a href="#v3.5.1.1_.282016-05-01.29"><span class="tocnumber">11</span> <span class="toctext">v3.5.1.1 (2016-05-01)</span></a>
<ul>
<li class="toclevel-2 tocsection-37">
<a href="#Windows_.2F_Linux_.2F_Mac_OS_X_3"><span class="tocnumber">12.1</span> <span class="toctext">Windows / Linux / Mac OS X</span></a>
</li>
<li class="toclevel-2 tocsection-38">
<a href="#Android_5"><span class="tocnumber">12.2</span> <span class="toctext">Android</span></a>
<a href="#Windows_.2F_Linux_.2F_Mac_OS_X"><span class="tocnumber">11.1</span> <span class="toctext">Windows / Linux / Mac OS X</span></a>
</li>
</ul>
</li>
<li class="toclevel-1 tocsection-39">
<a href="#v3.4.2.1_.282016-04-10.29"><span class="tocnumber">13</span> <span class="toctext">v3.4.2.1 (2016-04-10)</span></a>
<a href="#v3.4.4.1_.282016-04-24.29"><span class="tocnumber">12</span> <span class="toctext">v3.4.4.1 (2016-04-24)</span></a>
<ul>
<li class="toclevel-2 tocsection-40">
<a href="#Windows_.2F_Linux_.2F_Mac_OS_X_4"><span class="tocnumber">13.1</span> <span class="toctext">Windows / Linux / Mac OS X</span></a>
<a href="#Windows_.2F_Linux_.2F_Mac_OS_X_2"><span class="tocnumber">12.1</span> <span class="toctext">Windows / Linux / Mac OS X</span></a>
</li>
<li class="toclevel-2 tocsection-41">
<a href="#Android_6"><span class="tocnumber">13.2</span> <span class="toctext">Android</span></a>
<a href="#Android_5"><span class="tocnumber">12.2</span> <span class="toctext">Android</span></a>
</li>
</ul>
</li>
<li class="toclevel-1 tocsection-42">
<a href="#v3.4.1.1_.282016-04-04.29"><span class="tocnumber">14</span> <span class="toctext">v3.4.1.1 (2016-04-04)</span></a>
<a href="#v3.4.3.1_.282016-04-17.29"><span class="tocnumber">13</span> <span class="toctext">v3.4.3.1 (2016-04-17)</span></a>
<ul>
<li class="toclevel-2 tocsection-43">
<a href="#Windows_.2F_Linux_.2F_Mac_OS_X_5"><span class="tocnumber">14.1</span> <span class="toctext">Windows / Linux / Mac OS X</span></a>
<a href="#Windows_.2F_Linux_.2F_Mac_OS_X_3"><span class="tocnumber">13.1</span> <span class="toctext">Windows / Linux / Mac OS X</span></a>
</li>
<li class="toclevel-2 tocsection-44">
<a href="#Android_6"><span class="tocnumber">13.2</span> <span class="toctext">Android</span></a>
</li>
</ul>
</li>
<li class="toclevel-1 tocsection-44">
<a href="#Archives"><span class="tocnumber">15</span> <span class="toctext">Archives</span></a>
<li class="toclevel-1 tocsection-45">
<a href="#v3.4.2.1_.282016-04-10.29"><span class="tocnumber">14</span> <span class="toctext">v3.4.2.1 (2016-04-10)</span></a>
<ul>
<li class="toclevel-2 tocsection-46">
<a href="#Windows_.2F_Linux_.2F_Mac_OS_X_4"><span class="tocnumber">14.1</span> <span class="toctext">Windows / Linux / Mac OS X</span></a>
</li>
<li class="toclevel-2 tocsection-47">
<a href="#Android_7"><span class="tocnumber">14.2</span> <span class="toctext">Android</span></a>
</li>
</ul>
</li>
<li class="toclevel-1 tocsection-48">
<a href="#v3.4.1.1_.282016-04-04.29"><span class="tocnumber">15</span> <span class="toctext">v3.4.1.1 (2016-04-04)</span></a>
<ul>
<li class="toclevel-2 tocsection-49">
<a href="#Windows_.2F_Linux_.2F_Mac_OS_X_5"><span class="tocnumber">15.1</span> <span class="toctext">Windows / Linux / Mac OS X</span></a>
</li>
</ul>
</li>
<li class="toclevel-1 tocsection-50">
<a href="#Archives"><span class="tocnumber">16</span> <span class="toctext">Archives</span></a>
</li>
</ul>
</div>
@ -236,6 +256,160 @@
<p>
The most important category to review is <b>major</b>. The other categories may be skipped due to lower importance (if they were more important, they would be bumped up to <b>major</b>).
</p>
<h2>
<span class="mw-headline" id="v3.7.2.1_.282017-07-10.29">v3.7.2.1 (2017-07-10)</span>
</h2>
<h3>
<span class="mw-headline" id="Wiki">Wiki</span>
</h3>
<ul>
<li>
Wiki: Publish Haitian wikis. {requested by NickRance}
</li>
</ul>
<h3>
<span class="mw-headline" id="PC">PC</span>
</h3>
<p>
<b>major</b>
</p>
<ul>
<li>
Import: Fix 2016-07 English Wikipedia import failing.
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Resolved by</span>: Search for "PRIMARY KEY" if "UNIQUE KEY" is missing.
</dd>
</dl>
<ul>
<li>
HtmlView: Support Table Of Contents.
</li>
</ul>
<ul>
<li>
Import: Include mwad (MediaWiki API dump) for creating XML dumps for Wikia and other wikis. {contributed by Mattze96}
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/App/Import/mwad.html" id="xolnki_2" title="App/Import/mwad">App/Import/mwad</a>
</dd>
</dl>
<ul>
<li>
Install: Require Java 1.7, not Java 1.8. [broken since: v3.3.4.1]
</li>
</ul>
<p>
<b>minor</b>
</p>
<ul>
<li>
Wikibase: Fix script error for "Module:Wikidata:500 unknown datavalue type." on many ht.w pages.
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Resolved by</span>: Change "wikibase-entityid" to "wikibase-item".
</dd>
<dd>
<span style='font-variant:small-caps'>Example</span>: Erreur de script: =Module:Wikidata:500 unknown datavalue type..
</dd>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="https://ht.wikipedia.org/wiki/Srilanka" rel="nofollow" class="external free">https://ht.wikipedia.org/wiki/Srilanka</a>
</dd>
</dl>
<ul>
<li>
Wikibase: Show specieswiki links in "In Other Languages". [broken since: v3.6.4.1]
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Resolved by</span>: Change "specieswiki" abbreviation from ".species" to "species".
</dd>
</dl>
<ul>
<li>
Special: Enable delete on Special:XowaWikiInfo.
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Special:XowaWikiInfo%3Fwiki%3Dsimple.wikipedia.org.html" id="xolnki_3" title="Special:XowaWikiInfo?wiki=simple.wikipedia.org" class="xowa-visited">Special:XowaWikiInfo?wiki=simple.wikipedia.org</a>
</dd>
</dl>
<p>
<b>trivial</b>
</p>
<ul>
<li>
Wikibase: Add "jamwiki" to list of known wikis.
</li>
</ul>
<ul>
<li>
Lang: Add new languages: aeb-arab; aeb-latn; dty; gor; lki; olo.
</li>
</ul>
<h3>
<span class="mw-headline" id="Server">Server</span>
</h3>
<p>
<b>major</b>
</p>
<ul>
<li>
HTTP Server: Fix images not showing when using "text" databases. [broken since: v3.6.3.4] {detected by ve3lst}
</li>
</ul>
<h3>
<span class="mw-headline" id="Android">Android</span>
</h3>
<p>
<b>minor</b>
</p>
<ul>
<li>
HtmlView: Ignore Table of Content markers.
</li>
</ul>
<h3>
<span class="mw-headline" id="Dev">Dev</span>
</h3>
<ul>
<li>
Php_parser: Parse "[" and "]" as array.
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Example</span>: ['a', 'b'] == array('a', 'b').
</dd>
</dl>
<ul>
<li>
Source: Make parser code thread safe.
</li>
</ul>
<ul>
<li>
Source: Change Scrib_core from static to instance.
</li>
</ul>
<ul>
<li>
Source: Refactor Xoa_ttl.
</li>
</ul>
<ul>
<li>
Source: Consolidate Redirect methods on Page.
</li>
</ul>
<h2>
<span class="mw-headline" id="v3.7.1.2_.282017-07-03.29">v3.7.1.2 (2017-07-03)</span>
</h2>
@ -253,7 +427,7 @@
<span class="mw-headline" id="v3.7.1.1_.282017-07-03.29">v3.7.1.1 (2017-07-03)</span>
</h2>
<h3>
<span class="mw-headline" id="Wiki">Wiki</span>
<span class="mw-headline" id="Wiki_2">Wiki</span>
</h3>
<ul>
<li>
@ -261,7 +435,7 @@
</li>
</ul>
<h3>
<span class="mw-headline" id="PC">PC</span>
<span class="mw-headline" id="PC_2">PC</span>
</h3>
<p>
<b>major</b>
@ -328,7 +502,7 @@
</dd>
</dl>
<h3>
<span class="mw-headline" id="Android">Android</span>
<span class="mw-headline" id="Android_2">Android</span>
</h3>
<p>
<b>major</b>
@ -420,7 +594,7 @@
</dd>
</dl>
<h3>
<span class="mw-headline" id="Dev">Dev</span>
<span class="mw-headline" id="Dev_2">Dev</span>
</h3>
<ul>
<li>
@ -446,7 +620,7 @@
<span class="mw-headline" id="v3.6.4.2_.282016-06-27.29">v3.6.4.2 (2016-06-27)</span>
</h2>
<h3>
<span class="mw-headline" id="PC_2">PC</span>
<span class="mw-headline" id="PC_3">PC</span>
</h3>
<p>
<b>major</b>
@ -491,7 +665,7 @@
<span class="mw-headline" id="v3.6.4.1_.282016-06-25.29">v3.6.4.1 (2016-06-25)</span>
</h2>
<h3>
<span class="mw-headline" id="Wiki_2">Wiki</span>
<span class="mw-headline" id="Wiki_3">Wiki</span>
</h3>
<ul>
<li>
@ -500,11 +674,11 @@
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Special:XowaDownloadCentral.html" id="xolnki_2" title="Special:XowaDownloadCentral" class="xowa-visited">Special:XowaDownloadCentral</a>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Special:XowaDownloadCentral.html" id="xolnki_4" title="Special:XowaDownloadCentral" class="xowa-visited">Special:XowaDownloadCentral</a>
</dd>
</dl>
<h3>
<span class="mw-headline" id="PC_3">PC</span>
<span class="mw-headline" id="PC_4">PC</span>
</h3>
<p>
<b>major</b>
@ -526,7 +700,7 @@
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Special:XowaDownloadCentralInfo%3Ftask_id%3D1.html" id="xolnki_3" title="Special:XowaDownloadCentralInfo?task id=1">Special:XowaDownloadCentralInfo?task id=1</a>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Special:XowaDownloadCentralInfo%3Ftask_id%3D1.html" id="xolnki_5" title="Special:XowaDownloadCentralInfo?task id=1">Special:XowaDownloadCentralInfo?task id=1</a>
</dd>
</dl>
<ul>
@ -710,7 +884,7 @@
</dd>
</dl>
<h3>
<span class="mw-headline" id="Server">Server</span>
<span class="mw-headline" id="Server_2">Server</span>
</h3>
<p>
<b>major</b>
@ -742,7 +916,7 @@
</dd>
</dl>
<h3>
<span class="mw-headline" id="Android_2">Android</span>
<span class="mw-headline" id="Android_3">Android</span>
</h3>
<p>
<b>major</b>
@ -781,7 +955,7 @@
</dd>
</dl>
<h3>
<span class="mw-headline" id="Dev_2">Dev</span>
<span class="mw-headline" id="Dev_3">Dev</span>
</h3>
<ul>
<li>
@ -792,7 +966,7 @@
<span class="mw-headline" id="v3.6.3.4_.282016-06-22.29">v3.6.3.4 (2016-06-22)</span>
</h2>
<h3>
<span class="mw-headline" id="Server_2">Server</span>
<span class="mw-headline" id="Server_3">Server</span>
</h3>
<ul>
<li>
@ -806,7 +980,7 @@
<span class="mw-headline" id="v3.6.3.3_.282016-06-21.29">v3.6.3.3 (2016-06-21)</span>
</h2>
<h3>
<span class="mw-headline" id="PC_4">PC</span>
<span class="mw-headline" id="PC_5">PC</span>
</h3>
<p>
<b>major.fix</b>
@ -841,7 +1015,7 @@
<span class="mw-headline" id="v3.6.3.2_.282016-06-20.29">v3.6.3.2 (2016-06-20)</span>
</h2>
<h3>
<span class="mw-headline" id="PC_5">PC</span>
<span class="mw-headline" id="PC_6">PC</span>
</h3>
<p>
<b>major.fix</b>
@ -855,7 +1029,7 @@
<span class="mw-headline" id="v3.6.3.1_.282016-06-19.29">v3.6.3.1 (2016-06-19)</span>
</h2>
<h3>
<span class="mw-headline" id="Wiki_3">Wiki</span>
<span class="mw-headline" id="Wiki_4">Wiki</span>
</h3>
<ul>
<li>
@ -864,7 +1038,7 @@
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Special:XowaDownloadCentral.html" id="xolnki_4" title="Special:XowaDownloadCentral" class="xowa-visited">Special:XowaDownloadCentral</a>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Special:XowaDownloadCentral.html" id="xolnki_6" title="Special:XowaDownloadCentral" class="xowa-visited">Special:XowaDownloadCentral</a>
</dd>
</dl>
<ul>
@ -874,11 +1048,11 @@
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Special:XowaDownloadCentral.html" id="xolnki_5" title="Special:XowaDownloadCentral" class="xowa-visited">Special:XowaDownloadCentral</a>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Special:XowaDownloadCentral.html" id="xolnki_7" title="Special:XowaDownloadCentral" class="xowa-visited">Special:XowaDownloadCentral</a>
</dd>
</dl>
<h3>
<span class="mw-headline" id="PC_6">PC</span>
<span class="mw-headline" id="PC_7">PC</span>
</h3>
<p>
<b>major.add</b>
@ -890,7 +1064,7 @@
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Special:XowaDownloadCentral.html" id="xolnki_6" title="Special:XowaDownloadCentral" class="xowa-visited">Special:XowaDownloadCentral</a> <a href="http://xowa.org/home/wiki/App/Import/Download_Central.html" id="xolnki_7" title="App/Import/Download Central" class="xowa-visited">App/Import/Download_Central</a>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Special:XowaDownloadCentral.html" id="xolnki_8" title="Special:XowaDownloadCentral" class="xowa-visited">Special:XowaDownloadCentral</a> <a href="http://xowa.org/home/wiki/App/Import/Download_Central.html" id="xolnki_9" title="App/Import/Download Central" class="xowa-visited">App/Import/Download_Central</a>
</dd>
</dl>
<ul>
@ -900,7 +1074,7 @@
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Options/HTML_databases.html" id="xolnki_8" title="Options/HTML databases" class="xowa-visited">Options/HTML_databases</a>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Options/HTML_databases.html" id="xolnki_10" title="Options/HTML databases" class="xowa-visited">Options/HTML_databases</a>
</dd>
</dl>
<ul>
@ -1023,7 +1197,7 @@
</li>
</ul>
<h3>
<span class="mw-headline" id="Android_3">Android</span>
<span class="mw-headline" id="Android_4">Android</span>
</h3>
<p>
<b>major.add</b>
@ -1067,7 +1241,7 @@
</li>
</ul>
<h3>
<span class="mw-headline" id="Server_3">Server</span>
<span class="mw-headline" id="Server_4">Server</span>
</h3>
<p>
<b>major.add</b>
@ -1079,7 +1253,7 @@
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Options/HTML_databases.html" id="xolnki_9" title="Options/HTML databases" class="xowa-visited">Options/HTML_databases</a>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Options/HTML_databases.html" id="xolnki_11" title="Options/HTML databases" class="xowa-visited">Options/HTML_databases</a>
</dd>
</dl>
<p>
@ -1105,7 +1279,7 @@
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/App/Setup/Installation.html" id="xolnki_10" title="App/Setup/Installation" class="xowa-visited">App/Setup/Installation</a> <a href="http://xowa.org/home/wiki/App/Setup/Flash_card.html" id="xolnki_11" title="App/Setup/Flash card" class="xowa-visited">App/Setup/Flash_card</a> <a href="http://xowa.org/home/wiki/App/Xtn/Browser/XOWA_viewer.html" id="xolnki_12" title="App/Xtn/Browser/XOWA viewer" class="xowa-visited">App/Xtn/Browser/XOWA_viewer</a>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/App/Setup/Installation.html" id="xolnki_12" title="App/Setup/Installation" class="xowa-visited">App/Setup/Installation</a> <a href="http://xowa.org/home/wiki/App/Setup/Flash_card.html" id="xolnki_13" title="App/Setup/Flash card" class="xowa-visited">App/Setup/Flash_card</a> <a href="http://xowa.org/home/wiki/App/Xtn/Browser/XOWA_viewer.html" id="xolnki_14" title="App/Xtn/Browser/XOWA viewer" class="xowa-visited">App/Xtn/Browser/XOWA_viewer</a>
</dd>
</dl>
<ul>
@ -1115,7 +1289,7 @@
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Dashboard/Import/Offline.html" id="xolnki_13" title="Dashboard/Import/Offline" class="xowa-visited">Dashboard/Import/Offline</a>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Dashboard/Import/Offline.html" id="xolnki_15" title="Dashboard/Import/Offline" class="xowa-visited">Dashboard/Import/Offline</a>
</dd>
</dl>
<ul>
@ -1125,11 +1299,11 @@
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Help/Privacy/Android.html" id="xolnki_14" title="Help/Privacy/Android" class="xowa-visited">Help/Privacy/Android</a>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Help/Privacy/Android.html" id="xolnki_16" title="Help/Privacy/Android" class="xowa-visited">Help/Privacy/Android</a>
</dd>
</dl>
<h3>
<span class="mw-headline" id="Dev_3">Dev</span>
<span class="mw-headline" id="Dev_4">Dev</span>
</h3>
<ul>
<li>
@ -1246,7 +1420,7 @@
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Dashboard/Wiki_maintenance.html" id="xolnki_15" title="Dashboard/Wiki maintenance">Dashboard/Wiki_maintenance</a>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Dashboard/Wiki_maintenance.html" id="xolnki_17" title="Dashboard/Wiki maintenance">Dashboard/Wiki_maintenance</a>
</dd>
</dl>
<h2>
@ -1365,7 +1539,7 @@
</dd>
</dl>
<h3>
<span class="mw-headline" id="Android_4">Android</span>
<span class="mw-headline" id="Android_5">Android</span>
</h3>
<p>
<b>major.fix</b>
@ -1430,7 +1604,7 @@
<span style='font-variant:small-caps'>Resolved by</span>: Pass display_title info to new page_banner manager.
</dd>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="http://en.wikipedia.org/wiki/gzip" rel="nofollow" class="external free">http://en.wikipedia.org/wiki/gzip</a> <a href="http://xowa.org/home/wiki/Diagnostics/ParserFunctions/DisplayTitle.html" id="xolnki_16" title="Diagnostics/ParserFunctions/DisplayTitle">Diagnostics/ParserFunctions/DisplayTitle</a>
<span style='font-variant:small-caps'>Links</span>: <a href="http://en.wikipedia.org/wiki/gzip" rel="nofollow" class="external free">http://en.wikipedia.org/wiki/gzip</a> <a href="http://xowa.org/home/wiki/Diagnostics/ParserFunctions/DisplayTitle.html" id="xolnki_18" title="Diagnostics/ParserFunctions/DisplayTitle">Diagnostics/ParserFunctions/DisplayTitle</a>
</dd>
</dl>
<ul>
@ -1471,7 +1645,7 @@
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Diagnostics/Xtns/Wikia/All.html" id="xolnki_17" title="Diagnostics/Xtns/Wikia/All">Diagnostics/Xtns/Wikia/All</a>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Diagnostics/Xtns/Wikia/All.html" id="xolnki_19" title="Diagnostics/Xtns/Wikia/All">Diagnostics/Xtns/Wikia/All</a>
</dd>
</dl>
<ul>
@ -1511,7 +1685,7 @@
<br>
</p>
<h3>
<span class="mw-headline" id="Android_5">Android</span>
<span class="mw-headline" id="Android_6">Android</span>
</h3>
<p>
<b>major.add</b>
@ -1598,7 +1772,7 @@
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Diagnostics/Xtns/Wikia/All.html" id="xolnki_18" title="Diagnostics/Xtns/Wikia/All">Diagnostics/Xtns/Wikia/All</a>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Diagnostics/Xtns/Wikia/All.html" id="xolnki_20" title="Diagnostics/Xtns/Wikia/All">Diagnostics/Xtns/Wikia/All</a>
</dd>
</dl>
<ul>
@ -1608,14 +1782,14 @@
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Diagnostics/Xtns/Wikia/All.html" id="xolnki_19" title="Diagnostics/Xtns/Wikia/All">Diagnostics/Xtns/Wikia/All</a>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Diagnostics/Xtns/Wikia/All.html" id="xolnki_21" title="Diagnostics/Xtns/Wikia/All">Diagnostics/Xtns/Wikia/All</a>
</dd>
</dl>
<p>
<br>
</p>
<h3>
<span class="mw-headline" id="Android_6">Android</span>
<span class="mw-headline" id="Android_7">Android</span>
</h3>
<p>
<b>major.add</b>
@ -1673,7 +1847,7 @@
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Dashboard/Import/Offline.html" id="xolnki_20" title="Dashboard/Import/Offline" class="xowa-visited">Dashboard/Import/Offline</a>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Dashboard/Import/Offline.html" id="xolnki_22" title="Dashboard/Import/Offline" class="xowa-visited">Dashboard/Import/Offline</a>
</dd>
</dl>
<ul>
@ -1702,7 +1876,7 @@
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Dashboard/Files/Deletion.html" id="xolnki_21" title="Dashboard/Files/Deletion">Dashboard/Files/Deletion</a>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Dashboard/Files/Deletion.html" id="xolnki_23" title="Dashboard/Files/Deletion">Dashboard/Files/Deletion</a>
</dd>
</dl>
<p>
@ -1724,16 +1898,16 @@
</h2>
<ul>
<li>
<a href="http://xowa.org/home/wiki/Change_log/2016.html" id="xolnki_22" title="Change log/2016">2016 Change Log</a>
<a href="http://xowa.org/home/wiki/Change_log/2016.html" id="xolnki_24" title="Change log/2016">2016 Change Log</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/Change_log/2015.html" id="xolnki_23" title="Change log/2015">2015 Change Log</a>
<a href="http://xowa.org/home/wiki/Change_log/2015.html" id="xolnki_25" title="Change log/2015">2015 Change Log</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/Change_log/2014.html" id="xolnki_24" title="Change log/2014">2014 Change Log</a>
<a href="http://xowa.org/home/wiki/Change_log/2014.html" id="xolnki_26" title="Change log/2014">2014 Change Log</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/Change_log/2013.html" id="xolnki_25" title="Change log/2013">2013 Change Log</a>
<a href="http://xowa.org/home/wiki/Change_log/2013.html" id="xolnki_27" title="Change log/2013">2013 Change Log</a>
</li>
</ul>

View File

@ -0,0 +1,305 @@
<!DOCTYPE html>
<html dir="ltr">
<head>
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<title>Change log/v3.7.2.1 - XOWA</title>
<link rel="shortcut icon" href="https://gnosygnu.github.io/xowa/xowa_logo.png" />
<link rel="stylesheet" href="https://gnosygnu.github.io/xowa/xowa_common.css" type="text/css">
</head>
<body class="mediawiki ltr sitedir-ltr ns-0 ns-subject skin-vector action-submit vector-animateLayout" spellcheck="false">
<div id="mw-page-base" class="noprint"></div>
<div id="mw-head-base" class="noprint"></div>
<div id="content" class="mw-body">
<h1 id="firstHeading" class="firstHeading"><span>Change log/v3.7.2.1</span></h1>
<div id="bodyContent" class="mw-body-content">
<div id="siteSub">From XOWA: the free, open-source, offline wiki application</div>
<div id="contentSub"></div>
<div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr">
<div id="toc" class="toc">
<div id="toctitle">
<h2>
Contents
</h2>
</div>
<ul>
<li class="toclevel-1 tocsection-1">
<a href="#v3.7.2.1_.282017-07-10.29"><span class="tocnumber">1</span> <span class="toctext">v3.7.2.1 (2017-07-10)</span></a>
<ul>
<li class="toclevel-2 tocsection-2">
<a href="#Wiki"><span class="tocnumber">1.1</span> <span class="toctext">Wiki</span></a>
</li>
<li class="toclevel-2 tocsection-3">
<a href="#PC"><span class="tocnumber">1.2</span> <span class="toctext">PC</span></a>
</li>
<li class="toclevel-2 tocsection-4">
<a href="#Server"><span class="tocnumber">1.3</span> <span class="toctext">Server</span></a>
</li>
<li class="toclevel-2 tocsection-5">
<a href="#Android"><span class="tocnumber">1.4</span> <span class="toctext">Android</span></a>
</li>
<li class="toclevel-2 tocsection-6">
<a href="#Dev"><span class="tocnumber">1.5</span> <span class="toctext">Dev</span></a>
</li>
</ul>
</li>
</ul>
</div>
<h2>
<span class="mw-headline" id="v3.7.2.1_.282017-07-10.29">v3.7.2.1 (2017-07-10)</span>
</h2>
<h3>
<span class="mw-headline" id="Wiki">Wiki</span>
</h3>
<ul>
<li>
Wiki: Publish Haitian wikis. {requested by NickRance}
</li>
</ul>
<h3>
<span class="mw-headline" id="PC">PC</span>
</h3>
<p>
<b>major</b>
</p>
<ul>
<li>
Import: Fix 2016-07 English Wikipedia import failing.
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Resolved by</span>: Search for "PRIMARY KEY" if "UNIQUE KEY" is missing.
</dd>
</dl>
<ul>
<li>
HtmlView: Support Table Of Contents.
</li>
</ul>
<ul>
<li>
Import: Include mwad (MediaWiki API dump) for creating XML dumps for Wikia and other wikis. {contributed by Mattze96}
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/App/Import/mwad.html" id="xolnki_2" title="App/Import/mwad">App/Import/mwad</a>
</dd>
</dl>
<ul>
<li>
Install: Require Java 1.7, not Java 1.8. [broken since: v3.3.4.1]
</li>
</ul>
<p>
<b>minor</b>
</p>
<ul>
<li>
Wikibase: Fix script error for "Module:Wikidata:500 unknown datavalue type." on many ht.w pages.
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Resolved by</span>: Change "wikibase-entityid" to "wikibase-item".
</dd>
<dd>
<span style='font-variant:small-caps'>Example</span>: Erreur de script: =Module:Wikidata:500 unknown datavalue type..
</dd>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="https://ht.wikipedia.org/wiki/Srilanka" rel="nofollow" class="external free">https://ht.wikipedia.org/wiki/Srilanka</a>
</dd>
</dl>
<ul>
<li>
Wikibase: Show specieswiki links in "In Other Languages". [broken since: v3.6.4.1]
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Resolved by</span>: Change "specieswiki" abbreviation from ".species" to "species".
</dd>
</dl>
<ul>
<li>
Special: Enable delete on Special:XowaWikiInfo.
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Special:XowaWikiInfo%3Fwiki%3Dsimple.wikipedia.org.html" id="xolnki_3" title="Special:XowaWikiInfo?wiki=simple.wikipedia.org" class="xowa-visited">Special:XowaWikiInfo?wiki=simple.wikipedia.org</a>
</dd>
</dl>
<p>
<b>trivial</b>
</p>
<ul>
<li>
Wikibase: Add "jamwiki" to list of known wikis.
</li>
</ul>
<ul>
<li>
Lang: Add new languages: aeb-arab; aeb-latn; dty; gor; lki; olo.
</li>
</ul>
<h3>
<span class="mw-headline" id="Server">Server</span>
</h3>
<p>
<b>major</b>
</p>
<ul>
<li>
HTTP Server: Fix images not showing when using "text" databases. [broken since: v3.6.3.4] {detected by ve3lst}
</li>
</ul>
<h3>
<span class="mw-headline" id="Android">Android</span>
</h3>
<p>
<b>minor</b>
</p>
<ul>
<li>
HtmlView: Ignore Table of Content markers.
</li>
</ul>
<h3>
<span class="mw-headline" id="Dev">Dev</span>
</h3>
<ul>
<li>
Php_parser: Parse "[" and "]" as array.
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Example</span>: ['a', 'b'] == array('a', 'b').
</dd>
</dl>
<ul>
<li>
Source: Make parser code thread safe.
</li>
</ul>
<ul>
<li>
Source: Change Scrib_core from static to instance.
</li>
</ul>
<ul>
<li>
Source: Refactor Xoa_ttl.
</li>
</ul>
<ul>
<li>
Source: Consolidate Redirect methods on Page.
</li>
</ul>
</div>
</div>
</div>
<div id="mw-head" class="noprint">
<div id="left-navigation">
<div id="p-namespaces" class="vectorTabs">
<h3>Namespaces</h3>
<ul>
<li id="ca-nstab-main" class="selected"><span><a id="ca-nstab-main-href" href="index.html">Page</a></span></li>
</ul>
</div>
</div>
</div>
<div id='mw-panel' class='noprint'>
<div id='p-logo'>
<a style="background-image: url(https://gnosygnu.github.io/xowa/xowa_logo.png);" href="http://xowa.org/" title="Visit the main page"></a>
</div>
<div class="portal" id='xowa-portal-home'>
<h3>XOWA</h3>
<div class="body">
<ul>
<li><a href="http://xowa.org/index.html" title='Visit the main page'>Main page</a></li>
<li><a href="http://xowa.org/screenshots.html" title='See screenshots of XOWA'>Screenshots</a></li>
<li><a href="https://www.youtube.com/watch?v=q0qbXYXEH6M" title="See a video of XOWA Desktop in action">Video</a></li>
<li><a href="http://xowa.org/home/wiki/Help/Download_XOWA.html" title='Download the XOWA application'>Download XOWA</a></li>
<li><a href="http://xowa.org/home/wiki/Dashboard/Image_databases.html" title='Download offline wikis and image databases'>Download wikis</a></li>
</ul>
</div>
</div>
<div class="portal" id='xowa-portal-started'>
<h3>Getting started</h3>
<div class="body">
<ul>
<li><a href="http://xowa.org/home/wiki/App/Setup/System_requirements.html" title='Get XOWA&apos;s system requirements'>Requirements</a></li>
<li><a href="http://xowa.org/home/wiki/App/Setup/Installation.html" title='Get instructions for installing XOWA'>Installation</a></li>
<li><a href="http://xowa.org/home/wiki/App/Import/Simple_Wikipedia.html" title='Learn how to set up Simple Wikipedia'>Simple Wikipedia</a></li>
<li><a href="http://xowa.org/home/wiki/App/Import/English_Wikipedia.html" title='Learn how to set up English Wikipedia'>English Wikipedia</a></li>
<li><a href="http://xowa.org/home/wiki/App/Import/Other_wikis.html" title='Learn how to set up other Wikipedias'>Other Wikipedias</a></li>
</ul>
</div>
</div>
<div class="portal" id='xowa-portal-android'>
<h3>Android</h3>
<div class="body">
<ul>
<li><a href="http://xowa.org/home/wiki/Android/Setup.html" title='Setup XOWA on your Android device'>Setup</a></li>
<li><a href="https://www.youtube.com/watch?v=jsMTBxGweUw" title="See a video of XOWA Android in action">Video</a></li>
</ul>
</div>
</div>
<div class="portal" id='xowa-portal-help'>
<h3>Help</h3>
<div class="body">
<ul>
<li><a href="http://xowa.org/home/wiki/Help/About.html" title='Get more information about XOWA'>About</a></li>
<li><a href="http://xowa.org/home/wiki/Help/Contents.html" title='View a list of help topics'>Contents</a></li>
<li><a href="http://xowa.org/home/wiki/Help/Media.html" title='Read what others have written about XOWA'>Media</a></li>
<li><a href="http://xowa.org/home/wiki/Help/Feedback.html" title='Questions? Comments? Leave feedback for XOWA'>Feedback</a></li>
</ul>
</div>
</div>
<div class="portal" id='xowa-portal-blog'>
<h3>Blog</h3>
<div class="body">
<ul>
<li><a href="http://xowa.org/home/wiki/Blog.html" title='Follow XOWA''s development process'>Current</a></li>
</ul>
</div>
</div>
<div class="portal" id='xowa-portal-links'>
<h3>Links</h3>
<div class="body">
<ul>
<li><a href="http://dumps.wikimedia.org/backup-index.html" title="Get wiki datababase dumps directly from Wikimedia">Wikimedia dumps</a></li>
<li><a href="https://archive.org/search.php?query=xowa" title="Search archive.org for XOWA files">XOWA @ archive.org</a></li>
<li><a href="http://en.wikipedia.org" title="Visit Wikipedia (and compare to XOWA!)">English Wikipedia</a></li>
</ul>
</div>
</div>
<div class="portal" id='xowa-portal-donate'>
<h3>Donate</h3>
<div class="body">
<ul>
<li><a href="https://archive.org/donate/index.php" title="Support archive.org!">archive.org</a></li><!-- listed first due to recent fire damages: http://blog.archive.org/2013/11/06/scanning-center-fire-please-help-rebuild/ -->
<li><a href="https://donate.wikimedia.org/wiki/Special:FundraiserRedirector" title="Support Wikipedia!">Wikipedia</a></li>
<!-- <li><a href="" title="Support XOWA! (but only after you've supported archive.org and Wikipedia)">XOWA</a></li> -->
</ul>
</div>
</div>
</div>
</body>
</html>

View File

@ -2970,7 +2970,7 @@
<span class="mw-cite-backlink"><a href="#cite_ref-folder_example_7-0">^</a></span> <span class="reference-text">For simplicity's sake, these instructions use a root folder of <code>C:\xowa</code> for all examples. Please adjust as necessary for Linux / Mac OS X.</span>
</li>
<li id="cite_note-xowa_folders-8">
<span class="mw-cite-backlink">^ <sup><a href="#cite_ref-xowa_folders_8-0">a</a></sup> <sup><a href="#cite_ref-xowa_folders_8-2">c</a></sup></span> <span class="reference-text">Note the following types of folders:</span>
<span class="mw-cite-backlink"><a href="#cite_ref-xowa_folders_8-0">^</a></span> <span class="reference-text">Note the following types of folders:</span>
<ul>
<li>
<span class="reference-text"><b>Root folder</b></span>

View File

@ -150,76 +150,6 @@
<button class='options_button' id='xowa_srh_upgrade' onclick='upgrade_search("commons.wikimedia.org")'>Search</button>
</td>
</tr>
<tr>
<td>
de.wikibooks.org
</td>
<td class='cell_center'>
n
</td>
<td class='cell_center'>
2016-06-01
</td>
<td class='cell_center'>
2015-08-05
</td>
<td class='cell_center'>
Dump complete
</td>
<td class='cell_center'>
sqlite3
</td>
<td class='cell_center'>
v2
</td>
<td class='cell_center'>
v1
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_wiki_import' onclick='import_wiki("de.wikibooks.org")'>Import</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_ctg_upgrade' onclick='upgrade_category("de.wikibooks.org")'>Category</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_srh_upgrade' onclick='upgrade_search("de.wikibooks.org")'>Search</button>
</td>
</tr>
<tr>
<td>
de.wikinews.org
</td>
<td class='cell_center'>
n
</td>
<td class='cell_center'>
2016-06-01
</td>
<td class='cell_center'>
2015-08-05
</td>
<td class='cell_center'>
Dump complete
</td>
<td class='cell_center'>
sqlite3
</td>
<td class='cell_center'>
v2
</td>
<td class='cell_center'>
v1
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_wiki_import' onclick='import_wiki("de.wikinews.org")'>Import</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_ctg_upgrade' onclick='upgrade_category("de.wikinews.org")'>Category</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_srh_upgrade' onclick='upgrade_search("de.wikinews.org")'>Search</button>
</td>
</tr>
<tr>
<td>
de.wikipedia.org
@ -255,181 +185,6 @@
<button class='options_button' id='xowa_srh_upgrade' onclick='upgrade_search("de.wikipedia.org")'>Search</button>
</td>
</tr>
<tr>
<td>
de.wikiquote.org
</td>
<td class='cell_center'>
n
</td>
<td class='cell_center'>
2016-06-01
</td>
<td class='cell_center'>
2015-08-05
</td>
<td class='cell_center'>
Dump complete
</td>
<td class='cell_center'>
sqlite3
</td>
<td class='cell_center'>
v2
</td>
<td class='cell_center'>
v1
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_wiki_import' onclick='import_wiki("de.wikiquote.org")'>Import</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_ctg_upgrade' onclick='upgrade_category("de.wikiquote.org")'>Category</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_srh_upgrade' onclick='upgrade_search("de.wikiquote.org")'>Search</button>
</td>
</tr>
<tr>
<td>
de.wikisource.org
</td>
<td class='cell_center'>
n
</td>
<td class='cell_center'>
2016-06-01
</td>
<td class='cell_center'>
2015-08-06
</td>
<td class='cell_center'>
Dump complete
</td>
<td class='cell_center'>
sqlite3
</td>
<td class='cell_center'>
v2
</td>
<td class='cell_center'>
v1
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_wiki_import' onclick='import_wiki("de.wikisource.org")'>Import</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_ctg_upgrade' onclick='upgrade_category("de.wikisource.org")'>Category</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_srh_upgrade' onclick='upgrade_search("de.wikisource.org")'>Search</button>
</td>
</tr>
<tr>
<td>
de.wikiversity.org
</td>
<td class='cell_center'>
n
</td>
<td class='cell_center'>
2016-06-01
</td>
<td class='cell_center'>
2015-08-05
</td>
<td class='cell_center'>
Dump complete
</td>
<td class='cell_center'>
sqlite3
</td>
<td class='cell_center'>
v2
</td>
<td class='cell_center'>
v1
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_wiki_import' onclick='import_wiki("de.wikiversity.org")'>Import</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_ctg_upgrade' onclick='upgrade_category("de.wikiversity.org")'>Category</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_srh_upgrade' onclick='upgrade_search("de.wikiversity.org")'>Search</button>
</td>
</tr>
<tr>
<td>
de.wikivoyage.org
</td>
<td class='cell_center'>
n
</td>
<td class='cell_center'>
2016-06-01
</td>
<td class='cell_center'>
2015-08-05
</td>
<td class='cell_center'>
Dump complete
</td>
<td class='cell_center'>
sqlite3
</td>
<td class='cell_center'>
v2
</td>
<td class='cell_center'>
v1
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_wiki_import' onclick='import_wiki("de.wikivoyage.org")'>Import</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_ctg_upgrade' onclick='upgrade_category("de.wikivoyage.org")'>Category</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_srh_upgrade' onclick='upgrade_search("de.wikivoyage.org")'>Search</button>
</td>
</tr>
<tr>
<td>
de.wiktionary.org
</td>
<td class='cell_center'>
n
</td>
<td class='cell_center'>
2016-06-01
</td>
<td class='cell_center'>
2015-08-07
</td>
<td class='cell_center'>
Dump complete
</td>
<td class='cell_center'>
sqlite3
</td>
<td class='cell_center'>
v2
</td>
<td class='cell_center'>
v1
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_wiki_import' onclick='import_wiki("de.wiktionary.org")'>Import</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_ctg_upgrade' onclick='upgrade_category("de.wiktionary.org")'>Category</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_srh_upgrade' onclick='upgrade_search("de.wiktionary.org")'>Search</button>
</td>
</tr>
<tr>
<td>
en.wikipedia.org
@ -465,6 +220,41 @@
<button class='options_button' id='xowa_srh_upgrade' onclick='upgrade_search("en.wikipedia.org")'>Search</button>
</td>
</tr>
<tr>
<td>
en.wikivoyage.org
</td>
<td class='cell_center'>
n
</td>
<td class='cell_center'>
2016-06-01
</td>
<td class='cell_center'>
2015-08-06
</td>
<td class='cell_center'>
Dump complete
</td>
<td class='cell_center'>
sqlite3
</td>
<td class='cell_center'>
v2
</td>
<td class='cell_center'>
v1
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_wiki_import' onclick='import_wiki("en.wikivoyage.org")'>Import</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_ctg_upgrade' onclick='upgrade_category("en.wikivoyage.org")'>Category</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_srh_upgrade' onclick='upgrade_search("en.wikivoyage.org")'>Search</button>
</td>
</tr>
<tr>
<td>
en.wiktionary.org
@ -508,7 +298,7 @@
n
</td>
<td class='cell_center'>
2016-03-05
2016-07-02
</td>
<td class='cell_center'>
2015-08-06
@ -571,48 +361,13 @@
</tr>
<tr>
<td>
la.wikibooks.org
ht.wikipedia.org
</td>
<td class='cell_center'>
y
n
</td>
<td class='cell_center'>
2014-06-15
</td>
<td class='cell_center'>
2015-08-05
</td>
<td class='cell_center'>
Dump complete
</td>
<td class='cell_center'>
sqlite3
</td>
<td class='cell_center'>
v2
</td>
<td class='cell_center'>
v1
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_wiki_import' onclick='import_wiki("la.wikibooks.org")'>Import</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_ctg_upgrade' onclick='upgrade_category("la.wikibooks.org")'>Category</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_srh_upgrade' onclick='upgrade_search("la.wikibooks.org")'>Search</button>
</td>
</tr>
<tr>
<td>
la.wikipedia.org
</td>
<td class='cell_center'>
y
</td>
<td class='cell_center'>
2014-06-22
2016-07-01
</td>
<td class='cell_center'>
2015-08-06
@ -630,59 +385,24 @@
v1
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_wiki_import' onclick='import_wiki("la.wikipedia.org")'>Import</button>
<button class='options_button' id='xowa_wiki_import' onclick='import_wiki("ht.wikipedia.org")'>Import</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_ctg_upgrade' onclick='upgrade_category("la.wikipedia.org")'>Category</button>
<button class='options_button' id='xowa_ctg_upgrade' onclick='upgrade_category("ht.wikipedia.org")'>Category</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_srh_upgrade' onclick='upgrade_search("la.wikipedia.org")'>Search</button>
<button class='options_button' id='xowa_srh_upgrade' onclick='upgrade_search("ht.wikipedia.org")'>Search</button>
</td>
</tr>
<tr>
<td>
la.wikiquote.org
ht.wikisource.org
</td>
<td class='cell_center'>
y
n
</td>
<td class='cell_center'>
2014-06-01
</td>
<td class='cell_center'>
2015-08-06
</td>
<td class='cell_center'>
Dump complete
</td>
<td class='cell_center'>
sqlite3
</td>
<td class='cell_center'>
v2
</td>
<td class='cell_center'>
v1
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_wiki_import' onclick='import_wiki("la.wikiquote.org")'>Import</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_ctg_upgrade' onclick='upgrade_category("la.wikiquote.org")'>Category</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_srh_upgrade' onclick='upgrade_search("la.wikiquote.org")'>Search</button>
</td>
</tr>
<tr>
<td>
la.wikisource.org
</td>
<td class='cell_center'>
y
</td>
<td class='cell_center'>
2014-06-15
2015-10-02
</td>
<td class='cell_center'>
2015-08-05
@ -700,48 +420,13 @@
v1
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_wiki_import' onclick='import_wiki("la.wikisource.org")'>Import</button>
<button class='options_button' id='xowa_wiki_import' onclick='import_wiki("ht.wikisource.org")'>Import</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_ctg_upgrade' onclick='upgrade_category("la.wikisource.org")'>Category</button>
<button class='options_button' id='xowa_ctg_upgrade' onclick='upgrade_category("ht.wikisource.org")'>Category</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_srh_upgrade' onclick='upgrade_search("la.wikisource.org")'>Search</button>
</td>
</tr>
<tr>
<td>
la.wiktionary.org
</td>
<td class='cell_center'>
y
</td>
<td class='cell_center'>
2014-06-17
</td>
<td class='cell_center'>
2015-08-05
</td>
<td class='cell_center'>
Dump complete
</td>
<td class='cell_center'>
sqlite3
</td>
<td class='cell_center'>
v2
</td>
<td class='cell_center'>
v1
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_wiki_import' onclick='import_wiki("la.wiktionary.org")'>Import</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_ctg_upgrade' onclick='upgrade_category("la.wiktionary.org")'>Category</button>
</td>
<td class='cell_center'>
<button class='options_button' id='xowa_srh_upgrade' onclick='upgrade_search("la.wiktionary.org")'>Search</button>
<button class='options_button' id='xowa_srh_upgrade' onclick='upgrade_search("ht.wikisource.org")'>Search</button>
</td>
</tr>
<tr>
@ -962,7 +647,7 @@
n
</td>
<td class='cell_center'>
2016-06-02
2016-07-03
</td>
<td class='cell_center'>
2015-08-05

View File

@ -86,7 +86,7 @@
</h2>
<ul>
<li>
<a href="http://xowa.org/home/wiki/Diagnostics/Scribunto/All.html" id="xolnki_16" title="Diagnostics/Scribunto/All">Diagnostics/Scribunto/All</a>
<a href="http://xowa.org/home/wiki/Diagnostics/Scribunto/All.html" id="xolnki_16" title="Diagnostics/Scribunto/All" class="xowa-visited">Diagnostics/Scribunto/All</a>
<ul>
<li>
<a href="http://xowa.org/home/wiki/Diagnostics/Scribunto/Basic.html" id="xolnki_17" title="Diagnostics/Scribunto/Basic">Diagnostics/Scribunto/Basic</a>

View File

@ -17,62 +17,6 @@
<div id="contentSub"></div>
<div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr">
<div id="toc" class="toc">
<div id="toctitle">
<h2>
Contents
</h2>
</div>
<ul>
<li class="toclevel-1 tocsection-1">
<a href="#PageBanner"><span class="tocnumber">1</span> <span class="toctext">PageBanner</span></a>
</li>
<li class="toclevel-1 tocsection-2">
<a href="#GeoCrumbs"><span class="tocnumber">2</span> <span class="toctext">GeoCrumbs</span></a>
</li>
<li class="toclevel-1 tocsection-3">
<a href="#Related_Articles"><span class="tocnumber">3</span> <span class="toctext">Related Articles</span></a>
</li>
<li class="toclevel-1 tocsection-4">
<a href="#Related_Sites"><span class="tocnumber">4</span> <span class="toctext">Related Sites</span></a>
</li>
<li class="toclevel-1 tocsection-5">
<a href="#Insider"><span class="tocnumber">5</span> <span class="toctext">Insider</span></a>
</li>
<li class="toclevel-1 tocsection-6">
<a href="#TOC_test"><span class="tocnumber">6</span> <span class="toctext">TOC test</span></a>
<ul>
<li class="toclevel-2 tocsection-7">
<a href="#TOC_test_1"><span class="tocnumber">6.1</span> <span class="toctext">TOC test 1</span></a>
<ul>
<li class="toclevel-3 tocsection-8">
<a href="#TOC_test_11"><span class="tocnumber">6.1.1</span> <span class="toctext">TOC test 11</span></a>
<ul>
<li class="toclevel-4 tocsection-9">
<a href="#TOC_test_111"><span class="tocnumber">6.1.1.1</span> <span class="toctext">TOC test 111</span></a>
<ul>
<li class="toclevel-5 tocsection-10">
<a href="#TOC_test_1111"><span class="tocnumber">6.1.1.1.1</span> <span class="toctext">TOC test 1111</span></a>
</li>
<li class="toclevel-5 tocsection-11">
<a href="#TOC_test_1112"><span class="tocnumber">6.1.1.1.2</span> <span class="toctext">TOC test 1112</span></a>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li class="toclevel-2 tocsection-12">
<a href="#TOC_test_2"><span class="tocnumber">6.2</span> <span class="toctext">TOC test 2</span></a>
</li>
<li class="toclevel-2 tocsection-13">
<a href="#TOC_test_3"><span class="tocnumber">6.3</span> <span class="toctext">TOC test 3</span></a>
</li>
</ul>
</li>
</ul>
</div>
<h2>
<span class="mw-headline" id="PageBanner">PageBanner</span>
</h2>

View File

@ -46,7 +46,7 @@
version:
</td>
<td>
3.6.4.1 <b>(<a href="http://xowa.org/home/wiki/Change_log.html" id="xolnki_2" title="Change log" class="xowa-visited">view changes</a>)</b>
3.7.2.1 <b>(<a href="http://xowa.org/home/wiki/Change_log.html" id="xolnki_2" title="Change log" class="xowa-visited">view changes</a>)</b>
</td>
</tr>
<tr>
@ -54,7 +54,7 @@
build_date:
</td>
<td>
2016-06-26 02:13
2016-07-10 01:50
</td>
</tr>
<tr>
@ -228,6 +228,9 @@
<li>
HTTP Web Server
</li>
<li>
<a href="https://github.com/Mattze96/mwad" rel="nofollow" class="external text">mwad</a>
</li>
</ul>
</td>
</tr>

View File

@ -218,6 +218,9 @@
<li>
<a href="http://xowa.org/home/wiki/App/Setup/Flash_card.html" id="xolnki_32" title="App/Setup/Flash card" class="xowa-visited">Installing to a flash card</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/App/Import/mwad.html" id="xolnki_33" title="App/Import/mwad">Generating a dump by</a> <a href="https://github.com/Mattze96/mwad" rel="nofollow" class="external text">mwad</a>
</li>
</ul>
</td>
</tr>
@ -233,10 +236,10 @@
<td style='width:20%'>
<ul>
<li>
<a href="http://xowa.org/home/wiki/Dev/Code.html" id="xolnki_33" title="Dev/Code">Source code</a>
<a href="http://xowa.org/home/wiki/Dev/Code.html" id="xolnki_34" title="Dev/Code">Source code</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/App/Setup/Installation/Notes.html" id="xolnki_34" title="App/Setup/Installation/Notes">Dev environment</a>
<a href="http://xowa.org/home/wiki/App/Setup/Installation/Notes.html" id="xolnki_35" title="App/Setup/Installation/Notes">Dev environment</a>
</li>
</ul>
</td>
@ -246,25 +249,25 @@
<td style='width:25%'>
<ul>
<li>
<a href="http://xowa.org/home/wiki/App/Category.html" id="xolnki_35" title="App/Category">Category</a>
<a href="http://xowa.org/home/wiki/App/Category.html" id="xolnki_36" title="App/Category">Category</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/App/Xtn/Mediawiki/Scribunto.html" id="xolnki_36" title="App/Xtn/Mediawiki/Scribunto">Scribunto</a>
<a href="http://xowa.org/home/wiki/App/Xtn/Mediawiki/Scribunto.html" id="xolnki_37" title="App/Xtn/Mediawiki/Scribunto">Scribunto</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/App/Xtn/Mediawiki/Math/MathJax.html" id="xolnki_37" title="App/Xtn/Mediawiki/Math/MathJax">MathJax</a>
<a href="http://xowa.org/home/wiki/App/Xtn/Mediawiki/Math/MathJax.html" id="xolnki_38" title="App/Xtn/Mediawiki/Math/MathJax">MathJax</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/App/Xtn/Mediawiki/Score.html" id="xolnki_38" title="App/Xtn/Mediawiki/Score">Score</a>
<a href="http://xowa.org/home/wiki/App/Xtn/Mediawiki/Score.html" id="xolnki_39" title="App/Xtn/Mediawiki/Score">Score</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/App/Xtn/Html/Scripts.html" id="xolnki_39" title="App/Xtn/Html/Scripts">Sortable/collapsible tables</a>
<a href="http://xowa.org/home/wiki/App/Xtn/Html/Scripts.html" id="xolnki_40" title="App/Xtn/Html/Scripts">Sortable/collapsible tables</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/App/Xtn/Import/Dansguardian.html" id="xolnki_40" title="App/Xtn/Import/Dansguardian">Dansguardian filter</a>
<a href="http://xowa.org/home/wiki/App/Xtn/Import/Dansguardian.html" id="xolnki_41" title="App/Xtn/Import/Dansguardian">Dansguardian filter</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/App/Xtn/Browser/XOWA_viewer.html" id="xolnki_41" title="App/Xtn/Browser/XOWA viewer" class="xowa-visited">Firefox Addon</a>
<a href="http://xowa.org/home/wiki/App/Xtn/Browser/XOWA_viewer.html" id="xolnki_42" title="App/Xtn/Browser/XOWA viewer" class="xowa-visited">Firefox Addon</a>
</li>
</ul>
</td>
@ -274,10 +277,10 @@
<td style='width:30%'>
<ul>
<li>
<a href="http://xowa.org/home/wiki/Diagnostics.html" id="xolnki_42" title="Diagnostics">Diagnostics</a>
<a href="http://xowa.org/home/wiki/Diagnostics.html" id="xolnki_43" title="Diagnostics">Diagnostics</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/App/Setup/Installation/Self_extracting_exe.html" id="xolnki_43" title="App/Setup/Installation/Self extracting exe">Self extracting exe</a>
<a href="http://xowa.org/home/wiki/App/Setup/Installation/Self_extracting_exe.html" id="xolnki_44" title="App/Setup/Installation/Self extracting exe">Self extracting exe</a>
</li>
</ul>
</td>
@ -294,13 +297,13 @@
<td style='width:20%'>
<ul>
<li>
<a href="http://xowa.org/home/wiki/Help/FAQs.html" id="xolnki_44" title="Help/FAQs">FAQs</a>
<a href="http://xowa.org/home/wiki/Help/FAQs.html" id="xolnki_45" title="Help/FAQs">FAQs</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/Help/Contributing.html" id="xolnki_45" title="Help/Contributing">Contributing</a>
<a href="http://xowa.org/home/wiki/Help/Contributing.html" id="xolnki_46" title="Help/Contributing">Contributing</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/Help/Feedback.html" id="xolnki_46" title="Help/Feedback" class="xowa-visited">Feedback</a>
<a href="http://xowa.org/home/wiki/Help/Feedback.html" id="xolnki_47" title="Help/Feedback" class="xowa-visited">Feedback</a>
</li>
</ul>
</td>
@ -310,16 +313,16 @@
<td style='width:25%'>
<ul>
<li>
<a href="http://xowa.org/home/wiki/Help/License/Code.html" id="xolnki_47" title="Help/License/Code">License/Code</a>
<a href="http://xowa.org/home/wiki/Help/License/Code.html" id="xolnki_48" title="Help/License/Code">License/Code</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/Help/License/Docs.html" id="xolnki_48" title="Help/License/Docs">License/Docs</a>
<a href="http://xowa.org/home/wiki/Help/License/Docs.html" id="xolnki_49" title="Help/License/Docs">License/Docs</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/Help/Privacy/Desktop.html" id="xolnki_49" title="Help/Privacy/Desktop">Privacy</a>
<a href="http://xowa.org/home/wiki/Help/Privacy/Desktop.html" id="xolnki_50" title="Help/Privacy/Desktop">Privacy</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/Help/Security.html" id="xolnki_50" title="Help/Security">Security</a>
<a href="http://xowa.org/home/wiki/Help/Security.html" id="xolnki_51" title="Help/Security">Security</a>
</li>
</ul>
</td>
@ -329,10 +332,10 @@
<td style='width:30%'>
<ul>
<li>
<a href="http://xowa.org/home/wiki/Help/Release_schedule.html" id="xolnki_51" title="Help/Release schedule">Release schedule</a>
<a href="http://xowa.org/home/wiki/Help/Release_schedule.html" id="xolnki_52" title="Help/Release schedule">Release schedule</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/Help/Roadmap.html" id="xolnki_52" title="Help/Roadmap">Roadmap</a>
<a href="http://xowa.org/home/wiki/Help/Roadmap.html" id="xolnki_53" title="Help/Roadmap">Roadmap</a>
</li>
</ul>
</td>
@ -349,54 +352,54 @@
<td style='width:90%'>
<ul>
<li>
<a href="http://xowa.org/home/wiki/Archive/App/UI/Main_window_layout.html" id="xolnki_53" title="Archive/App/UI/Main window layout">Window layout</a>
<a href="http://xowa.org/home/wiki/Archive/App/UI/Main_window_layout.html" id="xolnki_54" title="Archive/App/UI/Main window layout">Window layout</a>
</li>
</ul>
<ul>
<li>
<a href="http://xowa.org/home/wiki/Dev/Design/Database.html" id="xolnki_54" title="Dev/Design/Database" class="xowa-visited">Dev/Design/Database</a>
<a href="http://xowa.org/home/wiki/Dev/Design/Database.html" id="xolnki_55" title="Dev/Design/Database" class="xowa-visited">Dev/Design/Database</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/Dev/Environment/Text_editor.html" id="xolnki_55" title="Dev/Environment/Text editor">Dev/Environment/Text editor</a>
<a href="http://xowa.org/home/wiki/Dev/Environment/Text_editor.html" id="xolnki_56" title="Dev/Environment/Text editor">Dev/Environment/Text editor</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/App/UI/Find_box.html" id="xolnki_56" title="App/UI/Find box">App/UI/Find box</a>
<a href="http://xowa.org/home/wiki/App/UI/Find_box.html" id="xolnki_57" title="App/UI/Find box">App/UI/Find box</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/App/Import/Removal.html" id="xolnki_57" title="App/Import/Removal">Removal</a>
<a href="http://xowa.org/home/wiki/App/Import/Removal.html" id="xolnki_58" title="App/Import/Removal">Removal</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/App/Import/Offline.html" id="xolnki_58" title="App/Import/Offline">Import/Using_data_dump_files</a>
<a href="http://xowa.org/home/wiki/App/Import/Offline.html" id="xolnki_59" title="App/Import/Offline">Import/Using_data_dump_files</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/App/Import/Manual.html" id="xolnki_59" title="App/Import/Manual">Import/Manual</a>
<a href="http://xowa.org/home/wiki/App/Import/Manual.html" id="xolnki_60" title="App/Import/Manual">Import/Manual</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/App/Wiki_types/Wikidata.html" id="xolnki_60" title="App/Wiki types/Wikidata">Wikis/Wikidata</a>
<a href="http://xowa.org/home/wiki/App/Wiki_types/Wikidata.html" id="xolnki_61" title="App/Wiki types/Wikidata">Wikis/Wikidata</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/App/Wiki_types/Commons.html" id="xolnki_61" title="App/Wiki types/Commons">Wikis/Commons</a>
<a href="http://xowa.org/home/wiki/App/Wiki_types/Commons.html" id="xolnki_62" title="App/Wiki types/Commons">Wikis/Commons</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/App/Basics/Files.html" id="xolnki_62" title="App/Basics/Files">Files</a>
<a href="http://xowa.org/home/wiki/App/Basics/Files.html" id="xolnki_63" title="App/Basics/Files">Files</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/App/Xtn/Android.html" id="xolnki_63" title="App/Xtn/Android">Android/Alpha</a>
<a href="http://xowa.org/home/wiki/App/Xtn/Android.html" id="xolnki_64" title="App/Xtn/Android">Android/Alpha</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/Dev/Design/CSS.html" id="xolnki_64" title="Dev/Design/CSS">Dev/Design/CSS</a>
<a href="http://xowa.org/home/wiki/Dev/Design/CSS.html" id="xolnki_65" title="Dev/Design/CSS">Dev/Design/CSS</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/Dev/Design/Site_config.html" id="xolnki_65" title="Dev/Design/Site config">Dev/Design/Site_config</a>
<a href="http://xowa.org/home/wiki/Dev/Design/Site_config.html" id="xolnki_66" title="Dev/Design/Site config">Dev/Design/Site_config</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/Archive/Help/Known_issues.html" id="xolnki_66" title="Archive/Help/Known issues">Archive/Help/Known issues</a>
<a href="http://xowa.org/home/wiki/Archive/Help/Known_issues.html" id="xolnki_67" title="Archive/Help/Known issues">Archive/Help/Known issues</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/App/UI/Printing.html" id="xolnki_67" title="App/UI/Printing">Printing</a>
<a href="http://xowa.org/home/wiki/App/UI/Printing.html" id="xolnki_68" title="App/UI/Printing">Printing</a>
</li>
<li>
<a href="http://xowa.org/home/wiki/App/Import/Download/Aria2.html" id="xolnki_68" title="App/Import/Download/Aria2">Aria2</a>
<a href="http://xowa.org/home/wiki/App/Import/Download/Aria2.html" id="xolnki_69" title="App/Import/Download/Aria2">Aria2</a>
</li>
</ul>
</td>

View File

@ -28,10 +28,10 @@
</h2>
<ul>
<li>
<a href="https://github.com/gnosygnu/xowa/releases/download/v3.7.1.2/xowa_app_windows_64_v3.7.1.2.zip" rel="nofollow" class="external text">Windows (64-bit)</a>
<a href="https://github.com/gnosygnu/xowa/releases/download/v3.7.2.1/xowa_app_windows_64_v3.7.2.1.zip" rel="nofollow" class="external text">Windows (64-bit)</a>
</li>
<li>
<a href="https://github.com/gnosygnu/xowa/releases/download/v3.7.1.2/xowa_app_windows_v3.7.1.2.zip" rel="nofollow" class="external text">Windows (32-bit)</a>
<a href="https://github.com/gnosygnu/xowa/releases/download/v3.7.2.1/xowa_app_windows_v3.7.2.1.zip" rel="nofollow" class="external text">Windows (32-bit)</a>
</li>
</ul>
<h2>
@ -39,10 +39,10 @@
</h2>
<ul>
<li>
<a href="https://github.com/gnosygnu/xowa/releases/download/v3.7.1.2/xowa_app_linux_64_v3.7.1.2.zip" rel="nofollow" class="external text">Linux (64-bit)</a>
<a href="https://github.com/gnosygnu/xowa/releases/download/v3.7.2.1/xowa_app_linux_64_v3.7.2.1.zip" rel="nofollow" class="external text">Linux (64-bit)</a>
</li>
<li>
<a href="https://github.com/gnosygnu/xowa/releases/download/v3.7.1.2/xowa_app_linux_v3.7.1.2.zip" rel="nofollow" class="external text">Linux (32-bit)</a>
<a href="https://github.com/gnosygnu/xowa/releases/download/v3.7.2.1/xowa_app_linux_v3.7.2.1.zip" rel="nofollow" class="external text">Linux (32-bit)</a>
</li>
</ul>
<h2>
@ -50,10 +50,10 @@
</h2>
<ul>
<li>
<a href="https://github.com/gnosygnu/xowa/releases/download/v3.7.1.2/xowa_app_macosx_64_v3.7.1.2.zip" rel="nofollow" class="external text">Mac OS X (64-bit)</a>
<a href="https://github.com/gnosygnu/xowa/releases/download/v3.7.2.1/xowa_app_macosx_64_v3.7.2.1.zip" rel="nofollow" class="external text">Mac OS X (64-bit)</a>
</li>
<li>
<a href="https://github.com/gnosygnu/xowa/releases/download/v3.7.1.2/xowa_app_macosx_v3.7.1.2.zip" rel="nofollow" class="external text">Mac OS X (32-bit)</a>
<a href="https://github.com/gnosygnu/xowa/releases/download/v3.7.2.1/xowa_app_macosx_v3.7.2.1.zip" rel="nofollow" class="external text">Mac OS X (32-bit)</a>
</li>
</ul>
<h2>
@ -61,7 +61,7 @@
</h2>
<ul>
<li>
<a href="https://github.com/gnosygnu/xowa/releases/download/v3.7.1.2/xowa_app_arm_v3.7.1.2.zip" rel="nofollow" class="external text">Raspberry Pi</a>
<a href="https://github.com/gnosygnu/xowa/releases/download/v3.7.2.1/xowa_app_arm_v3.7.2.1.zip" rel="nofollow" class="external text">Raspberry Pi</a>
</li>
</ul>
<h2>
@ -69,7 +69,7 @@
</h2>
<ul>
<li>
<a href="https://github.com/gnosygnu/xowa/releases/download/v3.7.1.2/xowa_app_android_v3.7.1.2.apk" rel="nofollow" class="external text">Android</a>
<a href="https://github.com/gnosygnu/xowa/releases/download/v3.7.2.1/xowa_app_android_v3.7.2.1.apk" rel="nofollow" class="external text">Android</a>
</li>
</ul>
<h2>
@ -77,7 +77,7 @@
</h2>
<ul>
<li>
<a href="https://github.com/gnosygnu/xowa/archive/v3.7.1.2.zip" rel="nofollow" class="external text">Source code (Desktop)</a>
<a href="https://github.com/gnosygnu/xowa/archive/v3.7.2.1.zip" rel="nofollow" class="external text">Source code (Desktop)</a>
</li>
</ul>
<h2>
@ -89,27 +89,14 @@
</li>
</ul>
<h2>
<span class="mw-headline" id="v3.7.1.2_.282017-07-03.29">v3.7.1.2 (2017-07-03)</span>
</h2>
<ul>
<li>
Search: Do not fail when searching for multiple words. [broken since: v3.6.3.1] {detected by William; Ope30}
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Resolved by</span>: Cast double to int to handle HTML dumps from 2016-05 and earlier.
</dd>
</dl>
<h2>
<span class="mw-headline" id="v3.7.1.1_.282017-07-03.29">v3.7.1.1 (2017-07-03)</span>
<span class="mw-headline" id="v3.7.2.1_.282017-07-10.29">v3.7.2.1 (2017-07-10)</span>
</h2>
<h3>
<span class="mw-headline" id="Wiki">Wiki</span>
</h3>
<ul>
<li>
Wiki: Publish 2016-06 German Wiktionary, Wikisource, Wikivoyage, Wikiquote, Wikibooks, Wikiversity, and Wikinews.
Wiki: Publish Haitian wikis. {requested by NickRance}
</li>
</ul>
<h3>
@ -120,17 +107,32 @@
</p>
<ul>
<li>
HtmlView: Support Gallery.
Import: Fix 2016-07 English Wikipedia import failing.
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="https://en.wikipedia.org/wiki/Édouard_Manet" rel="nofollow" class="external free">https://en.wikipedia.org/wiki/Édouard_Manet</a> <a href="https://en.wikipedia.org/wiki/List_of_tallest_buildings_in_the_world" rel="nofollow" class="external free">https://en.wikipedia.org/wiki/List_of_tallest_buildings_in_the_world</a> <a href="https://en.wikipedia.org/wiki/National_Gallery_of_Art" rel="nofollow" class="external free">https://en.wikipedia.org/wiki/National_Gallery_of_Art</a>
<span style='font-variant:small-caps'>Resolved by</span>: Search for "PRIMARY KEY" if "UNIQUE KEY" is missing.
</dd>
</dl>
<ul>
<li>
DownloadCentral: Show error message if error during download; also allow resume.
HtmlView: Support Table Of Contents.
</li>
</ul>
<ul>
<li>
Import: Include mwad (MediaWiki API dump) for creating XML dumps for Wikia and other wikis. {contributed by Mattze96}
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/App/Import/mwad.html" id="xolnki_3" title="App/Import/mwad">App/Import/mwad</a>
</dd>
</dl>
<ul>
<li>
Install: Require Java 1.7, not Java 1.8. [broken since: v3.3.4.1]
</li>
</ul>
<p>
@ -138,160 +140,106 @@
</p>
<ul>
<li>
UI: Add Ctrl+P as default keyboard shortcut for Print.
Wikibase: Fix script error for "Module:Wikidata:500 unknown datavalue type." on many ht.w pages.
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Resolved by</span>: Change "wikibase-entityid" to "wikibase-item".
</dd>
<dd>
<span style='font-variant:small-caps'>Example</span>: Erreur de script: =Module:Wikidata:500 unknown datavalue type..
</dd>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="https://ht.wikipedia.org/wiki/Srilanka" rel="nofollow" class="external free">https://ht.wikipedia.org/wiki/Srilanka</a>
</dd>
</dl>
<ul>
<li>
UI: Automatically save zoom level when using Ctrl+Wheel_Up, Ctrl+Wheel_Down. {detected by Ope30}
Wikibase: Show specieswiki links in "In Other Languages". [broken since: v3.6.4.1]
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Resolved by</span>: Change "specieswiki" abbreviation from ".species" to "species".
</dd>
</dl>
<ul>
<li>
UI: Restore font size for tab buttons.
Special: Enable delete on Special:XowaWikiInfo.
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="http://xowa.org/home/wiki/Special:XowaWikiInfo%3Fwiki%3Dsimple.wikipedia.org.html" id="xolnki_4" title="Special:XowaWikiInfo?wiki=simple.wikipedia.org" class="xowa-visited">Special:XowaWikiInfo?wiki=simple.wikipedia.org</a>
</dd>
</dl>
<p>
<b>trivial</b>
</p>
<ul>
<li>
Log: Add logging statements for search.
Wikibase: Add "jamwiki" to list of known wikis.
</li>
</ul>
<ul>
<li>
Hzip: Skip manual &lt;h2&gt; if &lt;span&gt; does not have id.
Lang: Add new languages: aeb-arab; aeb-latn; dty; gor; lki; olo.
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="https://fr.wikipedia.org/wiki/Portail:Nord-Amérindiens/Image_sélectionnée" rel="nofollow" class="external free">https://fr.wikipedia.org/wiki/Portail:Nord-Amérindiens/Image_sélectionnée</a>
</dd>
</dl>
<ul>
<li>
Hzip: Skip manual &lt;h2&gt; if &lt;h2&gt; has atrs.
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Links</span>: <a href="https://fr.wikipedia.org/wiki/Wikipédia:LiveRC/ToDo" rel="nofollow" class="external free">https://fr.wikipedia.org/wiki/Wikipédia:LiveRC/ToDo</a>
</dd>
</dl>
<h3>
<span class="mw-headline" id="Android_2">Android</span>
<span class="mw-headline" id="Server">Server</span>
</h3>
<p>
<b>major</b>
</p>
<ul>
<li>
Setup: Detect external storage card for certain devices (BLU-STUDIO C 5+5 LTE).
HTTP Server: Fix images not showing when using "text" databases. [broken since: v3.6.3.4] {detected by ve3lst}
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Resolved by</span>: Try "SECONDARY_STORAGE" environment variable if present.
</dd>
</dl>
<h3>
<span class="mw-headline" id="Android_2">Android</span>
</h3>
<p>
<b>major</b>
<b>minor</b>
</p>
<ul>
<li>
DownloadCentral: Fix WAKE_LOCK not being acquired / released.
HtmlView: Ignore Table of Content markers.
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Resolved by</span>: Always release WAKE_LOCK when task is done; remove WAKE_LOCK from internal hash.
</dd>
</dl>
<ul>
<li>
DownloadCentral: Fix negative progress when restarting after failed task.
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Resolved by</span>: Reset progress at cmd level upon failure.
</dd>
</dl>
<ul>
<li>
Log: Retain only most recent 8 log files.
</li>
</ul>
<ul>
<li>
General: Do not crash when opening new tab and English Wikipedia is not installed.
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Resolved by</span>: Use 1st installed wiki if English Wikipedia is not available.
</dd>
</dl>
<ul>
<li>
General: Do not crash when reloading page but SD card has been removed.
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Resolved by</span>: Add try / catch to Page__on_load_end.
</dd>
</dl>
<ul>
<li>
General: Do not crash when opening wiki but wiki has been deleted.
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Resolved by</span>: Add try / catch to OfflinePageStrategy.
</dd>
</dl>
<ul>
<li>
General: Do not crash when reloading tab but page does not exist.
</li>
</ul>
<p>
<b>trivial</b>
</p>
<ul>
<li>
Redlinks: Fix null ref in logs when opening special pages.
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Resolved by</span>: Set "en" as language for home wiki.
</dd>
</dl>
<h3>
<span class="mw-headline" id="Dev">Dev</span>
</h3>
<ul>
<li>
Source: Fix compilation issues with Eclipse Neon.
Php_parser: Parse "[" and "]" as array.
</li>
</ul>
<dl>
<dd>
<span style='font-variant:small-caps'>Resolved by</span>: Split classes into separate files.
<span style='font-variant:small-caps'>Example</span>: ['a', 'b'] == array('a', 'b').
</dd>
</dl>
<ul>
<li>
Source: Refactor gallery classes.
Source: Make parser code thread safe.
</li>
</ul>
<ul>
<li>
Source: Make Xop_amp_mgr thread safe.
Source: Change Scrib_core from static to instance.
</li>
</ul>
<ul>
<li>
Source: Refactor Xoa_ttl.
</li>
</ul>
<ul>
<li>
Source: Consolidate Redirect methods on Page.
</li>
</ul>

View File

@ -82,28 +82,29 @@
<span class="mw-headline" id="Release_notes">Release notes</span>
</h2>
<p>
v3.7.1.2 features the following:
v3.7.2.1 features the following:
</p>
<ul>
<li>
(PC &amp; Android) Fix broken search for multiple words in 2016-05 wikis and earlier
</li>
</ul>
<p>
v3.7.1.1 features the following:
</p>
<ul>
<li>
(Wiki) 2016-06 German Wiktionary, Wikisource, Wikivoyage, Wikiquote, Wikibooks, Wikiversity, and Wikinews
(Wiki) Publish 2016-07 Haitian Wikipedia
</li>
<li>
(PC) Support Gallery
(PC) Fix 2016-07 English Wikipedia import failure
</li>
<li>
(PC &amp; Android) More minor fixes for Download Central including connection disruption and WAKE_LOCK fixes
(Server) Fix images not showing for Wikitext databases
</li>
<li>
(Android) Multiple fixes for severe crashes
(PC) Add Table of Contents support for HTML databases on the PC
</li>
<li>
(PC) Include mwad (MediaWiki API dump) for creating XML dumps for Wikia and other wikis {contributed by Mattze96}
</li>
<li>
(PC) Fix minor Wikibase issues, including wikibase-item
</li>
<li>
(PC) Target Java 1.7, not Java 1.8
</li>
</ul>
<p>

View File

@ -360,9 +360,9 @@ li.active a, li.active a:hover
<td>
<textarea xowa_prop="xowa.api.usr.cache.info" class="options_textbox options_readonly" readonly='readonly' style="width: 600px; height: 100px;" id='xowa_prop_3'>
cache folder: C:\xowa\file
space used: 876.017 KB
file count: 134
oldest file: 2016-07-02 14:29:21
space used: 473.652 KB
file count: 1
oldest file: 2016-07-10 22:32:33
</textarea>
</td>
</tr>

View File

@ -338,6 +338,12 @@ li.active a, li.active a:hover
<option value='aeb'>
زَوُن [aeb]
</option>
<option value='aeb-arab'>
زَوُن [aeb-arab]
</option>
<option value='aeb-latn'>
زَوُن [aeb-latn]
</option>
<option value='af'>
Afrikaans [af]
</option>
@ -587,6 +593,9 @@ li.active a, li.active a:hover
<option value='dtp'>
Dusun Bundu-liwan [dtp]
</option>
<option value='dty'>
Dotyali [dty]
</option>
<option value='dv'>
ދިވެހިބަސް [dv]
</option>
@ -713,6 +722,9 @@ li.active a, li.active a:hover
<option value='gom-latn'>
कोंकणी (Latin) [gom-latn]
</option>
<option value='gor'>
Gor [gor]
</option>
<option value='got'>
𐌲𐌿𐍄𐌹𐍃𐌺 [got]
</option>
@ -992,6 +1004,9 @@ li.active a, li.active a:hover
<option value='liv'>
Līvõ kēļ [liv]
</option>
<option value='lki'>
Laki [lki]
</option>
<option value='lmo'>
Lumbaart [lmo]
</option>
@ -1166,6 +1181,9 @@ li.active a, li.active a:hover
<option value='oc'>
Occitan [oc]
</option>
<option value='olo'>
Olo [olo]
</option>
<option value='om'>
Oromoo [om]
</option>

View File

@ -403,7 +403,7 @@ li.active a, li.active a:hover
<span class="reference-text"><b>executable permissions</b>: Linux / Mac OS X users may need to grant execute permission to the Lua binary. To ensure proper setup, please do the following:</span>
<ul>
<li>
<span class="reference-text">Open <a href="http://xowa.org/home/wiki/Diagnostics/Scribunto/All.html" id="xolnki_3" title="Diagnostics/Scribunto/All">Diagnostics/Scribunto/All</a></span>
<span class="reference-text">Open <a href="http://xowa.org/home/wiki/Diagnostics/Scribunto/All.html" id="xolnki_3" title="Diagnostics/Scribunto/All" class="xowa-visited">Diagnostics/Scribunto/All</a></span>
</li>
<li>
<span class="reference-text">If the page fails, then see <a href="http://xowa.org/home/wiki/App/Xtn/Mediawiki/Scribunto.html#Permissions" id="xolnki_4" title="App/Xtn/Mediawiki/Scribunto">App/Xtn/Mediawiki/Scribunto#Permissions</a></span>

View File

@ -320,7 +320,7 @@ li.active a, li.active a:hover
Web access enabled: <sup id="cite_ref-web_access_enabled_1-0" class="reference"><a href="#cite_note-web_access_enabled-1">[2]</a></sup>
</td>
<td>
<input xowa_prop="app.user.cfg.security.web_access_enabled" type="checkbox" class="options_checkbox" id='xowa_prop_1' checked='checked'>
<input xowa_prop="app.user.cfg.security.web_access_enabled" type="checkbox" class="options_checkbox" id='xowa_prop_1'>
</td>
</tr>
</table>