Shortcuts.html 302 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133
  1. <!DOCTYPE html>
  2. <html dir="ltr">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
  5. <title>Options/Shortcuts - XOWA</title>
  6. <link rel="shortcut icon" href="https://gnosygnu.github.io/xowa/xowa_logo.png" />
  7. <link rel="stylesheet" href="https://gnosygnu.github.io/xowa/xowa_common.css" type="text/css">
  8. </head>
  9. <body class="mediawiki ltr sitedir-ltr ns-0 ns-subject skin-vector action-submit vector-animateLayout" spellcheck="false">
  10. <div id="mw-page-base" class="noprint"></div>
  11. <div id="mw-head-base" class="noprint"></div>
  12. <div id="content" class="mw-body">
  13. <h1 id="firstHeading" class="firstHeading"><span>Options/Shortcuts</span></h1>
  14. <div id="bodyContent" class="mw-body-content">
  15. <div id="siteSub">From XOWA: the free, open-source, offline wiki application</div>
  16. <div id="contentSub"></div>
  17. <div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr">
  18. <div id='xocfg_body'>
  19. <!-- TEXT:err_msg -->
  20. <div id='xocfg_err'></div>
  21. <div>
  22. <!-- BTN:info -->
  23. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.cfg_edit.help__toggle_all()' title='toggle all help'>&nbsp;</span>
  24. <!-- COMBO:cfg_grps -->
  25. <select id='xocfg_nav_select' onchange='xo.cfg_edit.select__send(this);' onkeyup='xo.cfg_edit.select__by_keypress(event, this);' accesskey='l'>
  26. <option value='xowa.app.security' >App - Security</option>
  27. <option value='xowa.app.startup' >App - Startup</option>
  28. <option value='xowa.app.dbs' >App - Databases</option>
  29. <option value='xowa.app.update' >App - Update</option>
  30. <option value='xowa.gui.general' >Gui - General</option>
  31. <option value='xowa.gui.tabs' >Gui - Tabs</option>
  32. <option value='xowa.gui.url_bar' >Gui - Address bar</option>
  33. <option value='xowa.gui.menus' >Gui - Menus</option>
  34. <option value='xowa.gui.shortcuts' selected='selected'>Gui - Shortcuts</option>
  35. <option value='xowa.gui.nightmode' >Gui - Nightmode</option>
  36. <option value='xowa.wiki.hdumps' >Wiki - HTML Databases</option>
  37. <option value='xowa.wiki.edit' >Wiki - Editing</option>
  38. <option value='xowa.bldr.general' >Import - General</option>
  39. <option value='xowa.bldr.db' >Import - Database</option>
  40. <option value='xowa.bldr.page_sync' >Import - Page sync</option>
  41. <option value='xowa.bldr.dansguardian' >Import - Dansguardian</option>
  42. <option value='xowa.html.css' >HTML - CSS</option>
  43. <option value='xowa.html.page' >HTML - Page</option>
  44. <option value='xowa.html.tidy' >HTML - Tidy</option>
  45. <option value='xowa.html.scripting' >HTML - Scripting</option>
  46. <option value='xowa.files.general' >Files - General</option>
  47. <option value='xowa.files.apps' >Files - Apps</option>
  48. <option value='xowa.addon.search' >Addon - Search</option>
  49. <option value='xowa.addon.fulltext_search' >Addon - Full-text search</option>
  50. <option value='xowa.addon.category' >Addon - Category</option>
  51. <option value='xowa.addon.http_server' >Addon - HTTP Server</option>
  52. <option value='xowa.addon.scribunto' >Addon - Scribunto</option>
  53. <option value='xowa.addon.math' >Addon - Math</option>
  54. <option value='xowa.addon.score' >Addon - Score</option>
  55. <option value='xowa.addon.popups' >Addon - Popups</option>
  56. <option value='xowa.addon.wikibase' >Addon - Wikidata</option>
  57. <option value='xowa.dev.general' >Dev - General</option>
  58. <option value='xowa.app.settings' >App - Settings</option>
  59. </select>
  60. <!-- LINK:cfg_link -->
  61. <div style='float:right;margin:2px 7px;'>
  62. <a id='options_lnk'>options link</a>
  63. </div>
  64. </div>
  65. <div id='cfg_grps'>
  66. <!-- TEXT:page_help -->
  67. <div>
  68. <p id='page_help_para'></p>
  69. </div>
  70. <h2>Navigation</h2>
  71. <div class="xocfg_row flex_div">
  72. <!-- BTN:help_item -->
  73. <div class='xocfg_itm_help'>
  74. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.app.exit-1")' title='view more info'>&nbsp;</span>
  75. </div>
  76. <!-- TEXT:key -->
  77. <div id='xowa.gui.shortcuts.xowa.app.exit-1__name' class='xocfg_itm_name'>App - Exit</div>
  78. <!-- BTN:undo -->
  79. <div id='xowa.gui.shortcuts.xowa.app.exit-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  80. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.app.exit-1")' title="reset to &quot;browser|mod.c+key.q&quot;">&nbsp;</span>
  81. </div>
  82. <!-- TEXT:val -->
  83. <div class='xocfg_itm_data'>
  84. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.app.exit-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.app.exit-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  85. <option value="browser" selected="selected">Window</option>
  86. <option value="browser.url">Url bar</option>
  87. <option value="browser.search">Search box</option>
  88. <option value="browser.allpages">Allpages box</option>
  89. <option value="browser.html">HTML browser</option>
  90. <option value="browser.find">Find box</option>
  91. <option value="browser.prog">Status bar</option>
  92. <option value="browser.info">System Messages box</option>
  93. </select>
  94. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.app.exit-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.app.exit-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + Q"></input>
  95. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.app.exit-1", "App - Exit");'>&nbsp;</span>
  96. </div>
  97. <!-- HIDDEN:key,ctx -->
  98. <input type='hidden' id='xowa.gui.shortcuts.xowa.app.exit-1__key_box' value='xowa.gui.shortcuts.xowa.app.exit-1'></input>
  99. <input type='hidden' id='xowa.gui.shortcuts.xowa.app.exit-1__ctx_box' value='app'></input>
  100. </div>
  101. <!-- DIV:help -->
  102. <div id='xowa.gui.shortcuts.xowa.app.exit-1_help_div' class='xohelp_div'>
  103. <div id='xowa.gui.shortcuts.xowa.app.exit-1_help_msg' class='xohelp_msg'><p>Exit XOWA by shutting down application
  104. </p>
  105. </div>
  106. </div>
  107. <div class="xocfg_row flex_div">
  108. <!-- BTN:help_item -->
  109. <div class='xocfg_itm_help'>
  110. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.go_bwd-1")' title='view more info'>&nbsp;</span>
  111. </div>
  112. <!-- TEXT:key -->
  113. <div id='xowa.gui.shortcuts.xowa.nav.go_bwd-1__name' class='xocfg_itm_name'>Back</div>
  114. <!-- BTN:undo -->
  115. <div id='xowa.gui.shortcuts.xowa.nav.go_bwd-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  116. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.go_bwd-1")' title="reset to &quot;browser|mod.a+key.left&quot;">&nbsp;</span>
  117. </div>
  118. <!-- TEXT:val -->
  119. <div class='xocfg_itm_data'>
  120. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.go_bwd-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.go_bwd-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  121. <option value="browser" selected="selected">Window</option>
  122. <option value="browser.url">Url bar</option>
  123. <option value="browser.search">Search box</option>
  124. <option value="browser.allpages">Allpages box</option>
  125. <option value="browser.html">HTML browser</option>
  126. <option value="browser.find">Find box</option>
  127. <option value="browser.prog">Status bar</option>
  128. <option value="browser.info">System Messages box</option>
  129. </select>
  130. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.go_bwd-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.go_bwd-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Alt + Left"></input>
  131. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.go_bwd-1", "Back");'>&nbsp;</span>
  132. </div>
  133. <!-- HIDDEN:key,ctx -->
  134. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.go_bwd-1__key_box' value='xowa.gui.shortcuts.xowa.nav.go_bwd-1'></input>
  135. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.go_bwd-1__ctx_box' value='app'></input>
  136. </div>
  137. <!-- DIV:help -->
  138. <div id='xowa.gui.shortcuts.xowa.nav.go_bwd-1_help_div' class='xohelp_div'>
  139. <div id='xowa.gui.shortcuts.xowa.nav.go_bwd-1_help_msg' class='xohelp_msg'><p>Go back one page
  140. </p>
  141. </div>
  142. </div>
  143. <div class="xocfg_row flex_div">
  144. <!-- BTN:help_item -->
  145. <div class='xocfg_itm_help'>
  146. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.go_fwd-1")' title='view more info'>&nbsp;</span>
  147. </div>
  148. <!-- TEXT:key -->
  149. <div id='xowa.gui.shortcuts.xowa.nav.go_fwd-1__name' class='xocfg_itm_name'>Forward</div>
  150. <!-- BTN:undo -->
  151. <div id='xowa.gui.shortcuts.xowa.nav.go_fwd-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  152. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.go_fwd-1")' title="reset to &quot;browser|mod.a+key.right&quot;">&nbsp;</span>
  153. </div>
  154. <!-- TEXT:val -->
  155. <div class='xocfg_itm_data'>
  156. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.go_fwd-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.go_fwd-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  157. <option value="browser" selected="selected">Window</option>
  158. <option value="browser.url">Url bar</option>
  159. <option value="browser.search">Search box</option>
  160. <option value="browser.allpages">Allpages box</option>
  161. <option value="browser.html">HTML browser</option>
  162. <option value="browser.find">Find box</option>
  163. <option value="browser.prog">Status bar</option>
  164. <option value="browser.info">System Messages box</option>
  165. </select>
  166. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.go_fwd-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.go_fwd-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Alt + Right"></input>
  167. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.go_fwd-1", "Forward");'>&nbsp;</span>
  168. </div>
  169. <!-- HIDDEN:key,ctx -->
  170. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.go_fwd-1__key_box' value='xowa.gui.shortcuts.xowa.nav.go_fwd-1'></input>
  171. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.go_fwd-1__ctx_box' value='app'></input>
  172. </div>
  173. <!-- DIV:help -->
  174. <div id='xowa.gui.shortcuts.xowa.nav.go_fwd-1_help_div' class='xohelp_div'>
  175. <div id='xowa.gui.shortcuts.xowa.nav.go_fwd-1_help_msg' class='xohelp_msg'><p>Go forward one page
  176. </p>
  177. </div>
  178. </div>
  179. <div class="xocfg_row flex_div">
  180. <!-- BTN:help_item -->
  181. <div class='xocfg_itm_help'>
  182. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.cfg.main-1")' title='view more info'>&nbsp;</span>
  183. </div>
  184. <!-- TEXT:key -->
  185. <div id='xowa.gui.shortcuts.xowa.nav.cfg.main-1__name' class='xocfg_itm_name'>Options</div>
  186. <!-- BTN:undo -->
  187. <div id='xowa.gui.shortcuts.xowa.nav.cfg.main-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  188. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.cfg.main-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  189. </div>
  190. <!-- TEXT:val -->
  191. <div class='xocfg_itm_data'>
  192. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.cfg.main-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.cfg.main-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  193. <option value="browser" selected="selected">Window</option>
  194. <option value="browser.url">Url bar</option>
  195. <option value="browser.search">Search box</option>
  196. <option value="browser.allpages">Allpages box</option>
  197. <option value="browser.html">HTML browser</option>
  198. <option value="browser.find">Find box</option>
  199. <option value="browser.prog">Status bar</option>
  200. <option value="browser.info">System Messages box</option>
  201. </select>
  202. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.cfg.main-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.cfg.main-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  203. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.cfg.main-1", "Options");'>&nbsp;</span>
  204. </div>
  205. <!-- HIDDEN:key,ctx -->
  206. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.cfg.main-1__key_box' value='xowa.gui.shortcuts.xowa.nav.cfg.main-1'></input>
  207. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.cfg.main-1__ctx_box' value='app'></input>
  208. </div>
  209. <!-- DIV:help -->
  210. <div id='xowa.gui.shortcuts.xowa.nav.cfg.main-1_help_div' class='xohelp_div'>
  211. <div id='xowa.gui.shortcuts.xowa.nav.cfg.main-1_help_msg' class='xohelp_msg'><p>Show Options Page
  212. </p>
  213. </div>
  214. </div>
  215. <div class="xocfg_row flex_div">
  216. <!-- BTN:help_item -->
  217. <div class='xocfg_itm_help'>
  218. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.cfg.menus-1")' title='view more info'>&nbsp;</span>
  219. </div>
  220. <!-- TEXT:key -->
  221. <div id='xowa.gui.shortcuts.xowa.nav.cfg.menus-1__name' class='xocfg_itm_name'>Options - Menus</div>
  222. <!-- BTN:undo -->
  223. <div id='xowa.gui.shortcuts.xowa.nav.cfg.menus-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  224. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.cfg.menus-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  225. </div>
  226. <!-- TEXT:val -->
  227. <div class='xocfg_itm_data'>
  228. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.cfg.menus-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.cfg.menus-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  229. <option value="browser" selected="selected">Window</option>
  230. <option value="browser.url">Url bar</option>
  231. <option value="browser.search">Search box</option>
  232. <option value="browser.allpages">Allpages box</option>
  233. <option value="browser.html">HTML browser</option>
  234. <option value="browser.find">Find box</option>
  235. <option value="browser.prog">Status bar</option>
  236. <option value="browser.info">System Messages box</option>
  237. </select>
  238. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.cfg.menus-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.cfg.menus-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  239. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.cfg.menus-1", "Options - Menus");'>&nbsp;</span>
  240. </div>
  241. <!-- HIDDEN:key,ctx -->
  242. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.cfg.menus-1__key_box' value='xowa.gui.shortcuts.xowa.nav.cfg.menus-1'></input>
  243. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.cfg.menus-1__ctx_box' value='app'></input>
  244. </div>
  245. <!-- DIV:help -->
  246. <div id='xowa.gui.shortcuts.xowa.nav.cfg.menus-1_help_div' class='xohelp_div'>
  247. <div id='xowa.gui.shortcuts.xowa.nav.cfg.menus-1_help_msg' class='xohelp_msg'><p>Configure the main menu bar or the popup menus
  248. </p>
  249. </div>
  250. </div>
  251. <div class="xocfg_row flex_div">
  252. <!-- BTN:help_item -->
  253. <div class='xocfg_itm_help'>
  254. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.wiki.main_page-1")' title='view more info'>&nbsp;</span>
  255. </div>
  256. <!-- TEXT:key -->
  257. <div id='xowa.gui.shortcuts.xowa.nav.wiki.main_page-1__name' class='xocfg_itm_name'>Main Page</div>
  258. <!-- BTN:undo -->
  259. <div id='xowa.gui.shortcuts.xowa.nav.wiki.main_page-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  260. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.wiki.main_page-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  261. </div>
  262. <!-- TEXT:val -->
  263. <div class='xocfg_itm_data'>
  264. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.wiki.main_page-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.wiki.main_page-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  265. <option value="browser" selected="selected">Window</option>
  266. <option value="browser.url">Url bar</option>
  267. <option value="browser.search">Search box</option>
  268. <option value="browser.allpages">Allpages box</option>
  269. <option value="browser.html">HTML browser</option>
  270. <option value="browser.find">Find box</option>
  271. <option value="browser.prog">Status bar</option>
  272. <option value="browser.info">System Messages box</option>
  273. </select>
  274. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.wiki.main_page-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.wiki.main_page-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  275. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.wiki.main_page-1", "Main Page");'>&nbsp;</span>
  276. </div>
  277. <!-- HIDDEN:key,ctx -->
  278. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.wiki.main_page-1__key_box' value='xowa.gui.shortcuts.xowa.nav.wiki.main_page-1'></input>
  279. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.wiki.main_page-1__ctx_box' value='app'></input>
  280. </div>
  281. <!-- DIV:help -->
  282. <div id='xowa.gui.shortcuts.xowa.nav.wiki.main_page-1_help_div' class='xohelp_div'>
  283. <div id='xowa.gui.shortcuts.xowa.nav.wiki.main_page-1_help_msg' class='xohelp_msg'><p>Go to Main Page of current wiki
  284. </p>
  285. </div>
  286. </div>
  287. <div class="xocfg_row flex_div">
  288. <!-- BTN:help_item -->
  289. <div class='xocfg_itm_help'>
  290. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.wiki.sandbox-1")' title='view more info'>&nbsp;</span>
  291. </div>
  292. <!-- TEXT:key -->
  293. <div id='xowa.gui.shortcuts.xowa.nav.wiki.sandbox-1__name' class='xocfg_itm_name'>Sandbox</div>
  294. <!-- BTN:undo -->
  295. <div id='xowa.gui.shortcuts.xowa.nav.wiki.sandbox-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  296. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.wiki.sandbox-1")' title="reset to &quot;browser|mod.cs+key.g,mod.cs+key.s&quot;">&nbsp;</span>
  297. </div>
  298. <!-- TEXT:val -->
  299. <div class='xocfg_itm_data'>
  300. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.wiki.sandbox-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.wiki.sandbox-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  301. <option value="browser" selected="selected">Window</option>
  302. <option value="browser.url">Url bar</option>
  303. <option value="browser.search">Search box</option>
  304. <option value="browser.allpages">Allpages box</option>
  305. <option value="browser.html">HTML browser</option>
  306. <option value="browser.find">Find box</option>
  307. <option value="browser.prog">Status bar</option>
  308. <option value="browser.info">System Messages box</option>
  309. </select>
  310. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.wiki.sandbox-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.wiki.sandbox-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + Shift + G, Ctrl + Shift + S"></input>
  311. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.wiki.sandbox-1", "Sandbox");'>&nbsp;</span>
  312. </div>
  313. <!-- HIDDEN:key,ctx -->
  314. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.wiki.sandbox-1__key_box' value='xowa.gui.shortcuts.xowa.nav.wiki.sandbox-1'></input>
  315. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.wiki.sandbox-1__ctx_box' value='app'></input>
  316. </div>
  317. <!-- DIV:help -->
  318. <div id='xowa.gui.shortcuts.xowa.nav.wiki.sandbox-1_help_div' class='xohelp_div'>
  319. <div id='xowa.gui.shortcuts.xowa.nav.wiki.sandbox-1_help_msg' class='xohelp_msg'><p>Go to sandbox for current wiki. Note that some wikis may not have a sandbox
  320. </p>
  321. </div>
  322. </div>
  323. <div class="xocfg_row flex_div">
  324. <!-- BTN:help_item -->
  325. <div class='xocfg_itm_help'>
  326. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.wiki.sandbox-2")' title='view more info'>&nbsp;</span>
  327. </div>
  328. <!-- TEXT:key -->
  329. <div id='xowa.gui.shortcuts.xowa.nav.wiki.sandbox-2__name' class='xocfg_itm_name'>Sandbox</div>
  330. <!-- BTN:undo -->
  331. <div id='xowa.gui.shortcuts.xowa.nav.wiki.sandbox-2__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  332. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.wiki.sandbox-2")' title="reset to &quot;browser|mod.c+key.f1&quot;">&nbsp;</span>
  333. </div>
  334. <!-- TEXT:val -->
  335. <div class='xocfg_itm_data'>
  336. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.wiki.sandbox-2-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.wiki.sandbox-2" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  337. <option value="browser" selected="selected">Window</option>
  338. <option value="browser.url">Url bar</option>
  339. <option value="browser.search">Search box</option>
  340. <option value="browser.allpages">Allpages box</option>
  341. <option value="browser.html">HTML browser</option>
  342. <option value="browser.find">Find box</option>
  343. <option value="browser.prog">Status bar</option>
  344. <option value="browser.info">System Messages box</option>
  345. </select>
  346. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.wiki.sandbox-2-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.wiki.sandbox-2" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + F1"></input>
  347. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.wiki.sandbox-2", "Sandbox");'>&nbsp;</span>
  348. </div>
  349. <!-- HIDDEN:key,ctx -->
  350. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.wiki.sandbox-2__key_box' value='xowa.gui.shortcuts.xowa.nav.wiki.sandbox-2'></input>
  351. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.wiki.sandbox-2__ctx_box' value='app'></input>
  352. </div>
  353. <!-- DIV:help -->
  354. <div id='xowa.gui.shortcuts.xowa.nav.wiki.sandbox-2_help_div' class='xohelp_div'>
  355. <div id='xowa.gui.shortcuts.xowa.nav.wiki.sandbox-2_help_msg' class='xohelp_msg'><p>Go to sandbox for current wiki. Note that some wikis may not have a sandbox
  356. </p>
  357. </div>
  358. </div>
  359. <div class="xocfg_row flex_div">
  360. <!-- BTN:help_item -->
  361. <div class='xocfg_itm_help'>
  362. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.wiki.random-1")' title='view more info'>&nbsp;</span>
  363. </div>
  364. <!-- TEXT:key -->
  365. <div id='xowa.gui.shortcuts.xowa.nav.wiki.random-1__name' class='xocfg_itm_name'>Random</div>
  366. <!-- BTN:undo -->
  367. <div id='xowa.gui.shortcuts.xowa.nav.wiki.random-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  368. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.wiki.random-1")' title="reset to &quot;browser|mod.cs+key.r&quot;">&nbsp;</span>
  369. </div>
  370. <!-- TEXT:val -->
  371. <div class='xocfg_itm_data'>
  372. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.wiki.random-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.wiki.random-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  373. <option value="browser" selected="selected">Window</option>
  374. <option value="browser.url">Url bar</option>
  375. <option value="browser.search">Search box</option>
  376. <option value="browser.allpages">Allpages box</option>
  377. <option value="browser.html">HTML browser</option>
  378. <option value="browser.find">Find box</option>
  379. <option value="browser.prog">Status bar</option>
  380. <option value="browser.info">System Messages box</option>
  381. </select>
  382. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.wiki.random-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.wiki.random-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + Shift + R"></input>
  383. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.wiki.random-1", "Random");'>&nbsp;</span>
  384. </div>
  385. <!-- HIDDEN:key,ctx -->
  386. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.wiki.random-1__key_box' value='xowa.gui.shortcuts.xowa.nav.wiki.random-1'></input>
  387. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.wiki.random-1__ctx_box' value='app'></input>
  388. </div>
  389. <!-- DIV:help -->
  390. <div id='xowa.gui.shortcuts.xowa.nav.wiki.random-1_help_div' class='xohelp_div'>
  391. <div id='xowa.gui.shortcuts.xowa.nav.wiki.random-1_help_msg' class='xohelp_msg'><p>Go to random page in mainspace (no Category:, File:, Help:, etc.)
  392. </p>
  393. </div>
  394. </div>
  395. <div class="xocfg_row flex_div">
  396. <!-- BTN:help_item -->
  397. <div class='xocfg_itm_help'>
  398. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.wiki.allpages-1")' title='view more info'>&nbsp;</span>
  399. </div>
  400. <!-- TEXT:key -->
  401. <div id='xowa.gui.shortcuts.xowa.nav.wiki.allpages-1__name' class='xocfg_itm_name'>All Pages</div>
  402. <!-- BTN:undo -->
  403. <div id='xowa.gui.shortcuts.xowa.nav.wiki.allpages-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  404. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.wiki.allpages-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  405. </div>
  406. <!-- TEXT:val -->
  407. <div class='xocfg_itm_data'>
  408. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.wiki.allpages-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.wiki.allpages-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  409. <option value="browser" selected="selected">Window</option>
  410. <option value="browser.url">Url bar</option>
  411. <option value="browser.search">Search box</option>
  412. <option value="browser.allpages">Allpages box</option>
  413. <option value="browser.html">HTML browser</option>
  414. <option value="browser.find">Find box</option>
  415. <option value="browser.prog">Status bar</option>
  416. <option value="browser.info">System Messages box</option>
  417. </select>
  418. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.wiki.allpages-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.wiki.allpages-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  419. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.wiki.allpages-1", "All Pages");'>&nbsp;</span>
  420. </div>
  421. <!-- HIDDEN:key,ctx -->
  422. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.wiki.allpages-1__key_box' value='xowa.gui.shortcuts.xowa.nav.wiki.allpages-1'></input>
  423. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.wiki.allpages-1__ctx_box' value='app'></input>
  424. </div>
  425. <!-- DIV:help -->
  426. <div id='xowa.gui.shortcuts.xowa.nav.wiki.allpages-1_help_div' class='xohelp_div'>
  427. <div id='xowa.gui.shortcuts.xowa.nav.wiki.allpages-1_help_msg' class='xohelp_msg'><p>Go to alphabetic listing of pages by Special:AllPages
  428. </p>
  429. </div>
  430. </div>
  431. <div class="xocfg_row flex_div">
  432. <!-- BTN:help_item -->
  433. <div class='xocfg_itm_help'>
  434. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.wiki.search_title-1")' title='view more info'>&nbsp;</span>
  435. </div>
  436. <!-- TEXT:key -->
  437. <div id='xowa.gui.shortcuts.xowa.nav.wiki.search_title-1__name' class='xocfg_itm_name'>Title Search</div>
  438. <!-- BTN:undo -->
  439. <div id='xowa.gui.shortcuts.xowa.nav.wiki.search_title-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  440. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.wiki.search_title-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  441. </div>
  442. <!-- TEXT:val -->
  443. <div class='xocfg_itm_data'>
  444. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.wiki.search_title-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.wiki.search_title-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  445. <option value="browser" selected="selected">Window</option>
  446. <option value="browser.url">Url bar</option>
  447. <option value="browser.search">Search box</option>
  448. <option value="browser.allpages">Allpages box</option>
  449. <option value="browser.html">HTML browser</option>
  450. <option value="browser.find">Find box</option>
  451. <option value="browser.prog">Status bar</option>
  452. <option value="browser.info">System Messages box</option>
  453. </select>
  454. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.wiki.search_title-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.wiki.search_title-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  455. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.wiki.search_title-1", "Title Search");'>&nbsp;</span>
  456. </div>
  457. <!-- HIDDEN:key,ctx -->
  458. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.wiki.search_title-1__key_box' value='xowa.gui.shortcuts.xowa.nav.wiki.search_title-1'></input>
  459. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.wiki.search_title-1__ctx_box' value='app'></input>
  460. </div>
  461. <!-- DIV:help -->
  462. <div id='xowa.gui.shortcuts.xowa.nav.wiki.search_title-1_help_div' class='xohelp_div'>
  463. <div id='xowa.gui.shortcuts.xowa.nav.wiki.search_title-1_help_msg' class='xohelp_msg'><p>Go to title search by Special:Search
  464. </p>
  465. </div>
  466. </div>
  467. <div class="xocfg_row flex_div">
  468. <!-- BTN:help_item -->
  469. <div class='xocfg_itm_help'>
  470. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.wiki.search_full-1")' title='view more info'>&nbsp;</span>
  471. </div>
  472. <!-- TEXT:key -->
  473. <div id='xowa.gui.shortcuts.xowa.nav.wiki.search_full-1__name' class='xocfg_itm_name'>Full-text Search</div>
  474. <!-- BTN:undo -->
  475. <div id='xowa.gui.shortcuts.xowa.nav.wiki.search_full-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  476. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.wiki.search_full-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  477. </div>
  478. <!-- TEXT:val -->
  479. <div class='xocfg_itm_data'>
  480. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.wiki.search_full-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.wiki.search_full-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  481. <option value="browser" selected="selected">Window</option>
  482. <option value="browser.url">Url bar</option>
  483. <option value="browser.search">Search box</option>
  484. <option value="browser.allpages">Allpages box</option>
  485. <option value="browser.html">HTML browser</option>
  486. <option value="browser.find">Find box</option>
  487. <option value="browser.prog">Status bar</option>
  488. <option value="browser.info">System Messages box</option>
  489. </select>
  490. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.wiki.search_full-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.wiki.search_full-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  491. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.wiki.search_full-1", "Full-text Search");'>&nbsp;</span>
  492. </div>
  493. <!-- HIDDEN:key,ctx -->
  494. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.wiki.search_full-1__key_box' value='xowa.gui.shortcuts.xowa.nav.wiki.search_full-1'></input>
  495. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.wiki.search_full-1__ctx_box' value='app'></input>
  496. </div>
  497. <!-- DIV:help -->
  498. <div id='xowa.gui.shortcuts.xowa.nav.wiki.search_full-1_help_div' class='xohelp_div'>
  499. <div id='xowa.gui.shortcuts.xowa.nav.wiki.search_full-1_help_msg' class='xohelp_msg'><p>Go to full-text search by Special:XowaSearch
  500. </p>
  501. </div>
  502. </div>
  503. <div class="xocfg_row flex_div">
  504. <!-- BTN:help_item -->
  505. <div class='xocfg_itm_help'>
  506. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.wiki.search_per_cfg-1")' title='view more info'>&nbsp;</span>
  507. </div>
  508. <!-- TEXT:key -->
  509. <div id='xowa.gui.shortcuts.xowa.nav.wiki.search_per_cfg-1__name' class='xocfg_itm_name'>Search per cfg</div>
  510. <!-- BTN:undo -->
  511. <div id='xowa.gui.shortcuts.xowa.nav.wiki.search_per_cfg-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  512. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.wiki.search_per_cfg-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  513. </div>
  514. <!-- TEXT:val -->
  515. <div class='xocfg_itm_data'>
  516. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.wiki.search_per_cfg-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.wiki.search_per_cfg-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  517. <option value="browser" selected="selected">Window</option>
  518. <option value="browser.url">Url bar</option>
  519. <option value="browser.search">Search box</option>
  520. <option value="browser.allpages">Allpages box</option>
  521. <option value="browser.html">HTML browser</option>
  522. <option value="browser.find">Find box</option>
  523. <option value="browser.prog">Status bar</option>
  524. <option value="browser.info">System Messages box</option>
  525. </select>
  526. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.wiki.search_per_cfg-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.wiki.search_per_cfg-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  527. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.wiki.search_per_cfg-1", "Search per cfg");'>&nbsp;</span>
  528. </div>
  529. <!-- HIDDEN:key,ctx -->
  530. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.wiki.search_per_cfg-1__key_box' value='xowa.gui.shortcuts.xowa.nav.wiki.search_per_cfg-1'></input>
  531. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.wiki.search_per_cfg-1__ctx_box' value='app'></input>
  532. </div>
  533. <!-- DIV:help -->
  534. <div id='xowa.gui.shortcuts.xowa.nav.wiki.search_per_cfg-1_help_div' class='xohelp_div'>
  535. <div id='xowa.gui.shortcuts.xowa.nav.wiki.search_per_cfg-1_help_msg' class='xohelp_msg'><p>Go to search page specified by Special:XowaCfg
  536. </p>
  537. </div>
  538. </div>
  539. <h2>Navigation (pages)</h2>
  540. <div class="xocfg_row flex_div">
  541. <!-- BTN:help_item -->
  542. <div class='xocfg_itm_help'>
  543. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.help.help-1")' title='view more info'>&nbsp;</span>
  544. </div>
  545. <!-- TEXT:key -->
  546. <div id='xowa.gui.shortcuts.xowa.nav.help.help-1__name' class='xocfg_itm_name'>XOWA Help</div>
  547. <!-- BTN:undo -->
  548. <div id='xowa.gui.shortcuts.xowa.nav.help.help-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  549. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.help.help-1")' title="reset to &quot;browser|key.f1&quot;">&nbsp;</span>
  550. </div>
  551. <!-- TEXT:val -->
  552. <div class='xocfg_itm_data'>
  553. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.help.help-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.help.help-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  554. <option value="browser" selected="selected">Window</option>
  555. <option value="browser.url">Url bar</option>
  556. <option value="browser.search">Search box</option>
  557. <option value="browser.allpages">Allpages box</option>
  558. <option value="browser.html">HTML browser</option>
  559. <option value="browser.find">Find box</option>
  560. <option value="browser.prog">Status bar</option>
  561. <option value="browser.info">System Messages box</option>
  562. </select>
  563. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.help.help-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.help.help-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="F1"></input>
  564. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.help.help-1", "XOWA Help");'>&nbsp;</span>
  565. </div>
  566. <!-- HIDDEN:key,ctx -->
  567. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.help.help-1__key_box' value='xowa.gui.shortcuts.xowa.nav.help.help-1'></input>
  568. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.help.help-1__ctx_box' value='app'></input>
  569. </div>
  570. <!-- DIV:help -->
  571. <div id='xowa.gui.shortcuts.xowa.nav.help.help-1_help_div' class='xohelp_div'>
  572. <div id='xowa.gui.shortcuts.xowa.nav.help.help-1_help_msg' class='xohelp_msg'><p>View XOWA's Help page
  573. </p>
  574. </div>
  575. </div>
  576. <div class="xocfg_row flex_div">
  577. <!-- BTN:help_item -->
  578. <div class='xocfg_itm_help'>
  579. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.help.about-1")' title='view more info'>&nbsp;</span>
  580. </div>
  581. <!-- TEXT:key -->
  582. <div id='xowa.gui.shortcuts.xowa.nav.help.about-1__name' class='xocfg_itm_name'>About XOWA</div>
  583. <!-- BTN:undo -->
  584. <div id='xowa.gui.shortcuts.xowa.nav.help.about-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  585. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.help.about-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  586. </div>
  587. <!-- TEXT:val -->
  588. <div class='xocfg_itm_data'>
  589. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.help.about-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.help.about-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  590. <option value="browser" selected="selected">Window</option>
  591. <option value="browser.url">Url bar</option>
  592. <option value="browser.search">Search box</option>
  593. <option value="browser.allpages">Allpages box</option>
  594. <option value="browser.html">HTML browser</option>
  595. <option value="browser.find">Find box</option>
  596. <option value="browser.prog">Status bar</option>
  597. <option value="browser.info">System Messages box</option>
  598. </select>
  599. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.help.about-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.help.about-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  600. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.help.about-1", "About XOWA");'>&nbsp;</span>
  601. </div>
  602. <!-- HIDDEN:key,ctx -->
  603. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.help.about-1__key_box' value='xowa.gui.shortcuts.xowa.nav.help.about-1'></input>
  604. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.help.about-1__ctx_box' value='app'></input>
  605. </div>
  606. <!-- DIV:help -->
  607. <div id='xowa.gui.shortcuts.xowa.nav.help.about-1_help_div' class='xohelp_div'>
  608. <div id='xowa.gui.shortcuts.xowa.nav.help.about-1_help_msg' class='xohelp_msg'><p>View information about XOWA
  609. </p>
  610. </div>
  611. </div>
  612. <div class="xocfg_row flex_div">
  613. <!-- BTN:help_item -->
  614. <div class='xocfg_itm_help'>
  615. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.help.change_log-1")' title='view more info'>&nbsp;</span>
  616. </div>
  617. <!-- TEXT:key -->
  618. <div id='xowa.gui.shortcuts.xowa.nav.help.change_log-1__name' class='xocfg_itm_name'>Change log</div>
  619. <!-- BTN:undo -->
  620. <div id='xowa.gui.shortcuts.xowa.nav.help.change_log-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  621. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.help.change_log-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  622. </div>
  623. <!-- TEXT:val -->
  624. <div class='xocfg_itm_data'>
  625. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.help.change_log-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.help.change_log-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  626. <option value="browser" selected="selected">Window</option>
  627. <option value="browser.url">Url bar</option>
  628. <option value="browser.search">Search box</option>
  629. <option value="browser.allpages">Allpages box</option>
  630. <option value="browser.html">HTML browser</option>
  631. <option value="browser.find">Find box</option>
  632. <option value="browser.prog">Status bar</option>
  633. <option value="browser.info">System Messages box</option>
  634. </select>
  635. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.help.change_log-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.help.change_log-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  636. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.help.change_log-1", "Change log");'>&nbsp;</span>
  637. </div>
  638. <!-- HIDDEN:key,ctx -->
  639. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.help.change_log-1__key_box' value='xowa.gui.shortcuts.xowa.nav.help.change_log-1'></input>
  640. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.help.change_log-1__ctx_box' value='app'></input>
  641. </div>
  642. <!-- DIV:help -->
  643. <div id='xowa.gui.shortcuts.xowa.nav.help.change_log-1_help_div' class='xohelp_div'>
  644. <div id='xowa.gui.shortcuts.xowa.nav.help.change_log-1_help_msg' class='xohelp_msg'><p>View XOWA's change log
  645. </p>
  646. </div>
  647. </div>
  648. <div class="xocfg_row flex_div">
  649. <!-- BTN:help_item -->
  650. <div class='xocfg_itm_help'>
  651. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.help.diagnostics-1")' title='view more info'>&nbsp;</span>
  652. </div>
  653. <!-- TEXT:key -->
  654. <div id='xowa.gui.shortcuts.xowa.nav.help.diagnostics-1__name' class='xocfg_itm_name'>Diagnostics</div>
  655. <!-- BTN:undo -->
  656. <div id='xowa.gui.shortcuts.xowa.nav.help.diagnostics-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  657. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.help.diagnostics-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  658. </div>
  659. <!-- TEXT:val -->
  660. <div class='xocfg_itm_data'>
  661. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.help.diagnostics-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.help.diagnostics-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  662. <option value="browser" selected="selected">Window</option>
  663. <option value="browser.url">Url bar</option>
  664. <option value="browser.search">Search box</option>
  665. <option value="browser.allpages">Allpages box</option>
  666. <option value="browser.html">HTML browser</option>
  667. <option value="browser.find">Find box</option>
  668. <option value="browser.prog">Status bar</option>
  669. <option value="browser.info">System Messages box</option>
  670. </select>
  671. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.help.diagnostics-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.help.diagnostics-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  672. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.help.diagnostics-1", "Diagnostics");'>&nbsp;</span>
  673. </div>
  674. <!-- HIDDEN:key,ctx -->
  675. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.help.diagnostics-1__key_box' value='xowa.gui.shortcuts.xowa.nav.help.diagnostics-1'></input>
  676. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.help.diagnostics-1__ctx_box' value='app'></input>
  677. </div>
  678. <!-- DIV:help -->
  679. <div id='xowa.gui.shortcuts.xowa.nav.help.diagnostics-1_help_div' class='xohelp_div'>
  680. <div id='xowa.gui.shortcuts.xowa.nav.help.diagnostics-1_help_msg' class='xohelp_msg'><p>Diagnose parts of your XOWA installation
  681. </p>
  682. </div>
  683. </div>
  684. <div class="xocfg_row flex_div">
  685. <!-- BTN:help_item -->
  686. <div class='xocfg_itm_help'>
  687. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.help.xowa_update-1")' title='view more info'>&nbsp;</span>
  688. </div>
  689. <!-- TEXT:key -->
  690. <div id='xowa.gui.shortcuts.xowa.nav.help.xowa_update-1__name' class='xocfg_itm_name'>XOWA App Update</div>
  691. <!-- BTN:undo -->
  692. <div id='xowa.gui.shortcuts.xowa.nav.help.xowa_update-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  693. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.help.xowa_update-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  694. </div>
  695. <!-- TEXT:val -->
  696. <div class='xocfg_itm_data'>
  697. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.help.xowa_update-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.help.xowa_update-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  698. <option value="browser" selected="selected">Window</option>
  699. <option value="browser.url">Url bar</option>
  700. <option value="browser.search">Search box</option>
  701. <option value="browser.allpages">Allpages box</option>
  702. <option value="browser.html">HTML browser</option>
  703. <option value="browser.find">Find box</option>
  704. <option value="browser.prog">Status bar</option>
  705. <option value="browser.info">System Messages box</option>
  706. </select>
  707. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.help.xowa_update-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.help.xowa_update-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  708. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.help.xowa_update-1", "XOWA App Update");'>&nbsp;</span>
  709. </div>
  710. <!-- HIDDEN:key,ctx -->
  711. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.help.xowa_update-1__key_box' value='xowa.gui.shortcuts.xowa.nav.help.xowa_update-1'></input>
  712. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.help.xowa_update-1__ctx_box' value='app'></input>
  713. </div>
  714. <!-- DIV:help -->
  715. <div id='xowa.gui.shortcuts.xowa.nav.help.xowa_update-1_help_div' class='xohelp_div'>
  716. <div id='xowa.gui.shortcuts.xowa.nav.help.xowa_update-1_help_msg' class='xohelp_msg'><p>Update the XOWA app
  717. </p>
  718. </div>
  719. </div>
  720. <div class="xocfg_row flex_div">
  721. <!-- BTN:help_item -->
  722. <div class='xocfg_itm_help'>
  723. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.help.xowa_main-1")' title='view more info'>&nbsp;</span>
  724. </div>
  725. <!-- TEXT:key -->
  726. <div id='xowa.gui.shortcuts.xowa.nav.help.xowa_main-1__name' class='xocfg_itm_name'>XOWA Main Page</div>
  727. <!-- BTN:undo -->
  728. <div id='xowa.gui.shortcuts.xowa.nav.help.xowa_main-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  729. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.help.xowa_main-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  730. </div>
  731. <!-- TEXT:val -->
  732. <div class='xocfg_itm_data'>
  733. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.help.xowa_main-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.help.xowa_main-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  734. <option value="browser" selected="selected">Window</option>
  735. <option value="browser.url">Url bar</option>
  736. <option value="browser.search">Search box</option>
  737. <option value="browser.allpages">Allpages box</option>
  738. <option value="browser.html">HTML browser</option>
  739. <option value="browser.find">Find box</option>
  740. <option value="browser.prog">Status bar</option>
  741. <option value="browser.info">System Messages box</option>
  742. </select>
  743. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.help.xowa_main-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.help.xowa_main-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  744. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.help.xowa_main-1", "XOWA Main Page");'>&nbsp;</span>
  745. </div>
  746. <!-- HIDDEN:key,ctx -->
  747. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.help.xowa_main-1__key_box' value='xowa.gui.shortcuts.xowa.nav.help.xowa_main-1'></input>
  748. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.help.xowa_main-1__ctx_box' value='app'></input>
  749. </div>
  750. <!-- DIV:help -->
  751. <div id='xowa.gui.shortcuts.xowa.nav.help.xowa_main-1_help_div' class='xohelp_div'>
  752. <div id='xowa.gui.shortcuts.xowa.nav.help.xowa_main-1_help_msg' class='xohelp_msg'><p>Go to XOWA's Main Page
  753. </p>
  754. </div>
  755. </div>
  756. <div class="xocfg_row flex_div">
  757. <!-- BTN:help_item -->
  758. <div class='xocfg_itm_help'>
  759. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.help.xowa_blog-1")' title='view more info'>&nbsp;</span>
  760. </div>
  761. <!-- TEXT:key -->
  762. <div id='xowa.gui.shortcuts.xowa.nav.help.xowa_blog-1__name' class='xocfg_itm_name'>XOWA Blog</div>
  763. <!-- BTN:undo -->
  764. <div id='xowa.gui.shortcuts.xowa.nav.help.xowa_blog-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  765. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.help.xowa_blog-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  766. </div>
  767. <!-- TEXT:val -->
  768. <div class='xocfg_itm_data'>
  769. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.help.xowa_blog-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.help.xowa_blog-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  770. <option value="browser" selected="selected">Window</option>
  771. <option value="browser.url">Url bar</option>
  772. <option value="browser.search">Search box</option>
  773. <option value="browser.allpages">Allpages box</option>
  774. <option value="browser.html">HTML browser</option>
  775. <option value="browser.find">Find box</option>
  776. <option value="browser.prog">Status bar</option>
  777. <option value="browser.info">System Messages box</option>
  778. </select>
  779. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.help.xowa_blog-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.help.xowa_blog-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  780. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.help.xowa_blog-1", "XOWA Blog");'>&nbsp;</span>
  781. </div>
  782. <!-- HIDDEN:key,ctx -->
  783. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.help.xowa_blog-1__key_box' value='xowa.gui.shortcuts.xowa.nav.help.xowa_blog-1'></input>
  784. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.help.xowa_blog-1__ctx_box' value='app'></input>
  785. </div>
  786. <!-- DIV:help -->
  787. <div id='xowa.gui.shortcuts.xowa.nav.help.xowa_blog-1_help_div' class='xohelp_div'>
  788. <div id='xowa.gui.shortcuts.xowa.nav.help.xowa_blog-1_help_msg' class='xohelp_msg'><p>View XOWA's blog
  789. </p>
  790. </div>
  791. </div>
  792. <div class="xocfg_row flex_div">
  793. <!-- BTN:help_item -->
  794. <div class='xocfg_itm_help'>
  795. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.setup.download_central-1")' title='view more info'>&nbsp;</span>
  796. </div>
  797. <!-- TEXT:key -->
  798. <div id='xowa.gui.shortcuts.xowa.nav.setup.download_central-1__name' class='xocfg_itm_name'>Download Central</div>
  799. <!-- BTN:undo -->
  800. <div id='xowa.gui.shortcuts.xowa.nav.setup.download_central-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  801. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.setup.download_central-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  802. </div>
  803. <!-- TEXT:val -->
  804. <div class='xocfg_itm_data'>
  805. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.setup.download_central-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.setup.download_central-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  806. <option value="browser" selected="selected">Window</option>
  807. <option value="browser.url">Url bar</option>
  808. <option value="browser.search">Search box</option>
  809. <option value="browser.allpages">Allpages box</option>
  810. <option value="browser.html">HTML browser</option>
  811. <option value="browser.find">Find box</option>
  812. <option value="browser.prog">Status bar</option>
  813. <option value="browser.info">System Messages box</option>
  814. </select>
  815. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.setup.download_central-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.setup.download_central-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  816. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.setup.download_central-1", "Download Central");'>&nbsp;</span>
  817. </div>
  818. <!-- HIDDEN:key,ctx -->
  819. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.setup.download_central-1__key_box' value='xowa.gui.shortcuts.xowa.nav.setup.download_central-1'></input>
  820. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.setup.download_central-1__ctx_box' value='app'></input>
  821. </div>
  822. <!-- DIV:help -->
  823. <div id='xowa.gui.shortcuts.xowa.nav.setup.download_central-1_help_div' class='xohelp_div'>
  824. <div id='xowa.gui.shortcuts.xowa.nav.setup.download_central-1_help_msg' class='xohelp_msg'><p>Download wikis
  825. </p>
  826. </div>
  827. </div>
  828. <div class="xocfg_row flex_div">
  829. <!-- BTN:help_item -->
  830. <div class='xocfg_itm_help'>
  831. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.setup.import_from_list-1")' title='view more info'>&nbsp;</span>
  832. </div>
  833. <!-- TEXT:key -->
  834. <div id='xowa.gui.shortcuts.xowa.nav.setup.import_from_list-1__name' class='xocfg_itm_name'>Import Online</div>
  835. <!-- BTN:undo -->
  836. <div id='xowa.gui.shortcuts.xowa.nav.setup.import_from_list-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  837. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.setup.import_from_list-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  838. </div>
  839. <!-- TEXT:val -->
  840. <div class='xocfg_itm_data'>
  841. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.setup.import_from_list-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.setup.import_from_list-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  842. <option value="browser" selected="selected">Window</option>
  843. <option value="browser.url">Url bar</option>
  844. <option value="browser.search">Search box</option>
  845. <option value="browser.allpages">Allpages box</option>
  846. <option value="browser.html">HTML browser</option>
  847. <option value="browser.find">Find box</option>
  848. <option value="browser.prog">Status bar</option>
  849. <option value="browser.info">System Messages box</option>
  850. </select>
  851. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.setup.import_from_list-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.setup.import_from_list-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  852. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.setup.import_from_list-1", "Import Online");'>&nbsp;</span>
  853. </div>
  854. <!-- HIDDEN:key,ctx -->
  855. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.setup.import_from_list-1__key_box' value='xowa.gui.shortcuts.xowa.nav.setup.import_from_list-1'></input>
  856. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.setup.import_from_list-1__ctx_box' value='app'></input>
  857. </div>
  858. <!-- DIV:help -->
  859. <div id='xowa.gui.shortcuts.xowa.nav.setup.import_from_list-1_help_div' class='xohelp_div'>
  860. <div id='xowa.gui.shortcuts.xowa.nav.setup.import_from_list-1_help_msg' class='xohelp_msg'><p>Import a wiki from an online Wikimedia dump server
  861. </p>
  862. </div>
  863. </div>
  864. <div class="xocfg_row flex_div">
  865. <!-- BTN:help_item -->
  866. <div class='xocfg_itm_help'>
  867. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.setup.import_from_script-1")' title='view more info'>&nbsp;</span>
  868. </div>
  869. <!-- TEXT:key -->
  870. <div id='xowa.gui.shortcuts.xowa.nav.setup.import_from_script-1__name' class='xocfg_itm_name'>Import Offline</div>
  871. <!-- BTN:undo -->
  872. <div id='xowa.gui.shortcuts.xowa.nav.setup.import_from_script-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  873. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.setup.import_from_script-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  874. </div>
  875. <!-- TEXT:val -->
  876. <div class='xocfg_itm_data'>
  877. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.setup.import_from_script-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.setup.import_from_script-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  878. <option value="browser" selected="selected">Window</option>
  879. <option value="browser.url">Url bar</option>
  880. <option value="browser.search">Search box</option>
  881. <option value="browser.allpages">Allpages box</option>
  882. <option value="browser.html">HTML browser</option>
  883. <option value="browser.find">Find box</option>
  884. <option value="browser.prog">Status bar</option>
  885. <option value="browser.info">System Messages box</option>
  886. </select>
  887. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.setup.import_from_script-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.setup.import_from_script-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  888. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.setup.import_from_script-1", "Import Offline");'>&nbsp;</span>
  889. </div>
  890. <!-- HIDDEN:key,ctx -->
  891. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.setup.import_from_script-1__key_box' value='xowa.gui.shortcuts.xowa.nav.setup.import_from_script-1'></input>
  892. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.setup.import_from_script-1__ctx_box' value='app'></input>
  893. </div>
  894. <!-- DIV:help -->
  895. <div id='xowa.gui.shortcuts.xowa.nav.setup.import_from_script-1_help_div' class='xohelp_div'>
  896. <div id='xowa.gui.shortcuts.xowa.nav.setup.import_from_script-1_help_msg' class='xohelp_msg'><p>Import a wiki from an offline dump (or by using a script)
  897. </p>
  898. </div>
  899. </div>
  900. <div class="xocfg_row flex_div">
  901. <!-- BTN:help_item -->
  902. <div class='xocfg_itm_help'>
  903. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.setup.maintenance-1")' title='view more info'>&nbsp;</span>
  904. </div>
  905. <!-- TEXT:key -->
  906. <div id='xowa.gui.shortcuts.xowa.nav.setup.maintenance-1__name' class='xocfg_itm_name'>Wiki Maintenance</div>
  907. <!-- BTN:undo -->
  908. <div id='xowa.gui.shortcuts.xowa.nav.setup.maintenance-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  909. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.setup.maintenance-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  910. </div>
  911. <!-- TEXT:val -->
  912. <div class='xocfg_itm_data'>
  913. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.setup.maintenance-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.setup.maintenance-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  914. <option value="browser" selected="selected">Window</option>
  915. <option value="browser.url">Url bar</option>
  916. <option value="browser.search">Search box</option>
  917. <option value="browser.allpages">Allpages box</option>
  918. <option value="browser.html">HTML browser</option>
  919. <option value="browser.find">Find box</option>
  920. <option value="browser.prog">Status bar</option>
  921. <option value="browser.info">System Messages box</option>
  922. </select>
  923. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.setup.maintenance-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.setup.maintenance-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  924. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.setup.maintenance-1", "Wiki Maintenance");'>&nbsp;</span>
  925. </div>
  926. <!-- HIDDEN:key,ctx -->
  927. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.setup.maintenance-1__key_box' value='xowa.gui.shortcuts.xowa.nav.setup.maintenance-1'></input>
  928. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.setup.maintenance-1__ctx_box' value='app'></input>
  929. </div>
  930. <!-- DIV:help -->
  931. <div id='xowa.gui.shortcuts.xowa.nav.setup.maintenance-1_help_div' class='xohelp_div'>
  932. <div id='xowa.gui.shortcuts.xowa.nav.setup.maintenance-1_help_msg' class='xohelp_msg'><p>View a list of your wikis and update selected ones
  933. </p>
  934. </div>
  935. </div>
  936. <div class="xocfg_row flex_div">
  937. <!-- BTN:help_item -->
  938. <div class='xocfg_itm_help'>
  939. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.setup.download-1")' title='view more info'>&nbsp;</span>
  940. </div>
  941. <!-- TEXT:key -->
  942. <div id='xowa.gui.shortcuts.xowa.nav.setup.download-1__name' class='xocfg_itm_name'>Image Databases</div>
  943. <!-- BTN:undo -->
  944. <div id='xowa.gui.shortcuts.xowa.nav.setup.download-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  945. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.setup.download-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  946. </div>
  947. <!-- TEXT:val -->
  948. <div class='xocfg_itm_data'>
  949. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.setup.download-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.setup.download-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  950. <option value="browser" selected="selected">Window</option>
  951. <option value="browser.url">Url bar</option>
  952. <option value="browser.search">Search box</option>
  953. <option value="browser.allpages">Allpages box</option>
  954. <option value="browser.html">HTML browser</option>
  955. <option value="browser.find">Find box</option>
  956. <option value="browser.prog">Status bar</option>
  957. <option value="browser.info">System Messages box</option>
  958. </select>
  959. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.setup.download-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.setup.download-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  960. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.setup.download-1", "Image Databases");'>&nbsp;</span>
  961. </div>
  962. <!-- HIDDEN:key,ctx -->
  963. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.setup.download-1__key_box' value='xowa.gui.shortcuts.xowa.nav.setup.download-1'></input>
  964. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.setup.download-1__ctx_box' value='app'></input>
  965. </div>
  966. <!-- DIV:help -->
  967. <div id='xowa.gui.shortcuts.xowa.nav.setup.download-1_help_div' class='xohelp_div'>
  968. <div id='xowa.gui.shortcuts.xowa.nav.setup.download-1_help_msg' class='xohelp_msg'><p>View a list of all available image dumps
  969. </p>
  970. </div>
  971. </div>
  972. <div class="xocfg_row flex_div">
  973. <!-- BTN:help_item -->
  974. <div class='xocfg_itm_help'>
  975. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.system_data.log_session-1")' title='view more info'>&nbsp;</span>
  976. </div>
  977. <!-- TEXT:key -->
  978. <div id='xowa.gui.shortcuts.xowa.nav.system_data.log_session-1__name' class='xocfg_itm_name'>Session Log</div>
  979. <!-- BTN:undo -->
  980. <div id='xowa.gui.shortcuts.xowa.nav.system_data.log_session-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  981. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.system_data.log_session-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  982. </div>
  983. <!-- TEXT:val -->
  984. <div class='xocfg_itm_data'>
  985. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.system_data.log_session-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.system_data.log_session-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  986. <option value="browser" selected="selected">Window</option>
  987. <option value="browser.url">Url bar</option>
  988. <option value="browser.search">Search box</option>
  989. <option value="browser.allpages">Allpages box</option>
  990. <option value="browser.html">HTML browser</option>
  991. <option value="browser.find">Find box</option>
  992. <option value="browser.prog">Status bar</option>
  993. <option value="browser.info">System Messages box</option>
  994. </select>
  995. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.system_data.log_session-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.system_data.log_session-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  996. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.system_data.log_session-1", "Session Log");'>&nbsp;</span>
  997. </div>
  998. <!-- HIDDEN:key,ctx -->
  999. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.system_data.log_session-1__key_box' value='xowa.gui.shortcuts.xowa.nav.system_data.log_session-1'></input>
  1000. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.system_data.log_session-1__ctx_box' value='app'></input>
  1001. </div>
  1002. <!-- DIV:help -->
  1003. <div id='xowa.gui.shortcuts.xowa.nav.system_data.log_session-1_help_div' class='xohelp_div'>
  1004. <div id='xowa.gui.shortcuts.xowa.nav.system_data.log_session-1_help_msg' class='xohelp_msg'><p>View the log file
  1005. </p>
  1006. </div>
  1007. </div>
  1008. <div class="xocfg_row flex_div">
  1009. <!-- BTN:help_item -->
  1010. <div class='xocfg_itm_help'>
  1011. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.system_data.cfg_app-1")' title='view more info'>&nbsp;</span>
  1012. </div>
  1013. <!-- TEXT:key -->
  1014. <div id='xowa.gui.shortcuts.xowa.nav.system_data.cfg_app-1__name' class='xocfg_itm_name'>Application Config</div>
  1015. <!-- BTN:undo -->
  1016. <div id='xowa.gui.shortcuts.xowa.nav.system_data.cfg_app-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1017. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.system_data.cfg_app-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  1018. </div>
  1019. <!-- TEXT:val -->
  1020. <div class='xocfg_itm_data'>
  1021. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.system_data.cfg_app-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.system_data.cfg_app-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1022. <option value="browser" selected="selected">Window</option>
  1023. <option value="browser.url">Url bar</option>
  1024. <option value="browser.search">Search box</option>
  1025. <option value="browser.allpages">Allpages box</option>
  1026. <option value="browser.html">HTML browser</option>
  1027. <option value="browser.find">Find box</option>
  1028. <option value="browser.prog">Status bar</option>
  1029. <option value="browser.info">System Messages box</option>
  1030. </select>
  1031. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.system_data.cfg_app-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.system_data.cfg_app-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  1032. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.system_data.cfg_app-1", "Application Config");'>&nbsp;</span>
  1033. </div>
  1034. <!-- HIDDEN:key,ctx -->
  1035. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.system_data.cfg_app-1__key_box' value='xowa.gui.shortcuts.xowa.nav.system_data.cfg_app-1'></input>
  1036. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.system_data.cfg_app-1__ctx_box' value='app'></input>
  1037. </div>
  1038. <!-- DIV:help -->
  1039. <div id='xowa.gui.shortcuts.xowa.nav.system_data.cfg_app-1_help_div' class='xohelp_div'>
  1040. <div id='xowa.gui.shortcuts.xowa.nav.system_data.cfg_app-1_help_msg' class='xohelp_msg'><p>View the main config file
  1041. </p>
  1042. </div>
  1043. </div>
  1044. <div class="xocfg_row flex_div">
  1045. <!-- BTN:help_item -->
  1046. <div class='xocfg_itm_help'>
  1047. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.system_data.cfg_lang-1")' title='view more info'>&nbsp;</span>
  1048. </div>
  1049. <!-- TEXT:key -->
  1050. <div id='xowa.gui.shortcuts.xowa.nav.system_data.cfg_lang-1__name' class='xocfg_itm_name'>Language Config</div>
  1051. <!-- BTN:undo -->
  1052. <div id='xowa.gui.shortcuts.xowa.nav.system_data.cfg_lang-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1053. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.system_data.cfg_lang-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  1054. </div>
  1055. <!-- TEXT:val -->
  1056. <div class='xocfg_itm_data'>
  1057. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.system_data.cfg_lang-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.system_data.cfg_lang-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1058. <option value="browser" selected="selected">Window</option>
  1059. <option value="browser.url">Url bar</option>
  1060. <option value="browser.search">Search box</option>
  1061. <option value="browser.allpages">Allpages box</option>
  1062. <option value="browser.html">HTML browser</option>
  1063. <option value="browser.find">Find box</option>
  1064. <option value="browser.prog">Status bar</option>
  1065. <option value="browser.info">System Messages box</option>
  1066. </select>
  1067. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.system_data.cfg_lang-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.system_data.cfg_lang-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  1068. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.system_data.cfg_lang-1", "Language Config");'>&nbsp;</span>
  1069. </div>
  1070. <!-- HIDDEN:key,ctx -->
  1071. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.system_data.cfg_lang-1__key_box' value='xowa.gui.shortcuts.xowa.nav.system_data.cfg_lang-1'></input>
  1072. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.system_data.cfg_lang-1__ctx_box' value='app'></input>
  1073. </div>
  1074. <!-- DIV:help -->
  1075. <div id='xowa.gui.shortcuts.xowa.nav.system_data.cfg_lang-1_help_div' class='xohelp_div'>
  1076. <div id='xowa.gui.shortcuts.xowa.nav.system_data.cfg_lang-1_help_msg' class='xohelp_msg'><p>View the language's config file for the current wiki
  1077. </p>
  1078. </div>
  1079. </div>
  1080. <div class="xocfg_row flex_div">
  1081. <!-- BTN:help_item -->
  1082. <div class='xocfg_itm_help'>
  1083. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.system_data.usr_history-1")' title='view more info'>&nbsp;</span>
  1084. </div>
  1085. <!-- TEXT:key -->
  1086. <div id='xowa.gui.shortcuts.xowa.nav.system_data.usr_history-1__name' class='xocfg_itm_name'>Page History</div>
  1087. <!-- BTN:undo -->
  1088. <div id='xowa.gui.shortcuts.xowa.nav.system_data.usr_history-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1089. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.system_data.usr_history-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  1090. </div>
  1091. <!-- TEXT:val -->
  1092. <div class='xocfg_itm_data'>
  1093. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.system_data.usr_history-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.system_data.usr_history-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1094. <option value="browser" selected="selected">Window</option>
  1095. <option value="browser.url">Url bar</option>
  1096. <option value="browser.search">Search box</option>
  1097. <option value="browser.allpages">Allpages box</option>
  1098. <option value="browser.html">HTML browser</option>
  1099. <option value="browser.find">Find box</option>
  1100. <option value="browser.prog">Status bar</option>
  1101. <option value="browser.info">System Messages box</option>
  1102. </select>
  1103. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.system_data.usr_history-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.system_data.usr_history-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  1104. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.system_data.usr_history-1", "Page History");'>&nbsp;</span>
  1105. </div>
  1106. <!-- HIDDEN:key,ctx -->
  1107. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.system_data.usr_history-1__key_box' value='xowa.gui.shortcuts.xowa.nav.system_data.usr_history-1'></input>
  1108. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.system_data.usr_history-1__ctx_box' value='app'></input>
  1109. </div>
  1110. <!-- DIV:help -->
  1111. <div id='xowa.gui.shortcuts.xowa.nav.system_data.usr_history-1_help_div' class='xohelp_div'>
  1112. <div id='xowa.gui.shortcuts.xowa.nav.system_data.usr_history-1_help_msg' class='xohelp_msg'><p>View the page history file
  1113. </p>
  1114. </div>
  1115. </div>
  1116. <div class="xocfg_row flex_div">
  1117. <!-- BTN:help_item -->
  1118. <div class='xocfg_itm_help'>
  1119. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.personal.item-1")' title='view more info'>&nbsp;</span>
  1120. </div>
  1121. <!-- TEXT:key -->
  1122. <div id='xowa.gui.shortcuts.xowa.nav.personal.item-1__name' class='xocfg_itm_name'>Personal Wikis - Item</div>
  1123. <!-- BTN:undo -->
  1124. <div id='xowa.gui.shortcuts.xowa.nav.personal.item-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1125. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.personal.item-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  1126. </div>
  1127. <!-- TEXT:val -->
  1128. <div class='xocfg_itm_data'>
  1129. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.personal.item-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.personal.item-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1130. <option value="browser" selected="selected">Window</option>
  1131. <option value="browser.url">Url bar</option>
  1132. <option value="browser.search">Search box</option>
  1133. <option value="browser.allpages">Allpages box</option>
  1134. <option value="browser.html">HTML browser</option>
  1135. <option value="browser.find">Find box</option>
  1136. <option value="browser.prog">Status bar</option>
  1137. <option value="browser.info">System Messages box</option>
  1138. </select>
  1139. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.personal.item-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.personal.item-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  1140. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.personal.item-1", "Personal Wikis - Item");'>&nbsp;</span>
  1141. </div>
  1142. <!-- HIDDEN:key,ctx -->
  1143. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.personal.item-1__key_box' value='xowa.gui.shortcuts.xowa.nav.personal.item-1'></input>
  1144. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.personal.item-1__ctx_box' value='app'></input>
  1145. </div>
  1146. <!-- DIV:help -->
  1147. <div id='xowa.gui.shortcuts.xowa.nav.personal.item-1_help_div' class='xohelp_div'>
  1148. <div id='xowa.gui.shortcuts.xowa.nav.personal.item-1_help_msg' class='xohelp_msg'><p>Create or edit a personal wiki
  1149. </p>
  1150. </div>
  1151. </div>
  1152. <div class="xocfg_row flex_div">
  1153. <!-- BTN:help_item -->
  1154. <div class='xocfg_itm_help'>
  1155. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.nav.personal.list-1")' title='view more info'>&nbsp;</span>
  1156. </div>
  1157. <!-- TEXT:key -->
  1158. <div id='xowa.gui.shortcuts.xowa.nav.personal.list-1__name' class='xocfg_itm_name'>Personal Wikis - List</div>
  1159. <!-- BTN:undo -->
  1160. <div id='xowa.gui.shortcuts.xowa.nav.personal.list-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1161. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.nav.personal.list-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  1162. </div>
  1163. <!-- TEXT:val -->
  1164. <div class='xocfg_itm_data'>
  1165. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.nav.personal.list-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.personal.list-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1166. <option value="browser" selected="selected">Window</option>
  1167. <option value="browser.url">Url bar</option>
  1168. <option value="browser.search">Search box</option>
  1169. <option value="browser.allpages">Allpages box</option>
  1170. <option value="browser.html">HTML browser</option>
  1171. <option value="browser.find">Find box</option>
  1172. <option value="browser.prog">Status bar</option>
  1173. <option value="browser.info">System Messages box</option>
  1174. </select>
  1175. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.nav.personal.list-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.nav.personal.list-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  1176. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.nav.personal.list-1", "Personal Wikis - List");'>&nbsp;</span>
  1177. </div>
  1178. <!-- HIDDEN:key,ctx -->
  1179. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.personal.list-1__key_box' value='xowa.gui.shortcuts.xowa.nav.personal.list-1'></input>
  1180. <input type='hidden' id='xowa.gui.shortcuts.xowa.nav.personal.list-1__ctx_box' value='app'></input>
  1181. </div>
  1182. <!-- DIV:help -->
  1183. <div id='xowa.gui.shortcuts.xowa.nav.personal.list-1_help_div' class='xohelp_div'>
  1184. <div id='xowa.gui.shortcuts.xowa.nav.personal.list-1_help_msg' class='xohelp_msg'><p>List all personal wikis
  1185. </p>
  1186. </div>
  1187. </div>
  1188. <h2>Font</h2>
  1189. <div class="xocfg_row flex_div">
  1190. <!-- BTN:help_item -->
  1191. <div class='xocfg_itm_help'>
  1192. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.font.increase-1")' title='view more info'>&nbsp;</span>
  1193. </div>
  1194. <!-- TEXT:key -->
  1195. <div id='xowa.gui.shortcuts.xowa.gui.font.increase-1__name' class='xocfg_itm_name'>Increase Font Size</div>
  1196. <!-- BTN:undo -->
  1197. <div id='xowa.gui.shortcuts.xowa.gui.font.increase-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1198. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.font.increase-1")' title="reset to &quot;browser|mod.c+key.equal&quot;">&nbsp;</span>
  1199. </div>
  1200. <!-- TEXT:val -->
  1201. <div class='xocfg_itm_data'>
  1202. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.font.increase-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.font.increase-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1203. <option value="browser" selected="selected">Window</option>
  1204. <option value="browser.url">Url bar</option>
  1205. <option value="browser.search">Search box</option>
  1206. <option value="browser.allpages">Allpages box</option>
  1207. <option value="browser.html">HTML browser</option>
  1208. <option value="browser.find">Find box</option>
  1209. <option value="browser.prog">Status bar</option>
  1210. <option value="browser.info">System Messages box</option>
  1211. </select>
  1212. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.font.increase-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.font.increase-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + Equal"></input>
  1213. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.font.increase-1", "Increase Font Size");'>&nbsp;</span>
  1214. </div>
  1215. <!-- HIDDEN:key,ctx -->
  1216. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.font.increase-1__key_box' value='xowa.gui.shortcuts.xowa.gui.font.increase-1'></input>
  1217. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.font.increase-1__ctx_box' value='app'></input>
  1218. </div>
  1219. <!-- DIV:help -->
  1220. <div id='xowa.gui.shortcuts.xowa.gui.font.increase-1_help_div' class='xohelp_div'>
  1221. <div id='xowa.gui.shortcuts.xowa.gui.font.increase-1_help_msg' class='xohelp_msg'><p>Increase size of Window and HTML font.
  1222. </p>
  1223. </div>
  1224. </div>
  1225. <div class="xocfg_row flex_div">
  1226. <!-- BTN:help_item -->
  1227. <div class='xocfg_itm_help'>
  1228. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.font.decrease-1")' title='view more info'>&nbsp;</span>
  1229. </div>
  1230. <!-- TEXT:key -->
  1231. <div id='xowa.gui.shortcuts.xowa.gui.font.decrease-1__name' class='xocfg_itm_name'>Decrease Font Size</div>
  1232. <!-- BTN:undo -->
  1233. <div id='xowa.gui.shortcuts.xowa.gui.font.decrease-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1234. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.font.decrease-1")' title="reset to &quot;browser|mod.c+key.minus&quot;">&nbsp;</span>
  1235. </div>
  1236. <!-- TEXT:val -->
  1237. <div class='xocfg_itm_data'>
  1238. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.font.decrease-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.font.decrease-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1239. <option value="browser" selected="selected">Window</option>
  1240. <option value="browser.url">Url bar</option>
  1241. <option value="browser.search">Search box</option>
  1242. <option value="browser.allpages">Allpages box</option>
  1243. <option value="browser.html">HTML browser</option>
  1244. <option value="browser.find">Find box</option>
  1245. <option value="browser.prog">Status bar</option>
  1246. <option value="browser.info">System Messages box</option>
  1247. </select>
  1248. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.font.decrease-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.font.decrease-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + Minus"></input>
  1249. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.font.decrease-1", "Decrease Font Size");'>&nbsp;</span>
  1250. </div>
  1251. <!-- HIDDEN:key,ctx -->
  1252. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.font.decrease-1__key_box' value='xowa.gui.shortcuts.xowa.gui.font.decrease-1'></input>
  1253. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.font.decrease-1__ctx_box' value='app'></input>
  1254. </div>
  1255. <!-- DIV:help -->
  1256. <div id='xowa.gui.shortcuts.xowa.gui.font.decrease-1_help_div' class='xohelp_div'>
  1257. <div id='xowa.gui.shortcuts.xowa.gui.font.decrease-1_help_msg' class='xohelp_msg'><p>Decrease size of Window and HTML font.
  1258. </p>
  1259. </div>
  1260. </div>
  1261. <div class="xocfg_row flex_div">
  1262. <!-- BTN:help_item -->
  1263. <div class='xocfg_itm_help'>
  1264. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.font.reset-1")' title='view more info'>&nbsp;</span>
  1265. </div>
  1266. <!-- TEXT:key -->
  1267. <div id='xowa.gui.shortcuts.xowa.gui.font.reset-1__name' class='xocfg_itm_name'>Reset Font Size</div>
  1268. <!-- BTN:undo -->
  1269. <div id='xowa.gui.shortcuts.xowa.gui.font.reset-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1270. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.font.reset-1")' title="reset to &quot;browser|mod.c+key.d0&quot;">&nbsp;</span>
  1271. </div>
  1272. <!-- TEXT:val -->
  1273. <div class='xocfg_itm_data'>
  1274. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.font.reset-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.font.reset-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1275. <option value="browser" selected="selected">Window</option>
  1276. <option value="browser.url">Url bar</option>
  1277. <option value="browser.search">Search box</option>
  1278. <option value="browser.allpages">Allpages box</option>
  1279. <option value="browser.html">HTML browser</option>
  1280. <option value="browser.find">Find box</option>
  1281. <option value="browser.prog">Status bar</option>
  1282. <option value="browser.info">System Messages box</option>
  1283. </select>
  1284. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.font.reset-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.font.reset-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + 0"></input>
  1285. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.font.reset-1", "Reset Font Size");'>&nbsp;</span>
  1286. </div>
  1287. <!-- HIDDEN:key,ctx -->
  1288. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.font.reset-1__key_box' value='xowa.gui.shortcuts.xowa.gui.font.reset-1'></input>
  1289. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.font.reset-1__ctx_box' value='app'></input>
  1290. </div>
  1291. <!-- DIV:help -->
  1292. <div id='xowa.gui.shortcuts.xowa.gui.font.reset-1_help_div' class='xohelp_div'>
  1293. <div id='xowa.gui.shortcuts.xowa.gui.font.reset-1_help_msg' class='xohelp_msg'><p>Reset font to default size
  1294. </p>
  1295. </div>
  1296. </div>
  1297. <h2>Page View</h2>
  1298. <div class="xocfg_row flex_div">
  1299. <!-- BTN:help_item -->
  1300. <div class='xocfg_itm_help'>
  1301. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.page.view.mode_read-1")' title='view more info'>&nbsp;</span>
  1302. </div>
  1303. <!-- TEXT:key -->
  1304. <div id='xowa.gui.shortcuts.xowa.gui.page.view.mode_read-1__name' class='xocfg_itm_name'>Read Page</div>
  1305. <!-- BTN:undo -->
  1306. <div id='xowa.gui.shortcuts.xowa.gui.page.view.mode_read-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1307. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.page.view.mode_read-1")' title="reset to &quot;browser|mod.c+key.m,mod.c+key.r&quot;">&nbsp;</span>
  1308. </div>
  1309. <!-- TEXT:val -->
  1310. <div class='xocfg_itm_data'>
  1311. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.page.view.mode_read-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.view.mode_read-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1312. <option value="browser" selected="selected">Window</option>
  1313. <option value="browser.url">Url bar</option>
  1314. <option value="browser.search">Search box</option>
  1315. <option value="browser.allpages">Allpages box</option>
  1316. <option value="browser.html">HTML browser</option>
  1317. <option value="browser.find">Find box</option>
  1318. <option value="browser.prog">Status bar</option>
  1319. <option value="browser.info">System Messages box</option>
  1320. </select>
  1321. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.page.view.mode_read-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.view.mode_read-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + M, Ctrl + R"></input>
  1322. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.page.view.mode_read-1", "Read Page");'>&nbsp;</span>
  1323. </div>
  1324. <!-- HIDDEN:key,ctx -->
  1325. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.view.mode_read-1__key_box' value='xowa.gui.shortcuts.xowa.gui.page.view.mode_read-1'></input>
  1326. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.view.mode_read-1__ctx_box' value='app'></input>
  1327. </div>
  1328. <!-- DIV:help -->
  1329. <div id='xowa.gui.shortcuts.xowa.gui.page.view.mode_read-1_help_div' class='xohelp_div'>
  1330. <div id='xowa.gui.shortcuts.xowa.gui.page.view.mode_read-1_help_msg' class='xohelp_msg'><p>Read page
  1331. </p>
  1332. </div>
  1333. </div>
  1334. <div class="xocfg_row flex_div">
  1335. <!-- BTN:help_item -->
  1336. <div class='xocfg_itm_help'>
  1337. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.page.view.mode_edit-1")' title='view more info'>&nbsp;</span>
  1338. </div>
  1339. <!-- TEXT:key -->
  1340. <div id='xowa.gui.shortcuts.xowa.gui.page.view.mode_edit-1__name' class='xocfg_itm_name'>Edit Page</div>
  1341. <!-- BTN:undo -->
  1342. <div id='xowa.gui.shortcuts.xowa.gui.page.view.mode_edit-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1343. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.page.view.mode_edit-1")' title="reset to &quot;browser|mod.c+key.m,mod.c+key.e&quot;">&nbsp;</span>
  1344. </div>
  1345. <!-- TEXT:val -->
  1346. <div class='xocfg_itm_data'>
  1347. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.page.view.mode_edit-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.view.mode_edit-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1348. <option value="browser" selected="selected">Window</option>
  1349. <option value="browser.url">Url bar</option>
  1350. <option value="browser.search">Search box</option>
  1351. <option value="browser.allpages">Allpages box</option>
  1352. <option value="browser.html">HTML browser</option>
  1353. <option value="browser.find">Find box</option>
  1354. <option value="browser.prog">Status bar</option>
  1355. <option value="browser.info">System Messages box</option>
  1356. </select>
  1357. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.page.view.mode_edit-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.view.mode_edit-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + M, Ctrl + E"></input>
  1358. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.page.view.mode_edit-1", "Edit Page");'>&nbsp;</span>
  1359. </div>
  1360. <!-- HIDDEN:key,ctx -->
  1361. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.view.mode_edit-1__key_box' value='xowa.gui.shortcuts.xowa.gui.page.view.mode_edit-1'></input>
  1362. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.view.mode_edit-1__ctx_box' value='app'></input>
  1363. </div>
  1364. <!-- DIV:help -->
  1365. <div id='xowa.gui.shortcuts.xowa.gui.page.view.mode_edit-1_help_div' class='xohelp_div'>
  1366. <div id='xowa.gui.shortcuts.xowa.gui.page.view.mode_edit-1_help_msg' class='xohelp_msg'><p>Edit page's wikitext
  1367. </p>
  1368. </div>
  1369. </div>
  1370. <div class="xocfg_row flex_div">
  1371. <!-- BTN:help_item -->
  1372. <div class='xocfg_itm_help'>
  1373. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.page.view.mode_html-1")' title='view more info'>&nbsp;</span>
  1374. </div>
  1375. <!-- TEXT:key -->
  1376. <div id='xowa.gui.shortcuts.xowa.gui.page.view.mode_html-1__name' class='xocfg_itm_name'>View HTML</div>
  1377. <!-- BTN:undo -->
  1378. <div id='xowa.gui.shortcuts.xowa.gui.page.view.mode_html-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1379. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.page.view.mode_html-1")' title="reset to &quot;browser|mod.c+key.m,mod.c+key.h&quot;">&nbsp;</span>
  1380. </div>
  1381. <!-- TEXT:val -->
  1382. <div class='xocfg_itm_data'>
  1383. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.page.view.mode_html-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.view.mode_html-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1384. <option value="browser" selected="selected">Window</option>
  1385. <option value="browser.url">Url bar</option>
  1386. <option value="browser.search">Search box</option>
  1387. <option value="browser.allpages">Allpages box</option>
  1388. <option value="browser.html">HTML browser</option>
  1389. <option value="browser.find">Find box</option>
  1390. <option value="browser.prog">Status bar</option>
  1391. <option value="browser.info">System Messages box</option>
  1392. </select>
  1393. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.page.view.mode_html-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.view.mode_html-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + M, Ctrl + H"></input>
  1394. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.page.view.mode_html-1", "View HTML");'>&nbsp;</span>
  1395. </div>
  1396. <!-- HIDDEN:key,ctx -->
  1397. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.view.mode_html-1__key_box' value='xowa.gui.shortcuts.xowa.gui.page.view.mode_html-1'></input>
  1398. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.view.mode_html-1__ctx_box' value='app'></input>
  1399. </div>
  1400. <!-- DIV:help -->
  1401. <div id='xowa.gui.shortcuts.xowa.gui.page.view.mode_html-1_help_div' class='xohelp_div'>
  1402. <div id='xowa.gui.shortcuts.xowa.gui.page.view.mode_html-1_help_msg' class='xohelp_msg'><p>View page's HTML
  1403. </p>
  1404. </div>
  1405. </div>
  1406. <div class="xocfg_row flex_div">
  1407. <!-- BTN:help_item -->
  1408. <div class='xocfg_itm_help'>
  1409. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.page.view.mode_html-2")' title='view more info'>&nbsp;</span>
  1410. </div>
  1411. <!-- TEXT:key -->
  1412. <div id='xowa.gui.shortcuts.xowa.gui.page.view.mode_html-2__name' class='xocfg_itm_name'>View HTML</div>
  1413. <!-- BTN:undo -->
  1414. <div id='xowa.gui.shortcuts.xowa.gui.page.view.mode_html-2__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1415. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.page.view.mode_html-2")' title="reset to &quot;browser|mod.c+key.u&quot;">&nbsp;</span>
  1416. </div>
  1417. <!-- TEXT:val -->
  1418. <div class='xocfg_itm_data'>
  1419. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.page.view.mode_html-2-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.view.mode_html-2" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1420. <option value="browser" selected="selected">Window</option>
  1421. <option value="browser.url">Url bar</option>
  1422. <option value="browser.search">Search box</option>
  1423. <option value="browser.allpages">Allpages box</option>
  1424. <option value="browser.html">HTML browser</option>
  1425. <option value="browser.find">Find box</option>
  1426. <option value="browser.prog">Status bar</option>
  1427. <option value="browser.info">System Messages box</option>
  1428. </select>
  1429. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.page.view.mode_html-2-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.view.mode_html-2" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + U"></input>
  1430. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.page.view.mode_html-2", "View HTML");'>&nbsp;</span>
  1431. </div>
  1432. <!-- HIDDEN:key,ctx -->
  1433. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.view.mode_html-2__key_box' value='xowa.gui.shortcuts.xowa.gui.page.view.mode_html-2'></input>
  1434. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.view.mode_html-2__ctx_box' value='app'></input>
  1435. </div>
  1436. <!-- DIV:help -->
  1437. <div id='xowa.gui.shortcuts.xowa.gui.page.view.mode_html-2_help_div' class='xohelp_div'>
  1438. <div id='xowa.gui.shortcuts.xowa.gui.page.view.mode_html-2_help_msg' class='xohelp_msg'><p>View page's HTML
  1439. </p>
  1440. </div>
  1441. </div>
  1442. <div class="xocfg_row flex_div">
  1443. <!-- BTN:help_item -->
  1444. <div class='xocfg_itm_help'>
  1445. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.page.view.refresh-1")' title='view more info'>&nbsp;</span>
  1446. </div>
  1447. <!-- TEXT:key -->
  1448. <div id='xowa.gui.shortcuts.xowa.gui.page.view.refresh-1__name' class='xocfg_itm_name'>Refresh Page</div>
  1449. <!-- BTN:undo -->
  1450. <div id='xowa.gui.shortcuts.xowa.gui.page.view.refresh-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1451. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.page.view.refresh-1")' title="reset to &quot;browser|mod.s+key.f5&quot;">&nbsp;</span>
  1452. </div>
  1453. <!-- TEXT:val -->
  1454. <div class='xocfg_itm_data'>
  1455. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.page.view.refresh-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.view.refresh-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1456. <option value="browser" selected="selected">Window</option>
  1457. <option value="browser.url">Url bar</option>
  1458. <option value="browser.search">Search box</option>
  1459. <option value="browser.allpages">Allpages box</option>
  1460. <option value="browser.html">HTML browser</option>
  1461. <option value="browser.find">Find box</option>
  1462. <option value="browser.prog">Status bar</option>
  1463. <option value="browser.info">System Messages box</option>
  1464. </select>
  1465. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.page.view.refresh-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.view.refresh-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Shift + F5"></input>
  1466. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.page.view.refresh-1", "Refresh Page");'>&nbsp;</span>
  1467. </div>
  1468. <!-- HIDDEN:key,ctx -->
  1469. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.view.refresh-1__key_box' value='xowa.gui.shortcuts.xowa.gui.page.view.refresh-1'></input>
  1470. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.view.refresh-1__ctx_box' value='app'></input>
  1471. </div>
  1472. <!-- DIV:help -->
  1473. <div id='xowa.gui.shortcuts.xowa.gui.page.view.refresh-1_help_div' class='xohelp_div'>
  1474. <div id='xowa.gui.shortcuts.xowa.gui.page.view.refresh-1_help_msg' class='xohelp_msg'><p>Refresh page content by reparsing only
  1475. </p>
  1476. </div>
  1477. </div>
  1478. <div class="xocfg_row flex_div">
  1479. <!-- BTN:help_item -->
  1480. <div class='xocfg_itm_help'>
  1481. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.page.view.reload-1")' title='view more info'>&nbsp;</span>
  1482. </div>
  1483. <!-- TEXT:key -->
  1484. <div id='xowa.gui.shortcuts.xowa.gui.page.view.reload-1__name' class='xocfg_itm_name'>Reload Page</div>
  1485. <!-- BTN:undo -->
  1486. <div id='xowa.gui.shortcuts.xowa.gui.page.view.reload-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1487. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.page.view.reload-1")' title="reset to &quot;browser|key.f5&quot;">&nbsp;</span>
  1488. </div>
  1489. <!-- TEXT:val -->
  1490. <div class='xocfg_itm_data'>
  1491. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.page.view.reload-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.view.reload-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1492. <option value="browser" selected="selected">Window</option>
  1493. <option value="browser.url">Url bar</option>
  1494. <option value="browser.search">Search box</option>
  1495. <option value="browser.allpages">Allpages box</option>
  1496. <option value="browser.html">HTML browser</option>
  1497. <option value="browser.find">Find box</option>
  1498. <option value="browser.prog">Status bar</option>
  1499. <option value="browser.info">System Messages box</option>
  1500. </select>
  1501. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.page.view.reload-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.view.reload-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="F5"></input>
  1502. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.page.view.reload-1", "Reload Page");'>&nbsp;</span>
  1503. </div>
  1504. <!-- HIDDEN:key,ctx -->
  1505. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.view.reload-1__key_box' value='xowa.gui.shortcuts.xowa.gui.page.view.reload-1'></input>
  1506. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.view.reload-1__ctx_box' value='app'></input>
  1507. </div>
  1508. <!-- DIV:help -->
  1509. <div id='xowa.gui.shortcuts.xowa.gui.page.view.reload-1_help_div' class='xohelp_div'>
  1510. <div id='xowa.gui.shortcuts.xowa.gui.page.view.reload-1_help_msg' class='xohelp_msg'><p>Reload page content by retrieving data and reparsing
  1511. </p>
  1512. </div>
  1513. </div>
  1514. <div class="xocfg_row flex_div">
  1515. <!-- BTN:help_item -->
  1516. <div class='xocfg_itm_help'>
  1517. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.page.view.save_as-1")' title='view more info'>&nbsp;</span>
  1518. </div>
  1519. <!-- TEXT:key -->
  1520. <div id='xowa.gui.shortcuts.xowa.gui.page.view.save_as-1__name' class='xocfg_itm_name'>Save As</div>
  1521. <!-- BTN:undo -->
  1522. <div id='xowa.gui.shortcuts.xowa.gui.page.view.save_as-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1523. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.page.view.save_as-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  1524. </div>
  1525. <!-- TEXT:val -->
  1526. <div class='xocfg_itm_data'>
  1527. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.page.view.save_as-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.view.save_as-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1528. <option value="browser" selected="selected">Window</option>
  1529. <option value="browser.url">Url bar</option>
  1530. <option value="browser.search">Search box</option>
  1531. <option value="browser.allpages">Allpages box</option>
  1532. <option value="browser.html">HTML browser</option>
  1533. <option value="browser.find">Find box</option>
  1534. <option value="browser.prog">Status bar</option>
  1535. <option value="browser.info">System Messages box</option>
  1536. </select>
  1537. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.page.view.save_as-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.view.save_as-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  1538. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.page.view.save_as-1", "Save As");'>&nbsp;</span>
  1539. </div>
  1540. <!-- HIDDEN:key,ctx -->
  1541. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.view.save_as-1__key_box' value='xowa.gui.shortcuts.xowa.gui.page.view.save_as-1'></input>
  1542. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.view.save_as-1__ctx_box' value='app'></input>
  1543. </div>
  1544. <!-- DIV:help -->
  1545. <div id='xowa.gui.shortcuts.xowa.gui.page.view.save_as-1_help_div' class='xohelp_div'>
  1546. <div id='xowa.gui.shortcuts.xowa.gui.page.view.save_as-1_help_msg' class='xohelp_msg'><p>Save current page to an HTML file
  1547. </p>
  1548. </div>
  1549. </div>
  1550. <div class="xocfg_row flex_div">
  1551. <!-- BTN:help_item -->
  1552. <div class='xocfg_itm_help'>
  1553. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.page.view.print-1")' title='view more info'>&nbsp;</span>
  1554. </div>
  1555. <!-- TEXT:key -->
  1556. <div id='xowa.gui.shortcuts.xowa.gui.page.view.print-1__name' class='xocfg_itm_name'>Print</div>
  1557. <!-- BTN:undo -->
  1558. <div id='xowa.gui.shortcuts.xowa.gui.page.view.print-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1559. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.page.view.print-1")' title="reset to &quot;browser|mod.c+key.p&quot;">&nbsp;</span>
  1560. </div>
  1561. <!-- TEXT:val -->
  1562. <div class='xocfg_itm_data'>
  1563. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.page.view.print-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.view.print-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1564. <option value="browser" selected="selected">Window</option>
  1565. <option value="browser.url">Url bar</option>
  1566. <option value="browser.search">Search box</option>
  1567. <option value="browser.allpages">Allpages box</option>
  1568. <option value="browser.html">HTML browser</option>
  1569. <option value="browser.find">Find box</option>
  1570. <option value="browser.prog">Status bar</option>
  1571. <option value="browser.info">System Messages box</option>
  1572. </select>
  1573. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.page.view.print-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.view.print-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + P"></input>
  1574. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.page.view.print-1", "Print");'>&nbsp;</span>
  1575. </div>
  1576. <!-- HIDDEN:key,ctx -->
  1577. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.view.print-1__key_box' value='xowa.gui.shortcuts.xowa.gui.page.view.print-1'></input>
  1578. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.view.print-1__ctx_box' value='app'></input>
  1579. </div>
  1580. <!-- DIV:help -->
  1581. <div id='xowa.gui.shortcuts.xowa.gui.page.view.print-1_help_div' class='xohelp_div'>
  1582. <div id='xowa.gui.shortcuts.xowa.gui.page.view.print-1_help_msg' class='xohelp_msg'><p>Print current page. See Help:Printing
  1583. </p>
  1584. </div>
  1585. </div>
  1586. <h2>Page Edit</h2>
  1587. <div class="xocfg_row flex_div">
  1588. <!-- BTN:help_item -->
  1589. <div class='xocfg_itm_help'>
  1590. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.page.edit.save-1")' title='view more info'>&nbsp;</span>
  1591. </div>
  1592. <!-- TEXT:key -->
  1593. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.save-1__name' class='xocfg_itm_name'>Save Page and Read</div>
  1594. <!-- BTN:undo -->
  1595. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.save-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1596. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.page.edit.save-1")' title="reset to &quot;browser|mod.as+key.s&quot;">&nbsp;</span>
  1597. </div>
  1598. <!-- TEXT:val -->
  1599. <div class='xocfg_itm_data'>
  1600. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.page.edit.save-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.edit.save-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1601. <option value="browser" selected="selected">Window</option>
  1602. <option value="browser.url">Url bar</option>
  1603. <option value="browser.search">Search box</option>
  1604. <option value="browser.allpages">Allpages box</option>
  1605. <option value="browser.html">HTML browser</option>
  1606. <option value="browser.find">Find box</option>
  1607. <option value="browser.prog">Status bar</option>
  1608. <option value="browser.info">System Messages box</option>
  1609. </select>
  1610. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.page.edit.save-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.edit.save-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Alt + Shift + S"></input>
  1611. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.page.edit.save-1", "Save Page and Read");'>&nbsp;</span>
  1612. </div>
  1613. <!-- HIDDEN:key,ctx -->
  1614. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.edit.save-1__key_box' value='xowa.gui.shortcuts.xowa.gui.page.edit.save-1'></input>
  1615. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.edit.save-1__ctx_box' value='app'></input>
  1616. </div>
  1617. <!-- DIV:help -->
  1618. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.save-1_help_div' class='xohelp_div'>
  1619. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.save-1_help_msg' class='xohelp_msg'><p>Save wikitext and switch to the Read view
  1620. </p>
  1621. </div>
  1622. </div>
  1623. <div class="xocfg_row flex_div">
  1624. <!-- BTN:help_item -->
  1625. <div class='xocfg_itm_help'>
  1626. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.page.edit.save_draft-1")' title='view more info'>&nbsp;</span>
  1627. </div>
  1628. <!-- TEXT:key -->
  1629. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.save_draft-1__name' class='xocfg_itm_name'>Save Page (draft)</div>
  1630. <!-- BTN:undo -->
  1631. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.save_draft-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1632. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.page.edit.save_draft-1")' title="reset to &quot;browser|mod.c+key.s&quot;">&nbsp;</span>
  1633. </div>
  1634. <!-- TEXT:val -->
  1635. <div class='xocfg_itm_data'>
  1636. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.page.edit.save_draft-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.edit.save_draft-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1637. <option value="browser" selected="selected">Window</option>
  1638. <option value="browser.url">Url bar</option>
  1639. <option value="browser.search">Search box</option>
  1640. <option value="browser.allpages">Allpages box</option>
  1641. <option value="browser.html">HTML browser</option>
  1642. <option value="browser.find">Find box</option>
  1643. <option value="browser.prog">Status bar</option>
  1644. <option value="browser.info">System Messages box</option>
  1645. </select>
  1646. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.page.edit.save_draft-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.edit.save_draft-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + S"></input>
  1647. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.page.edit.save_draft-1", "Save Page (draft)");'>&nbsp;</span>
  1648. </div>
  1649. <!-- HIDDEN:key,ctx -->
  1650. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.edit.save_draft-1__key_box' value='xowa.gui.shortcuts.xowa.gui.page.edit.save_draft-1'></input>
  1651. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.edit.save_draft-1__ctx_box' value='app'></input>
  1652. </div>
  1653. <!-- DIV:help -->
  1654. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.save_draft-1_help_div' class='xohelp_div'>
  1655. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.save_draft-1_help_msg' class='xohelp_msg'><p>Save wikitext and continue editing
  1656. </p>
  1657. </div>
  1658. </div>
  1659. <div class="xocfg_row flex_div">
  1660. <!-- BTN:help_item -->
  1661. <div class='xocfg_itm_help'>
  1662. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.page.edit.focus_edit_box-1")' title='view more info'>&nbsp;</span>
  1663. </div>
  1664. <!-- TEXT:key -->
  1665. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.focus_edit_box-1__name' class='xocfg_itm_name'>Focus Edit Box</div>
  1666. <!-- BTN:undo -->
  1667. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.focus_edit_box-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1668. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.page.edit.focus_edit_box-1")' title="reset to &quot;browser|mod.as+key.comma&quot;">&nbsp;</span>
  1669. </div>
  1670. <!-- TEXT:val -->
  1671. <div class='xocfg_itm_data'>
  1672. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.page.edit.focus_edit_box-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.edit.focus_edit_box-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1673. <option value="browser" selected="selected">Window</option>
  1674. <option value="browser.url">Url bar</option>
  1675. <option value="browser.search">Search box</option>
  1676. <option value="browser.allpages">Allpages box</option>
  1677. <option value="browser.html">HTML browser</option>
  1678. <option value="browser.find">Find box</option>
  1679. <option value="browser.prog">Status bar</option>
  1680. <option value="browser.info">System Messages box</option>
  1681. </select>
  1682. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.page.edit.focus_edit_box-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.edit.focus_edit_box-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Alt + Shift + Comma"></input>
  1683. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.page.edit.focus_edit_box-1", "Focus Edit Box");'>&nbsp;</span>
  1684. </div>
  1685. <!-- HIDDEN:key,ctx -->
  1686. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.edit.focus_edit_box-1__key_box' value='xowa.gui.shortcuts.xowa.gui.page.edit.focus_edit_box-1'></input>
  1687. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.edit.focus_edit_box-1__ctx_box' value='app'></input>
  1688. </div>
  1689. <!-- DIV:help -->
  1690. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.focus_edit_box-1_help_div' class='xohelp_div'>
  1691. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.focus_edit_box-1_help_msg' class='xohelp_msg'><p>Switch keyboard focus to the edit box
  1692. </p>
  1693. </div>
  1694. </div>
  1695. <div class="xocfg_row flex_div">
  1696. <!-- BTN:help_item -->
  1697. <div class='xocfg_itm_help'>
  1698. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.page.edit.preview-1")' title='view more info'>&nbsp;</span>
  1699. </div>
  1700. <!-- TEXT:key -->
  1701. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.preview-1__name' class='xocfg_itm_name'>Preview</div>
  1702. <!-- BTN:undo -->
  1703. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.preview-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1704. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.page.edit.preview-1")' title="reset to &quot;browser|mod.as+key.p&quot;">&nbsp;</span>
  1705. </div>
  1706. <!-- TEXT:val -->
  1707. <div class='xocfg_itm_data'>
  1708. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.page.edit.preview-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.edit.preview-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1709. <option value="browser" selected="selected">Window</option>
  1710. <option value="browser.url">Url bar</option>
  1711. <option value="browser.search">Search box</option>
  1712. <option value="browser.allpages">Allpages box</option>
  1713. <option value="browser.html">HTML browser</option>
  1714. <option value="browser.find">Find box</option>
  1715. <option value="browser.prog">Status bar</option>
  1716. <option value="browser.info">System Messages box</option>
  1717. </select>
  1718. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.page.edit.preview-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.edit.preview-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Alt + Shift + P"></input>
  1719. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.page.edit.preview-1", "Preview");'>&nbsp;</span>
  1720. </div>
  1721. <!-- HIDDEN:key,ctx -->
  1722. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.edit.preview-1__key_box' value='xowa.gui.shortcuts.xowa.gui.page.edit.preview-1'></input>
  1723. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.edit.preview-1__ctx_box' value='app'></input>
  1724. </div>
  1725. <!-- DIV:help -->
  1726. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.preview-1_help_div' class='xohelp_div'>
  1727. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.preview-1_help_msg' class='xohelp_msg'><p>Preview wikitext
  1728. </p>
  1729. </div>
  1730. </div>
  1731. <div class="xocfg_row flex_div">
  1732. <!-- BTN:help_item -->
  1733. <div class='xocfg_itm_help'>
  1734. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-1")' title='view more info'>&nbsp;</span>
  1735. </div>
  1736. <!-- TEXT:key -->
  1737. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-1__name' class='xocfg_itm_name'>Expand Templates</div>
  1738. <!-- BTN:undo -->
  1739. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1740. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-1")' title="reset to &quot;browser|mod.c+key.e,mod.c+key.e&quot;">&nbsp;</span>
  1741. </div>
  1742. <!-- TEXT:val -->
  1743. <div class='xocfg_itm_data'>
  1744. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1745. <option value="browser" selected="selected">Window</option>
  1746. <option value="browser.url">Url bar</option>
  1747. <option value="browser.search">Search box</option>
  1748. <option value="browser.allpages">Allpages box</option>
  1749. <option value="browser.html">HTML browser</option>
  1750. <option value="browser.find">Find box</option>
  1751. <option value="browser.prog">Status bar</option>
  1752. <option value="browser.info">System Messages box</option>
  1753. </select>
  1754. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + E, Ctrl + E"></input>
  1755. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-1", "Expand Templates");'>&nbsp;</span>
  1756. </div>
  1757. <!-- HIDDEN:key,ctx -->
  1758. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-1__key_box' value='xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-1'></input>
  1759. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-1__ctx_box' value='app'></input>
  1760. </div>
  1761. <!-- DIV:help -->
  1762. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-1_help_div' class='xohelp_div'>
  1763. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-1_help_msg' class='xohelp_msg'><p>Expand all templates using the text in the edit box (developer usage only)
  1764. </p>
  1765. </div>
  1766. </div>
  1767. <div class="xocfg_row flex_div">
  1768. <!-- BTN:help_item -->
  1769. <div class='xocfg_itm_help'>
  1770. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-2")' title='view more info'>&nbsp;</span>
  1771. </div>
  1772. <!-- TEXT:key -->
  1773. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-2__name' class='xocfg_itm_name'>Expand Templates</div>
  1774. <!-- BTN:undo -->
  1775. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-2__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1776. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-2")' title="reset to &quot;browser|mod.as+key.d,mod.as+key.d&quot;">&nbsp;</span>
  1777. </div>
  1778. <!-- TEXT:val -->
  1779. <div class='xocfg_itm_data'>
  1780. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-2-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-2" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1781. <option value="browser" selected="selected">Window</option>
  1782. <option value="browser.url">Url bar</option>
  1783. <option value="browser.search">Search box</option>
  1784. <option value="browser.allpages">Allpages box</option>
  1785. <option value="browser.html">HTML browser</option>
  1786. <option value="browser.find">Find box</option>
  1787. <option value="browser.prog">Status bar</option>
  1788. <option value="browser.info">System Messages box</option>
  1789. </select>
  1790. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-2-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-2" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Alt + Shift + D, Alt + Shift + D"></input>
  1791. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-2", "Expand Templates");'>&nbsp;</span>
  1792. </div>
  1793. <!-- HIDDEN:key,ctx -->
  1794. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-2__key_box' value='xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-2'></input>
  1795. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-2__ctx_box' value='app'></input>
  1796. </div>
  1797. <!-- DIV:help -->
  1798. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-2_help_div' class='xohelp_div'>
  1799. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.dbg_tmpl-2_help_msg' class='xohelp_msg'><p>Expand all templates using the text in the edit box (developer usage only)
  1800. </p>
  1801. </div>
  1802. </div>
  1803. <div class="xocfg_row flex_div">
  1804. <!-- BTN:help_item -->
  1805. <div class='xocfg_itm_help'>
  1806. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.page.edit.dbg_html-1")' title='view more info'>&nbsp;</span>
  1807. </div>
  1808. <!-- TEXT:key -->
  1809. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.dbg_html-1__name' class='xocfg_itm_name'>Show Current HTML</div>
  1810. <!-- BTN:undo -->
  1811. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.dbg_html-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1812. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.page.edit.dbg_html-1")' title="reset to &quot;browser|mod.c+key.e,mod.c+key.h&quot;">&nbsp;</span>
  1813. </div>
  1814. <!-- TEXT:val -->
  1815. <div class='xocfg_itm_data'>
  1816. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.page.edit.dbg_html-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.edit.dbg_html-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1817. <option value="browser" selected="selected">Window</option>
  1818. <option value="browser.url">Url bar</option>
  1819. <option value="browser.search">Search box</option>
  1820. <option value="browser.allpages">Allpages box</option>
  1821. <option value="browser.html">HTML browser</option>
  1822. <option value="browser.find">Find box</option>
  1823. <option value="browser.prog">Status bar</option>
  1824. <option value="browser.info">System Messages box</option>
  1825. </select>
  1826. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.page.edit.dbg_html-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.edit.dbg_html-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + E, Ctrl + H"></input>
  1827. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.page.edit.dbg_html-1", "Show Current HTML");'>&nbsp;</span>
  1828. </div>
  1829. <!-- HIDDEN:key,ctx -->
  1830. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.edit.dbg_html-1__key_box' value='xowa.gui.shortcuts.xowa.gui.page.edit.dbg_html-1'></input>
  1831. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.edit.dbg_html-1__ctx_box' value='app'></input>
  1832. </div>
  1833. <!-- DIV:help -->
  1834. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.dbg_html-1_help_div' class='xohelp_div'>
  1835. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.dbg_html-1_help_msg' class='xohelp_msg'><p>Show current HTML (with javascript changes) (developer usage only)
  1836. </p>
  1837. </div>
  1838. </div>
  1839. <div class="xocfg_row flex_div">
  1840. <!-- BTN:help_item -->
  1841. <div class='xocfg_itm_help'>
  1842. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.page.edit.exec-1")' title='view more info'>&nbsp;</span>
  1843. </div>
  1844. <!-- TEXT:key -->
  1845. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.exec-1__name' class='xocfg_itm_name'>Run XOWA Script</div>
  1846. <!-- BTN:undo -->
  1847. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.exec-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1848. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.page.edit.exec-1")' title="reset to &quot;browser|mod.c+key.e,mod.c+key.g&quot;">&nbsp;</span>
  1849. </div>
  1850. <!-- TEXT:val -->
  1851. <div class='xocfg_itm_data'>
  1852. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.page.edit.exec-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.edit.exec-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1853. <option value="browser" selected="selected">Window</option>
  1854. <option value="browser.url">Url bar</option>
  1855. <option value="browser.search">Search box</option>
  1856. <option value="browser.allpages">Allpages box</option>
  1857. <option value="browser.html">HTML browser</option>
  1858. <option value="browser.find">Find box</option>
  1859. <option value="browser.prog">Status bar</option>
  1860. <option value="browser.info">System Messages box</option>
  1861. </select>
  1862. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.page.edit.exec-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.edit.exec-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + E, Ctrl + G"></input>
  1863. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.page.edit.exec-1", "Run XOWA Script");'>&nbsp;</span>
  1864. </div>
  1865. <!-- HIDDEN:key,ctx -->
  1866. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.edit.exec-1__key_box' value='xowa.gui.shortcuts.xowa.gui.page.edit.exec-1'></input>
  1867. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.edit.exec-1__ctx_box' value='app'></input>
  1868. </div>
  1869. <!-- DIV:help -->
  1870. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.exec-1_help_div' class='xohelp_div'>
  1871. <div id='xowa.gui.shortcuts.xowa.gui.page.edit.exec-1_help_msg' class='xohelp_msg'><p>Run XOWA script using the text in the edit box(developer usage only)
  1872. </p>
  1873. </div>
  1874. </div>
  1875. <h2>Page Selection</h2>
  1876. <div class="xocfg_row flex_div">
  1877. <!-- BTN:help_item -->
  1878. <div class='xocfg_itm_help'>
  1879. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.page.selection.select_all-1")' title='view more info'>&nbsp;</span>
  1880. </div>
  1881. <!-- TEXT:key -->
  1882. <div id='xowa.gui.shortcuts.xowa.gui.page.selection.select_all-1__name' class='xocfg_itm_name'>Select All</div>
  1883. <!-- BTN:undo -->
  1884. <div id='xowa.gui.shortcuts.xowa.gui.page.selection.select_all-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1885. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.page.selection.select_all-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  1886. </div>
  1887. <!-- TEXT:val -->
  1888. <div class='xocfg_itm_data'>
  1889. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.page.selection.select_all-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.selection.select_all-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1890. <option value="browser" selected="selected">Window</option>
  1891. <option value="browser.url">Url bar</option>
  1892. <option value="browser.search">Search box</option>
  1893. <option value="browser.allpages">Allpages box</option>
  1894. <option value="browser.html">HTML browser</option>
  1895. <option value="browser.find">Find box</option>
  1896. <option value="browser.prog">Status bar</option>
  1897. <option value="browser.info">System Messages box</option>
  1898. </select>
  1899. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.page.selection.select_all-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.selection.select_all-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  1900. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.page.selection.select_all-1", "Select All");'>&nbsp;</span>
  1901. </div>
  1902. <!-- HIDDEN:key,ctx -->
  1903. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.selection.select_all-1__key_box' value='xowa.gui.shortcuts.xowa.gui.page.selection.select_all-1'></input>
  1904. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.selection.select_all-1__ctx_box' value='app'></input>
  1905. </div>
  1906. <!-- DIV:help -->
  1907. <div id='xowa.gui.shortcuts.xowa.gui.page.selection.select_all-1_help_div' class='xohelp_div'>
  1908. <div id='xowa.gui.shortcuts.xowa.gui.page.selection.select_all-1_help_msg' class='xohelp_msg'><p>Select all text on current page
  1909. </p>
  1910. </div>
  1911. </div>
  1912. <div class="xocfg_row flex_div">
  1913. <!-- BTN:help_item -->
  1914. <div class='xocfg_itm_help'>
  1915. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.page.selection.copy-1")' title='view more info'>&nbsp;</span>
  1916. </div>
  1917. <!-- TEXT:key -->
  1918. <div id='xowa.gui.shortcuts.xowa.gui.page.selection.copy-1__name' class='xocfg_itm_name'>Copy</div>
  1919. <!-- BTN:undo -->
  1920. <div id='xowa.gui.shortcuts.xowa.gui.page.selection.copy-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1921. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.page.selection.copy-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  1922. </div>
  1923. <!-- TEXT:val -->
  1924. <div class='xocfg_itm_data'>
  1925. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.page.selection.copy-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.selection.copy-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1926. <option value="browser" selected="selected">Window</option>
  1927. <option value="browser.url">Url bar</option>
  1928. <option value="browser.search">Search box</option>
  1929. <option value="browser.allpages">Allpages box</option>
  1930. <option value="browser.html">HTML browser</option>
  1931. <option value="browser.find">Find box</option>
  1932. <option value="browser.prog">Status bar</option>
  1933. <option value="browser.info">System Messages box</option>
  1934. </select>
  1935. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.page.selection.copy-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.selection.copy-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  1936. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.page.selection.copy-1", "Copy");'>&nbsp;</span>
  1937. </div>
  1938. <!-- HIDDEN:key,ctx -->
  1939. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.selection.copy-1__key_box' value='xowa.gui.shortcuts.xowa.gui.page.selection.copy-1'></input>
  1940. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.selection.copy-1__ctx_box' value='app'></input>
  1941. </div>
  1942. <!-- DIV:help -->
  1943. <div id='xowa.gui.shortcuts.xowa.gui.page.selection.copy-1_help_div' class='xohelp_div'>
  1944. <div id='xowa.gui.shortcuts.xowa.gui.page.selection.copy-1_help_msg' class='xohelp_msg'><p>Copy selected text or url to clipboard
  1945. </p>
  1946. </div>
  1947. </div>
  1948. <div class="xocfg_row flex_div">
  1949. <!-- BTN:help_item -->
  1950. <div class='xocfg_itm_help'>
  1951. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.page.selection.save_file_as-1")' title='view more info'>&nbsp;</span>
  1952. </div>
  1953. <!-- TEXT:key -->
  1954. <div id='xowa.gui.shortcuts.xowa.gui.page.selection.save_file_as-1__name' class='xocfg_itm_name'>Save File As</div>
  1955. <!-- BTN:undo -->
  1956. <div id='xowa.gui.shortcuts.xowa.gui.page.selection.save_file_as-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1957. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.page.selection.save_file_as-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  1958. </div>
  1959. <!-- TEXT:val -->
  1960. <div class='xocfg_itm_data'>
  1961. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.page.selection.save_file_as-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.selection.save_file_as-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1962. <option value="browser" selected="selected">Window</option>
  1963. <option value="browser.url">Url bar</option>
  1964. <option value="browser.search">Search box</option>
  1965. <option value="browser.allpages">Allpages box</option>
  1966. <option value="browser.html">HTML browser</option>
  1967. <option value="browser.find">Find box</option>
  1968. <option value="browser.prog">Status bar</option>
  1969. <option value="browser.info">System Messages box</option>
  1970. </select>
  1971. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.page.selection.save_file_as-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.page.selection.save_file_as-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  1972. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.page.selection.save_file_as-1", "Save File As");'>&nbsp;</span>
  1973. </div>
  1974. <!-- HIDDEN:key,ctx -->
  1975. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.selection.save_file_as-1__key_box' value='xowa.gui.shortcuts.xowa.gui.page.selection.save_file_as-1'></input>
  1976. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.page.selection.save_file_as-1__ctx_box' value='app'></input>
  1977. </div>
  1978. <!-- DIV:help -->
  1979. <div id='xowa.gui.shortcuts.xowa.gui.page.selection.save_file_as-1_help_div' class='xohelp_div'>
  1980. <div id='xowa.gui.shortcuts.xowa.gui.page.selection.save_file_as-1_help_msg' class='xohelp_msg'><p>Save selected image to a file (currently available by right-clicking on an image)
  1981. </p>
  1982. </div>
  1983. </div>
  1984. <h2>Browser</h2>
  1985. <div class="xocfg_row flex_div">
  1986. <!-- BTN:help_item -->
  1987. <div class='xocfg_itm_help'>
  1988. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.url.focus-1")' title='view more info'>&nbsp;</span>
  1989. </div>
  1990. <!-- TEXT:key -->
  1991. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.focus-1__name' class='xocfg_itm_name'>Focus URL Bar</div>
  1992. <!-- BTN:undo -->
  1993. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.focus-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  1994. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.url.focus-1")' title="reset to &quot;browser|mod.a+key.d&quot;">&nbsp;</span>
  1995. </div>
  1996. <!-- TEXT:val -->
  1997. <div class='xocfg_itm_data'>
  1998. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.url.focus-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.url.focus-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  1999. <option value="browser" selected="selected">Window</option>
  2000. <option value="browser.url">Url bar</option>
  2001. <option value="browser.search">Search box</option>
  2002. <option value="browser.allpages">Allpages box</option>
  2003. <option value="browser.html">HTML browser</option>
  2004. <option value="browser.find">Find box</option>
  2005. <option value="browser.prog">Status bar</option>
  2006. <option value="browser.info">System Messages box</option>
  2007. </select>
  2008. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.url.focus-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.url.focus-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Alt + D"></input>
  2009. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.url.focus-1", "Focus URL Bar");'>&nbsp;</span>
  2010. </div>
  2011. <!-- HIDDEN:key,ctx -->
  2012. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.url.focus-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.url.focus-1'></input>
  2013. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.url.focus-1__ctx_box' value='app'></input>
  2014. </div>
  2015. <!-- DIV:help -->
  2016. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.focus-1_help_div' class='xohelp_div'>
  2017. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.focus-1_help_msg' class='xohelp_msg'><p>Switch keyboard focus to the url bar
  2018. </p>
  2019. </div>
  2020. </div>
  2021. <div class="xocfg_row flex_div">
  2022. <!-- BTN:help_item -->
  2023. <div class='xocfg_itm_help'>
  2024. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.url.focus-2")' title='view more info'>&nbsp;</span>
  2025. </div>
  2026. <!-- TEXT:key -->
  2027. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.focus-2__name' class='xocfg_itm_name'>Focus URL Bar</div>
  2028. <!-- BTN:undo -->
  2029. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.focus-2__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2030. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.url.focus-2")' title="reset to &quot;browser|mod.c+key.l&quot;">&nbsp;</span>
  2031. </div>
  2032. <!-- TEXT:val -->
  2033. <div class='xocfg_itm_data'>
  2034. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.url.focus-2-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.url.focus-2" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2035. <option value="browser" selected="selected">Window</option>
  2036. <option value="browser.url">Url bar</option>
  2037. <option value="browser.search">Search box</option>
  2038. <option value="browser.allpages">Allpages box</option>
  2039. <option value="browser.html">HTML browser</option>
  2040. <option value="browser.find">Find box</option>
  2041. <option value="browser.prog">Status bar</option>
  2042. <option value="browser.info">System Messages box</option>
  2043. </select>
  2044. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.url.focus-2-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.url.focus-2" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + L"></input>
  2045. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.url.focus-2", "Focus URL Bar");'>&nbsp;</span>
  2046. </div>
  2047. <!-- HIDDEN:key,ctx -->
  2048. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.url.focus-2__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.url.focus-2'></input>
  2049. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.url.focus-2__ctx_box' value='app'></input>
  2050. </div>
  2051. <!-- DIV:help -->
  2052. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.focus-2_help_div' class='xohelp_div'>
  2053. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.focus-2_help_msg' class='xohelp_msg'><p>Switch keyboard focus to the url bar
  2054. </p>
  2055. </div>
  2056. </div>
  2057. <div class="xocfg_row flex_div">
  2058. <!-- BTN:help_item -->
  2059. <div class='xocfg_itm_help'>
  2060. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.url.exec-1")' title='view more info'>&nbsp;</span>
  2061. </div>
  2062. <!-- TEXT:key -->
  2063. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.exec-1__name' class='xocfg_itm_name'>Go to the Address</div>
  2064. <!-- BTN:undo -->
  2065. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.exec-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2066. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.url.exec-1")' title="reset to &quot;browser.url|key.enter&quot;">&nbsp;</span>
  2067. </div>
  2068. <!-- TEXT:val -->
  2069. <div class='xocfg_itm_data'>
  2070. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.url.exec-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.url.exec-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2071. <option value="browser">Window</option>
  2072. <option value="browser.url" selected="selected">Url bar</option>
  2073. <option value="browser.search">Search box</option>
  2074. <option value="browser.allpages">Allpages box</option>
  2075. <option value="browser.html">HTML browser</option>
  2076. <option value="browser.find">Find box</option>
  2077. <option value="browser.prog">Status bar</option>
  2078. <option value="browser.info">System Messages box</option>
  2079. </select>
  2080. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.url.exec-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.url.exec-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Enter"></input>
  2081. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.url.exec-1", "Go to the Address");'>&nbsp;</span>
  2082. </div>
  2083. <!-- HIDDEN:key,ctx -->
  2084. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.url.exec-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.url.exec-1'></input>
  2085. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.url.exec-1__ctx_box' value='app'></input>
  2086. </div>
  2087. <!-- DIV:help -->
  2088. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.exec-1_help_div' class='xohelp_div'>
  2089. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.exec-1_help_msg' class='xohelp_msg'><p>Go to the Address in the Location Bar
  2090. </p>
  2091. </div>
  2092. </div>
  2093. <div class="xocfg_row flex_div">
  2094. <!-- BTN:help_item -->
  2095. <div class='xocfg_itm_help'>
  2096. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-1")' title='view more info'>&nbsp;</span>
  2097. </div>
  2098. <!-- TEXT:key -->
  2099. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-1__name' class='xocfg_itm_name'>Paste and Go</div>
  2100. <!-- BTN:undo -->
  2101. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2102. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-1")' title="reset to &quot;browser.url|mouse.middle&quot;">&nbsp;</span>
  2103. </div>
  2104. <!-- TEXT:val -->
  2105. <div class='xocfg_itm_data'>
  2106. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2107. <option value="browser">Window</option>
  2108. <option value="browser.url" selected="selected">Url bar</option>
  2109. <option value="browser.search">Search box</option>
  2110. <option value="browser.allpages">Allpages box</option>
  2111. <option value="browser.html">HTML browser</option>
  2112. <option value="browser.find">Find box</option>
  2113. <option value="browser.prog">Status bar</option>
  2114. <option value="browser.info">System Messages box</option>
  2115. </select>
  2116. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Middle Click"></input>
  2117. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-1", "Paste and Go");'>&nbsp;</span>
  2118. </div>
  2119. <!-- HIDDEN:key,ctx -->
  2120. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-1'></input>
  2121. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-1__ctx_box' value='app'></input>
  2122. </div>
  2123. <!-- DIV:help -->
  2124. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-1_help_div' class='xohelp_div'>
  2125. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-1_help_msg' class='xohelp_msg'><p>Paste the current clipboard text into the address bar and go
  2126. </p>
  2127. </div>
  2128. </div>
  2129. <div class="xocfg_row flex_div">
  2130. <!-- BTN:help_item -->
  2131. <div class='xocfg_itm_help'>
  2132. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-2")' title='view more info'>&nbsp;</span>
  2133. </div>
  2134. <!-- TEXT:key -->
  2135. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-2__name' class='xocfg_itm_name'>Paste and Go</div>
  2136. <!-- BTN:undo -->
  2137. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-2__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2138. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-2")' title="reset to &quot;browser.url|mod.a+key.enter&quot;">&nbsp;</span>
  2139. </div>
  2140. <!-- TEXT:val -->
  2141. <div class='xocfg_itm_data'>
  2142. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-2-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-2" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2143. <option value="browser">Window</option>
  2144. <option value="browser.url" selected="selected">Url bar</option>
  2145. <option value="browser.search">Search box</option>
  2146. <option value="browser.allpages">Allpages box</option>
  2147. <option value="browser.html">HTML browser</option>
  2148. <option value="browser.find">Find box</option>
  2149. <option value="browser.prog">Status bar</option>
  2150. <option value="browser.info">System Messages box</option>
  2151. </select>
  2152. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-2-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-2" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Alt + Enter"></input>
  2153. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-2", "Paste and Go");'>&nbsp;</span>
  2154. </div>
  2155. <!-- HIDDEN:key,ctx -->
  2156. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-2__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-2'></input>
  2157. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-2__ctx_box' value='app'></input>
  2158. </div>
  2159. <!-- DIV:help -->
  2160. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-2_help_div' class='xohelp_div'>
  2161. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.exec_by_paste-2_help_msg' class='xohelp_msg'><p>Paste the current clipboard text into the address bar and go
  2162. </p>
  2163. </div>
  2164. </div>
  2165. <div class="xocfg_row flex_div">
  2166. <!-- BTN:help_item -->
  2167. <div class='xocfg_itm_help'>
  2168. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.url.exec_new_tab_by_paste-1")' title='view more info'>&nbsp;</span>
  2169. </div>
  2170. <!-- TEXT:key -->
  2171. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.exec_new_tab_by_paste-1__name' class='xocfg_itm_name'>Paste and Show In New Tab</div>
  2172. <!-- BTN:undo -->
  2173. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.exec_new_tab_by_paste-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2174. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.url.exec_new_tab_by_paste-1")' title="reset to &quot;browser.url|mod.c+key.enter&quot;">&nbsp;</span>
  2175. </div>
  2176. <!-- TEXT:val -->
  2177. <div class='xocfg_itm_data'>
  2178. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.url.exec_new_tab_by_paste-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.url.exec_new_tab_by_paste-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2179. <option value="browser">Window</option>
  2180. <option value="browser.url" selected="selected">Url bar</option>
  2181. <option value="browser.search">Search box</option>
  2182. <option value="browser.allpages">Allpages box</option>
  2183. <option value="browser.html">HTML browser</option>
  2184. <option value="browser.find">Find box</option>
  2185. <option value="browser.prog">Status bar</option>
  2186. <option value="browser.info">System Messages box</option>
  2187. </select>
  2188. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.url.exec_new_tab_by_paste-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.url.exec_new_tab_by_paste-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + Enter"></input>
  2189. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.url.exec_new_tab_by_paste-1", "Paste and Show In New Tab");'>&nbsp;</span>
  2190. </div>
  2191. <!-- HIDDEN:key,ctx -->
  2192. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.url.exec_new_tab_by_paste-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.url.exec_new_tab_by_paste-1'></input>
  2193. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.url.exec_new_tab_by_paste-1__ctx_box' value='app'></input>
  2194. </div>
  2195. <!-- DIV:help -->
  2196. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.exec_new_tab_by_paste-1_help_div' class='xohelp_div'>
  2197. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.exec_new_tab_by_paste-1_help_msg' class='xohelp_msg'><p>Paste the current clipboard text into the address bar and show in new tab
  2198. </p>
  2199. </div>
  2200. </div>
  2201. <div class="xocfg_row flex_div">
  2202. <!-- BTN:help_item -->
  2203. <div class='xocfg_itm_help'>
  2204. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.url.restore-1")' title='view more info'>&nbsp;</span>
  2205. </div>
  2206. <!-- TEXT:key -->
  2207. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.restore-1__name' class='xocfg_itm_name'>Restore page url</div>
  2208. <!-- BTN:undo -->
  2209. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.restore-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2210. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.url.restore-1")' title="reset to &quot;browser.url|key.escape&quot;">&nbsp;</span>
  2211. </div>
  2212. <!-- TEXT:val -->
  2213. <div class='xocfg_itm_data'>
  2214. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.url.restore-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.url.restore-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2215. <option value="browser">Window</option>
  2216. <option value="browser.url" selected="selected">Url bar</option>
  2217. <option value="browser.search">Search box</option>
  2218. <option value="browser.allpages">Allpages box</option>
  2219. <option value="browser.html">HTML browser</option>
  2220. <option value="browser.find">Find box</option>
  2221. <option value="browser.prog">Status bar</option>
  2222. <option value="browser.info">System Messages box</option>
  2223. </select>
  2224. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.url.restore-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.url.restore-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Escape"></input>
  2225. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.url.restore-1", "Restore page url");'>&nbsp;</span>
  2226. </div>
  2227. <!-- HIDDEN:key,ctx -->
  2228. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.url.restore-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.url.restore-1'></input>
  2229. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.url.restore-1__ctx_box' value='app'></input>
  2230. </div>
  2231. <!-- DIV:help -->
  2232. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.restore-1_help_div' class='xohelp_div'>
  2233. <div id='xowa.gui.shortcuts.xowa.gui.browser.url.restore-1_help_msg' class='xohelp_msg'><p>Restore original url for page to the address box
  2234. </p>
  2235. </div>
  2236. </div>
  2237. <div class="xocfg_row flex_div">
  2238. <!-- BTN:help_item -->
  2239. <div class='xocfg_itm_help'>
  2240. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.search.focus-1")' title='view more info'>&nbsp;</span>
  2241. </div>
  2242. <!-- TEXT:key -->
  2243. <div id='xowa.gui.shortcuts.xowa.gui.browser.search.focus-1__name' class='xocfg_itm_name'>Focus Search Box</div>
  2244. <!-- BTN:undo -->
  2245. <div id='xowa.gui.shortcuts.xowa.gui.browser.search.focus-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2246. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.search.focus-1")' title="reset to &quot;browser|mod.ca+key.s&quot;">&nbsp;</span>
  2247. </div>
  2248. <!-- TEXT:val -->
  2249. <div class='xocfg_itm_data'>
  2250. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.search.focus-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.search.focus-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2251. <option value="browser" selected="selected">Window</option>
  2252. <option value="browser.url">Url bar</option>
  2253. <option value="browser.search">Search box</option>
  2254. <option value="browser.allpages">Allpages box</option>
  2255. <option value="browser.html">HTML browser</option>
  2256. <option value="browser.find">Find box</option>
  2257. <option value="browser.prog">Status bar</option>
  2258. <option value="browser.info">System Messages box</option>
  2259. </select>
  2260. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.search.focus-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.search.focus-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + Alt + S"></input>
  2261. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.search.focus-1", "Focus Search Box");'>&nbsp;</span>
  2262. </div>
  2263. <!-- HIDDEN:key,ctx -->
  2264. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.search.focus-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.search.focus-1'></input>
  2265. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.search.focus-1__ctx_box' value='app'></input>
  2266. </div>
  2267. <!-- DIV:help -->
  2268. <div id='xowa.gui.shortcuts.xowa.gui.browser.search.focus-1_help_div' class='xohelp_div'>
  2269. <div id='xowa.gui.shortcuts.xowa.gui.browser.search.focus-1_help_msg' class='xohelp_msg'><p>Switch keyboard focus to the search box
  2270. </p>
  2271. </div>
  2272. </div>
  2273. <div class="xocfg_row flex_div">
  2274. <!-- BTN:help_item -->
  2275. <div class='xocfg_itm_help'>
  2276. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.search.exec-1")' title='view more info'>&nbsp;</span>
  2277. </div>
  2278. <!-- TEXT:key -->
  2279. <div id='xowa.gui.shortcuts.xowa.gui.browser.search.exec-1__name' class='xocfg_itm_name'>Search</div>
  2280. <!-- BTN:undo -->
  2281. <div id='xowa.gui.shortcuts.xowa.gui.browser.search.exec-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2282. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.search.exec-1")' title="reset to &quot;browser.search|key.enter&quot;">&nbsp;</span>
  2283. </div>
  2284. <!-- TEXT:val -->
  2285. <div class='xocfg_itm_data'>
  2286. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.search.exec-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.search.exec-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2287. <option value="browser">Window</option>
  2288. <option value="browser.url">Url bar</option>
  2289. <option value="browser.search" selected="selected">Search box</option>
  2290. <option value="browser.allpages">Allpages box</option>
  2291. <option value="browser.html">HTML browser</option>
  2292. <option value="browser.find">Find box</option>
  2293. <option value="browser.prog">Status bar</option>
  2294. <option value="browser.info">System Messages box</option>
  2295. </select>
  2296. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.search.exec-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.search.exec-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Enter"></input>
  2297. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.search.exec-1", "Search");'>&nbsp;</span>
  2298. </div>
  2299. <!-- HIDDEN:key,ctx -->
  2300. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.search.exec-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.search.exec-1'></input>
  2301. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.search.exec-1__ctx_box' value='app'></input>
  2302. </div>
  2303. <!-- DIV:help -->
  2304. <div id='xowa.gui.shortcuts.xowa.gui.browser.search.exec-1_help_div' class='xohelp_div'>
  2305. <div id='xowa.gui.shortcuts.xowa.gui.browser.search.exec-1_help_msg' class='xohelp_msg'><p>Search for pages using the text in the search box
  2306. </p>
  2307. </div>
  2308. </div>
  2309. <div class="xocfg_row flex_div">
  2310. <!-- BTN:help_item -->
  2311. <div class='xocfg_itm_help'>
  2312. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.allpages.focus-1")' title='view more info'>&nbsp;</span>
  2313. </div>
  2314. <!-- TEXT:key -->
  2315. <div id='xowa.gui.shortcuts.xowa.gui.browser.allpages.focus-1__name' class='xocfg_itm_name'>Focus AllPages Box</div>
  2316. <!-- BTN:undo -->
  2317. <div id='xowa.gui.shortcuts.xowa.gui.browser.allpages.focus-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2318. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.allpages.focus-1")' title="reset to &quot;browser|mod.ca+key.a&quot;">&nbsp;</span>
  2319. </div>
  2320. <!-- TEXT:val -->
  2321. <div class='xocfg_itm_data'>
  2322. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.allpages.focus-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.allpages.focus-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2323. <option value="browser" selected="selected">Window</option>
  2324. <option value="browser.url">Url bar</option>
  2325. <option value="browser.search">Search box</option>
  2326. <option value="browser.allpages">Allpages box</option>
  2327. <option value="browser.html">HTML browser</option>
  2328. <option value="browser.find">Find box</option>
  2329. <option value="browser.prog">Status bar</option>
  2330. <option value="browser.info">System Messages box</option>
  2331. </select>
  2332. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.allpages.focus-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.allpages.focus-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + Alt + A"></input>
  2333. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.allpages.focus-1", "Focus AllPages Box");'>&nbsp;</span>
  2334. </div>
  2335. <!-- HIDDEN:key,ctx -->
  2336. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.allpages.focus-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.allpages.focus-1'></input>
  2337. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.allpages.focus-1__ctx_box' value='app'></input>
  2338. </div>
  2339. <!-- DIV:help -->
  2340. <div id='xowa.gui.shortcuts.xowa.gui.browser.allpages.focus-1_help_div' class='xohelp_div'>
  2341. <div id='xowa.gui.shortcuts.xowa.gui.browser.allpages.focus-1_help_msg' class='xohelp_msg'><p>Switch keyboard focus to the allpages box
  2342. </p>
  2343. </div>
  2344. </div>
  2345. <div class="xocfg_row flex_div">
  2346. <!-- BTN:help_item -->
  2347. <div class='xocfg_itm_help'>
  2348. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.allpages.exec-1")' title='view more info'>&nbsp;</span>
  2349. </div>
  2350. <!-- TEXT:key -->
  2351. <div id='xowa.gui.shortcuts.xowa.gui.browser.allpages.exec-1__name' class='xocfg_itm_name'>List all pages</div>
  2352. <!-- BTN:undo -->
  2353. <div id='xowa.gui.shortcuts.xowa.gui.browser.allpages.exec-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2354. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.allpages.exec-1")' title="reset to &quot;browser.allpages|key.enter&quot;">&nbsp;</span>
  2355. </div>
  2356. <!-- TEXT:val -->
  2357. <div class='xocfg_itm_data'>
  2358. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.allpages.exec-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.allpages.exec-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2359. <option value="browser">Window</option>
  2360. <option value="browser.url">Url bar</option>
  2361. <option value="browser.search">Search box</option>
  2362. <option value="browser.allpages" selected="selected">Allpages box</option>
  2363. <option value="browser.html">HTML browser</option>
  2364. <option value="browser.find">Find box</option>
  2365. <option value="browser.prog">Status bar</option>
  2366. <option value="browser.info">System Messages box</option>
  2367. </select>
  2368. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.allpages.exec-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.allpages.exec-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Enter"></input>
  2369. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.allpages.exec-1", "List all pages");'>&nbsp;</span>
  2370. </div>
  2371. <!-- HIDDEN:key,ctx -->
  2372. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.allpages.exec-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.allpages.exec-1'></input>
  2373. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.allpages.exec-1__ctx_box' value='app'></input>
  2374. </div>
  2375. <!-- DIV:help -->
  2376. <div id='xowa.gui.shortcuts.xowa.gui.browser.allpages.exec-1_help_div' class='xohelp_div'>
  2377. <div id='xowa.gui.shortcuts.xowa.gui.browser.allpages.exec-1_help_msg' class='xohelp_msg'><p>Search for pages using the text in the allpages box
  2378. </p>
  2379. </div>
  2380. </div>
  2381. <div class="xocfg_row flex_div">
  2382. <!-- BTN:help_item -->
  2383. <div class='xocfg_itm_help'>
  2384. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.html.focus-1")' title='view more info'>&nbsp;</span>
  2385. </div>
  2386. <!-- TEXT:key -->
  2387. <div id='xowa.gui.shortcuts.xowa.gui.browser.html.focus-1__name' class='xocfg_itm_name'>Focus HTML Browser</div>
  2388. <!-- BTN:undo -->
  2389. <div id='xowa.gui.shortcuts.xowa.gui.browser.html.focus-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2390. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.html.focus-1")' title="reset to &quot;browser.url|mod.c+key.m&quot;">&nbsp;</span>
  2391. </div>
  2392. <!-- TEXT:val -->
  2393. <div class='xocfg_itm_data'>
  2394. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.html.focus-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.html.focus-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2395. <option value="browser">Window</option>
  2396. <option value="browser.url" selected="selected">Url bar</option>
  2397. <option value="browser.search">Search box</option>
  2398. <option value="browser.allpages">Allpages box</option>
  2399. <option value="browser.html">HTML browser</option>
  2400. <option value="browser.find">Find box</option>
  2401. <option value="browser.prog">Status bar</option>
  2402. <option value="browser.info">System Messages box</option>
  2403. </select>
  2404. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.html.focus-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.html.focus-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + M"></input>
  2405. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.html.focus-1", "Focus HTML Browser");'>&nbsp;</span>
  2406. </div>
  2407. <!-- HIDDEN:key,ctx -->
  2408. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.html.focus-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.html.focus-1'></input>
  2409. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.html.focus-1__ctx_box' value='app'></input>
  2410. </div>
  2411. <!-- DIV:help -->
  2412. <div id='xowa.gui.shortcuts.xowa.gui.browser.html.focus-1_help_div' class='xohelp_div'>
  2413. <div id='xowa.gui.shortcuts.xowa.gui.browser.html.focus-1_help_msg' class='xohelp_msg'><p>Switch keyboard focus to the HTML box
  2414. </p>
  2415. </div>
  2416. </div>
  2417. <div class="xocfg_row flex_div">
  2418. <!-- BTN:help_item -->
  2419. <div class='xocfg_itm_help'>
  2420. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.html.focus-2")' title='view more info'>&nbsp;</span>
  2421. </div>
  2422. <!-- TEXT:key -->
  2423. <div id='xowa.gui.shortcuts.xowa.gui.browser.html.focus-2__name' class='xocfg_itm_name'>Focus HTML Browser</div>
  2424. <!-- BTN:undo -->
  2425. <div id='xowa.gui.shortcuts.xowa.gui.browser.html.focus-2__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2426. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.html.focus-2")' title="reset to &quot;browser.search|mod.c+key.m&quot;">&nbsp;</span>
  2427. </div>
  2428. <!-- TEXT:val -->
  2429. <div class='xocfg_itm_data'>
  2430. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.html.focus-2-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.html.focus-2" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2431. <option value="browser">Window</option>
  2432. <option value="browser.url">Url bar</option>
  2433. <option value="browser.search" selected="selected">Search box</option>
  2434. <option value="browser.allpages">Allpages box</option>
  2435. <option value="browser.html">HTML browser</option>
  2436. <option value="browser.find">Find box</option>
  2437. <option value="browser.prog">Status bar</option>
  2438. <option value="browser.info">System Messages box</option>
  2439. </select>
  2440. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.html.focus-2-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.html.focus-2" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + M"></input>
  2441. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.html.focus-2", "Focus HTML Browser");'>&nbsp;</span>
  2442. </div>
  2443. <!-- HIDDEN:key,ctx -->
  2444. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.html.focus-2__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.html.focus-2'></input>
  2445. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.html.focus-2__ctx_box' value='app'></input>
  2446. </div>
  2447. <!-- DIV:help -->
  2448. <div id='xowa.gui.shortcuts.xowa.gui.browser.html.focus-2_help_div' class='xohelp_div'>
  2449. <div id='xowa.gui.shortcuts.xowa.gui.browser.html.focus-2_help_msg' class='xohelp_msg'><p>Switch keyboard focus to the HTML box
  2450. </p>
  2451. </div>
  2452. </div>
  2453. <div class="xocfg_row flex_div">
  2454. <!-- BTN:help_item -->
  2455. <div class='xocfg_itm_help'>
  2456. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.html.focus-3")' title='view more info'>&nbsp;</span>
  2457. </div>
  2458. <!-- TEXT:key -->
  2459. <div id='xowa.gui.shortcuts.xowa.gui.browser.html.focus-3__name' class='xocfg_itm_name'>Focus HTML Browser</div>
  2460. <!-- BTN:undo -->
  2461. <div id='xowa.gui.shortcuts.xowa.gui.browser.html.focus-3__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2462. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.html.focus-3")' title="reset to &quot;browser.prog|mod.c+key.m&quot;">&nbsp;</span>
  2463. </div>
  2464. <!-- TEXT:val -->
  2465. <div class='xocfg_itm_data'>
  2466. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.html.focus-3-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.html.focus-3" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2467. <option value="browser">Window</option>
  2468. <option value="browser.url">Url bar</option>
  2469. <option value="browser.search">Search box</option>
  2470. <option value="browser.allpages">Allpages box</option>
  2471. <option value="browser.html">HTML browser</option>
  2472. <option value="browser.find">Find box</option>
  2473. <option value="browser.prog" selected="selected">Status bar</option>
  2474. <option value="browser.info">System Messages box</option>
  2475. </select>
  2476. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.html.focus-3-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.html.focus-3" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + M"></input>
  2477. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.html.focus-3", "Focus HTML Browser");'>&nbsp;</span>
  2478. </div>
  2479. <!-- HIDDEN:key,ctx -->
  2480. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.html.focus-3__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.html.focus-3'></input>
  2481. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.html.focus-3__ctx_box' value='app'></input>
  2482. </div>
  2483. <!-- DIV:help -->
  2484. <div id='xowa.gui.shortcuts.xowa.gui.browser.html.focus-3_help_div' class='xohelp_div'>
  2485. <div id='xowa.gui.shortcuts.xowa.gui.browser.html.focus-3_help_msg' class='xohelp_msg'><p>Switch keyboard focus to the HTML box
  2486. </p>
  2487. </div>
  2488. </div>
  2489. <div class="xocfg_row flex_div">
  2490. <!-- BTN:help_item -->
  2491. <div class='xocfg_itm_help'>
  2492. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.html.focus-4")' title='view more info'>&nbsp;</span>
  2493. </div>
  2494. <!-- TEXT:key -->
  2495. <div id='xowa.gui.shortcuts.xowa.gui.browser.html.focus-4__name' class='xocfg_itm_name'>Focus HTML Browser</div>
  2496. <!-- BTN:undo -->
  2497. <div id='xowa.gui.shortcuts.xowa.gui.browser.html.focus-4__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2498. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.html.focus-4")' title="reset to &quot;browser.find|mod.c+key.m&quot;">&nbsp;</span>
  2499. </div>
  2500. <!-- TEXT:val -->
  2501. <div class='xocfg_itm_data'>
  2502. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.html.focus-4-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.html.focus-4" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2503. <option value="browser">Window</option>
  2504. <option value="browser.url">Url bar</option>
  2505. <option value="browser.search">Search box</option>
  2506. <option value="browser.allpages">Allpages box</option>
  2507. <option value="browser.html">HTML browser</option>
  2508. <option value="browser.find" selected="selected">Find box</option>
  2509. <option value="browser.prog">Status bar</option>
  2510. <option value="browser.info">System Messages box</option>
  2511. </select>
  2512. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.html.focus-4-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.html.focus-4" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + M"></input>
  2513. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.html.focus-4", "Focus HTML Browser");'>&nbsp;</span>
  2514. </div>
  2515. <!-- HIDDEN:key,ctx -->
  2516. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.html.focus-4__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.html.focus-4'></input>
  2517. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.html.focus-4__ctx_box' value='app'></input>
  2518. </div>
  2519. <!-- DIV:help -->
  2520. <div id='xowa.gui.shortcuts.xowa.gui.browser.html.focus-4_help_div' class='xohelp_div'>
  2521. <div id='xowa.gui.shortcuts.xowa.gui.browser.html.focus-4_help_msg' class='xohelp_msg'><p>Switch keyboard focus to the HTML box
  2522. </p>
  2523. </div>
  2524. </div>
  2525. <div class="xocfg_row flex_div">
  2526. <!-- BTN:help_item -->
  2527. <div class='xocfg_itm_help'>
  2528. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.html.selection_focus_toggle-1")' title='view more info'>&nbsp;</span>
  2529. </div>
  2530. <!-- TEXT:key -->
  2531. <div id='xowa.gui.shortcuts.xowa.gui.browser.html.selection_focus_toggle-1__name' class='xocfg_itm_name'>Focus or unfocus selection's anchor</div>
  2532. <!-- BTN:undo -->
  2533. <div id='xowa.gui.shortcuts.xowa.gui.browser.html.selection_focus_toggle-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2534. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.html.selection_focus_toggle-1")' title="reset to &quot;browser|mod.c+key.g,mod.c+key.g&quot;">&nbsp;</span>
  2535. </div>
  2536. <!-- TEXT:val -->
  2537. <div class='xocfg_itm_data'>
  2538. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.html.selection_focus_toggle-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.html.selection_focus_toggle-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2539. <option value="browser" selected="selected">Window</option>
  2540. <option value="browser.url">Url bar</option>
  2541. <option value="browser.search">Search box</option>
  2542. <option value="browser.allpages">Allpages box</option>
  2543. <option value="browser.html">HTML browser</option>
  2544. <option value="browser.find">Find box</option>
  2545. <option value="browser.prog">Status bar</option>
  2546. <option value="browser.info">System Messages box</option>
  2547. </select>
  2548. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.html.selection_focus_toggle-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.html.selection_focus_toggle-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + G, Ctrl + G"></input>
  2549. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.html.selection_focus_toggle-1", "Focus or unfocus selection's anchor");'>&nbsp;</span>
  2550. </div>
  2551. <!-- HIDDEN:key,ctx -->
  2552. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.html.selection_focus_toggle-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.html.selection_focus_toggle-1'></input>
  2553. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.html.selection_focus_toggle-1__ctx_box' value='app'></input>
  2554. </div>
  2555. <!-- DIV:help -->
  2556. <div id='xowa.gui.shortcuts.xowa.gui.browser.html.selection_focus_toggle-1_help_div' class='xohelp_div'>
  2557. <div id='xowa.gui.shortcuts.xowa.gui.browser.html.selection_focus_toggle-1_help_msg' class='xohelp_msg'><p>Focus or unfocus the anchor that spans the current selection.
  2558. </p>
  2559. <p>This command is meant to be used for keyboard navigation. Try the following steps:
  2560. </p>
  2561. <ul>
  2562. <li> Press Ctrl+F
  2563. </li>
  2564. <li> Type unique letters for a link (try r i b)
  2565. </li>
  2566. <li> Press Ctrl+G
  2567. </li>
  2568. <li> Press Ctrl+G: the link underneath the highlighted letters will now be selected
  2569. </li>
  2570. </ul>
  2571. <p>You can now do the following:
  2572. </p>
  2573. <ul>
  2574. <li> Press enter and the link will open in the current tab
  2575. </li>
  2576. <li> If Popups is configured to show on focus, a popup will show
  2577. </li>
  2578. <li> Use a &quot;right-click-mouse&quot; keystroke (for example, AutoHotKey on Windows)
  2579. </li>
  2580. </ul>
  2581. </div>
  2582. </div>
  2583. <div class="xocfg_row flex_div">
  2584. <!-- BTN:help_item -->
  2585. <div class='xocfg_itm_help'>
  2586. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.find.show-1")' title='view more info'>&nbsp;</span>
  2587. </div>
  2588. <!-- TEXT:key -->
  2589. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.show-1__name' class='xocfg_itm_name'>Find</div>
  2590. <!-- BTN:undo -->
  2591. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.show-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2592. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.find.show-1")' title="reset to &quot;browser|mod.c+key.f&quot;">&nbsp;</span>
  2593. </div>
  2594. <!-- TEXT:val -->
  2595. <div class='xocfg_itm_data'>
  2596. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.find.show-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.find.show-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2597. <option value="browser" selected="selected">Window</option>
  2598. <option value="browser.url">Url bar</option>
  2599. <option value="browser.search">Search box</option>
  2600. <option value="browser.allpages">Allpages box</option>
  2601. <option value="browser.html">HTML browser</option>
  2602. <option value="browser.find">Find box</option>
  2603. <option value="browser.prog">Status bar</option>
  2604. <option value="browser.info">System Messages box</option>
  2605. </select>
  2606. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.find.show-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.find.show-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + F"></input>
  2607. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.find.show-1", "Find");'>&nbsp;</span>
  2608. </div>
  2609. <!-- HIDDEN:key,ctx -->
  2610. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.find.show-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.find.show-1'></input>
  2611. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.find.show-1__ctx_box' value='app'></input>
  2612. </div>
  2613. <!-- DIV:help -->
  2614. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.show-1_help_div' class='xohelp_div'>
  2615. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.show-1_help_msg' class='xohelp_msg'><p>Show the find box
  2616. </p>
  2617. </div>
  2618. </div>
  2619. <div class="xocfg_row flex_div">
  2620. <!-- BTN:help_item -->
  2621. <div class='xocfg_itm_help'>
  2622. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.find.show_by_paste-1")' title='view more info'>&nbsp;</span>
  2623. </div>
  2624. <!-- TEXT:key -->
  2625. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.show_by_paste-1__name' class='xocfg_itm_name'>Find</div>
  2626. <!-- BTN:undo -->
  2627. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.show_by_paste-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2628. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.find.show_by_paste-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  2629. </div>
  2630. <!-- TEXT:val -->
  2631. <div class='xocfg_itm_data'>
  2632. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.find.show_by_paste-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.find.show_by_paste-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2633. <option value="browser" selected="selected">Window</option>
  2634. <option value="browser.url">Url bar</option>
  2635. <option value="browser.search">Search box</option>
  2636. <option value="browser.allpages">Allpages box</option>
  2637. <option value="browser.html">HTML browser</option>
  2638. <option value="browser.find">Find box</option>
  2639. <option value="browser.prog">Status bar</option>
  2640. <option value="browser.info">System Messages box</option>
  2641. </select>
  2642. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.find.show_by_paste-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.find.show_by_paste-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  2643. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.find.show_by_paste-1", "Find");'>&nbsp;</span>
  2644. </div>
  2645. <!-- HIDDEN:key,ctx -->
  2646. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.find.show_by_paste-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.find.show_by_paste-1'></input>
  2647. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.find.show_by_paste-1__ctx_box' value='app'></input>
  2648. </div>
  2649. <!-- DIV:help -->
  2650. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.show_by_paste-1_help_div' class='xohelp_div'>
  2651. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.show_by_paste-1_help_msg' class='xohelp_msg'><p>Show the find box and paste current clipboard text
  2652. </p>
  2653. </div>
  2654. </div>
  2655. <div class="xocfg_row flex_div">
  2656. <!-- BTN:help_item -->
  2657. <div class='xocfg_itm_help'>
  2658. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.find.hide-1")' title='view more info'>&nbsp;</span>
  2659. </div>
  2660. <!-- TEXT:key -->
  2661. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.hide-1__name' class='xocfg_itm_name'>Hide</div>
  2662. <!-- BTN:undo -->
  2663. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.hide-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2664. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.find.hide-1")' title="reset to &quot;browser.find|key.escape&quot;">&nbsp;</span>
  2665. </div>
  2666. <!-- TEXT:val -->
  2667. <div class='xocfg_itm_data'>
  2668. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.find.hide-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.find.hide-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2669. <option value="browser">Window</option>
  2670. <option value="browser.url">Url bar</option>
  2671. <option value="browser.search">Search box</option>
  2672. <option value="browser.allpages">Allpages box</option>
  2673. <option value="browser.html">HTML browser</option>
  2674. <option value="browser.find" selected="selected">Find box</option>
  2675. <option value="browser.prog">Status bar</option>
  2676. <option value="browser.info">System Messages box</option>
  2677. </select>
  2678. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.find.hide-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.find.hide-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Escape"></input>
  2679. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.find.hide-1", "Hide");'>&nbsp;</span>
  2680. </div>
  2681. <!-- HIDDEN:key,ctx -->
  2682. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.find.hide-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.find.hide-1'></input>
  2683. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.find.hide-1__ctx_box' value='app'></input>
  2684. </div>
  2685. <!-- DIV:help -->
  2686. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.hide-1_help_div' class='xohelp_div'>
  2687. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.hide-1_help_msg' class='xohelp_msg'><p>Hide the find box
  2688. </p>
  2689. </div>
  2690. </div>
  2691. <div class="xocfg_row flex_div">
  2692. <!-- BTN:help_item -->
  2693. <div class='xocfg_itm_help'>
  2694. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.find.exec-1")' title='view more info'>&nbsp;</span>
  2695. </div>
  2696. <!-- TEXT:key -->
  2697. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.exec-1__name' class='xocfg_itm_name'>Find</div>
  2698. <!-- BTN:undo -->
  2699. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.exec-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2700. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.find.exec-1")' title="reset to &quot;browser.find|key.enter&quot;">&nbsp;</span>
  2701. </div>
  2702. <!-- TEXT:val -->
  2703. <div class='xocfg_itm_data'>
  2704. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.find.exec-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.find.exec-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2705. <option value="browser">Window</option>
  2706. <option value="browser.url">Url bar</option>
  2707. <option value="browser.search">Search box</option>
  2708. <option value="browser.allpages">Allpages box</option>
  2709. <option value="browser.html">HTML browser</option>
  2710. <option value="browser.find" selected="selected">Find box</option>
  2711. <option value="browser.prog">Status bar</option>
  2712. <option value="browser.info">System Messages box</option>
  2713. </select>
  2714. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.find.exec-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.find.exec-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Enter"></input>
  2715. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.find.exec-1", "Find");'>&nbsp;</span>
  2716. </div>
  2717. <!-- HIDDEN:key,ctx -->
  2718. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.find.exec-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.find.exec-1'></input>
  2719. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.find.exec-1__ctx_box' value='app'></input>
  2720. </div>
  2721. <!-- DIV:help -->
  2722. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.exec-1_help_div' class='xohelp_div'>
  2723. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.exec-1_help_msg' class='xohelp_msg'><p>Find text on the page using the text in the find box
  2724. </p>
  2725. </div>
  2726. </div>
  2727. <div class="xocfg_row flex_div">
  2728. <!-- BTN:help_item -->
  2729. <div class='xocfg_itm_help'>
  2730. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.find.find_fwd-1")' title='view more info'>&nbsp;</span>
  2731. </div>
  2732. <!-- TEXT:key -->
  2733. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.find_fwd-1__name' class='xocfg_itm_name'>Find Next</div>
  2734. <!-- BTN:undo -->
  2735. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.find_fwd-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2736. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.find.find_fwd-1")' title="reset to &quot;browser.find|mod.a+key.n&quot;">&nbsp;</span>
  2737. </div>
  2738. <!-- TEXT:val -->
  2739. <div class='xocfg_itm_data'>
  2740. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.find.find_fwd-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.find.find_fwd-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2741. <option value="browser">Window</option>
  2742. <option value="browser.url">Url bar</option>
  2743. <option value="browser.search">Search box</option>
  2744. <option value="browser.allpages">Allpages box</option>
  2745. <option value="browser.html">HTML browser</option>
  2746. <option value="browser.find" selected="selected">Find box</option>
  2747. <option value="browser.prog">Status bar</option>
  2748. <option value="browser.info">System Messages box</option>
  2749. </select>
  2750. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.find.find_fwd-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.find.find_fwd-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Alt + N"></input>
  2751. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.find.find_fwd-1", "Find Next");'>&nbsp;</span>
  2752. </div>
  2753. <!-- HIDDEN:key,ctx -->
  2754. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.find.find_fwd-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.find.find_fwd-1'></input>
  2755. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.find.find_fwd-1__ctx_box' value='app'></input>
  2756. </div>
  2757. <!-- DIV:help -->
  2758. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.find_fwd-1_help_div' class='xohelp_div'>
  2759. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.find_fwd-1_help_msg' class='xohelp_msg'><p>Find the next occurrence. Also switch default find direction to forward.
  2760. </p>
  2761. </div>
  2762. </div>
  2763. <div class="xocfg_row flex_div">
  2764. <!-- BTN:help_item -->
  2765. <div class='xocfg_itm_help'>
  2766. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.find.find_bwd-1")' title='view more info'>&nbsp;</span>
  2767. </div>
  2768. <!-- TEXT:key -->
  2769. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.find_bwd-1__name' class='xocfg_itm_name'>Find Previous</div>
  2770. <!-- BTN:undo -->
  2771. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.find_bwd-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2772. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.find.find_bwd-1")' title="reset to &quot;browser.find|mod.a+key.p&quot;">&nbsp;</span>
  2773. </div>
  2774. <!-- TEXT:val -->
  2775. <div class='xocfg_itm_data'>
  2776. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.find.find_bwd-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.find.find_bwd-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2777. <option value="browser">Window</option>
  2778. <option value="browser.url">Url bar</option>
  2779. <option value="browser.search">Search box</option>
  2780. <option value="browser.allpages">Allpages box</option>
  2781. <option value="browser.html">HTML browser</option>
  2782. <option value="browser.find" selected="selected">Find box</option>
  2783. <option value="browser.prog">Status bar</option>
  2784. <option value="browser.info">System Messages box</option>
  2785. </select>
  2786. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.find.find_bwd-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.find.find_bwd-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Alt + P"></input>
  2787. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.find.find_bwd-1", "Find Previous");'>&nbsp;</span>
  2788. </div>
  2789. <!-- HIDDEN:key,ctx -->
  2790. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.find.find_bwd-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.find.find_bwd-1'></input>
  2791. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.find.find_bwd-1__ctx_box' value='app'></input>
  2792. </div>
  2793. <!-- DIV:help -->
  2794. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.find_bwd-1_help_div' class='xohelp_div'>
  2795. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.find_bwd-1_help_msg' class='xohelp_msg'><p>Find the previous occurrence. Also switch default find direction to reverse.
  2796. </p>
  2797. </div>
  2798. </div>
  2799. <div class="xocfg_row flex_div">
  2800. <!-- BTN:help_item -->
  2801. <div class='xocfg_itm_help'>
  2802. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.find.case_toggle-1")' title='view more info'>&nbsp;</span>
  2803. </div>
  2804. <!-- TEXT:key -->
  2805. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.case_toggle-1__name' class='xocfg_itm_name'>Toggle Case Sensitivity</div>
  2806. <!-- BTN:undo -->
  2807. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.case_toggle-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2808. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.find.case_toggle-1")' title="reset to &quot;browser.find|mod.a+key.c&quot;">&nbsp;</span>
  2809. </div>
  2810. <!-- TEXT:val -->
  2811. <div class='xocfg_itm_data'>
  2812. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.find.case_toggle-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.find.case_toggle-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2813. <option value="browser">Window</option>
  2814. <option value="browser.url">Url bar</option>
  2815. <option value="browser.search">Search box</option>
  2816. <option value="browser.allpages">Allpages box</option>
  2817. <option value="browser.html">HTML browser</option>
  2818. <option value="browser.find" selected="selected">Find box</option>
  2819. <option value="browser.prog">Status bar</option>
  2820. <option value="browser.info">System Messages box</option>
  2821. </select>
  2822. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.find.case_toggle-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.find.case_toggle-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Alt + C"></input>
  2823. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.find.case_toggle-1", "Toggle Case Sensitivity");'>&nbsp;</span>
  2824. </div>
  2825. <!-- HIDDEN:key,ctx -->
  2826. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.find.case_toggle-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.find.case_toggle-1'></input>
  2827. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.find.case_toggle-1__ctx_box' value='app'></input>
  2828. </div>
  2829. <!-- DIV:help -->
  2830. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.case_toggle-1_help_div' class='xohelp_div'>
  2831. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.case_toggle-1_help_msg' class='xohelp_msg'><p>Toggle case sensitivity for the search (&quot;Find&quot; vs &quot;find&quot;)
  2832. </p>
  2833. </div>
  2834. </div>
  2835. <div class="xocfg_row flex_div">
  2836. <!-- BTN:help_item -->
  2837. <div class='xocfg_itm_help'>
  2838. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.find.wrap_toggle-1")' title='view more info'>&nbsp;</span>
  2839. </div>
  2840. <!-- TEXT:key -->
  2841. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.wrap_toggle-1__name' class='xocfg_itm_name'>Toggle Wrap Search</div>
  2842. <!-- BTN:undo -->
  2843. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.wrap_toggle-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2844. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.find.wrap_toggle-1")' title="reset to &quot;browser.find|mod.a+key.w&quot;">&nbsp;</span>
  2845. </div>
  2846. <!-- TEXT:val -->
  2847. <div class='xocfg_itm_data'>
  2848. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.find.wrap_toggle-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.find.wrap_toggle-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2849. <option value="browser">Window</option>
  2850. <option value="browser.url">Url bar</option>
  2851. <option value="browser.search">Search box</option>
  2852. <option value="browser.allpages">Allpages box</option>
  2853. <option value="browser.html">HTML browser</option>
  2854. <option value="browser.find" selected="selected">Find box</option>
  2855. <option value="browser.prog">Status bar</option>
  2856. <option value="browser.info">System Messages box</option>
  2857. </select>
  2858. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.find.wrap_toggle-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.find.wrap_toggle-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Alt + W"></input>
  2859. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.find.wrap_toggle-1", "Toggle Wrap Search");'>&nbsp;</span>
  2860. </div>
  2861. <!-- HIDDEN:key,ctx -->
  2862. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.find.wrap_toggle-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.find.wrap_toggle-1'></input>
  2863. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.find.wrap_toggle-1__ctx_box' value='app'></input>
  2864. </div>
  2865. <!-- DIV:help -->
  2866. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.wrap_toggle-1_help_div' class='xohelp_div'>
  2867. <div id='xowa.gui.shortcuts.xowa.gui.browser.find.wrap_toggle-1_help_msg' class='xohelp_msg'><p>Toggle search wrap settings (whether a search stops at the end of the page, or wraps back to the beginning)
  2868. </p>
  2869. </div>
  2870. </div>
  2871. <div class="xocfg_row flex_div">
  2872. <!-- BTN:help_item -->
  2873. <div class='xocfg_itm_help'>
  2874. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.prog.focus-1")' title='view more info'>&nbsp;</span>
  2875. </div>
  2876. <!-- TEXT:key -->
  2877. <div id='xowa.gui.shortcuts.xowa.gui.browser.prog.focus-1__name' class='xocfg_itm_name'>Focus Status Box</div>
  2878. <!-- BTN:undo -->
  2879. <div id='xowa.gui.shortcuts.xowa.gui.browser.prog.focus-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2880. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.prog.focus-1")' title="reset to &quot;browser|mod.ca+key.p&quot;">&nbsp;</span>
  2881. </div>
  2882. <!-- TEXT:val -->
  2883. <div class='xocfg_itm_data'>
  2884. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.prog.focus-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.prog.focus-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2885. <option value="browser" selected="selected">Window</option>
  2886. <option value="browser.url">Url bar</option>
  2887. <option value="browser.search">Search box</option>
  2888. <option value="browser.allpages">Allpages box</option>
  2889. <option value="browser.html">HTML browser</option>
  2890. <option value="browser.find">Find box</option>
  2891. <option value="browser.prog">Status bar</option>
  2892. <option value="browser.info">System Messages box</option>
  2893. </select>
  2894. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.prog.focus-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.prog.focus-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + Alt + P"></input>
  2895. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.prog.focus-1", "Focus Status Box");'>&nbsp;</span>
  2896. </div>
  2897. <!-- HIDDEN:key,ctx -->
  2898. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.prog.focus-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.prog.focus-1'></input>
  2899. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.prog.focus-1__ctx_box' value='app'></input>
  2900. </div>
  2901. <!-- DIV:help -->
  2902. <div id='xowa.gui.shortcuts.xowa.gui.browser.prog.focus-1_help_div' class='xohelp_div'>
  2903. <div id='xowa.gui.shortcuts.xowa.gui.browser.prog.focus-1_help_msg' class='xohelp_msg'><p>Switch keyboard focus to the status box
  2904. </p>
  2905. </div>
  2906. </div>
  2907. <div class="xocfg_row flex_div">
  2908. <!-- BTN:help_item -->
  2909. <div class='xocfg_itm_help'>
  2910. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-1")' title='view more info'>&nbsp;</span>
  2911. </div>
  2912. <!-- TEXT:key -->
  2913. <div id='xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-1__name' class='xocfg_itm_name'>Show Progress Messages</div>
  2914. <!-- BTN:undo -->
  2915. <div id='xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2916. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-1")' title="reset to &quot;browser.prog|mouse.middle&quot;">&nbsp;</span>
  2917. </div>
  2918. <!-- TEXT:val -->
  2919. <div class='xocfg_itm_data'>
  2920. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2921. <option value="browser">Window</option>
  2922. <option value="browser.url">Url bar</option>
  2923. <option value="browser.search">Search box</option>
  2924. <option value="browser.allpages">Allpages box</option>
  2925. <option value="browser.html">HTML browser</option>
  2926. <option value="browser.find">Find box</option>
  2927. <option value="browser.prog" selected="selected">Status bar</option>
  2928. <option value="browser.info">System Messages box</option>
  2929. </select>
  2930. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Middle Click"></input>
  2931. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-1", "Show Progress Messages");'>&nbsp;</span>
  2932. </div>
  2933. <!-- HIDDEN:key,ctx -->
  2934. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-1'></input>
  2935. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-1__ctx_box' value='app'></input>
  2936. </div>
  2937. <!-- DIV:help -->
  2938. <div id='xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-1_help_div' class='xohelp_div'>
  2939. <div id='xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-1_help_msg' class='xohelp_msg'><p>Pop up window with most recent progress messages
  2940. </p>
  2941. </div>
  2942. </div>
  2943. <div class="xocfg_row flex_div">
  2944. <!-- BTN:help_item -->
  2945. <div class='xocfg_itm_help'>
  2946. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-2")' title='view more info'>&nbsp;</span>
  2947. </div>
  2948. <!-- TEXT:key -->
  2949. <div id='xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-2__name' class='xocfg_itm_name'>Show Progress Messages</div>
  2950. <!-- BTN:undo -->
  2951. <div id='xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-2__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2952. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-2")' title="reset to &quot;browser.prog|mod.cs+key.p&quot;">&nbsp;</span>
  2953. </div>
  2954. <!-- TEXT:val -->
  2955. <div class='xocfg_itm_data'>
  2956. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-2-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-2" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2957. <option value="browser">Window</option>
  2958. <option value="browser.url">Url bar</option>
  2959. <option value="browser.search">Search box</option>
  2960. <option value="browser.allpages">Allpages box</option>
  2961. <option value="browser.html">HTML browser</option>
  2962. <option value="browser.find">Find box</option>
  2963. <option value="browser.prog" selected="selected">Status bar</option>
  2964. <option value="browser.info">System Messages box</option>
  2965. </select>
  2966. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-2-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-2" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + Shift + P"></input>
  2967. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-2", "Show Progress Messages");'>&nbsp;</span>
  2968. </div>
  2969. <!-- HIDDEN:key,ctx -->
  2970. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-2__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-2'></input>
  2971. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-2__ctx_box' value='app'></input>
  2972. </div>
  2973. <!-- DIV:help -->
  2974. <div id='xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-2_help_div' class='xohelp_div'>
  2975. <div id='xowa.gui.shortcuts.xowa.gui.browser.prog_log.show-2_help_msg' class='xohelp_msg'><p>Pop up window with most recent progress messages
  2976. </p>
  2977. </div>
  2978. </div>
  2979. <div class="xocfg_row flex_div">
  2980. <!-- BTN:help_item -->
  2981. <div class='xocfg_itm_help'>
  2982. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.info.focus-1")' title='view more info'>&nbsp;</span>
  2983. </div>
  2984. <!-- TEXT:key -->
  2985. <div id='xowa.gui.shortcuts.xowa.gui.browser.info.focus-1__name' class='xocfg_itm_name'>Focus Messages Box</div>
  2986. <!-- BTN:undo -->
  2987. <div id='xowa.gui.shortcuts.xowa.gui.browser.info.focus-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  2988. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.info.focus-1")' title="reset to &quot;browser|mod.ca+key.i&quot;">&nbsp;</span>
  2989. </div>
  2990. <!-- TEXT:val -->
  2991. <div class='xocfg_itm_data'>
  2992. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.info.focus-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.info.focus-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  2993. <option value="browser" selected="selected">Window</option>
  2994. <option value="browser.url">Url bar</option>
  2995. <option value="browser.search">Search box</option>
  2996. <option value="browser.allpages">Allpages box</option>
  2997. <option value="browser.html">HTML browser</option>
  2998. <option value="browser.find">Find box</option>
  2999. <option value="browser.prog">Status bar</option>
  3000. <option value="browser.info">System Messages box</option>
  3001. </select>
  3002. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.info.focus-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.info.focus-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + Alt + I"></input>
  3003. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.info.focus-1", "Focus Messages Box");'>&nbsp;</span>
  3004. </div>
  3005. <!-- HIDDEN:key,ctx -->
  3006. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.info.focus-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.info.focus-1'></input>
  3007. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.info.focus-1__ctx_box' value='app'></input>
  3008. </div>
  3009. <!-- DIV:help -->
  3010. <div id='xowa.gui.shortcuts.xowa.gui.browser.info.focus-1_help_div' class='xohelp_div'>
  3011. <div id='xowa.gui.shortcuts.xowa.gui.browser.info.focus-1_help_msg' class='xohelp_msg'><p>Switch keyboard focus to the messages box
  3012. </p>
  3013. </div>
  3014. </div>
  3015. <div class="xocfg_row flex_div">
  3016. <!-- BTN:help_item -->
  3017. <div class='xocfg_itm_help'>
  3018. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.info.clear-1")' title='view more info'>&nbsp;</span>
  3019. </div>
  3020. <!-- TEXT:key -->
  3021. <div id='xowa.gui.shortcuts.xowa.gui.browser.info.clear-1__name' class='xocfg_itm_name'>Clear Messages</div>
  3022. <!-- BTN:undo -->
  3023. <div id='xowa.gui.shortcuts.xowa.gui.browser.info.clear-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3024. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.info.clear-1")' title="reset to &quot;browser|mod.ca+key.c&quot;">&nbsp;</span>
  3025. </div>
  3026. <!-- TEXT:val -->
  3027. <div class='xocfg_itm_data'>
  3028. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.info.clear-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.info.clear-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3029. <option value="browser" selected="selected">Window</option>
  3030. <option value="browser.url">Url bar</option>
  3031. <option value="browser.search">Search box</option>
  3032. <option value="browser.allpages">Allpages box</option>
  3033. <option value="browser.html">HTML browser</option>
  3034. <option value="browser.find">Find box</option>
  3035. <option value="browser.prog">Status bar</option>
  3036. <option value="browser.info">System Messages box</option>
  3037. </select>
  3038. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.info.clear-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.info.clear-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + Alt + C"></input>
  3039. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.info.clear-1", "Clear Messages");'>&nbsp;</span>
  3040. </div>
  3041. <!-- HIDDEN:key,ctx -->
  3042. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.info.clear-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.info.clear-1'></input>
  3043. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.info.clear-1__ctx_box' value='app'></input>
  3044. </div>
  3045. <!-- DIV:help -->
  3046. <div id='xowa.gui.shortcuts.xowa.gui.browser.info.clear-1_help_div' class='xohelp_div'>
  3047. <div id='xowa.gui.shortcuts.xowa.gui.browser.info.clear-1_help_msg' class='xohelp_msg'><p>Clear messages box
  3048. </p>
  3049. </div>
  3050. </div>
  3051. <h2>Tabs</h2>
  3052. <div class="xocfg_row flex_div">
  3053. <!-- BTN:help_item -->
  3054. <div class='xocfg_itm_help'>
  3055. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.tabs.new_dflt__at_dflt__focus_y-1")' title='view more info'>&nbsp;</span>
  3056. </div>
  3057. <!-- TEXT:key -->
  3058. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_dflt__at_dflt__focus_y-1__name' class='xocfg_itm_name'>New Tab</div>
  3059. <!-- BTN:undo -->
  3060. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_dflt__at_dflt__focus_y-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3061. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.tabs.new_dflt__at_dflt__focus_y-1")' title="reset to &quot;browser|mod.c+key.t&quot;">&nbsp;</span>
  3062. </div>
  3063. <!-- TEXT:val -->
  3064. <div class='xocfg_itm_data'>
  3065. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.new_dflt__at_dflt__focus_y-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.new_dflt__at_dflt__focus_y-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3066. <option value="browser" selected="selected">Window</option>
  3067. <option value="browser.url">Url bar</option>
  3068. <option value="browser.search">Search box</option>
  3069. <option value="browser.allpages">Allpages box</option>
  3070. <option value="browser.html">HTML browser</option>
  3071. <option value="browser.find">Find box</option>
  3072. <option value="browser.prog">Status bar</option>
  3073. <option value="browser.info">System Messages box</option>
  3074. </select>
  3075. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.new_dflt__at_dflt__focus_y-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.new_dflt__at_dflt__focus_y-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + T"></input>
  3076. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.tabs.new_dflt__at_dflt__focus_y-1", "New Tab");'>&nbsp;</span>
  3077. </div>
  3078. <!-- HIDDEN:key,ctx -->
  3079. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_dflt__at_dflt__focus_y-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_dflt__at_dflt__focus_y-1'></input>
  3080. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_dflt__at_dflt__focus_y-1__ctx_box' value='app'></input>
  3081. </div>
  3082. <!-- DIV:help -->
  3083. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_dflt__at_dflt__focus_y-1_help_div' class='xohelp_div'>
  3084. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_dflt__at_dflt__focus_y-1_help_msg' class='xohelp_msg'><p>Open a new tab
  3085. </p>
  3086. </div>
  3087. </div>
  3088. <div class="xocfg_row flex_div">
  3089. <!-- BTN:help_item -->
  3090. <div class='xocfg_itm_help'>
  3091. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_n-1")' title='view more info'>&nbsp;</span>
  3092. </div>
  3093. <!-- TEXT:key -->
  3094. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_n-1__name' class='xocfg_itm_name'>Open Link in New Tab</div>
  3095. <!-- BTN:undo -->
  3096. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_n-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3097. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_n-1")' title="reset to &quot;browser.html|mouse.middle&quot;">&nbsp;</span>
  3098. </div>
  3099. <!-- TEXT:val -->
  3100. <div class='xocfg_itm_data'>
  3101. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_n-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_n-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3102. <option value="browser">Window</option>
  3103. <option value="browser.url">Url bar</option>
  3104. <option value="browser.search">Search box</option>
  3105. <option value="browser.allpages">Allpages box</option>
  3106. <option value="browser.html" selected="selected">HTML browser</option>
  3107. <option value="browser.find">Find box</option>
  3108. <option value="browser.prog">Status bar</option>
  3109. <option value="browser.info">System Messages box</option>
  3110. </select>
  3111. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_n-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_n-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Middle Click"></input>
  3112. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_n-1", "Open Link in New Tab");'>&nbsp;</span>
  3113. </div>
  3114. <!-- HIDDEN:key,ctx -->
  3115. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_n-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_n-1'></input>
  3116. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_n-1__ctx_box' value='app'></input>
  3117. </div>
  3118. <!-- DIV:help -->
  3119. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_n-1_help_div' class='xohelp_div'>
  3120. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_n-1_help_msg' class='xohelp_msg'><p>Open the selected link in a new tab
  3121. </p>
  3122. </div>
  3123. </div>
  3124. <div class="xocfg_row flex_div">
  3125. <!-- BTN:help_item -->
  3126. <div class='xocfg_itm_help'>
  3127. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_y-1")' title='view more info'>&nbsp;</span>
  3128. </div>
  3129. <!-- TEXT:key -->
  3130. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_y-1__name' class='xocfg_itm_name'>Open Link in New Tab and Follow</div>
  3131. <!-- BTN:undo -->
  3132. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_y-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3133. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_y-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  3134. </div>
  3135. <!-- TEXT:val -->
  3136. <div class='xocfg_itm_data'>
  3137. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_y-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_y-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3138. <option value="browser" selected="selected">Window</option>
  3139. <option value="browser.url">Url bar</option>
  3140. <option value="browser.search">Search box</option>
  3141. <option value="browser.allpages">Allpages box</option>
  3142. <option value="browser.html">HTML browser</option>
  3143. <option value="browser.find">Find box</option>
  3144. <option value="browser.prog">Status bar</option>
  3145. <option value="browser.info">System Messages box</option>
  3146. </select>
  3147. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_y-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_y-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  3148. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_y-1", "Open Link in New Tab and Follow");'>&nbsp;</span>
  3149. </div>
  3150. <!-- HIDDEN:key,ctx -->
  3151. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_y-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_y-1'></input>
  3152. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_y-1__ctx_box' value='app'></input>
  3153. </div>
  3154. <!-- DIV:help -->
  3155. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_y-1_help_div' class='xohelp_div'>
  3156. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_link__at_dflt__focus_y-1_help_msg' class='xohelp_msg'><p>Open the selected link in a new tab and switch to it.
  3157. </p>
  3158. </div>
  3159. </div>
  3160. <div class="xocfg_row flex_div">
  3161. <!-- BTN:help_item -->
  3162. <div class='xocfg_itm_help'>
  3163. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.tabs.new_href__at_dflt__focus_y-1")' title='view more info'>&nbsp;</span>
  3164. </div>
  3165. <!-- TEXT:key -->
  3166. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_href__at_dflt__focus_y-1__name' class='xocfg_itm_name'>Open Link in New Tab and Follow</div>
  3167. <!-- BTN:undo -->
  3168. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_href__at_dflt__focus_y-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3169. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.tabs.new_href__at_dflt__focus_y-1")' title="reset to &quot;browser|mod.c+key.g,mod.c+key.f&quot;">&nbsp;</span>
  3170. </div>
  3171. <!-- TEXT:val -->
  3172. <div class='xocfg_itm_data'>
  3173. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.new_href__at_dflt__focus_y-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.new_href__at_dflt__focus_y-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3174. <option value="browser" selected="selected">Window</option>
  3175. <option value="browser.url">Url bar</option>
  3176. <option value="browser.search">Search box</option>
  3177. <option value="browser.allpages">Allpages box</option>
  3178. <option value="browser.html">HTML browser</option>
  3179. <option value="browser.find">Find box</option>
  3180. <option value="browser.prog">Status bar</option>
  3181. <option value="browser.info">System Messages box</option>
  3182. </select>
  3183. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.new_href__at_dflt__focus_y-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.new_href__at_dflt__focus_y-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + G, Ctrl + F"></input>
  3184. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.tabs.new_href__at_dflt__focus_y-1", "Open Link in New Tab and Follow");'>&nbsp;</span>
  3185. </div>
  3186. <!-- HIDDEN:key,ctx -->
  3187. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_href__at_dflt__focus_y-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_href__at_dflt__focus_y-1'></input>
  3188. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_href__at_dflt__focus_y-1__ctx_box' value='app'></input>
  3189. </div>
  3190. <!-- DIV:help -->
  3191. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_href__at_dflt__focus_y-1_help_div' class='xohelp_div'>
  3192. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.new_href__at_dflt__focus_y-1_help_msg' class='xohelp_msg'><p>This command is meant to be used for keyboard navigation. Try the following steps:
  3193. </p>
  3194. <ul>
  3195. <li> Press Ctrl+F
  3196. </li>
  3197. <li> Type unique letters for a link (try r i b)
  3198. </li>
  3199. <li> Press Ctrl+G
  3200. </li>
  3201. <li> Press Ctrl+F: the link underneath the highlighted letters will now open
  3202. </li>
  3203. </ul>
  3204. </div>
  3205. </div>
  3206. <div class="xocfg_row flex_div">
  3207. <!-- BTN:help_item -->
  3208. <div class='xocfg_itm_help'>
  3209. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-1")' title='view more info'>&nbsp;</span>
  3210. </div>
  3211. <!-- TEXT:key -->
  3212. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-1__name' class='xocfg_itm_name'>Select Previous Tab</div>
  3213. <!-- BTN:undo -->
  3214. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3215. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-1")' title="reset to &quot;browser|mod.cs+key.tab&quot;">&nbsp;</span>
  3216. </div>
  3217. <!-- TEXT:val -->
  3218. <div class='xocfg_itm_data'>
  3219. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3220. <option value="browser" selected="selected">Window</option>
  3221. <option value="browser.url">Url bar</option>
  3222. <option value="browser.search">Search box</option>
  3223. <option value="browser.allpages">Allpages box</option>
  3224. <option value="browser.html">HTML browser</option>
  3225. <option value="browser.find">Find box</option>
  3226. <option value="browser.prog">Status bar</option>
  3227. <option value="browser.info">System Messages box</option>
  3228. </select>
  3229. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + Shift + Tab"></input>
  3230. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-1", "Select Previous Tab");'>&nbsp;</span>
  3231. </div>
  3232. <!-- HIDDEN:key,ctx -->
  3233. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-1'></input>
  3234. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-1__ctx_box' value='app'></input>
  3235. </div>
  3236. <!-- DIV:help -->
  3237. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-1_help_div' class='xohelp_div'>
  3238. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-1_help_msg' class='xohelp_msg'><p>Select previous tab as current tab
  3239. </p>
  3240. </div>
  3241. </div>
  3242. <div class="xocfg_row flex_div">
  3243. <!-- BTN:help_item -->
  3244. <div class='xocfg_itm_help'>
  3245. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-2")' title='view more info'>&nbsp;</span>
  3246. </div>
  3247. <!-- TEXT:key -->
  3248. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-2__name' class='xocfg_itm_name'>Select Previous Tab</div>
  3249. <!-- BTN:undo -->
  3250. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-2__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3251. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-2")' title="reset to &quot;browser|mod.c+key.pageUp&quot;">&nbsp;</span>
  3252. </div>
  3253. <!-- TEXT:val -->
  3254. <div class='xocfg_itm_data'>
  3255. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-2-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-2" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3256. <option value="browser" selected="selected">Window</option>
  3257. <option value="browser.url">Url bar</option>
  3258. <option value="browser.search">Search box</option>
  3259. <option value="browser.allpages">Allpages box</option>
  3260. <option value="browser.html">HTML browser</option>
  3261. <option value="browser.find">Find box</option>
  3262. <option value="browser.prog">Status bar</option>
  3263. <option value="browser.info">System Messages box</option>
  3264. </select>
  3265. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-2-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-2" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + PageUp"></input>
  3266. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-2", "Select Previous Tab");'>&nbsp;</span>
  3267. </div>
  3268. <!-- HIDDEN:key,ctx -->
  3269. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-2__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-2'></input>
  3270. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-2__ctx_box' value='app'></input>
  3271. </div>
  3272. <!-- DIV:help -->
  3273. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-2_help_div' class='xohelp_div'>
  3274. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_bwd-2_help_msg' class='xohelp_msg'><p>Select previous tab as current tab
  3275. </p>
  3276. </div>
  3277. </div>
  3278. <div class="xocfg_row flex_div">
  3279. <!-- BTN:help_item -->
  3280. <div class='xocfg_itm_help'>
  3281. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-1")' title='view more info'>&nbsp;</span>
  3282. </div>
  3283. <!-- TEXT:key -->
  3284. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-1__name' class='xocfg_itm_name'>Select Next Tab</div>
  3285. <!-- BTN:undo -->
  3286. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3287. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-1")' title="reset to &quot;browser|mod.c+key.tab&quot;">&nbsp;</span>
  3288. </div>
  3289. <!-- TEXT:val -->
  3290. <div class='xocfg_itm_data'>
  3291. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3292. <option value="browser" selected="selected">Window</option>
  3293. <option value="browser.url">Url bar</option>
  3294. <option value="browser.search">Search box</option>
  3295. <option value="browser.allpages">Allpages box</option>
  3296. <option value="browser.html">HTML browser</option>
  3297. <option value="browser.find">Find box</option>
  3298. <option value="browser.prog">Status bar</option>
  3299. <option value="browser.info">System Messages box</option>
  3300. </select>
  3301. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + Tab"></input>
  3302. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-1", "Select Next Tab");'>&nbsp;</span>
  3303. </div>
  3304. <!-- HIDDEN:key,ctx -->
  3305. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-1'></input>
  3306. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-1__ctx_box' value='app'></input>
  3307. </div>
  3308. <!-- DIV:help -->
  3309. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-1_help_div' class='xohelp_div'>
  3310. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-1_help_msg' class='xohelp_msg'><p>Select next tab as current tab
  3311. </p>
  3312. </div>
  3313. </div>
  3314. <div class="xocfg_row flex_div">
  3315. <!-- BTN:help_item -->
  3316. <div class='xocfg_itm_help'>
  3317. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-2")' title='view more info'>&nbsp;</span>
  3318. </div>
  3319. <!-- TEXT:key -->
  3320. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-2__name' class='xocfg_itm_name'>Select Next Tab</div>
  3321. <!-- BTN:undo -->
  3322. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-2__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3323. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-2")' title="reset to &quot;browser|mod.c+key.pageDown&quot;">&nbsp;</span>
  3324. </div>
  3325. <!-- TEXT:val -->
  3326. <div class='xocfg_itm_data'>
  3327. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-2-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-2" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3328. <option value="browser" selected="selected">Window</option>
  3329. <option value="browser.url">Url bar</option>
  3330. <option value="browser.search">Search box</option>
  3331. <option value="browser.allpages">Allpages box</option>
  3332. <option value="browser.html">HTML browser</option>
  3333. <option value="browser.find">Find box</option>
  3334. <option value="browser.prog">Status bar</option>
  3335. <option value="browser.info">System Messages box</option>
  3336. </select>
  3337. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-2-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-2" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + PageDown"></input>
  3338. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-2", "Select Next Tab");'>&nbsp;</span>
  3339. </div>
  3340. <!-- HIDDEN:key,ctx -->
  3341. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-2__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-2'></input>
  3342. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-2__ctx_box' value='app'></input>
  3343. </div>
  3344. <!-- DIV:help -->
  3345. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-2_help_div' class='xohelp_div'>
  3346. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_fwd-2_help_msg' class='xohelp_msg'><p>Select next tab as current tab
  3347. </p>
  3348. </div>
  3349. </div>
  3350. <div class="xocfg_row flex_div">
  3351. <!-- BTN:help_item -->
  3352. <div class='xocfg_itm_help'>
  3353. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_1-1")' title='view more info'>&nbsp;</span>
  3354. </div>
  3355. <!-- TEXT:key -->
  3356. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_1-1__name' class='xocfg_itm_name'>Select Tab #1</div>
  3357. <!-- BTN:undo -->
  3358. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_1-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3359. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_1-1")' title="reset to &quot;browser|mod.c+key.d1&quot;">&nbsp;</span>
  3360. </div>
  3361. <!-- TEXT:val -->
  3362. <div class='xocfg_itm_data'>
  3363. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_1-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_1-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3364. <option value="browser" selected="selected">Window</option>
  3365. <option value="browser.url">Url bar</option>
  3366. <option value="browser.search">Search box</option>
  3367. <option value="browser.allpages">Allpages box</option>
  3368. <option value="browser.html">HTML browser</option>
  3369. <option value="browser.find">Find box</option>
  3370. <option value="browser.prog">Status bar</option>
  3371. <option value="browser.info">System Messages box</option>
  3372. </select>
  3373. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_1-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_1-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + 1"></input>
  3374. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_1-1", "Select Tab #1");'>&nbsp;</span>
  3375. </div>
  3376. <!-- HIDDEN:key,ctx -->
  3377. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_1-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_1-1'></input>
  3378. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_1-1__ctx_box' value='app'></input>
  3379. </div>
  3380. <!-- DIV:help -->
  3381. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_1-1_help_div' class='xohelp_div'>
  3382. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_1-1_help_msg' class='xohelp_msg'><p>Select tab #1 as current tab
  3383. </p>
  3384. </div>
  3385. </div>
  3386. <div class="xocfg_row flex_div">
  3387. <!-- BTN:help_item -->
  3388. <div class='xocfg_itm_help'>
  3389. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_2-1")' title='view more info'>&nbsp;</span>
  3390. </div>
  3391. <!-- TEXT:key -->
  3392. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_2-1__name' class='xocfg_itm_name'>Select Tab #2</div>
  3393. <!-- BTN:undo -->
  3394. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_2-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3395. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_2-1")' title="reset to &quot;browser|mod.c+key.d2&quot;">&nbsp;</span>
  3396. </div>
  3397. <!-- TEXT:val -->
  3398. <div class='xocfg_itm_data'>
  3399. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_2-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_2-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3400. <option value="browser" selected="selected">Window</option>
  3401. <option value="browser.url">Url bar</option>
  3402. <option value="browser.search">Search box</option>
  3403. <option value="browser.allpages">Allpages box</option>
  3404. <option value="browser.html">HTML browser</option>
  3405. <option value="browser.find">Find box</option>
  3406. <option value="browser.prog">Status bar</option>
  3407. <option value="browser.info">System Messages box</option>
  3408. </select>
  3409. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_2-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_2-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + 2"></input>
  3410. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_2-1", "Select Tab #2");'>&nbsp;</span>
  3411. </div>
  3412. <!-- HIDDEN:key,ctx -->
  3413. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_2-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_2-1'></input>
  3414. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_2-1__ctx_box' value='app'></input>
  3415. </div>
  3416. <!-- DIV:help -->
  3417. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_2-1_help_div' class='xohelp_div'>
  3418. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_2-1_help_msg' class='xohelp_msg'><p>Select tab #2 as current tab
  3419. </p>
  3420. </div>
  3421. </div>
  3422. <div class="xocfg_row flex_div">
  3423. <!-- BTN:help_item -->
  3424. <div class='xocfg_itm_help'>
  3425. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_3-1")' title='view more info'>&nbsp;</span>
  3426. </div>
  3427. <!-- TEXT:key -->
  3428. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_3-1__name' class='xocfg_itm_name'>Select Tab #3</div>
  3429. <!-- BTN:undo -->
  3430. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_3-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3431. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_3-1")' title="reset to &quot;browser|mod.c+key.d3&quot;">&nbsp;</span>
  3432. </div>
  3433. <!-- TEXT:val -->
  3434. <div class='xocfg_itm_data'>
  3435. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_3-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_3-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3436. <option value="browser" selected="selected">Window</option>
  3437. <option value="browser.url">Url bar</option>
  3438. <option value="browser.search">Search box</option>
  3439. <option value="browser.allpages">Allpages box</option>
  3440. <option value="browser.html">HTML browser</option>
  3441. <option value="browser.find">Find box</option>
  3442. <option value="browser.prog">Status bar</option>
  3443. <option value="browser.info">System Messages box</option>
  3444. </select>
  3445. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_3-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_3-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + 3"></input>
  3446. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_3-1", "Select Tab #3");'>&nbsp;</span>
  3447. </div>
  3448. <!-- HIDDEN:key,ctx -->
  3449. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_3-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_3-1'></input>
  3450. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_3-1__ctx_box' value='app'></input>
  3451. </div>
  3452. <!-- DIV:help -->
  3453. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_3-1_help_div' class='xohelp_div'>
  3454. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_3-1_help_msg' class='xohelp_msg'><p>Select tab #3 as current tab
  3455. </p>
  3456. </div>
  3457. </div>
  3458. <div class="xocfg_row flex_div">
  3459. <!-- BTN:help_item -->
  3460. <div class='xocfg_itm_help'>
  3461. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_4-1")' title='view more info'>&nbsp;</span>
  3462. </div>
  3463. <!-- TEXT:key -->
  3464. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_4-1__name' class='xocfg_itm_name'>Select Tab #4</div>
  3465. <!-- BTN:undo -->
  3466. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_4-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3467. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_4-1")' title="reset to &quot;browser|mod.c+key.d4&quot;">&nbsp;</span>
  3468. </div>
  3469. <!-- TEXT:val -->
  3470. <div class='xocfg_itm_data'>
  3471. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_4-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_4-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3472. <option value="browser" selected="selected">Window</option>
  3473. <option value="browser.url">Url bar</option>
  3474. <option value="browser.search">Search box</option>
  3475. <option value="browser.allpages">Allpages box</option>
  3476. <option value="browser.html">HTML browser</option>
  3477. <option value="browser.find">Find box</option>
  3478. <option value="browser.prog">Status bar</option>
  3479. <option value="browser.info">System Messages box</option>
  3480. </select>
  3481. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_4-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_4-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + 4"></input>
  3482. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_4-1", "Select Tab #4");'>&nbsp;</span>
  3483. </div>
  3484. <!-- HIDDEN:key,ctx -->
  3485. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_4-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_4-1'></input>
  3486. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_4-1__ctx_box' value='app'></input>
  3487. </div>
  3488. <!-- DIV:help -->
  3489. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_4-1_help_div' class='xohelp_div'>
  3490. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_4-1_help_msg' class='xohelp_msg'><p>Select tab #4 as current tab
  3491. </p>
  3492. </div>
  3493. </div>
  3494. <div class="xocfg_row flex_div">
  3495. <!-- BTN:help_item -->
  3496. <div class='xocfg_itm_help'>
  3497. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_5-1")' title='view more info'>&nbsp;</span>
  3498. </div>
  3499. <!-- TEXT:key -->
  3500. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_5-1__name' class='xocfg_itm_name'>Select Tab #5</div>
  3501. <!-- BTN:undo -->
  3502. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_5-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3503. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_5-1")' title="reset to &quot;browser|mod.c+key.d5&quot;">&nbsp;</span>
  3504. </div>
  3505. <!-- TEXT:val -->
  3506. <div class='xocfg_itm_data'>
  3507. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_5-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_5-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3508. <option value="browser" selected="selected">Window</option>
  3509. <option value="browser.url">Url bar</option>
  3510. <option value="browser.search">Search box</option>
  3511. <option value="browser.allpages">Allpages box</option>
  3512. <option value="browser.html">HTML browser</option>
  3513. <option value="browser.find">Find box</option>
  3514. <option value="browser.prog">Status bar</option>
  3515. <option value="browser.info">System Messages box</option>
  3516. </select>
  3517. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_5-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_5-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + 5"></input>
  3518. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_5-1", "Select Tab #5");'>&nbsp;</span>
  3519. </div>
  3520. <!-- HIDDEN:key,ctx -->
  3521. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_5-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_5-1'></input>
  3522. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_5-1__ctx_box' value='app'></input>
  3523. </div>
  3524. <!-- DIV:help -->
  3525. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_5-1_help_div' class='xohelp_div'>
  3526. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_5-1_help_msg' class='xohelp_msg'><p>Select tab #5 as current tab
  3527. </p>
  3528. </div>
  3529. </div>
  3530. <div class="xocfg_row flex_div">
  3531. <!-- BTN:help_item -->
  3532. <div class='xocfg_itm_help'>
  3533. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_6-1")' title='view more info'>&nbsp;</span>
  3534. </div>
  3535. <!-- TEXT:key -->
  3536. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_6-1__name' class='xocfg_itm_name'>Select Tab #6</div>
  3537. <!-- BTN:undo -->
  3538. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_6-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3539. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_6-1")' title="reset to &quot;browser|mod.c+key.d6&quot;">&nbsp;</span>
  3540. </div>
  3541. <!-- TEXT:val -->
  3542. <div class='xocfg_itm_data'>
  3543. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_6-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_6-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3544. <option value="browser" selected="selected">Window</option>
  3545. <option value="browser.url">Url bar</option>
  3546. <option value="browser.search">Search box</option>
  3547. <option value="browser.allpages">Allpages box</option>
  3548. <option value="browser.html">HTML browser</option>
  3549. <option value="browser.find">Find box</option>
  3550. <option value="browser.prog">Status bar</option>
  3551. <option value="browser.info">System Messages box</option>
  3552. </select>
  3553. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_6-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_6-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + 6"></input>
  3554. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_6-1", "Select Tab #6");'>&nbsp;</span>
  3555. </div>
  3556. <!-- HIDDEN:key,ctx -->
  3557. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_6-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_6-1'></input>
  3558. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_6-1__ctx_box' value='app'></input>
  3559. </div>
  3560. <!-- DIV:help -->
  3561. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_6-1_help_div' class='xohelp_div'>
  3562. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_6-1_help_msg' class='xohelp_msg'><p>Select tab #6 as current tab
  3563. </p>
  3564. </div>
  3565. </div>
  3566. <div class="xocfg_row flex_div">
  3567. <!-- BTN:help_item -->
  3568. <div class='xocfg_itm_help'>
  3569. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_7-1")' title='view more info'>&nbsp;</span>
  3570. </div>
  3571. <!-- TEXT:key -->
  3572. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_7-1__name' class='xocfg_itm_name'>Select Tab #7</div>
  3573. <!-- BTN:undo -->
  3574. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_7-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3575. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_7-1")' title="reset to &quot;browser|mod.c+key.d7&quot;">&nbsp;</span>
  3576. </div>
  3577. <!-- TEXT:val -->
  3578. <div class='xocfg_itm_data'>
  3579. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_7-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_7-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3580. <option value="browser" selected="selected">Window</option>
  3581. <option value="browser.url">Url bar</option>
  3582. <option value="browser.search">Search box</option>
  3583. <option value="browser.allpages">Allpages box</option>
  3584. <option value="browser.html">HTML browser</option>
  3585. <option value="browser.find">Find box</option>
  3586. <option value="browser.prog">Status bar</option>
  3587. <option value="browser.info">System Messages box</option>
  3588. </select>
  3589. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_7-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_7-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + 7"></input>
  3590. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_7-1", "Select Tab #7");'>&nbsp;</span>
  3591. </div>
  3592. <!-- HIDDEN:key,ctx -->
  3593. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_7-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_7-1'></input>
  3594. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_7-1__ctx_box' value='app'></input>
  3595. </div>
  3596. <!-- DIV:help -->
  3597. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_7-1_help_div' class='xohelp_div'>
  3598. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_7-1_help_msg' class='xohelp_msg'><p>Select tab #7 as current tab
  3599. </p>
  3600. </div>
  3601. </div>
  3602. <div class="xocfg_row flex_div">
  3603. <!-- BTN:help_item -->
  3604. <div class='xocfg_itm_help'>
  3605. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_8-1")' title='view more info'>&nbsp;</span>
  3606. </div>
  3607. <!-- TEXT:key -->
  3608. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_8-1__name' class='xocfg_itm_name'>Select Tab #8</div>
  3609. <!-- BTN:undo -->
  3610. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_8-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3611. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_8-1")' title="reset to &quot;browser|mod.c+key.d8&quot;">&nbsp;</span>
  3612. </div>
  3613. <!-- TEXT:val -->
  3614. <div class='xocfg_itm_data'>
  3615. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_8-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_8-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3616. <option value="browser" selected="selected">Window</option>
  3617. <option value="browser.url">Url bar</option>
  3618. <option value="browser.search">Search box</option>
  3619. <option value="browser.allpages">Allpages box</option>
  3620. <option value="browser.html">HTML browser</option>
  3621. <option value="browser.find">Find box</option>
  3622. <option value="browser.prog">Status bar</option>
  3623. <option value="browser.info">System Messages box</option>
  3624. </select>
  3625. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_8-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_8-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + 8"></input>
  3626. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_8-1", "Select Tab #8");'>&nbsp;</span>
  3627. </div>
  3628. <!-- HIDDEN:key,ctx -->
  3629. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_8-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_8-1'></input>
  3630. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_8-1__ctx_box' value='app'></input>
  3631. </div>
  3632. <!-- DIV:help -->
  3633. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_8-1_help_div' class='xohelp_div'>
  3634. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_8-1_help_msg' class='xohelp_msg'><p>Select tab #8 as current tab
  3635. </p>
  3636. </div>
  3637. </div>
  3638. <div class="xocfg_row flex_div">
  3639. <!-- BTN:help_item -->
  3640. <div class='xocfg_itm_help'>
  3641. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_9-1")' title='view more info'>&nbsp;</span>
  3642. </div>
  3643. <!-- TEXT:key -->
  3644. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_9-1__name' class='xocfg_itm_name'>Select Tab #9</div>
  3645. <!-- BTN:undo -->
  3646. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_9-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3647. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_9-1")' title="reset to &quot;browser|mod.c+key.d9&quot;">&nbsp;</span>
  3648. </div>
  3649. <!-- TEXT:val -->
  3650. <div class='xocfg_itm_data'>
  3651. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_9-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_9-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3652. <option value="browser" selected="selected">Window</option>
  3653. <option value="browser.url">Url bar</option>
  3654. <option value="browser.search">Search box</option>
  3655. <option value="browser.allpages">Allpages box</option>
  3656. <option value="browser.html">HTML browser</option>
  3657. <option value="browser.find">Find box</option>
  3658. <option value="browser.prog">Status bar</option>
  3659. <option value="browser.info">System Messages box</option>
  3660. </select>
  3661. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_9-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_9-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + 9"></input>
  3662. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_9-1", "Select Tab #9");'>&nbsp;</span>
  3663. </div>
  3664. <!-- HIDDEN:key,ctx -->
  3665. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_9-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_9-1'></input>
  3666. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_9-1__ctx_box' value='app'></input>
  3667. </div>
  3668. <!-- DIV:help -->
  3669. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_9-1_help_div' class='xohelp_div'>
  3670. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.select_by_idx_9-1_help_msg' class='xohelp_msg'><p>Select tab #9 as current tab
  3671. </p>
  3672. </div>
  3673. </div>
  3674. <div class="xocfg_row flex_div">
  3675. <!-- BTN:help_item -->
  3676. <div class='xocfg_itm_help'>
  3677. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.tabs.move_bwd-1")' title='view more info'>&nbsp;</span>
  3678. </div>
  3679. <!-- TEXT:key -->
  3680. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.move_bwd-1__name' class='xocfg_itm_name'>Move Tab Left</div>
  3681. <!-- BTN:undo -->
  3682. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.move_bwd-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3683. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.tabs.move_bwd-1")' title="reset to &quot;browser|mod.a+key.pageUp&quot;">&nbsp;</span>
  3684. </div>
  3685. <!-- TEXT:val -->
  3686. <div class='xocfg_itm_data'>
  3687. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.move_bwd-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.move_bwd-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3688. <option value="browser" selected="selected">Window</option>
  3689. <option value="browser.url">Url bar</option>
  3690. <option value="browser.search">Search box</option>
  3691. <option value="browser.allpages">Allpages box</option>
  3692. <option value="browser.html">HTML browser</option>
  3693. <option value="browser.find">Find box</option>
  3694. <option value="browser.prog">Status bar</option>
  3695. <option value="browser.info">System Messages box</option>
  3696. </select>
  3697. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.move_bwd-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.move_bwd-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Alt + PageUp"></input>
  3698. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.tabs.move_bwd-1", "Move Tab Left");'>&nbsp;</span>
  3699. </div>
  3700. <!-- HIDDEN:key,ctx -->
  3701. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.move_bwd-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.tabs.move_bwd-1'></input>
  3702. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.move_bwd-1__ctx_box' value='app'></input>
  3703. </div>
  3704. <!-- DIV:help -->
  3705. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.move_bwd-1_help_div' class='xohelp_div'>
  3706. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.move_bwd-1_help_msg' class='xohelp_msg'><p>Move current tab to the left
  3707. </p>
  3708. </div>
  3709. </div>
  3710. <div class="xocfg_row flex_div">
  3711. <!-- BTN:help_item -->
  3712. <div class='xocfg_itm_help'>
  3713. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.tabs.move_fwd-1")' title='view more info'>&nbsp;</span>
  3714. </div>
  3715. <!-- TEXT:key -->
  3716. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.move_fwd-1__name' class='xocfg_itm_name'>Move Tab Right</div>
  3717. <!-- BTN:undo -->
  3718. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.move_fwd-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3719. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.tabs.move_fwd-1")' title="reset to &quot;browser|mod.a+key.pageDown&quot;">&nbsp;</span>
  3720. </div>
  3721. <!-- TEXT:val -->
  3722. <div class='xocfg_itm_data'>
  3723. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.move_fwd-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.move_fwd-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3724. <option value="browser" selected="selected">Window</option>
  3725. <option value="browser.url">Url bar</option>
  3726. <option value="browser.search">Search box</option>
  3727. <option value="browser.allpages">Allpages box</option>
  3728. <option value="browser.html">HTML browser</option>
  3729. <option value="browser.find">Find box</option>
  3730. <option value="browser.prog">Status bar</option>
  3731. <option value="browser.info">System Messages box</option>
  3732. </select>
  3733. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.move_fwd-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.move_fwd-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Alt + PageDown"></input>
  3734. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.tabs.move_fwd-1", "Move Tab Right");'>&nbsp;</span>
  3735. </div>
  3736. <!-- HIDDEN:key,ctx -->
  3737. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.move_fwd-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.tabs.move_fwd-1'></input>
  3738. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.move_fwd-1__ctx_box' value='app'></input>
  3739. </div>
  3740. <!-- DIV:help -->
  3741. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.move_fwd-1_help_div' class='xohelp_div'>
  3742. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.move_fwd-1_help_msg' class='xohelp_msg'><p>Move current tab to the right
  3743. </p>
  3744. </div>
  3745. </div>
  3746. <div class="xocfg_row flex_div">
  3747. <!-- BTN:help_item -->
  3748. <div class='xocfg_itm_help'>
  3749. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.tabs.close_cur-1")' title='view more info'>&nbsp;</span>
  3750. </div>
  3751. <!-- TEXT:key -->
  3752. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_cur-1__name' class='xocfg_itm_name'>Close Tab</div>
  3753. <!-- BTN:undo -->
  3754. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_cur-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3755. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.tabs.close_cur-1")' title="reset to &quot;browser|mod.c+key.w&quot;">&nbsp;</span>
  3756. </div>
  3757. <!-- TEXT:val -->
  3758. <div class='xocfg_itm_data'>
  3759. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.close_cur-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.close_cur-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3760. <option value="browser" selected="selected">Window</option>
  3761. <option value="browser.url">Url bar</option>
  3762. <option value="browser.search">Search box</option>
  3763. <option value="browser.allpages">Allpages box</option>
  3764. <option value="browser.html">HTML browser</option>
  3765. <option value="browser.find">Find box</option>
  3766. <option value="browser.prog">Status bar</option>
  3767. <option value="browser.info">System Messages box</option>
  3768. </select>
  3769. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.close_cur-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.close_cur-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + W"></input>
  3770. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.tabs.close_cur-1", "Close Tab");'>&nbsp;</span>
  3771. </div>
  3772. <!-- HIDDEN:key,ctx -->
  3773. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_cur-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_cur-1'></input>
  3774. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_cur-1__ctx_box' value='app'></input>
  3775. </div>
  3776. <!-- DIV:help -->
  3777. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_cur-1_help_div' class='xohelp_div'>
  3778. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_cur-1_help_msg' class='xohelp_msg'><p>Close current
  3779. </p>
  3780. </div>
  3781. </div>
  3782. <div class="xocfg_row flex_div">
  3783. <!-- BTN:help_item -->
  3784. <div class='xocfg_itm_help'>
  3785. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.tabs.close_others-1")' title='view more info'>&nbsp;</span>
  3786. </div>
  3787. <!-- TEXT:key -->
  3788. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_others-1__name' class='xocfg_itm_name'>Close Other Tabs</div>
  3789. <!-- BTN:undo -->
  3790. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_others-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3791. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.tabs.close_others-1")' title="reset to &quot;browser|mod.cs+key.w,mod.cs+key.w&quot;">&nbsp;</span>
  3792. </div>
  3793. <!-- TEXT:val -->
  3794. <div class='xocfg_itm_data'>
  3795. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.close_others-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.close_others-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3796. <option value="browser" selected="selected">Window</option>
  3797. <option value="browser.url">Url bar</option>
  3798. <option value="browser.search">Search box</option>
  3799. <option value="browser.allpages">Allpages box</option>
  3800. <option value="browser.html">HTML browser</option>
  3801. <option value="browser.find">Find box</option>
  3802. <option value="browser.prog">Status bar</option>
  3803. <option value="browser.info">System Messages box</option>
  3804. </select>
  3805. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.close_others-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.close_others-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + Shift + W, Ctrl + Shift + W"></input>
  3806. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.tabs.close_others-1", "Close Other Tabs");'>&nbsp;</span>
  3807. </div>
  3808. <!-- HIDDEN:key,ctx -->
  3809. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_others-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_others-1'></input>
  3810. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_others-1__ctx_box' value='app'></input>
  3811. </div>
  3812. <!-- DIV:help -->
  3813. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_others-1_help_div' class='xohelp_div'>
  3814. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_others-1_help_msg' class='xohelp_msg'><p>Close all tabs except for the current one
  3815. </p>
  3816. </div>
  3817. </div>
  3818. <div class="xocfg_row flex_div">
  3819. <!-- BTN:help_item -->
  3820. <div class='xocfg_itm_help'>
  3821. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_bgn-1")' title='view more info'>&nbsp;</span>
  3822. </div>
  3823. <!-- TEXT:key -->
  3824. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_bgn-1__name' class='xocfg_itm_name'>Close Tabs to the Left</div>
  3825. <!-- BTN:undo -->
  3826. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_bgn-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3827. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_bgn-1")' title="reset to &quot;browser|mod.cs+key.w,mod.cs+key.left&quot;">&nbsp;</span>
  3828. </div>
  3829. <!-- TEXT:val -->
  3830. <div class='xocfg_itm_data'>
  3831. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_bgn-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_bgn-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3832. <option value="browser" selected="selected">Window</option>
  3833. <option value="browser.url">Url bar</option>
  3834. <option value="browser.search">Search box</option>
  3835. <option value="browser.allpages">Allpages box</option>
  3836. <option value="browser.html">HTML browser</option>
  3837. <option value="browser.find">Find box</option>
  3838. <option value="browser.prog">Status bar</option>
  3839. <option value="browser.info">System Messages box</option>
  3840. </select>
  3841. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_bgn-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_bgn-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + Shift + W, Ctrl + Shift + Left"></input>
  3842. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_bgn-1", "Close Tabs to the Left");'>&nbsp;</span>
  3843. </div>
  3844. <!-- HIDDEN:key,ctx -->
  3845. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_bgn-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_bgn-1'></input>
  3846. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_bgn-1__ctx_box' value='app'></input>
  3847. </div>
  3848. <!-- DIV:help -->
  3849. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_bgn-1_help_div' class='xohelp_div'>
  3850. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_bgn-1_help_msg' class='xohelp_msg'><p>Close all tabs to the left of the current tab
  3851. </p>
  3852. </div>
  3853. </div>
  3854. <div class="xocfg_row flex_div">
  3855. <!-- BTN:help_item -->
  3856. <div class='xocfg_itm_help'>
  3857. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_end-1")' title='view more info'>&nbsp;</span>
  3858. </div>
  3859. <!-- TEXT:key -->
  3860. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_end-1__name' class='xocfg_itm_name'>Close Tabs to the Right</div>
  3861. <!-- BTN:undo -->
  3862. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_end-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3863. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_end-1")' title="reset to &quot;browser|mod.cs+key.w,mod.cs+key.right&quot;">&nbsp;</span>
  3864. </div>
  3865. <!-- TEXT:val -->
  3866. <div class='xocfg_itm_data'>
  3867. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_end-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_end-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3868. <option value="browser" selected="selected">Window</option>
  3869. <option value="browser.url">Url bar</option>
  3870. <option value="browser.search">Search box</option>
  3871. <option value="browser.allpages">Allpages box</option>
  3872. <option value="browser.html">HTML browser</option>
  3873. <option value="browser.find">Find box</option>
  3874. <option value="browser.prog">Status bar</option>
  3875. <option value="browser.info">System Messages box</option>
  3876. </select>
  3877. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_end-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_end-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + Shift + W, Ctrl + Shift + Right"></input>
  3878. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_end-1", "Close Tabs to the Right");'>&nbsp;</span>
  3879. </div>
  3880. <!-- HIDDEN:key,ctx -->
  3881. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_end-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_end-1'></input>
  3882. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_end-1__ctx_box' value='app'></input>
  3883. </div>
  3884. <!-- DIV:help -->
  3885. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_end-1_help_div' class='xohelp_div'>
  3886. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_to_end-1_help_msg' class='xohelp_msg'><p>Close all tabs to the right of the current tab
  3887. </p>
  3888. </div>
  3889. </div>
  3890. <div class="xocfg_row flex_div">
  3891. <!-- BTN:help_item -->
  3892. <div class='xocfg_itm_help'>
  3893. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.tabs.close_undo-1")' title='view more info'>&nbsp;</span>
  3894. </div>
  3895. <!-- TEXT:key -->
  3896. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_undo-1__name' class='xocfg_itm_name'>Undo Close Tab</div>
  3897. <!-- BTN:undo -->
  3898. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_undo-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3899. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.tabs.close_undo-1")' title="reset to &quot;browser|mod.cs+key.t&quot;">&nbsp;</span>
  3900. </div>
  3901. <!-- TEXT:val -->
  3902. <div class='xocfg_itm_data'>
  3903. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.close_undo-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.close_undo-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3904. <option value="browser" selected="selected">Window</option>
  3905. <option value="browser.url">Url bar</option>
  3906. <option value="browser.search">Search box</option>
  3907. <option value="browser.allpages">Allpages box</option>
  3908. <option value="browser.html">HTML browser</option>
  3909. <option value="browser.find">Find box</option>
  3910. <option value="browser.prog">Status bar</option>
  3911. <option value="browser.info">System Messages box</option>
  3912. </select>
  3913. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.close_undo-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.close_undo-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + Shift + T"></input>
  3914. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.tabs.close_undo-1", "Undo Close Tab");'>&nbsp;</span>
  3915. </div>
  3916. <!-- HIDDEN:key,ctx -->
  3917. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_undo-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_undo-1'></input>
  3918. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_undo-1__ctx_box' value='app'></input>
  3919. </div>
  3920. <!-- DIV:help -->
  3921. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_undo-1_help_div' class='xohelp_div'>
  3922. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.close_undo-1_help_msg' class='xohelp_msg'><p>Restore last closed tab
  3923. </p>
  3924. </div>
  3925. </div>
  3926. <div class="xocfg_row flex_div">
  3927. <!-- BTN:help_item -->
  3928. <div class='xocfg_itm_help'>
  3929. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.gui.browser.tabs.pin_toggle-1")' title='view more info'>&nbsp;</span>
  3930. </div>
  3931. <!-- TEXT:key -->
  3932. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.pin_toggle-1__name' class='xocfg_itm_name'>Pin Toggle</div>
  3933. <!-- BTN:undo -->
  3934. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.pin_toggle-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3935. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.gui.browser.tabs.pin_toggle-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  3936. </div>
  3937. <!-- TEXT:val -->
  3938. <div class='xocfg_itm_data'>
  3939. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.pin_toggle-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.pin_toggle-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3940. <option value="browser" selected="selected">Window</option>
  3941. <option value="browser.url">Url bar</option>
  3942. <option value="browser.search">Search box</option>
  3943. <option value="browser.allpages">Allpages box</option>
  3944. <option value="browser.html">HTML browser</option>
  3945. <option value="browser.find">Find box</option>
  3946. <option value="browser.prog">Status bar</option>
  3947. <option value="browser.info">System Messages box</option>
  3948. </select>
  3949. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.gui.browser.tabs.pin_toggle-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.gui.browser.tabs.pin_toggle-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  3950. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.gui.browser.tabs.pin_toggle-1", "Pin Toggle");'>&nbsp;</span>
  3951. </div>
  3952. <!-- HIDDEN:key,ctx -->
  3953. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.pin_toggle-1__key_box' value='xowa.gui.shortcuts.xowa.gui.browser.tabs.pin_toggle-1'></input>
  3954. <input type='hidden' id='xowa.gui.shortcuts.xowa.gui.browser.tabs.pin_toggle-1__ctx_box' value='app'></input>
  3955. </div>
  3956. <!-- DIV:help -->
  3957. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.pin_toggle-1_help_div' class='xohelp_div'>
  3958. <div id='xowa.gui.shortcuts.xowa.gui.browser.tabs.pin_toggle-1_help_msg' class='xohelp_msg'><p>Pin / Unpin current tab
  3959. </p>
  3960. </div>
  3961. </div>
  3962. <h2>HTML</h2>
  3963. <div class="xocfg_row flex_div">
  3964. <!-- BTN:help_item -->
  3965. <div class='xocfg_itm_help'>
  3966. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.html.tidy.toggle-1")' title='view more info'>&nbsp;</span>
  3967. </div>
  3968. <!-- TEXT:key -->
  3969. <div id='xowa.gui.shortcuts.xowa.html.tidy.toggle-1__name' class='xocfg_itm_name'>Toggle HTML Tidy</div>
  3970. <!-- BTN:undo -->
  3971. <div id='xowa.gui.shortcuts.xowa.html.tidy.toggle-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  3972. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.html.tidy.toggle-1")' title="reset to &quot;browser|key.f7&quot;">&nbsp;</span>
  3973. </div>
  3974. <!-- TEXT:val -->
  3975. <div class='xocfg_itm_data'>
  3976. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.html.tidy.toggle-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.html.tidy.toggle-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  3977. <option value="browser" selected="selected">Window</option>
  3978. <option value="browser.url">Url bar</option>
  3979. <option value="browser.search">Search box</option>
  3980. <option value="browser.allpages">Allpages box</option>
  3981. <option value="browser.html">HTML browser</option>
  3982. <option value="browser.find">Find box</option>
  3983. <option value="browser.prog">Status bar</option>
  3984. <option value="browser.info">System Messages box</option>
  3985. </select>
  3986. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.html.tidy.toggle-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.html.tidy.toggle-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="F7"></input>
  3987. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.html.tidy.toggle-1", "Toggle HTML Tidy");'>&nbsp;</span>
  3988. </div>
  3989. <!-- HIDDEN:key,ctx -->
  3990. <input type='hidden' id='xowa.gui.shortcuts.xowa.html.tidy.toggle-1__key_box' value='xowa.gui.shortcuts.xowa.html.tidy.toggle-1'></input>
  3991. <input type='hidden' id='xowa.gui.shortcuts.xowa.html.tidy.toggle-1__ctx_box' value='app'></input>
  3992. </div>
  3993. <!-- DIV:help -->
  3994. <div id='xowa.gui.shortcuts.xowa.html.tidy.toggle-1_help_div' class='xohelp_div'>
  3995. <div id='xowa.gui.shortcuts.xowa.html.tidy.toggle-1_help_msg' class='xohelp_msg'><p>Enable / Disable HTML Tidy
  3996. </p>
  3997. </div>
  3998. </div>
  3999. <h2>Net</h2>
  4000. <div class="xocfg_row flex_div">
  4001. <!-- BTN:help_item -->
  4002. <div class='xocfg_itm_help'>
  4003. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.net.enabled_n_-1")' title='view more info'>&nbsp;</span>
  4004. </div>
  4005. <!-- TEXT:key -->
  4006. <div id='xowa.gui.shortcuts.xowa.net.enabled_n_-1__name' class='xocfg_itm_name'>Offline</div>
  4007. <!-- BTN:undo -->
  4008. <div id='xowa.gui.shortcuts.xowa.net.enabled_n_-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  4009. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.net.enabled_n_-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  4010. </div>
  4011. <!-- TEXT:val -->
  4012. <div class='xocfg_itm_data'>
  4013. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.net.enabled_n_-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.net.enabled_n_-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  4014. <option value="browser" selected="selected">Window</option>
  4015. <option value="browser.url">Url bar</option>
  4016. <option value="browser.search">Search box</option>
  4017. <option value="browser.allpages">Allpages box</option>
  4018. <option value="browser.html">HTML browser</option>
  4019. <option value="browser.find">Find box</option>
  4020. <option value="browser.prog">Status bar</option>
  4021. <option value="browser.info">System Messages box</option>
  4022. </select>
  4023. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.net.enabled_n_-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.net.enabled_n_-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  4024. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.net.enabled_n_-1", "Offline");'>&nbsp;</span>
  4025. </div>
  4026. <!-- HIDDEN:key,ctx -->
  4027. <input type='hidden' id='xowa.gui.shortcuts.xowa.net.enabled_n_-1__key_box' value='xowa.gui.shortcuts.xowa.net.enabled_n_-1'></input>
  4028. <input type='hidden' id='xowa.gui.shortcuts.xowa.net.enabled_n_-1__ctx_box' value='app'></input>
  4029. </div>
  4030. <!-- DIV:help -->
  4031. <div id='xowa.gui.shortcuts.xowa.net.enabled_n_-1_help_div' class='xohelp_div'>
  4032. <div id='xowa.gui.shortcuts.xowa.net.enabled_n_-1_help_msg' class='xohelp_msg'><p>Disable internet connectivity. XOWA will not connect to the internet for any reason. Note that some functions will not work (for example, Help:Import_from_list)
  4033. </p>
  4034. </div>
  4035. </div>
  4036. <div class="xocfg_row flex_div">
  4037. <!-- BTN:help_item -->
  4038. <div class='xocfg_itm_help'>
  4039. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.net.enabled_y_-1")' title='view more info'>&nbsp;</span>
  4040. </div>
  4041. <!-- TEXT:key -->
  4042. <div id='xowa.gui.shortcuts.xowa.net.enabled_y_-1__name' class='xocfg_itm_name'>Online</div>
  4043. <!-- BTN:undo -->
  4044. <div id='xowa.gui.shortcuts.xowa.net.enabled_y_-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  4045. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.net.enabled_y_-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  4046. </div>
  4047. <!-- TEXT:val -->
  4048. <div class='xocfg_itm_data'>
  4049. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.net.enabled_y_-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.net.enabled_y_-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  4050. <option value="browser" selected="selected">Window</option>
  4051. <option value="browser.url">Url bar</option>
  4052. <option value="browser.search">Search box</option>
  4053. <option value="browser.allpages">Allpages box</option>
  4054. <option value="browser.html">HTML browser</option>
  4055. <option value="browser.find">Find box</option>
  4056. <option value="browser.prog">Status bar</option>
  4057. <option value="browser.info">System Messages box</option>
  4058. </select>
  4059. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.net.enabled_y_-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.net.enabled_y_-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  4060. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.net.enabled_y_-1", "Online");'>&nbsp;</span>
  4061. </div>
  4062. <!-- HIDDEN:key,ctx -->
  4063. <input type='hidden' id='xowa.gui.shortcuts.xowa.net.enabled_y_-1__key_box' value='xowa.gui.shortcuts.xowa.net.enabled_y_-1'></input>
  4064. <input type='hidden' id='xowa.gui.shortcuts.xowa.net.enabled_y_-1__ctx_box' value='app'></input>
  4065. </div>
  4066. <!-- DIV:help -->
  4067. <div id='xowa.gui.shortcuts.xowa.net.enabled_y_-1_help_div' class='xohelp_div'>
  4068. <div id='xowa.gui.shortcuts.xowa.net.enabled_y_-1_help_msg' class='xohelp_msg'><p>Enable internet connectivity
  4069. </p>
  4070. </div>
  4071. </div>
  4072. <div class="xocfg_row flex_div">
  4073. <!-- BTN:help_item -->
  4074. <div class='xocfg_itm_help'>
  4075. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.net.enabled_x_-1")' title='view more info'>&nbsp;</span>
  4076. </div>
  4077. <!-- TEXT:key -->
  4078. <div id='xowa.gui.shortcuts.xowa.net.enabled_x_-1__name' class='xocfg_itm_name'>Toggle Online</div>
  4079. <!-- BTN:undo -->
  4080. <div id='xowa.gui.shortcuts.xowa.net.enabled_x_-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  4081. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.net.enabled_x_-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  4082. </div>
  4083. <!-- TEXT:val -->
  4084. <div class='xocfg_itm_data'>
  4085. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.net.enabled_x_-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.net.enabled_x_-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  4086. <option value="browser" selected="selected">Window</option>
  4087. <option value="browser.url">Url bar</option>
  4088. <option value="browser.search">Search box</option>
  4089. <option value="browser.allpages">Allpages box</option>
  4090. <option value="browser.html">HTML browser</option>
  4091. <option value="browser.find">Find box</option>
  4092. <option value="browser.prog">Status bar</option>
  4093. <option value="browser.info">System Messages box</option>
  4094. </select>
  4095. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.net.enabled_x_-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.net.enabled_x_-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  4096. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.net.enabled_x_-1", "Toggle Online");'>&nbsp;</span>
  4097. </div>
  4098. <!-- HIDDEN:key,ctx -->
  4099. <input type='hidden' id='xowa.gui.shortcuts.xowa.net.enabled_x_-1__key_box' value='xowa.gui.shortcuts.xowa.net.enabled_x_-1'></input>
  4100. <input type='hidden' id='xowa.gui.shortcuts.xowa.net.enabled_x_-1__ctx_box' value='app'></input>
  4101. </div>
  4102. <!-- DIV:help -->
  4103. <div id='xowa.gui.shortcuts.xowa.net.enabled_x_-1_help_div' class='xohelp_div'>
  4104. <div id='xowa.gui.shortcuts.xowa.net.enabled_x_-1_help_msg' class='xohelp_msg'><p>Toggle internet connectivity
  4105. </p>
  4106. </div>
  4107. </div>
  4108. <h2>Bookmarks</h2>
  4109. <div class="xocfg_row flex_div">
  4110. <!-- BTN:help_item -->
  4111. <div class='xocfg_itm_help'>
  4112. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.usr.bookmarks.add-1")' title='view more info'>&nbsp;</span>
  4113. </div>
  4114. <!-- TEXT:key -->
  4115. <div id='xowa.gui.shortcuts.xowa.usr.bookmarks.add-1__name' class='xocfg_itm_name'>Bookmark this Page</div>
  4116. <!-- BTN:undo -->
  4117. <div id='xowa.gui.shortcuts.xowa.usr.bookmarks.add-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  4118. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.usr.bookmarks.add-1")' title="reset to &quot;browser|key.none&quot;">&nbsp;</span>
  4119. </div>
  4120. <!-- TEXT:val -->
  4121. <div class='xocfg_itm_data'>
  4122. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.usr.bookmarks.add-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.usr.bookmarks.add-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  4123. <option value="browser" selected="selected">Window</option>
  4124. <option value="browser.url">Url bar</option>
  4125. <option value="browser.search">Search box</option>
  4126. <option value="browser.allpages">Allpages box</option>
  4127. <option value="browser.html">HTML browser</option>
  4128. <option value="browser.find">Find box</option>
  4129. <option value="browser.prog">Status bar</option>
  4130. <option value="browser.info">System Messages box</option>
  4131. </select>
  4132. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.usr.bookmarks.add-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.usr.bookmarks.add-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="None"></input>
  4133. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.usr.bookmarks.add-1", "Bookmark this Page");'>&nbsp;</span>
  4134. </div>
  4135. <!-- HIDDEN:key,ctx -->
  4136. <input type='hidden' id='xowa.gui.shortcuts.xowa.usr.bookmarks.add-1__key_box' value='xowa.gui.shortcuts.xowa.usr.bookmarks.add-1'></input>
  4137. <input type='hidden' id='xowa.gui.shortcuts.xowa.usr.bookmarks.add-1__ctx_box' value='app'></input>
  4138. </div>
  4139. <!-- DIV:help -->
  4140. <div id='xowa.gui.shortcuts.xowa.usr.bookmarks.add-1_help_div' class='xohelp_div'>
  4141. <div id='xowa.gui.shortcuts.xowa.usr.bookmarks.add-1_help_msg' class='xohelp_msg'><p>Add current page to list of bookmarks
  4142. </p>
  4143. </div>
  4144. </div>
  4145. <div class="xocfg_row flex_div">
  4146. <!-- BTN:help_item -->
  4147. <div class='xocfg_itm_help'>
  4148. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.usr.bookmarks.show-1")' title='view more info'>&nbsp;</span>
  4149. </div>
  4150. <!-- TEXT:key -->
  4151. <div id='xowa.gui.shortcuts.xowa.usr.bookmarks.show-1__name' class='xocfg_itm_name'>Show All Bookmarks</div>
  4152. <!-- BTN:undo -->
  4153. <div id='xowa.gui.shortcuts.xowa.usr.bookmarks.show-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  4154. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.usr.bookmarks.show-1")' title="reset to &quot;browser|key.f3&quot;">&nbsp;</span>
  4155. </div>
  4156. <!-- TEXT:val -->
  4157. <div class='xocfg_itm_data'>
  4158. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.usr.bookmarks.show-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.usr.bookmarks.show-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  4159. <option value="browser" selected="selected">Window</option>
  4160. <option value="browser.url">Url bar</option>
  4161. <option value="browser.search">Search box</option>
  4162. <option value="browser.allpages">Allpages box</option>
  4163. <option value="browser.html">HTML browser</option>
  4164. <option value="browser.find">Find box</option>
  4165. <option value="browser.prog">Status bar</option>
  4166. <option value="browser.info">System Messages box</option>
  4167. </select>
  4168. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.usr.bookmarks.show-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.usr.bookmarks.show-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="F3"></input>
  4169. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.usr.bookmarks.show-1", "Show All Bookmarks");'>&nbsp;</span>
  4170. </div>
  4171. <!-- HIDDEN:key,ctx -->
  4172. <input type='hidden' id='xowa.gui.shortcuts.xowa.usr.bookmarks.show-1__key_box' value='xowa.gui.shortcuts.xowa.usr.bookmarks.show-1'></input>
  4173. <input type='hidden' id='xowa.gui.shortcuts.xowa.usr.bookmarks.show-1__ctx_box' value='app'></input>
  4174. </div>
  4175. <!-- DIV:help -->
  4176. <div id='xowa.gui.shortcuts.xowa.usr.bookmarks.show-1_help_div' class='xohelp_div'>
  4177. <div id='xowa.gui.shortcuts.xowa.usr.bookmarks.show-1_help_msg' class='xohelp_msg'><p>Show all bookmarks
  4178. </p>
  4179. </div>
  4180. </div>
  4181. <h2>History</h2>
  4182. <div class="xocfg_row flex_div">
  4183. <!-- BTN:help_item -->
  4184. <div class='xocfg_itm_help'>
  4185. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.usr.history.goto_recent-1")' title='view more info'>&nbsp;</span>
  4186. </div>
  4187. <!-- TEXT:key -->
  4188. <div id='xowa.gui.shortcuts.xowa.usr.history.goto_recent-1__name' class='xocfg_itm_name'>Go to Recent Page</div>
  4189. <!-- BTN:undo -->
  4190. <div id='xowa.gui.shortcuts.xowa.usr.history.goto_recent-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  4191. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.usr.history.goto_recent-1")' title="reset to &quot;browser|mod.cs+key.l&quot;">&nbsp;</span>
  4192. </div>
  4193. <!-- TEXT:val -->
  4194. <div class='xocfg_itm_data'>
  4195. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.usr.history.goto_recent-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.usr.history.goto_recent-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  4196. <option value="browser" selected="selected">Window</option>
  4197. <option value="browser.url">Url bar</option>
  4198. <option value="browser.search">Search box</option>
  4199. <option value="browser.allpages">Allpages box</option>
  4200. <option value="browser.html">HTML browser</option>
  4201. <option value="browser.find">Find box</option>
  4202. <option value="browser.prog">Status bar</option>
  4203. <option value="browser.info">System Messages box</option>
  4204. </select>
  4205. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.usr.history.goto_recent-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.usr.history.goto_recent-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + Shift + L"></input>
  4206. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.usr.history.goto_recent-1", "Go to Recent Page");'>&nbsp;</span>
  4207. </div>
  4208. <!-- HIDDEN:key,ctx -->
  4209. <input type='hidden' id='xowa.gui.shortcuts.xowa.usr.history.goto_recent-1__key_box' value='xowa.gui.shortcuts.xowa.usr.history.goto_recent-1'></input>
  4210. <input type='hidden' id='xowa.gui.shortcuts.xowa.usr.history.goto_recent-1__ctx_box' value='app'></input>
  4211. </div>
  4212. <!-- DIV:help -->
  4213. <div id='xowa.gui.shortcuts.xowa.usr.history.goto_recent-1_help_div' class='xohelp_div'>
  4214. <div id='xowa.gui.shortcuts.xowa.usr.history.goto_recent-1_help_msg' class='xohelp_msg'><p>Go to last visited page
  4215. </p>
  4216. </div>
  4217. </div>
  4218. <div class="xocfg_row flex_div">
  4219. <!-- BTN:help_item -->
  4220. <div class='xocfg_itm_help'>
  4221. <span class='xoimg_btn_x16 xoimg_help_tip' href='javascript:void(0)' onclick='return xo.help.toggle("xowa.gui.shortcuts.xowa.usr.history.show-1")' title='view more info'>&nbsp;</span>
  4222. </div>
  4223. <!-- TEXT:key -->
  4224. <div id='xowa.gui.shortcuts.xowa.usr.history.show-1__name' class='xocfg_itm_name'>Show</div>
  4225. <!-- BTN:undo -->
  4226. <div id='xowa.gui.shortcuts.xowa.usr.history.show-1__undo' data-xocfg-type='gui.binding' class='xocfg_itm_delete xocfg_itm_hide'>
  4227. <span class='xoimg_btn_x16 xoimg_list_undo' onclick='return xo.cfg_edit.delete__send("xowa.gui.shortcuts.xowa.usr.history.show-1")' title="reset to &quot;browser|mod.cs+key.h&quot;">&nbsp;</span>
  4228. </div>
  4229. <!-- TEXT:val -->
  4230. <div class='xocfg_itm_data'>
  4231. <select class="xocfg_data__gui_binding__box" id="xowa.gui.shortcuts.xowa.usr.history.show-1-box" data-xocfg-key="xowa.gui.shortcuts.xowa.usr.history.show-1" data-xocfg-type="gui.binding-box" size="1" accesskey="d">
  4232. <option value="browser" selected="selected">Window</option>
  4233. <option value="browser.url">Url bar</option>
  4234. <option value="browser.search">Search box</option>
  4235. <option value="browser.allpages">Allpages box</option>
  4236. <option value="browser.html">HTML browser</option>
  4237. <option value="browser.find">Find box</option>
  4238. <option value="browser.prog">Status bar</option>
  4239. <option value="browser.info">System Messages box</option>
  4240. </select>
  4241. <input class="xocfg_data__gui_binding__ipt" id="xowa.gui.shortcuts.xowa.usr.history.show-1-ipt" data-xocfg-key="xowa.gui.shortcuts.xowa.usr.history.show-1" data-xocfg-type="gui.binding-ipt" accesskey="d" type="text" value="Ctrl + Shift + H"></input>
  4242. <span class="xoimg_btn_x16 xoimg_app_configure" onclick='xo.cfg_edit.gui_binding__remap_send("xowa.gui.shortcuts.xowa.usr.history.show-1", "Show");'>&nbsp;</span>
  4243. </div>
  4244. <!-- HIDDEN:key,ctx -->
  4245. <input type='hidden' id='xowa.gui.shortcuts.xowa.usr.history.show-1__key_box' value='xowa.gui.shortcuts.xowa.usr.history.show-1'></input>
  4246. <input type='hidden' id='xowa.gui.shortcuts.xowa.usr.history.show-1__ctx_box' value='app'></input>
  4247. </div>
  4248. <!-- DIV:help -->
  4249. <div id='xowa.gui.shortcuts.xowa.usr.history.show-1_help_div' class='xohelp_div'>
  4250. <div id='xowa.gui.shortcuts.xowa.usr.history.show-1_help_msg' class='xohelp_msg'><p>Navigate to XOWA's History Page
  4251. </p>
  4252. </div>
  4253. </div>
  4254. </div>
  4255. </div>
  4256. </div>
  4257. </div>
  4258. </div>
  4259. <div id="mw-head" class="noprint">
  4260. <div id="left-navigation">
  4261. <div id="p-namespaces" class="vectorTabs">
  4262. <h3>Namespaces</h3>
  4263. <ul>
  4264. <li id="ca-nstab-main" class="selected"><span><a id="ca-nstab-main-href" href="index.html">Page</a></span></li>
  4265. </ul>
  4266. </div>
  4267. </div>
  4268. </div>
  4269. <div id='mw-panel' class='noprint'>
  4270. <div id='p-logo'>
  4271. <a style="background-image: url(https://gnosygnu.github.io/xowa/xowa_logo.png);" href="http://xowa.org/" title="Visit the main page"></a>
  4272. </div>
  4273. <div class="portal" id='xowa-portal-home'>
  4274. <h3>XOWA</h3>
  4275. <div class="body">
  4276. <ul>
  4277. <li><a href="http://xowa.org/index.html" title='Visit the main page'>Main page</a></li>
  4278. <li><a href="http://xowa.org/screenshots.html" title='See screenshots of XOWA'>Screenshots</a></li>
  4279. <li><a href="https://www.youtube.com/watch?v=q0qbXYXEH6M" title="See a video of XOWA Desktop in action">Video</a></li>
  4280. <li><a href="http://xowa.org/home/wiki/Help/Download_XOWA.html" title='Download the XOWA application'>Download XOWA</a></li>
  4281. <li><a href="http://xowa.org/home/wiki/Dashboard/Image_databases.html" title='Download offline wikis and image databases'>Download wikis</a></li>
  4282. </ul>
  4283. </div>
  4284. </div>
  4285. <div class="portal" id='xowa-portal-started'>
  4286. <h3>Getting started</h3>
  4287. <div class="body">
  4288. <ul>
  4289. <li><a href="http://xowa.org/home/wiki/App/Setup/System_requirements.html" title='Get XOWA&apos;s system requirements'>Requirements</a></li>
  4290. <li><a href="http://xowa.org/home/wiki/App/Setup/Installation.html" title='Get instructions for installing XOWA'>Installation</a></li>
  4291. <li><a href="http://xowa.org/home/wiki/App/Import/Simple_Wikipedia.html" title='Learn how to set up Simple Wikipedia'>Simple Wikipedia</a></li>
  4292. <li><a href="http://xowa.org/home/wiki/App/Import/English_Wikipedia.html" title='Learn how to set up English Wikipedia'>English Wikipedia</a></li>
  4293. <li><a href="http://xowa.org/home/wiki/App/Import/Other_wikis.html" title='Learn how to set up other Wikipedias'>Other Wikipedias</a></li>
  4294. </ul>
  4295. </div>
  4296. </div>
  4297. <div class="portal" id='xowa-portal-android'>
  4298. <h3>Android</h3>
  4299. <div class="body">
  4300. <ul>
  4301. <li><a href="http://xowa.org/home/wiki/Android/Setup.html" title='Setup XOWA on your Android device'>Setup</a></li>
  4302. <li><a href="https://www.youtube.com/watch?v=jsMTBxGweUw" title="See a video of XOWA Android in action">Video</a></li>
  4303. </ul>
  4304. </div>
  4305. </div>
  4306. <div class="portal" id='xowa-portal-help'>
  4307. <h3>Help</h3>
  4308. <div class="body">
  4309. <ul>
  4310. <li><a href="http://xowa.org/home/wiki/Help/About.html" title='Get more information about XOWA'>About</a></li>
  4311. <li><a href="http://xowa.org/home/wiki/Help/Contents.html" title='View a list of help topics'>Contents</a></li>
  4312. <li><a href="http://xowa.org/home/wiki/Help/Media.html" title='Read what others have written about XOWA'>Media</a></li>
  4313. <li><a href="http://xowa.org/home/wiki/Help/Feedback.html" title='Questions? Comments? Leave feedback for XOWA'>Feedback</a></li>
  4314. </ul>
  4315. </div>
  4316. </div>
  4317. <div class="portal" id='xowa-portal-blog'>
  4318. <h3>Blog</h3>
  4319. <div class="body">
  4320. <ul>
  4321. <li><a href="http://xowa.org/home/wiki/Blog.html" title='Follow XOWA''s development process'>Current</a></li>
  4322. </ul>
  4323. </div>
  4324. </div>
  4325. <div class="portal" id='xowa-portal-links'>
  4326. <h3>Links</h3>
  4327. <div class="body">
  4328. <ul>
  4329. <li><a href="http://dumps.wikimedia.org/backup-index.html" title="Get wiki datababase dumps directly from Wikimedia">Wikimedia dumps</a></li>
  4330. <li><a href="https://archive.org/search.php?query=xowa" title="Search archive.org for XOWA files">XOWA @ archive.org</a></li>
  4331. <li><a href="http://en.wikipedia.org" title="Visit Wikipedia (and compare to XOWA!)">English Wikipedia</a></li>
  4332. </ul>
  4333. </div>
  4334. </div>
  4335. <div class="portal" id='xowa-portal-donate'>
  4336. <h3>Donate</h3>
  4337. <div class="body">
  4338. <ul>
  4339. <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/ -->
  4340. <li><a href="https://donate.wikimedia.org/wiki/Special:FundraiserRedirector" title="Support Wikipedia!">Wikipedia</a></li>
  4341. <li><a href="http://xowa.org/home/wiki/Help/Donate.html" title="Support XOWA!">XOWA</a></li>
  4342. </ul>
  4343. </div>
  4344. </div>
  4345. </div>
  4346. </body>
  4347. </html>