Search.html 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584
  1. <!DOCTYPE html>
  2. <html dir="ltr">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
  5. <title>Options/Search - XOWA</title>
  6. <link rel="shortcut icon" href="https://gnosygnu.github.io/xowa/xowa_logo.png" />
  7. <link rel="stylesheet" href="https://gnosygnu.github.io/xowa/xowa_common.css" type="text/css">
  8. <style>
  9. .options_row_label {font-weight:bold; vertical-align:text-top; text-align:right; width:150px;}
  10. .options_table {border: 1px solid #AAAAAA; border-collapse: collapse; color: black; margin: 1em 0; background-color: #F9F9F9;}
  11. .options_table td {border: 1px solid #AAAAAA; padding: 0.2em;}
  12. .options_textbox {padding: 2px; border: 1px solid black;}
  13. .options_textbox_num {padding: 2px; border: 1px solid black; text-align:right;}
  14. .options_textarea {padding: 2px; border: 1px solid black;}
  15. .options_select {padding: 2px; border: 1px solid black;}
  16. .options_button {padding: 2px; border: 1px solid black; background: white; height: 22px; margin-left: 1px; vertical-align: top;}
  17. .options_checkbox {padding: 2px; border: 1px solid black;}
  18. .options_readonly {background-color:#F9F9F9;}
  19. </style>
  20. <style>
  21. .optionsButton
  22. {
  23. width: 100px;
  24. height: 40px;
  25. font-family: 'Segoe UI';
  26. font-size: 12px;
  27. margin-left: -5px;
  28. cursor: pointer;
  29. background-color: lightgray;
  30. text-align: center;
  31. }
  32. .optionsLink
  33. {
  34. color: black !important;
  35. text-decoration: none;
  36. }
  37. .optionsButton.active
  38. {
  39. width: 100px;
  40. height: 40px;
  41. font-family: 'Segoe UI';
  42. font-size: 12px;
  43. margin-left: -5px;
  44. cursor: pointer;
  45. background-color: dimgray;
  46. color: white !important;
  47. border: solid 1px dimgray;
  48. }
  49. .optionsButton.active a
  50. {
  51. color: white !important;
  52. }
  53. .tabs
  54. {
  55. width: 100%;
  56. margin-top: 10px;
  57. }
  58. .tab-links ul
  59. {
  60. margin-left: -40px;
  61. }
  62. .tab-links li
  63. {
  64. margin: 0px 0px 0px 0px;
  65. float: left;
  66. list-style: none;
  67. }
  68. .tab-links a
  69. {
  70. padding: 9px 15px 9px 15px;
  71. border-radius: 3px 3px 0px 0px;
  72. background: #f0f0f0;
  73. font-family: 'Segoe UI';
  74. font-size: 13px;
  75. color: black !important;
  76. text-decoration: none;
  77. border-radius: 3px;
  78. border-top: solid 1px gray;
  79. border-left: solid 1px gray;
  80. border-right: solid 1px gray;
  81. }
  82. .tab-links a:hover
  83. {
  84. background: #B0B0B0;
  85. text-decoration: none;
  86. }
  87. li.active a, li.active a:hover
  88. {
  89. background: #fff;
  90. color: #4c4c4c;
  91. font-weight: bold;
  92. }
  93. .tab-content
  94. {
  95. padding: 15px;
  96. border-radius: 3px;
  97. background: #fff;
  98. border-top: solid 1px gray;
  99. margin-top: 5px;
  100. min-height: 300px;
  101. }
  102. </style>
  103. <style>
  104. .options_row_label {font-weight:bold; vertical-align:text-top; text-align:right; width:150px;}
  105. .options_table {border: 1px solid #AAAAAA; border-collapse: collapse; color: black; margin: 1em 0; background-color: #F9F9F9;}
  106. .options_table td {border: 1px solid #AAAAAA; padding: 0.2em;}
  107. .options_textbox {padding: 2px; border: 1px solid black;}
  108. .options_textbox_num {padding: 2px; border: 1px solid black; text-align:right;}
  109. .options_textarea {padding: 2px; border: 1px solid black;}
  110. .options_select {padding: 2px; border: 1px solid black;}
  111. .options_button {padding: 2px; border: 1px solid black; background: white; height: 22px; margin-left: 1px; vertical-align: top;}
  112. .options_checkbox {padding: 2px; border: 1px solid black;}
  113. .options_readonly {background-color:#F9F9F9;}
  114. </style>
  115. <style>
  116. .optionsButton
  117. {
  118. width: 100px;
  119. height: 40px;
  120. font-family: 'Segoe UI';
  121. font-size: 12px;
  122. margin-left: -5px;
  123. cursor: pointer;
  124. background-color: lightgray;
  125. text-align: center;
  126. }
  127. .optionsLink
  128. {
  129. color: black !important;
  130. text-decoration: none;
  131. }
  132. .optionsButton.active
  133. {
  134. width: 100px;
  135. height: 40px;
  136. font-family: 'Segoe UI';
  137. font-size: 12px;
  138. margin-left: -5px;
  139. cursor: pointer;
  140. background-color: dimgray;
  141. color: white !important;
  142. border: solid 1px dimgray;
  143. }
  144. .optionsButton.active a
  145. {
  146. color: white !important;
  147. }
  148. .tabs
  149. {
  150. width: 100%;
  151. margin-top: 10px;
  152. }
  153. .tab-links ul
  154. {
  155. margin-left: -40px;
  156. }
  157. .tab-links li
  158. {
  159. margin: 0px 0px 0px 0px;
  160. float: left;
  161. list-style: none;
  162. }
  163. .tab-links a
  164. {
  165. padding: 9px 15px 9px 15px;
  166. border-radius: 3px 3px 0px 0px;
  167. background: #f0f0f0;
  168. font-family: 'Segoe UI';
  169. font-size: 13px;
  170. color: black !important;
  171. text-decoration: none;
  172. border-radius: 3px;
  173. border-top: solid 1px gray;
  174. border-left: solid 1px gray;
  175. border-right: solid 1px gray;
  176. }
  177. .tab-links a:hover
  178. {
  179. background: #B0B0B0;
  180. text-decoration: none;
  181. }
  182. li.active a, li.active a:hover
  183. {
  184. background: #fff;
  185. color: #4c4c4c;
  186. font-weight: bold;
  187. }
  188. .tab-content
  189. {
  190. padding: 15px;
  191. border-radius: 3px;
  192. background: #fff;
  193. border-top: solid 1px gray;
  194. margin-top: 5px;
  195. min-height: 300px;
  196. }
  197. </style>
  198. </head>
  199. <body class="mediawiki ltr sitedir-ltr ns-0 ns-subject skin-vector action-submit vector-animateLayout" spellcheck="false">
  200. <div id="mw-page-base" class="noprint"></div>
  201. <div id="mw-head-base" class="noprint"></div>
  202. <div id="content" class="mw-body">
  203. <h1 id="firstHeading" class="firstHeading"><span>Options/Search</span></h1>
  204. <div id="bodyContent" class="mw-body-content">
  205. <div id="siteSub">From XOWA: the free, open-source, offline wiki application</div>
  206. <div id="contentSub"></div>
  207. <div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr">
  208. <div>
  209. <table>
  210. <tr>
  211. <td class='optionsButton'>
  212. <a class='optionsLink' href='/wiki/Options/Window'>Apps (basic)</a>
  213. </td>
  214. <td class='optionsButton'>
  215. <a class='optionsLink' href='/wiki/Options/Security'>Apps (advanced)</a>
  216. </td>
  217. <td class='optionsButton'>
  218. <a class='optionsLink' href='/wiki/Options/Import'>Wiki</a>
  219. </td>
  220. <td class='optionsButton'>
  221. <a class='optionsLink' href='/wiki/Options/HTML'>HTML</a>
  222. </td>
  223. <td class='optionsButton'>
  224. <a class='optionsLink' href='/wiki/Options/Content_apps'>External apps</a>
  225. </td>
  226. <td class='optionsButton active'>
  227. <a class='optionsLink' href='/wiki/Options/Search_suggest'>Modules</a>
  228. </td>
  229. <td class='optionsButton'>
  230. <a class='optionsLink' href='/wiki/Options/Math'>Extensions</a>
  231. </td>
  232. <td class='optionsButton'>
  233. <a class='optionsLink' href='/wiki/Options/Dev'>Misc</a>
  234. </td>
  235. </tr>
  236. </table>
  237. </div>
  238. <div class="tabs">
  239. <div>
  240. <ul class='tab-links' style='margin-left:0px;'>
  241. <li class=''>
  242. <a href='/wiki/Options/Search_suggest'>Search suggest</a>
  243. </li>
  244. <li class='active'>
  245. <a href='/wiki/Options/Search'>Search</a>
  246. </li>
  247. <li class=''>
  248. <a href='/wiki/Options/Popups'>Popups</a>
  249. </li>
  250. </ul>
  251. </div><br>
  252. <div class='tab-content'>
  253. <div id="toc" class="toc">
  254. <div id="toctitle">
  255. <h2>
  256. Contents
  257. </h2>
  258. </div>
  259. <ul>
  260. <li class="toclevel-1 tocsection-1">
  261. <a href="#Search"><span class="tocnumber">1</span> <span class="toctext">Search</span></a>
  262. </li>
  263. <li class="toclevel-1 tocsection-2">
  264. <a href="#Notes"><span class="tocnumber">2</span> <span class="toctext">Notes</span></a>
  265. </li>
  266. </ul>
  267. </div>
  268. <p>
  269. This page provides options for Search. Note that configuration changes will apply automatically to new searches. However, any currently loaded searches must be reloaded to pick up the new configuration change.
  270. </p>
  271. <p>
  272. You can also test your configuration changes by going to this link: <a href="https://simple.wikipedia.org/wiki/Special:Search/Earth*" rel="nofollow" class="external free">https://simple.wikipedia.org/wiki/Special:Search/Earth*</a> or <a href="https://en.wikipedia.org/wiki/Special:Search/Earth*" rel="nofollow" class="external free">https://en.wikipedia.org/wiki/Special:Search/Earth*</a>
  273. </p>
  274. <p>
  275. For more infomation, visit the <a href="http://xowa.org/wiki/home/page/App/Search/Overview.html" id="xolnki_2" title="App/Search/Overview" class="xowa-visited">Search help page</a><br>
  276. </p>
  277. <div style='float:right;'>
  278. <div style='float:right; margin-right:10px; margin-top:5px;'>
  279. <p>
  280. <a href="xowa-cmd:app.user.prefs.save();" accesskey='s'><img src='file:///C:/xowa/bin/any/xowa/file/app.window/save.png' width="16" height="16">Save</a>
  281. </p>
  282. </div><br>
  283. </div><br>
  284. <h2>
  285. <span class="mw-headline" id="Search">Search</span>
  286. </h2>
  287. <table class='options_table'>
  288. <tr>
  289. <td class='options_row_label'>
  290. Results per page: <sup id="cite_ref-results_per_page_0-0" class="reference"><a href="#cite_note-results_per_page-0">[1]</a></sup>
  291. </td>
  292. <td>
  293. <input xowa_prop="xowa.api.special.search.results_per_page" class="options_textbox" id='xowa_prop_0' value='50'>
  294. </td>
  295. </tr>
  296. <tr>
  297. <td class='options_row_label'>
  298. Run database search in background: <sup id="cite_ref-async_db_1-0" class="reference"><a href="#cite_note-async_db-1">[2]</a></sup>
  299. </td>
  300. <td>
  301. <input xowa_prop="xowa.api.special.search.async_db" type="checkbox" class="options_checkbox" id='xowa_prop_1' checked='checked'>
  302. </td>
  303. </tr>
  304. <tr>
  305. <td class='options_row_label'>
  306. Auto-wildcard: <sup id="cite_ref-auto_wildcard_2-0" class="reference"><a href="#cite_note-auto_wildcard-2">[3]</a></sup>
  307. </td>
  308. <td>
  309. <input xowa_prop="app.gui.search_suggest.auto_wildcard" type="checkbox" class="options_checkbox" id='xowa_prop_2'>
  310. </td>
  311. </tr>
  312. <tr>
  313. <td class='options_row_label'>
  314. Default url search arguments: <sup id="cite_ref-args_default_3-0" class="reference"><a href="#cite_note-args_default-3">[4]</a></sup>
  315. </td>
  316. <td>
  317. <input xowa_prop="app.gui.search_suggest.args_default" class="options_textbox" id='xowa_prop_3' value=''>
  318. </td>
  319. </tr>
  320. <tr>
  321. <td class='options_row_label'>
  322. Multi-wiki search wikis: <sup id="cite_ref-multi_wikis_4-0" class="reference"><a href="#cite_note-multi_wikis-4">[5]</a></sup>
  323. </td>
  324. <td>
  325. <textarea xowa_prop="xowa.api.special.search.multi_wikis" class="options_textarea" style="width: 600px; height:100px;" accesskey=',' id='xowa_prop_4'>
  326. &lt;any&gt;|&lt;self&gt;,*.wiktionary
  327. </textarea>
  328. </td>
  329. </tr>
  330. <tr>
  331. <td class='options_row_label'>
  332. Multi-wiki sort order: <sup id="cite_ref-multi_sorts_5-0" class="reference"><a href="#cite_note-multi_sorts-5">[6]</a></sup>
  333. </td>
  334. <td>
  335. <textarea xowa_prop="xowa.api.special.search.multi_sorts" class="options_textarea" style="width: 600px; height:100px;" accesskey=',' id='xowa_prop_5'>
  336. &lt;any&gt;|&lt;self&gt;,*.wikipedia,*.wikivoyage,*.wiktionary,*.wikisource,*.wikiquote,*.wikibooks,*.wikiversity,*.wikinews
  337. </textarea>
  338. </td>
  339. </tr>
  340. </table>
  341. <h2>
  342. <span class="mw-headline" id="Notes">Notes</span>
  343. </h2>
  344. <ol class="references">
  345. <li id="cite_note-results_per_page-0">
  346. <span class="mw-cite-backlink"><a href="#cite_ref-results_per_page_0-0">^</a></span> <span class="reference-text">Enter number of results to show per page: (default is <code>20</code>) .</span>
  347. </li>
  348. <li id="cite_note-async_db-1">
  349. <span class="mw-cite-backlink"><a href="#cite_ref-async_db_1-0">^</a></span> <span class="reference-text">Choose one of the following: (default is <code>checked</code>) .</span>
  350. <ul>
  351. <li>
  352. <span class="reference-text"><b>checked</b>: XOWA continues while database searches are done in the background. These searches return results faster, especially for big queries.</span>
  353. </li>
  354. <li>
  355. <span class="reference-text"><b>unchecked</b>: XOWA waits until the database search completes. This will often be slower, but will be more stable than background searches.</span>
  356. </li>
  357. </ul>
  358. </li>
  359. <li id="cite_note-auto_wildcard-2">
  360. <span class="mw-cite-backlink"><a href="#cite_ref-auto_wildcard_2-0">^</a></span> <span class="reference-text">Choose one of the following: (default is <code>checked</code>)</span>
  361. <ul>
  362. <li>
  363. <span class="reference-text"><b>checked</b>: Search will automatically append wildcard if no wildcards are present. For example:</span>
  364. </li>
  365. </ul>
  366. <dl>
  367. <dd>
  368. <dl>
  369. <dd>
  370. <span class="reference-text"><code>Earth</code> will become <code>Earth*</code></span>
  371. </dd>
  372. <dd>
  373. <span class="reference-text"><code>Ea*rth</code> will stay <code>Ea*rth</code> b/c it already has a wildcard</span>
  374. </dd>
  375. </dl>
  376. </dd>
  377. </dl>
  378. <ul>
  379. <li>
  380. <span class="reference-text"><b>unchecked</b>: Search will not apply any automatic behavior</span>
  381. </li>
  382. </ul>
  383. </li>
  384. <li id="cite_note-args_default-3">
  385. <span class="mw-cite-backlink"><a href="#cite_ref-args_default_3-0">^</a></span> <span class="reference-text">Enter default args for every search: (default is ) . Examples include:</span>
  386. <ul>
  387. <li>
  388. <span class="reference-text"><b>ns*=1</b> will search across all namespaces (current default is to search main namespace only)</span>
  389. </li>
  390. <li>
  391. <span class="reference-text"><b>ns0=1&amp;ns14=1</b> will search across the main (0) and category (14) namespaces</span>
  392. </li>
  393. </ul>
  394. </li>
  395. <li id="cite_note-multi_wikis-4">
  396. <span class="mw-cite-backlink"><a href="#cite_ref-multi_wikis_4-0">^</a></span> <span class="reference-text">Enter wikis to search: (default is <code>&lt;any&gt;|&lt;self&gt;</code>) .</span>
  397. <ul>
  398. <li>
  399. <span class="reference-text">For example:</span>
  400. </li>
  401. </ul>
  402. <pre>
  403. <span class="reference-text">en.wikipedia.org|&lt;same_lang&gt;
  404. en.wiktionary.org|&lt;same_type&gt;
  405. fr.wikivoyage.org,en.wikivoyage.org|&lt;self&gt;,en.wikipedia.org
  406. &lt;any&gt;|&lt;self&gt;
  407. </span>
  408. </pre>
  409. <ul>
  410. <li>
  411. <span class="reference-text">Line 1 means "For English Wikipedia, seach all English wikis, such as English Wiktionary, English Wikisource, English Wikivoyage, etc."</span>
  412. </li>
  413. <li>
  414. <span class="reference-text">Line 2 means "For English Wiktionary, search all Wiktionarys, such as English Wiktionary, French Wiktionary, German Wiktionary, etc."</span>
  415. </li>
  416. <li>
  417. <span class="reference-text">Line 3 means "For French Wikivoyage and English Wikivoyage, search the current wiki and English Wikipedia"</span>
  418. </li>
  419. <li>
  420. <span class="reference-text">Line 4 means "For any wiki, search only the current wiki"</span>
  421. </li>
  422. </ul><span class="reference-text">The multi-wikis criteria has the following format:</span>
  423. <ul>
  424. <li>
  425. <span class="reference-text"><b>Line-based</b>: Each line represents a separate rule. A wiki will be compared against the rule, and if it matches, only that rule will apply. If it doesn't match, it goes on to the next line.</span>
  426. </li>
  427. <li>
  428. <span class="reference-text"><b>Match</b>: The match part is the text before the first pipe (<code>|</code>). Think of this as "when in this wiki...". This can be a wiki domain (en.wikipedia.org), a languages wildcard (en.*), a type wildcard (*.wikipedia) or the reserved word &lt;any&gt;). In addition, multiple terms can be chained together (en.wikipedia.org,fr.wikipedia.org).</span>
  429. </li>
  430. <li>
  431. <span class="reference-text"><b>Include</b>: Think of this as "...search these wikis". This can use any term as Match (domain, wildcard, reserved word) but can also use the reserved words: <code>&lt;self&gt;</code>, <code>&lt;same_lang&gt;</code> <code>&lt;same_type&gt;</code></span>
  432. </li>
  433. </ul><span class="reference-text">Terms:</span>
  434. <ul>
  435. <li>
  436. <span class="reference-text"><code>&lt;any&gt;</code>: matches any wiki. For example, in en.wikipedia.org, any wiki is matched, including home, en.wikipedia.org, fr.wiktionary.org, de.wikisource.org, etc..</span>
  437. </li>
  438. <li>
  439. <span class="reference-text"><code>&lt;self&gt;</code>: matches only the current wiki. For example, in en.wikipedia.org, only en.wikipedia.org is matched.</span>
  440. </li>
  441. <li>
  442. <span class="reference-text"><code>&lt;same_lang&gt;</code>: matches wikis with the same language. For example, in en.wikipedia.org, en.wiktionary.org, en.wikisource.org, etc. are matched. However, fr.wiktionary.org and de.wikisource.org are not matched.</span>
  443. </li>
  444. <li>
  445. <span class="reference-text"><code>&lt;same_type&gt;</code>: matches wikis with the same type. For example, in en.wikipedia.org, fr.wikipedia.org, de.wikipedia.org, ru.wikipedia.org, etc. are matched. However, en.wiktionary.org, en.wikisource.org, etc. are not matched.</span>
  446. </li>
  447. <li>
  448. <span class="reference-text"><code>{language}.*</code>: matches all wikis of that language. For example, "en.*" will match en.wikipedia.org, en.wiktionary.org, en.wikisource.org, etc regardless of the current wiki</span>
  449. </li>
  450. <li>
  451. <span class="reference-text"><code>*.{type}</code>: matches all wikis of that type. For example, "*.wikipedia" will match en.wikipedia.org, fr.wikipedia.org, de.wikipedia.org, etc</span>
  452. </li>
  453. </ul>
  454. </li>
  455. <li id="cite_note-multi_sorts-5">
  456. <span class="mw-cite-backlink"><a href="#cite_ref-multi_sorts_5-0">^</a></span> <span class="reference-text">Enter sorting-order for multiple wikis: (default is <code>&lt;any&gt;|&lt;self&gt;,*.wikipedia,*.wikivoyage,*.wiktionary,*.wikisource,*.wikiquote,*.wikibooks,*.wikiversity,*.wikinews</code> ) . The sort criteria has the following format:</span>
  457. <ul>
  458. <li>
  459. <span class="reference-text"><b>Line-based</b>: Each line represents a separate rule. A wiki will be compared against the rule, and if it matches, only that rule will apply. If it doesn't match, it goes on to the next line.</span>
  460. </li>
  461. <li>
  462. <span class="reference-text"><b>Match</b>: The match part is the text before the first pipe (<code>|</code>). Think of this as "when in this wiki...". This can be a wiki domain (en.wikipedia.org), a languages wildcard (en.*), a type wildcard (*.wikipedia) or the reserved word &lt;any&gt;). In addition, multiple terms can be chained together (en.wikipedia.org,fr.wikipedia.org).</span>
  463. </li>
  464. <li>
  465. <span class="reference-text"><b>Sort</b>: Think of this as "...sort according to following order".</span>
  466. </li>
  467. <li>
  468. <span class="reference-text">For example, consider if the following wikis are searched: en.wikipedia.org and en.wiktionary.org. Since en.wikipedia.org matches *.wikipedia.org, it will be sorted before en.wiktionary.org (which matches *.wiktionary.org)</span>
  469. </li>
  470. </ul>
  471. </li>
  472. </ol>
  473. </div>
  474. </div>
  475. </div>
  476. </div>
  477. </div>
  478. <div id="mw-head" class="noprint">
  479. <div id="left-navigation">
  480. <div id="p-namespaces" class="vectorTabs">
  481. <h3>Namespaces</h3>
  482. <ul>
  483. <li id="ca-nstab-main" class="selected"><span><a id="ca-nstab-main-href" href="index.html">Page</a></span></li>
  484. </ul>
  485. </div>
  486. </div>
  487. </div>
  488. <div id='mw-panel' class='noprint'>
  489. <div id='p-logo'>
  490. <a style="background-image: url(https://gnosygnu.github.io/xowa/xowa_logo.png);" href="http://xowa.org/" title="Visit the main page"></a>
  491. </div>
  492. <div class="portal" id='xowa-portal-home'>
  493. <h3>XOWA</h3>
  494. <div class="body">
  495. <ul>
  496. <li><a href="http://xowa.org/index.html" title='Visit the main page'>Main page</a></li>
  497. <li><a href="http://xowa.org/screenshots.html" title='See screenshots of XOWA'>Screenshots</a></li>
  498. <li><a href="http://xowa.org/wiki/home/page/Help/Download_XOWA.html" title='Download the XOWA application'>Download XOWA</a></li>
  499. <li><a href="http://xowa.org/wiki/home/page/Dashboard/Image_databases.html" title='Download offline wikis and image databases'>Download wikis</a></li>
  500. </ul>
  501. </div>
  502. </div>
  503. <div class="portal" id='xowa-portal-stargin'>
  504. <h3>Getting started</h3>
  505. <div class="body">
  506. <ul>
  507. <li><a href="http://xowa.org/wiki/home/page/App/Setup/System_requirements.html" title='Get XOWA&apos;s system requirements'>Requirements</a></li>
  508. <li><a href="http://xowa.org/wiki/home/page/App/Setup/Installation.html" title='Get instructions for installing XOWA'>Installation</a></li>
  509. <li><a href="http://xowa.org/wiki/home/page/App/Import/Simple_Wikipedia.html" title='Learn how to set up Simple Wikipedia'>Simple Wikipedia</a></li>
  510. <li><a href="http://xowa.org/wiki/home/page/App/Import/English_Wikipedia.html" title='Learn how to set up English Wikipedia'>English Wikipedia</a></li>
  511. <li><a href="http://xowa.org/wiki/home/page/App/Import/Other_wikis.html" title='Learn how to set up other Wikipedias'>Other Wikipedias</a></li>
  512. </ul>
  513. </div>
  514. </div>
  515. <div class="portal" id='xowa-portal-help'>
  516. <h3>Help</h3>
  517. <div class="body">
  518. <ul>
  519. <li><a href="http://xowa.org/wiki/home/page/Help/About.html" title='Get more information about XOWA'>About</a></li>
  520. <li><a href="http://xowa.org/wiki/home/page/Help/Contents.html" title='View a list of help topics'>Contents</a></li>
  521. <li><a href="http://xowa.org/wiki/home/page/Help/Media.html" title='Read what others have written about XOWA'>Media</a></li>
  522. <li><a href="http://xowa.org/wiki/home/page/Help/Feedback.html" title='Questions? Comments? Leave feedback for XOWA'>Feedback</a></li>
  523. </ul>
  524. </div>
  525. </div>
  526. <div class="portal" id='xowa-portal-blog'>
  527. <h3>Blog</h3>
  528. <div class="body">
  529. <ul>
  530. <li><a href="http://xowa.org/wiki/home/page/Blog.html" title='Follow XOWA''s development process'>Current</a></li>
  531. </ul>
  532. </div>
  533. </div>
  534. <div class="portal" id='xowa-portal-links'>
  535. <h3>Links</h3>
  536. <div class="body">
  537. <ul>
  538. <li><a href="http://dumps.wikimedia.org/backup-index.html" title="Get wiki datababase dumps directly from Wikimedia">Wikimedia dumps</a></li>
  539. <li><a href="https://archive.org/search.php?query=xowa" title="Search archive.org for XOWA files">XOWA @ archive.org</a></li>
  540. <li><a href="http://en.wikipedia.org" title="Visit Wikipedia (and compare to XOWA!)">English Wikipedia</a></li>
  541. </ul>
  542. </div>
  543. </div>
  544. <div class="portal" id='xowa-portal-donate'>
  545. <h3>Donate</h3>
  546. <div class="body">
  547. <ul>
  548. <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/ -->
  549. <li><a href="https://donate.wikimedia.org/wiki/Special:FundraiserRedirector" title="Support Wikipedia!">Wikipedia</a></li>
  550. <!-- <li><a href="" title="Support XOWA! (but only after you've supported archive.org and Wikipedia)">XOWA</a></li> -->
  551. </ul>
  552. </div>
  553. </div>
  554. </div>
  555. </body>
  556. </html>