123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301 |
- <!DOCTYPE html>
- <html dir="ltr">
- <head>
- <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
- <title>Options/Shortcuts - XOWA</title>
- <link rel="shortcut icon" href="https://gnosygnu.github.io/xowa/xowa_logo.png" />
- <link rel="stylesheet" href="https://gnosygnu.github.io/xowa/xowa_common.css" type="text/css">
- <style>
- .options_row_label {font-weight:bold; vertical-align:text-top; text-align:right; width:150px;}
- .options_table {border: 1px solid #AAAAAA; border-collapse: collapse; color: black; margin: 1em 0; background-color: #F9F9F9;}
- .options_table td {border: 1px solid #AAAAAA; padding: 0.2em;}
- .options_textbox {padding: 2px; border: 1px solid black;}
- .options_textbox_num {padding: 2px; border: 1px solid black; text-align:right;}
- .options_textarea {padding: 2px; border: 1px solid black;}
- .options_select {padding: 2px; border: 1px solid black;}
- .options_button {padding: 2px; border: 1px solid black; background: white; height: 22px; margin-left: 1px; vertical-align: top;}
- .options_checkbox {padding: 2px; border: 1px solid black;}
- .options_readonly {background-color:#F9F9F9;}
- </style>
- <style>
- .optionsButton
- {
- width: 100px;
- height: 40px;
- font-family: 'Segoe UI';
- font-size: 12px;
- margin-left: -5px;
- cursor: pointer;
- background-color: lightgray;
- text-align: center;
- }
- .optionsLink
- {
- color: black !important;
- text-decoration: none;
- }
- .optionsButton.active
- {
- width: 100px;
- height: 40px;
- font-family: 'Segoe UI';
- font-size: 12px;
- margin-left: -5px;
- cursor: pointer;
- background-color: dimgray;
- color: white !important;
- border: solid 1px dimgray;
- }
- .optionsButton.active a
- {
- color: white !important;
- }
- .tabs
- {
- width: 100%;
- margin-top: 10px;
- }
- .tab-links ul
- {
- margin-left: -40px;
- }
- .tab-links li
- {
- margin: 0px 0px 0px 0px;
- float: left;
- list-style: none;
- }
- .tab-links a
- {
- padding: 9px 15px 9px 15px;
- border-radius: 3px 3px 0px 0px;
- background: #f0f0f0;
- font-family: 'Segoe UI';
- font-size: 13px;
- color: black !important;
- text-decoration: none;
- border-radius: 3px;
- border-top: solid 1px gray;
- border-left: solid 1px gray;
- border-right: solid 1px gray;
- }
- .tab-links a:hover
- {
- background: #B0B0B0;
- text-decoration: none;
- }
- li.active a, li.active a:hover
- {
- background: #fff;
- color: #4c4c4c;
- font-weight: bold;
- }
- .tab-content
- {
- padding: 15px;
- border-radius: 3px;
- background: #fff;
- border-top: solid 1px gray;
- margin-top: 5px;
- min-height: 300px;
- }
- </style>
- <style>
- .options_row_label {font-weight:bold; vertical-align:text-top; text-align:right; width:150px;}
- .options_table {border: 1px solid #AAAAAA; border-collapse: collapse; color: black; margin: 1em 0; background-color: #F9F9F9;}
- .options_table td {border: 1px solid #AAAAAA; padding: 0.2em;}
- .options_textbox {padding: 2px; border: 1px solid black;}
- .options_textbox_num {padding: 2px; border: 1px solid black; text-align:right;}
- .options_textarea {padding: 2px; border: 1px solid black;}
- .options_select {padding: 2px; border: 1px solid black;}
- .options_button {padding: 2px; border: 1px solid black; background: white; height: 22px; margin-left: 1px; vertical-align: top;}
- .options_checkbox {padding: 2px; border: 1px solid black;}
- .options_readonly {background-color:#F9F9F9;}
- </style>
- <style>
- .optionsButton
- {
- width: 100px;
- height: 40px;
- font-family: 'Segoe UI';
- font-size: 12px;
- margin-left: -5px;
- cursor: pointer;
- background-color: lightgray;
- text-align: center;
- }
- .optionsLink
- {
- color: black !important;
- text-decoration: none;
- }
- .optionsButton.active
- {
- width: 100px;
- height: 40px;
- font-family: 'Segoe UI';
- font-size: 12px;
- margin-left: -5px;
- cursor: pointer;
- background-color: dimgray;
- color: white !important;
- border: solid 1px dimgray;
- }
- .optionsButton.active a
- {
- color: white !important;
- }
- .tabs
- {
- width: 100%;
- margin-top: 10px;
- }
- .tab-links ul
- {
- margin-left: -40px;
- }
- .tab-links li
- {
- margin: 0px 0px 0px 0px;
- float: left;
- list-style: none;
- }
- .tab-links a
- {
- padding: 9px 15px 9px 15px;
- border-radius: 3px 3px 0px 0px;
- background: #f0f0f0;
- font-family: 'Segoe UI';
- font-size: 13px;
- color: black !important;
- text-decoration: none;
- border-radius: 3px;
- border-top: solid 1px gray;
- border-left: solid 1px gray;
- border-right: solid 1px gray;
- }
- .tab-links a:hover
- {
- background: #B0B0B0;
- text-decoration: none;
- }
- li.active a, li.active a:hover
- {
- background: #fff;
- color: #4c4c4c;
- font-weight: bold;
- }
- .tab-content
- {
- padding: 15px;
- border-radius: 3px;
- background: #fff;
- border-top: solid 1px gray;
- margin-top: 5px;
- min-height: 300px;
- }
- </style>
- </head>
- <body class="mediawiki ltr sitedir-ltr ns-0 ns-subject skin-vector action-submit vector-animateLayout" spellcheck="false">
- <div id="mw-page-base" class="noprint"></div>
- <div id="mw-head-base" class="noprint"></div>
- <div id="content" class="mw-body">
- <h1 id="firstHeading" class="firstHeading"><span>Options/Shortcuts</span></h1>
- <div id="bodyContent" class="mw-body-content">
- <div id="siteSub">From XOWA: the free, open-source, offline wiki application</div>
- <div id="contentSub"></div>
- <div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr">
-
- <div>
- <table>
- <tr>
- <td class='optionsButton'>
- <a class='optionsLink' href='/wiki/Options/Window'>Apps (basic)</a>
- </td>
- <td class='optionsButton active'>
- <a class='optionsLink' href='/wiki/Options/Security'>Apps (advanced)</a>
- </td>
- <td class='optionsButton'>
- <a class='optionsLink' href='/wiki/Options/Import'>Wiki</a>
- </td>
- <td class='optionsButton'>
- <a class='optionsLink' href='/wiki/Options/HTML'>HTML</a>
- </td>
- <td class='optionsButton'>
- <a class='optionsLink' href='/wiki/Options/Content_apps'>External apps</a>
- </td>
- <td class='optionsButton'>
- <a class='optionsLink' href='/wiki/Options/Search_suggest'>Modules</a>
- </td>
- <td class='optionsButton'>
- <a class='optionsLink' href='/wiki/Options/Math'>Extensions</a>
- </td>
- <td class='optionsButton'>
- <a class='optionsLink' href='/wiki/Options/Dev'>Misc</a>
- </td>
- </tr>
- </table>
- </div>
- <div class="tabs">
- <div>
- <ul class='tab-links' style='margin-left:0px;'>
- <li class=''>
- <a href='/wiki/Options/Security'>Security</a>
- </li>
- <li class='active'>
- <a href='/wiki/Options/Shortcuts'>Shortcuts</a>
- </li>
- <li class=''>
- <a href='/wiki/Options/Menus'>Menus</a>
- </li>
- <li class=''>
- <a href='/wiki/Options/Config_script'>Config script</a>
- </li>
- </ul>
- </div><br>
- <div class='tab-content'>
- <div id="toc" class="toc">
- <div id="toctitle">
- <h2>
- Contents
- </h2>
- </div>
- <ul>
- <li class="toclevel-1 tocsection-1">
- <a href="#Shortcuts"><span class="tocnumber">1</span> <span class="toctext">Shortcuts</span></a>
- </li>
- <li class="toclevel-1 tocsection-2">
- <a href="#Notes"><span class="tocnumber">2</span> <span class="toctext">Notes</span></a>
- </li>
- </ul>
- </div>
- <div style='float:right'>
- <a href='#' onclick='return change_binding("", "", "")'>show keybinding</a>
- </div><br>
- <div style='float:right; margin-right:10px; margin-top:5px;'>
- <p>
- <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>
- </p>
- </div><br>
-
- <h2>
- <span class="mw-headline" id="Shortcuts">Shortcuts</span>
- </h2>
- <table class='wikitable sortable'>
- <tr>
- <th>
- Category
- </th>
- <th>
- Name
- </th>
- <th>
- Scope
- </th>
- <th>
- Shortcut
- </th>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><sup id="cite_ref-xowa.app.exit-1_0-0" class="reference"><a href="#cite_note-xowa.app.exit-1-0">[1]</a></sup>
- </td>
- <td width='10%'>
- <input id='1_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='1_ipt' type='text' class='options_textbox' value='Ctrl + Q' onchange="ipt_changed('1');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='2_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='2_ipt' type='text' class='options_textbox' value='Alt + Left' onchange="ipt_changed('2');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='3_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='3_ipt' type='text' class='options_textbox' value='Alt + Right' onchange="ipt_changed('3');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='4_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='4_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('4');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='5_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='5_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('5');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='6_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='6_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('6');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='8_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='8_ipt' type='text' class='options_textbox' value='Ctrl + Shift + G, Ctrl + Shift + S' onchange="ipt_changed('8');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='9_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='9_ipt' type='text' class='options_textbox' value='Ctrl + F1' onchange="ipt_changed('9');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='7_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='7_ipt' type='text' class='options_textbox' value='Ctrl + Shift + R' onchange="ipt_changed('7');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='10_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='10_ipt' type='text' class='options_textbox' value='F1' onchange="ipt_changed('10');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='13_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='13_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('13');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='11_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='11_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('11');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='12_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='12_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('12');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='14_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='14_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('14');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='15_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='15_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('15');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='16_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='16_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('16');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='17_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='17_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('17');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='18_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='18_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('18');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='19_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='19_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('19');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='20_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='20_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('20');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='21_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='21_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('21');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='22_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='22_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('22');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='23_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='23_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('23');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='24_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='24_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('24');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='25_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='25_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('25');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='26_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='26_ipt' type='text' class='options_textbox' value='Ctrl + Equal' onchange="ipt_changed('26');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='27_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='27_ipt' type='text' class='options_textbox' value='Ctrl + Minus' onchange="ipt_changed('27');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='28_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='28_ipt' type='text' class='options_textbox' value='Ctrl + 0' onchange="ipt_changed('28');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='29_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='29_ipt' type='text' class='options_textbox' value='Ctrl + M, Ctrl + R' onchange="ipt_changed('29');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='30_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='30_ipt' type='text' class='options_textbox' value='Ctrl + M, Ctrl + E' onchange="ipt_changed('30');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='31_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='31_ipt' type='text' class='options_textbox' value='Ctrl + M, Ctrl + H' onchange="ipt_changed('31');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='32_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='32_ipt' type='text' class='options_textbox' value='Ctrl + U' onchange="ipt_changed('32');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='34_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='34_ipt' type='text' class='options_textbox' value='Shift + F5' onchange="ipt_changed('34');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='33_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='33_ipt' type='text' class='options_textbox' value='F5' onchange="ipt_changed('33');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='35_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='35_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('35');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='36_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='36_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('36');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='40_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='40_ipt' type='text' class='options_textbox' value='Alt + Shift + S' onchange="ipt_changed('40');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='41_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='41_ipt' type='text' class='options_textbox' value='Ctrl + S' onchange="ipt_changed('41');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='42_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='42_ipt' type='text' class='options_textbox' value='Alt + Shift + Comma' onchange="ipt_changed('42');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='43_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='43_ipt' type='text' class='options_textbox' value='Alt + Shift + P' onchange="ipt_changed('43');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='44_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='44_ipt' type='text' class='options_textbox' value='Ctrl + E, Ctrl + E' onchange="ipt_changed('44');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='45_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='45_ipt' type='text' class='options_textbox' value='Alt + Shift + D, Alt + Shift + D' onchange="ipt_changed('45');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='46_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='46_ipt' type='text' class='options_textbox' value='Ctrl + E, Ctrl + H' onchange="ipt_changed('46');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='47_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='47_ipt' type='text' class='options_textbox' value='Ctrl + E, Ctrl + G' onchange="ipt_changed('47');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='37_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='37_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('37');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='38_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='38_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('38');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='39_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='39_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('39');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='48_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='48_ipt' type='text' class='options_textbox' value='Alt + D' onchange="ipt_changed('48');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='49_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='49_ipt' type='text' class='options_textbox' value='Ctrl + L' onchange="ipt_changed('49');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='50_scope' type='text' class='options_textbox' value='Url bar'>
- </td>
- <td width='50%'>
- <input id='50_ipt' type='text' class='options_textbox' value='Enter' onchange="ipt_changed('50');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='51_scope' type='text' class='options_textbox' value='Url bar'>
- </td>
- <td width='50%'>
- <input id='51_ipt' type='text' class='options_textbox' value='Keypad Enter' onchange="ipt_changed('51');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='54_scope' type='text' class='options_textbox' value='Url bar'>
- </td>
- <td width='50%'>
- <input id='54_ipt' type='text' class='options_textbox' value='Middle Click' onchange="ipt_changed('54');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='55_scope' type='text' class='options_textbox' value='Url bar'>
- </td>
- <td width='50%'>
- <input id='55_ipt' type='text' class='options_textbox' value='Alt + Enter' onchange="ipt_changed('55');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='56_scope' type='text' class='options_textbox' value='Url bar'>
- </td>
- <td width='50%'>
- <input id='56_ipt' type='text' class='options_textbox' value='Alt + Keypad Enter' onchange="ipt_changed('56');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='52_scope' type='text' class='options_textbox' value='Url bar'>
- </td>
- <td width='50%'>
- <input id='52_ipt' type='text' class='options_textbox' value='Ctrl + Enter' onchange="ipt_changed('52');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='53_scope' type='text' class='options_textbox' value='Url bar'>
- </td>
- <td width='50%'>
- <input id='53_ipt' type='text' class='options_textbox' value='Ctrl + Keypad Enter' onchange="ipt_changed('53');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='57_scope' type='text' class='options_textbox' value='Url bar'>
- </td>
- <td width='50%'>
- <input id='57_ipt' type='text' class='options_textbox' value='Ctrl + U' onchange="ipt_changed('57');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='58_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='58_ipt' type='text' class='options_textbox' value='Ctrl + Alt + S' onchange="ipt_changed('58');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='59_scope' type='text' class='options_textbox' value='Search box'>
- </td>
- <td width='50%'>
- <input id='59_ipt' type='text' class='options_textbox' value='Enter' onchange="ipt_changed('59');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='60_scope' type='text' class='options_textbox' value='Search box'>
- </td>
- <td width='50%'>
- <input id='60_ipt' type='text' class='options_textbox' value='Keypad Enter' onchange="ipt_changed('60');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='85_scope' type='text' class='options_textbox' value='Url bar'>
- </td>
- <td width='50%'>
- <input id='85_ipt' type='text' class='options_textbox' value='Escape' onchange="ipt_changed('85');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='86_scope' type='text' class='options_textbox' value='Search box'>
- </td>
- <td width='50%'>
- <input id='86_ipt' type='text' class='options_textbox' value='Escape' onchange="ipt_changed('86');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='87_scope' type='text' class='options_textbox' value='Status bar'>
- </td>
- <td width='50%'>
- <input id='87_ipt' type='text' class='options_textbox' value='Escape' onchange="ipt_changed('87');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='88_scope' type='text' class='options_textbox' value='System Messages box'>
- </td>
- <td width='50%'>
- <input id='88_ipt' type='text' class='options_textbox' value='Escape' onchange="ipt_changed('88');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='89_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='89_ipt' type='text' class='options_textbox' value='Ctrl + G, Ctrl + G' onchange="ipt_changed('89');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='90_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='90_ipt' type='text' class='options_textbox' value='Ctrl + F' onchange="ipt_changed('90');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='91_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='91_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('91');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='92_scope' type='text' class='options_textbox' value='Find box'>
- </td>
- <td width='50%'>
- <input id='92_ipt' type='text' class='options_textbox' value='Escape' onchange="ipt_changed('92');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='93_scope' type='text' class='options_textbox' value='Find box'>
- </td>
- <td width='50%'>
- <input id='93_ipt' type='text' class='options_textbox' value='Enter' onchange="ipt_changed('93');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='94_scope' type='text' class='options_textbox' value='Find box'>
- </td>
- <td width='50%'>
- <input id='94_ipt' type='text' class='options_textbox' value='Keypad Enter' onchange="ipt_changed('94');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='95_scope' type='text' class='options_textbox' value='Find box'>
- </td>
- <td width='50%'>
- <input id='95_ipt' type='text' class='options_textbox' value='Alt + N' onchange="ipt_changed('95');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='96_scope' type='text' class='options_textbox' value='Find box'>
- </td>
- <td width='50%'>
- <input id='96_ipt' type='text' class='options_textbox' value='Alt + P' onchange="ipt_changed('96');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='97_scope' type='text' class='options_textbox' value='Find box'>
- </td>
- <td width='50%'>
- <input id='97_ipt' type='text' class='options_textbox' value='Alt + C' onchange="ipt_changed('97');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='98_scope' type='text' class='options_textbox' value='Find box'>
- </td>
- <td width='50%'>
- <input id='98_ipt' type='text' class='options_textbox' value='Alt + W' onchange="ipt_changed('98');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='99_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='99_ipt' type='text' class='options_textbox' value='Ctrl + Alt + P' onchange="ipt_changed('99');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='102_scope' type='text' class='options_textbox' value='Status bar'>
- </td>
- <td width='50%'>
- <input id='102_ipt' type='text' class='options_textbox' value='Middle Click' onchange="ipt_changed('102');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='103_scope' type='text' class='options_textbox' value='Status bar'>
- </td>
- <td width='50%'>
- <input id='103_ipt' type='text' class='options_textbox' value='Ctrl + Shift + P' onchange="ipt_changed('103');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='100_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='100_ipt' type='text' class='options_textbox' value='Ctrl + Alt + I' onchange="ipt_changed('100');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='101_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='101_ipt' type='text' class='options_textbox' value='Ctrl + Alt + C' onchange="ipt_changed('101');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='61_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='61_ipt' type='text' class='options_textbox' value='Ctrl + T' onchange="ipt_changed('61');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='62_scope' type='text' class='options_textbox' value='HTML browser'>
- </td>
- <td width='50%'>
- <input id='62_ipt' type='text' class='options_textbox' value='Middle Click' onchange="ipt_changed('62');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='63_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='63_ipt' type='text' class='options_textbox' value='Ctrl + G, Ctrl + F' onchange="ipt_changed('63');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='71_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='71_ipt' type='text' class='options_textbox' value='Ctrl + Shift + Tab' onchange="ipt_changed('71');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='72_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='72_ipt' type='text' class='options_textbox' value='Ctrl + PageUp' onchange="ipt_changed('72');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='69_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='69_ipt' type='text' class='options_textbox' value='Ctrl + Tab' onchange="ipt_changed('69');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='70_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='70_ipt' type='text' class='options_textbox' value='Ctrl + PageDown' onchange="ipt_changed('70');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='73_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='73_ipt' type='text' class='options_textbox' value='Ctrl + 1' onchange="ipt_changed('73');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='74_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='74_ipt' type='text' class='options_textbox' value='Ctrl + 2' onchange="ipt_changed('74');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='75_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='75_ipt' type='text' class='options_textbox' value='Ctrl + 3' onchange="ipt_changed('75');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='76_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='76_ipt' type='text' class='options_textbox' value='Ctrl + 4' onchange="ipt_changed('76');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='77_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='77_ipt' type='text' class='options_textbox' value='Ctrl + 5' onchange="ipt_changed('77');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='78_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='78_ipt' type='text' class='options_textbox' value='Ctrl + 6' onchange="ipt_changed('78');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='79_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='79_ipt' type='text' class='options_textbox' value='Ctrl + 7' onchange="ipt_changed('79');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='80_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='80_ipt' type='text' class='options_textbox' value='Ctrl + 8' onchange="ipt_changed('80');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='81_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='81_ipt' type='text' class='options_textbox' value='Ctrl + 9' onchange="ipt_changed('81');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='82_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='82_ipt' type='text' class='options_textbox' value='Alt + PageUp' onchange="ipt_changed('82');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='83_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='83_ipt' type='text' class='options_textbox' value='Alt + PageDown' onchange="ipt_changed('83');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='64_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='64_ipt' type='text' class='options_textbox' value='Ctrl + W' onchange="ipt_changed('64');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='65_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='65_ipt' type='text' class='options_textbox' value='Ctrl + Shift + W, Ctrl + Shift + W' onchange="ipt_changed('65');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='66_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='66_ipt' type='text' class='options_textbox' value='Ctrl + Shift + W, Ctrl + Shift + Left' onchange="ipt_changed('66');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='67_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='67_ipt' type='text' class='options_textbox' value='Ctrl + Shift + W, Ctrl + Shift + Right' onchange="ipt_changed('67');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='68_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='68_ipt' type='text' class='options_textbox' value='Ctrl + Shift + T' onchange="ipt_changed('68');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='84_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='84_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('84');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='104_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='104_ipt' type='text' class='options_textbox' value='F7' onchange="ipt_changed('104');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='109_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='109_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('109');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='110_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='110_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('110');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='111_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='111_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('111');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='105_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='105_ipt' type='text' class='options_textbox' value='None' onchange="ipt_changed('105');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='106_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='106_ipt' type='text' class='options_textbox' value='F3' onchange="ipt_changed('106');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='107_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='107_ipt' type='text' class='options_textbox' value='Ctrl + Shift + L' onchange="ipt_changed('107');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- <tr>
- <td width='15%'>
- <<NULL>>
- </td>
- <td width='25%'>
- <null><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>
- </td>
- <td width='10%'>
- <input id='108_scope' type='text' class='options_textbox' value='Window'>
- </td>
- <td width='50%'>
- <input id='108_ipt' type='text' class='options_textbox' value='Ctrl + Shift + H' onchange="ipt_changed('108');" accesskey=',' style='width:99%'>
- </td>
- </tr>
- </table>
- <h2>
- <span class="mw-headline" id="Notes">Notes</span>
- </h2>
- <ol class="references">
- <li id="cite_note-xowa.app.exit-1-0">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.app.exit-1_0-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.nav.go_bwd-1-1">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.go_bwd-1_1-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.nav.go_fwd-1-2">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.go_fwd-1_2-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.nav.cfg.main-1-3">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.cfg.main-1_3-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.nav.cfg.menus-1-4">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.cfg.menus-1_4-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.nav.wiki.main_page-1-5">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.wiki.main_page-1_5-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.nav.wiki.sandbox-1-6">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.wiki.sandbox-1_6-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.nav.wiki.sandbox-2-7">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.wiki.sandbox-2_7-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.nav.wiki.random-1-8">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.wiki.random-1_8-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.nav.help.help-1-9">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.help.help-1_9-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.nav.help.about-1-10">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.help.about-1_10-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.nav.help.change_log-1-11">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.help.change_log-1_11-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.nav.help.diagnostics-1-12">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.help.diagnostics-1_12-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.nav.help.xowa_main-1-13">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.help.xowa_main-1_13-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.nav.help.xowa_blog-1-14">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.help.xowa_blog-1_14-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.nav.setup.import_from_list-1-15">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.setup.import_from_list-1_15-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.nav.setup.import_from_script-1-16">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.setup.import_from_script-1_16-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.nav.setup.maintenance-1-17">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.setup.maintenance-1_17-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.nav.setup.download-1-18">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.setup.download-1_18-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.nav.system_data.log_session-1-19">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.system_data.log_session-1_19-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.nav.system_data.cfg_app-1-20">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.system_data.cfg_app-1_20-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.nav.system_data.cfg_lang-1-21">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.system_data.cfg_lang-1_21-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.nav.system_data.cfg_user-1-22">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.system_data.cfg_user-1_22-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.nav.system_data.cfg_custom-1-23">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.system_data.cfg_custom-1_23-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.nav.system_data.usr_history-1-24">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.nav.system_data.usr_history-1_24-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.font.increase-1-25">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.font.increase-1_25-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.font.decrease-1-26">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.font.decrease-1_26-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.font.reset-1-27">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.font.reset-1_27-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.page.view.mode_read-1-28">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.view.mode_read-1_28-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.page.view.mode_edit-1-29">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.view.mode_edit-1_29-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.page.view.mode_html-1-30">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.view.mode_html-1_30-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.page.view.mode_html-2-31">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.view.mode_html-2_31-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.page.view.refresh-1-32">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.view.refresh-1_32-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.page.view.reload-1-33">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.view.reload-1_33-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.page.view.save_as-1-34">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.view.save_as-1_34-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.page.view.print-1-35">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.view.print-1_35-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.page.edit.save-1-36">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.edit.save-1_36-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.page.edit.save_draft-1-37">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.edit.save_draft-1_37-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.page.edit.focus_edit_box-1-38">
- <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"><null></span>
- </li>
- <li id="cite_note-xowa.gui.page.edit.preview-1-39">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.edit.preview-1_39-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.page.edit.dbg_tmpl-1-40">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.edit.dbg_tmpl-1_40-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.page.edit.dbg_tmpl-2-41">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.edit.dbg_tmpl-2_41-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.page.edit.dbg_html-1-42">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.edit.dbg_html-1_42-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.page.edit.exec-1-43">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.edit.exec-1_43-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.page.selection.select_all-1-44">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.selection.select_all-1_44-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.page.selection.copy-1-45">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.page.selection.copy-1_45-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.page.selection.save_file_as-1-46">
- <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"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.url.focus-1-47">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.url.focus-1_47-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.url.focus-2-48">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.url.focus-2_48-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.url.exec-1-49">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.url.exec-1_49-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.url.exec-2-50">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.url.exec-2_50-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.url.exec_by_paste-1-51">
- <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"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.url.exec_by_paste-2-52">
- <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"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.url.exec_by_paste-3-53">
- <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"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.url.exec_new_tab_by_paste-1-54">
- <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"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.url.exec_new_tab_by_paste-2-55">
- <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"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.url.restore-1-56">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.url.restore-1_56-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.search.focus-1-57">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.search.focus-1_57-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.search.exec-1-58">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.search.exec-1_58-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.search.exec-2-59">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.search.exec-2_59-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.html.focus-2-60">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.html.focus-2_60-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.html.focus-3-61">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.html.focus-3_61-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.html.focus-4-62">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.html.focus-4_62-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.html.focus-5-63">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.html.focus-5_63-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.html.selection_focus_toggle-1-64">
- <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"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.find.show-1-65">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.find.show-1_65-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.find.show_by_paste-1-66">
- <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"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.find.hide-1-67">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.find.hide-1_67-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.find.exec-1-68">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.find.exec-1_68-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.find.exec-2-69">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.find.exec-2_69-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.find.find_fwd-1-70">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.find.find_fwd-1_70-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.find.find_bwd-1-71">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.find.find_bwd-1_71-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.find.case_toggle-1-72">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.find.case_toggle-1_72-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.find.wrap_toggle-1-73">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.find.wrap_toggle-1_73-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.prog.focus-1-74">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.prog.focus-1_74-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.prog_log.show-1-75">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.prog_log.show-1_75-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.prog_log.show-2-76">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.prog_log.show-2_76-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.info.focus-1-77">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.info.focus-1_77-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.info.clear-1-78">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.info.clear-1_78-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.tabs.new_dflt__at_dflt__focus_y-1-79">
- <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"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.tabs.new_link__at_dflt__focus_n-1-80">
- <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"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.tabs.new_href__at_dflt__focus_y-1-81">
- <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"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.tabs.select_bwd-1-82">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.select_bwd-1_82-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.tabs.select_bwd-2-83">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.select_bwd-2_83-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.tabs.select_fwd-1-84">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.select_fwd-1_84-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.tabs.select_fwd-2-85">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.select_fwd-2_85-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.tabs.select_by_idx_1-1-86">
- <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"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.tabs.select_by_idx_2-1-87">
- <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"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.tabs.select_by_idx_3-1-88">
- <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"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.tabs.select_by_idx_4-1-89">
- <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"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.tabs.select_by_idx_5-1-90">
- <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"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.tabs.select_by_idx_6-1-91">
- <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"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.tabs.select_by_idx_7-1-92">
- <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"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.tabs.select_by_idx_8-1-93">
- <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"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.tabs.select_by_idx_9-1-94">
- <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"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.tabs.move_bwd-1-95">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.move_bwd-1_95-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.tabs.move_fwd-1-96">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.move_fwd-1_96-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.tabs.close_cur-1-97">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.close_cur-1_97-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.tabs.close_others-1-98">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.close_others-1_98-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.tabs.close_to_bgn-1-99">
- <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"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.tabs.close_to_end-1-100">
- <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"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.tabs.close_undo-1-101">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.close_undo-1_101-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.gui.browser.tabs.pin_toggle-1-102">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.gui.browser.tabs.pin_toggle-1_102-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.html.tidy.toggle-1-103">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.html.tidy.toggle-1_103-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.net.enabled_n_-1-104">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.net.enabled_n_-1_104-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.net.enabled_y_-1-105">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.net.enabled_y_-1_105-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.net.enabled_x_-1-106">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.net.enabled_x_-1_106-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.usr.bookmarks.add-1-107">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.usr.bookmarks.add-1_107-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.usr.bookmarks.show-1-108">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.usr.bookmarks.show-1_108-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.usr.history.goto_recent-1-109">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.usr.history.goto_recent-1_109-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- <li id="cite_note-xowa.usr.history.show-1-110">
- <span class="mw-cite-backlink"><a href="#cite_ref-xowa.usr.history.show-1_110-0">^</a></span> <span class="reference-text"><null></span>
- </li>
- </ol>
- </div>
- </div>
-
- </div>
- </div>
- </div>
- <div id="mw-head" class="noprint">
- <div id="left-navigation">
- <div id="p-namespaces" class="vectorTabs">
- <h3>Namespaces</h3>
- <ul>
- <li id="ca-nstab-main" class="selected"><span><a id="ca-nstab-main-href" href="index.html">Page</a></span></li>
- </ul>
- </div>
- </div>
- </div>
- <div id='mw-panel' class='noprint'>
- <div id='p-logo'>
- <a style="background-image: url(https://gnosygnu.github.io/xowa/xowa_logo.png);" href="http://xowa.org/" title="Visit the main page"></a>
- </div>
- <div class="portal" id='xowa-portal-home'>
- <h3>XOWA</h3>
- <div class="body">
- <ul>
- <li><a href="http://xowa.org/index.html" title='Visit the main page'>Main page</a></li>
- <li><a href="http://xowa.org/screenshots.html" title='See screenshots of XOWA'>Screenshots</a></li>
- <li><a href="http://xowa.org/wiki/home/page/Help/Download_XOWA.html" title='Download the XOWA application'>Download XOWA</a></li>
- <li><a href="http://xowa.org/wiki/home/page/Dashboard/Image_databases.html" title='Download offline wikis and image databases'>Download wikis</a></li>
- </ul>
- </div>
- </div>
- <div class="portal" id='xowa-portal-stargin'>
- <h3>Getting started</h3>
- <div class="body">
- <ul>
- <li><a href="http://xowa.org/wiki/home/page/App/Setup/System_requirements.html" title='Get XOWA's system requirements'>Requirements</a></li>
- <li><a href="http://xowa.org/wiki/home/page/App/Setup/Installation.html" title='Get instructions for installing XOWA'>Installation</a></li>
- <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>
- <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>
- <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>
- </ul>
- </div>
- </div>
- <div class="portal" id='xowa-portal-help'>
- <h3>Help</h3>
- <div class="body">
- <ul>
- <li><a href="http://xowa.org/wiki/home/page/Help/About.html" title='Get more information about XOWA'>About</a></li>
- <li><a href="http://xowa.org/wiki/home/page/Help/Contents.html" title='View a list of help topics'>Contents</a></li>
- <li><a href="http://xowa.org/wiki/home/page/Help/Media.html" title='Read what others have written about XOWA'>Media</a></li>
- <li><a href="http://xowa.org/wiki/home/page/Help/Feedback.html" title='Questions? Comments? Leave feedback for XOWA'>Feedback</a></li>
- </ul>
- </div>
- </div>
-
- <div class="portal" id='xowa-portal-blog'>
- <h3>Blog</h3>
- <div class="body">
- <ul>
- <li><a href="http://xowa.org/wiki/home/page/Blog.html" title='Follow XOWA''s development process'>Current</a></li>
- </ul>
- </div>
- </div>
- <div class="portal" id='xowa-portal-links'>
- <h3>Links</h3>
- <div class="body">
- <ul>
- <li><a href="http://dumps.wikimedia.org/backup-index.html" title="Get wiki datababase dumps directly from Wikimedia">Wikimedia dumps</a></li>
- <li><a href="https://archive.org/search.php?query=xowa" title="Search archive.org for XOWA files">XOWA @ archive.org</a></li>
- <li><a href="http://en.wikipedia.org" title="Visit Wikipedia (and compare to XOWA!)">English Wikipedia</a></li>
- </ul>
- </div>
- </div>
- <div class="portal" id='xowa-portal-donate'>
- <h3>Donate</h3>
- <div class="body">
- <ul>
- <li><a href="https://archive.org/donate/index.php" title="Support archive.org!">archive.org</a></li><!-- listed first due to recent fire damages: http://blog.archive.org/2013/11/06/scanning-center-fire-please-help-rebuild/ -->
- <li><a href="https://donate.wikimedia.org/wiki/Special:FundraiserRedirector" title="Support Wikipedia!">Wikipedia</a></li>
- <!-- <li><a href="" title="Support XOWA! (but only after you've supported archive.org and Wikipedia)">XOWA</a></li> -->
- </ul>
- </div>
- </div>
- </div>
- </body>
- </html>
|