Options.html 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662
  1. <!DOCTYPE html>
  2. <html dir="ltr">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
  5. <title>Options - 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. .console {font-family: monospace; color: #EEEEEE ; background-color: black ; border: medium solid black;}
  105. .code
  106. ,.path
  107. ,.url {font-family: monospace; color: black ; background-color: #f9f9f9 ; border: medium solid #f9f9f9;}
  108. .bold {font-weight: 900;}
  109. </style>
  110. <style>
  111. .options_row_label {font-weight:bold; vertical-align:text-top; text-align:right; width:150px;}
  112. .options_table {border: 1px solid #AAAAAA; border-collapse: collapse; color: black; margin: 1em 0; background-color: #F9F9F9;}
  113. .options_table td {border: 1px solid #AAAAAA; padding: 0.2em;}
  114. .options_textbox {padding: 2px; border: 1px solid black;}
  115. .options_textbox_num {padding: 2px; border: 1px solid black; text-align:right;}
  116. .options_textarea {padding: 2px; border: 1px solid black;}
  117. .options_select {padding: 2px; border: 1px solid black;}
  118. .options_button {padding: 2px; border: 1px solid black; background: white; height: 22px; margin-left: 1px; vertical-align: top;}
  119. .options_checkbox {padding: 2px; border: 1px solid black;}
  120. .options_readonly {background-color:#F9F9F9;}
  121. </style>
  122. <style>
  123. .optionsButton
  124. {
  125. width: 100px;
  126. height: 40px;
  127. font-family: 'Segoe UI';
  128. font-size: 12px;
  129. margin-left: -5px;
  130. cursor: pointer;
  131. background-color: lightgray;
  132. text-align: center;
  133. }
  134. .optionsLink
  135. {
  136. color: black !important;
  137. text-decoration: none;
  138. }
  139. .optionsButton.active
  140. {
  141. width: 100px;
  142. height: 40px;
  143. font-family: 'Segoe UI';
  144. font-size: 12px;
  145. margin-left: -5px;
  146. cursor: pointer;
  147. background-color: dimgray;
  148. color: white !important;
  149. border: solid 1px dimgray;
  150. }
  151. .optionsButton.active a
  152. {
  153. color: white !important;
  154. }
  155. .tabs
  156. {
  157. width: 100%;
  158. margin-top: 10px;
  159. }
  160. .tab-links ul
  161. {
  162. margin-left: -40px;
  163. }
  164. .tab-links li
  165. {
  166. margin: 0px 0px 0px 0px;
  167. float: left;
  168. list-style: none;
  169. }
  170. .tab-links a
  171. {
  172. padding: 9px 15px 9px 15px;
  173. border-radius: 3px 3px 0px 0px;
  174. background: #f0f0f0;
  175. font-family: 'Segoe UI';
  176. font-size: 13px;
  177. color: black !important;
  178. text-decoration: none;
  179. border-radius: 3px;
  180. border-top: solid 1px gray;
  181. border-left: solid 1px gray;
  182. border-right: solid 1px gray;
  183. }
  184. .tab-links a:hover
  185. {
  186. background: #B0B0B0;
  187. text-decoration: none;
  188. }
  189. li.active a, li.active a:hover
  190. {
  191. background: #fff;
  192. color: #4c4c4c;
  193. font-weight: bold;
  194. }
  195. .tab-content
  196. {
  197. padding: 15px;
  198. border-radius: 3px;
  199. background: #fff;
  200. border-top: solid 1px gray;
  201. margin-top: 5px;
  202. min-height: 300px;
  203. }
  204. </style>
  205. <style>
  206. .console {font-family: monospace; color: #EEEEEE ; background-color: black ; border: medium solid black;}
  207. .code
  208. ,.path
  209. ,.url {font-family: monospace; color: black ; background-color: #f9f9f9 ; border: medium solid #f9f9f9;}
  210. .bold {font-weight: 900;}
  211. </style>
  212. </head>
  213. <body class="mediawiki ltr sitedir-ltr ns-0 ns-subject skin-vector action-submit vector-animateLayout" spellcheck="false">
  214. <div id="mw-page-base" class="noprint"></div>
  215. <div id="mw-head-base" class="noprint"></div>
  216. <div id="content" class="mw-body">
  217. <h1 id="firstHeading" class="firstHeading"><span>Options</span></h1>
  218. <div id="bodyContent" class="mw-body-content">
  219. <div id="siteSub">From XOWA: the free, open-source, offline wiki application</div>
  220. <div id="contentSub"></div>
  221. <div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr">
  222. <div>
  223. <table>
  224. <tr>
  225. <td class='optionsButton'>
  226. <a class='optionsLink' href='/wiki/Options/Window'>Apps (basic)</a>
  227. </td>
  228. <td class='optionsButton'>
  229. <a class='optionsLink' href='/wiki/Options/Security'>Apps (advanced)</a>
  230. </td>
  231. <td class='optionsButton'>
  232. <a class='optionsLink' href='/wiki/Options/Import'>Wiki</a>
  233. </td>
  234. <td class='optionsButton'>
  235. <a class='optionsLink' href='/wiki/Options/HTML'>HTML</a>
  236. </td>
  237. <td class='optionsButton'>
  238. <a class='optionsLink' href='/wiki/Options/Content_apps'>External apps</a>
  239. </td>
  240. <td class='optionsButton'>
  241. <a class='optionsLink' href='/wiki/Options/Search_suggest'>Modules</a>
  242. </td>
  243. <td class='optionsButton'>
  244. <a class='optionsLink' href='/wiki/Options/Math'>Extensions</a>
  245. </td>
  246. <td class='optionsButton'>
  247. <a class='optionsLink' href='/wiki/Options/Dev'>Misc</a>
  248. </td>
  249. </tr>
  250. </table>
  251. </div>
  252. <div class="tabs">
  253. <p>
  254. <br>
  255. </p>
  256. <div class='tab-content'>
  257. <div id="toc" class="toc">
  258. <div id="toctitle">
  259. <h2>
  260. Contents
  261. </h2>
  262. </div>
  263. <ul>
  264. <li class="toclevel-1 tocsection-1">
  265. <a href="#App_.28basic.29"><span class="tocnumber">1</span> <span class="toctext">App (basic)</span></a>
  266. </li>
  267. <li class="toclevel-1 tocsection-2">
  268. <a href="#App_.28advanced.29"><span class="tocnumber">2</span> <span class="toctext">App (advanced)</span></a>
  269. </li>
  270. <li class="toclevel-1 tocsection-3">
  271. <a href="#Wiki"><span class="tocnumber">3</span> <span class="toctext">Wiki</span></a>
  272. </li>
  273. <li class="toclevel-1 tocsection-4">
  274. <a href="#HTML"><span class="tocnumber">4</span> <span class="toctext">HTML</span></a>
  275. </li>
  276. <li class="toclevel-1 tocsection-5">
  277. <a href="#External_apps"><span class="tocnumber">5</span> <span class="toctext">External apps</span></a>
  278. </li>
  279. <li class="toclevel-1 tocsection-6">
  280. <a href="#Modules"><span class="tocnumber">6</span> <span class="toctext">Modules</span></a>
  281. </li>
  282. <li class="toclevel-1 tocsection-7">
  283. <a href="#Extensions"><span class="tocnumber">7</span> <span class="toctext">Extensions</span></a>
  284. </li>
  285. <li class="toclevel-1 tocsection-8">
  286. <a href="#Miscellaneous"><span class="tocnumber">8</span> <span class="toctext">Miscellaneous</span></a>
  287. </li>
  288. <li class="toclevel-1 tocsection-9">
  289. <a href="#Usage_Notes"><span class="tocnumber">9</span> <span class="toctext">Usage Notes</span></a>
  290. </li>
  291. </ul>
  292. </div>
  293. <ul>
  294. <li>
  295. All values are saved to <span class='path'>C:\xowa\user\anonymous\app\data\cfg\xowa_user_cfg.gfs</span>
  296. </li>
  297. </ul>
  298. <div>
  299. Reset options to default values&nbsp;⊗
  300. </div><sup id="cite_ref-options_reset_all_0-0" class="reference"><a href="#cite_note-options_reset_all-0">[1]</a></sup>
  301. <h2>
  302. <span class="mw-headline" id="App_.28basic.29">App (basic)</span>
  303. </h2>
  304. <table class='options_table'>
  305. <tr>
  306. <td class='options_row_label'>
  307. <a href="http://xowa.org/wiki/home/page/Options/Window.html" id="xolnki_2" title="Options/Window" class="xowa-visited">Window</a>
  308. </td>
  309. <td>
  310. Window Font and Startup position
  311. </td>
  312. </tr>
  313. <tr>
  314. <td class='options_row_label'>
  315. <a href="http://xowa.org/wiki/home/page/Options/Language.html" id="xolnki_3" title="Options/Language">Language</a>
  316. </td>
  317. <td>
  318. UI Language
  319. </td>
  320. </tr>
  321. <tr>
  322. <td class='options_row_label'>
  323. <a href="http://xowa.org/wiki/home/page/Options/Tabs.html" id="xolnki_4" title="Options/Tabs">Tabs</a>
  324. </td>
  325. <td>
  326. Tab appearance and behavior
  327. </td>
  328. </tr>
  329. <tr>
  330. <td class='options_row_label'>
  331. <a href="http://xowa.org/wiki/home/page/Options/Startup.html" id="xolnki_5" title="Options/Startup">Startup</a>
  332. </td>
  333. <td>
  334. Application startup options
  335. </td>
  336. </tr>
  337. </table>
  338. <h2>
  339. <span class="mw-headline" id="App_.28advanced.29">App (advanced)</span>
  340. </h2>
  341. <table class='options_table'>
  342. <tr>
  343. <td class='options_row_label'>
  344. <a href="http://xowa.org/wiki/home/page/Options/Security.html" id="xolnki_6" title="Options/Security" class="xowa-visited">Security</a>
  345. </td>
  346. <td>
  347. Disable Javascript or internet access
  348. </td>
  349. </tr>
  350. <tr>
  351. <td class='options_row_label'>
  352. <a href="http://xowa.org/wiki/home/page/Options/Shortcuts.html" id="xolnki_7" title="Options/Shortcuts" class="xowa-visited">Shortcuts</a>
  353. </td>
  354. <td>
  355. Keyboard shortcuts
  356. </td>
  357. </tr>
  358. <tr>
  359. <td class='options_row_label'>
  360. <a href="http://xowa.org/wiki/home/page/Options/Menus.html" id="xolnki_8" title="Options/Menus" class="xowa-visited">Menus</a>
  361. </td>
  362. <td>
  363. Change the menu bar or right-click menu
  364. </td>
  365. </tr>
  366. <tr>
  367. <td class='options_row_label'>
  368. <a href="http://xowa.org/wiki/home/page/Options/Config_script.html" id="xolnki_9" title="Options/Config script">Config script</a>
  369. </td>
  370. <td>
  371. Change the startup configuration script
  372. </td>
  373. </tr>
  374. </table>
  375. <h2>
  376. <span class="mw-headline" id="Wiki">Wiki</span>
  377. </h2>
  378. <table class='options_table'>
  379. <tr>
  380. <td class='options_row_label'>
  381. <a href="http://xowa.org/wiki/home/page/Options/Import.html" id="xolnki_10" title="Options/Import" class="xowa-visited">Import</a>
  382. </td>
  383. <td>
  384. Import options
  385. </td>
  386. </tr>
  387. <tr>
  388. <td class='options_row_label'>
  389. <a href="http://xowa.org/wiki/home/page/Options/Files.html" id="xolnki_11" title="Options/Files" class="xowa-visited">Files</a>
  390. </td>
  391. <td>
  392. File / image options
  393. </td>
  394. </tr>
  395. <tr>
  396. <td class='options_row_label'>
  397. <a href="http://xowa.org/wiki/home/page/Options/Category.html" id="xolnki_12" title="Options/Category" class="xowa-visited">Category</a>
  398. </td>
  399. <td>
  400. Category options
  401. </td>
  402. </tr>
  403. </table>
  404. <h2>
  405. <span class="mw-headline" id="HTML">HTML</span>
  406. </h2>
  407. <table class='options_table'>
  408. <tr>
  409. <td class='options_row_label'>
  410. <a href="http://xowa.org/wiki/home/page/Options/HTML.html" id="xolnki_13" title="Options/HTML" class="xowa-visited">Appearance</a>
  411. </td>
  412. <td>
  413. HTML page font and custom CSS
  414. </td>
  415. </tr>
  416. <tr>
  417. <td class='options_row_label'>
  418. <a href="http://xowa.org/wiki/home/page/Options/Wiki_HTML.html" id="xolnki_14" title="Options/Wiki HTML" class="xowa-visited">Wiki</a>
  419. </td>
  420. <td>
  421. Miscellaneous wiki HTML options
  422. </td>
  423. </tr>
  424. <tr>
  425. <td class='options_row_label'>
  426. <a href="http://xowa.org/wiki/home/page/Options/HTML_Tidy.html" id="xolnki_15" title="Options/HTML Tidy">Tidy</a>
  427. </td>
  428. <td>
  429. HTML Tidy options
  430. </td>
  431. </tr>
  432. </table>
  433. <h2>
  434. <span class="mw-headline" id="External_apps">External apps</span>
  435. </h2>
  436. <table class='options_table'>
  437. <tr>
  438. <td class='options_row_label'>
  439. <a href="http://xowa.org/wiki/home/page/Options/Content_apps.html" id="xolnki_16" title="Options/Content apps" class="xowa-visited">Content Apps</a>
  440. </td>
  441. <td>
  442. Content applications (web browser, image viewer, media player)
  443. </td>
  444. </tr>
  445. <tr>
  446. <td class='options_row_label'>
  447. <a href="http://xowa.org/wiki/home/page/Options/Firefox_addon.html" id="xolnki_17" title="Options/Firefox addon">Firefox Add-on</a>
  448. </td>
  449. <td>
  450. Firefox Add-on: Run XOWA inside Firefox
  451. </td>
  452. </tr>
  453. <tr>
  454. <td class='options_row_label'>
  455. <a href="http://xowa.org/wiki/home/page/Options/HTTP_server.html" id="xolnki_18" title="Options/HTTP server" class="xowa-visited">HTTP Server</a>
  456. </td>
  457. <td>
  458. HTTP Server: Run XOWA as an HTTP Server
  459. </td>
  460. </tr>
  461. </table>
  462. <h2>
  463. <span class="mw-headline" id="Modules">Modules</span>
  464. </h2>
  465. <table class='options_table'>
  466. <tr>
  467. <td class='options_row_label'>
  468. <a href="http://xowa.org/wiki/home/page/Options/Search_suggest.html" id="xolnki_19" title="Options/Search suggest" class="xowa-visited">Search suggest</a>
  469. </td>
  470. <td>
  471. Search suggest options (controls behavior in the search box)
  472. </td>
  473. </tr>
  474. <tr>
  475. <td class='options_row_label'>
  476. <a href="http://xowa.org/wiki/home/page/Options/Search.html" id="xolnki_20" title="Options/Search" class="xowa-visited">Search</a>
  477. </td>
  478. <td>
  479. Search options (controls behavior for Special:Search)
  480. </td>
  481. </tr>
  482. <tr>
  483. <td class='options_row_label'>
  484. <a href="http://xowa.org/wiki/home/page/Options/Popups.html" id="xolnki_21" title="Options/Popups">Popups</a>
  485. </td>
  486. <td>
  487. Popups that appear when hovering over a link
  488. </td>
  489. </tr>
  490. </table>
  491. <h2>
  492. <span class="mw-headline" id="Extensions">Extensions</span>
  493. </h2>
  494. <table class='options_table'>
  495. <tr>
  496. <td class='options_row_label'>
  497. <a href="http://xowa.org/wiki/home/page/Options/Math.html" id="xolnki_22" title="Options/Math">Math</a>
  498. </td>
  499. <td>
  500. Math options (text called in an {{#math}} statement)
  501. </td>
  502. </tr>
  503. <tr>
  504. <td class='options_row_label'>
  505. <a href="http://xowa.org/wiki/home/page/Options/Scribunto.html" id="xolnki_23" title="Options/Scribunto">Scribunto</a>
  506. </td>
  507. <td>
  508. Scribunto/Lua options (text called in an {{#invoke}} statement)
  509. </td>
  510. </tr>
  511. <tr>
  512. <td class='options_row_label'>
  513. <a href="http://xowa.org/wiki/home/page/Options/Score.html" id="xolnki_24" title="Options/Score">Score</a>
  514. </td>
  515. <td>
  516. Score options (text called in a &lt;score&gt; statement; used to render musical scores)
  517. </td>
  518. </tr>
  519. <tr>
  520. <td class='options_row_label'>
  521. <a href="http://xowa.org/wiki/home/page/Options/Wikibase.html" id="xolnki_25" title="Options/Wikibase">Wikibase</a>
  522. </td>
  523. <td>
  524. Wikidata options
  525. </td>
  526. </tr>
  527. </table>
  528. <h2>
  529. <span class="mw-headline" id="Miscellaneous">Miscellaneous</span>
  530. </h2>
  531. <table class='options_table'>
  532. <tr>
  533. <td class='options_row_label'>
  534. <a href="http://xowa.org/wiki/home/page/Options/Dev.html" id="xolnki_26" title="Options/Dev" class="xowa-visited">Dev</a>
  535. </td>
  536. <td>
  537. Developer options
  538. </td>
  539. </tr>
  540. </table>
  541. <p>
  542. <br>
  543. </p>
  544. <h2>
  545. <span class="mw-headline" id="Usage_Notes">Usage Notes</span>
  546. </h2>
  547. <ol class="references">
  548. <li id="cite_note-options_reset_all-0">
  549. <span class="mw-cite-backlink"><a href="#cite_ref-options_reset_all_0-0">^</a></span> <span class="reference-text">Clears all customized options. Restore options to their original defaults. Requires restart of XOWA.</span>
  550. </li>
  551. </ol>
  552. </div>
  553. </div>
  554. </div>
  555. </div>
  556. </div>
  557. <div id="mw-head" class="noprint">
  558. <div id="left-navigation">
  559. <div id="p-namespaces" class="vectorTabs">
  560. <h3>Namespaces</h3>
  561. <ul>
  562. <li id="ca-nstab-main" class="selected"><span><a id="ca-nstab-main-href" href="index.html">Page</a></span></li>
  563. </ul>
  564. </div>
  565. </div>
  566. </div>
  567. <div id='mw-panel' class='noprint'>
  568. <div id='p-logo'>
  569. <a style="background-image: url(https://gnosygnu.github.io/xowa/xowa_logo.png);" href="http://xowa.org/" title="Visit the main page"></a>
  570. </div>
  571. <div class="portal" id='xowa-portal-home'>
  572. <h3>XOWA</h3>
  573. <div class="body">
  574. <ul>
  575. <li><a href="http://xowa.org/index.html" title='Visit the main page'>Main page</a></li>
  576. <li><a href="http://xowa.org/screenshots.html" title='See screenshots of XOWA'>Screenshots</a></li>
  577. <li><a href="http://xowa.org/wiki/home/page/Help/Download_XOWA.html" title='Download the XOWA application'>Download XOWA</a></li>
  578. <li><a href="http://xowa.org/wiki/home/page/Dashboard/Image_databases.html" title='Download offline wikis and image databases'>Download wikis</a></li>
  579. </ul>
  580. </div>
  581. </div>
  582. <div class="portal" id='xowa-portal-stargin'>
  583. <h3>Getting started</h3>
  584. <div class="body">
  585. <ul>
  586. <li><a href="http://xowa.org/wiki/home/page/App/Setup/System_requirements.html" title='Get XOWA&apos;s system requirements'>Requirements</a></li>
  587. <li><a href="http://xowa.org/wiki/home/page/App/Setup/Installation.html" title='Get instructions for installing XOWA'>Installation</a></li>
  588. <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>
  589. <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>
  590. <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>
  591. </ul>
  592. </div>
  593. </div>
  594. <div class="portal" id='xowa-portal-help'>
  595. <h3>Help</h3>
  596. <div class="body">
  597. <ul>
  598. <li><a href="http://xowa.org/wiki/home/page/Help/About.html" title='Get more information about XOWA'>About</a></li>
  599. <li><a href="http://xowa.org/wiki/home/page/Help/Contents.html" title='View a list of help topics'>Contents</a></li>
  600. <li><a href="http://xowa.org/wiki/home/page/Help/Media.html" title='Read what others have written about XOWA'>Media</a></li>
  601. <li><a href="http://xowa.org/wiki/home/page/Help/Feedback.html" title='Questions? Comments? Leave feedback for XOWA'>Feedback</a></li>
  602. </ul>
  603. </div>
  604. </div>
  605. <div class="portal" id='xowa-portal-blog'>
  606. <h3>Blog</h3>
  607. <div class="body">
  608. <ul>
  609. <li><a href="http://xowa.org/wiki/home/page/Blog.html" title='Follow XOWA''s development process'>Current</a></li>
  610. </ul>
  611. </div>
  612. </div>
  613. <div class="portal" id='xowa-portal-links'>
  614. <h3>Links</h3>
  615. <div class="body">
  616. <ul>
  617. <li><a href="http://dumps.wikimedia.org/backup-index.html" title="Get wiki datababase dumps directly from Wikimedia">Wikimedia dumps</a></li>
  618. <li><a href="https://archive.org/search.php?query=xowa" title="Search archive.org for XOWA files">XOWA @ archive.org</a></li>
  619. <li><a href="http://en.wikipedia.org" title="Visit Wikipedia (and compare to XOWA!)">English Wikipedia</a></li>
  620. </ul>
  621. </div>
  622. </div>
  623. <div class="portal" id='xowa-portal-donate'>
  624. <h3>Donate</h3>
  625. <div class="body">
  626. <ul>
  627. <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/ -->
  628. <li><a href="https://donate.wikimedia.org/wiki/Special:FundraiserRedirector" title="Support Wikipedia!">Wikipedia</a></li>
  629. <!-- <li><a href="" title="Support XOWA! (but only after you've supported archive.org and Wikipedia)">XOWA</a></li> -->
  630. </ul>
  631. </div>
  632. </div>
  633. </div>
  634. </body>
  635. </html>