Shortcuts.html 111 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301
  1. <!DOCTYPE html>
  2. <html dir="ltr">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
  5. <title>Options/Shortcuts - 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/Shortcuts</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 active'>
  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'>
  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/Security'>Security</a>
  243. </li>
  244. <li class='active'>
  245. <a href='/wiki/Options/Shortcuts'>Shortcuts</a>
  246. </li>
  247. <li class=''>
  248. <a href='/wiki/Options/Menus'>Menus</a>
  249. </li>
  250. <li class=''>
  251. <a href='/wiki/Options/Config_script'>Config script</a>
  252. </li>
  253. </ul>
  254. </div><br>
  255. <div class='tab-content'>
  256. <div id="toc" class="toc">
  257. <div id="toctitle">
  258. <h2>
  259. Contents
  260. </h2>
  261. </div>
  262. <ul>
  263. <li class="toclevel-1 tocsection-1">
  264. <a href="#Shortcuts"><span class="tocnumber">1</span> <span class="toctext">Shortcuts</span></a>
  265. </li>
  266. <li class="toclevel-1 tocsection-2">
  267. <a href="#Notes"><span class="tocnumber">2</span> <span class="toctext">Notes</span></a>
  268. </li>
  269. </ul>
  270. </div>
  271. <div style='float:right'>
  272. <a href='#' onclick='return change_binding("", "", "")'>show keybinding</a>
  273. </div><br>
  274. <div style='float:right; margin-right:10px; margin-top:5px;'>
  275. <p>
  276. <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>
  277. </p>
  278. </div><br>
  279. <h2>
  280. <span class="mw-headline" id="Shortcuts">Shortcuts</span>
  281. </h2>
  282. <table class='wikitable sortable'>
  283. <tr>
  284. <th>
  285. Category
  286. </th>
  287. <th>
  288. Name
  289. </th>
  290. <th>
  291. Scope
  292. </th>
  293. <th>
  294. Shortcut
  295. </th>
  296. </tr>
  297. <tr>
  298. <td width='15%'>
  299. &lt;&lt;NULL&gt;&gt;
  300. </td>
  301. <td width='25%'>
  302. &lt;null&gt;<sup id="cite_ref-xowa.app.exit-1_0-0" class="reference"><a href="#cite_note-xowa.app.exit-1-0">[1]</a></sup>
  303. </td>
  304. <td width='10%'>
  305. <input id='1_scope' type='text' class='options_textbox' value='Window'>
  306. </td>
  307. <td width='50%'>
  308. <input id='1_ipt' type='text' class='options_textbox' value='Ctrl + Q' onchange="ipt_changed('1');" accesskey=',' style='width:99%'>
  309. </td>
  310. </tr>
  311. <tr>
  312. <td width='15%'>
  313. &lt;&lt;NULL&gt;&gt;
  314. </td>
  315. <td width='25%'>
  316. &lt;null&gt;<sup id="cite_ref-xowa.nav.go_bwd-1_1-0" class="reference"><a href="#cite_note-xowa.nav.go_bwd-1-1">[2]</a></sup>
  317. </td>
  318. <td width='10%'>
  319. <input id='2_scope' type='text' class='options_textbox' value='Window'>
  320. </td>
  321. <td width='50%'>
  322. <input id='2_ipt' type='text' class='options_textbox' value='Alt + Left' onchange="ipt_changed('2');" accesskey=',' style='width:99%'>
  323. </td>
  324. </tr>
  325. <tr>
  326. <td width='15%'>
  327. &lt;&lt;NULL&gt;&gt;
  328. </td>
  329. <td width='25%'>
  330. &lt;null&gt;<sup id="cite_ref-xowa.nav.go_fwd-1_2-0" class="reference"><a href="#cite_note-xowa.nav.go_fwd-1-2">[3]</a></sup>
  331. </td>
  332. <td width='10%'>
  333. <input id='3_scope' type='text' class='options_textbox' value='Window'>
  334. </td>
  335. <td width='50%'>
  336. <input id='3_ipt' type='text' class='options_textbox' value='Alt + Right' onchange="ipt_changed('3');" accesskey=',' style='width:99%'>
  337. </td>
  338. </tr>
  339. <tr>
  340. <td width='15%'>
  341. &lt;&lt;NULL&gt;&gt;
  342. </td>
  343. <td width='25%'>
  344. &lt;null&gt;<sup id="cite_ref-xowa.nav.cfg.main-1_3-0" class="reference"><a href="#cite_note-xowa.nav.cfg.main-1-3">[4]</a></sup>
  345. </td>
  346. <td width='10%'>
  347. <input id='4_scope' type='text' class='options_textbox' value='Window'>
  348. </td>
  349. <td width='50%'>
  350. <input id='4_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('4');" accesskey=',' style='width:99%'>
  351. </td>
  352. </tr>
  353. <tr>
  354. <td width='15%'>
  355. &lt;&lt;NULL&gt;&gt;
  356. </td>
  357. <td width='25%'>
  358. &lt;null&gt;<sup id="cite_ref-xowa.nav.cfg.menus-1_4-0" class="reference"><a href="#cite_note-xowa.nav.cfg.menus-1-4">[5]</a></sup>
  359. </td>
  360. <td width='10%'>
  361. <input id='5_scope' type='text' class='options_textbox' value='Window'>
  362. </td>
  363. <td width='50%'>
  364. <input id='5_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('5');" accesskey=',' style='width:99%'>
  365. </td>
  366. </tr>
  367. <tr>
  368. <td width='15%'>
  369. &lt;&lt;NULL&gt;&gt;
  370. </td>
  371. <td width='25%'>
  372. &lt;null&gt;<sup id="cite_ref-xowa.nav.wiki.main_page-1_5-0" class="reference"><a href="#cite_note-xowa.nav.wiki.main_page-1-5">[6]</a></sup>
  373. </td>
  374. <td width='10%'>
  375. <input id='6_scope' type='text' class='options_textbox' value='Window'>
  376. </td>
  377. <td width='50%'>
  378. <input id='6_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('6');" accesskey=',' style='width:99%'>
  379. </td>
  380. </tr>
  381. <tr>
  382. <td width='15%'>
  383. &lt;&lt;NULL&gt;&gt;
  384. </td>
  385. <td width='25%'>
  386. &lt;null&gt;<sup id="cite_ref-xowa.nav.wiki.sandbox-1_6-0" class="reference"><a href="#cite_note-xowa.nav.wiki.sandbox-1-6">[7]</a></sup>
  387. </td>
  388. <td width='10%'>
  389. <input id='8_scope' type='text' class='options_textbox' value='Window'>
  390. </td>
  391. <td width='50%'>
  392. <input id='8_ipt' type='text' class='options_textbox' value='Ctrl + Shift + G, Ctrl + Shift + S' onchange="ipt_changed('8');" accesskey=',' style='width:99%'>
  393. </td>
  394. </tr>
  395. <tr>
  396. <td width='15%'>
  397. &lt;&lt;NULL&gt;&gt;
  398. </td>
  399. <td width='25%'>
  400. &lt;null&gt;<sup id="cite_ref-xowa.nav.wiki.sandbox-2_7-0" class="reference"><a href="#cite_note-xowa.nav.wiki.sandbox-2-7">[8]</a></sup>
  401. </td>
  402. <td width='10%'>
  403. <input id='9_scope' type='text' class='options_textbox' value='Window'>
  404. </td>
  405. <td width='50%'>
  406. <input id='9_ipt' type='text' class='options_textbox' value='Ctrl + F1' onchange="ipt_changed('9');" accesskey=',' style='width:99%'>
  407. </td>
  408. </tr>
  409. <tr>
  410. <td width='15%'>
  411. &lt;&lt;NULL&gt;&gt;
  412. </td>
  413. <td width='25%'>
  414. &lt;null&gt;<sup id="cite_ref-xowa.nav.wiki.random-1_8-0" class="reference"><a href="#cite_note-xowa.nav.wiki.random-1-8">[9]</a></sup>
  415. </td>
  416. <td width='10%'>
  417. <input id='7_scope' type='text' class='options_textbox' value='Window'>
  418. </td>
  419. <td width='50%'>
  420. <input id='7_ipt' type='text' class='options_textbox' value='Ctrl + Shift + R' onchange="ipt_changed('7');" accesskey=',' style='width:99%'>
  421. </td>
  422. </tr>
  423. <tr>
  424. <td width='15%'>
  425. &lt;&lt;NULL&gt;&gt;
  426. </td>
  427. <td width='25%'>
  428. &lt;null&gt;<sup id="cite_ref-xowa.nav.help.help-1_9-0" class="reference"><a href="#cite_note-xowa.nav.help.help-1-9">[10]</a></sup>
  429. </td>
  430. <td width='10%'>
  431. <input id='10_scope' type='text' class='options_textbox' value='Window'>
  432. </td>
  433. <td width='50%'>
  434. <input id='10_ipt' type='text' class='options_textbox' value='F1' onchange="ipt_changed('10');" accesskey=',' style='width:99%'>
  435. </td>
  436. </tr>
  437. <tr>
  438. <td width='15%'>
  439. &lt;&lt;NULL&gt;&gt;
  440. </td>
  441. <td width='25%'>
  442. &lt;null&gt;<sup id="cite_ref-xowa.nav.help.about-1_10-0" class="reference"><a href="#cite_note-xowa.nav.help.about-1-10">[11]</a></sup>
  443. </td>
  444. <td width='10%'>
  445. <input id='13_scope' type='text' class='options_textbox' value='Window'>
  446. </td>
  447. <td width='50%'>
  448. <input id='13_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('13');" accesskey=',' style='width:99%'>
  449. </td>
  450. </tr>
  451. <tr>
  452. <td width='15%'>
  453. &lt;&lt;NULL&gt;&gt;
  454. </td>
  455. <td width='25%'>
  456. &lt;null&gt;<sup id="cite_ref-xowa.nav.help.change_log-1_11-0" class="reference"><a href="#cite_note-xowa.nav.help.change_log-1-11">[12]</a></sup>
  457. </td>
  458. <td width='10%'>
  459. <input id='11_scope' type='text' class='options_textbox' value='Window'>
  460. </td>
  461. <td width='50%'>
  462. <input id='11_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('11');" accesskey=',' style='width:99%'>
  463. </td>
  464. </tr>
  465. <tr>
  466. <td width='15%'>
  467. &lt;&lt;NULL&gt;&gt;
  468. </td>
  469. <td width='25%'>
  470. &lt;null&gt;<sup id="cite_ref-xowa.nav.help.diagnostics-1_12-0" class="reference"><a href="#cite_note-xowa.nav.help.diagnostics-1-12">[13]</a></sup>
  471. </td>
  472. <td width='10%'>
  473. <input id='12_scope' type='text' class='options_textbox' value='Window'>
  474. </td>
  475. <td width='50%'>
  476. <input id='12_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('12');" accesskey=',' style='width:99%'>
  477. </td>
  478. </tr>
  479. <tr>
  480. <td width='15%'>
  481. &lt;&lt;NULL&gt;&gt;
  482. </td>
  483. <td width='25%'>
  484. &lt;null&gt;<sup id="cite_ref-xowa.nav.help.xowa_main-1_13-0" class="reference"><a href="#cite_note-xowa.nav.help.xowa_main-1-13">[14]</a></sup>
  485. </td>
  486. <td width='10%'>
  487. <input id='14_scope' type='text' class='options_textbox' value='Window'>
  488. </td>
  489. <td width='50%'>
  490. <input id='14_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('14');" accesskey=',' style='width:99%'>
  491. </td>
  492. </tr>
  493. <tr>
  494. <td width='15%'>
  495. &lt;&lt;NULL&gt;&gt;
  496. </td>
  497. <td width='25%'>
  498. &lt;null&gt;<sup id="cite_ref-xowa.nav.help.xowa_blog-1_14-0" class="reference"><a href="#cite_note-xowa.nav.help.xowa_blog-1-14">[15]</a></sup>
  499. </td>
  500. <td width='10%'>
  501. <input id='15_scope' type='text' class='options_textbox' value='Window'>
  502. </td>
  503. <td width='50%'>
  504. <input id='15_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('15');" accesskey=',' style='width:99%'>
  505. </td>
  506. </tr>
  507. <tr>
  508. <td width='15%'>
  509. &lt;&lt;NULL&gt;&gt;
  510. </td>
  511. <td width='25%'>
  512. &lt;null&gt;<sup id="cite_ref-xowa.nav.setup.import_from_list-1_15-0" class="reference"><a href="#cite_note-xowa.nav.setup.import_from_list-1-15">[16]</a></sup>
  513. </td>
  514. <td width='10%'>
  515. <input id='16_scope' type='text' class='options_textbox' value='Window'>
  516. </td>
  517. <td width='50%'>
  518. <input id='16_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('16');" accesskey=',' style='width:99%'>
  519. </td>
  520. </tr>
  521. <tr>
  522. <td width='15%'>
  523. &lt;&lt;NULL&gt;&gt;
  524. </td>
  525. <td width='25%'>
  526. &lt;null&gt;<sup id="cite_ref-xowa.nav.setup.import_from_script-1_16-0" class="reference"><a href="#cite_note-xowa.nav.setup.import_from_script-1-16">[17]</a></sup>
  527. </td>
  528. <td width='10%'>
  529. <input id='17_scope' type='text' class='options_textbox' value='Window'>
  530. </td>
  531. <td width='50%'>
  532. <input id='17_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('17');" accesskey=',' style='width:99%'>
  533. </td>
  534. </tr>
  535. <tr>
  536. <td width='15%'>
  537. &lt;&lt;NULL&gt;&gt;
  538. </td>
  539. <td width='25%'>
  540. &lt;null&gt;<sup id="cite_ref-xowa.nav.setup.maintenance-1_17-0" class="reference"><a href="#cite_note-xowa.nav.setup.maintenance-1-17">[18]</a></sup>
  541. </td>
  542. <td width='10%'>
  543. <input id='18_scope' type='text' class='options_textbox' value='Window'>
  544. </td>
  545. <td width='50%'>
  546. <input id='18_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('18');" accesskey=',' style='width:99%'>
  547. </td>
  548. </tr>
  549. <tr>
  550. <td width='15%'>
  551. &lt;&lt;NULL&gt;&gt;
  552. </td>
  553. <td width='25%'>
  554. &lt;null&gt;<sup id="cite_ref-xowa.nav.setup.download-1_18-0" class="reference"><a href="#cite_note-xowa.nav.setup.download-1-18">[19]</a></sup>
  555. </td>
  556. <td width='10%'>
  557. <input id='19_scope' type='text' class='options_textbox' value='Window'>
  558. </td>
  559. <td width='50%'>
  560. <input id='19_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('19');" accesskey=',' style='width:99%'>
  561. </td>
  562. </tr>
  563. <tr>
  564. <td width='15%'>
  565. &lt;&lt;NULL&gt;&gt;
  566. </td>
  567. <td width='25%'>
  568. &lt;null&gt;<sup id="cite_ref-xowa.nav.system_data.log_session-1_19-0" class="reference"><a href="#cite_note-xowa.nav.system_data.log_session-1-19">[20]</a></sup>
  569. </td>
  570. <td width='10%'>
  571. <input id='20_scope' type='text' class='options_textbox' value='Window'>
  572. </td>
  573. <td width='50%'>
  574. <input id='20_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('20');" accesskey=',' style='width:99%'>
  575. </td>
  576. </tr>
  577. <tr>
  578. <td width='15%'>
  579. &lt;&lt;NULL&gt;&gt;
  580. </td>
  581. <td width='25%'>
  582. &lt;null&gt;<sup id="cite_ref-xowa.nav.system_data.cfg_app-1_20-0" class="reference"><a href="#cite_note-xowa.nav.system_data.cfg_app-1-20">[21]</a></sup>
  583. </td>
  584. <td width='10%'>
  585. <input id='21_scope' type='text' class='options_textbox' value='Window'>
  586. </td>
  587. <td width='50%'>
  588. <input id='21_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('21');" accesskey=',' style='width:99%'>
  589. </td>
  590. </tr>
  591. <tr>
  592. <td width='15%'>
  593. &lt;&lt;NULL&gt;&gt;
  594. </td>
  595. <td width='25%'>
  596. &lt;null&gt;<sup id="cite_ref-xowa.nav.system_data.cfg_lang-1_21-0" class="reference"><a href="#cite_note-xowa.nav.system_data.cfg_lang-1-21">[22]</a></sup>
  597. </td>
  598. <td width='10%'>
  599. <input id='22_scope' type='text' class='options_textbox' value='Window'>
  600. </td>
  601. <td width='50%'>
  602. <input id='22_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('22');" accesskey=',' style='width:99%'>
  603. </td>
  604. </tr>
  605. <tr>
  606. <td width='15%'>
  607. &lt;&lt;NULL&gt;&gt;
  608. </td>
  609. <td width='25%'>
  610. &lt;null&gt;<sup id="cite_ref-xowa.nav.system_data.cfg_user-1_22-0" class="reference"><a href="#cite_note-xowa.nav.system_data.cfg_user-1-22">[23]</a></sup>
  611. </td>
  612. <td width='10%'>
  613. <input id='23_scope' type='text' class='options_textbox' value='Window'>
  614. </td>
  615. <td width='50%'>
  616. <input id='23_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('23');" accesskey=',' style='width:99%'>
  617. </td>
  618. </tr>
  619. <tr>
  620. <td width='15%'>
  621. &lt;&lt;NULL&gt;&gt;
  622. </td>
  623. <td width='25%'>
  624. &lt;null&gt;<sup id="cite_ref-xowa.nav.system_data.cfg_custom-1_23-0" class="reference"><a href="#cite_note-xowa.nav.system_data.cfg_custom-1-23">[24]</a></sup>
  625. </td>
  626. <td width='10%'>
  627. <input id='24_scope' type='text' class='options_textbox' value='Window'>
  628. </td>
  629. <td width='50%'>
  630. <input id='24_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('24');" accesskey=',' style='width:99%'>
  631. </td>
  632. </tr>
  633. <tr>
  634. <td width='15%'>
  635. &lt;&lt;NULL&gt;&gt;
  636. </td>
  637. <td width='25%'>
  638. &lt;null&gt;<sup id="cite_ref-xowa.nav.system_data.usr_history-1_24-0" class="reference"><a href="#cite_note-xowa.nav.system_data.usr_history-1-24">[25]</a></sup>
  639. </td>
  640. <td width='10%'>
  641. <input id='25_scope' type='text' class='options_textbox' value='Window'>
  642. </td>
  643. <td width='50%'>
  644. <input id='25_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('25');" accesskey=',' style='width:99%'>
  645. </td>
  646. </tr>
  647. <tr>
  648. <td width='15%'>
  649. &lt;&lt;NULL&gt;&gt;
  650. </td>
  651. <td width='25%'>
  652. &lt;null&gt;<sup id="cite_ref-xowa.gui.font.increase-1_25-0" class="reference"><a href="#cite_note-xowa.gui.font.increase-1-25">[26]</a></sup>
  653. </td>
  654. <td width='10%'>
  655. <input id='26_scope' type='text' class='options_textbox' value='Window'>
  656. </td>
  657. <td width='50%'>
  658. <input id='26_ipt' type='text' class='options_textbox' value='Ctrl + Equal' onchange="ipt_changed('26');" accesskey=',' style='width:99%'>
  659. </td>
  660. </tr>
  661. <tr>
  662. <td width='15%'>
  663. &lt;&lt;NULL&gt;&gt;
  664. </td>
  665. <td width='25%'>
  666. &lt;null&gt;<sup id="cite_ref-xowa.gui.font.decrease-1_26-0" class="reference"><a href="#cite_note-xowa.gui.font.decrease-1-26">[27]</a></sup>
  667. </td>
  668. <td width='10%'>
  669. <input id='27_scope' type='text' class='options_textbox' value='Window'>
  670. </td>
  671. <td width='50%'>
  672. <input id='27_ipt' type='text' class='options_textbox' value='Ctrl + Minus' onchange="ipt_changed('27');" accesskey=',' style='width:99%'>
  673. </td>
  674. </tr>
  675. <tr>
  676. <td width='15%'>
  677. &lt;&lt;NULL&gt;&gt;
  678. </td>
  679. <td width='25%'>
  680. &lt;null&gt;<sup id="cite_ref-xowa.gui.font.reset-1_27-0" class="reference"><a href="#cite_note-xowa.gui.font.reset-1-27">[28]</a></sup>
  681. </td>
  682. <td width='10%'>
  683. <input id='28_scope' type='text' class='options_textbox' value='Window'>
  684. </td>
  685. <td width='50%'>
  686. <input id='28_ipt' type='text' class='options_textbox' value='Ctrl + 0' onchange="ipt_changed('28');" accesskey=',' style='width:99%'>
  687. </td>
  688. </tr>
  689. <tr>
  690. <td width='15%'>
  691. &lt;&lt;NULL&gt;&gt;
  692. </td>
  693. <td width='25%'>
  694. &lt;null&gt;<sup id="cite_ref-xowa.gui.page.view.mode_read-1_28-0" class="reference"><a href="#cite_note-xowa.gui.page.view.mode_read-1-28">[29]</a></sup>
  695. </td>
  696. <td width='10%'>
  697. <input id='29_scope' type='text' class='options_textbox' value='Window'>
  698. </td>
  699. <td width='50%'>
  700. <input id='29_ipt' type='text' class='options_textbox' value='Ctrl + M, Ctrl + R' onchange="ipt_changed('29');" accesskey=',' style='width:99%'>
  701. </td>
  702. </tr>
  703. <tr>
  704. <td width='15%'>
  705. &lt;&lt;NULL&gt;&gt;
  706. </td>
  707. <td width='25%'>
  708. &lt;null&gt;<sup id="cite_ref-xowa.gui.page.view.mode_edit-1_29-0" class="reference"><a href="#cite_note-xowa.gui.page.view.mode_edit-1-29">[30]</a></sup>
  709. </td>
  710. <td width='10%'>
  711. <input id='30_scope' type='text' class='options_textbox' value='Window'>
  712. </td>
  713. <td width='50%'>
  714. <input id='30_ipt' type='text' class='options_textbox' value='Ctrl + M, Ctrl + E' onchange="ipt_changed('30');" accesskey=',' style='width:99%'>
  715. </td>
  716. </tr>
  717. <tr>
  718. <td width='15%'>
  719. &lt;&lt;NULL&gt;&gt;
  720. </td>
  721. <td width='25%'>
  722. &lt;null&gt;<sup id="cite_ref-xowa.gui.page.view.mode_html-1_30-0" class="reference"><a href="#cite_note-xowa.gui.page.view.mode_html-1-30">[31]</a></sup>
  723. </td>
  724. <td width='10%'>
  725. <input id='31_scope' type='text' class='options_textbox' value='Window'>
  726. </td>
  727. <td width='50%'>
  728. <input id='31_ipt' type='text' class='options_textbox' value='Ctrl + M, Ctrl + H' onchange="ipt_changed('31');" accesskey=',' style='width:99%'>
  729. </td>
  730. </tr>
  731. <tr>
  732. <td width='15%'>
  733. &lt;&lt;NULL&gt;&gt;
  734. </td>
  735. <td width='25%'>
  736. &lt;null&gt;<sup id="cite_ref-xowa.gui.page.view.mode_html-2_31-0" class="reference"><a href="#cite_note-xowa.gui.page.view.mode_html-2-31">[32]</a></sup>
  737. </td>
  738. <td width='10%'>
  739. <input id='32_scope' type='text' class='options_textbox' value='Window'>
  740. </td>
  741. <td width='50%'>
  742. <input id='32_ipt' type='text' class='options_textbox' value='Ctrl + U' onchange="ipt_changed('32');" accesskey=',' style='width:99%'>
  743. </td>
  744. </tr>
  745. <tr>
  746. <td width='15%'>
  747. &lt;&lt;NULL&gt;&gt;
  748. </td>
  749. <td width='25%'>
  750. &lt;null&gt;<sup id="cite_ref-xowa.gui.page.view.refresh-1_32-0" class="reference"><a href="#cite_note-xowa.gui.page.view.refresh-1-32">[33]</a></sup>
  751. </td>
  752. <td width='10%'>
  753. <input id='34_scope' type='text' class='options_textbox' value='Window'>
  754. </td>
  755. <td width='50%'>
  756. <input id='34_ipt' type='text' class='options_textbox' value='Shift + F5' onchange="ipt_changed('34');" accesskey=',' style='width:99%'>
  757. </td>
  758. </tr>
  759. <tr>
  760. <td width='15%'>
  761. &lt;&lt;NULL&gt;&gt;
  762. </td>
  763. <td width='25%'>
  764. &lt;null&gt;<sup id="cite_ref-xowa.gui.page.view.reload-1_33-0" class="reference"><a href="#cite_note-xowa.gui.page.view.reload-1-33">[34]</a></sup>
  765. </td>
  766. <td width='10%'>
  767. <input id='33_scope' type='text' class='options_textbox' value='Window'>
  768. </td>
  769. <td width='50%'>
  770. <input id='33_ipt' type='text' class='options_textbox' value='F5' onchange="ipt_changed('33');" accesskey=',' style='width:99%'>
  771. </td>
  772. </tr>
  773. <tr>
  774. <td width='15%'>
  775. &lt;&lt;NULL&gt;&gt;
  776. </td>
  777. <td width='25%'>
  778. &lt;null&gt;<sup id="cite_ref-xowa.gui.page.view.save_as-1_34-0" class="reference"><a href="#cite_note-xowa.gui.page.view.save_as-1-34">[35]</a></sup>
  779. </td>
  780. <td width='10%'>
  781. <input id='35_scope' type='text' class='options_textbox' value='Window'>
  782. </td>
  783. <td width='50%'>
  784. <input id='35_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('35');" accesskey=',' style='width:99%'>
  785. </td>
  786. </tr>
  787. <tr>
  788. <td width='15%'>
  789. &lt;&lt;NULL&gt;&gt;
  790. </td>
  791. <td width='25%'>
  792. &lt;null&gt;<sup id="cite_ref-xowa.gui.page.view.print-1_35-0" class="reference"><a href="#cite_note-xowa.gui.page.view.print-1-35">[36]</a></sup>
  793. </td>
  794. <td width='10%'>
  795. <input id='36_scope' type='text' class='options_textbox' value='Window'>
  796. </td>
  797. <td width='50%'>
  798. <input id='36_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('36');" accesskey=',' style='width:99%'>
  799. </td>
  800. </tr>
  801. <tr>
  802. <td width='15%'>
  803. &lt;&lt;NULL&gt;&gt;
  804. </td>
  805. <td width='25%'>
  806. &lt;null&gt;<sup id="cite_ref-xowa.gui.page.edit.save-1_36-0" class="reference"><a href="#cite_note-xowa.gui.page.edit.save-1-36">[37]</a></sup>
  807. </td>
  808. <td width='10%'>
  809. <input id='40_scope' type='text' class='options_textbox' value='Window'>
  810. </td>
  811. <td width='50%'>
  812. <input id='40_ipt' type='text' class='options_textbox' value='Alt + Shift + S' onchange="ipt_changed('40');" accesskey=',' style='width:99%'>
  813. </td>
  814. </tr>
  815. <tr>
  816. <td width='15%'>
  817. &lt;&lt;NULL&gt;&gt;
  818. </td>
  819. <td width='25%'>
  820. &lt;null&gt;<sup id="cite_ref-xowa.gui.page.edit.save_draft-1_37-0" class="reference"><a href="#cite_note-xowa.gui.page.edit.save_draft-1-37">[38]</a></sup>
  821. </td>
  822. <td width='10%'>
  823. <input id='41_scope' type='text' class='options_textbox' value='Window'>
  824. </td>
  825. <td width='50%'>
  826. <input id='41_ipt' type='text' class='options_textbox' value='Ctrl + S' onchange="ipt_changed('41');" accesskey=',' style='width:99%'>
  827. </td>
  828. </tr>
  829. <tr>
  830. <td width='15%'>
  831. &lt;&lt;NULL&gt;&gt;
  832. </td>
  833. <td width='25%'>
  834. &lt;null&gt;<sup id="cite_ref-xowa.gui.page.edit.focus_edit_box-1_38-0" class="reference"><a href="#cite_note-xowa.gui.page.edit.focus_edit_box-1-38">[39]</a></sup>
  835. </td>
  836. <td width='10%'>
  837. <input id='42_scope' type='text' class='options_textbox' value='Window'>
  838. </td>
  839. <td width='50%'>
  840. <input id='42_ipt' type='text' class='options_textbox' value='Alt + Shift + Comma' onchange="ipt_changed('42');" accesskey=',' style='width:99%'>
  841. </td>
  842. </tr>
  843. <tr>
  844. <td width='15%'>
  845. &lt;&lt;NULL&gt;&gt;
  846. </td>
  847. <td width='25%'>
  848. &lt;null&gt;<sup id="cite_ref-xowa.gui.page.edit.preview-1_39-0" class="reference"><a href="#cite_note-xowa.gui.page.edit.preview-1-39">[40]</a></sup>
  849. </td>
  850. <td width='10%'>
  851. <input id='43_scope' type='text' class='options_textbox' value='Window'>
  852. </td>
  853. <td width='50%'>
  854. <input id='43_ipt' type='text' class='options_textbox' value='Alt + Shift + P' onchange="ipt_changed('43');" accesskey=',' style='width:99%'>
  855. </td>
  856. </tr>
  857. <tr>
  858. <td width='15%'>
  859. &lt;&lt;NULL&gt;&gt;
  860. </td>
  861. <td width='25%'>
  862. &lt;null&gt;<sup id="cite_ref-xowa.gui.page.edit.dbg_tmpl-1_40-0" class="reference"><a href="#cite_note-xowa.gui.page.edit.dbg_tmpl-1-40">[41]</a></sup>
  863. </td>
  864. <td width='10%'>
  865. <input id='44_scope' type='text' class='options_textbox' value='Window'>
  866. </td>
  867. <td width='50%'>
  868. <input id='44_ipt' type='text' class='options_textbox' value='Ctrl + E, Ctrl + E' onchange="ipt_changed('44');" accesskey=',' style='width:99%'>
  869. </td>
  870. </tr>
  871. <tr>
  872. <td width='15%'>
  873. &lt;&lt;NULL&gt;&gt;
  874. </td>
  875. <td width='25%'>
  876. &lt;null&gt;<sup id="cite_ref-xowa.gui.page.edit.dbg_tmpl-2_41-0" class="reference"><a href="#cite_note-xowa.gui.page.edit.dbg_tmpl-2-41">[42]</a></sup>
  877. </td>
  878. <td width='10%'>
  879. <input id='45_scope' type='text' class='options_textbox' value='Window'>
  880. </td>
  881. <td width='50%'>
  882. <input id='45_ipt' type='text' class='options_textbox' value='Alt + Shift + D, Alt + Shift + D' onchange="ipt_changed('45');" accesskey=',' style='width:99%'>
  883. </td>
  884. </tr>
  885. <tr>
  886. <td width='15%'>
  887. &lt;&lt;NULL&gt;&gt;
  888. </td>
  889. <td width='25%'>
  890. &lt;null&gt;<sup id="cite_ref-xowa.gui.page.edit.dbg_html-1_42-0" class="reference"><a href="#cite_note-xowa.gui.page.edit.dbg_html-1-42">[43]</a></sup>
  891. </td>
  892. <td width='10%'>
  893. <input id='46_scope' type='text' class='options_textbox' value='Window'>
  894. </td>
  895. <td width='50%'>
  896. <input id='46_ipt' type='text' class='options_textbox' value='Ctrl + E, Ctrl + H' onchange="ipt_changed('46');" accesskey=',' style='width:99%'>
  897. </td>
  898. </tr>
  899. <tr>
  900. <td width='15%'>
  901. &lt;&lt;NULL&gt;&gt;
  902. </td>
  903. <td width='25%'>
  904. &lt;null&gt;<sup id="cite_ref-xowa.gui.page.edit.exec-1_43-0" class="reference"><a href="#cite_note-xowa.gui.page.edit.exec-1-43">[44]</a></sup>
  905. </td>
  906. <td width='10%'>
  907. <input id='47_scope' type='text' class='options_textbox' value='Window'>
  908. </td>
  909. <td width='50%'>
  910. <input id='47_ipt' type='text' class='options_textbox' value='Ctrl + E, Ctrl + G' onchange="ipt_changed('47');" accesskey=',' style='width:99%'>
  911. </td>
  912. </tr>
  913. <tr>
  914. <td width='15%'>
  915. &lt;&lt;NULL&gt;&gt;
  916. </td>
  917. <td width='25%'>
  918. &lt;null&gt;<sup id="cite_ref-xowa.gui.page.selection.select_all-1_44-0" class="reference"><a href="#cite_note-xowa.gui.page.selection.select_all-1-44">[45]</a></sup>
  919. </td>
  920. <td width='10%'>
  921. <input id='37_scope' type='text' class='options_textbox' value='Window'>
  922. </td>
  923. <td width='50%'>
  924. <input id='37_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('37');" accesskey=',' style='width:99%'>
  925. </td>
  926. </tr>
  927. <tr>
  928. <td width='15%'>
  929. &lt;&lt;NULL&gt;&gt;
  930. </td>
  931. <td width='25%'>
  932. &lt;null&gt;<sup id="cite_ref-xowa.gui.page.selection.copy-1_45-0" class="reference"><a href="#cite_note-xowa.gui.page.selection.copy-1-45">[46]</a></sup>
  933. </td>
  934. <td width='10%'>
  935. <input id='38_scope' type='text' class='options_textbox' value='Window'>
  936. </td>
  937. <td width='50%'>
  938. <input id='38_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('38');" accesskey=',' style='width:99%'>
  939. </td>
  940. </tr>
  941. <tr>
  942. <td width='15%'>
  943. &lt;&lt;NULL&gt;&gt;
  944. </td>
  945. <td width='25%'>
  946. &lt;null&gt;<sup id="cite_ref-xowa.gui.page.selection.save_file_as-1_46-0" class="reference"><a href="#cite_note-xowa.gui.page.selection.save_file_as-1-46">[47]</a></sup>
  947. </td>
  948. <td width='10%'>
  949. <input id='39_scope' type='text' class='options_textbox' value='Window'>
  950. </td>
  951. <td width='50%'>
  952. <input id='39_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('39');" accesskey=',' style='width:99%'>
  953. </td>
  954. </tr>
  955. <tr>
  956. <td width='15%'>
  957. &lt;&lt;NULL&gt;&gt;
  958. </td>
  959. <td width='25%'>
  960. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.url.focus-1_47-0" class="reference"><a href="#cite_note-xowa.gui.browser.url.focus-1-47">[48]</a></sup>
  961. </td>
  962. <td width='10%'>
  963. <input id='48_scope' type='text' class='options_textbox' value='Window'>
  964. </td>
  965. <td width='50%'>
  966. <input id='48_ipt' type='text' class='options_textbox' value='Alt + D' onchange="ipt_changed('48');" accesskey=',' style='width:99%'>
  967. </td>
  968. </tr>
  969. <tr>
  970. <td width='15%'>
  971. &lt;&lt;NULL&gt;&gt;
  972. </td>
  973. <td width='25%'>
  974. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.url.focus-2_48-0" class="reference"><a href="#cite_note-xowa.gui.browser.url.focus-2-48">[49]</a></sup>
  975. </td>
  976. <td width='10%'>
  977. <input id='49_scope' type='text' class='options_textbox' value='Window'>
  978. </td>
  979. <td width='50%'>
  980. <input id='49_ipt' type='text' class='options_textbox' value='Ctrl + L' onchange="ipt_changed('49');" accesskey=',' style='width:99%'>
  981. </td>
  982. </tr>
  983. <tr>
  984. <td width='15%'>
  985. &lt;&lt;NULL&gt;&gt;
  986. </td>
  987. <td width='25%'>
  988. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.url.exec-1_49-0" class="reference"><a href="#cite_note-xowa.gui.browser.url.exec-1-49">[50]</a></sup>
  989. </td>
  990. <td width='10%'>
  991. <input id='50_scope' type='text' class='options_textbox' value='Url bar'>
  992. </td>
  993. <td width='50%'>
  994. <input id='50_ipt' type='text' class='options_textbox' value='Enter' onchange="ipt_changed('50');" accesskey=',' style='width:99%'>
  995. </td>
  996. </tr>
  997. <tr>
  998. <td width='15%'>
  999. &lt;&lt;NULL&gt;&gt;
  1000. </td>
  1001. <td width='25%'>
  1002. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.url.exec-2_50-0" class="reference"><a href="#cite_note-xowa.gui.browser.url.exec-2-50">[51]</a></sup>
  1003. </td>
  1004. <td width='10%'>
  1005. <input id='51_scope' type='text' class='options_textbox' value='Url bar'>
  1006. </td>
  1007. <td width='50%'>
  1008. <input id='51_ipt' type='text' class='options_textbox' value='Keypad Enter' onchange="ipt_changed('51');" accesskey=',' style='width:99%'>
  1009. </td>
  1010. </tr>
  1011. <tr>
  1012. <td width='15%'>
  1013. &lt;&lt;NULL&gt;&gt;
  1014. </td>
  1015. <td width='25%'>
  1016. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.url.exec_by_paste-1_51-0" class="reference"><a href="#cite_note-xowa.gui.browser.url.exec_by_paste-1-51">[52]</a></sup>
  1017. </td>
  1018. <td width='10%'>
  1019. <input id='54_scope' type='text' class='options_textbox' value='Url bar'>
  1020. </td>
  1021. <td width='50%'>
  1022. <input id='54_ipt' type='text' class='options_textbox' value='Middle Click' onchange="ipt_changed('54');" accesskey=',' style='width:99%'>
  1023. </td>
  1024. </tr>
  1025. <tr>
  1026. <td width='15%'>
  1027. &lt;&lt;NULL&gt;&gt;
  1028. </td>
  1029. <td width='25%'>
  1030. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.url.exec_by_paste-2_52-0" class="reference"><a href="#cite_note-xowa.gui.browser.url.exec_by_paste-2-52">[53]</a></sup>
  1031. </td>
  1032. <td width='10%'>
  1033. <input id='55_scope' type='text' class='options_textbox' value='Url bar'>
  1034. </td>
  1035. <td width='50%'>
  1036. <input id='55_ipt' type='text' class='options_textbox' value='Alt + Enter' onchange="ipt_changed('55');" accesskey=',' style='width:99%'>
  1037. </td>
  1038. </tr>
  1039. <tr>
  1040. <td width='15%'>
  1041. &lt;&lt;NULL&gt;&gt;
  1042. </td>
  1043. <td width='25%'>
  1044. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.url.exec_by_paste-3_53-0" class="reference"><a href="#cite_note-xowa.gui.browser.url.exec_by_paste-3-53">[54]</a></sup>
  1045. </td>
  1046. <td width='10%'>
  1047. <input id='56_scope' type='text' class='options_textbox' value='Url bar'>
  1048. </td>
  1049. <td width='50%'>
  1050. <input id='56_ipt' type='text' class='options_textbox' value='Alt + Keypad Enter' onchange="ipt_changed('56');" accesskey=',' style='width:99%'>
  1051. </td>
  1052. </tr>
  1053. <tr>
  1054. <td width='15%'>
  1055. &lt;&lt;NULL&gt;&gt;
  1056. </td>
  1057. <td width='25%'>
  1058. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.url.exec_new_tab_by_paste-1_54-0" class="reference"><a href="#cite_note-xowa.gui.browser.url.exec_new_tab_by_paste-1-54">[55]</a></sup>
  1059. </td>
  1060. <td width='10%'>
  1061. <input id='52_scope' type='text' class='options_textbox' value='Url bar'>
  1062. </td>
  1063. <td width='50%'>
  1064. <input id='52_ipt' type='text' class='options_textbox' value='Ctrl + Enter' onchange="ipt_changed('52');" accesskey=',' style='width:99%'>
  1065. </td>
  1066. </tr>
  1067. <tr>
  1068. <td width='15%'>
  1069. &lt;&lt;NULL&gt;&gt;
  1070. </td>
  1071. <td width='25%'>
  1072. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.url.exec_new_tab_by_paste-2_55-0" class="reference"><a href="#cite_note-xowa.gui.browser.url.exec_new_tab_by_paste-2-55">[56]</a></sup>
  1073. </td>
  1074. <td width='10%'>
  1075. <input id='53_scope' type='text' class='options_textbox' value='Url bar'>
  1076. </td>
  1077. <td width='50%'>
  1078. <input id='53_ipt' type='text' class='options_textbox' value='Ctrl + Keypad Enter' onchange="ipt_changed('53');" accesskey=',' style='width:99%'>
  1079. </td>
  1080. </tr>
  1081. <tr>
  1082. <td width='15%'>
  1083. &lt;&lt;NULL&gt;&gt;
  1084. </td>
  1085. <td width='25%'>
  1086. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.url.restore-1_56-0" class="reference"><a href="#cite_note-xowa.gui.browser.url.restore-1-56">[57]</a></sup>
  1087. </td>
  1088. <td width='10%'>
  1089. <input id='57_scope' type='text' class='options_textbox' value='Url bar'>
  1090. </td>
  1091. <td width='50%'>
  1092. <input id='57_ipt' type='text' class='options_textbox' value='Ctrl + U' onchange="ipt_changed('57');" accesskey=',' style='width:99%'>
  1093. </td>
  1094. </tr>
  1095. <tr>
  1096. <td width='15%'>
  1097. &lt;&lt;NULL&gt;&gt;
  1098. </td>
  1099. <td width='25%'>
  1100. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.search.focus-1_57-0" class="reference"><a href="#cite_note-xowa.gui.browser.search.focus-1-57">[58]</a></sup>
  1101. </td>
  1102. <td width='10%'>
  1103. <input id='58_scope' type='text' class='options_textbox' value='Window'>
  1104. </td>
  1105. <td width='50%'>
  1106. <input id='58_ipt' type='text' class='options_textbox' value='Ctrl + Alt + S' onchange="ipt_changed('58');" accesskey=',' style='width:99%'>
  1107. </td>
  1108. </tr>
  1109. <tr>
  1110. <td width='15%'>
  1111. &lt;&lt;NULL&gt;&gt;
  1112. </td>
  1113. <td width='25%'>
  1114. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.search.exec-1_58-0" class="reference"><a href="#cite_note-xowa.gui.browser.search.exec-1-58">[59]</a></sup>
  1115. </td>
  1116. <td width='10%'>
  1117. <input id='59_scope' type='text' class='options_textbox' value='Search box'>
  1118. </td>
  1119. <td width='50%'>
  1120. <input id='59_ipt' type='text' class='options_textbox' value='Enter' onchange="ipt_changed('59');" accesskey=',' style='width:99%'>
  1121. </td>
  1122. </tr>
  1123. <tr>
  1124. <td width='15%'>
  1125. &lt;&lt;NULL&gt;&gt;
  1126. </td>
  1127. <td width='25%'>
  1128. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.search.exec-2_59-0" class="reference"><a href="#cite_note-xowa.gui.browser.search.exec-2-59">[60]</a></sup>
  1129. </td>
  1130. <td width='10%'>
  1131. <input id='60_scope' type='text' class='options_textbox' value='Search box'>
  1132. </td>
  1133. <td width='50%'>
  1134. <input id='60_ipt' type='text' class='options_textbox' value='Keypad Enter' onchange="ipt_changed('60');" accesskey=',' style='width:99%'>
  1135. </td>
  1136. </tr>
  1137. <tr>
  1138. <td width='15%'>
  1139. &lt;&lt;NULL&gt;&gt;
  1140. </td>
  1141. <td width='25%'>
  1142. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.html.focus-2_60-0" class="reference"><a href="#cite_note-xowa.gui.browser.html.focus-2-60">[61]</a></sup>
  1143. </td>
  1144. <td width='10%'>
  1145. <input id='85_scope' type='text' class='options_textbox' value='Url bar'>
  1146. </td>
  1147. <td width='50%'>
  1148. <input id='85_ipt' type='text' class='options_textbox' value='Escape' onchange="ipt_changed('85');" accesskey=',' style='width:99%'>
  1149. </td>
  1150. </tr>
  1151. <tr>
  1152. <td width='15%'>
  1153. &lt;&lt;NULL&gt;&gt;
  1154. </td>
  1155. <td width='25%'>
  1156. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.html.focus-3_61-0" class="reference"><a href="#cite_note-xowa.gui.browser.html.focus-3-61">[62]</a></sup>
  1157. </td>
  1158. <td width='10%'>
  1159. <input id='86_scope' type='text' class='options_textbox' value='Search box'>
  1160. </td>
  1161. <td width='50%'>
  1162. <input id='86_ipt' type='text' class='options_textbox' value='Escape' onchange="ipt_changed('86');" accesskey=',' style='width:99%'>
  1163. </td>
  1164. </tr>
  1165. <tr>
  1166. <td width='15%'>
  1167. &lt;&lt;NULL&gt;&gt;
  1168. </td>
  1169. <td width='25%'>
  1170. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.html.focus-4_62-0" class="reference"><a href="#cite_note-xowa.gui.browser.html.focus-4-62">[63]</a></sup>
  1171. </td>
  1172. <td width='10%'>
  1173. <input id='87_scope' type='text' class='options_textbox' value='Status bar'>
  1174. </td>
  1175. <td width='50%'>
  1176. <input id='87_ipt' type='text' class='options_textbox' value='Escape' onchange="ipt_changed('87');" accesskey=',' style='width:99%'>
  1177. </td>
  1178. </tr>
  1179. <tr>
  1180. <td width='15%'>
  1181. &lt;&lt;NULL&gt;&gt;
  1182. </td>
  1183. <td width='25%'>
  1184. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.html.focus-5_63-0" class="reference"><a href="#cite_note-xowa.gui.browser.html.focus-5-63">[64]</a></sup>
  1185. </td>
  1186. <td width='10%'>
  1187. <input id='88_scope' type='text' class='options_textbox' value='System Messages box'>
  1188. </td>
  1189. <td width='50%'>
  1190. <input id='88_ipt' type='text' class='options_textbox' value='Escape' onchange="ipt_changed('88');" accesskey=',' style='width:99%'>
  1191. </td>
  1192. </tr>
  1193. <tr>
  1194. <td width='15%'>
  1195. &lt;&lt;NULL&gt;&gt;
  1196. </td>
  1197. <td width='25%'>
  1198. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.html.selection_focus_toggle-1_64-0" class="reference"><a href="#cite_note-xowa.gui.browser.html.selection_focus_toggle-1-64">[65]</a></sup>
  1199. </td>
  1200. <td width='10%'>
  1201. <input id='89_scope' type='text' class='options_textbox' value='Window'>
  1202. </td>
  1203. <td width='50%'>
  1204. <input id='89_ipt' type='text' class='options_textbox' value='Ctrl + G, Ctrl + G' onchange="ipt_changed('89');" accesskey=',' style='width:99%'>
  1205. </td>
  1206. </tr>
  1207. <tr>
  1208. <td width='15%'>
  1209. &lt;&lt;NULL&gt;&gt;
  1210. </td>
  1211. <td width='25%'>
  1212. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.find.show-1_65-0" class="reference"><a href="#cite_note-xowa.gui.browser.find.show-1-65">[66]</a></sup>
  1213. </td>
  1214. <td width='10%'>
  1215. <input id='90_scope' type='text' class='options_textbox' value='Window'>
  1216. </td>
  1217. <td width='50%'>
  1218. <input id='90_ipt' type='text' class='options_textbox' value='Ctrl + F' onchange="ipt_changed('90');" accesskey=',' style='width:99%'>
  1219. </td>
  1220. </tr>
  1221. <tr>
  1222. <td width='15%'>
  1223. &lt;&lt;NULL&gt;&gt;
  1224. </td>
  1225. <td width='25%'>
  1226. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.find.show_by_paste-1_66-0" class="reference"><a href="#cite_note-xowa.gui.browser.find.show_by_paste-1-66">[67]</a></sup>
  1227. </td>
  1228. <td width='10%'>
  1229. <input id='91_scope' type='text' class='options_textbox' value='Window'>
  1230. </td>
  1231. <td width='50%'>
  1232. <input id='91_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('91');" accesskey=',' style='width:99%'>
  1233. </td>
  1234. </tr>
  1235. <tr>
  1236. <td width='15%'>
  1237. &lt;&lt;NULL&gt;&gt;
  1238. </td>
  1239. <td width='25%'>
  1240. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.find.hide-1_67-0" class="reference"><a href="#cite_note-xowa.gui.browser.find.hide-1-67">[68]</a></sup>
  1241. </td>
  1242. <td width='10%'>
  1243. <input id='92_scope' type='text' class='options_textbox' value='Find box'>
  1244. </td>
  1245. <td width='50%'>
  1246. <input id='92_ipt' type='text' class='options_textbox' value='Escape' onchange="ipt_changed('92');" accesskey=',' style='width:99%'>
  1247. </td>
  1248. </tr>
  1249. <tr>
  1250. <td width='15%'>
  1251. &lt;&lt;NULL&gt;&gt;
  1252. </td>
  1253. <td width='25%'>
  1254. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.find.exec-1_68-0" class="reference"><a href="#cite_note-xowa.gui.browser.find.exec-1-68">[69]</a></sup>
  1255. </td>
  1256. <td width='10%'>
  1257. <input id='93_scope' type='text' class='options_textbox' value='Find box'>
  1258. </td>
  1259. <td width='50%'>
  1260. <input id='93_ipt' type='text' class='options_textbox' value='Enter' onchange="ipt_changed('93');" accesskey=',' style='width:99%'>
  1261. </td>
  1262. </tr>
  1263. <tr>
  1264. <td width='15%'>
  1265. &lt;&lt;NULL&gt;&gt;
  1266. </td>
  1267. <td width='25%'>
  1268. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.find.exec-2_69-0" class="reference"><a href="#cite_note-xowa.gui.browser.find.exec-2-69">[70]</a></sup>
  1269. </td>
  1270. <td width='10%'>
  1271. <input id='94_scope' type='text' class='options_textbox' value='Find box'>
  1272. </td>
  1273. <td width='50%'>
  1274. <input id='94_ipt' type='text' class='options_textbox' value='Keypad Enter' onchange="ipt_changed('94');" accesskey=',' style='width:99%'>
  1275. </td>
  1276. </tr>
  1277. <tr>
  1278. <td width='15%'>
  1279. &lt;&lt;NULL&gt;&gt;
  1280. </td>
  1281. <td width='25%'>
  1282. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.find.find_fwd-1_70-0" class="reference"><a href="#cite_note-xowa.gui.browser.find.find_fwd-1-70">[71]</a></sup>
  1283. </td>
  1284. <td width='10%'>
  1285. <input id='95_scope' type='text' class='options_textbox' value='Find box'>
  1286. </td>
  1287. <td width='50%'>
  1288. <input id='95_ipt' type='text' class='options_textbox' value='Alt + N' onchange="ipt_changed('95');" accesskey=',' style='width:99%'>
  1289. </td>
  1290. </tr>
  1291. <tr>
  1292. <td width='15%'>
  1293. &lt;&lt;NULL&gt;&gt;
  1294. </td>
  1295. <td width='25%'>
  1296. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.find.find_bwd-1_71-0" class="reference"><a href="#cite_note-xowa.gui.browser.find.find_bwd-1-71">[72]</a></sup>
  1297. </td>
  1298. <td width='10%'>
  1299. <input id='96_scope' type='text' class='options_textbox' value='Find box'>
  1300. </td>
  1301. <td width='50%'>
  1302. <input id='96_ipt' type='text' class='options_textbox' value='Alt + P' onchange="ipt_changed('96');" accesskey=',' style='width:99%'>
  1303. </td>
  1304. </tr>
  1305. <tr>
  1306. <td width='15%'>
  1307. &lt;&lt;NULL&gt;&gt;
  1308. </td>
  1309. <td width='25%'>
  1310. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.find.case_toggle-1_72-0" class="reference"><a href="#cite_note-xowa.gui.browser.find.case_toggle-1-72">[73]</a></sup>
  1311. </td>
  1312. <td width='10%'>
  1313. <input id='97_scope' type='text' class='options_textbox' value='Find box'>
  1314. </td>
  1315. <td width='50%'>
  1316. <input id='97_ipt' type='text' class='options_textbox' value='Alt + C' onchange="ipt_changed('97');" accesskey=',' style='width:99%'>
  1317. </td>
  1318. </tr>
  1319. <tr>
  1320. <td width='15%'>
  1321. &lt;&lt;NULL&gt;&gt;
  1322. </td>
  1323. <td width='25%'>
  1324. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.find.wrap_toggle-1_73-0" class="reference"><a href="#cite_note-xowa.gui.browser.find.wrap_toggle-1-73">[74]</a></sup>
  1325. </td>
  1326. <td width='10%'>
  1327. <input id='98_scope' type='text' class='options_textbox' value='Find box'>
  1328. </td>
  1329. <td width='50%'>
  1330. <input id='98_ipt' type='text' class='options_textbox' value='Alt + W' onchange="ipt_changed('98');" accesskey=',' style='width:99%'>
  1331. </td>
  1332. </tr>
  1333. <tr>
  1334. <td width='15%'>
  1335. &lt;&lt;NULL&gt;&gt;
  1336. </td>
  1337. <td width='25%'>
  1338. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.prog.focus-1_74-0" class="reference"><a href="#cite_note-xowa.gui.browser.prog.focus-1-74">[75]</a></sup>
  1339. </td>
  1340. <td width='10%'>
  1341. <input id='99_scope' type='text' class='options_textbox' value='Window'>
  1342. </td>
  1343. <td width='50%'>
  1344. <input id='99_ipt' type='text' class='options_textbox' value='Ctrl + Alt + P' onchange="ipt_changed('99');" accesskey=',' style='width:99%'>
  1345. </td>
  1346. </tr>
  1347. <tr>
  1348. <td width='15%'>
  1349. &lt;&lt;NULL&gt;&gt;
  1350. </td>
  1351. <td width='25%'>
  1352. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.prog_log.show-1_75-0" class="reference"><a href="#cite_note-xowa.gui.browser.prog_log.show-1-75">[76]</a></sup>
  1353. </td>
  1354. <td width='10%'>
  1355. <input id='102_scope' type='text' class='options_textbox' value='Status bar'>
  1356. </td>
  1357. <td width='50%'>
  1358. <input id='102_ipt' type='text' class='options_textbox' value='Middle Click' onchange="ipt_changed('102');" accesskey=',' style='width:99%'>
  1359. </td>
  1360. </tr>
  1361. <tr>
  1362. <td width='15%'>
  1363. &lt;&lt;NULL&gt;&gt;
  1364. </td>
  1365. <td width='25%'>
  1366. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.prog_log.show-2_76-0" class="reference"><a href="#cite_note-xowa.gui.browser.prog_log.show-2-76">[77]</a></sup>
  1367. </td>
  1368. <td width='10%'>
  1369. <input id='103_scope' type='text' class='options_textbox' value='Status bar'>
  1370. </td>
  1371. <td width='50%'>
  1372. <input id='103_ipt' type='text' class='options_textbox' value='Ctrl + Shift + P' onchange="ipt_changed('103');" accesskey=',' style='width:99%'>
  1373. </td>
  1374. </tr>
  1375. <tr>
  1376. <td width='15%'>
  1377. &lt;&lt;NULL&gt;&gt;
  1378. </td>
  1379. <td width='25%'>
  1380. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.info.focus-1_77-0" class="reference"><a href="#cite_note-xowa.gui.browser.info.focus-1-77">[78]</a></sup>
  1381. </td>
  1382. <td width='10%'>
  1383. <input id='100_scope' type='text' class='options_textbox' value='Window'>
  1384. </td>
  1385. <td width='50%'>
  1386. <input id='100_ipt' type='text' class='options_textbox' value='Ctrl + Alt + I' onchange="ipt_changed('100');" accesskey=',' style='width:99%'>
  1387. </td>
  1388. </tr>
  1389. <tr>
  1390. <td width='15%'>
  1391. &lt;&lt;NULL&gt;&gt;
  1392. </td>
  1393. <td width='25%'>
  1394. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.info.clear-1_78-0" class="reference"><a href="#cite_note-xowa.gui.browser.info.clear-1-78">[79]</a></sup>
  1395. </td>
  1396. <td width='10%'>
  1397. <input id='101_scope' type='text' class='options_textbox' value='Window'>
  1398. </td>
  1399. <td width='50%'>
  1400. <input id='101_ipt' type='text' class='options_textbox' value='Ctrl + Alt + C' onchange="ipt_changed('101');" accesskey=',' style='width:99%'>
  1401. </td>
  1402. </tr>
  1403. <tr>
  1404. <td width='15%'>
  1405. &lt;&lt;NULL&gt;&gt;
  1406. </td>
  1407. <td width='25%'>
  1408. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.tabs.new_dflt__at_dflt__focus_y-1_79-0" class="reference"><a href="#cite_note-xowa.gui.browser.tabs.new_dflt__at_dflt__focus_y-1-79">[80]</a></sup>
  1409. </td>
  1410. <td width='10%'>
  1411. <input id='61_scope' type='text' class='options_textbox' value='Window'>
  1412. </td>
  1413. <td width='50%'>
  1414. <input id='61_ipt' type='text' class='options_textbox' value='Ctrl + T' onchange="ipt_changed('61');" accesskey=',' style='width:99%'>
  1415. </td>
  1416. </tr>
  1417. <tr>
  1418. <td width='15%'>
  1419. &lt;&lt;NULL&gt;&gt;
  1420. </td>
  1421. <td width='25%'>
  1422. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.tabs.new_link__at_dflt__focus_n-1_80-0" class="reference"><a href="#cite_note-xowa.gui.browser.tabs.new_link__at_dflt__focus_n-1-80">[81]</a></sup>
  1423. </td>
  1424. <td width='10%'>
  1425. <input id='62_scope' type='text' class='options_textbox' value='HTML browser'>
  1426. </td>
  1427. <td width='50%'>
  1428. <input id='62_ipt' type='text' class='options_textbox' value='Middle Click' onchange="ipt_changed('62');" accesskey=',' style='width:99%'>
  1429. </td>
  1430. </tr>
  1431. <tr>
  1432. <td width='15%'>
  1433. &lt;&lt;NULL&gt;&gt;
  1434. </td>
  1435. <td width='25%'>
  1436. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.tabs.new_href__at_dflt__focus_y-1_81-0" class="reference"><a href="#cite_note-xowa.gui.browser.tabs.new_href__at_dflt__focus_y-1-81">[82]</a></sup>
  1437. </td>
  1438. <td width='10%'>
  1439. <input id='63_scope' type='text' class='options_textbox' value='Window'>
  1440. </td>
  1441. <td width='50%'>
  1442. <input id='63_ipt' type='text' class='options_textbox' value='Ctrl + G, Ctrl + F' onchange="ipt_changed('63');" accesskey=',' style='width:99%'>
  1443. </td>
  1444. </tr>
  1445. <tr>
  1446. <td width='15%'>
  1447. &lt;&lt;NULL&gt;&gt;
  1448. </td>
  1449. <td width='25%'>
  1450. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.tabs.select_bwd-1_82-0" class="reference"><a href="#cite_note-xowa.gui.browser.tabs.select_bwd-1-82">[83]</a></sup>
  1451. </td>
  1452. <td width='10%'>
  1453. <input id='71_scope' type='text' class='options_textbox' value='Window'>
  1454. </td>
  1455. <td width='50%'>
  1456. <input id='71_ipt' type='text' class='options_textbox' value='Ctrl + Shift + Tab' onchange="ipt_changed('71');" accesskey=',' style='width:99%'>
  1457. </td>
  1458. </tr>
  1459. <tr>
  1460. <td width='15%'>
  1461. &lt;&lt;NULL&gt;&gt;
  1462. </td>
  1463. <td width='25%'>
  1464. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.tabs.select_bwd-2_83-0" class="reference"><a href="#cite_note-xowa.gui.browser.tabs.select_bwd-2-83">[84]</a></sup>
  1465. </td>
  1466. <td width='10%'>
  1467. <input id='72_scope' type='text' class='options_textbox' value='Window'>
  1468. </td>
  1469. <td width='50%'>
  1470. <input id='72_ipt' type='text' class='options_textbox' value='Ctrl + PageUp' onchange="ipt_changed('72');" accesskey=',' style='width:99%'>
  1471. </td>
  1472. </tr>
  1473. <tr>
  1474. <td width='15%'>
  1475. &lt;&lt;NULL&gt;&gt;
  1476. </td>
  1477. <td width='25%'>
  1478. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.tabs.select_fwd-1_84-0" class="reference"><a href="#cite_note-xowa.gui.browser.tabs.select_fwd-1-84">[85]</a></sup>
  1479. </td>
  1480. <td width='10%'>
  1481. <input id='69_scope' type='text' class='options_textbox' value='Window'>
  1482. </td>
  1483. <td width='50%'>
  1484. <input id='69_ipt' type='text' class='options_textbox' value='Ctrl + Tab' onchange="ipt_changed('69');" accesskey=',' style='width:99%'>
  1485. </td>
  1486. </tr>
  1487. <tr>
  1488. <td width='15%'>
  1489. &lt;&lt;NULL&gt;&gt;
  1490. </td>
  1491. <td width='25%'>
  1492. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.tabs.select_fwd-2_85-0" class="reference"><a href="#cite_note-xowa.gui.browser.tabs.select_fwd-2-85">[86]</a></sup>
  1493. </td>
  1494. <td width='10%'>
  1495. <input id='70_scope' type='text' class='options_textbox' value='Window'>
  1496. </td>
  1497. <td width='50%'>
  1498. <input id='70_ipt' type='text' class='options_textbox' value='Ctrl + PageDown' onchange="ipt_changed('70');" accesskey=',' style='width:99%'>
  1499. </td>
  1500. </tr>
  1501. <tr>
  1502. <td width='15%'>
  1503. &lt;&lt;NULL&gt;&gt;
  1504. </td>
  1505. <td width='25%'>
  1506. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.tabs.select_by_idx_1-1_86-0" class="reference"><a href="#cite_note-xowa.gui.browser.tabs.select_by_idx_1-1-86">[87]</a></sup>
  1507. </td>
  1508. <td width='10%'>
  1509. <input id='73_scope' type='text' class='options_textbox' value='Window'>
  1510. </td>
  1511. <td width='50%'>
  1512. <input id='73_ipt' type='text' class='options_textbox' value='Ctrl + 1' onchange="ipt_changed('73');" accesskey=',' style='width:99%'>
  1513. </td>
  1514. </tr>
  1515. <tr>
  1516. <td width='15%'>
  1517. &lt;&lt;NULL&gt;&gt;
  1518. </td>
  1519. <td width='25%'>
  1520. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.tabs.select_by_idx_2-1_87-0" class="reference"><a href="#cite_note-xowa.gui.browser.tabs.select_by_idx_2-1-87">[88]</a></sup>
  1521. </td>
  1522. <td width='10%'>
  1523. <input id='74_scope' type='text' class='options_textbox' value='Window'>
  1524. </td>
  1525. <td width='50%'>
  1526. <input id='74_ipt' type='text' class='options_textbox' value='Ctrl + 2' onchange="ipt_changed('74');" accesskey=',' style='width:99%'>
  1527. </td>
  1528. </tr>
  1529. <tr>
  1530. <td width='15%'>
  1531. &lt;&lt;NULL&gt;&gt;
  1532. </td>
  1533. <td width='25%'>
  1534. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.tabs.select_by_idx_3-1_88-0" class="reference"><a href="#cite_note-xowa.gui.browser.tabs.select_by_idx_3-1-88">[89]</a></sup>
  1535. </td>
  1536. <td width='10%'>
  1537. <input id='75_scope' type='text' class='options_textbox' value='Window'>
  1538. </td>
  1539. <td width='50%'>
  1540. <input id='75_ipt' type='text' class='options_textbox' value='Ctrl + 3' onchange="ipt_changed('75');" accesskey=',' style='width:99%'>
  1541. </td>
  1542. </tr>
  1543. <tr>
  1544. <td width='15%'>
  1545. &lt;&lt;NULL&gt;&gt;
  1546. </td>
  1547. <td width='25%'>
  1548. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.tabs.select_by_idx_4-1_89-0" class="reference"><a href="#cite_note-xowa.gui.browser.tabs.select_by_idx_4-1-89">[90]</a></sup>
  1549. </td>
  1550. <td width='10%'>
  1551. <input id='76_scope' type='text' class='options_textbox' value='Window'>
  1552. </td>
  1553. <td width='50%'>
  1554. <input id='76_ipt' type='text' class='options_textbox' value='Ctrl + 4' onchange="ipt_changed('76');" accesskey=',' style='width:99%'>
  1555. </td>
  1556. </tr>
  1557. <tr>
  1558. <td width='15%'>
  1559. &lt;&lt;NULL&gt;&gt;
  1560. </td>
  1561. <td width='25%'>
  1562. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.tabs.select_by_idx_5-1_90-0" class="reference"><a href="#cite_note-xowa.gui.browser.tabs.select_by_idx_5-1-90">[91]</a></sup>
  1563. </td>
  1564. <td width='10%'>
  1565. <input id='77_scope' type='text' class='options_textbox' value='Window'>
  1566. </td>
  1567. <td width='50%'>
  1568. <input id='77_ipt' type='text' class='options_textbox' value='Ctrl + 5' onchange="ipt_changed('77');" accesskey=',' style='width:99%'>
  1569. </td>
  1570. </tr>
  1571. <tr>
  1572. <td width='15%'>
  1573. &lt;&lt;NULL&gt;&gt;
  1574. </td>
  1575. <td width='25%'>
  1576. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.tabs.select_by_idx_6-1_91-0" class="reference"><a href="#cite_note-xowa.gui.browser.tabs.select_by_idx_6-1-91">[92]</a></sup>
  1577. </td>
  1578. <td width='10%'>
  1579. <input id='78_scope' type='text' class='options_textbox' value='Window'>
  1580. </td>
  1581. <td width='50%'>
  1582. <input id='78_ipt' type='text' class='options_textbox' value='Ctrl + 6' onchange="ipt_changed('78');" accesskey=',' style='width:99%'>
  1583. </td>
  1584. </tr>
  1585. <tr>
  1586. <td width='15%'>
  1587. &lt;&lt;NULL&gt;&gt;
  1588. </td>
  1589. <td width='25%'>
  1590. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.tabs.select_by_idx_7-1_92-0" class="reference"><a href="#cite_note-xowa.gui.browser.tabs.select_by_idx_7-1-92">[93]</a></sup>
  1591. </td>
  1592. <td width='10%'>
  1593. <input id='79_scope' type='text' class='options_textbox' value='Window'>
  1594. </td>
  1595. <td width='50%'>
  1596. <input id='79_ipt' type='text' class='options_textbox' value='Ctrl + 7' onchange="ipt_changed('79');" accesskey=',' style='width:99%'>
  1597. </td>
  1598. </tr>
  1599. <tr>
  1600. <td width='15%'>
  1601. &lt;&lt;NULL&gt;&gt;
  1602. </td>
  1603. <td width='25%'>
  1604. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.tabs.select_by_idx_8-1_93-0" class="reference"><a href="#cite_note-xowa.gui.browser.tabs.select_by_idx_8-1-93">[94]</a></sup>
  1605. </td>
  1606. <td width='10%'>
  1607. <input id='80_scope' type='text' class='options_textbox' value='Window'>
  1608. </td>
  1609. <td width='50%'>
  1610. <input id='80_ipt' type='text' class='options_textbox' value='Ctrl + 8' onchange="ipt_changed('80');" accesskey=',' style='width:99%'>
  1611. </td>
  1612. </tr>
  1613. <tr>
  1614. <td width='15%'>
  1615. &lt;&lt;NULL&gt;&gt;
  1616. </td>
  1617. <td width='25%'>
  1618. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.tabs.select_by_idx_9-1_94-0" class="reference"><a href="#cite_note-xowa.gui.browser.tabs.select_by_idx_9-1-94">[95]</a></sup>
  1619. </td>
  1620. <td width='10%'>
  1621. <input id='81_scope' type='text' class='options_textbox' value='Window'>
  1622. </td>
  1623. <td width='50%'>
  1624. <input id='81_ipt' type='text' class='options_textbox' value='Ctrl + 9' onchange="ipt_changed('81');" accesskey=',' style='width:99%'>
  1625. </td>
  1626. </tr>
  1627. <tr>
  1628. <td width='15%'>
  1629. &lt;&lt;NULL&gt;&gt;
  1630. </td>
  1631. <td width='25%'>
  1632. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.tabs.move_bwd-1_95-0" class="reference"><a href="#cite_note-xowa.gui.browser.tabs.move_bwd-1-95">[96]</a></sup>
  1633. </td>
  1634. <td width='10%'>
  1635. <input id='82_scope' type='text' class='options_textbox' value='Window'>
  1636. </td>
  1637. <td width='50%'>
  1638. <input id='82_ipt' type='text' class='options_textbox' value='Alt + PageUp' onchange="ipt_changed('82');" accesskey=',' style='width:99%'>
  1639. </td>
  1640. </tr>
  1641. <tr>
  1642. <td width='15%'>
  1643. &lt;&lt;NULL&gt;&gt;
  1644. </td>
  1645. <td width='25%'>
  1646. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.tabs.move_fwd-1_96-0" class="reference"><a href="#cite_note-xowa.gui.browser.tabs.move_fwd-1-96">[97]</a></sup>
  1647. </td>
  1648. <td width='10%'>
  1649. <input id='83_scope' type='text' class='options_textbox' value='Window'>
  1650. </td>
  1651. <td width='50%'>
  1652. <input id='83_ipt' type='text' class='options_textbox' value='Alt + PageDown' onchange="ipt_changed('83');" accesskey=',' style='width:99%'>
  1653. </td>
  1654. </tr>
  1655. <tr>
  1656. <td width='15%'>
  1657. &lt;&lt;NULL&gt;&gt;
  1658. </td>
  1659. <td width='25%'>
  1660. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.tabs.close_cur-1_97-0" class="reference"><a href="#cite_note-xowa.gui.browser.tabs.close_cur-1-97">[98]</a></sup>
  1661. </td>
  1662. <td width='10%'>
  1663. <input id='64_scope' type='text' class='options_textbox' value='Window'>
  1664. </td>
  1665. <td width='50%'>
  1666. <input id='64_ipt' type='text' class='options_textbox' value='Ctrl + W' onchange="ipt_changed('64');" accesskey=',' style='width:99%'>
  1667. </td>
  1668. </tr>
  1669. <tr>
  1670. <td width='15%'>
  1671. &lt;&lt;NULL&gt;&gt;
  1672. </td>
  1673. <td width='25%'>
  1674. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.tabs.close_others-1_98-0" class="reference"><a href="#cite_note-xowa.gui.browser.tabs.close_others-1-98">[99]</a></sup>
  1675. </td>
  1676. <td width='10%'>
  1677. <input id='65_scope' type='text' class='options_textbox' value='Window'>
  1678. </td>
  1679. <td width='50%'>
  1680. <input id='65_ipt' type='text' class='options_textbox' value='Ctrl + Shift + W, Ctrl + Shift + W' onchange="ipt_changed('65');" accesskey=',' style='width:99%'>
  1681. </td>
  1682. </tr>
  1683. <tr>
  1684. <td width='15%'>
  1685. &lt;&lt;NULL&gt;&gt;
  1686. </td>
  1687. <td width='25%'>
  1688. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.tabs.close_to_bgn-1_99-0" class="reference"><a href="#cite_note-xowa.gui.browser.tabs.close_to_bgn-1-99">[100]</a></sup>
  1689. </td>
  1690. <td width='10%'>
  1691. <input id='66_scope' type='text' class='options_textbox' value='Window'>
  1692. </td>
  1693. <td width='50%'>
  1694. <input id='66_ipt' type='text' class='options_textbox' value='Ctrl + Shift + W, Ctrl + Shift + Left' onchange="ipt_changed('66');" accesskey=',' style='width:99%'>
  1695. </td>
  1696. </tr>
  1697. <tr>
  1698. <td width='15%'>
  1699. &lt;&lt;NULL&gt;&gt;
  1700. </td>
  1701. <td width='25%'>
  1702. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.tabs.close_to_end-1_100-0" class="reference"><a href="#cite_note-xowa.gui.browser.tabs.close_to_end-1-100">[101]</a></sup>
  1703. </td>
  1704. <td width='10%'>
  1705. <input id='67_scope' type='text' class='options_textbox' value='Window'>
  1706. </td>
  1707. <td width='50%'>
  1708. <input id='67_ipt' type='text' class='options_textbox' value='Ctrl + Shift + W, Ctrl + Shift + Right' onchange="ipt_changed('67');" accesskey=',' style='width:99%'>
  1709. </td>
  1710. </tr>
  1711. <tr>
  1712. <td width='15%'>
  1713. &lt;&lt;NULL&gt;&gt;
  1714. </td>
  1715. <td width='25%'>
  1716. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.tabs.close_undo-1_101-0" class="reference"><a href="#cite_note-xowa.gui.browser.tabs.close_undo-1-101">[102]</a></sup>
  1717. </td>
  1718. <td width='10%'>
  1719. <input id='68_scope' type='text' class='options_textbox' value='Window'>
  1720. </td>
  1721. <td width='50%'>
  1722. <input id='68_ipt' type='text' class='options_textbox' value='Ctrl + Shift + T' onchange="ipt_changed('68');" accesskey=',' style='width:99%'>
  1723. </td>
  1724. </tr>
  1725. <tr>
  1726. <td width='15%'>
  1727. &lt;&lt;NULL&gt;&gt;
  1728. </td>
  1729. <td width='25%'>
  1730. &lt;null&gt;<sup id="cite_ref-xowa.gui.browser.tabs.pin_toggle-1_102-0" class="reference"><a href="#cite_note-xowa.gui.browser.tabs.pin_toggle-1-102">[103]</a></sup>
  1731. </td>
  1732. <td width='10%'>
  1733. <input id='84_scope' type='text' class='options_textbox' value='Window'>
  1734. </td>
  1735. <td width='50%'>
  1736. <input id='84_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('84');" accesskey=',' style='width:99%'>
  1737. </td>
  1738. </tr>
  1739. <tr>
  1740. <td width='15%'>
  1741. &lt;&lt;NULL&gt;&gt;
  1742. </td>
  1743. <td width='25%'>
  1744. &lt;null&gt;<sup id="cite_ref-xowa.html.tidy.toggle-1_103-0" class="reference"><a href="#cite_note-xowa.html.tidy.toggle-1-103">[104]</a></sup>
  1745. </td>
  1746. <td width='10%'>
  1747. <input id='104_scope' type='text' class='options_textbox' value='Window'>
  1748. </td>
  1749. <td width='50%'>
  1750. <input id='104_ipt' type='text' class='options_textbox' value='F7' onchange="ipt_changed('104');" accesskey=',' style='width:99%'>
  1751. </td>
  1752. </tr>
  1753. <tr>
  1754. <td width='15%'>
  1755. &lt;&lt;NULL&gt;&gt;
  1756. </td>
  1757. <td width='25%'>
  1758. &lt;null&gt;<sup id="cite_ref-xowa.net.enabled_n_-1_104-0" class="reference"><a href="#cite_note-xowa.net.enabled_n_-1-104">[105]</a></sup>
  1759. </td>
  1760. <td width='10%'>
  1761. <input id='109_scope' type='text' class='options_textbox' value='Window'>
  1762. </td>
  1763. <td width='50%'>
  1764. <input id='109_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('109');" accesskey=',' style='width:99%'>
  1765. </td>
  1766. </tr>
  1767. <tr>
  1768. <td width='15%'>
  1769. &lt;&lt;NULL&gt;&gt;
  1770. </td>
  1771. <td width='25%'>
  1772. &lt;null&gt;<sup id="cite_ref-xowa.net.enabled_y_-1_105-0" class="reference"><a href="#cite_note-xowa.net.enabled_y_-1-105">[106]</a></sup>
  1773. </td>
  1774. <td width='10%'>
  1775. <input id='110_scope' type='text' class='options_textbox' value='Window'>
  1776. </td>
  1777. <td width='50%'>
  1778. <input id='110_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('110');" accesskey=',' style='width:99%'>
  1779. </td>
  1780. </tr>
  1781. <tr>
  1782. <td width='15%'>
  1783. &lt;&lt;NULL&gt;&gt;
  1784. </td>
  1785. <td width='25%'>
  1786. &lt;null&gt;<sup id="cite_ref-xowa.net.enabled_x_-1_106-0" class="reference"><a href="#cite_note-xowa.net.enabled_x_-1-106">[107]</a></sup>
  1787. </td>
  1788. <td width='10%'>
  1789. <input id='111_scope' type='text' class='options_textbox' value='Window'>
  1790. </td>
  1791. <td width='50%'>
  1792. <input id='111_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('111');" accesskey=',' style='width:99%'>
  1793. </td>
  1794. </tr>
  1795. <tr>
  1796. <td width='15%'>
  1797. &lt;&lt;NULL&gt;&gt;
  1798. </td>
  1799. <td width='25%'>
  1800. &lt;null&gt;<sup id="cite_ref-xowa.usr.bookmarks.add-1_107-0" class="reference"><a href="#cite_note-xowa.usr.bookmarks.add-1-107">[108]</a></sup>
  1801. </td>
  1802. <td width='10%'>
  1803. <input id='105_scope' type='text' class='options_textbox' value='Window'>
  1804. </td>
  1805. <td width='50%'>
  1806. <input id='105_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('105');" accesskey=',' style='width:99%'>
  1807. </td>
  1808. </tr>
  1809. <tr>
  1810. <td width='15%'>
  1811. &lt;&lt;NULL&gt;&gt;
  1812. </td>
  1813. <td width='25%'>
  1814. &lt;null&gt;<sup id="cite_ref-xowa.usr.bookmarks.show-1_108-0" class="reference"><a href="#cite_note-xowa.usr.bookmarks.show-1-108">[109]</a></sup>
  1815. </td>
  1816. <td width='10%'>
  1817. <input id='106_scope' type='text' class='options_textbox' value='Window'>
  1818. </td>
  1819. <td width='50%'>
  1820. <input id='106_ipt' type='text' class='options_textbox' value='F3' onchange="ipt_changed('106');" accesskey=',' style='width:99%'>
  1821. </td>
  1822. </tr>
  1823. <tr>
  1824. <td width='15%'>
  1825. &lt;&lt;NULL&gt;&gt;
  1826. </td>
  1827. <td width='25%'>
  1828. &lt;null&gt;<sup id="cite_ref-xowa.usr.history.goto_recent-1_109-0" class="reference"><a href="#cite_note-xowa.usr.history.goto_recent-1-109">[110]</a></sup>
  1829. </td>
  1830. <td width='10%'>
  1831. <input id='107_scope' type='text' class='options_textbox' value='Window'>
  1832. </td>
  1833. <td width='50%'>
  1834. <input id='107_ipt' type='text' class='options_textbox' value='Ctrl + Shift + L' onchange="ipt_changed('107');" accesskey=',' style='width:99%'>
  1835. </td>
  1836. </tr>
  1837. <tr>
  1838. <td width='15%'>
  1839. &lt;&lt;NULL&gt;&gt;
  1840. </td>
  1841. <td width='25%'>
  1842. &lt;null&gt;<sup id="cite_ref-xowa.usr.history.show-1_110-0" class="reference"><a href="#cite_note-xowa.usr.history.show-1-110">[111]</a></sup>
  1843. </td>
  1844. <td width='10%'>
  1845. <input id='108_scope' type='text' class='options_textbox' value='Window'>
  1846. </td>
  1847. <td width='50%'>
  1848. <input id='108_ipt' type='text' class='options_textbox' value='Ctrl + Shift + H' onchange="ipt_changed('108');" accesskey=',' style='width:99%'>
  1849. </td>
  1850. </tr>
  1851. </table>
  1852. <h2>
  1853. <span class="mw-headline" id="Notes">Notes</span>
  1854. </h2>
  1855. <ol class="references">
  1856. <li id="cite_note-xowa.app.exit-1-0">
  1857. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.app.exit-1_0-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1858. </li>
  1859. <li id="cite_note-xowa.nav.go_bwd-1-1">
  1860. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.go_bwd-1_1-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1861. </li>
  1862. <li id="cite_note-xowa.nav.go_fwd-1-2">
  1863. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.go_fwd-1_2-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1864. </li>
  1865. <li id="cite_note-xowa.nav.cfg.main-1-3">
  1866. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.cfg.main-1_3-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1867. </li>
  1868. <li id="cite_note-xowa.nav.cfg.menus-1-4">
  1869. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.cfg.menus-1_4-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1870. </li>
  1871. <li id="cite_note-xowa.nav.wiki.main_page-1-5">
  1872. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.wiki.main_page-1_5-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1873. </li>
  1874. <li id="cite_note-xowa.nav.wiki.sandbox-1-6">
  1875. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.wiki.sandbox-1_6-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1876. </li>
  1877. <li id="cite_note-xowa.nav.wiki.sandbox-2-7">
  1878. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.wiki.sandbox-2_7-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1879. </li>
  1880. <li id="cite_note-xowa.nav.wiki.random-1-8">
  1881. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.wiki.random-1_8-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1882. </li>
  1883. <li id="cite_note-xowa.nav.help.help-1-9">
  1884. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.help.help-1_9-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1885. </li>
  1886. <li id="cite_note-xowa.nav.help.about-1-10">
  1887. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.help.about-1_10-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1888. </li>
  1889. <li id="cite_note-xowa.nav.help.change_log-1-11">
  1890. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.help.change_log-1_11-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1891. </li>
  1892. <li id="cite_note-xowa.nav.help.diagnostics-1-12">
  1893. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.help.diagnostics-1_12-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1894. </li>
  1895. <li id="cite_note-xowa.nav.help.xowa_main-1-13">
  1896. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.help.xowa_main-1_13-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1897. </li>
  1898. <li id="cite_note-xowa.nav.help.xowa_blog-1-14">
  1899. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.help.xowa_blog-1_14-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1900. </li>
  1901. <li id="cite_note-xowa.nav.setup.import_from_list-1-15">
  1902. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.setup.import_from_list-1_15-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1903. </li>
  1904. <li id="cite_note-xowa.nav.setup.import_from_script-1-16">
  1905. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.setup.import_from_script-1_16-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1906. </li>
  1907. <li id="cite_note-xowa.nav.setup.maintenance-1-17">
  1908. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.setup.maintenance-1_17-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1909. </li>
  1910. <li id="cite_note-xowa.nav.setup.download-1-18">
  1911. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.setup.download-1_18-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1912. </li>
  1913. <li id="cite_note-xowa.nav.system_data.log_session-1-19">
  1914. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.system_data.log_session-1_19-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1915. </li>
  1916. <li id="cite_note-xowa.nav.system_data.cfg_app-1-20">
  1917. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.system_data.cfg_app-1_20-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1918. </li>
  1919. <li id="cite_note-xowa.nav.system_data.cfg_lang-1-21">
  1920. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.system_data.cfg_lang-1_21-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1921. </li>
  1922. <li id="cite_note-xowa.nav.system_data.cfg_user-1-22">
  1923. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.system_data.cfg_user-1_22-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1924. </li>
  1925. <li id="cite_note-xowa.nav.system_data.cfg_custom-1-23">
  1926. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.system_data.cfg_custom-1_23-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1927. </li>
  1928. <li id="cite_note-xowa.nav.system_data.usr_history-1-24">
  1929. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.system_data.usr_history-1_24-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1930. </li>
  1931. <li id="cite_note-xowa.gui.font.increase-1-25">
  1932. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.font.increase-1_25-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1933. </li>
  1934. <li id="cite_note-xowa.gui.font.decrease-1-26">
  1935. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.font.decrease-1_26-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1936. </li>
  1937. <li id="cite_note-xowa.gui.font.reset-1-27">
  1938. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.font.reset-1_27-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1939. </li>
  1940. <li id="cite_note-xowa.gui.page.view.mode_read-1-28">
  1941. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.view.mode_read-1_28-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1942. </li>
  1943. <li id="cite_note-xowa.gui.page.view.mode_edit-1-29">
  1944. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.view.mode_edit-1_29-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1945. </li>
  1946. <li id="cite_note-xowa.gui.page.view.mode_html-1-30">
  1947. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.view.mode_html-1_30-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1948. </li>
  1949. <li id="cite_note-xowa.gui.page.view.mode_html-2-31">
  1950. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.view.mode_html-2_31-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1951. </li>
  1952. <li id="cite_note-xowa.gui.page.view.refresh-1-32">
  1953. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.view.refresh-1_32-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1954. </li>
  1955. <li id="cite_note-xowa.gui.page.view.reload-1-33">
  1956. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.view.reload-1_33-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1957. </li>
  1958. <li id="cite_note-xowa.gui.page.view.save_as-1-34">
  1959. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.view.save_as-1_34-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1960. </li>
  1961. <li id="cite_note-xowa.gui.page.view.print-1-35">
  1962. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.view.print-1_35-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1963. </li>
  1964. <li id="cite_note-xowa.gui.page.edit.save-1-36">
  1965. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.edit.save-1_36-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1966. </li>
  1967. <li id="cite_note-xowa.gui.page.edit.save_draft-1-37">
  1968. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.edit.save_draft-1_37-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1969. </li>
  1970. <li id="cite_note-xowa.gui.page.edit.focus_edit_box-1-38">
  1971. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.edit.focus_edit_box-1_38-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1972. </li>
  1973. <li id="cite_note-xowa.gui.page.edit.preview-1-39">
  1974. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.edit.preview-1_39-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1975. </li>
  1976. <li id="cite_note-xowa.gui.page.edit.dbg_tmpl-1-40">
  1977. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.edit.dbg_tmpl-1_40-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1978. </li>
  1979. <li id="cite_note-xowa.gui.page.edit.dbg_tmpl-2-41">
  1980. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.edit.dbg_tmpl-2_41-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1981. </li>
  1982. <li id="cite_note-xowa.gui.page.edit.dbg_html-1-42">
  1983. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.edit.dbg_html-1_42-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1984. </li>
  1985. <li id="cite_note-xowa.gui.page.edit.exec-1-43">
  1986. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.edit.exec-1_43-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1987. </li>
  1988. <li id="cite_note-xowa.gui.page.selection.select_all-1-44">
  1989. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.selection.select_all-1_44-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1990. </li>
  1991. <li id="cite_note-xowa.gui.page.selection.copy-1-45">
  1992. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.selection.copy-1_45-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1993. </li>
  1994. <li id="cite_note-xowa.gui.page.selection.save_file_as-1-46">
  1995. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.selection.save_file_as-1_46-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1996. </li>
  1997. <li id="cite_note-xowa.gui.browser.url.focus-1-47">
  1998. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.url.focus-1_47-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  1999. </li>
  2000. <li id="cite_note-xowa.gui.browser.url.focus-2-48">
  2001. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.url.focus-2_48-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2002. </li>
  2003. <li id="cite_note-xowa.gui.browser.url.exec-1-49">
  2004. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.url.exec-1_49-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2005. </li>
  2006. <li id="cite_note-xowa.gui.browser.url.exec-2-50">
  2007. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.url.exec-2_50-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2008. </li>
  2009. <li id="cite_note-xowa.gui.browser.url.exec_by_paste-1-51">
  2010. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.url.exec_by_paste-1_51-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2011. </li>
  2012. <li id="cite_note-xowa.gui.browser.url.exec_by_paste-2-52">
  2013. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.url.exec_by_paste-2_52-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2014. </li>
  2015. <li id="cite_note-xowa.gui.browser.url.exec_by_paste-3-53">
  2016. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.url.exec_by_paste-3_53-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2017. </li>
  2018. <li id="cite_note-xowa.gui.browser.url.exec_new_tab_by_paste-1-54">
  2019. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.url.exec_new_tab_by_paste-1_54-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2020. </li>
  2021. <li id="cite_note-xowa.gui.browser.url.exec_new_tab_by_paste-2-55">
  2022. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.url.exec_new_tab_by_paste-2_55-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2023. </li>
  2024. <li id="cite_note-xowa.gui.browser.url.restore-1-56">
  2025. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.url.restore-1_56-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2026. </li>
  2027. <li id="cite_note-xowa.gui.browser.search.focus-1-57">
  2028. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.search.focus-1_57-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2029. </li>
  2030. <li id="cite_note-xowa.gui.browser.search.exec-1-58">
  2031. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.search.exec-1_58-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2032. </li>
  2033. <li id="cite_note-xowa.gui.browser.search.exec-2-59">
  2034. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.search.exec-2_59-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2035. </li>
  2036. <li id="cite_note-xowa.gui.browser.html.focus-2-60">
  2037. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.html.focus-2_60-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2038. </li>
  2039. <li id="cite_note-xowa.gui.browser.html.focus-3-61">
  2040. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.html.focus-3_61-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2041. </li>
  2042. <li id="cite_note-xowa.gui.browser.html.focus-4-62">
  2043. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.html.focus-4_62-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2044. </li>
  2045. <li id="cite_note-xowa.gui.browser.html.focus-5-63">
  2046. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.html.focus-5_63-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2047. </li>
  2048. <li id="cite_note-xowa.gui.browser.html.selection_focus_toggle-1-64">
  2049. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.html.selection_focus_toggle-1_64-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2050. </li>
  2051. <li id="cite_note-xowa.gui.browser.find.show-1-65">
  2052. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.find.show-1_65-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2053. </li>
  2054. <li id="cite_note-xowa.gui.browser.find.show_by_paste-1-66">
  2055. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.find.show_by_paste-1_66-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2056. </li>
  2057. <li id="cite_note-xowa.gui.browser.find.hide-1-67">
  2058. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.find.hide-1_67-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2059. </li>
  2060. <li id="cite_note-xowa.gui.browser.find.exec-1-68">
  2061. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.find.exec-1_68-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2062. </li>
  2063. <li id="cite_note-xowa.gui.browser.find.exec-2-69">
  2064. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.find.exec-2_69-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2065. </li>
  2066. <li id="cite_note-xowa.gui.browser.find.find_fwd-1-70">
  2067. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.find.find_fwd-1_70-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2068. </li>
  2069. <li id="cite_note-xowa.gui.browser.find.find_bwd-1-71">
  2070. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.find.find_bwd-1_71-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2071. </li>
  2072. <li id="cite_note-xowa.gui.browser.find.case_toggle-1-72">
  2073. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.find.case_toggle-1_72-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2074. </li>
  2075. <li id="cite_note-xowa.gui.browser.find.wrap_toggle-1-73">
  2076. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.find.wrap_toggle-1_73-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2077. </li>
  2078. <li id="cite_note-xowa.gui.browser.prog.focus-1-74">
  2079. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.prog.focus-1_74-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2080. </li>
  2081. <li id="cite_note-xowa.gui.browser.prog_log.show-1-75">
  2082. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.prog_log.show-1_75-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2083. </li>
  2084. <li id="cite_note-xowa.gui.browser.prog_log.show-2-76">
  2085. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.prog_log.show-2_76-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2086. </li>
  2087. <li id="cite_note-xowa.gui.browser.info.focus-1-77">
  2088. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.info.focus-1_77-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2089. </li>
  2090. <li id="cite_note-xowa.gui.browser.info.clear-1-78">
  2091. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.info.clear-1_78-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2092. </li>
  2093. <li id="cite_note-xowa.gui.browser.tabs.new_dflt__at_dflt__focus_y-1-79">
  2094. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.new_dflt__at_dflt__focus_y-1_79-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2095. </li>
  2096. <li id="cite_note-xowa.gui.browser.tabs.new_link__at_dflt__focus_n-1-80">
  2097. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.new_link__at_dflt__focus_n-1_80-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2098. </li>
  2099. <li id="cite_note-xowa.gui.browser.tabs.new_href__at_dflt__focus_y-1-81">
  2100. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.new_href__at_dflt__focus_y-1_81-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2101. </li>
  2102. <li id="cite_note-xowa.gui.browser.tabs.select_bwd-1-82">
  2103. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.select_bwd-1_82-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2104. </li>
  2105. <li id="cite_note-xowa.gui.browser.tabs.select_bwd-2-83">
  2106. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.select_bwd-2_83-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2107. </li>
  2108. <li id="cite_note-xowa.gui.browser.tabs.select_fwd-1-84">
  2109. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.select_fwd-1_84-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2110. </li>
  2111. <li id="cite_note-xowa.gui.browser.tabs.select_fwd-2-85">
  2112. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.select_fwd-2_85-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2113. </li>
  2114. <li id="cite_note-xowa.gui.browser.tabs.select_by_idx_1-1-86">
  2115. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.select_by_idx_1-1_86-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2116. </li>
  2117. <li id="cite_note-xowa.gui.browser.tabs.select_by_idx_2-1-87">
  2118. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.select_by_idx_2-1_87-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2119. </li>
  2120. <li id="cite_note-xowa.gui.browser.tabs.select_by_idx_3-1-88">
  2121. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.select_by_idx_3-1_88-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2122. </li>
  2123. <li id="cite_note-xowa.gui.browser.tabs.select_by_idx_4-1-89">
  2124. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.select_by_idx_4-1_89-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2125. </li>
  2126. <li id="cite_note-xowa.gui.browser.tabs.select_by_idx_5-1-90">
  2127. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.select_by_idx_5-1_90-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2128. </li>
  2129. <li id="cite_note-xowa.gui.browser.tabs.select_by_idx_6-1-91">
  2130. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.select_by_idx_6-1_91-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2131. </li>
  2132. <li id="cite_note-xowa.gui.browser.tabs.select_by_idx_7-1-92">
  2133. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.select_by_idx_7-1_92-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2134. </li>
  2135. <li id="cite_note-xowa.gui.browser.tabs.select_by_idx_8-1-93">
  2136. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.select_by_idx_8-1_93-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2137. </li>
  2138. <li id="cite_note-xowa.gui.browser.tabs.select_by_idx_9-1-94">
  2139. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.select_by_idx_9-1_94-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2140. </li>
  2141. <li id="cite_note-xowa.gui.browser.tabs.move_bwd-1-95">
  2142. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.move_bwd-1_95-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2143. </li>
  2144. <li id="cite_note-xowa.gui.browser.tabs.move_fwd-1-96">
  2145. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.move_fwd-1_96-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2146. </li>
  2147. <li id="cite_note-xowa.gui.browser.tabs.close_cur-1-97">
  2148. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.close_cur-1_97-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2149. </li>
  2150. <li id="cite_note-xowa.gui.browser.tabs.close_others-1-98">
  2151. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.close_others-1_98-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2152. </li>
  2153. <li id="cite_note-xowa.gui.browser.tabs.close_to_bgn-1-99">
  2154. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.close_to_bgn-1_99-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2155. </li>
  2156. <li id="cite_note-xowa.gui.browser.tabs.close_to_end-1-100">
  2157. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.close_to_end-1_100-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2158. </li>
  2159. <li id="cite_note-xowa.gui.browser.tabs.close_undo-1-101">
  2160. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.close_undo-1_101-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2161. </li>
  2162. <li id="cite_note-xowa.gui.browser.tabs.pin_toggle-1-102">
  2163. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.pin_toggle-1_102-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2164. </li>
  2165. <li id="cite_note-xowa.html.tidy.toggle-1-103">
  2166. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.html.tidy.toggle-1_103-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2167. </li>
  2168. <li id="cite_note-xowa.net.enabled_n_-1-104">
  2169. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.net.enabled_n_-1_104-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2170. </li>
  2171. <li id="cite_note-xowa.net.enabled_y_-1-105">
  2172. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.net.enabled_y_-1_105-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2173. </li>
  2174. <li id="cite_note-xowa.net.enabled_x_-1-106">
  2175. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.net.enabled_x_-1_106-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2176. </li>
  2177. <li id="cite_note-xowa.usr.bookmarks.add-1-107">
  2178. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.usr.bookmarks.add-1_107-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2179. </li>
  2180. <li id="cite_note-xowa.usr.bookmarks.show-1-108">
  2181. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.usr.bookmarks.show-1_108-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2182. </li>
  2183. <li id="cite_note-xowa.usr.history.goto_recent-1-109">
  2184. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.usr.history.goto_recent-1_109-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2185. </li>
  2186. <li id="cite_note-xowa.usr.history.show-1-110">
  2187. <span class="mw-cite-backlink"><a href="#cite_ref-xowa.usr.history.show-1_110-0">^</a></span> <span class="reference-text">&lt;null&gt;</span>
  2188. </li>
  2189. </ol>
  2190. </div>
  2191. </div>
  2192. </div>
  2193. </div>
  2194. </div>
  2195. <div id="mw-head" class="noprint">
  2196. <div id="left-navigation">
  2197. <div id="p-namespaces" class="vectorTabs">
  2198. <h3>Namespaces</h3>
  2199. <ul>
  2200. <li id="ca-nstab-main" class="selected"><span><a id="ca-nstab-main-href" href="index.html">Page</a></span></li>
  2201. </ul>
  2202. </div>
  2203. </div>
  2204. </div>
  2205. <div id='mw-panel' class='noprint'>
  2206. <div id='p-logo'>
  2207. <a style="background-image: url(https://gnosygnu.github.io/xowa/xowa_logo.png);" href="http://xowa.org/" title="Visit the main page"></a>
  2208. </div>
  2209. <div class="portal" id='xowa-portal-home'>
  2210. <h3>XOWA</h3>
  2211. <div class="body">
  2212. <ul>
  2213. <li><a href="http://xowa.org/index.html" title='Visit the main page'>Main page</a></li>
  2214. <li><a href="http://xowa.org/screenshots.html" title='See screenshots of XOWA'>Screenshots</a></li>
  2215. <li><a href="http://xowa.org/wiki/home/page/Help/Download_XOWA.html" title='Download the XOWA application'>Download XOWA</a></li>
  2216. <li><a href="http://xowa.org/wiki/home/page/Dashboard/Image_databases.html" title='Download offline wikis and image databases'>Download wikis</a></li>
  2217. </ul>
  2218. </div>
  2219. </div>
  2220. <div class="portal" id='xowa-portal-stargin'>
  2221. <h3>Getting started</h3>
  2222. <div class="body">
  2223. <ul>
  2224. <li><a href="http://xowa.org/wiki/home/page/App/Setup/System_requirements.html" title='Get XOWA&apos;s system requirements'>Requirements</a></li>
  2225. <li><a href="http://xowa.org/wiki/home/page/App/Setup/Installation.html" title='Get instructions for installing XOWA'>Installation</a></li>
  2226. <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>
  2227. <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>
  2228. <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>
  2229. </ul>
  2230. </div>
  2231. </div>
  2232. <div class="portal" id='xowa-portal-help'>
  2233. <h3>Help</h3>
  2234. <div class="body">
  2235. <ul>
  2236. <li><a href="http://xowa.org/wiki/home/page/Help/About.html" title='Get more information about XOWA'>About</a></li>
  2237. <li><a href="http://xowa.org/wiki/home/page/Help/Contents.html" title='View a list of help topics'>Contents</a></li>
  2238. <li><a href="http://xowa.org/wiki/home/page/Help/Media.html" title='Read what others have written about XOWA'>Media</a></li>
  2239. <li><a href="http://xowa.org/wiki/home/page/Help/Feedback.html" title='Questions? Comments? Leave feedback for XOWA'>Feedback</a></li>
  2240. </ul>
  2241. </div>
  2242. </div>
  2243. <div class="portal" id='xowa-portal-blog'>
  2244. <h3>Blog</h3>
  2245. <div class="body">
  2246. <ul>
  2247. <li><a href="http://xowa.org/wiki/home/page/Blog.html" title='Follow XOWA''s development process'>Current</a></li>
  2248. </ul>
  2249. </div>
  2250. </div>
  2251. <div class="portal" id='xowa-portal-links'>
  2252. <h3>Links</h3>
  2253. <div class="body">
  2254. <ul>
  2255. <li><a href="http://dumps.wikimedia.org/backup-index.html" title="Get wiki datababase dumps directly from Wikimedia">Wikimedia dumps</a></li>
  2256. <li><a href="https://archive.org/search.php?query=xowa" title="Search archive.org for XOWA files">XOWA @ archive.org</a></li>
  2257. <li><a href="http://en.wikipedia.org" title="Visit Wikipedia (and compare to XOWA!)">English Wikipedia</a></li>
  2258. </ul>
  2259. </div>
  2260. </div>
  2261. <div class="portal" id='xowa-portal-donate'>
  2262. <h3>Donate</h3>
  2263. <div class="body">
  2264. <ul>
  2265. <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/ -->
  2266. <li><a href="https://donate.wikimedia.org/wiki/Special:FundraiserRedirector" title="Support Wikipedia!">Wikipedia</a></li>
  2267. <!-- <li><a href="" title="Support XOWA! (but only after you've supported archive.org and Wikipedia)">XOWA</a></li> -->
  2268. </ul>
  2269. </div>
  2270. </div>
  2271. </div>
  2272. </body>
  2273. </html>