LuCI.uci.html 249 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Class: uci</title>
  6. <script src="scripts/prettify/prettify.js"></script>
  7. <script src="scripts/prettify/lang-css.js"></script>
  8. <script src="scripts/jquery.min.js"></script>
  9. <!--[if lt IE 9]>
  10. <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
  11. <![endif]-->
  12. <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
  13. <link type="text/css" rel="stylesheet" href="styles/bootstrap.min.css">
  14. <link type="text/css" rel="stylesheet" href="styles/jaguar.css">
  15. <script>
  16. var config = {"monospaceLinks":true,"cleverLinks":true,"default":{"outputSourceFiles":true}};
  17. </script>
  18. </head>
  19. <body>
  20. <div id="wrap" class="clearfix">
  21. <div class="navigation">
  22. <h3 class="applicationName"><a href="index.html"></a></h3>
  23. <div class="search">
  24. <input id="search" type="text" class="form-control input-sm" placeholder="Search Documentations">
  25. </div>
  26. <ul class="list">
  27. <li class="item" data-name="LuCI">
  28. <span class="title">
  29. <a href="LuCI.html">LuCI</a>
  30. </span>
  31. <ul class="members itemMembers">
  32. <span class="subtitle">Members</span>
  33. <li data-name="LuCI#Class"><a href="LuCI.html#Class">Class</a></li>
  34. <li data-name="LuCI#dom"><a href="LuCI.html#dom">dom</a></li>
  35. <li data-name="LuCI#env"><a href="LuCI.html#env">env</a></li>
  36. <li data-name="LuCI#naturalCompare"><a href="LuCI.html#naturalCompare">naturalCompare</a></li>
  37. <li data-name="LuCI#Poll"><a href="LuCI.html#Poll">Poll</a></li>
  38. <li data-name="LuCI#Request"><a href="LuCI.html#Request">Request</a></li>
  39. <li data-name="LuCI#view"><a href="LuCI.html#view">view</a></li>
  40. </ul>
  41. <ul class="typedefs itemMembers">
  42. <span class="subtitle">Typedefs</span>
  43. <li data-name="LuCI.requestCallbackFn"><a href="LuCI.html#.requestCallbackFn">requestCallbackFn</a></li>
  44. </ul>
  45. <ul class="typedefs itemMembers">
  46. </ul>
  47. <ul class="methods itemMembers">
  48. <span class="subtitle">Methods</span>
  49. <li data-name="LuCI#bind"><a href="LuCI.html#bind">bind</a></li>
  50. <li data-name="LuCI#error"><a href="LuCI.html#error">error</a></li>
  51. <li data-name="LuCI#fspath"><a href="LuCI.html#fspath">fspath</a></li>
  52. <li data-name="LuCI#get"><a href="LuCI.html#get">get</a></li>
  53. <li data-name="LuCI#halt"><a href="LuCI.html#halt">halt</a></li>
  54. <li data-name="LuCI#hasSystemFeature"><a href="LuCI.html#hasSystemFeature">hasSystemFeature</a></li>
  55. <li data-name="LuCI#hasViewPermission"><a href="LuCI.html#hasViewPermission">hasViewPermission</a></li>
  56. <li data-name="LuCI#isObject"><a href="LuCI.html#isObject">isObject</a></li>
  57. <li data-name="LuCI#location"><a href="LuCI.html#location">location</a></li>
  58. <li data-name="LuCI#media"><a href="LuCI.html#media">media</a></li>
  59. <li data-name="LuCI#path"><a href="LuCI.html#path">path</a></li>
  60. <li data-name="LuCI#poll"><a href="LuCI.html#poll">poll</a></li>
  61. <li data-name="LuCI#post"><a href="LuCI.html#post">post</a></li>
  62. <li data-name="LuCI#raise"><a href="LuCI.html#raise">raise</a></li>
  63. <li data-name="LuCI#require"><a href="LuCI.html#require">require</a></li>
  64. <li data-name="LuCI#resolveDefault"><a href="LuCI.html#resolveDefault">resolveDefault</a></li>
  65. <li data-name="LuCI#resource"><a href="LuCI.html#resource">resource</a></li>
  66. <li data-name="LuCI#run"><a href="LuCI.html#run">run</a></li>
  67. <li data-name="LuCI#sortedArray"><a href="LuCI.html#sortedArray">sortedArray</a></li>
  68. <li data-name="LuCI#sortedKeys"><a href="LuCI.html#sortedKeys">sortedKeys</a></li>
  69. <li data-name="LuCI#stop"><a href="LuCI.html#stop">stop</a></li>
  70. <li data-name="LuCI#toArray"><a href="LuCI.html#toArray">toArray</a></li>
  71. <li data-name="LuCI#url"><a href="LuCI.html#url">url</a></li>
  72. </ul>
  73. <ul class="events itemMembers">
  74. </ul>
  75. </li>
  76. <li class="item" data-name="LuCI.baseclass">
  77. <span class="title">
  78. <a href="LuCI.baseclass.html">LuCI.baseclass</a>
  79. </span>
  80. <ul class="members itemMembers">
  81. </ul>
  82. <ul class="typedefs itemMembers">
  83. </ul>
  84. <ul class="typedefs itemMembers">
  85. </ul>
  86. <ul class="methods itemMembers">
  87. <span class="subtitle">Methods</span>
  88. <li data-name="LuCI.baseclass.extend"><a href="LuCI.baseclass.html#.extend">extend</a></li>
  89. <li data-name="LuCI.baseclass.instantiate"><a href="LuCI.baseclass.html#.instantiate">instantiate</a></li>
  90. <li data-name="LuCI.baseclass.isSubclass"><a href="LuCI.baseclass.html#.isSubclass">isSubclass</a></li>
  91. <li data-name="LuCI.baseclass.singleton"><a href="LuCI.baseclass.html#.singleton">singleton</a></li>
  92. <li data-name="LuCI.baseclass#super"><a href="LuCI.baseclass.html#super">super</a></li>
  93. <li data-name="LuCI.baseclass#varargs"><a href="LuCI.baseclass.html#varargs">varargs</a></li>
  94. </ul>
  95. <ul class="events itemMembers">
  96. </ul>
  97. </li>
  98. <li class="item" data-name="LuCI.dom">
  99. <span class="title">
  100. <a href="LuCI.dom.html">LuCI.dom</a>
  101. </span>
  102. <ul class="members itemMembers">
  103. </ul>
  104. <ul class="typedefs itemMembers">
  105. <span class="subtitle">Typedefs</span>
  106. <li data-name="LuCI.dom~ignoreCallbackFn"><a href="LuCI.dom.html#~ignoreCallbackFn">ignoreCallbackFn</a></li>
  107. </ul>
  108. <ul class="typedefs itemMembers">
  109. </ul>
  110. <ul class="methods itemMembers">
  111. <span class="subtitle">Methods</span>
  112. <li data-name="LuCI.dom#append"><a href="LuCI.dom.html#append">append</a></li>
  113. <li data-name="LuCI.dom#attr"><a href="LuCI.dom.html#attr">attr</a></li>
  114. <li data-name="LuCI.dom#bindClassInstance"><a href="LuCI.dom.html#bindClassInstance">bindClassInstance</a></li>
  115. <li data-name="LuCI.dom#callClassMethod"><a href="LuCI.dom.html#callClassMethod">callClassMethod</a></li>
  116. <li data-name="LuCI.dom#content"><a href="LuCI.dom.html#content">content</a></li>
  117. <li data-name="LuCI.dom#create"><a href="LuCI.dom.html#create">create</a></li>
  118. <li data-name="LuCI.dom#data"><a href="LuCI.dom.html#data">data</a></li>
  119. <li data-name="LuCI.dom#elem"><a href="LuCI.dom.html#elem">elem</a></li>
  120. <li data-name="LuCI.dom#findClassInstance"><a href="LuCI.dom.html#findClassInstance">findClassInstance</a></li>
  121. <li data-name="LuCI.dom#isEmpty"><a href="LuCI.dom.html#isEmpty">isEmpty</a></li>
  122. <li data-name="LuCI.dom#matches"><a href="LuCI.dom.html#matches">matches</a></li>
  123. <li data-name="LuCI.dom#parent"><a href="LuCI.dom.html#parent">parent</a></li>
  124. <li data-name="LuCI.dom#parse"><a href="LuCI.dom.html#parse">parse</a></li>
  125. </ul>
  126. <ul class="events itemMembers">
  127. </ul>
  128. </li>
  129. <li class="item" data-name="LuCI.form">
  130. <span class="title">
  131. <a href="LuCI.form.html">LuCI.form</a>
  132. </span>
  133. <ul class="members itemMembers">
  134. </ul>
  135. <ul class="typedefs itemMembers">
  136. </ul>
  137. <ul class="typedefs itemMembers">
  138. </ul>
  139. <ul class="methods itemMembers">
  140. </ul>
  141. <ul class="events itemMembers">
  142. </ul>
  143. </li>
  144. <li class="item" data-name="LuCI.form.AbstractElement">
  145. <span class="title">
  146. <a href="LuCI.form.AbstractElement.html">LuCI.form.AbstractElement</a>
  147. </span>
  148. <ul class="members itemMembers">
  149. </ul>
  150. <ul class="typedefs itemMembers">
  151. </ul>
  152. <ul class="typedefs itemMembers">
  153. </ul>
  154. <ul class="methods itemMembers">
  155. <span class="subtitle">Methods</span>
  156. <li data-name="LuCI.form.AbstractElement#append"><a href="LuCI.form.AbstractElement.html#append">append</a></li>
  157. <li data-name="LuCI.form.AbstractElement#parse"><a href="LuCI.form.AbstractElement.html#parse">parse</a></li>
  158. <li data-name="LuCI.form.AbstractElement#render"><a href="LuCI.form.AbstractElement.html#render">render</a></li>
  159. <li data-name="LuCI.form.AbstractElement#stripTags"><a href="LuCI.form.AbstractElement.html#stripTags">stripTags</a></li>
  160. <li data-name="LuCI.form.AbstractElement#titleFn"><a href="LuCI.form.AbstractElement.html#titleFn">titleFn</a></li>
  161. </ul>
  162. <ul class="events itemMembers">
  163. </ul>
  164. </li>
  165. <li class="item" data-name="LuCI.form.AbstractSection">
  166. <span class="title">
  167. <a href="LuCI.form.AbstractSection.html">LuCI.form.AbstractSection</a>
  168. </span>
  169. <ul class="members itemMembers">
  170. <span class="subtitle">Members</span>
  171. <li data-name="LuCI.form.AbstractSection##parentoption"><a href="LuCI.form.AbstractSection.html#parentoption">parentoption</a></li>
  172. </ul>
  173. <ul class="typedefs itemMembers">
  174. </ul>
  175. <ul class="typedefs itemMembers">
  176. </ul>
  177. <ul class="methods itemMembers">
  178. <span class="subtitle">Methods</span>
  179. <li data-name="LuCI.form.AbstractSection#append"><a href="LuCI.form.AbstractSection.html#append">append</a></li>
  180. <li data-name="LuCI.form.AbstractSection#cfgsections"><a href="LuCI.form.AbstractSection.html#cfgsections">cfgsections</a></li>
  181. <li data-name="LuCI.form.AbstractSection#cfgvalue"><a href="LuCI.form.AbstractSection.html#cfgvalue">cfgvalue</a></li>
  182. <li data-name="LuCI.form.AbstractSection#filter"><a href="LuCI.form.AbstractSection.html#filter">filter</a></li>
  183. <li data-name="LuCI.form.AbstractSection#formvalue"><a href="LuCI.form.AbstractSection.html#formvalue">formvalue</a></li>
  184. <li data-name="LuCI.form.AbstractSection#getOption"><a href="LuCI.form.AbstractSection.html#getOption">getOption</a></li>
  185. <li data-name="LuCI.form.AbstractSection#getUIElement"><a href="LuCI.form.AbstractSection.html#getUIElement">getUIElement</a></li>
  186. <li data-name="LuCI.form.AbstractSection#load"><a href="LuCI.form.AbstractSection.html#load">load</a></li>
  187. <li data-name="LuCI.form.AbstractSection#option"><a href="LuCI.form.AbstractSection.html#option">option</a></li>
  188. <li data-name="LuCI.form.AbstractSection#parse"><a href="LuCI.form.AbstractSection.html#parse">parse</a></li>
  189. <li data-name="LuCI.form.AbstractSection#render"><a href="LuCI.form.AbstractSection.html#render">render</a></li>
  190. <li data-name="LuCI.form.AbstractSection#stripTags"><a href="LuCI.form.AbstractSection.html#stripTags">stripTags</a></li>
  191. <li data-name="LuCI.form.AbstractSection#tab"><a href="LuCI.form.AbstractSection.html#tab">tab</a></li>
  192. <li data-name="LuCI.form.AbstractSection#taboption"><a href="LuCI.form.AbstractSection.html#taboption">taboption</a></li>
  193. <li data-name="LuCI.form.AbstractSection#titleFn"><a href="LuCI.form.AbstractSection.html#titleFn">titleFn</a></li>
  194. </ul>
  195. <ul class="events itemMembers">
  196. </ul>
  197. </li>
  198. <li class="item" data-name="LuCI.form.AbstractValue">
  199. <span class="title">
  200. <a href="LuCI.form.AbstractValue.html">LuCI.form.AbstractValue</a>
  201. </span>
  202. <ul class="members itemMembers">
  203. <span class="subtitle">Members</span>
  204. <li data-name="LuCI.form.AbstractValue##datatype"><a href="LuCI.form.AbstractValue.html#datatype">datatype</a></li>
  205. <li data-name="LuCI.form.AbstractValue##default"><a href="LuCI.form.AbstractValue.html#default">default</a></li>
  206. <li data-name="LuCI.form.AbstractValue##editable"><a href="LuCI.form.AbstractValue.html#editable">editable</a></li>
  207. <li data-name="LuCI.form.AbstractValue##modalonly"><a href="LuCI.form.AbstractValue.html#modalonly">modalonly</a></li>
  208. <li data-name="LuCI.form.AbstractValue##onchange"><a href="LuCI.form.AbstractValue.html#onchange">onchange</a></li>
  209. <li data-name="LuCI.form.AbstractValue##optional"><a href="LuCI.form.AbstractValue.html#optional">optional</a></li>
  210. <li data-name="LuCI.form.AbstractValue##readonly"><a href="LuCI.form.AbstractValue.html#readonly">readonly</a></li>
  211. <li data-name="LuCI.form.AbstractValue##retain"><a href="LuCI.form.AbstractValue.html#retain">retain</a></li>
  212. <li data-name="LuCI.form.AbstractValue##rmempty"><a href="LuCI.form.AbstractValue.html#rmempty">rmempty</a></li>
  213. <li data-name="LuCI.form.AbstractValue##uciconfig"><a href="LuCI.form.AbstractValue.html#uciconfig">uciconfig</a></li>
  214. <li data-name="LuCI.form.AbstractValue##ucioption"><a href="LuCI.form.AbstractValue.html#ucioption">ucioption</a></li>
  215. <li data-name="LuCI.form.AbstractValue##ucisection"><a href="LuCI.form.AbstractValue.html#ucisection">ucisection</a></li>
  216. <li data-name="LuCI.form.AbstractValue##validate"><a href="LuCI.form.AbstractValue.html#validate">validate</a></li>
  217. <li data-name="LuCI.form.AbstractValue##width"><a href="LuCI.form.AbstractValue.html#width">width</a></li>
  218. </ul>
  219. <ul class="typedefs itemMembers">
  220. </ul>
  221. <ul class="typedefs itemMembers">
  222. </ul>
  223. <ul class="methods itemMembers">
  224. <span class="subtitle">Methods</span>
  225. <li data-name="LuCI.form.AbstractValue#append"><a href="LuCI.form.AbstractValue.html#append">append</a></li>
  226. <li data-name="LuCI.form.AbstractValue#cbid"><a href="LuCI.form.AbstractValue.html#cbid">cbid</a></li>
  227. <li data-name="LuCI.form.AbstractValue#cfgvalue"><a href="LuCI.form.AbstractValue.html#cfgvalue">cfgvalue</a></li>
  228. <li data-name="LuCI.form.AbstractValue#depends"><a href="LuCI.form.AbstractValue.html#depends">depends</a></li>
  229. <li data-name="LuCI.form.AbstractValue#formvalue"><a href="LuCI.form.AbstractValue.html#formvalue">formvalue</a></li>
  230. <li data-name="LuCI.form.AbstractValue#getUIElement"><a href="LuCI.form.AbstractValue.html#getUIElement">getUIElement</a></li>
  231. <li data-name="LuCI.form.AbstractValue#getValidationError"><a href="LuCI.form.AbstractValue.html#getValidationError">getValidationError</a></li>
  232. <li data-name="LuCI.form.AbstractValue#isActive"><a href="LuCI.form.AbstractValue.html#isActive">isActive</a></li>
  233. <li data-name="LuCI.form.AbstractValue#isValid"><a href="LuCI.form.AbstractValue.html#isValid">isValid</a></li>
  234. <li data-name="LuCI.form.AbstractValue#load"><a href="LuCI.form.AbstractValue.html#load">load</a></li>
  235. <li data-name="LuCI.form.AbstractValue#parse"><a href="LuCI.form.AbstractValue.html#parse">parse</a></li>
  236. <li data-name="LuCI.form.AbstractValue#remove"><a href="LuCI.form.AbstractValue.html#remove">remove</a></li>
  237. <li data-name="LuCI.form.AbstractValue#render"><a href="LuCI.form.AbstractValue.html#render">render</a></li>
  238. <li data-name="LuCI.form.AbstractValue#stripTags"><a href="LuCI.form.AbstractValue.html#stripTags">stripTags</a></li>
  239. <li data-name="LuCI.form.AbstractValue#textvalue"><a href="LuCI.form.AbstractValue.html#textvalue">textvalue</a></li>
  240. <li data-name="LuCI.form.AbstractValue#titleFn"><a href="LuCI.form.AbstractValue.html#titleFn">titleFn</a></li>
  241. <li data-name="LuCI.form.AbstractValue#validate"><a href="LuCI.form.AbstractValue.html#validate">validate</a></li>
  242. <li data-name="LuCI.form.AbstractValue#write"><a href="LuCI.form.AbstractValue.html#write">write</a></li>
  243. </ul>
  244. <ul class="events itemMembers">
  245. </ul>
  246. </li>
  247. <li class="item" data-name="LuCI.form.ButtonValue">
  248. <span class="title">
  249. <a href="LuCI.form.ButtonValue.html">LuCI.form.ButtonValue</a>
  250. </span>
  251. <ul class="members itemMembers">
  252. <span class="subtitle">Members</span>
  253. <li data-name="LuCI.form.ButtonValue##inputstyle"><a href="LuCI.form.ButtonValue.html#inputstyle">inputstyle</a></li>
  254. <li data-name="LuCI.form.ButtonValue##inputtitle"><a href="LuCI.form.ButtonValue.html#inputtitle">inputtitle</a></li>
  255. <li data-name="LuCI.form.ButtonValue##onclick"><a href="LuCI.form.ButtonValue.html#onclick">onclick</a></li>
  256. <li data-name="LuCI.form.ButtonValue#datatype"><a href="LuCI.form.ButtonValue.html#datatype">datatype</a></li>
  257. <li data-name="LuCI.form.ButtonValue#default"><a href="LuCI.form.ButtonValue.html#default">default</a></li>
  258. <li data-name="LuCI.form.ButtonValue#editable"><a href="LuCI.form.ButtonValue.html#editable">editable</a></li>
  259. <li data-name="LuCI.form.ButtonValue#modalonly"><a href="LuCI.form.ButtonValue.html#modalonly">modalonly</a></li>
  260. <li data-name="LuCI.form.ButtonValue#onchange"><a href="LuCI.form.ButtonValue.html#onchange">onchange</a></li>
  261. <li data-name="LuCI.form.ButtonValue#optional"><a href="LuCI.form.ButtonValue.html#optional">optional</a></li>
  262. <li data-name="LuCI.form.ButtonValue#password"><a href="LuCI.form.ButtonValue.html#password">password</a></li>
  263. <li data-name="LuCI.form.ButtonValue#placeholder"><a href="LuCI.form.ButtonValue.html#placeholder">placeholder</a></li>
  264. <li data-name="LuCI.form.ButtonValue#readonly"><a href="LuCI.form.ButtonValue.html#readonly">readonly</a></li>
  265. <li data-name="LuCI.form.ButtonValue#retain"><a href="LuCI.form.ButtonValue.html#retain">retain</a></li>
  266. <li data-name="LuCI.form.ButtonValue#rmempty"><a href="LuCI.form.ButtonValue.html#rmempty">rmempty</a></li>
  267. <li data-name="LuCI.form.ButtonValue#uciconfig"><a href="LuCI.form.ButtonValue.html#uciconfig">uciconfig</a></li>
  268. <li data-name="LuCI.form.ButtonValue#ucioption"><a href="LuCI.form.ButtonValue.html#ucioption">ucioption</a></li>
  269. <li data-name="LuCI.form.ButtonValue#ucisection"><a href="LuCI.form.ButtonValue.html#ucisection">ucisection</a></li>
  270. <li data-name="LuCI.form.ButtonValue#validate"><a href="LuCI.form.ButtonValue.html#validate">validate</a></li>
  271. <li data-name="LuCI.form.ButtonValue#width"><a href="LuCI.form.ButtonValue.html#width">width</a></li>
  272. </ul>
  273. <ul class="typedefs itemMembers">
  274. </ul>
  275. <ul class="typedefs itemMembers">
  276. </ul>
  277. <ul class="methods itemMembers">
  278. <span class="subtitle">Methods</span>
  279. <li data-name="LuCI.form.ButtonValue#append"><a href="LuCI.form.ButtonValue.html#append">append</a></li>
  280. <li data-name="LuCI.form.ButtonValue#cbid"><a href="LuCI.form.ButtonValue.html#cbid">cbid</a></li>
  281. <li data-name="LuCI.form.ButtonValue#cfgvalue"><a href="LuCI.form.ButtonValue.html#cfgvalue">cfgvalue</a></li>
  282. <li data-name="LuCI.form.ButtonValue#depends"><a href="LuCI.form.ButtonValue.html#depends">depends</a></li>
  283. <li data-name="LuCI.form.ButtonValue#formvalue"><a href="LuCI.form.ButtonValue.html#formvalue">formvalue</a></li>
  284. <li data-name="LuCI.form.ButtonValue#getUIElement"><a href="LuCI.form.ButtonValue.html#getUIElement">getUIElement</a></li>
  285. <li data-name="LuCI.form.ButtonValue#getValidationError"><a href="LuCI.form.ButtonValue.html#getValidationError">getValidationError</a></li>
  286. <li data-name="LuCI.form.ButtonValue#isActive"><a href="LuCI.form.ButtonValue.html#isActive">isActive</a></li>
  287. <li data-name="LuCI.form.ButtonValue#isValid"><a href="LuCI.form.ButtonValue.html#isValid">isValid</a></li>
  288. <li data-name="LuCI.form.ButtonValue#load"><a href="LuCI.form.ButtonValue.html#load">load</a></li>
  289. <li data-name="LuCI.form.ButtonValue#parse"><a href="LuCI.form.ButtonValue.html#parse">parse</a></li>
  290. <li data-name="LuCI.form.ButtonValue#remove"><a href="LuCI.form.ButtonValue.html#remove">remove</a></li>
  291. <li data-name="LuCI.form.ButtonValue#stripTags"><a href="LuCI.form.ButtonValue.html#stripTags">stripTags</a></li>
  292. <li data-name="LuCI.form.ButtonValue#textvalue"><a href="LuCI.form.ButtonValue.html#textvalue">textvalue</a></li>
  293. <li data-name="LuCI.form.ButtonValue#titleFn"><a href="LuCI.form.ButtonValue.html#titleFn">titleFn</a></li>
  294. <li data-name="LuCI.form.ButtonValue#value"><a href="LuCI.form.ButtonValue.html#value">value</a></li>
  295. <li data-name="LuCI.form.ButtonValue#write"><a href="LuCI.form.ButtonValue.html#write">write</a></li>
  296. </ul>
  297. <ul class="events itemMembers">
  298. </ul>
  299. </li>
  300. <li class="item" data-name="LuCI.form.DummyValue">
  301. <span class="title">
  302. <a href="LuCI.form.DummyValue.html">LuCI.form.DummyValue</a>
  303. </span>
  304. <ul class="members itemMembers">
  305. <span class="subtitle">Members</span>
  306. <li data-name="LuCI.form.DummyValue##hidden"><a href="LuCI.form.DummyValue.html#hidden">hidden</a></li>
  307. <li data-name="LuCI.form.DummyValue##href"><a href="LuCI.form.DummyValue.html#href">href</a></li>
  308. <li data-name="LuCI.form.DummyValue##rawhtml"><a href="LuCI.form.DummyValue.html#rawhtml">rawhtml</a></li>
  309. <li data-name="LuCI.form.DummyValue#datatype"><a href="LuCI.form.DummyValue.html#datatype">datatype</a></li>
  310. <li data-name="LuCI.form.DummyValue#default"><a href="LuCI.form.DummyValue.html#default">default</a></li>
  311. <li data-name="LuCI.form.DummyValue#editable"><a href="LuCI.form.DummyValue.html#editable">editable</a></li>
  312. <li data-name="LuCI.form.DummyValue#modalonly"><a href="LuCI.form.DummyValue.html#modalonly">modalonly</a></li>
  313. <li data-name="LuCI.form.DummyValue#onchange"><a href="LuCI.form.DummyValue.html#onchange">onchange</a></li>
  314. <li data-name="LuCI.form.DummyValue#optional"><a href="LuCI.form.DummyValue.html#optional">optional</a></li>
  315. <li data-name="LuCI.form.DummyValue#password"><a href="LuCI.form.DummyValue.html#password">password</a></li>
  316. <li data-name="LuCI.form.DummyValue#placeholder"><a href="LuCI.form.DummyValue.html#placeholder">placeholder</a></li>
  317. <li data-name="LuCI.form.DummyValue#readonly"><a href="LuCI.form.DummyValue.html#readonly">readonly</a></li>
  318. <li data-name="LuCI.form.DummyValue#retain"><a href="LuCI.form.DummyValue.html#retain">retain</a></li>
  319. <li data-name="LuCI.form.DummyValue#rmempty"><a href="LuCI.form.DummyValue.html#rmempty">rmempty</a></li>
  320. <li data-name="LuCI.form.DummyValue#uciconfig"><a href="LuCI.form.DummyValue.html#uciconfig">uciconfig</a></li>
  321. <li data-name="LuCI.form.DummyValue#ucioption"><a href="LuCI.form.DummyValue.html#ucioption">ucioption</a></li>
  322. <li data-name="LuCI.form.DummyValue#ucisection"><a href="LuCI.form.DummyValue.html#ucisection">ucisection</a></li>
  323. <li data-name="LuCI.form.DummyValue#validate"><a href="LuCI.form.DummyValue.html#validate">validate</a></li>
  324. <li data-name="LuCI.form.DummyValue#width"><a href="LuCI.form.DummyValue.html#width">width</a></li>
  325. </ul>
  326. <ul class="typedefs itemMembers">
  327. </ul>
  328. <ul class="typedefs itemMembers">
  329. </ul>
  330. <ul class="methods itemMembers">
  331. <span class="subtitle">Methods</span>
  332. <li data-name="LuCI.form.DummyValue#append"><a href="LuCI.form.DummyValue.html#append">append</a></li>
  333. <li data-name="LuCI.form.DummyValue#cbid"><a href="LuCI.form.DummyValue.html#cbid">cbid</a></li>
  334. <li data-name="LuCI.form.DummyValue#cfgvalue"><a href="LuCI.form.DummyValue.html#cfgvalue">cfgvalue</a></li>
  335. <li data-name="LuCI.form.DummyValue#depends"><a href="LuCI.form.DummyValue.html#depends">depends</a></li>
  336. <li data-name="LuCI.form.DummyValue#formvalue"><a href="LuCI.form.DummyValue.html#formvalue">formvalue</a></li>
  337. <li data-name="LuCI.form.DummyValue#getUIElement"><a href="LuCI.form.DummyValue.html#getUIElement">getUIElement</a></li>
  338. <li data-name="LuCI.form.DummyValue#getValidationError"><a href="LuCI.form.DummyValue.html#getValidationError">getValidationError</a></li>
  339. <li data-name="LuCI.form.DummyValue#isActive"><a href="LuCI.form.DummyValue.html#isActive">isActive</a></li>
  340. <li data-name="LuCI.form.DummyValue#isValid"><a href="LuCI.form.DummyValue.html#isValid">isValid</a></li>
  341. <li data-name="LuCI.form.DummyValue#load"><a href="LuCI.form.DummyValue.html#load">load</a></li>
  342. <li data-name="LuCI.form.DummyValue#parse"><a href="LuCI.form.DummyValue.html#parse">parse</a></li>
  343. <li data-name="LuCI.form.DummyValue#remove"><a href="LuCI.form.DummyValue.html#remove">remove</a></li>
  344. <li data-name="LuCI.form.DummyValue#stripTags"><a href="LuCI.form.DummyValue.html#stripTags">stripTags</a></li>
  345. <li data-name="LuCI.form.DummyValue#textvalue"><a href="LuCI.form.DummyValue.html#textvalue">textvalue</a></li>
  346. <li data-name="LuCI.form.DummyValue#titleFn"><a href="LuCI.form.DummyValue.html#titleFn">titleFn</a></li>
  347. <li data-name="LuCI.form.DummyValue#value"><a href="LuCI.form.DummyValue.html#value">value</a></li>
  348. <li data-name="LuCI.form.DummyValue#write"><a href="LuCI.form.DummyValue.html#write">write</a></li>
  349. </ul>
  350. <ul class="events itemMembers">
  351. </ul>
  352. </li>
  353. <li class="item" data-name="LuCI.form.DynamicList">
  354. <span class="title">
  355. <a href="LuCI.form.DynamicList.html">LuCI.form.DynamicList</a>
  356. </span>
  357. <ul class="members itemMembers">
  358. <span class="subtitle">Members</span>
  359. <li data-name="LuCI.form.DynamicList#datatype"><a href="LuCI.form.DynamicList.html#datatype">datatype</a></li>
  360. <li data-name="LuCI.form.DynamicList#default"><a href="LuCI.form.DynamicList.html#default">default</a></li>
  361. <li data-name="LuCI.form.DynamicList#editable"><a href="LuCI.form.DynamicList.html#editable">editable</a></li>
  362. <li data-name="LuCI.form.DynamicList#modalonly"><a href="LuCI.form.DynamicList.html#modalonly">modalonly</a></li>
  363. <li data-name="LuCI.form.DynamicList#onchange"><a href="LuCI.form.DynamicList.html#onchange">onchange</a></li>
  364. <li data-name="LuCI.form.DynamicList#optional"><a href="LuCI.form.DynamicList.html#optional">optional</a></li>
  365. <li data-name="LuCI.form.DynamicList#password"><a href="LuCI.form.DynamicList.html#password">password</a></li>
  366. <li data-name="LuCI.form.DynamicList#placeholder"><a href="LuCI.form.DynamicList.html#placeholder">placeholder</a></li>
  367. <li data-name="LuCI.form.DynamicList#readonly"><a href="LuCI.form.DynamicList.html#readonly">readonly</a></li>
  368. <li data-name="LuCI.form.DynamicList#retain"><a href="LuCI.form.DynamicList.html#retain">retain</a></li>
  369. <li data-name="LuCI.form.DynamicList#rmempty"><a href="LuCI.form.DynamicList.html#rmempty">rmempty</a></li>
  370. <li data-name="LuCI.form.DynamicList#uciconfig"><a href="LuCI.form.DynamicList.html#uciconfig">uciconfig</a></li>
  371. <li data-name="LuCI.form.DynamicList#ucioption"><a href="LuCI.form.DynamicList.html#ucioption">ucioption</a></li>
  372. <li data-name="LuCI.form.DynamicList#ucisection"><a href="LuCI.form.DynamicList.html#ucisection">ucisection</a></li>
  373. <li data-name="LuCI.form.DynamicList#validate"><a href="LuCI.form.DynamicList.html#validate">validate</a></li>
  374. <li data-name="LuCI.form.DynamicList#width"><a href="LuCI.form.DynamicList.html#width">width</a></li>
  375. </ul>
  376. <ul class="typedefs itemMembers">
  377. </ul>
  378. <ul class="typedefs itemMembers">
  379. </ul>
  380. <ul class="methods itemMembers">
  381. <span class="subtitle">Methods</span>
  382. <li data-name="LuCI.form.DynamicList#append"><a href="LuCI.form.DynamicList.html#append">append</a></li>
  383. <li data-name="LuCI.form.DynamicList#cbid"><a href="LuCI.form.DynamicList.html#cbid">cbid</a></li>
  384. <li data-name="LuCI.form.DynamicList#cfgvalue"><a href="LuCI.form.DynamicList.html#cfgvalue">cfgvalue</a></li>
  385. <li data-name="LuCI.form.DynamicList#depends"><a href="LuCI.form.DynamicList.html#depends">depends</a></li>
  386. <li data-name="LuCI.form.DynamicList#formvalue"><a href="LuCI.form.DynamicList.html#formvalue">formvalue</a></li>
  387. <li data-name="LuCI.form.DynamicList#getUIElement"><a href="LuCI.form.DynamicList.html#getUIElement">getUIElement</a></li>
  388. <li data-name="LuCI.form.DynamicList#getValidationError"><a href="LuCI.form.DynamicList.html#getValidationError">getValidationError</a></li>
  389. <li data-name="LuCI.form.DynamicList#isActive"><a href="LuCI.form.DynamicList.html#isActive">isActive</a></li>
  390. <li data-name="LuCI.form.DynamicList#isValid"><a href="LuCI.form.DynamicList.html#isValid">isValid</a></li>
  391. <li data-name="LuCI.form.DynamicList#load"><a href="LuCI.form.DynamicList.html#load">load</a></li>
  392. <li data-name="LuCI.form.DynamicList#parse"><a href="LuCI.form.DynamicList.html#parse">parse</a></li>
  393. <li data-name="LuCI.form.DynamicList#remove"><a href="LuCI.form.DynamicList.html#remove">remove</a></li>
  394. <li data-name="LuCI.form.DynamicList#stripTags"><a href="LuCI.form.DynamicList.html#stripTags">stripTags</a></li>
  395. <li data-name="LuCI.form.DynamicList#textvalue"><a href="LuCI.form.DynamicList.html#textvalue">textvalue</a></li>
  396. <li data-name="LuCI.form.DynamicList#titleFn"><a href="LuCI.form.DynamicList.html#titleFn">titleFn</a></li>
  397. <li data-name="LuCI.form.DynamicList#value"><a href="LuCI.form.DynamicList.html#value">value</a></li>
  398. <li data-name="LuCI.form.DynamicList#write"><a href="LuCI.form.DynamicList.html#write">write</a></li>
  399. </ul>
  400. <ul class="events itemMembers">
  401. </ul>
  402. </li>
  403. <li class="item" data-name="LuCI.form.FileUpload">
  404. <span class="title">
  405. <a href="LuCI.form.FileUpload.html">LuCI.form.FileUpload</a>
  406. </span>
  407. <ul class="members itemMembers">
  408. <span class="subtitle">Members</span>
  409. <li data-name="LuCI.form.FileUpload##browser"><a href="LuCI.form.FileUpload.html#browser">browser</a></li>
  410. <li data-name="LuCI.form.FileUpload##enable_download"><a href="LuCI.form.FileUpload.html#enable_download">enable_download</a></li>
  411. <li data-name="LuCI.form.FileUpload##enable_remove"><a href="LuCI.form.FileUpload.html#enable_remove">enable_remove</a></li>
  412. <li data-name="LuCI.form.FileUpload##enable_upload"><a href="LuCI.form.FileUpload.html#enable_upload">enable_upload</a></li>
  413. <li data-name="LuCI.form.FileUpload##root_directory"><a href="LuCI.form.FileUpload.html#root_directory">root_directory</a></li>
  414. <li data-name="LuCI.form.FileUpload##show_hidden"><a href="LuCI.form.FileUpload.html#show_hidden">show_hidden</a></li>
  415. <li data-name="LuCI.form.FileUpload#datatype"><a href="LuCI.form.FileUpload.html#datatype">datatype</a></li>
  416. <li data-name="LuCI.form.FileUpload#default"><a href="LuCI.form.FileUpload.html#default">default</a></li>
  417. <li data-name="LuCI.form.FileUpload#editable"><a href="LuCI.form.FileUpload.html#editable">editable</a></li>
  418. <li data-name="LuCI.form.FileUpload#modalonly"><a href="LuCI.form.FileUpload.html#modalonly">modalonly</a></li>
  419. <li data-name="LuCI.form.FileUpload#onchange"><a href="LuCI.form.FileUpload.html#onchange">onchange</a></li>
  420. <li data-name="LuCI.form.FileUpload#optional"><a href="LuCI.form.FileUpload.html#optional">optional</a></li>
  421. <li data-name="LuCI.form.FileUpload#password"><a href="LuCI.form.FileUpload.html#password">password</a></li>
  422. <li data-name="LuCI.form.FileUpload#placeholder"><a href="LuCI.form.FileUpload.html#placeholder">placeholder</a></li>
  423. <li data-name="LuCI.form.FileUpload#readonly"><a href="LuCI.form.FileUpload.html#readonly">readonly</a></li>
  424. <li data-name="LuCI.form.FileUpload#retain"><a href="LuCI.form.FileUpload.html#retain">retain</a></li>
  425. <li data-name="LuCI.form.FileUpload#rmempty"><a href="LuCI.form.FileUpload.html#rmempty">rmempty</a></li>
  426. <li data-name="LuCI.form.FileUpload#uciconfig"><a href="LuCI.form.FileUpload.html#uciconfig">uciconfig</a></li>
  427. <li data-name="LuCI.form.FileUpload#ucioption"><a href="LuCI.form.FileUpload.html#ucioption">ucioption</a></li>
  428. <li data-name="LuCI.form.FileUpload#ucisection"><a href="LuCI.form.FileUpload.html#ucisection">ucisection</a></li>
  429. <li data-name="LuCI.form.FileUpload#validate"><a href="LuCI.form.FileUpload.html#validate">validate</a></li>
  430. <li data-name="LuCI.form.FileUpload#width"><a href="LuCI.form.FileUpload.html#width">width</a></li>
  431. </ul>
  432. <ul class="typedefs itemMembers">
  433. </ul>
  434. <ul class="typedefs itemMembers">
  435. </ul>
  436. <ul class="methods itemMembers">
  437. <span class="subtitle">Methods</span>
  438. <li data-name="LuCI.form.FileUpload#append"><a href="LuCI.form.FileUpload.html#append">append</a></li>
  439. <li data-name="LuCI.form.FileUpload#cbid"><a href="LuCI.form.FileUpload.html#cbid">cbid</a></li>
  440. <li data-name="LuCI.form.FileUpload#cfgvalue"><a href="LuCI.form.FileUpload.html#cfgvalue">cfgvalue</a></li>
  441. <li data-name="LuCI.form.FileUpload#depends"><a href="LuCI.form.FileUpload.html#depends">depends</a></li>
  442. <li data-name="LuCI.form.FileUpload#formvalue"><a href="LuCI.form.FileUpload.html#formvalue">formvalue</a></li>
  443. <li data-name="LuCI.form.FileUpload#getUIElement"><a href="LuCI.form.FileUpload.html#getUIElement">getUIElement</a></li>
  444. <li data-name="LuCI.form.FileUpload#getValidationError"><a href="LuCI.form.FileUpload.html#getValidationError">getValidationError</a></li>
  445. <li data-name="LuCI.form.FileUpload#isActive"><a href="LuCI.form.FileUpload.html#isActive">isActive</a></li>
  446. <li data-name="LuCI.form.FileUpload#isValid"><a href="LuCI.form.FileUpload.html#isValid">isValid</a></li>
  447. <li data-name="LuCI.form.FileUpload#load"><a href="LuCI.form.FileUpload.html#load">load</a></li>
  448. <li data-name="LuCI.form.FileUpload#parse"><a href="LuCI.form.FileUpload.html#parse">parse</a></li>
  449. <li data-name="LuCI.form.FileUpload#remove"><a href="LuCI.form.FileUpload.html#remove">remove</a></li>
  450. <li data-name="LuCI.form.FileUpload#stripTags"><a href="LuCI.form.FileUpload.html#stripTags">stripTags</a></li>
  451. <li data-name="LuCI.form.FileUpload#textvalue"><a href="LuCI.form.FileUpload.html#textvalue">textvalue</a></li>
  452. <li data-name="LuCI.form.FileUpload#titleFn"><a href="LuCI.form.FileUpload.html#titleFn">titleFn</a></li>
  453. <li data-name="LuCI.form.FileUpload#value"><a href="LuCI.form.FileUpload.html#value">value</a></li>
  454. <li data-name="LuCI.form.FileUpload#write"><a href="LuCI.form.FileUpload.html#write">write</a></li>
  455. </ul>
  456. <ul class="events itemMembers">
  457. </ul>
  458. </li>
  459. <li class="item" data-name="LuCI.form.FlagValue">
  460. <span class="title">
  461. <a href="LuCI.form.FlagValue.html">LuCI.form.FlagValue</a>
  462. </span>
  463. <ul class="members itemMembers">
  464. <span class="subtitle">Members</span>
  465. <li data-name="LuCI.form.FlagValue##disabled"><a href="LuCI.form.FlagValue.html#disabled">disabled</a></li>
  466. <li data-name="LuCI.form.FlagValue##enabled"><a href="LuCI.form.FlagValue.html#enabled">enabled</a></li>
  467. <li data-name="LuCI.form.FlagValue##tooltip"><a href="LuCI.form.FlagValue.html#tooltip">tooltip</a></li>
  468. <li data-name="LuCI.form.FlagValue##tooltipicon"><a href="LuCI.form.FlagValue.html#tooltipicon">tooltipicon</a></li>
  469. <li data-name="LuCI.form.FlagValue#datatype"><a href="LuCI.form.FlagValue.html#datatype">datatype</a></li>
  470. <li data-name="LuCI.form.FlagValue#default"><a href="LuCI.form.FlagValue.html#default">default</a></li>
  471. <li data-name="LuCI.form.FlagValue#editable"><a href="LuCI.form.FlagValue.html#editable">editable</a></li>
  472. <li data-name="LuCI.form.FlagValue#modalonly"><a href="LuCI.form.FlagValue.html#modalonly">modalonly</a></li>
  473. <li data-name="LuCI.form.FlagValue#onchange"><a href="LuCI.form.FlagValue.html#onchange">onchange</a></li>
  474. <li data-name="LuCI.form.FlagValue#optional"><a href="LuCI.form.FlagValue.html#optional">optional</a></li>
  475. <li data-name="LuCI.form.FlagValue#password"><a href="LuCI.form.FlagValue.html#password">password</a></li>
  476. <li data-name="LuCI.form.FlagValue#placeholder"><a href="LuCI.form.FlagValue.html#placeholder">placeholder</a></li>
  477. <li data-name="LuCI.form.FlagValue#readonly"><a href="LuCI.form.FlagValue.html#readonly">readonly</a></li>
  478. <li data-name="LuCI.form.FlagValue#retain"><a href="LuCI.form.FlagValue.html#retain">retain</a></li>
  479. <li data-name="LuCI.form.FlagValue#rmempty"><a href="LuCI.form.FlagValue.html#rmempty">rmempty</a></li>
  480. <li data-name="LuCI.form.FlagValue#uciconfig"><a href="LuCI.form.FlagValue.html#uciconfig">uciconfig</a></li>
  481. <li data-name="LuCI.form.FlagValue#ucioption"><a href="LuCI.form.FlagValue.html#ucioption">ucioption</a></li>
  482. <li data-name="LuCI.form.FlagValue#ucisection"><a href="LuCI.form.FlagValue.html#ucisection">ucisection</a></li>
  483. <li data-name="LuCI.form.FlagValue#validate"><a href="LuCI.form.FlagValue.html#validate">validate</a></li>
  484. <li data-name="LuCI.form.FlagValue#width"><a href="LuCI.form.FlagValue.html#width">width</a></li>
  485. </ul>
  486. <ul class="typedefs itemMembers">
  487. </ul>
  488. <ul class="typedefs itemMembers">
  489. </ul>
  490. <ul class="methods itemMembers">
  491. <span class="subtitle">Methods</span>
  492. <li data-name="LuCI.form.FlagValue#append"><a href="LuCI.form.FlagValue.html#append">append</a></li>
  493. <li data-name="LuCI.form.FlagValue#cbid"><a href="LuCI.form.FlagValue.html#cbid">cbid</a></li>
  494. <li data-name="LuCI.form.FlagValue#cfgvalue"><a href="LuCI.form.FlagValue.html#cfgvalue">cfgvalue</a></li>
  495. <li data-name="LuCI.form.FlagValue#depends"><a href="LuCI.form.FlagValue.html#depends">depends</a></li>
  496. <li data-name="LuCI.form.FlagValue#formvalue"><a href="LuCI.form.FlagValue.html#formvalue">formvalue</a></li>
  497. <li data-name="LuCI.form.FlagValue#getUIElement"><a href="LuCI.form.FlagValue.html#getUIElement">getUIElement</a></li>
  498. <li data-name="LuCI.form.FlagValue#getValidationError"><a href="LuCI.form.FlagValue.html#getValidationError">getValidationError</a></li>
  499. <li data-name="LuCI.form.FlagValue#isActive"><a href="LuCI.form.FlagValue.html#isActive">isActive</a></li>
  500. <li data-name="LuCI.form.FlagValue#isValid"><a href="LuCI.form.FlagValue.html#isValid">isValid</a></li>
  501. <li data-name="LuCI.form.FlagValue#load"><a href="LuCI.form.FlagValue.html#load">load</a></li>
  502. <li data-name="LuCI.form.FlagValue#parse"><a href="LuCI.form.FlagValue.html#parse">parse</a></li>
  503. <li data-name="LuCI.form.FlagValue#remove"><a href="LuCI.form.FlagValue.html#remove">remove</a></li>
  504. <li data-name="LuCI.form.FlagValue#stripTags"><a href="LuCI.form.FlagValue.html#stripTags">stripTags</a></li>
  505. <li data-name="LuCI.form.FlagValue#textvalue"><a href="LuCI.form.FlagValue.html#textvalue">textvalue</a></li>
  506. <li data-name="LuCI.form.FlagValue#titleFn"><a href="LuCI.form.FlagValue.html#titleFn">titleFn</a></li>
  507. <li data-name="LuCI.form.FlagValue#value"><a href="LuCI.form.FlagValue.html#value">value</a></li>
  508. <li data-name="LuCI.form.FlagValue#write"><a href="LuCI.form.FlagValue.html#write">write</a></li>
  509. </ul>
  510. <ul class="events itemMembers">
  511. </ul>
  512. </li>
  513. <li class="item" data-name="LuCI.form.GridSection">
  514. <span class="title">
  515. <a href="LuCI.form.GridSection.html">LuCI.form.GridSection</a>
  516. </span>
  517. <ul class="members itemMembers">
  518. <span class="subtitle">Members</span>
  519. <li data-name="LuCI.form.GridSection#addbtntitle"><a href="LuCI.form.GridSection.html#addbtntitle">addbtntitle</a></li>
  520. <li data-name="LuCI.form.GridSection#addremove"><a href="LuCI.form.GridSection.html#addremove">addremove</a></li>
  521. <li data-name="LuCI.form.GridSection#anonymous"><a href="LuCI.form.GridSection.html#anonymous">anonymous</a></li>
  522. <li data-name="LuCI.form.GridSection#cloneable"><a href="LuCI.form.GridSection.html#cloneable">cloneable</a></li>
  523. <li data-name="LuCI.form.GridSection#extedit"><a href="LuCI.form.GridSection.html#extedit">extedit</a></li>
  524. <li data-name="LuCI.form.GridSection#max_cols"><a href="LuCI.form.GridSection.html#max_cols">max_cols</a></li>
  525. <li data-name="LuCI.form.GridSection#modaltitle"><a href="LuCI.form.GridSection.html#modaltitle">modaltitle</a></li>
  526. <li data-name="LuCI.form.GridSection#nodescriptions"><a href="LuCI.form.GridSection.html#nodescriptions">nodescriptions</a></li>
  527. <li data-name="LuCI.form.GridSection#parentoption"><a href="LuCI.form.GridSection.html#parentoption">parentoption</a></li>
  528. <li data-name="LuCI.form.GridSection#rowcolors"><a href="LuCI.form.GridSection.html#rowcolors">rowcolors</a></li>
  529. <li data-name="LuCI.form.GridSection#sectiontitle"><a href="LuCI.form.GridSection.html#sectiontitle">sectiontitle</a></li>
  530. <li data-name="LuCI.form.GridSection#sortable"><a href="LuCI.form.GridSection.html#sortable">sortable</a></li>
  531. <li data-name="LuCI.form.GridSection#tabbed"><a href="LuCI.form.GridSection.html#tabbed">tabbed</a></li>
  532. <li data-name="LuCI.form.GridSection#uciconfig"><a href="LuCI.form.GridSection.html#uciconfig">uciconfig</a></li>
  533. </ul>
  534. <ul class="typedefs itemMembers">
  535. </ul>
  536. <ul class="typedefs itemMembers">
  537. </ul>
  538. <ul class="methods itemMembers">
  539. <span class="subtitle">Methods</span>
  540. <li data-name="LuCI.form.GridSection#addModalOptions"><a href="LuCI.form.GridSection.html#addModalOptions">addModalOptions</a></li>
  541. <li data-name="LuCI.form.GridSection#append"><a href="LuCI.form.GridSection.html#append">append</a></li>
  542. <li data-name="LuCI.form.GridSection#cfgvalue"><a href="LuCI.form.GridSection.html#cfgvalue">cfgvalue</a></li>
  543. <li data-name="LuCI.form.GridSection#filter"><a href="LuCI.form.GridSection.html#filter">filter</a></li>
  544. <li data-name="LuCI.form.GridSection#formvalue"><a href="LuCI.form.GridSection.html#formvalue">formvalue</a></li>
  545. <li data-name="LuCI.form.GridSection#getOption"><a href="LuCI.form.GridSection.html#getOption">getOption</a></li>
  546. <li data-name="LuCI.form.GridSection#getUIElement"><a href="LuCI.form.GridSection.html#getUIElement">getUIElement</a></li>
  547. <li data-name="LuCI.form.GridSection#load"><a href="LuCI.form.GridSection.html#load">load</a></li>
  548. <li data-name="LuCI.form.GridSection#option"><a href="LuCI.form.GridSection.html#option">option</a></li>
  549. <li data-name="LuCI.form.GridSection#parse"><a href="LuCI.form.GridSection.html#parse">parse</a></li>
  550. <li data-name="LuCI.form.GridSection#stripTags"><a href="LuCI.form.GridSection.html#stripTags">stripTags</a></li>
  551. <li data-name="LuCI.form.GridSection#tab"><a href="LuCI.form.GridSection.html#tab">tab</a></li>
  552. <li data-name="LuCI.form.GridSection#taboption"><a href="LuCI.form.GridSection.html#taboption">taboption</a></li>
  553. <li data-name="LuCI.form.GridSection#titleFn"><a href="LuCI.form.GridSection.html#titleFn">titleFn</a></li>
  554. </ul>
  555. <ul class="events itemMembers">
  556. </ul>
  557. </li>
  558. <li class="item" data-name="LuCI.form.HiddenValue">
  559. <span class="title">
  560. <a href="LuCI.form.HiddenValue.html">LuCI.form.HiddenValue</a>
  561. </span>
  562. <ul class="members itemMembers">
  563. <span class="subtitle">Members</span>
  564. <li data-name="LuCI.form.HiddenValue#datatype"><a href="LuCI.form.HiddenValue.html#datatype">datatype</a></li>
  565. <li data-name="LuCI.form.HiddenValue#default"><a href="LuCI.form.HiddenValue.html#default">default</a></li>
  566. <li data-name="LuCI.form.HiddenValue#editable"><a href="LuCI.form.HiddenValue.html#editable">editable</a></li>
  567. <li data-name="LuCI.form.HiddenValue#modalonly"><a href="LuCI.form.HiddenValue.html#modalonly">modalonly</a></li>
  568. <li data-name="LuCI.form.HiddenValue#onchange"><a href="LuCI.form.HiddenValue.html#onchange">onchange</a></li>
  569. <li data-name="LuCI.form.HiddenValue#optional"><a href="LuCI.form.HiddenValue.html#optional">optional</a></li>
  570. <li data-name="LuCI.form.HiddenValue#password"><a href="LuCI.form.HiddenValue.html#password">password</a></li>
  571. <li data-name="LuCI.form.HiddenValue#placeholder"><a href="LuCI.form.HiddenValue.html#placeholder">placeholder</a></li>
  572. <li data-name="LuCI.form.HiddenValue#readonly"><a href="LuCI.form.HiddenValue.html#readonly">readonly</a></li>
  573. <li data-name="LuCI.form.HiddenValue#retain"><a href="LuCI.form.HiddenValue.html#retain">retain</a></li>
  574. <li data-name="LuCI.form.HiddenValue#rmempty"><a href="LuCI.form.HiddenValue.html#rmempty">rmempty</a></li>
  575. <li data-name="LuCI.form.HiddenValue#uciconfig"><a href="LuCI.form.HiddenValue.html#uciconfig">uciconfig</a></li>
  576. <li data-name="LuCI.form.HiddenValue#ucioption"><a href="LuCI.form.HiddenValue.html#ucioption">ucioption</a></li>
  577. <li data-name="LuCI.form.HiddenValue#ucisection"><a href="LuCI.form.HiddenValue.html#ucisection">ucisection</a></li>
  578. <li data-name="LuCI.form.HiddenValue#validate"><a href="LuCI.form.HiddenValue.html#validate">validate</a></li>
  579. <li data-name="LuCI.form.HiddenValue#width"><a href="LuCI.form.HiddenValue.html#width">width</a></li>
  580. </ul>
  581. <ul class="typedefs itemMembers">
  582. </ul>
  583. <ul class="typedefs itemMembers">
  584. </ul>
  585. <ul class="methods itemMembers">
  586. <span class="subtitle">Methods</span>
  587. <li data-name="LuCI.form.HiddenValue#append"><a href="LuCI.form.HiddenValue.html#append">append</a></li>
  588. <li data-name="LuCI.form.HiddenValue#cbid"><a href="LuCI.form.HiddenValue.html#cbid">cbid</a></li>
  589. <li data-name="LuCI.form.HiddenValue#cfgvalue"><a href="LuCI.form.HiddenValue.html#cfgvalue">cfgvalue</a></li>
  590. <li data-name="LuCI.form.HiddenValue#depends"><a href="LuCI.form.HiddenValue.html#depends">depends</a></li>
  591. <li data-name="LuCI.form.HiddenValue#formvalue"><a href="LuCI.form.HiddenValue.html#formvalue">formvalue</a></li>
  592. <li data-name="LuCI.form.HiddenValue#getUIElement"><a href="LuCI.form.HiddenValue.html#getUIElement">getUIElement</a></li>
  593. <li data-name="LuCI.form.HiddenValue#getValidationError"><a href="LuCI.form.HiddenValue.html#getValidationError">getValidationError</a></li>
  594. <li data-name="LuCI.form.HiddenValue#isActive"><a href="LuCI.form.HiddenValue.html#isActive">isActive</a></li>
  595. <li data-name="LuCI.form.HiddenValue#isValid"><a href="LuCI.form.HiddenValue.html#isValid">isValid</a></li>
  596. <li data-name="LuCI.form.HiddenValue#load"><a href="LuCI.form.HiddenValue.html#load">load</a></li>
  597. <li data-name="LuCI.form.HiddenValue#parse"><a href="LuCI.form.HiddenValue.html#parse">parse</a></li>
  598. <li data-name="LuCI.form.HiddenValue#remove"><a href="LuCI.form.HiddenValue.html#remove">remove</a></li>
  599. <li data-name="LuCI.form.HiddenValue#stripTags"><a href="LuCI.form.HiddenValue.html#stripTags">stripTags</a></li>
  600. <li data-name="LuCI.form.HiddenValue#textvalue"><a href="LuCI.form.HiddenValue.html#textvalue">textvalue</a></li>
  601. <li data-name="LuCI.form.HiddenValue#titleFn"><a href="LuCI.form.HiddenValue.html#titleFn">titleFn</a></li>
  602. <li data-name="LuCI.form.HiddenValue#value"><a href="LuCI.form.HiddenValue.html#value">value</a></li>
  603. <li data-name="LuCI.form.HiddenValue#write"><a href="LuCI.form.HiddenValue.html#write">write</a></li>
  604. </ul>
  605. <ul class="events itemMembers">
  606. </ul>
  607. </li>
  608. <li class="item" data-name="LuCI.form.JSONMap">
  609. <span class="title">
  610. <a href="LuCI.form.JSONMap.html">LuCI.form.JSONMap</a>
  611. </span>
  612. <ul class="members itemMembers">
  613. <span class="subtitle">Members</span>
  614. <li data-name="LuCI.form.JSONMap#readonly"><a href="LuCI.form.JSONMap.html#readonly">readonly</a></li>
  615. </ul>
  616. <ul class="typedefs itemMembers">
  617. </ul>
  618. <ul class="typedefs itemMembers">
  619. </ul>
  620. <ul class="methods itemMembers">
  621. <span class="subtitle">Methods</span>
  622. <li data-name="LuCI.form.JSONMap#append"><a href="LuCI.form.JSONMap.html#append">append</a></li>
  623. <li data-name="LuCI.form.JSONMap#chain"><a href="LuCI.form.JSONMap.html#chain">chain</a></li>
  624. <li data-name="LuCI.form.JSONMap#findElement"><a href="LuCI.form.JSONMap.html#findElement">findElement</a></li>
  625. <li data-name="LuCI.form.JSONMap#findElements"><a href="LuCI.form.JSONMap.html#findElements">findElements</a></li>
  626. <li data-name="LuCI.form.JSONMap#load"><a href="LuCI.form.JSONMap.html#load">load</a></li>
  627. <li data-name="LuCI.form.JSONMap#lookupOption"><a href="LuCI.form.JSONMap.html#lookupOption">lookupOption</a></li>
  628. <li data-name="LuCI.form.JSONMap#parse"><a href="LuCI.form.JSONMap.html#parse">parse</a></li>
  629. <li data-name="LuCI.form.JSONMap#render"><a href="LuCI.form.JSONMap.html#render">render</a></li>
  630. <li data-name="LuCI.form.JSONMap#reset"><a href="LuCI.form.JSONMap.html#reset">reset</a></li>
  631. <li data-name="LuCI.form.JSONMap#save"><a href="LuCI.form.JSONMap.html#save">save</a></li>
  632. <li data-name="LuCI.form.JSONMap#section"><a href="LuCI.form.JSONMap.html#section">section</a></li>
  633. <li data-name="LuCI.form.JSONMap#stripTags"><a href="LuCI.form.JSONMap.html#stripTags">stripTags</a></li>
  634. <li data-name="LuCI.form.JSONMap#titleFn"><a href="LuCI.form.JSONMap.html#titleFn">titleFn</a></li>
  635. </ul>
  636. <ul class="events itemMembers">
  637. </ul>
  638. </li>
  639. <li class="item" data-name="LuCI.form.ListValue">
  640. <span class="title">
  641. <a href="LuCI.form.ListValue.html">LuCI.form.ListValue</a>
  642. </span>
  643. <ul class="members itemMembers">
  644. <span class="subtitle">Members</span>
  645. <li data-name="LuCI.form.ListValue##orientation"><a href="LuCI.form.ListValue.html#orientation">orientation</a></li>
  646. <li data-name="LuCI.form.ListValue##size"><a href="LuCI.form.ListValue.html#size">size</a></li>
  647. <li data-name="LuCI.form.ListValue##widget"><a href="LuCI.form.ListValue.html#widget">widget</a></li>
  648. <li data-name="LuCI.form.ListValue#datatype"><a href="LuCI.form.ListValue.html#datatype">datatype</a></li>
  649. <li data-name="LuCI.form.ListValue#default"><a href="LuCI.form.ListValue.html#default">default</a></li>
  650. <li data-name="LuCI.form.ListValue#editable"><a href="LuCI.form.ListValue.html#editable">editable</a></li>
  651. <li data-name="LuCI.form.ListValue#modalonly"><a href="LuCI.form.ListValue.html#modalonly">modalonly</a></li>
  652. <li data-name="LuCI.form.ListValue#onchange"><a href="LuCI.form.ListValue.html#onchange">onchange</a></li>
  653. <li data-name="LuCI.form.ListValue#optional"><a href="LuCI.form.ListValue.html#optional">optional</a></li>
  654. <li data-name="LuCI.form.ListValue#password"><a href="LuCI.form.ListValue.html#password">password</a></li>
  655. <li data-name="LuCI.form.ListValue#placeholder"><a href="LuCI.form.ListValue.html#placeholder">placeholder</a></li>
  656. <li data-name="LuCI.form.ListValue#readonly"><a href="LuCI.form.ListValue.html#readonly">readonly</a></li>
  657. <li data-name="LuCI.form.ListValue#retain"><a href="LuCI.form.ListValue.html#retain">retain</a></li>
  658. <li data-name="LuCI.form.ListValue#rmempty"><a href="LuCI.form.ListValue.html#rmempty">rmempty</a></li>
  659. <li data-name="LuCI.form.ListValue#uciconfig"><a href="LuCI.form.ListValue.html#uciconfig">uciconfig</a></li>
  660. <li data-name="LuCI.form.ListValue#ucioption"><a href="LuCI.form.ListValue.html#ucioption">ucioption</a></li>
  661. <li data-name="LuCI.form.ListValue#ucisection"><a href="LuCI.form.ListValue.html#ucisection">ucisection</a></li>
  662. <li data-name="LuCI.form.ListValue#validate"><a href="LuCI.form.ListValue.html#validate">validate</a></li>
  663. <li data-name="LuCI.form.ListValue#width"><a href="LuCI.form.ListValue.html#width">width</a></li>
  664. </ul>
  665. <ul class="typedefs itemMembers">
  666. </ul>
  667. <ul class="typedefs itemMembers">
  668. </ul>
  669. <ul class="methods itemMembers">
  670. <span class="subtitle">Methods</span>
  671. <li data-name="LuCI.form.ListValue#append"><a href="LuCI.form.ListValue.html#append">append</a></li>
  672. <li data-name="LuCI.form.ListValue#cbid"><a href="LuCI.form.ListValue.html#cbid">cbid</a></li>
  673. <li data-name="LuCI.form.ListValue#cfgvalue"><a href="LuCI.form.ListValue.html#cfgvalue">cfgvalue</a></li>
  674. <li data-name="LuCI.form.ListValue#depends"><a href="LuCI.form.ListValue.html#depends">depends</a></li>
  675. <li data-name="LuCI.form.ListValue#formvalue"><a href="LuCI.form.ListValue.html#formvalue">formvalue</a></li>
  676. <li data-name="LuCI.form.ListValue#getUIElement"><a href="LuCI.form.ListValue.html#getUIElement">getUIElement</a></li>
  677. <li data-name="LuCI.form.ListValue#getValidationError"><a href="LuCI.form.ListValue.html#getValidationError">getValidationError</a></li>
  678. <li data-name="LuCI.form.ListValue#isActive"><a href="LuCI.form.ListValue.html#isActive">isActive</a></li>
  679. <li data-name="LuCI.form.ListValue#isValid"><a href="LuCI.form.ListValue.html#isValid">isValid</a></li>
  680. <li data-name="LuCI.form.ListValue#load"><a href="LuCI.form.ListValue.html#load">load</a></li>
  681. <li data-name="LuCI.form.ListValue#parse"><a href="LuCI.form.ListValue.html#parse">parse</a></li>
  682. <li data-name="LuCI.form.ListValue#remove"><a href="LuCI.form.ListValue.html#remove">remove</a></li>
  683. <li data-name="LuCI.form.ListValue#stripTags"><a href="LuCI.form.ListValue.html#stripTags">stripTags</a></li>
  684. <li data-name="LuCI.form.ListValue#textvalue"><a href="LuCI.form.ListValue.html#textvalue">textvalue</a></li>
  685. <li data-name="LuCI.form.ListValue#titleFn"><a href="LuCI.form.ListValue.html#titleFn">titleFn</a></li>
  686. <li data-name="LuCI.form.ListValue#value"><a href="LuCI.form.ListValue.html#value">value</a></li>
  687. <li data-name="LuCI.form.ListValue#write"><a href="LuCI.form.ListValue.html#write">write</a></li>
  688. </ul>
  689. <ul class="events itemMembers">
  690. </ul>
  691. </li>
  692. <li class="item" data-name="LuCI.form.Map">
  693. <span class="title">
  694. <a href="LuCI.form.Map.html">LuCI.form.Map</a>
  695. </span>
  696. <ul class="members itemMembers">
  697. <span class="subtitle">Members</span>
  698. <li data-name="LuCI.form.Map##readonly"><a href="LuCI.form.Map.html#readonly">readonly</a></li>
  699. </ul>
  700. <ul class="typedefs itemMembers">
  701. </ul>
  702. <ul class="typedefs itemMembers">
  703. </ul>
  704. <ul class="methods itemMembers">
  705. <span class="subtitle">Methods</span>
  706. <li data-name="LuCI.form.Map#append"><a href="LuCI.form.Map.html#append">append</a></li>
  707. <li data-name="LuCI.form.Map#chain"><a href="LuCI.form.Map.html#chain">chain</a></li>
  708. <li data-name="LuCI.form.Map#findElement"><a href="LuCI.form.Map.html#findElement">findElement</a></li>
  709. <li data-name="LuCI.form.Map#findElements"><a href="LuCI.form.Map.html#findElements">findElements</a></li>
  710. <li data-name="LuCI.form.Map#load"><a href="LuCI.form.Map.html#load">load</a></li>
  711. <li data-name="LuCI.form.Map#lookupOption"><a href="LuCI.form.Map.html#lookupOption">lookupOption</a></li>
  712. <li data-name="LuCI.form.Map#parse"><a href="LuCI.form.Map.html#parse">parse</a></li>
  713. <li data-name="LuCI.form.Map#render"><a href="LuCI.form.Map.html#render">render</a></li>
  714. <li data-name="LuCI.form.Map#reset"><a href="LuCI.form.Map.html#reset">reset</a></li>
  715. <li data-name="LuCI.form.Map#save"><a href="LuCI.form.Map.html#save">save</a></li>
  716. <li data-name="LuCI.form.Map#section"><a href="LuCI.form.Map.html#section">section</a></li>
  717. <li data-name="LuCI.form.Map#stripTags"><a href="LuCI.form.Map.html#stripTags">stripTags</a></li>
  718. <li data-name="LuCI.form.Map#titleFn"><a href="LuCI.form.Map.html#titleFn">titleFn</a></li>
  719. </ul>
  720. <ul class="events itemMembers">
  721. </ul>
  722. </li>
  723. <li class="item" data-name="LuCI.form.MultiValue">
  724. <span class="title">
  725. <a href="LuCI.form.MultiValue.html">LuCI.form.MultiValue</a>
  726. </span>
  727. <ul class="members itemMembers">
  728. <span class="subtitle">Members</span>
  729. <li data-name="LuCI.form.MultiValue##create"><a href="LuCI.form.MultiValue.html#create">create</a></li>
  730. <li data-name="LuCI.form.MultiValue##display_size"><a href="LuCI.form.MultiValue.html#display_size">display_size</a></li>
  731. <li data-name="LuCI.form.MultiValue##dropdown_size"><a href="LuCI.form.MultiValue.html#dropdown_size">dropdown_size</a></li>
  732. <li data-name="LuCI.form.MultiValue#datatype"><a href="LuCI.form.MultiValue.html#datatype">datatype</a></li>
  733. <li data-name="LuCI.form.MultiValue#default"><a href="LuCI.form.MultiValue.html#default">default</a></li>
  734. <li data-name="LuCI.form.MultiValue#editable"><a href="LuCI.form.MultiValue.html#editable">editable</a></li>
  735. <li data-name="LuCI.form.MultiValue#modalonly"><a href="LuCI.form.MultiValue.html#modalonly">modalonly</a></li>
  736. <li data-name="LuCI.form.MultiValue#onchange"><a href="LuCI.form.MultiValue.html#onchange">onchange</a></li>
  737. <li data-name="LuCI.form.MultiValue#optional"><a href="LuCI.form.MultiValue.html#optional">optional</a></li>
  738. <li data-name="LuCI.form.MultiValue#password"><a href="LuCI.form.MultiValue.html#password">password</a></li>
  739. <li data-name="LuCI.form.MultiValue#placeholder"><a href="LuCI.form.MultiValue.html#placeholder">placeholder</a></li>
  740. <li data-name="LuCI.form.MultiValue#readonly"><a href="LuCI.form.MultiValue.html#readonly">readonly</a></li>
  741. <li data-name="LuCI.form.MultiValue#retain"><a href="LuCI.form.MultiValue.html#retain">retain</a></li>
  742. <li data-name="LuCI.form.MultiValue#rmempty"><a href="LuCI.form.MultiValue.html#rmempty">rmempty</a></li>
  743. <li data-name="LuCI.form.MultiValue#uciconfig"><a href="LuCI.form.MultiValue.html#uciconfig">uciconfig</a></li>
  744. <li data-name="LuCI.form.MultiValue#ucioption"><a href="LuCI.form.MultiValue.html#ucioption">ucioption</a></li>
  745. <li data-name="LuCI.form.MultiValue#ucisection"><a href="LuCI.form.MultiValue.html#ucisection">ucisection</a></li>
  746. <li data-name="LuCI.form.MultiValue#validate"><a href="LuCI.form.MultiValue.html#validate">validate</a></li>
  747. <li data-name="LuCI.form.MultiValue#width"><a href="LuCI.form.MultiValue.html#width">width</a></li>
  748. </ul>
  749. <ul class="typedefs itemMembers">
  750. </ul>
  751. <ul class="typedefs itemMembers">
  752. </ul>
  753. <ul class="methods itemMembers">
  754. <span class="subtitle">Methods</span>
  755. <li data-name="LuCI.form.MultiValue#append"><a href="LuCI.form.MultiValue.html#append">append</a></li>
  756. <li data-name="LuCI.form.MultiValue#cbid"><a href="LuCI.form.MultiValue.html#cbid">cbid</a></li>
  757. <li data-name="LuCI.form.MultiValue#cfgvalue"><a href="LuCI.form.MultiValue.html#cfgvalue">cfgvalue</a></li>
  758. <li data-name="LuCI.form.MultiValue#depends"><a href="LuCI.form.MultiValue.html#depends">depends</a></li>
  759. <li data-name="LuCI.form.MultiValue#formvalue"><a href="LuCI.form.MultiValue.html#formvalue">formvalue</a></li>
  760. <li data-name="LuCI.form.MultiValue#getUIElement"><a href="LuCI.form.MultiValue.html#getUIElement">getUIElement</a></li>
  761. <li data-name="LuCI.form.MultiValue#getValidationError"><a href="LuCI.form.MultiValue.html#getValidationError">getValidationError</a></li>
  762. <li data-name="LuCI.form.MultiValue#isActive"><a href="LuCI.form.MultiValue.html#isActive">isActive</a></li>
  763. <li data-name="LuCI.form.MultiValue#isValid"><a href="LuCI.form.MultiValue.html#isValid">isValid</a></li>
  764. <li data-name="LuCI.form.MultiValue#load"><a href="LuCI.form.MultiValue.html#load">load</a></li>
  765. <li data-name="LuCI.form.MultiValue#parse"><a href="LuCI.form.MultiValue.html#parse">parse</a></li>
  766. <li data-name="LuCI.form.MultiValue#remove"><a href="LuCI.form.MultiValue.html#remove">remove</a></li>
  767. <li data-name="LuCI.form.MultiValue#stripTags"><a href="LuCI.form.MultiValue.html#stripTags">stripTags</a></li>
  768. <li data-name="LuCI.form.MultiValue#textvalue"><a href="LuCI.form.MultiValue.html#textvalue">textvalue</a></li>
  769. <li data-name="LuCI.form.MultiValue#titleFn"><a href="LuCI.form.MultiValue.html#titleFn">titleFn</a></li>
  770. <li data-name="LuCI.form.MultiValue#value"><a href="LuCI.form.MultiValue.html#value">value</a></li>
  771. <li data-name="LuCI.form.MultiValue#write"><a href="LuCI.form.MultiValue.html#write">write</a></li>
  772. </ul>
  773. <ul class="events itemMembers">
  774. </ul>
  775. </li>
  776. <li class="item" data-name="LuCI.form.NamedSection">
  777. <span class="title">
  778. <a href="LuCI.form.NamedSection.html">LuCI.form.NamedSection</a>
  779. </span>
  780. <ul class="members itemMembers">
  781. <span class="subtitle">Members</span>
  782. <li data-name="LuCI.form.NamedSection##addremove"><a href="LuCI.form.NamedSection.html#addremove">addremove</a></li>
  783. <li data-name="LuCI.form.NamedSection##uciconfig"><a href="LuCI.form.NamedSection.html#uciconfig">uciconfig</a></li>
  784. <li data-name="LuCI.form.NamedSection#parentoption"><a href="LuCI.form.NamedSection.html#parentoption">parentoption</a></li>
  785. </ul>
  786. <ul class="typedefs itemMembers">
  787. </ul>
  788. <ul class="typedefs itemMembers">
  789. </ul>
  790. <ul class="methods itemMembers">
  791. <span class="subtitle">Methods</span>
  792. <li data-name="LuCI.form.NamedSection#append"><a href="LuCI.form.NamedSection.html#append">append</a></li>
  793. <li data-name="LuCI.form.NamedSection#cfgsections"><a href="LuCI.form.NamedSection.html#cfgsections">cfgsections</a></li>
  794. <li data-name="LuCI.form.NamedSection#cfgvalue"><a href="LuCI.form.NamedSection.html#cfgvalue">cfgvalue</a></li>
  795. <li data-name="LuCI.form.NamedSection#filter"><a href="LuCI.form.NamedSection.html#filter">filter</a></li>
  796. <li data-name="LuCI.form.NamedSection#formvalue"><a href="LuCI.form.NamedSection.html#formvalue">formvalue</a></li>
  797. <li data-name="LuCI.form.NamedSection#getOption"><a href="LuCI.form.NamedSection.html#getOption">getOption</a></li>
  798. <li data-name="LuCI.form.NamedSection#getUIElement"><a href="LuCI.form.NamedSection.html#getUIElement">getUIElement</a></li>
  799. <li data-name="LuCI.form.NamedSection#load"><a href="LuCI.form.NamedSection.html#load">load</a></li>
  800. <li data-name="LuCI.form.NamedSection#option"><a href="LuCI.form.NamedSection.html#option">option</a></li>
  801. <li data-name="LuCI.form.NamedSection#parse"><a href="LuCI.form.NamedSection.html#parse">parse</a></li>
  802. <li data-name="LuCI.form.NamedSection#render"><a href="LuCI.form.NamedSection.html#render">render</a></li>
  803. <li data-name="LuCI.form.NamedSection#stripTags"><a href="LuCI.form.NamedSection.html#stripTags">stripTags</a></li>
  804. <li data-name="LuCI.form.NamedSection#tab"><a href="LuCI.form.NamedSection.html#tab">tab</a></li>
  805. <li data-name="LuCI.form.NamedSection#taboption"><a href="LuCI.form.NamedSection.html#taboption">taboption</a></li>
  806. <li data-name="LuCI.form.NamedSection#titleFn"><a href="LuCI.form.NamedSection.html#titleFn">titleFn</a></li>
  807. </ul>
  808. <ul class="events itemMembers">
  809. </ul>
  810. </li>
  811. <li class="item" data-name="LuCI.form.RichListValue">
  812. <span class="title">
  813. <a href="LuCI.form.RichListValue.html">LuCI.form.RichListValue</a>
  814. </span>
  815. <ul class="members itemMembers">
  816. <span class="subtitle">Members</span>
  817. <li data-name="LuCI.form.RichListValue##orientation"><a href="LuCI.form.RichListValue.html#orientation">orientation</a></li>
  818. <li data-name="LuCI.form.RichListValue##size"><a href="LuCI.form.RichListValue.html#size">size</a></li>
  819. <li data-name="LuCI.form.RichListValue##widget"><a href="LuCI.form.RichListValue.html#widget">widget</a></li>
  820. <li data-name="LuCI.form.RichListValue#datatype"><a href="LuCI.form.RichListValue.html#datatype">datatype</a></li>
  821. <li data-name="LuCI.form.RichListValue#default"><a href="LuCI.form.RichListValue.html#default">default</a></li>
  822. <li data-name="LuCI.form.RichListValue#editable"><a href="LuCI.form.RichListValue.html#editable">editable</a></li>
  823. <li data-name="LuCI.form.RichListValue#modalonly"><a href="LuCI.form.RichListValue.html#modalonly">modalonly</a></li>
  824. <li data-name="LuCI.form.RichListValue#onchange"><a href="LuCI.form.RichListValue.html#onchange">onchange</a></li>
  825. <li data-name="LuCI.form.RichListValue#optional"><a href="LuCI.form.RichListValue.html#optional">optional</a></li>
  826. <li data-name="LuCI.form.RichListValue#orientation"><a href="LuCI.form.RichListValue.html#orientation">orientation</a></li>
  827. <li data-name="LuCI.form.RichListValue#password"><a href="LuCI.form.RichListValue.html#password">password</a></li>
  828. <li data-name="LuCI.form.RichListValue#placeholder"><a href="LuCI.form.RichListValue.html#placeholder">placeholder</a></li>
  829. <li data-name="LuCI.form.RichListValue#readonly"><a href="LuCI.form.RichListValue.html#readonly">readonly</a></li>
  830. <li data-name="LuCI.form.RichListValue#retain"><a href="LuCI.form.RichListValue.html#retain">retain</a></li>
  831. <li data-name="LuCI.form.RichListValue#rmempty"><a href="LuCI.form.RichListValue.html#rmempty">rmempty</a></li>
  832. <li data-name="LuCI.form.RichListValue#size"><a href="LuCI.form.RichListValue.html#size">size</a></li>
  833. <li data-name="LuCI.form.RichListValue#uciconfig"><a href="LuCI.form.RichListValue.html#uciconfig">uciconfig</a></li>
  834. <li data-name="LuCI.form.RichListValue#ucioption"><a href="LuCI.form.RichListValue.html#ucioption">ucioption</a></li>
  835. <li data-name="LuCI.form.RichListValue#ucisection"><a href="LuCI.form.RichListValue.html#ucisection">ucisection</a></li>
  836. <li data-name="LuCI.form.RichListValue#validate"><a href="LuCI.form.RichListValue.html#validate">validate</a></li>
  837. <li data-name="LuCI.form.RichListValue#widget"><a href="LuCI.form.RichListValue.html#widget">widget</a></li>
  838. <li data-name="LuCI.form.RichListValue#width"><a href="LuCI.form.RichListValue.html#width">width</a></li>
  839. </ul>
  840. <ul class="typedefs itemMembers">
  841. </ul>
  842. <ul class="typedefs itemMembers">
  843. </ul>
  844. <ul class="methods itemMembers">
  845. <span class="subtitle">Methods</span>
  846. <li data-name="LuCI.form.RichListValue#append"><a href="LuCI.form.RichListValue.html#append">append</a></li>
  847. <li data-name="LuCI.form.RichListValue#cbid"><a href="LuCI.form.RichListValue.html#cbid">cbid</a></li>
  848. <li data-name="LuCI.form.RichListValue#cfgvalue"><a href="LuCI.form.RichListValue.html#cfgvalue">cfgvalue</a></li>
  849. <li data-name="LuCI.form.RichListValue#depends"><a href="LuCI.form.RichListValue.html#depends">depends</a></li>
  850. <li data-name="LuCI.form.RichListValue#formvalue"><a href="LuCI.form.RichListValue.html#formvalue">formvalue</a></li>
  851. <li data-name="LuCI.form.RichListValue#getUIElement"><a href="LuCI.form.RichListValue.html#getUIElement">getUIElement</a></li>
  852. <li data-name="LuCI.form.RichListValue#getValidationError"><a href="LuCI.form.RichListValue.html#getValidationError">getValidationError</a></li>
  853. <li data-name="LuCI.form.RichListValue#isActive"><a href="LuCI.form.RichListValue.html#isActive">isActive</a></li>
  854. <li data-name="LuCI.form.RichListValue#isValid"><a href="LuCI.form.RichListValue.html#isValid">isValid</a></li>
  855. <li data-name="LuCI.form.RichListValue#load"><a href="LuCI.form.RichListValue.html#load">load</a></li>
  856. <li data-name="LuCI.form.RichListValue#parse"><a href="LuCI.form.RichListValue.html#parse">parse</a></li>
  857. <li data-name="LuCI.form.RichListValue#remove"><a href="LuCI.form.RichListValue.html#remove">remove</a></li>
  858. <li data-name="LuCI.form.RichListValue#stripTags"><a href="LuCI.form.RichListValue.html#stripTags">stripTags</a></li>
  859. <li data-name="LuCI.form.RichListValue#textvalue"><a href="LuCI.form.RichListValue.html#textvalue">textvalue</a></li>
  860. <li data-name="LuCI.form.RichListValue#titleFn"><a href="LuCI.form.RichListValue.html#titleFn">titleFn</a></li>
  861. <li data-name="LuCI.form.RichListValue#value"><a href="LuCI.form.RichListValue.html#value">value</a></li>
  862. <li data-name="LuCI.form.RichListValue#write"><a href="LuCI.form.RichListValue.html#write">write</a></li>
  863. </ul>
  864. <ul class="events itemMembers">
  865. </ul>
  866. </li>
  867. <li class="item" data-name="LuCI.form.SectionValue">
  868. <span class="title">
  869. <a href="LuCI.form.SectionValue.html">LuCI.form.SectionValue</a>
  870. </span>
  871. <ul class="members itemMembers">
  872. <span class="subtitle">Members</span>
  873. <li data-name="LuCI.form.SectionValue##subsection"><a href="LuCI.form.SectionValue.html#subsection">subsection</a></li>
  874. <li data-name="LuCI.form.SectionValue#datatype"><a href="LuCI.form.SectionValue.html#datatype">datatype</a></li>
  875. <li data-name="LuCI.form.SectionValue#default"><a href="LuCI.form.SectionValue.html#default">default</a></li>
  876. <li data-name="LuCI.form.SectionValue#editable"><a href="LuCI.form.SectionValue.html#editable">editable</a></li>
  877. <li data-name="LuCI.form.SectionValue#modalonly"><a href="LuCI.form.SectionValue.html#modalonly">modalonly</a></li>
  878. <li data-name="LuCI.form.SectionValue#onchange"><a href="LuCI.form.SectionValue.html#onchange">onchange</a></li>
  879. <li data-name="LuCI.form.SectionValue#optional"><a href="LuCI.form.SectionValue.html#optional">optional</a></li>
  880. <li data-name="LuCI.form.SectionValue#password"><a href="LuCI.form.SectionValue.html#password">password</a></li>
  881. <li data-name="LuCI.form.SectionValue#placeholder"><a href="LuCI.form.SectionValue.html#placeholder">placeholder</a></li>
  882. <li data-name="LuCI.form.SectionValue#readonly"><a href="LuCI.form.SectionValue.html#readonly">readonly</a></li>
  883. <li data-name="LuCI.form.SectionValue#retain"><a href="LuCI.form.SectionValue.html#retain">retain</a></li>
  884. <li data-name="LuCI.form.SectionValue#rmempty"><a href="LuCI.form.SectionValue.html#rmempty">rmempty</a></li>
  885. <li data-name="LuCI.form.SectionValue#uciconfig"><a href="LuCI.form.SectionValue.html#uciconfig">uciconfig</a></li>
  886. <li data-name="LuCI.form.SectionValue#ucioption"><a href="LuCI.form.SectionValue.html#ucioption">ucioption</a></li>
  887. <li data-name="LuCI.form.SectionValue#ucisection"><a href="LuCI.form.SectionValue.html#ucisection">ucisection</a></li>
  888. <li data-name="LuCI.form.SectionValue#validate"><a href="LuCI.form.SectionValue.html#validate">validate</a></li>
  889. <li data-name="LuCI.form.SectionValue#width"><a href="LuCI.form.SectionValue.html#width">width</a></li>
  890. </ul>
  891. <ul class="typedefs itemMembers">
  892. </ul>
  893. <ul class="typedefs itemMembers">
  894. </ul>
  895. <ul class="methods itemMembers">
  896. <span class="subtitle">Methods</span>
  897. <li data-name="LuCI.form.SectionValue#append"><a href="LuCI.form.SectionValue.html#append">append</a></li>
  898. <li data-name="LuCI.form.SectionValue#cbid"><a href="LuCI.form.SectionValue.html#cbid">cbid</a></li>
  899. <li data-name="LuCI.form.SectionValue#cfgvalue"><a href="LuCI.form.SectionValue.html#cfgvalue">cfgvalue</a></li>
  900. <li data-name="LuCI.form.SectionValue#depends"><a href="LuCI.form.SectionValue.html#depends">depends</a></li>
  901. <li data-name="LuCI.form.SectionValue#formvalue"><a href="LuCI.form.SectionValue.html#formvalue">formvalue</a></li>
  902. <li data-name="LuCI.form.SectionValue#getUIElement"><a href="LuCI.form.SectionValue.html#getUIElement">getUIElement</a></li>
  903. <li data-name="LuCI.form.SectionValue#getValidationError"><a href="LuCI.form.SectionValue.html#getValidationError">getValidationError</a></li>
  904. <li data-name="LuCI.form.SectionValue#isActive"><a href="LuCI.form.SectionValue.html#isActive">isActive</a></li>
  905. <li data-name="LuCI.form.SectionValue#isValid"><a href="LuCI.form.SectionValue.html#isValid">isValid</a></li>
  906. <li data-name="LuCI.form.SectionValue#load"><a href="LuCI.form.SectionValue.html#load">load</a></li>
  907. <li data-name="LuCI.form.SectionValue#parse"><a href="LuCI.form.SectionValue.html#parse">parse</a></li>
  908. <li data-name="LuCI.form.SectionValue#remove"><a href="LuCI.form.SectionValue.html#remove">remove</a></li>
  909. <li data-name="LuCI.form.SectionValue#stripTags"><a href="LuCI.form.SectionValue.html#stripTags">stripTags</a></li>
  910. <li data-name="LuCI.form.SectionValue#textvalue"><a href="LuCI.form.SectionValue.html#textvalue">textvalue</a></li>
  911. <li data-name="LuCI.form.SectionValue#titleFn"><a href="LuCI.form.SectionValue.html#titleFn">titleFn</a></li>
  912. <li data-name="LuCI.form.SectionValue#value"><a href="LuCI.form.SectionValue.html#value">value</a></li>
  913. <li data-name="LuCI.form.SectionValue#write"><a href="LuCI.form.SectionValue.html#write">write</a></li>
  914. </ul>
  915. <ul class="events itemMembers">
  916. </ul>
  917. </li>
  918. <li class="item" data-name="LuCI.form.TableSection">
  919. <span class="title">
  920. <a href="LuCI.form.TableSection.html">LuCI.form.TableSection</a>
  921. </span>
  922. <ul class="members itemMembers">
  923. <span class="subtitle">Members</span>
  924. <li data-name="LuCI.form.TableSection##extedit"><a href="LuCI.form.TableSection.html#extedit">extedit</a></li>
  925. <li data-name="LuCI.form.TableSection##max_cols"><a href="LuCI.form.TableSection.html#max_cols">max_cols</a></li>
  926. <li data-name="LuCI.form.TableSection##modaltitle"><a href="LuCI.form.TableSection.html#modaltitle">modaltitle</a></li>
  927. <li data-name="LuCI.form.TableSection##nodescriptions"><a href="LuCI.form.TableSection.html#nodescriptions">nodescriptions</a></li>
  928. <li data-name="LuCI.form.TableSection##rowcolors"><a href="LuCI.form.TableSection.html#rowcolors">rowcolors</a></li>
  929. <li data-name="LuCI.form.TableSection##sectiontitle"><a href="LuCI.form.TableSection.html#sectiontitle">sectiontitle</a></li>
  930. <li data-name="LuCI.form.TableSection##sortable"><a href="LuCI.form.TableSection.html#sortable">sortable</a></li>
  931. <li data-name="LuCI.form.TableSection#addbtntitle"><a href="LuCI.form.TableSection.html#addbtntitle">addbtntitle</a></li>
  932. <li data-name="LuCI.form.TableSection#addremove"><a href="LuCI.form.TableSection.html#addremove">addremove</a></li>
  933. <li data-name="LuCI.form.TableSection#anonymous"><a href="LuCI.form.TableSection.html#anonymous">anonymous</a></li>
  934. <li data-name="LuCI.form.TableSection#cloneable"><a href="LuCI.form.TableSection.html#cloneable">cloneable</a></li>
  935. <li data-name="LuCI.form.TableSection#parentoption"><a href="LuCI.form.TableSection.html#parentoption">parentoption</a></li>
  936. <li data-name="LuCI.form.TableSection#tabbed"><a href="LuCI.form.TableSection.html#tabbed">tabbed</a></li>
  937. <li data-name="LuCI.form.TableSection#uciconfig"><a href="LuCI.form.TableSection.html#uciconfig">uciconfig</a></li>
  938. </ul>
  939. <ul class="typedefs itemMembers">
  940. </ul>
  941. <ul class="typedefs itemMembers">
  942. </ul>
  943. <ul class="methods itemMembers">
  944. <span class="subtitle">Methods</span>
  945. <li data-name="LuCI.form.TableSection#addModalOptions"><a href="LuCI.form.TableSection.html#addModalOptions">addModalOptions</a></li>
  946. <li data-name="LuCI.form.TableSection#append"><a href="LuCI.form.TableSection.html#append">append</a></li>
  947. <li data-name="LuCI.form.TableSection#cfgvalue"><a href="LuCI.form.TableSection.html#cfgvalue">cfgvalue</a></li>
  948. <li data-name="LuCI.form.TableSection#filter"><a href="LuCI.form.TableSection.html#filter">filter</a></li>
  949. <li data-name="LuCI.form.TableSection#formvalue"><a href="LuCI.form.TableSection.html#formvalue">formvalue</a></li>
  950. <li data-name="LuCI.form.TableSection#getOption"><a href="LuCI.form.TableSection.html#getOption">getOption</a></li>
  951. <li data-name="LuCI.form.TableSection#getUIElement"><a href="LuCI.form.TableSection.html#getUIElement">getUIElement</a></li>
  952. <li data-name="LuCI.form.TableSection#load"><a href="LuCI.form.TableSection.html#load">load</a></li>
  953. <li data-name="LuCI.form.TableSection#option"><a href="LuCI.form.TableSection.html#option">option</a></li>
  954. <li data-name="LuCI.form.TableSection#parse"><a href="LuCI.form.TableSection.html#parse">parse</a></li>
  955. <li data-name="LuCI.form.TableSection#stripTags"><a href="LuCI.form.TableSection.html#stripTags">stripTags</a></li>
  956. <li data-name="LuCI.form.TableSection#tab"><a href="LuCI.form.TableSection.html#tab">tab</a></li>
  957. <li data-name="LuCI.form.TableSection#taboption"><a href="LuCI.form.TableSection.html#taboption">taboption</a></li>
  958. <li data-name="LuCI.form.TableSection#titleFn"><a href="LuCI.form.TableSection.html#titleFn">titleFn</a></li>
  959. </ul>
  960. <ul class="events itemMembers">
  961. </ul>
  962. </li>
  963. <li class="item" data-name="LuCI.form.TextValue">
  964. <span class="title">
  965. <a href="LuCI.form.TextValue.html">LuCI.form.TextValue</a>
  966. </span>
  967. <ul class="members itemMembers">
  968. <span class="subtitle">Members</span>
  969. <li data-name="LuCI.form.TextValue##cols"><a href="LuCI.form.TextValue.html#cols">cols</a></li>
  970. <li data-name="LuCI.form.TextValue##monospace"><a href="LuCI.form.TextValue.html#monospace">monospace</a></li>
  971. <li data-name="LuCI.form.TextValue##rows"><a href="LuCI.form.TextValue.html#rows">rows</a></li>
  972. <li data-name="LuCI.form.TextValue##wrap"><a href="LuCI.form.TextValue.html#wrap">wrap</a></li>
  973. <li data-name="LuCI.form.TextValue#datatype"><a href="LuCI.form.TextValue.html#datatype">datatype</a></li>
  974. <li data-name="LuCI.form.TextValue#default"><a href="LuCI.form.TextValue.html#default">default</a></li>
  975. <li data-name="LuCI.form.TextValue#editable"><a href="LuCI.form.TextValue.html#editable">editable</a></li>
  976. <li data-name="LuCI.form.TextValue#modalonly"><a href="LuCI.form.TextValue.html#modalonly">modalonly</a></li>
  977. <li data-name="LuCI.form.TextValue#onchange"><a href="LuCI.form.TextValue.html#onchange">onchange</a></li>
  978. <li data-name="LuCI.form.TextValue#optional"><a href="LuCI.form.TextValue.html#optional">optional</a></li>
  979. <li data-name="LuCI.form.TextValue#password"><a href="LuCI.form.TextValue.html#password">password</a></li>
  980. <li data-name="LuCI.form.TextValue#placeholder"><a href="LuCI.form.TextValue.html#placeholder">placeholder</a></li>
  981. <li data-name="LuCI.form.TextValue#readonly"><a href="LuCI.form.TextValue.html#readonly">readonly</a></li>
  982. <li data-name="LuCI.form.TextValue#retain"><a href="LuCI.form.TextValue.html#retain">retain</a></li>
  983. <li data-name="LuCI.form.TextValue#rmempty"><a href="LuCI.form.TextValue.html#rmempty">rmempty</a></li>
  984. <li data-name="LuCI.form.TextValue#uciconfig"><a href="LuCI.form.TextValue.html#uciconfig">uciconfig</a></li>
  985. <li data-name="LuCI.form.TextValue#ucioption"><a href="LuCI.form.TextValue.html#ucioption">ucioption</a></li>
  986. <li data-name="LuCI.form.TextValue#ucisection"><a href="LuCI.form.TextValue.html#ucisection">ucisection</a></li>
  987. <li data-name="LuCI.form.TextValue#validate"><a href="LuCI.form.TextValue.html#validate">validate</a></li>
  988. <li data-name="LuCI.form.TextValue#width"><a href="LuCI.form.TextValue.html#width">width</a></li>
  989. </ul>
  990. <ul class="typedefs itemMembers">
  991. </ul>
  992. <ul class="typedefs itemMembers">
  993. </ul>
  994. <ul class="methods itemMembers">
  995. <span class="subtitle">Methods</span>
  996. <li data-name="LuCI.form.TextValue#append"><a href="LuCI.form.TextValue.html#append">append</a></li>
  997. <li data-name="LuCI.form.TextValue#cbid"><a href="LuCI.form.TextValue.html#cbid">cbid</a></li>
  998. <li data-name="LuCI.form.TextValue#cfgvalue"><a href="LuCI.form.TextValue.html#cfgvalue">cfgvalue</a></li>
  999. <li data-name="LuCI.form.TextValue#depends"><a href="LuCI.form.TextValue.html#depends">depends</a></li>
  1000. <li data-name="LuCI.form.TextValue#formvalue"><a href="LuCI.form.TextValue.html#formvalue">formvalue</a></li>
  1001. <li data-name="LuCI.form.TextValue#getUIElement"><a href="LuCI.form.TextValue.html#getUIElement">getUIElement</a></li>
  1002. <li data-name="LuCI.form.TextValue#getValidationError"><a href="LuCI.form.TextValue.html#getValidationError">getValidationError</a></li>
  1003. <li data-name="LuCI.form.TextValue#isActive"><a href="LuCI.form.TextValue.html#isActive">isActive</a></li>
  1004. <li data-name="LuCI.form.TextValue#isValid"><a href="LuCI.form.TextValue.html#isValid">isValid</a></li>
  1005. <li data-name="LuCI.form.TextValue#load"><a href="LuCI.form.TextValue.html#load">load</a></li>
  1006. <li data-name="LuCI.form.TextValue#parse"><a href="LuCI.form.TextValue.html#parse">parse</a></li>
  1007. <li data-name="LuCI.form.TextValue#remove"><a href="LuCI.form.TextValue.html#remove">remove</a></li>
  1008. <li data-name="LuCI.form.TextValue#stripTags"><a href="LuCI.form.TextValue.html#stripTags">stripTags</a></li>
  1009. <li data-name="LuCI.form.TextValue#textvalue"><a href="LuCI.form.TextValue.html#textvalue">textvalue</a></li>
  1010. <li data-name="LuCI.form.TextValue#titleFn"><a href="LuCI.form.TextValue.html#titleFn">titleFn</a></li>
  1011. <li data-name="LuCI.form.TextValue#write"><a href="LuCI.form.TextValue.html#write">write</a></li>
  1012. </ul>
  1013. <ul class="events itemMembers">
  1014. </ul>
  1015. </li>
  1016. <li class="item" data-name="LuCI.form.TypedSection">
  1017. <span class="title">
  1018. <a href="LuCI.form.TypedSection.html">LuCI.form.TypedSection</a>
  1019. </span>
  1020. <ul class="members itemMembers">
  1021. <span class="subtitle">Members</span>
  1022. <li data-name="LuCI.form.TypedSection##addbtntitle"><a href="LuCI.form.TypedSection.html#addbtntitle">addbtntitle</a></li>
  1023. <li data-name="LuCI.form.TypedSection##addremove"><a href="LuCI.form.TypedSection.html#addremove">addremove</a></li>
  1024. <li data-name="LuCI.form.TypedSection##anonymous"><a href="LuCI.form.TypedSection.html#anonymous">anonymous</a></li>
  1025. <li data-name="LuCI.form.TypedSection##cloneable"><a href="LuCI.form.TypedSection.html#cloneable">cloneable</a></li>
  1026. <li data-name="LuCI.form.TypedSection##tabbed"><a href="LuCI.form.TypedSection.html#tabbed">tabbed</a></li>
  1027. <li data-name="LuCI.form.TypedSection##uciconfig"><a href="LuCI.form.TypedSection.html#uciconfig">uciconfig</a></li>
  1028. <li data-name="LuCI.form.TypedSection#parentoption"><a href="LuCI.form.TypedSection.html#parentoption">parentoption</a></li>
  1029. </ul>
  1030. <ul class="typedefs itemMembers">
  1031. </ul>
  1032. <ul class="typedefs itemMembers">
  1033. </ul>
  1034. <ul class="methods itemMembers">
  1035. <span class="subtitle">Methods</span>
  1036. <li data-name="LuCI.form.TypedSection#append"><a href="LuCI.form.TypedSection.html#append">append</a></li>
  1037. <li data-name="LuCI.form.TypedSection#cfgsections"><a href="LuCI.form.TypedSection.html#cfgsections">cfgsections</a></li>
  1038. <li data-name="LuCI.form.TypedSection#cfgvalue"><a href="LuCI.form.TypedSection.html#cfgvalue">cfgvalue</a></li>
  1039. <li data-name="LuCI.form.TypedSection#filter"><a href="LuCI.form.TypedSection.html#filter">filter</a></li>
  1040. <li data-name="LuCI.form.TypedSection#formvalue"><a href="LuCI.form.TypedSection.html#formvalue">formvalue</a></li>
  1041. <li data-name="LuCI.form.TypedSection#getOption"><a href="LuCI.form.TypedSection.html#getOption">getOption</a></li>
  1042. <li data-name="LuCI.form.TypedSection#getUIElement"><a href="LuCI.form.TypedSection.html#getUIElement">getUIElement</a></li>
  1043. <li data-name="LuCI.form.TypedSection#load"><a href="LuCI.form.TypedSection.html#load">load</a></li>
  1044. <li data-name="LuCI.form.TypedSection#option"><a href="LuCI.form.TypedSection.html#option">option</a></li>
  1045. <li data-name="LuCI.form.TypedSection#parse"><a href="LuCI.form.TypedSection.html#parse">parse</a></li>
  1046. <li data-name="LuCI.form.TypedSection#render"><a href="LuCI.form.TypedSection.html#render">render</a></li>
  1047. <li data-name="LuCI.form.TypedSection#stripTags"><a href="LuCI.form.TypedSection.html#stripTags">stripTags</a></li>
  1048. <li data-name="LuCI.form.TypedSection#tab"><a href="LuCI.form.TypedSection.html#tab">tab</a></li>
  1049. <li data-name="LuCI.form.TypedSection#taboption"><a href="LuCI.form.TypedSection.html#taboption">taboption</a></li>
  1050. <li data-name="LuCI.form.TypedSection#titleFn"><a href="LuCI.form.TypedSection.html#titleFn">titleFn</a></li>
  1051. </ul>
  1052. <ul class="events itemMembers">
  1053. </ul>
  1054. </li>
  1055. <li class="item" data-name="LuCI.form.Value">
  1056. <span class="title">
  1057. <a href="LuCI.form.Value.html">LuCI.form.Value</a>
  1058. </span>
  1059. <ul class="members itemMembers">
  1060. <span class="subtitle">Members</span>
  1061. <li data-name="LuCI.form.Value##password"><a href="LuCI.form.Value.html#password">password</a></li>
  1062. <li data-name="LuCI.form.Value##placeholder"><a href="LuCI.form.Value.html#placeholder">placeholder</a></li>
  1063. <li data-name="LuCI.form.Value#datatype"><a href="LuCI.form.Value.html#datatype">datatype</a></li>
  1064. <li data-name="LuCI.form.Value#default"><a href="LuCI.form.Value.html#default">default</a></li>
  1065. <li data-name="LuCI.form.Value#editable"><a href="LuCI.form.Value.html#editable">editable</a></li>
  1066. <li data-name="LuCI.form.Value#modalonly"><a href="LuCI.form.Value.html#modalonly">modalonly</a></li>
  1067. <li data-name="LuCI.form.Value#onchange"><a href="LuCI.form.Value.html#onchange">onchange</a></li>
  1068. <li data-name="LuCI.form.Value#optional"><a href="LuCI.form.Value.html#optional">optional</a></li>
  1069. <li data-name="LuCI.form.Value#readonly"><a href="LuCI.form.Value.html#readonly">readonly</a></li>
  1070. <li data-name="LuCI.form.Value#retain"><a href="LuCI.form.Value.html#retain">retain</a></li>
  1071. <li data-name="LuCI.form.Value#rmempty"><a href="LuCI.form.Value.html#rmempty">rmempty</a></li>
  1072. <li data-name="LuCI.form.Value#uciconfig"><a href="LuCI.form.Value.html#uciconfig">uciconfig</a></li>
  1073. <li data-name="LuCI.form.Value#ucioption"><a href="LuCI.form.Value.html#ucioption">ucioption</a></li>
  1074. <li data-name="LuCI.form.Value#ucisection"><a href="LuCI.form.Value.html#ucisection">ucisection</a></li>
  1075. <li data-name="LuCI.form.Value#validate"><a href="LuCI.form.Value.html#validate">validate</a></li>
  1076. <li data-name="LuCI.form.Value#width"><a href="LuCI.form.Value.html#width">width</a></li>
  1077. </ul>
  1078. <ul class="typedefs itemMembers">
  1079. </ul>
  1080. <ul class="typedefs itemMembers">
  1081. </ul>
  1082. <ul class="methods itemMembers">
  1083. <span class="subtitle">Methods</span>
  1084. <li data-name="LuCI.form.Value#append"><a href="LuCI.form.Value.html#append">append</a></li>
  1085. <li data-name="LuCI.form.Value#cbid"><a href="LuCI.form.Value.html#cbid">cbid</a></li>
  1086. <li data-name="LuCI.form.Value#cfgvalue"><a href="LuCI.form.Value.html#cfgvalue">cfgvalue</a></li>
  1087. <li data-name="LuCI.form.Value#depends"><a href="LuCI.form.Value.html#depends">depends</a></li>
  1088. <li data-name="LuCI.form.Value#formvalue"><a href="LuCI.form.Value.html#formvalue">formvalue</a></li>
  1089. <li data-name="LuCI.form.Value#getUIElement"><a href="LuCI.form.Value.html#getUIElement">getUIElement</a></li>
  1090. <li data-name="LuCI.form.Value#getValidationError"><a href="LuCI.form.Value.html#getValidationError">getValidationError</a></li>
  1091. <li data-name="LuCI.form.Value#isActive"><a href="LuCI.form.Value.html#isActive">isActive</a></li>
  1092. <li data-name="LuCI.form.Value#isValid"><a href="LuCI.form.Value.html#isValid">isValid</a></li>
  1093. <li data-name="LuCI.form.Value#load"><a href="LuCI.form.Value.html#load">load</a></li>
  1094. <li data-name="LuCI.form.Value#parse"><a href="LuCI.form.Value.html#parse">parse</a></li>
  1095. <li data-name="LuCI.form.Value#remove"><a href="LuCI.form.Value.html#remove">remove</a></li>
  1096. <li data-name="LuCI.form.Value#render"><a href="LuCI.form.Value.html#render">render</a></li>
  1097. <li data-name="LuCI.form.Value#stripTags"><a href="LuCI.form.Value.html#stripTags">stripTags</a></li>
  1098. <li data-name="LuCI.form.Value#textvalue"><a href="LuCI.form.Value.html#textvalue">textvalue</a></li>
  1099. <li data-name="LuCI.form.Value#titleFn"><a href="LuCI.form.Value.html#titleFn">titleFn</a></li>
  1100. <li data-name="LuCI.form.Value#value"><a href="LuCI.form.Value.html#value">value</a></li>
  1101. <li data-name="LuCI.form.Value#write"><a href="LuCI.form.Value.html#write">write</a></li>
  1102. </ul>
  1103. <ul class="events itemMembers">
  1104. </ul>
  1105. </li>
  1106. <li class="item" data-name="LuCI.fs">
  1107. <span class="title">
  1108. <a href="LuCI.fs.html">LuCI.fs</a>
  1109. </span>
  1110. <ul class="members itemMembers">
  1111. </ul>
  1112. <ul class="typedefs itemMembers">
  1113. <span class="subtitle">Typedefs</span>
  1114. <li data-name="LuCI.fs.FileExecResult"><a href="LuCI.fs.html#.FileExecResult">FileExecResult</a></li>
  1115. <li data-name="LuCI.fs.FileStatEntry"><a href="LuCI.fs.html#.FileStatEntry">FileStatEntry</a></li>
  1116. </ul>
  1117. <ul class="typedefs itemMembers">
  1118. </ul>
  1119. <ul class="methods itemMembers">
  1120. <span class="subtitle">Methods</span>
  1121. <li data-name="LuCI.fs#exec"><a href="LuCI.fs.html#exec">exec</a></li>
  1122. <li data-name="LuCI.fs#exec_direct"><a href="LuCI.fs.html#exec_direct">exec_direct</a></li>
  1123. <li data-name="LuCI.fs#lines"><a href="LuCI.fs.html#lines">lines</a></li>
  1124. <li data-name="LuCI.fs#list"><a href="LuCI.fs.html#list">list</a></li>
  1125. <li data-name="LuCI.fs#read"><a href="LuCI.fs.html#read">read</a></li>
  1126. <li data-name="LuCI.fs#read_direct"><a href="LuCI.fs.html#read_direct">read_direct</a></li>
  1127. <li data-name="LuCI.fs#remove"><a href="LuCI.fs.html#remove">remove</a></li>
  1128. <li data-name="LuCI.fs#stat"><a href="LuCI.fs.html#stat">stat</a></li>
  1129. <li data-name="LuCI.fs#trimmed"><a href="LuCI.fs.html#trimmed">trimmed</a></li>
  1130. <li data-name="LuCI.fs#write"><a href="LuCI.fs.html#write">write</a></li>
  1131. </ul>
  1132. <ul class="events itemMembers">
  1133. </ul>
  1134. </li>
  1135. <li class="item" data-name="LuCI.headers">
  1136. <span class="title">
  1137. <a href="LuCI.headers.html">LuCI.headers</a>
  1138. </span>
  1139. <ul class="members itemMembers">
  1140. </ul>
  1141. <ul class="typedefs itemMembers">
  1142. </ul>
  1143. <ul class="typedefs itemMembers">
  1144. </ul>
  1145. <ul class="methods itemMembers">
  1146. <span class="subtitle">Methods</span>
  1147. <li data-name="LuCI.headers#get"><a href="LuCI.headers.html#get">get</a></li>
  1148. <li data-name="LuCI.headers#has"><a href="LuCI.headers.html#has">has</a></li>
  1149. </ul>
  1150. <ul class="events itemMembers">
  1151. </ul>
  1152. </li>
  1153. <li class="item" data-name="LuCI.network">
  1154. <span class="title">
  1155. <a href="LuCI.network.html">LuCI.network</a>
  1156. </span>
  1157. <ul class="members itemMembers">
  1158. </ul>
  1159. <ul class="typedefs itemMembers">
  1160. <span class="subtitle">Typedefs</span>
  1161. <li data-name="LuCI.network.SwitchTopology"><a href="LuCI.network.html#.SwitchTopology">SwitchTopology</a></li>
  1162. <li data-name="LuCI.network.WifiEncryption"><a href="LuCI.network.html#.WifiEncryption">WifiEncryption</a></li>
  1163. <li data-name="LuCI.network.WifiPeerEntry"><a href="LuCI.network.html#.WifiPeerEntry">WifiPeerEntry</a></li>
  1164. <li data-name="LuCI.network.WifiRateEntry"><a href="LuCI.network.html#.WifiRateEntry">WifiRateEntry</a></li>
  1165. <li data-name="LuCI.network.WifiScanResult"><a href="LuCI.network.html#.WifiScanResult">WifiScanResult</a></li>
  1166. </ul>
  1167. <ul class="typedefs itemMembers">
  1168. </ul>
  1169. <ul class="methods itemMembers">
  1170. <span class="subtitle">Methods</span>
  1171. <li data-name="LuCI.network#addNetwork"><a href="LuCI.network.html#addNetwork">addNetwork</a></li>
  1172. <li data-name="LuCI.network#addWifiNetwork"><a href="LuCI.network.html#addWifiNetwork">addWifiNetwork</a></li>
  1173. <li data-name="LuCI.network#deleteNetwork"><a href="LuCI.network.html#deleteNetwork">deleteNetwork</a></li>
  1174. <li data-name="LuCI.network#deleteWifiNetwork"><a href="LuCI.network.html#deleteWifiNetwork">deleteWifiNetwork</a></li>
  1175. <li data-name="LuCI.network#flushCache"><a href="LuCI.network.html#flushCache">flushCache</a></li>
  1176. <li data-name="LuCI.network#formatWifiEncryption"><a href="LuCI.network.html#formatWifiEncryption">formatWifiEncryption</a></li>
  1177. <li data-name="LuCI.network#getDevice"><a href="LuCI.network.html#getDevice">getDevice</a></li>
  1178. <li data-name="LuCI.network#getDevices"><a href="LuCI.network.html#getDevices">getDevices</a></li>
  1179. <li data-name="LuCI.network#getDSLModemType"><a href="LuCI.network.html#getDSLModemType">getDSLModemType</a></li>
  1180. <li data-name="LuCI.network#getHostHints"><a href="LuCI.network.html#getHostHints">getHostHints</a></li>
  1181. <li data-name="LuCI.network#getIfnameOf"><a href="LuCI.network.html#getIfnameOf">getIfnameOf</a></li>
  1182. <li data-name="LuCI.network#getNetwork"><a href="LuCI.network.html#getNetwork">getNetwork</a></li>
  1183. <li data-name="LuCI.network#getNetworks"><a href="LuCI.network.html#getNetworks">getNetworks</a></li>
  1184. <li data-name="LuCI.network#getProtocol"><a href="LuCI.network.html#getProtocol">getProtocol</a></li>
  1185. <li data-name="LuCI.network#getProtocols"><a href="LuCI.network.html#getProtocols">getProtocols</a></li>
  1186. <li data-name="LuCI.network#getSwitchTopologies"><a href="LuCI.network.html#getSwitchTopologies">getSwitchTopologies</a></li>
  1187. <li data-name="LuCI.network#getWAN6Networks"><a href="LuCI.network.html#getWAN6Networks">getWAN6Networks</a></li>
  1188. <li data-name="LuCI.network#getWANNetworks"><a href="LuCI.network.html#getWANNetworks">getWANNetworks</a></li>
  1189. <li data-name="LuCI.network#getWifiDevice"><a href="LuCI.network.html#getWifiDevice">getWifiDevice</a></li>
  1190. <li data-name="LuCI.network#getWifiDevices"><a href="LuCI.network.html#getWifiDevices">getWifiDevices</a></li>
  1191. <li data-name="LuCI.network#getWifiNetwork"><a href="LuCI.network.html#getWifiNetwork">getWifiNetwork</a></li>
  1192. <li data-name="LuCI.network#getWifiNetworks"><a href="LuCI.network.html#getWifiNetworks">getWifiNetworks</a></li>
  1193. <li data-name="LuCI.network#isIgnoredDevice"><a href="LuCI.network.html#isIgnoredDevice">isIgnoredDevice</a></li>
  1194. <li data-name="LuCI.network#maskToPrefix"><a href="LuCI.network.html#maskToPrefix">maskToPrefix</a></li>
  1195. <li data-name="LuCI.network#prefixToMask"><a href="LuCI.network.html#prefixToMask">prefixToMask</a></li>
  1196. <li data-name="LuCI.network#registerErrorCode"><a href="LuCI.network.html#registerErrorCode">registerErrorCode</a></li>
  1197. <li data-name="LuCI.network#registerPatternVirtual"><a href="LuCI.network.html#registerPatternVirtual">registerPatternVirtual</a></li>
  1198. <li data-name="LuCI.network#registerProtocol"><a href="LuCI.network.html#registerProtocol">registerProtocol</a></li>
  1199. <li data-name="LuCI.network#renameNetwork"><a href="LuCI.network.html#renameNetwork">renameNetwork</a></li>
  1200. </ul>
  1201. <ul class="events itemMembers">
  1202. </ul>
  1203. </li>
  1204. <li class="item" data-name="LuCI.network.Device">
  1205. <span class="title">
  1206. <a href="LuCI.network.Device.html">LuCI.network.Device</a>
  1207. </span>
  1208. <ul class="members itemMembers">
  1209. </ul>
  1210. <ul class="typedefs itemMembers">
  1211. </ul>
  1212. <ul class="typedefs itemMembers">
  1213. </ul>
  1214. <ul class="methods itemMembers">
  1215. <span class="subtitle">Methods</span>
  1216. <li data-name="LuCI.network.Device#getBridgeID"><a href="LuCI.network.Device.html#getBridgeID">getBridgeID</a></li>
  1217. <li data-name="LuCI.network.Device#getBridgeSTP"><a href="LuCI.network.Device.html#getBridgeSTP">getBridgeSTP</a></li>
  1218. <li data-name="LuCI.network.Device#getCarrier"><a href="LuCI.network.Device.html#getCarrier">getCarrier</a></li>
  1219. <li data-name="LuCI.network.Device#getDuplex"><a href="LuCI.network.Device.html#getDuplex">getDuplex</a></li>
  1220. <li data-name="LuCI.network.Device#getI18n"><a href="LuCI.network.Device.html#getI18n">getI18n</a></li>
  1221. <li data-name="LuCI.network.Device#getIP6Addrs"><a href="LuCI.network.Device.html#getIP6Addrs">getIP6Addrs</a></li>
  1222. <li data-name="LuCI.network.Device#getIPAddrs"><a href="LuCI.network.Device.html#getIPAddrs">getIPAddrs</a></li>
  1223. <li data-name="LuCI.network.Device#getMAC"><a href="LuCI.network.Device.html#getMAC">getMAC</a></li>
  1224. <li data-name="LuCI.network.Device#getMTU"><a href="LuCI.network.Device.html#getMTU">getMTU</a></li>
  1225. <li data-name="LuCI.network.Device#getName"><a href="LuCI.network.Device.html#getName">getName</a></li>
  1226. <li data-name="LuCI.network.Device#getNetwork"><a href="LuCI.network.Device.html#getNetwork">getNetwork</a></li>
  1227. <li data-name="LuCI.network.Device#getNetworks"><a href="LuCI.network.Device.html#getNetworks">getNetworks</a></li>
  1228. <li data-name="LuCI.network.Device#getParent"><a href="LuCI.network.Device.html#getParent">getParent</a></li>
  1229. <li data-name="LuCI.network.Device#getPorts"><a href="LuCI.network.Device.html#getPorts">getPorts</a></li>
  1230. <li data-name="LuCI.network.Device#getRXBytes"><a href="LuCI.network.Device.html#getRXBytes">getRXBytes</a></li>
  1231. <li data-name="LuCI.network.Device#getRXPackets"><a href="LuCI.network.Device.html#getRXPackets">getRXPackets</a></li>
  1232. <li data-name="LuCI.network.Device#getShortName"><a href="LuCI.network.Device.html#getShortName">getShortName</a></li>
  1233. <li data-name="LuCI.network.Device#getSpeed"><a href="LuCI.network.Device.html#getSpeed">getSpeed</a></li>
  1234. <li data-name="LuCI.network.Device#getTXBytes"><a href="LuCI.network.Device.html#getTXBytes">getTXBytes</a></li>
  1235. <li data-name="LuCI.network.Device#getTXPackets"><a href="LuCI.network.Device.html#getTXPackets">getTXPackets</a></li>
  1236. <li data-name="LuCI.network.Device#getType"><a href="LuCI.network.Device.html#getType">getType</a></li>
  1237. <li data-name="LuCI.network.Device#getTypeI18n"><a href="LuCI.network.Device.html#getTypeI18n">getTypeI18n</a></li>
  1238. <li data-name="LuCI.network.Device#getWifiNetwork"><a href="LuCI.network.Device.html#getWifiNetwork">getWifiNetwork</a></li>
  1239. <li data-name="LuCI.network.Device#isBridge"><a href="LuCI.network.Device.html#isBridge">isBridge</a></li>
  1240. <li data-name="LuCI.network.Device#isBridgePort"><a href="LuCI.network.Device.html#isBridgePort">isBridgePort</a></li>
  1241. <li data-name="LuCI.network.Device#isUp"><a href="LuCI.network.Device.html#isUp">isUp</a></li>
  1242. </ul>
  1243. <ul class="events itemMembers">
  1244. </ul>
  1245. </li>
  1246. <li class="item" data-name="LuCI.network.Hosts">
  1247. <span class="title">
  1248. <a href="LuCI.network.Hosts.html">LuCI.network.Hosts</a>
  1249. </span>
  1250. <ul class="members itemMembers">
  1251. </ul>
  1252. <ul class="typedefs itemMembers">
  1253. </ul>
  1254. <ul class="typedefs itemMembers">
  1255. </ul>
  1256. <ul class="methods itemMembers">
  1257. <span class="subtitle">Methods</span>
  1258. <li data-name="LuCI.network.Hosts#getHostnameByIP6Addr"><a href="LuCI.network.Hosts.html#getHostnameByIP6Addr">getHostnameByIP6Addr</a></li>
  1259. <li data-name="LuCI.network.Hosts#getHostnameByIPAddr"><a href="LuCI.network.Hosts.html#getHostnameByIPAddr">getHostnameByIPAddr</a></li>
  1260. <li data-name="LuCI.network.Hosts#getHostnameByMACAddr"><a href="LuCI.network.Hosts.html#getHostnameByMACAddr">getHostnameByMACAddr</a></li>
  1261. <li data-name="LuCI.network.Hosts#getIP6AddrByMACAddr"><a href="LuCI.network.Hosts.html#getIP6AddrByMACAddr">getIP6AddrByMACAddr</a></li>
  1262. <li data-name="LuCI.network.Hosts#getIPAddrByMACAddr"><a href="LuCI.network.Hosts.html#getIPAddrByMACAddr">getIPAddrByMACAddr</a></li>
  1263. <li data-name="LuCI.network.Hosts#getMACAddrByIP6Addr"><a href="LuCI.network.Hosts.html#getMACAddrByIP6Addr">getMACAddrByIP6Addr</a></li>
  1264. <li data-name="LuCI.network.Hosts#getMACAddrByIPAddr"><a href="LuCI.network.Hosts.html#getMACAddrByIPAddr">getMACAddrByIPAddr</a></li>
  1265. <li data-name="LuCI.network.Hosts#getMACHints"><a href="LuCI.network.Hosts.html#getMACHints">getMACHints</a></li>
  1266. </ul>
  1267. <ul class="events itemMembers">
  1268. </ul>
  1269. </li>
  1270. <li class="item" data-name="LuCI.network.Protocol">
  1271. <span class="title">
  1272. <a href="LuCI.network.Protocol.html">LuCI.network.Protocol</a>
  1273. </span>
  1274. <ul class="members itemMembers">
  1275. </ul>
  1276. <ul class="typedefs itemMembers">
  1277. </ul>
  1278. <ul class="typedefs itemMembers">
  1279. </ul>
  1280. <ul class="methods itemMembers">
  1281. <span class="subtitle">Methods</span>
  1282. <li data-name="LuCI.network.Protocol#addDevice"><a href="LuCI.network.Protocol.html#addDevice">addDevice</a></li>
  1283. <li data-name="LuCI.network.Protocol#containsDevice"><a href="LuCI.network.Protocol.html#containsDevice">containsDevice</a></li>
  1284. <li data-name="LuCI.network.Protocol#deleteConfiguration"><a href="LuCI.network.Protocol.html#deleteConfiguration">deleteConfiguration</a></li>
  1285. <li data-name="LuCI.network.Protocol#deleteDevice"><a href="LuCI.network.Protocol.html#deleteDevice">deleteDevice</a></li>
  1286. <li data-name="LuCI.network.Protocol#get"><a href="LuCI.network.Protocol.html#get">get</a></li>
  1287. <li data-name="LuCI.network.Protocol#getDevice"><a href="LuCI.network.Protocol.html#getDevice">getDevice</a></li>
  1288. <li data-name="LuCI.network.Protocol#getDevices"><a href="LuCI.network.Protocol.html#getDevices">getDevices</a></li>
  1289. <li data-name="LuCI.network.Protocol#getDNS6Addrs"><a href="LuCI.network.Protocol.html#getDNS6Addrs">getDNS6Addrs</a></li>
  1290. <li data-name="LuCI.network.Protocol#getDNSAddrs"><a href="LuCI.network.Protocol.html#getDNSAddrs">getDNSAddrs</a></li>
  1291. <li data-name="LuCI.network.Protocol#getErrors"><a href="LuCI.network.Protocol.html#getErrors">getErrors</a></li>
  1292. <li data-name="LuCI.network.Protocol#getExpiry"><a href="LuCI.network.Protocol.html#getExpiry">getExpiry</a></li>
  1293. <li data-name="LuCI.network.Protocol#getGateway6Addr"><a href="LuCI.network.Protocol.html#getGateway6Addr">getGateway6Addr</a></li>
  1294. <li data-name="LuCI.network.Protocol#getGatewayAddr"><a href="LuCI.network.Protocol.html#getGatewayAddr">getGatewayAddr</a></li>
  1295. <li data-name="LuCI.network.Protocol#getI18n"><a href="LuCI.network.Protocol.html#getI18n">getI18n</a></li>
  1296. <li data-name="LuCI.network.Protocol#getIfname"><a href="LuCI.network.Protocol.html#getIfname">getIfname</a></li>
  1297. <li data-name="LuCI.network.Protocol#getIP6Addr"><a href="LuCI.network.Protocol.html#getIP6Addr">getIP6Addr</a></li>
  1298. <li data-name="LuCI.network.Protocol#getIP6Addrs"><a href="LuCI.network.Protocol.html#getIP6Addrs">getIP6Addrs</a></li>
  1299. <li data-name="LuCI.network.Protocol#getIP6Prefix"><a href="LuCI.network.Protocol.html#getIP6Prefix">getIP6Prefix</a></li>
  1300. <li data-name="LuCI.network.Protocol#getIP6Prefixes"><a href="LuCI.network.Protocol.html#getIP6Prefixes">getIP6Prefixes</a></li>
  1301. <li data-name="LuCI.network.Protocol#getIPAddr"><a href="LuCI.network.Protocol.html#getIPAddr">getIPAddr</a></li>
  1302. <li data-name="LuCI.network.Protocol#getIPAddrs"><a href="LuCI.network.Protocol.html#getIPAddrs">getIPAddrs</a></li>
  1303. <li data-name="LuCI.network.Protocol#getL2Device"><a href="LuCI.network.Protocol.html#getL2Device">getL2Device</a></li>
  1304. <li data-name="LuCI.network.Protocol#getL3Device"><a href="LuCI.network.Protocol.html#getL3Device">getL3Device</a></li>
  1305. <li data-name="LuCI.network.Protocol#getMetric"><a href="LuCI.network.Protocol.html#getMetric">getMetric</a></li>
  1306. <li data-name="LuCI.network.Protocol#getName"><a href="LuCI.network.Protocol.html#getName">getName</a></li>
  1307. <li data-name="LuCI.network.Protocol#getNetmask"><a href="LuCI.network.Protocol.html#getNetmask">getNetmask</a></li>
  1308. <li data-name="LuCI.network.Protocol#getOpkgPackage"><a href="LuCI.network.Protocol.html#getOpkgPackage">getOpkgPackage</a></li>
  1309. <li data-name="LuCI.network.Protocol#getProtocol"><a href="LuCI.network.Protocol.html#getProtocol">getProtocol</a></li>
  1310. <li data-name="LuCI.network.Protocol#getType"><a href="LuCI.network.Protocol.html#getType">getType</a></li>
  1311. <li data-name="LuCI.network.Protocol#getUptime"><a href="LuCI.network.Protocol.html#getUptime">getUptime</a></li>
  1312. <li data-name="LuCI.network.Protocol#getZoneName"><a href="LuCI.network.Protocol.html#getZoneName">getZoneName</a></li>
  1313. <li data-name="LuCI.network.Protocol#isAlias"><a href="LuCI.network.Protocol.html#isAlias">isAlias</a></li>
  1314. <li data-name="LuCI.network.Protocol#isBridge"><a href="LuCI.network.Protocol.html#isBridge">isBridge</a></li>
  1315. <li data-name="LuCI.network.Protocol#isCreateable"><a href="LuCI.network.Protocol.html#isCreateable">isCreateable</a></li>
  1316. <li data-name="LuCI.network.Protocol#isDynamic"><a href="LuCI.network.Protocol.html#isDynamic">isDynamic</a></li>
  1317. <li data-name="LuCI.network.Protocol#isEmpty"><a href="LuCI.network.Protocol.html#isEmpty">isEmpty</a></li>
  1318. <li data-name="LuCI.network.Protocol#isFloating"><a href="LuCI.network.Protocol.html#isFloating">isFloating</a></li>
  1319. <li data-name="LuCI.network.Protocol#isInstalled"><a href="LuCI.network.Protocol.html#isInstalled">isInstalled</a></li>
  1320. <li data-name="LuCI.network.Protocol#isUp"><a href="LuCI.network.Protocol.html#isUp">isUp</a></li>
  1321. <li data-name="LuCI.network.Protocol#isVirtual"><a href="LuCI.network.Protocol.html#isVirtual">isVirtual</a></li>
  1322. <li data-name="LuCI.network.Protocol#set"><a href="LuCI.network.Protocol.html#set">set</a></li>
  1323. </ul>
  1324. <ul class="events itemMembers">
  1325. </ul>
  1326. </li>
  1327. <li class="item" data-name="LuCI.network.WifiDevice">
  1328. <span class="title">
  1329. <a href="LuCI.network.WifiDevice.html">LuCI.network.WifiDevice</a>
  1330. </span>
  1331. <ul class="members itemMembers">
  1332. </ul>
  1333. <ul class="typedefs itemMembers">
  1334. </ul>
  1335. <ul class="typedefs itemMembers">
  1336. </ul>
  1337. <ul class="methods itemMembers">
  1338. <span class="subtitle">Methods</span>
  1339. <li data-name="LuCI.network.WifiDevice#addWifiNetwork"><a href="LuCI.network.WifiDevice.html#addWifiNetwork">addWifiNetwork</a></li>
  1340. <li data-name="LuCI.network.WifiDevice#deleteWifiNetwork"><a href="LuCI.network.WifiDevice.html#deleteWifiNetwork">deleteWifiNetwork</a></li>
  1341. <li data-name="LuCI.network.WifiDevice#get"><a href="LuCI.network.WifiDevice.html#get">get</a></li>
  1342. <li data-name="LuCI.network.WifiDevice#getHTModes"><a href="LuCI.network.WifiDevice.html#getHTModes">getHTModes</a></li>
  1343. <li data-name="LuCI.network.WifiDevice#getHWModes"><a href="LuCI.network.WifiDevice.html#getHWModes">getHWModes</a></li>
  1344. <li data-name="LuCI.network.WifiDevice#getI18n"><a href="LuCI.network.WifiDevice.html#getI18n">getI18n</a></li>
  1345. <li data-name="LuCI.network.WifiDevice#getName"><a href="LuCI.network.WifiDevice.html#getName">getName</a></li>
  1346. <li data-name="LuCI.network.WifiDevice#getScanList"><a href="LuCI.network.WifiDevice.html#getScanList">getScanList</a></li>
  1347. <li data-name="LuCI.network.WifiDevice#getWifiNetwork"><a href="LuCI.network.WifiDevice.html#getWifiNetwork">getWifiNetwork</a></li>
  1348. <li data-name="LuCI.network.WifiDevice#getWifiNetworks"><a href="LuCI.network.WifiDevice.html#getWifiNetworks">getWifiNetworks</a></li>
  1349. <li data-name="LuCI.network.WifiDevice#isDisabled"><a href="LuCI.network.WifiDevice.html#isDisabled">isDisabled</a></li>
  1350. <li data-name="LuCI.network.WifiDevice#isUp"><a href="LuCI.network.WifiDevice.html#isUp">isUp</a></li>
  1351. <li data-name="LuCI.network.WifiDevice#set"><a href="LuCI.network.WifiDevice.html#set">set</a></li>
  1352. </ul>
  1353. <ul class="events itemMembers">
  1354. </ul>
  1355. </li>
  1356. <li class="item" data-name="LuCI.network.WifiNetwork">
  1357. <span class="title">
  1358. <a href="LuCI.network.WifiNetwork.html">LuCI.network.WifiNetwork</a>
  1359. </span>
  1360. <ul class="members itemMembers">
  1361. </ul>
  1362. <ul class="typedefs itemMembers">
  1363. </ul>
  1364. <ul class="typedefs itemMembers">
  1365. </ul>
  1366. <ul class="methods itemMembers">
  1367. <span class="subtitle">Methods</span>
  1368. <li data-name="LuCI.network.WifiNetwork#disconnectClient"><a href="LuCI.network.WifiNetwork.html#disconnectClient">disconnectClient</a></li>
  1369. <li data-name="LuCI.network.WifiNetwork#get"><a href="LuCI.network.WifiNetwork.html#get">get</a></li>
  1370. <li data-name="LuCI.network.WifiNetwork#getActiveBSSID"><a href="LuCI.network.WifiNetwork.html#getActiveBSSID">getActiveBSSID</a></li>
  1371. <li data-name="LuCI.network.WifiNetwork#getActiveEncryption"><a href="LuCI.network.WifiNetwork.html#getActiveEncryption">getActiveEncryption</a></li>
  1372. <li data-name="LuCI.network.WifiNetwork#getActiveMode"><a href="LuCI.network.WifiNetwork.html#getActiveMode">getActiveMode</a></li>
  1373. <li data-name="LuCI.network.WifiNetwork#getActiveModeI18n"><a href="LuCI.network.WifiNetwork.html#getActiveModeI18n">getActiveModeI18n</a></li>
  1374. <li data-name="LuCI.network.WifiNetwork#getActiveSSID"><a href="LuCI.network.WifiNetwork.html#getActiveSSID">getActiveSSID</a></li>
  1375. <li data-name="LuCI.network.WifiNetwork#getAssocList"><a href="LuCI.network.WifiNetwork.html#getAssocList">getAssocList</a></li>
  1376. <li data-name="LuCI.network.WifiNetwork#getBitRate"><a href="LuCI.network.WifiNetwork.html#getBitRate">getBitRate</a></li>
  1377. <li data-name="LuCI.network.WifiNetwork#getBSSID"><a href="LuCI.network.WifiNetwork.html#getBSSID">getBSSID</a></li>
  1378. <li data-name="LuCI.network.WifiNetwork#getChannel"><a href="LuCI.network.WifiNetwork.html#getChannel">getChannel</a></li>
  1379. <li data-name="LuCI.network.WifiNetwork#getCountryCode"><a href="LuCI.network.WifiNetwork.html#getCountryCode">getCountryCode</a></li>
  1380. <li data-name="LuCI.network.WifiNetwork#getDevice"><a href="LuCI.network.WifiNetwork.html#getDevice">getDevice</a></li>
  1381. <li data-name="LuCI.network.WifiNetwork#getFrequency"><a href="LuCI.network.WifiNetwork.html#getFrequency">getFrequency</a></li>
  1382. <li data-name="LuCI.network.WifiNetwork#getI18n"><a href="LuCI.network.WifiNetwork.html#getI18n">getI18n</a></li>
  1383. <li data-name="LuCI.network.WifiNetwork#getID"><a href="LuCI.network.WifiNetwork.html#getID">getID</a></li>
  1384. <li data-name="LuCI.network.WifiNetwork#getIfname"><a href="LuCI.network.WifiNetwork.html#getIfname">getIfname</a></li>
  1385. <li data-name="LuCI.network.WifiNetwork#getMeshID"><a href="LuCI.network.WifiNetwork.html#getMeshID">getMeshID</a></li>
  1386. <li data-name="LuCI.network.WifiNetwork#getMode"><a href="LuCI.network.WifiNetwork.html#getMode">getMode</a></li>
  1387. <li data-name="LuCI.network.WifiNetwork#getName"><a href="LuCI.network.WifiNetwork.html#getName">getName</a></li>
  1388. <li data-name="LuCI.network.WifiNetwork#getNetwork"><a href="LuCI.network.WifiNetwork.html#getNetwork">getNetwork</a></li>
  1389. <li data-name="LuCI.network.WifiNetwork#getNetworkNames"><a href="LuCI.network.WifiNetwork.html#getNetworkNames">getNetworkNames</a></li>
  1390. <li data-name="LuCI.network.WifiNetwork#getNetworks"><a href="LuCI.network.WifiNetwork.html#getNetworks">getNetworks</a></li>
  1391. <li data-name="LuCI.network.WifiNetwork#getNoise"><a href="LuCI.network.WifiNetwork.html#getNoise">getNoise</a></li>
  1392. <li data-name="LuCI.network.WifiNetwork#getShortName"><a href="LuCI.network.WifiNetwork.html#getShortName">getShortName</a></li>
  1393. <li data-name="LuCI.network.WifiNetwork#getSignal"><a href="LuCI.network.WifiNetwork.html#getSignal">getSignal</a></li>
  1394. <li data-name="LuCI.network.WifiNetwork#getSignalLevel"><a href="LuCI.network.WifiNetwork.html#getSignalLevel">getSignalLevel</a></li>
  1395. <li data-name="LuCI.network.WifiNetwork#getSignalPercent"><a href="LuCI.network.WifiNetwork.html#getSignalPercent">getSignalPercent</a></li>
  1396. <li data-name="LuCI.network.WifiNetwork#getSSID"><a href="LuCI.network.WifiNetwork.html#getSSID">getSSID</a></li>
  1397. <li data-name="LuCI.network.WifiNetwork#getTXPower"><a href="LuCI.network.WifiNetwork.html#getTXPower">getTXPower</a></li>
  1398. <li data-name="LuCI.network.WifiNetwork#getTXPowerOffset"><a href="LuCI.network.WifiNetwork.html#getTXPowerOffset">getTXPowerOffset</a></li>
  1399. <li data-name="LuCI.network.WifiNetwork#getVlanIfnames"><a href="LuCI.network.WifiNetwork.html#getVlanIfnames">getVlanIfnames</a></li>
  1400. <li data-name="LuCI.network.WifiNetwork#getWifiDevice"><a href="LuCI.network.WifiNetwork.html#getWifiDevice">getWifiDevice</a></li>
  1401. <li data-name="LuCI.network.WifiNetwork#getWifiDeviceName"><a href="LuCI.network.WifiNetwork.html#getWifiDeviceName">getWifiDeviceName</a></li>
  1402. <li data-name="LuCI.network.WifiNetwork#isClientDisconnectSupported"><a href="LuCI.network.WifiNetwork.html#isClientDisconnectSupported">isClientDisconnectSupported</a></li>
  1403. <li data-name="LuCI.network.WifiNetwork#isDisabled"><a href="LuCI.network.WifiNetwork.html#isDisabled">isDisabled</a></li>
  1404. <li data-name="LuCI.network.WifiNetwork#isUp"><a href="LuCI.network.WifiNetwork.html#isUp">isUp</a></li>
  1405. <li data-name="LuCI.network.WifiNetwork#set"><a href="LuCI.network.WifiNetwork.html#set">set</a></li>
  1406. </ul>
  1407. <ul class="events itemMembers">
  1408. </ul>
  1409. </li>
  1410. <li class="item" data-name="LuCI.poll">
  1411. <span class="title">
  1412. <a href="LuCI.poll.html">LuCI.poll</a>
  1413. </span>
  1414. <ul class="members itemMembers">
  1415. </ul>
  1416. <ul class="typedefs itemMembers">
  1417. </ul>
  1418. <ul class="typedefs itemMembers">
  1419. </ul>
  1420. <ul class="methods itemMembers">
  1421. <span class="subtitle">Methods</span>
  1422. <li data-name="LuCI.poll#active"><a href="LuCI.poll.html#active">active</a></li>
  1423. <li data-name="LuCI.poll#add"><a href="LuCI.poll.html#add">add</a></li>
  1424. <li data-name="LuCI.poll#remove"><a href="LuCI.poll.html#remove">remove</a></li>
  1425. <li data-name="LuCI.poll#start"><a href="LuCI.poll.html#start">start</a></li>
  1426. <li data-name="LuCI.poll#stop"><a href="LuCI.poll.html#stop">stop</a></li>
  1427. </ul>
  1428. <ul class="events itemMembers">
  1429. </ul>
  1430. </li>
  1431. <li class="item" data-name="LuCI.request">
  1432. <span class="title">
  1433. <a href="LuCI.request.html">LuCI.request</a>
  1434. </span>
  1435. <ul class="members itemMembers">
  1436. </ul>
  1437. <ul class="typedefs itemMembers">
  1438. <span class="subtitle">Typedefs</span>
  1439. <li data-name="LuCI.request.interceptorFn"><a href="LuCI.request.html#.interceptorFn">interceptorFn</a></li>
  1440. <li data-name="LuCI.request.RequestOptions"><a href="LuCI.request.html#.RequestOptions">RequestOptions</a></li>
  1441. </ul>
  1442. <ul class="typedefs itemMembers">
  1443. </ul>
  1444. <ul class="methods itemMembers">
  1445. <span class="subtitle">Methods</span>
  1446. <li data-name="LuCI.request#addInterceptor"><a href="LuCI.request.html#addInterceptor">addInterceptor</a></li>
  1447. <li data-name="LuCI.request#expandURL"><a href="LuCI.request.html#expandURL">expandURL</a></li>
  1448. <li data-name="LuCI.request#get"><a href="LuCI.request.html#get">get</a></li>
  1449. <li data-name="LuCI.request#post"><a href="LuCI.request.html#post">post</a></li>
  1450. <li data-name="LuCI.request#removeInterceptor"><a href="LuCI.request.html#removeInterceptor">removeInterceptor</a></li>
  1451. <li data-name="LuCI.request#request"><a href="LuCI.request.html#request">request</a></li>
  1452. </ul>
  1453. <ul class="events itemMembers">
  1454. </ul>
  1455. </li>
  1456. <li class="item" data-name="LuCI.request.poll">
  1457. <span class="title">
  1458. <a href="LuCI.request.poll.html">LuCI.request.poll</a>
  1459. </span>
  1460. <ul class="members itemMembers">
  1461. </ul>
  1462. <ul class="typedefs itemMembers">
  1463. <span class="subtitle">Typedefs</span>
  1464. <li data-name="LuCI.request.poll~callbackFn"><a href="LuCI.request.poll.html#~callbackFn">callbackFn</a></li>
  1465. </ul>
  1466. <ul class="typedefs itemMembers">
  1467. </ul>
  1468. <ul class="methods itemMembers">
  1469. <span class="subtitle">Methods</span>
  1470. <li data-name="LuCI.request.poll#active"><a href="LuCI.request.poll.html#active">active</a></li>
  1471. <li data-name="LuCI.request.poll#add"><a href="LuCI.request.poll.html#add">add</a></li>
  1472. <li data-name="LuCI.request.poll#remove"><a href="LuCI.request.poll.html#remove">remove</a></li>
  1473. <li data-name="LuCI.request.poll#start"><a href="LuCI.request.poll.html#start">start</a></li>
  1474. <li data-name="LuCI.request.poll#stop"><a href="LuCI.request.poll.html#stop">stop</a></li>
  1475. </ul>
  1476. <ul class="events itemMembers">
  1477. </ul>
  1478. </li>
  1479. <li class="item" data-name="LuCI.response">
  1480. <span class="title">
  1481. <a href="LuCI.response.html">LuCI.response</a>
  1482. </span>
  1483. <ul class="members itemMembers">
  1484. <span class="subtitle">Members</span>
  1485. <li data-name="LuCI.response#duration"><a href="LuCI.response.html#duration">duration</a></li>
  1486. <li data-name="LuCI.response#headers"><a href="LuCI.response.html#headers">headers</a></li>
  1487. <li data-name="LuCI.response#ok"><a href="LuCI.response.html#ok">ok</a></li>
  1488. <li data-name="LuCI.response#status"><a href="LuCI.response.html#status">status</a></li>
  1489. <li data-name="LuCI.response#statusText"><a href="LuCI.response.html#statusText">statusText</a></li>
  1490. <li data-name="LuCI.response#url"><a href="LuCI.response.html#url">url</a></li>
  1491. </ul>
  1492. <ul class="typedefs itemMembers">
  1493. </ul>
  1494. <ul class="typedefs itemMembers">
  1495. </ul>
  1496. <ul class="methods itemMembers">
  1497. <span class="subtitle">Methods</span>
  1498. <li data-name="LuCI.response#blob"><a href="LuCI.response.html#blob">blob</a></li>
  1499. <li data-name="LuCI.response#clone"><a href="LuCI.response.html#clone">clone</a></li>
  1500. <li data-name="LuCI.response#json"><a href="LuCI.response.html#json">json</a></li>
  1501. <li data-name="LuCI.response#text"><a href="LuCI.response.html#text">text</a></li>
  1502. </ul>
  1503. <ul class="events itemMembers">
  1504. </ul>
  1505. </li>
  1506. <li class="item" data-name="LuCI.rpc">
  1507. <span class="title">
  1508. <a href="LuCI.rpc.html">LuCI.rpc</a>
  1509. </span>
  1510. <ul class="members itemMembers">
  1511. </ul>
  1512. <ul class="typedefs itemMembers">
  1513. <span class="subtitle">Typedefs</span>
  1514. <li data-name="LuCI.rpc.DeclareOptions"><a href="LuCI.rpc.html#.DeclareOptions">DeclareOptions</a></li>
  1515. <li data-name="LuCI.rpc~filterFn"><a href="LuCI.rpc.html#~filterFn">filterFn</a></li>
  1516. <li data-name="LuCI.rpc~interceptorFn"><a href="LuCI.rpc.html#~interceptorFn">interceptorFn</a></li>
  1517. <li data-name="LuCI.rpc~invokeFn"><a href="LuCI.rpc.html#~invokeFn">invokeFn</a></li>
  1518. </ul>
  1519. <ul class="typedefs itemMembers">
  1520. </ul>
  1521. <ul class="methods itemMembers">
  1522. <span class="subtitle">Methods</span>
  1523. <li data-name="LuCI.rpc#addInterceptor"><a href="LuCI.rpc.html#addInterceptor">addInterceptor</a></li>
  1524. <li data-name="LuCI.rpc#declare"><a href="LuCI.rpc.html#declare">declare</a></li>
  1525. <li data-name="LuCI.rpc#getBaseURL"><a href="LuCI.rpc.html#getBaseURL">getBaseURL</a></li>
  1526. <li data-name="LuCI.rpc#getSessionID"><a href="LuCI.rpc.html#getSessionID">getSessionID</a></li>
  1527. <li data-name="LuCI.rpc#getStatusText"><a href="LuCI.rpc.html#getStatusText">getStatusText</a></li>
  1528. <li data-name="LuCI.rpc#list"><a href="LuCI.rpc.html#list">list</a></li>
  1529. <li data-name="LuCI.rpc#removeInterceptor"><a href="LuCI.rpc.html#removeInterceptor">removeInterceptor</a></li>
  1530. <li data-name="LuCI.rpc#setBaseURL"><a href="LuCI.rpc.html#setBaseURL">setBaseURL</a></li>
  1531. <li data-name="LuCI.rpc#setSessionID"><a href="LuCI.rpc.html#setSessionID">setSessionID</a></li>
  1532. </ul>
  1533. <ul class="events itemMembers">
  1534. </ul>
  1535. </li>
  1536. <li class="item" data-name="LuCI.session">
  1537. <span class="title">
  1538. <a href="LuCI.session.html">LuCI.session</a>
  1539. </span>
  1540. <ul class="members itemMembers">
  1541. </ul>
  1542. <ul class="typedefs itemMembers">
  1543. </ul>
  1544. <ul class="typedefs itemMembers">
  1545. </ul>
  1546. <ul class="methods itemMembers">
  1547. <span class="subtitle">Methods</span>
  1548. <li data-name="LuCI.session#getID"><a href="LuCI.session.html#getID">getID</a></li>
  1549. <li data-name="LuCI.session#getLocalData"><a href="LuCI.session.html#getLocalData">getLocalData</a></li>
  1550. <li data-name="LuCI.session#getToken"><a href="LuCI.session.html#getToken">getToken</a></li>
  1551. <li data-name="LuCI.session#setLocalData"><a href="LuCI.session.html#setLocalData">setLocalData</a></li>
  1552. </ul>
  1553. <ul class="events itemMembers">
  1554. </ul>
  1555. </li>
  1556. <li class="item" data-name="LuCI.uci">
  1557. <span class="title">
  1558. <a href="LuCI.uci.html">LuCI.uci</a>
  1559. </span>
  1560. <ul class="members itemMembers">
  1561. </ul>
  1562. <ul class="typedefs itemMembers">
  1563. <span class="subtitle">Typedefs</span>
  1564. <li data-name="LuCI.uci.ChangeRecord"><a href="LuCI.uci.html#.ChangeRecord">ChangeRecord</a></li>
  1565. <li data-name="LuCI.uci.SectionObject"><a href="LuCI.uci.html#.SectionObject">SectionObject</a></li>
  1566. <li data-name="LuCI.uci~sectionsFn"><a href="LuCI.uci.html#~sectionsFn">sectionsFn</a></li>
  1567. </ul>
  1568. <ul class="typedefs itemMembers">
  1569. </ul>
  1570. <ul class="methods itemMembers">
  1571. <span class="subtitle">Methods</span>
  1572. <li data-name="LuCI.uci#add"><a href="LuCI.uci.html#add">add</a></li>
  1573. <li data-name="LuCI.uci#apply"><a href="LuCI.uci.html#apply">apply</a></li>
  1574. <li data-name="LuCI.uci#changes"><a href="LuCI.uci.html#changes">changes</a></li>
  1575. <li data-name="LuCI.uci#clone"><a href="LuCI.uci.html#clone">clone</a></li>
  1576. <li data-name="LuCI.uci#createSID"><a href="LuCI.uci.html#createSID">createSID</a></li>
  1577. <li data-name="LuCI.uci#get"><a href="LuCI.uci.html#get">get</a></li>
  1578. <li data-name="LuCI.uci#get_first"><a href="LuCI.uci.html#get_first">get_first</a></li>
  1579. <li data-name="LuCI.uci#load"><a href="LuCI.uci.html#load">load</a></li>
  1580. <li data-name="LuCI.uci#move"><a href="LuCI.uci.html#move">move</a></li>
  1581. <li data-name="LuCI.uci#remove"><a href="LuCI.uci.html#remove">remove</a></li>
  1582. <li data-name="LuCI.uci#resolveSID"><a href="LuCI.uci.html#resolveSID">resolveSID</a></li>
  1583. <li data-name="LuCI.uci#save"><a href="LuCI.uci.html#save">save</a></li>
  1584. <li data-name="LuCI.uci#sections"><a href="LuCI.uci.html#sections">sections</a></li>
  1585. <li data-name="LuCI.uci#set"><a href="LuCI.uci.html#set">set</a></li>
  1586. <li data-name="LuCI.uci#set_first"><a href="LuCI.uci.html#set_first">set_first</a></li>
  1587. <li data-name="LuCI.uci#unload"><a href="LuCI.uci.html#unload">unload</a></li>
  1588. <li data-name="LuCI.uci#unset"><a href="LuCI.uci.html#unset">unset</a></li>
  1589. <li data-name="LuCI.uci#unset_first"><a href="LuCI.uci.html#unset_first">unset_first</a></li>
  1590. </ul>
  1591. <ul class="events itemMembers">
  1592. </ul>
  1593. </li>
  1594. <li class="item" data-name="LuCI.ui">
  1595. <span class="title">
  1596. <a href="LuCI.ui.html">LuCI.ui</a>
  1597. </span>
  1598. <ul class="members itemMembers">
  1599. </ul>
  1600. <ul class="typedefs itemMembers">
  1601. <span class="subtitle">Typedefs</span>
  1602. <li data-name="LuCI.ui.FileUploadReply"><a href="LuCI.ui.html#.FileUploadReply">FileUploadReply</a></li>
  1603. </ul>
  1604. <ul class="typedefs itemMembers">
  1605. </ul>
  1606. <ul class="methods itemMembers">
  1607. <span class="subtitle">Methods</span>
  1608. <li data-name="LuCI.ui#addNotification"><a href="LuCI.ui.html#addNotification">addNotification</a></li>
  1609. <li data-name="LuCI.ui#addValidator"><a href="LuCI.ui.html#addValidator">addValidator</a></li>
  1610. <li data-name="LuCI.ui#awaitReconnect"><a href="LuCI.ui.html#awaitReconnect">awaitReconnect</a></li>
  1611. <li data-name="LuCI.ui#createHandlerFn"><a href="LuCI.ui.html#createHandlerFn">createHandlerFn</a></li>
  1612. <li data-name="LuCI.ui#hideIndicator"><a href="LuCI.ui.html#hideIndicator">hideIndicator</a></li>
  1613. <li data-name="LuCI.ui#hideModal"><a href="LuCI.ui.html#hideModal">hideModal</a></li>
  1614. <li data-name="LuCI.ui#instantiateView"><a href="LuCI.ui.html#instantiateView">instantiateView</a></li>
  1615. <li data-name="LuCI.ui#itemlist"><a href="LuCI.ui.html#itemlist">itemlist</a></li>
  1616. <li data-name="LuCI.ui#pingDevice"><a href="LuCI.ui.html#pingDevice">pingDevice</a></li>
  1617. <li data-name="LuCI.ui#showIndicator"><a href="LuCI.ui.html#showIndicator">showIndicator</a></li>
  1618. <li data-name="LuCI.ui#showModal"><a href="LuCI.ui.html#showModal">showModal</a></li>
  1619. <li data-name="LuCI.ui#uploadFile"><a href="LuCI.ui.html#uploadFile">uploadFile</a></li>
  1620. </ul>
  1621. <ul class="events itemMembers">
  1622. </ul>
  1623. </li>
  1624. <li class="item" data-name="LuCI.ui.AbstractElement">
  1625. <span class="title">
  1626. <a href="LuCI.ui.AbstractElement.html">LuCI.ui.AbstractElement</a>
  1627. </span>
  1628. <ul class="members itemMembers">
  1629. </ul>
  1630. <ul class="typedefs itemMembers">
  1631. <span class="subtitle">Typedefs</span>
  1632. <li data-name="LuCI.ui.AbstractElement.InitOptions"><a href="LuCI.ui.AbstractElement.html#.InitOptions">InitOptions</a></li>
  1633. </ul>
  1634. <ul class="typedefs itemMembers">
  1635. </ul>
  1636. <ul class="methods itemMembers">
  1637. <span class="subtitle">Methods</span>
  1638. <li data-name="LuCI.ui.AbstractElement#getValidationError"><a href="LuCI.ui.AbstractElement.html#getValidationError">getValidationError</a></li>
  1639. <li data-name="LuCI.ui.AbstractElement#getValue"><a href="LuCI.ui.AbstractElement.html#getValue">getValue</a></li>
  1640. <li data-name="LuCI.ui.AbstractElement#isChanged"><a href="LuCI.ui.AbstractElement.html#isChanged">isChanged</a></li>
  1641. <li data-name="LuCI.ui.AbstractElement#isValid"><a href="LuCI.ui.AbstractElement.html#isValid">isValid</a></li>
  1642. <li data-name="LuCI.ui.AbstractElement#registerEvents"><a href="LuCI.ui.AbstractElement.html#registerEvents">registerEvents</a></li>
  1643. <li data-name="LuCI.ui.AbstractElement#render"><a href="LuCI.ui.AbstractElement.html#render">render</a></li>
  1644. <li data-name="LuCI.ui.AbstractElement#setChangeEvents"><a href="LuCI.ui.AbstractElement.html#setChangeEvents">setChangeEvents</a></li>
  1645. <li data-name="LuCI.ui.AbstractElement#setPlaceholder"><a href="LuCI.ui.AbstractElement.html#setPlaceholder">setPlaceholder</a></li>
  1646. <li data-name="LuCI.ui.AbstractElement#setUpdateEvents"><a href="LuCI.ui.AbstractElement.html#setUpdateEvents">setUpdateEvents</a></li>
  1647. <li data-name="LuCI.ui.AbstractElement#setValue"><a href="LuCI.ui.AbstractElement.html#setValue">setValue</a></li>
  1648. <li data-name="LuCI.ui.AbstractElement#triggerValidation"><a href="LuCI.ui.AbstractElement.html#triggerValidation">triggerValidation</a></li>
  1649. </ul>
  1650. <ul class="events itemMembers">
  1651. </ul>
  1652. </li>
  1653. <li class="item" data-name="LuCI.ui.changes">
  1654. <span class="title">
  1655. <a href="LuCI.ui.changes.html">LuCI.ui.changes</a>
  1656. </span>
  1657. <ul class="members itemMembers">
  1658. </ul>
  1659. <ul class="typedefs itemMembers">
  1660. </ul>
  1661. <ul class="typedefs itemMembers">
  1662. </ul>
  1663. <ul class="methods itemMembers">
  1664. <span class="subtitle">Methods</span>
  1665. <li data-name="LuCI.ui.changes#apply"><a href="LuCI.ui.changes.html#apply">apply</a></li>
  1666. <li data-name="LuCI.ui.changes#displayChanges"><a href="LuCI.ui.changes.html#displayChanges">displayChanges</a></li>
  1667. <li data-name="LuCI.ui.changes#renderChangeIndicator"><a href="LuCI.ui.changes.html#renderChangeIndicator">renderChangeIndicator</a></li>
  1668. <li data-name="LuCI.ui.changes#revert"><a href="LuCI.ui.changes.html#revert">revert</a></li>
  1669. <li data-name="LuCI.ui.changes#setIndicator"><a href="LuCI.ui.changes.html#setIndicator">setIndicator</a></li>
  1670. </ul>
  1671. <ul class="events itemMembers">
  1672. </ul>
  1673. </li>
  1674. <li class="item" data-name="LuCI.ui.Checkbox">
  1675. <span class="title">
  1676. <a href="LuCI.ui.Checkbox.html">LuCI.ui.Checkbox</a>
  1677. </span>
  1678. <ul class="members itemMembers">
  1679. </ul>
  1680. <ul class="typedefs itemMembers">
  1681. <span class="subtitle">Typedefs</span>
  1682. <li data-name="LuCI.ui.Checkbox.InitOptions"><a href="LuCI.ui.Checkbox.html#.InitOptions">InitOptions</a></li>
  1683. </ul>
  1684. <ul class="typedefs itemMembers">
  1685. </ul>
  1686. <ul class="methods itemMembers">
  1687. <span class="subtitle">Methods</span>
  1688. <li data-name="LuCI.ui.Checkbox#getValidationError"><a href="LuCI.ui.Checkbox.html#getValidationError">getValidationError</a></li>
  1689. <li data-name="LuCI.ui.Checkbox#getValue"><a href="LuCI.ui.Checkbox.html#getValue">getValue</a></li>
  1690. <li data-name="LuCI.ui.Checkbox#isChanged"><a href="LuCI.ui.Checkbox.html#isChanged">isChanged</a></li>
  1691. <li data-name="LuCI.ui.Checkbox#isChecked"><a href="LuCI.ui.Checkbox.html#isChecked">isChecked</a></li>
  1692. <li data-name="LuCI.ui.Checkbox#isValid"><a href="LuCI.ui.Checkbox.html#isValid">isValid</a></li>
  1693. <li data-name="LuCI.ui.Checkbox#registerEvents"><a href="LuCI.ui.Checkbox.html#registerEvents">registerEvents</a></li>
  1694. <li data-name="LuCI.ui.Checkbox#render"><a href="LuCI.ui.Checkbox.html#render">render</a></li>
  1695. <li data-name="LuCI.ui.Checkbox#setChangeEvents"><a href="LuCI.ui.Checkbox.html#setChangeEvents">setChangeEvents</a></li>
  1696. <li data-name="LuCI.ui.Checkbox#setPlaceholder"><a href="LuCI.ui.Checkbox.html#setPlaceholder">setPlaceholder</a></li>
  1697. <li data-name="LuCI.ui.Checkbox#setUpdateEvents"><a href="LuCI.ui.Checkbox.html#setUpdateEvents">setUpdateEvents</a></li>
  1698. <li data-name="LuCI.ui.Checkbox#setValue"><a href="LuCI.ui.Checkbox.html#setValue">setValue</a></li>
  1699. <li data-name="LuCI.ui.Checkbox#triggerValidation"><a href="LuCI.ui.Checkbox.html#triggerValidation">triggerValidation</a></li>
  1700. </ul>
  1701. <ul class="events itemMembers">
  1702. </ul>
  1703. </li>
  1704. <li class="item" data-name="LuCI.ui.Combobox">
  1705. <span class="title">
  1706. <a href="LuCI.ui.Combobox.html">LuCI.ui.Combobox</a>
  1707. </span>
  1708. <ul class="members itemMembers">
  1709. </ul>
  1710. <ul class="typedefs itemMembers">
  1711. <span class="subtitle">Typedefs</span>
  1712. <li data-name="LuCI.ui.Combobox.InitOptions"><a href="LuCI.ui.Combobox.html#.InitOptions">InitOptions</a></li>
  1713. </ul>
  1714. <ul class="typedefs itemMembers">
  1715. </ul>
  1716. <ul class="methods itemMembers">
  1717. <span class="subtitle">Methods</span>
  1718. <li data-name="LuCI.ui.Combobox#addChoices"><a href="LuCI.ui.Combobox.html#addChoices">addChoices</a></li>
  1719. <li data-name="LuCI.ui.Combobox#clearChoices"><a href="LuCI.ui.Combobox.html#clearChoices">clearChoices</a></li>
  1720. <li data-name="LuCI.ui.Combobox#closeAllDropdowns"><a href="LuCI.ui.Combobox.html#closeAllDropdowns">closeAllDropdowns</a></li>
  1721. <li data-name="LuCI.ui.Combobox#getValidationError"><a href="LuCI.ui.Combobox.html#getValidationError">getValidationError</a></li>
  1722. <li data-name="LuCI.ui.Combobox#isChanged"><a href="LuCI.ui.Combobox.html#isChanged">isChanged</a></li>
  1723. <li data-name="LuCI.ui.Combobox#isValid"><a href="LuCI.ui.Combobox.html#isValid">isValid</a></li>
  1724. <li data-name="LuCI.ui.Combobox#registerEvents"><a href="LuCI.ui.Combobox.html#registerEvents">registerEvents</a></li>
  1725. <li data-name="LuCI.ui.Combobox#setChangeEvents"><a href="LuCI.ui.Combobox.html#setChangeEvents">setChangeEvents</a></li>
  1726. <li data-name="LuCI.ui.Combobox#setPlaceholder"><a href="LuCI.ui.Combobox.html#setPlaceholder">setPlaceholder</a></li>
  1727. <li data-name="LuCI.ui.Combobox#setUpdateEvents"><a href="LuCI.ui.Combobox.html#setUpdateEvents">setUpdateEvents</a></li>
  1728. <li data-name="LuCI.ui.Combobox#triggerValidation"><a href="LuCI.ui.Combobox.html#triggerValidation">triggerValidation</a></li>
  1729. </ul>
  1730. <ul class="events itemMembers">
  1731. </ul>
  1732. </li>
  1733. <li class="item" data-name="LuCI.ui.ComboButton">
  1734. <span class="title">
  1735. <a href="LuCI.ui.ComboButton.html">LuCI.ui.ComboButton</a>
  1736. </span>
  1737. <ul class="members itemMembers">
  1738. </ul>
  1739. <ul class="typedefs itemMembers">
  1740. <span class="subtitle">Typedefs</span>
  1741. <li data-name="LuCI.ui.ComboButton.InitOptions"><a href="LuCI.ui.ComboButton.html#.InitOptions">InitOptions</a></li>
  1742. </ul>
  1743. <ul class="typedefs itemMembers">
  1744. </ul>
  1745. <ul class="methods itemMembers">
  1746. <span class="subtitle">Methods</span>
  1747. <li data-name="LuCI.ui.ComboButton#addChoices"><a href="LuCI.ui.ComboButton.html#addChoices">addChoices</a></li>
  1748. <li data-name="LuCI.ui.ComboButton#clearChoices"><a href="LuCI.ui.ComboButton.html#clearChoices">clearChoices</a></li>
  1749. <li data-name="LuCI.ui.ComboButton#closeAllDropdowns"><a href="LuCI.ui.ComboButton.html#closeAllDropdowns">closeAllDropdowns</a></li>
  1750. <li data-name="LuCI.ui.ComboButton#getValidationError"><a href="LuCI.ui.ComboButton.html#getValidationError">getValidationError</a></li>
  1751. <li data-name="LuCI.ui.ComboButton#isChanged"><a href="LuCI.ui.ComboButton.html#isChanged">isChanged</a></li>
  1752. <li data-name="LuCI.ui.ComboButton#isValid"><a href="LuCI.ui.ComboButton.html#isValid">isValid</a></li>
  1753. <li data-name="LuCI.ui.ComboButton#registerEvents"><a href="LuCI.ui.ComboButton.html#registerEvents">registerEvents</a></li>
  1754. <li data-name="LuCI.ui.ComboButton#setChangeEvents"><a href="LuCI.ui.ComboButton.html#setChangeEvents">setChangeEvents</a></li>
  1755. <li data-name="LuCI.ui.ComboButton#setPlaceholder"><a href="LuCI.ui.ComboButton.html#setPlaceholder">setPlaceholder</a></li>
  1756. <li data-name="LuCI.ui.ComboButton#setUpdateEvents"><a href="LuCI.ui.ComboButton.html#setUpdateEvents">setUpdateEvents</a></li>
  1757. <li data-name="LuCI.ui.ComboButton#triggerValidation"><a href="LuCI.ui.ComboButton.html#triggerValidation">triggerValidation</a></li>
  1758. </ul>
  1759. <ul class="events itemMembers">
  1760. </ul>
  1761. </li>
  1762. <li class="item" data-name="LuCI.ui.Dropdown">
  1763. <span class="title">
  1764. <a href="LuCI.ui.Dropdown.html">LuCI.ui.Dropdown</a>
  1765. </span>
  1766. <ul class="members itemMembers">
  1767. </ul>
  1768. <ul class="typedefs itemMembers">
  1769. <span class="subtitle">Typedefs</span>
  1770. <li data-name="LuCI.ui.Dropdown.InitOptions"><a href="LuCI.ui.Dropdown.html#.InitOptions">InitOptions</a></li>
  1771. </ul>
  1772. <ul class="typedefs itemMembers">
  1773. </ul>
  1774. <ul class="methods itemMembers">
  1775. <span class="subtitle">Methods</span>
  1776. <li data-name="LuCI.ui.Dropdown#addChoices"><a href="LuCI.ui.Dropdown.html#addChoices">addChoices</a></li>
  1777. <li data-name="LuCI.ui.Dropdown#clearChoices"><a href="LuCI.ui.Dropdown.html#clearChoices">clearChoices</a></li>
  1778. <li data-name="LuCI.ui.Dropdown#closeAllDropdowns"><a href="LuCI.ui.Dropdown.html#closeAllDropdowns">closeAllDropdowns</a></li>
  1779. <li data-name="LuCI.ui.Dropdown#getValidationError"><a href="LuCI.ui.Dropdown.html#getValidationError">getValidationError</a></li>
  1780. <li data-name="LuCI.ui.Dropdown#getValue"><a href="LuCI.ui.Dropdown.html#getValue">getValue</a></li>
  1781. <li data-name="LuCI.ui.Dropdown#isChanged"><a href="LuCI.ui.Dropdown.html#isChanged">isChanged</a></li>
  1782. <li data-name="LuCI.ui.Dropdown#isValid"><a href="LuCI.ui.Dropdown.html#isValid">isValid</a></li>
  1783. <li data-name="LuCI.ui.Dropdown#registerEvents"><a href="LuCI.ui.Dropdown.html#registerEvents">registerEvents</a></li>
  1784. <li data-name="LuCI.ui.Dropdown#render"><a href="LuCI.ui.Dropdown.html#render">render</a></li>
  1785. <li data-name="LuCI.ui.Dropdown#setChangeEvents"><a href="LuCI.ui.Dropdown.html#setChangeEvents">setChangeEvents</a></li>
  1786. <li data-name="LuCI.ui.Dropdown#setPlaceholder"><a href="LuCI.ui.Dropdown.html#setPlaceholder">setPlaceholder</a></li>
  1787. <li data-name="LuCI.ui.Dropdown#setUpdateEvents"><a href="LuCI.ui.Dropdown.html#setUpdateEvents">setUpdateEvents</a></li>
  1788. <li data-name="LuCI.ui.Dropdown#setValue"><a href="LuCI.ui.Dropdown.html#setValue">setValue</a></li>
  1789. <li data-name="LuCI.ui.Dropdown#triggerValidation"><a href="LuCI.ui.Dropdown.html#triggerValidation">triggerValidation</a></li>
  1790. </ul>
  1791. <ul class="events itemMembers">
  1792. </ul>
  1793. </li>
  1794. <li class="item" data-name="LuCI.ui.DynamicList">
  1795. <span class="title">
  1796. <a href="LuCI.ui.DynamicList.html">LuCI.ui.DynamicList</a>
  1797. </span>
  1798. <ul class="members itemMembers">
  1799. </ul>
  1800. <ul class="typedefs itemMembers">
  1801. <span class="subtitle">Typedefs</span>
  1802. <li data-name="LuCI.ui.DynamicList.InitOptions"><a href="LuCI.ui.DynamicList.html#.InitOptions">InitOptions</a></li>
  1803. </ul>
  1804. <ul class="typedefs itemMembers">
  1805. </ul>
  1806. <ul class="methods itemMembers">
  1807. <span class="subtitle">Methods</span>
  1808. <li data-name="LuCI.ui.DynamicList#addChoices"><a href="LuCI.ui.DynamicList.html#addChoices">addChoices</a></li>
  1809. <li data-name="LuCI.ui.DynamicList#clearChoices"><a href="LuCI.ui.DynamicList.html#clearChoices">clearChoices</a></li>
  1810. <li data-name="LuCI.ui.DynamicList#getValidationError"><a href="LuCI.ui.DynamicList.html#getValidationError">getValidationError</a></li>
  1811. <li data-name="LuCI.ui.DynamicList#getValue"><a href="LuCI.ui.DynamicList.html#getValue">getValue</a></li>
  1812. <li data-name="LuCI.ui.DynamicList#isChanged"><a href="LuCI.ui.DynamicList.html#isChanged">isChanged</a></li>
  1813. <li data-name="LuCI.ui.DynamicList#isValid"><a href="LuCI.ui.DynamicList.html#isValid">isValid</a></li>
  1814. <li data-name="LuCI.ui.DynamicList#registerEvents"><a href="LuCI.ui.DynamicList.html#registerEvents">registerEvents</a></li>
  1815. <li data-name="LuCI.ui.DynamicList#render"><a href="LuCI.ui.DynamicList.html#render">render</a></li>
  1816. <li data-name="LuCI.ui.DynamicList#setChangeEvents"><a href="LuCI.ui.DynamicList.html#setChangeEvents">setChangeEvents</a></li>
  1817. <li data-name="LuCI.ui.DynamicList#setPlaceholder"><a href="LuCI.ui.DynamicList.html#setPlaceholder">setPlaceholder</a></li>
  1818. <li data-name="LuCI.ui.DynamicList#setUpdateEvents"><a href="LuCI.ui.DynamicList.html#setUpdateEvents">setUpdateEvents</a></li>
  1819. <li data-name="LuCI.ui.DynamicList#setValue"><a href="LuCI.ui.DynamicList.html#setValue">setValue</a></li>
  1820. <li data-name="LuCI.ui.DynamicList#triggerValidation"><a href="LuCI.ui.DynamicList.html#triggerValidation">triggerValidation</a></li>
  1821. </ul>
  1822. <ul class="events itemMembers">
  1823. </ul>
  1824. </li>
  1825. <li class="item" data-name="LuCI.ui.FileUpload">
  1826. <span class="title">
  1827. <a href="LuCI.ui.FileUpload.html">LuCI.ui.FileUpload</a>
  1828. </span>
  1829. <ul class="members itemMembers">
  1830. </ul>
  1831. <ul class="typedefs itemMembers">
  1832. <span class="subtitle">Typedefs</span>
  1833. <li data-name="LuCI.ui.FileUpload.InitOptions"><a href="LuCI.ui.FileUpload.html#.InitOptions">InitOptions</a></li>
  1834. </ul>
  1835. <ul class="typedefs itemMembers">
  1836. </ul>
  1837. <ul class="methods itemMembers">
  1838. <span class="subtitle">Methods</span>
  1839. <li data-name="LuCI.ui.FileUpload#getValidationError"><a href="LuCI.ui.FileUpload.html#getValidationError">getValidationError</a></li>
  1840. <li data-name="LuCI.ui.FileUpload#getValue"><a href="LuCI.ui.FileUpload.html#getValue">getValue</a></li>
  1841. <li data-name="LuCI.ui.FileUpload#isChanged"><a href="LuCI.ui.FileUpload.html#isChanged">isChanged</a></li>
  1842. <li data-name="LuCI.ui.FileUpload#isValid"><a href="LuCI.ui.FileUpload.html#isValid">isValid</a></li>
  1843. <li data-name="LuCI.ui.FileUpload#registerEvents"><a href="LuCI.ui.FileUpload.html#registerEvents">registerEvents</a></li>
  1844. <li data-name="LuCI.ui.FileUpload#render"><a href="LuCI.ui.FileUpload.html#render">render</a></li>
  1845. <li data-name="LuCI.ui.FileUpload#setChangeEvents"><a href="LuCI.ui.FileUpload.html#setChangeEvents">setChangeEvents</a></li>
  1846. <li data-name="LuCI.ui.FileUpload#setPlaceholder"><a href="LuCI.ui.FileUpload.html#setPlaceholder">setPlaceholder</a></li>
  1847. <li data-name="LuCI.ui.FileUpload#setUpdateEvents"><a href="LuCI.ui.FileUpload.html#setUpdateEvents">setUpdateEvents</a></li>
  1848. <li data-name="LuCI.ui.FileUpload#setValue"><a href="LuCI.ui.FileUpload.html#setValue">setValue</a></li>
  1849. <li data-name="LuCI.ui.FileUpload#triggerValidation"><a href="LuCI.ui.FileUpload.html#triggerValidation">triggerValidation</a></li>
  1850. </ul>
  1851. <ul class="events itemMembers">
  1852. </ul>
  1853. </li>
  1854. <li class="item" data-name="LuCI.ui.Hiddenfield">
  1855. <span class="title">
  1856. <a href="LuCI.ui.Hiddenfield.html">LuCI.ui.Hiddenfield</a>
  1857. </span>
  1858. <ul class="members itemMembers">
  1859. </ul>
  1860. <ul class="typedefs itemMembers">
  1861. </ul>
  1862. <ul class="typedefs itemMembers">
  1863. </ul>
  1864. <ul class="methods itemMembers">
  1865. <span class="subtitle">Methods</span>
  1866. <li data-name="LuCI.ui.Hiddenfield#getValidationError"><a href="LuCI.ui.Hiddenfield.html#getValidationError">getValidationError</a></li>
  1867. <li data-name="LuCI.ui.Hiddenfield#getValue"><a href="LuCI.ui.Hiddenfield.html#getValue">getValue</a></li>
  1868. <li data-name="LuCI.ui.Hiddenfield#isChanged"><a href="LuCI.ui.Hiddenfield.html#isChanged">isChanged</a></li>
  1869. <li data-name="LuCI.ui.Hiddenfield#isValid"><a href="LuCI.ui.Hiddenfield.html#isValid">isValid</a></li>
  1870. <li data-name="LuCI.ui.Hiddenfield#registerEvents"><a href="LuCI.ui.Hiddenfield.html#registerEvents">registerEvents</a></li>
  1871. <li data-name="LuCI.ui.Hiddenfield#render"><a href="LuCI.ui.Hiddenfield.html#render">render</a></li>
  1872. <li data-name="LuCI.ui.Hiddenfield#setChangeEvents"><a href="LuCI.ui.Hiddenfield.html#setChangeEvents">setChangeEvents</a></li>
  1873. <li data-name="LuCI.ui.Hiddenfield#setPlaceholder"><a href="LuCI.ui.Hiddenfield.html#setPlaceholder">setPlaceholder</a></li>
  1874. <li data-name="LuCI.ui.Hiddenfield#setUpdateEvents"><a href="LuCI.ui.Hiddenfield.html#setUpdateEvents">setUpdateEvents</a></li>
  1875. <li data-name="LuCI.ui.Hiddenfield#setValue"><a href="LuCI.ui.Hiddenfield.html#setValue">setValue</a></li>
  1876. <li data-name="LuCI.ui.Hiddenfield#triggerValidation"><a href="LuCI.ui.Hiddenfield.html#triggerValidation">triggerValidation</a></li>
  1877. </ul>
  1878. <ul class="events itemMembers">
  1879. </ul>
  1880. </li>
  1881. <li class="item" data-name="LuCI.ui.menu">
  1882. <span class="title">
  1883. <a href="LuCI.ui.menu.html">LuCI.ui.menu</a>
  1884. </span>
  1885. <ul class="members itemMembers">
  1886. </ul>
  1887. <ul class="typedefs itemMembers">
  1888. <span class="subtitle">Typedefs</span>
  1889. <li data-name="LuCI.ui.menu.MenuNode"><a href="LuCI.ui.menu.html#.MenuNode">MenuNode</a></li>
  1890. </ul>
  1891. <ul class="typedefs itemMembers">
  1892. </ul>
  1893. <ul class="methods itemMembers">
  1894. <span class="subtitle">Methods</span>
  1895. <li data-name="LuCI.ui.menu#flushCache"><a href="LuCI.ui.menu.html#flushCache">flushCache</a></li>
  1896. <li data-name="LuCI.ui.menu#getChildren"><a href="LuCI.ui.menu.html#getChildren">getChildren</a></li>
  1897. <li data-name="LuCI.ui.menu#load"><a href="LuCI.ui.menu.html#load">load</a></li>
  1898. </ul>
  1899. <ul class="events itemMembers">
  1900. </ul>
  1901. </li>
  1902. <li class="item" data-name="LuCI.ui.Select">
  1903. <span class="title">
  1904. <a href="LuCI.ui.Select.html">LuCI.ui.Select</a>
  1905. </span>
  1906. <ul class="members itemMembers">
  1907. </ul>
  1908. <ul class="typedefs itemMembers">
  1909. <span class="subtitle">Typedefs</span>
  1910. <li data-name="LuCI.ui.Select.InitOptions"><a href="LuCI.ui.Select.html#.InitOptions">InitOptions</a></li>
  1911. </ul>
  1912. <ul class="typedefs itemMembers">
  1913. </ul>
  1914. <ul class="methods itemMembers">
  1915. <span class="subtitle">Methods</span>
  1916. <li data-name="LuCI.ui.Select#getValidationError"><a href="LuCI.ui.Select.html#getValidationError">getValidationError</a></li>
  1917. <li data-name="LuCI.ui.Select#getValue"><a href="LuCI.ui.Select.html#getValue">getValue</a></li>
  1918. <li data-name="LuCI.ui.Select#isChanged"><a href="LuCI.ui.Select.html#isChanged">isChanged</a></li>
  1919. <li data-name="LuCI.ui.Select#isValid"><a href="LuCI.ui.Select.html#isValid">isValid</a></li>
  1920. <li data-name="LuCI.ui.Select#registerEvents"><a href="LuCI.ui.Select.html#registerEvents">registerEvents</a></li>
  1921. <li data-name="LuCI.ui.Select#render"><a href="LuCI.ui.Select.html#render">render</a></li>
  1922. <li data-name="LuCI.ui.Select#setChangeEvents"><a href="LuCI.ui.Select.html#setChangeEvents">setChangeEvents</a></li>
  1923. <li data-name="LuCI.ui.Select#setPlaceholder"><a href="LuCI.ui.Select.html#setPlaceholder">setPlaceholder</a></li>
  1924. <li data-name="LuCI.ui.Select#setUpdateEvents"><a href="LuCI.ui.Select.html#setUpdateEvents">setUpdateEvents</a></li>
  1925. <li data-name="LuCI.ui.Select#setValue"><a href="LuCI.ui.Select.html#setValue">setValue</a></li>
  1926. <li data-name="LuCI.ui.Select#triggerValidation"><a href="LuCI.ui.Select.html#triggerValidation">triggerValidation</a></li>
  1927. </ul>
  1928. <ul class="events itemMembers">
  1929. </ul>
  1930. </li>
  1931. <li class="item" data-name="LuCI.ui.tabs">
  1932. <span class="title">
  1933. <a href="LuCI.ui.tabs.html">LuCI.ui.tabs</a>
  1934. </span>
  1935. <ul class="members itemMembers">
  1936. </ul>
  1937. <ul class="typedefs itemMembers">
  1938. </ul>
  1939. <ul class="typedefs itemMembers">
  1940. </ul>
  1941. <ul class="methods itemMembers">
  1942. <span class="subtitle">Methods</span>
  1943. <li data-name="LuCI.ui.tabs#initTabGroup"><a href="LuCI.ui.tabs.html#initTabGroup">initTabGroup</a></li>
  1944. <li data-name="LuCI.ui.tabs#isEmptyPane"><a href="LuCI.ui.tabs.html#isEmptyPane">isEmptyPane</a></li>
  1945. </ul>
  1946. <ul class="events itemMembers">
  1947. </ul>
  1948. </li>
  1949. <li class="item" data-name="LuCI.ui.Textarea">
  1950. <span class="title">
  1951. <a href="LuCI.ui.Textarea.html">LuCI.ui.Textarea</a>
  1952. </span>
  1953. <ul class="members itemMembers">
  1954. </ul>
  1955. <ul class="typedefs itemMembers">
  1956. <span class="subtitle">Typedefs</span>
  1957. <li data-name="LuCI.ui.Textarea.InitOptions"><a href="LuCI.ui.Textarea.html#.InitOptions">InitOptions</a></li>
  1958. </ul>
  1959. <ul class="typedefs itemMembers">
  1960. </ul>
  1961. <ul class="methods itemMembers">
  1962. <span class="subtitle">Methods</span>
  1963. <li data-name="LuCI.ui.Textarea#getValidationError"><a href="LuCI.ui.Textarea.html#getValidationError">getValidationError</a></li>
  1964. <li data-name="LuCI.ui.Textarea#getValue"><a href="LuCI.ui.Textarea.html#getValue">getValue</a></li>
  1965. <li data-name="LuCI.ui.Textarea#isChanged"><a href="LuCI.ui.Textarea.html#isChanged">isChanged</a></li>
  1966. <li data-name="LuCI.ui.Textarea#isValid"><a href="LuCI.ui.Textarea.html#isValid">isValid</a></li>
  1967. <li data-name="LuCI.ui.Textarea#registerEvents"><a href="LuCI.ui.Textarea.html#registerEvents">registerEvents</a></li>
  1968. <li data-name="LuCI.ui.Textarea#render"><a href="LuCI.ui.Textarea.html#render">render</a></li>
  1969. <li data-name="LuCI.ui.Textarea#setChangeEvents"><a href="LuCI.ui.Textarea.html#setChangeEvents">setChangeEvents</a></li>
  1970. <li data-name="LuCI.ui.Textarea#setPlaceholder"><a href="LuCI.ui.Textarea.html#setPlaceholder">setPlaceholder</a></li>
  1971. <li data-name="LuCI.ui.Textarea#setUpdateEvents"><a href="LuCI.ui.Textarea.html#setUpdateEvents">setUpdateEvents</a></li>
  1972. <li data-name="LuCI.ui.Textarea#setValue"><a href="LuCI.ui.Textarea.html#setValue">setValue</a></li>
  1973. <li data-name="LuCI.ui.Textarea#triggerValidation"><a href="LuCI.ui.Textarea.html#triggerValidation">triggerValidation</a></li>
  1974. </ul>
  1975. <ul class="events itemMembers">
  1976. </ul>
  1977. </li>
  1978. <li class="item" data-name="LuCI.ui.Textfield">
  1979. <span class="title">
  1980. <a href="LuCI.ui.Textfield.html">LuCI.ui.Textfield</a>
  1981. </span>
  1982. <ul class="members itemMembers">
  1983. </ul>
  1984. <ul class="typedefs itemMembers">
  1985. <span class="subtitle">Typedefs</span>
  1986. <li data-name="LuCI.ui.Textfield.InitOptions"><a href="LuCI.ui.Textfield.html#.InitOptions">InitOptions</a></li>
  1987. </ul>
  1988. <ul class="typedefs itemMembers">
  1989. </ul>
  1990. <ul class="methods itemMembers">
  1991. <span class="subtitle">Methods</span>
  1992. <li data-name="LuCI.ui.Textfield#getValidationError"><a href="LuCI.ui.Textfield.html#getValidationError">getValidationError</a></li>
  1993. <li data-name="LuCI.ui.Textfield#getValue"><a href="LuCI.ui.Textfield.html#getValue">getValue</a></li>
  1994. <li data-name="LuCI.ui.Textfield#isChanged"><a href="LuCI.ui.Textfield.html#isChanged">isChanged</a></li>
  1995. <li data-name="LuCI.ui.Textfield#isValid"><a href="LuCI.ui.Textfield.html#isValid">isValid</a></li>
  1996. <li data-name="LuCI.ui.Textfield#registerEvents"><a href="LuCI.ui.Textfield.html#registerEvents">registerEvents</a></li>
  1997. <li data-name="LuCI.ui.Textfield#render"><a href="LuCI.ui.Textfield.html#render">render</a></li>
  1998. <li data-name="LuCI.ui.Textfield#setChangeEvents"><a href="LuCI.ui.Textfield.html#setChangeEvents">setChangeEvents</a></li>
  1999. <li data-name="LuCI.ui.Textfield#setPlaceholder"><a href="LuCI.ui.Textfield.html#setPlaceholder">setPlaceholder</a></li>
  2000. <li data-name="LuCI.ui.Textfield#setUpdateEvents"><a href="LuCI.ui.Textfield.html#setUpdateEvents">setUpdateEvents</a></li>
  2001. <li data-name="LuCI.ui.Textfield#setValue"><a href="LuCI.ui.Textfield.html#setValue">setValue</a></li>
  2002. <li data-name="LuCI.ui.Textfield#triggerValidation"><a href="LuCI.ui.Textfield.html#triggerValidation">triggerValidation</a></li>
  2003. </ul>
  2004. <ul class="events itemMembers">
  2005. </ul>
  2006. </li>
  2007. <li class="item" data-name="LuCI.view">
  2008. <span class="title">
  2009. <a href="LuCI.view.html">LuCI.view</a>
  2010. </span>
  2011. <ul class="members itemMembers">
  2012. </ul>
  2013. <ul class="typedefs itemMembers">
  2014. </ul>
  2015. <ul class="typedefs itemMembers">
  2016. </ul>
  2017. <ul class="methods itemMembers">
  2018. <span class="subtitle">Methods</span>
  2019. <li data-name="LuCI.view#addFooter"><a href="LuCI.view.html#addFooter">addFooter</a></li>
  2020. <li data-name="LuCI.view#handleReset"><a href="LuCI.view.html#handleReset">handleReset</a></li>
  2021. <li data-name="LuCI.view#handleSave"><a href="LuCI.view.html#handleSave">handleSave</a></li>
  2022. <li data-name="LuCI.view#handleSaveApply"><a href="LuCI.view.html#handleSaveApply">handleSaveApply</a></li>
  2023. <li data-name="LuCI.view#load"><a href="LuCI.view.html#load">load</a></li>
  2024. <li data-name="LuCI.view#render"><a href="LuCI.view.html#render">render</a></li>
  2025. </ul>
  2026. <ul class="events itemMembers">
  2027. </ul>
  2028. </li>
  2029. <li class="item" data-name="LuCI.xhr">
  2030. <span class="title">
  2031. <a href="LuCI.xhr.html">LuCI.xhr</a>
  2032. </span>
  2033. <ul class="members itemMembers">
  2034. </ul>
  2035. <ul class="typedefs itemMembers">
  2036. </ul>
  2037. <ul class="typedefs itemMembers">
  2038. </ul>
  2039. <ul class="methods itemMembers">
  2040. <span class="subtitle">Methods</span>
  2041. <li data-name="LuCI.xhr#abort"><a href="LuCI.xhr.html#abort">abort</a></li>
  2042. <li data-name="LuCI.xhr#busy"><a href="LuCI.xhr.html#busy">busy</a></li>
  2043. <li data-name="LuCI.xhr#cancel"><a href="LuCI.xhr.html#cancel">cancel</a></li>
  2044. <li data-name="LuCI.xhr#get"><a href="LuCI.xhr.html#get">get</a></li>
  2045. <li data-name="LuCI.xhr#post"><a href="LuCI.xhr.html#post">post</a></li>
  2046. <li data-name="LuCI.xhr#send_form"><a href="LuCI.xhr.html#send_form">send_form</a></li>
  2047. </ul>
  2048. <ul class="events itemMembers">
  2049. </ul>
  2050. </li>
  2051. </ul>
  2052. </div>
  2053. <div class="main">
  2054. <h1 class="page-title" data-filename="LuCI.uci.html">Class: uci</h1>
  2055. <section>
  2056. <header>
  2057. <h2>
  2058. <span class="ancestors"><a href="LuCI.html">LuCI</a>.</span>
  2059. uci
  2060. </h2>
  2061. <div class="class-description"><p>The <code>LuCI.uci</code> class utilizes <a href="LuCI.rpc.html"><code>LuCI.rpc</code></a> to declare low level
  2062. remote UCI <code>ubus</code> procedures and implements a local caching and data
  2063. manipulation layer on top to allow for synchronous operations on
  2064. UCI configuration data.</p></div>
  2065. </header>
  2066. <article>
  2067. <div class="container-overview">
  2068. <dt>
  2069. <div class="nameContainer">
  2070. <h4 class="name" id="uci">
  2071. new LuCI.uci<span class="signature">()</span>
  2072. </h4>
  2073. <div class="tag-source">
  2074. <a href="uci.js.html">uci.js</a>, <a href="uci.js.html#line13">line 13</a>
  2075. </div>
  2076. </div>
  2077. </dt>
  2078. <dd>
  2079. <dl class="details">
  2080. </dl>
  2081. </dd>
  2082. </div>
  2083. <h3 class="subsection-title">Methods</h3>
  2084. <dl>
  2085. <dt>
  2086. <div class="nameContainer">
  2087. <h4 class="name" id="add">
  2088. add<span class="signature">(conf, type, <span class="optional">name</span>)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{string}</span>
  2089. </h4>
  2090. <div class="tag-source">
  2091. <a href="uci.js.html">uci.js</a>, <a href="uci.js.html#line291">line 291</a>
  2092. </div>
  2093. </div>
  2094. </dt>
  2095. <dd>
  2096. <div class="description">
  2097. <p>Adds a new section of the given type to the given configuration,
  2098. optionally named according to the given name.</p>
  2099. </div>
  2100. <table class="params">
  2101. <thead>
  2102. <tr>
  2103. <th>Name</th>
  2104. <th>Type</th>
  2105. <th class="last">Description</th>
  2106. </tr>
  2107. </thead>
  2108. <tbody>
  2109. <tr>
  2110. <td class="name"><code>conf</code></td>
  2111. <td class="type">
  2112. <span class="param-type">string</span>
  2113. </td>
  2114. <td class="description last">
  2115. <p>The name of the configuration to add the section to.</p></td>
  2116. </tr>
  2117. <tr>
  2118. <td class="name"><code>type</code></td>
  2119. <td class="type">
  2120. <span class="param-type">string</span>
  2121. </td>
  2122. <td class="description last">
  2123. <p>The type of the section to add.</p></td>
  2124. </tr>
  2125. <tr>
  2126. <td class="name"><code>name</code></td>
  2127. <td class="type">
  2128. <span class="param-type">string</span>
  2129. </td>
  2130. <td class="description last">
  2131. <span class="optional">optional</span>
  2132. <p>The name of the section to add. If the name is omitted, an anonymous
  2133. section will be added instead.</p></td>
  2134. </tr>
  2135. </tbody>
  2136. </table>
  2137. <dl class="details">
  2138. </dl>
  2139. <h5>Returns:</h5>
  2140. <table class="params">
  2141. <thead>
  2142. <tr>
  2143. <th>Type</th>
  2144. <th class="last">Description</th>
  2145. </tr>
  2146. </thead>
  2147. <tbody>
  2148. <tr>
  2149. <td class="type">
  2150. string
  2151. </td>
  2152. <td class="description last">Returns the section ID of the newly added section which is equivalent
  2153. to the given name for non-anonymous sections.</td>
  2154. </tr>
  2155. </tbody>
  2156. </table>
  2157. </dd>
  2158. <dt>
  2159. <div class="nameContainer">
  2160. <h4 class="name" id="apply">
  2161. apply<span class="signature">(<span class="optional">timeout</span>)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{Promise.&lt;number>}</span>
  2162. </h4>
  2163. <div class="tag-source">
  2164. <a href="uci.js.html">uci.js</a>, <a href="uci.js.html#line957">line 957</a>
  2165. </div>
  2166. </div>
  2167. </dt>
  2168. <dd>
  2169. <div class="description">
  2170. <p>Instructs the remote <code>ubus</code> UCI api to commit all saved changes with
  2171. rollback protection and attempts to confirm the pending commit
  2172. operation to cancel the rollback timer.</p>
  2173. </div>
  2174. <table class="params">
  2175. <thead>
  2176. <tr>
  2177. <th>Name</th>
  2178. <th>Type</th>
  2179. <th>Default</th>
  2180. <th class="last">Description</th>
  2181. </tr>
  2182. </thead>
  2183. <tbody>
  2184. <tr>
  2185. <td class="name"><code>timeout</code></td>
  2186. <td class="type">
  2187. <span class="param-type">number</span>
  2188. </td>
  2189. <td class="default">
  2190. 10
  2191. </td>
  2192. <td class="description last">
  2193. <span class="optional">optional</span>
  2194. <p>Override the confirmation timeout after which a rollback is triggered.</p></td>
  2195. </tr>
  2196. </tbody>
  2197. </table>
  2198. <dl class="details">
  2199. </dl>
  2200. <h5>Returns:</h5>
  2201. <table class="params">
  2202. <thead>
  2203. <tr>
  2204. <th>Type</th>
  2205. <th class="last">Description</th>
  2206. </tr>
  2207. </thead>
  2208. <tbody>
  2209. <tr>
  2210. <td class="type">
  2211. Promise.&lt;number>
  2212. </td>
  2213. <td class="description last">Returns a promise resolving/rejecting with the <code>ubus</code> RPC status code.</td>
  2214. </tr>
  2215. </tbody>
  2216. </table>
  2217. </dd>
  2218. <dt>
  2219. <div class="nameContainer">
  2220. <h4 class="name" id="changes">
  2221. changes<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{Promise.&lt;Object.&lt;string, Array.&lt;<a href="LuCI.uci.html#.ChangeRecord">LuCI.uci.ChangeRecord</a>>>>}</span>
  2222. </h4>
  2223. <div class="tag-source">
  2224. <a href="uci.js.html">uci.js</a>, <a href="uci.js.html#line1037">line 1037</a>
  2225. </div>
  2226. </div>
  2227. </dt>
  2228. <dd>
  2229. <div class="description">
  2230. <p>Fetches uncommitted UCI changes from the remote <code>ubus</code> RPC api.</p>
  2231. </div>
  2232. <dl class="details">
  2233. </dl>
  2234. <h5>Returns:</h5>
  2235. <table class="params">
  2236. <thead>
  2237. <tr>
  2238. <th>Type</th>
  2239. <th class="last">Description</th>
  2240. </tr>
  2241. </thead>
  2242. <tbody>
  2243. <tr>
  2244. <td class="type">
  2245. Promise.&lt;Object.&lt;string, Array.&lt;<a href="LuCI.uci.html#.ChangeRecord">LuCI.uci.ChangeRecord</a>>>>
  2246. </td>
  2247. <td class="description last">Returns a promise resolving to an object containing the configuration
  2248. names as keys and arrays of related change records as values.</td>
  2249. </tr>
  2250. </tbody>
  2251. </table>
  2252. </dd>
  2253. <dt>
  2254. <div class="nameContainer">
  2255. <h4 class="name" id="clone">
  2256. clone<span class="signature">(conf, type, srcsid, <span class="optional">put_next</span>, <span class="optional">name</span>)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{string}</span>
  2257. </h4>
  2258. <div class="tag-source">
  2259. <a href="uci.js.html">uci.js</a>, <a href="uci.js.html#line333">line 333</a>
  2260. </div>
  2261. </div>
  2262. </dt>
  2263. <dd>
  2264. <div class="description">
  2265. <p>Clones an existing section of the given type to the given configuration,
  2266. optionally named according to the given name.</p>
  2267. </div>
  2268. <table class="params">
  2269. <thead>
  2270. <tr>
  2271. <th>Name</th>
  2272. <th>Type</th>
  2273. <th class="last">Description</th>
  2274. </tr>
  2275. </thead>
  2276. <tbody>
  2277. <tr>
  2278. <td class="name"><code>conf</code></td>
  2279. <td class="type">
  2280. <span class="param-type">string</span>
  2281. </td>
  2282. <td class="description last">
  2283. <p>The name of the configuration into which to clone the section.</p></td>
  2284. </tr>
  2285. <tr>
  2286. <td class="name"><code>type</code></td>
  2287. <td class="type">
  2288. <span class="param-type">string</span>
  2289. </td>
  2290. <td class="description last">
  2291. <p>The type of the section to clone.</p></td>
  2292. </tr>
  2293. <tr>
  2294. <td class="name"><code>srcsid</code></td>
  2295. <td class="type">
  2296. <span class="param-type">string</span>
  2297. </td>
  2298. <td class="description last">
  2299. <p>The source section id to clone.</p></td>
  2300. </tr>
  2301. <tr>
  2302. <td class="name"><code>put_next</code></td>
  2303. <td class="type">
  2304. <span class="param-type">boolean</span>
  2305. </td>
  2306. <td class="description last">
  2307. <span class="optional">optional</span>
  2308. <p>Whether to put the cloned item next (true) or last (false: default).</p></td>
  2309. </tr>
  2310. <tr>
  2311. <td class="name"><code>name</code></td>
  2312. <td class="type">
  2313. <span class="param-type">string</span>
  2314. </td>
  2315. <td class="description last">
  2316. <span class="optional">optional</span>
  2317. <p>The name of the new cloned section. If the name is omitted, an anonymous
  2318. section will be created instead.</p></td>
  2319. </tr>
  2320. </tbody>
  2321. </table>
  2322. <dl class="details">
  2323. </dl>
  2324. <h5>Returns:</h5>
  2325. <table class="params">
  2326. <thead>
  2327. <tr>
  2328. <th>Type</th>
  2329. <th class="last">Description</th>
  2330. </tr>
  2331. </thead>
  2332. <tbody>
  2333. <tr>
  2334. <td class="type">
  2335. string
  2336. </td>
  2337. <td class="description last">Returns the section ID of the newly cloned section which is equivalent
  2338. to the given name for non-anonymous sections.</td>
  2339. </tr>
  2340. </tbody>
  2341. </table>
  2342. </dd>
  2343. <dt>
  2344. <div class="nameContainer">
  2345. <h4 class="name" id="createSID">
  2346. createSID<span class="signature">(conf)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{string}</span>
  2347. </h4>
  2348. <div class="tag-source">
  2349. <a href="uci.js.html">uci.js</a>, <a href="uci.js.html#line103">line 103</a>
  2350. </div>
  2351. </div>
  2352. </dt>
  2353. <dd>
  2354. <div class="description">
  2355. <p>Generates a new, unique section ID for the given configuration.</p>
  2356. <p>Note that the generated ID is temporary, it will get replaced by an
  2357. identifier in the form <code>cfgXXXXXX</code> once the configuration is saved
  2358. by the remote <code>ubus</code> UCI api.</p>
  2359. </div>
  2360. <table class="params">
  2361. <thead>
  2362. <tr>
  2363. <th>Name</th>
  2364. <th>Type</th>
  2365. <th class="last">Description</th>
  2366. </tr>
  2367. </thead>
  2368. <tbody>
  2369. <tr>
  2370. <td class="name"><code>conf</code></td>
  2371. <td class="type">
  2372. <span class="param-type">string</span>
  2373. </td>
  2374. <td class="description last">
  2375. <p>The configuration to generate the new section ID for.</p></td>
  2376. </tr>
  2377. </tbody>
  2378. </table>
  2379. <dl class="details">
  2380. </dl>
  2381. <h5>Returns:</h5>
  2382. <table class="params">
  2383. <thead>
  2384. <tr>
  2385. <th>Type</th>
  2386. <th class="last">Description</th>
  2387. </tr>
  2388. </thead>
  2389. <tbody>
  2390. <tr>
  2391. <td class="type">
  2392. string
  2393. </td>
  2394. <td class="description last">A newly generated, unique section ID in the form <code>newXXXXXX</code>
  2395. where <code>X</code> denotes a hexadecimal digit.</td>
  2396. </tr>
  2397. </tbody>
  2398. </table>
  2399. </dd>
  2400. <dt>
  2401. <div class="nameContainer">
  2402. <h4 class="name" id="get">
  2403. get<span class="signature">(conf, sid, <span class="optional">opt</span>)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{null|string|Array.&lt;string>|<a href="LuCI.uci.html#.SectionObject">LuCI.uci.SectionObject</a>}</span>
  2404. </h4>
  2405. <div class="tag-source">
  2406. <a href="uci.js.html">uci.js</a>, <a href="uci.js.html#line513">line 513</a>
  2407. </div>
  2408. </div>
  2409. </dt>
  2410. <dd>
  2411. <div class="description">
  2412. <p>Gets the value of the given option within the specified section
  2413. of the given configuration or the entire section object if the
  2414. option name is omitted.</p>
  2415. </div>
  2416. <table class="params">
  2417. <thead>
  2418. <tr>
  2419. <th>Name</th>
  2420. <th>Type</th>
  2421. <th class="last">Description</th>
  2422. </tr>
  2423. </thead>
  2424. <tbody>
  2425. <tr>
  2426. <td class="name"><code>conf</code></td>
  2427. <td class="type">
  2428. <span class="param-type">string</span>
  2429. </td>
  2430. <td class="description last">
  2431. <p>The name of the configuration to read the value from.</p></td>
  2432. </tr>
  2433. <tr>
  2434. <td class="name"><code>sid</code></td>
  2435. <td class="type">
  2436. <span class="param-type">string</span>
  2437. </td>
  2438. <td class="description last">
  2439. <p>The name or ID of the section to read.</p></td>
  2440. </tr>
  2441. <tr>
  2442. <td class="name"><code>opt</code></td>
  2443. <td class="type">
  2444. <span class="param-type">string</span>
  2445. </td>
  2446. <td class="description last">
  2447. <span class="optional">optional</span>
  2448. <p>The option name to read the value from. If the option name is
  2449. omitted or <code>null</code>, the entire section is returned instead.</p></td>
  2450. </tr>
  2451. </tbody>
  2452. </table>
  2453. <dl class="details">
  2454. </dl>
  2455. <h5>Returns:</h5>
  2456. <table class="params">
  2457. <thead>
  2458. <tr>
  2459. <th>Type</th>
  2460. <th class="last">Description</th>
  2461. </tr>
  2462. </thead>
  2463. <tbody>
  2464. <tr>
  2465. <td class="type">
  2466. null
  2467. |
  2468. string
  2469. |
  2470. Array.&lt;string>
  2471. |
  2472. <a href="LuCI.uci.html#.SectionObject">LuCI.uci.SectionObject</a>
  2473. </td>
  2474. <td class="description last"><ul>
  2475. <li>Returns a string containing the option value in case of a
  2476. plain UCI option.</li>
  2477. <li>Returns an array of strings containing the option values in
  2478. case of <code>option</code> pointing to an UCI list.</li>
  2479. <li>Returns a <a href="LuCI.uci.html#.SectionObject"><code>section object</code></a> if
  2480. the <code>option</code> argument has been omitted or is <code>null</code>.</li>
  2481. <li>Returns <code>null</code> if the config, section or option has not been
  2482. found or if the corresponding configuration is not loaded.</li>
  2483. </ul></td>
  2484. </tr>
  2485. </tbody>
  2486. </table>
  2487. </dd>
  2488. <dt>
  2489. <div class="nameContainer">
  2490. <h4 class="name" id="get_first">
  2491. get_first<span class="signature">(conf, <span class="optional">type</span>, <span class="optional">opt</span>)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{null|string|Array.&lt;string>|<a href="LuCI.uci.html#.SectionObject">LuCI.uci.SectionObject</a>}</span>
  2492. </h4>
  2493. <div class="tag-source">
  2494. <a href="uci.js.html">uci.js</a>, <a href="uci.js.html#line713">line 713</a>
  2495. </div>
  2496. </div>
  2497. </dt>
  2498. <dd>
  2499. <div class="description">
  2500. <p>Gets the value of the given option or the entire section object of
  2501. the first found section of the specified type or the first found
  2502. section of the entire configuration if no type is specified.</p>
  2503. </div>
  2504. <table class="params">
  2505. <thead>
  2506. <tr>
  2507. <th>Name</th>
  2508. <th>Type</th>
  2509. <th class="last">Description</th>
  2510. </tr>
  2511. </thead>
  2512. <tbody>
  2513. <tr>
  2514. <td class="name"><code>conf</code></td>
  2515. <td class="type">
  2516. <span class="param-type">string</span>
  2517. </td>
  2518. <td class="description last">
  2519. <p>The name of the configuration to read the value from.</p></td>
  2520. </tr>
  2521. <tr>
  2522. <td class="name"><code>type</code></td>
  2523. <td class="type">
  2524. <span class="param-type">string</span>
  2525. </td>
  2526. <td class="description last">
  2527. <span class="optional">optional</span>
  2528. <p>The type of the first section to find. If it is <code>null</code>, the first
  2529. section of the entire config is read, otherwise the first section
  2530. matching the given type.</p></td>
  2531. </tr>
  2532. <tr>
  2533. <td class="name"><code>opt</code></td>
  2534. <td class="type">
  2535. <span class="param-type">string</span>
  2536. </td>
  2537. <td class="description last">
  2538. <span class="optional">optional</span>
  2539. <p>The option name to read the value from. If the option name is
  2540. omitted or <code>null</code>, the entire section is returned instead.</p></td>
  2541. </tr>
  2542. </tbody>
  2543. </table>
  2544. <dl class="details">
  2545. </dl>
  2546. <h5>Returns:</h5>
  2547. <table class="params">
  2548. <thead>
  2549. <tr>
  2550. <th>Type</th>
  2551. <th class="last">Description</th>
  2552. </tr>
  2553. </thead>
  2554. <tbody>
  2555. <tr>
  2556. <td class="type">
  2557. null
  2558. |
  2559. string
  2560. |
  2561. Array.&lt;string>
  2562. |
  2563. <a href="LuCI.uci.html#.SectionObject">LuCI.uci.SectionObject</a>
  2564. </td>
  2565. <td class="description last"><ul>
  2566. <li>Returns a string containing the option value in case of a
  2567. plain UCI option.</li>
  2568. <li>Returns an array of strings containing the option values in
  2569. case of <code>option</code> pointing to an UCI list.</li>
  2570. <li>Returns a <a href="LuCI.uci.html#.SectionObject"><code>section object</code></a> if
  2571. the <code>option</code> argument has been omitted or is <code>null</code>.</li>
  2572. <li>Returns <code>null</code> if the config, section or option has not been
  2573. found or if the corresponding configuration is not loaded.</li>
  2574. </ul></td>
  2575. </tr>
  2576. </tbody>
  2577. </table>
  2578. </dd>
  2579. <dt>
  2580. <div class="nameContainer">
  2581. <h4 class="name" id="load">
  2582. load<span class="signature">(packages)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{Promise.&lt;Array.&lt;string>>}</span>
  2583. </h4>
  2584. <div class="tag-source">
  2585. <a href="uci.js.html">uci.js</a>, <a href="uci.js.html#line227">line 227</a>
  2586. </div>
  2587. </div>
  2588. </dt>
  2589. <dd>
  2590. <div class="description">
  2591. <p>Loads the given UCI configurations from the remote <code>ubus</code> api.</p>
  2592. <p>Loaded configurations are cached and only loaded once. Subsequent
  2593. load operations of the same configurations will return the cached
  2594. data.</p>
  2595. <p>To force reloading a configuration, it has to be unloaded with
  2596. <a href="LuCI.uci.html#unload"><code>uci.unload()</code></a> first.</p>
  2597. </div>
  2598. <table class="params">
  2599. <thead>
  2600. <tr>
  2601. <th>Name</th>
  2602. <th>Type</th>
  2603. <th class="last">Description</th>
  2604. </tr>
  2605. </thead>
  2606. <tbody>
  2607. <tr>
  2608. <td class="name"><code>packages</code></td>
  2609. <td class="type">
  2610. <span class="param-type">string</span>
  2611. |
  2612. <span class="param-type">Array.&lt;string></span>
  2613. </td>
  2614. <td class="description last">
  2615. <p>The name of the configuration or an array of configuration
  2616. names to load.</p></td>
  2617. </tr>
  2618. </tbody>
  2619. </table>
  2620. <dl class="details">
  2621. </dl>
  2622. <h5>Returns:</h5>
  2623. <table class="params">
  2624. <thead>
  2625. <tr>
  2626. <th>Type</th>
  2627. <th class="last">Description</th>
  2628. </tr>
  2629. </thead>
  2630. <tbody>
  2631. <tr>
  2632. <td class="type">
  2633. Promise.&lt;Array.&lt;string>>
  2634. </td>
  2635. <td class="description last">Returns a promise resolving to the names of the configurations
  2636. that have been successfully loaded.</td>
  2637. </tr>
  2638. </tbody>
  2639. </table>
  2640. </dd>
  2641. <dt>
  2642. <div class="nameContainer">
  2643. <h4 class="name" id="move">
  2644. move<span class="signature">(conf, sid1, <span class="optional">sid2</span>, <span class="optional">after</span>)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{boolean}</span>
  2645. </h4>
  2646. <div class="tag-source">
  2647. <a href="uci.js.html">uci.js</a>, <a href="uci.js.html#line813">line 813</a>
  2648. </div>
  2649. </div>
  2650. </dt>
  2651. <dd>
  2652. <div class="description">
  2653. <p>Move the first specified section within the given configuration
  2654. before or after the second specified section.</p>
  2655. </div>
  2656. <table class="params">
  2657. <thead>
  2658. <tr>
  2659. <th>Name</th>
  2660. <th>Type</th>
  2661. <th>Default</th>
  2662. <th class="last">Description</th>
  2663. </tr>
  2664. </thead>
  2665. <tbody>
  2666. <tr>
  2667. <td class="name"><code>conf</code></td>
  2668. <td class="type">
  2669. <span class="param-type">string</span>
  2670. </td>
  2671. <td class="default">
  2672. </td>
  2673. <td class="description last">
  2674. <p>The configuration to move the section within.</p></td>
  2675. </tr>
  2676. <tr>
  2677. <td class="name"><code>sid1</code></td>
  2678. <td class="type">
  2679. <span class="param-type">string</span>
  2680. </td>
  2681. <td class="default">
  2682. </td>
  2683. <td class="description last">
  2684. <p>The ID of the section to move within the configuration.</p></td>
  2685. </tr>
  2686. <tr>
  2687. <td class="name"><code>sid2</code></td>
  2688. <td class="type">
  2689. <span class="param-type">string</span>
  2690. </td>
  2691. <td class="default">
  2692. </td>
  2693. <td class="description last">
  2694. <span class="optional">optional</span>
  2695. <p>The ID of the target section for the move operation. If the
  2696. <code>after</code> argument is <code>false</code> or not specified, the section named by
  2697. <code>sid1</code> will be moved before this target section, if the <code>after</code>
  2698. argument is <code>true</code>, the <code>sid1</code> section will be moved after this
  2699. section.</p>
  2700. <p>When the <code>sid2</code> argument is <code>null</code>, the section specified by <code>sid1</code>
  2701. is moved to the end of the configuration.</p></td>
  2702. </tr>
  2703. <tr>
  2704. <td class="name"><code>after</code></td>
  2705. <td class="type">
  2706. <span class="param-type">boolean</span>
  2707. </td>
  2708. <td class="default">
  2709. false
  2710. </td>
  2711. <td class="description last">
  2712. <span class="optional">optional</span>
  2713. <p>When <code>true</code>, the section <code>sid1</code> is moved after the section <code>sid2</code>,
  2714. when <code>false</code>, the section <code>sid1</code> is moved before <code>sid2</code>.</p>
  2715. <p>If <code>sid2</code> is null, then this parameter has no effect and the section
  2716. <code>sid1</code> is moved to the end of the configuration instead.</p></td>
  2717. </tr>
  2718. </tbody>
  2719. </table>
  2720. <dl class="details">
  2721. </dl>
  2722. <h5>Returns:</h5>
  2723. <table class="params">
  2724. <thead>
  2725. <tr>
  2726. <th>Type</th>
  2727. <th class="last">Description</th>
  2728. </tr>
  2729. </thead>
  2730. <tbody>
  2731. <tr>
  2732. <td class="type">
  2733. boolean
  2734. </td>
  2735. <td class="description last">Returns <code>true</code> when the section was successfully moved, or <code>false</code>
  2736. when either the section specified by <code>sid1</code> or by <code>sid2</code> is not found.</td>
  2737. </tr>
  2738. </tbody>
  2739. </table>
  2740. </dd>
  2741. <dt>
  2742. <div class="nameContainer">
  2743. <h4 class="name" id="remove">
  2744. remove<span class="signature">(conf, sid)</span>
  2745. </h4>
  2746. <div class="tag-source">
  2747. <a href="uci.js.html">uci.js</a>, <a href="uci.js.html#line365">line 365</a>
  2748. </div>
  2749. </div>
  2750. </dt>
  2751. <dd>
  2752. <div class="description">
  2753. <p>Removes the section with the given ID from the given configuration.</p>
  2754. </div>
  2755. <table class="params">
  2756. <thead>
  2757. <tr>
  2758. <th>Name</th>
  2759. <th>Type</th>
  2760. <th class="last">Description</th>
  2761. </tr>
  2762. </thead>
  2763. <tbody>
  2764. <tr>
  2765. <td class="name"><code>conf</code></td>
  2766. <td class="type">
  2767. <span class="param-type">string</span>
  2768. </td>
  2769. <td class="description last">
  2770. <p>The name of the configuration to remove the section from.</p></td>
  2771. </tr>
  2772. <tr>
  2773. <td class="name"><code>sid</code></td>
  2774. <td class="type">
  2775. <span class="param-type">string</span>
  2776. </td>
  2777. <td class="description last">
  2778. <p>The ID of the section to remove.</p></td>
  2779. </tr>
  2780. </tbody>
  2781. </table>
  2782. <dl class="details">
  2783. </dl>
  2784. </dd>
  2785. <dt>
  2786. <div class="nameContainer">
  2787. <h4 class="name" id="resolveSID">
  2788. resolveSID<span class="signature">(conf, sid)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{string|null}</span>
  2789. </h4>
  2790. <div class="tag-source">
  2791. <a href="uci.js.html">uci.js</a>, <a href="uci.js.html#line134">line 134</a>
  2792. </div>
  2793. </div>
  2794. </dt>
  2795. <dd>
  2796. <div class="description">
  2797. <p>Resolves a given section ID in extended notation to the internal
  2798. section ID value.</p>
  2799. </div>
  2800. <table class="params">
  2801. <thead>
  2802. <tr>
  2803. <th>Name</th>
  2804. <th>Type</th>
  2805. <th class="last">Description</th>
  2806. </tr>
  2807. </thead>
  2808. <tbody>
  2809. <tr>
  2810. <td class="name"><code>conf</code></td>
  2811. <td class="type">
  2812. <span class="param-type">string</span>
  2813. </td>
  2814. <td class="description last">
  2815. <p>The configuration to resolve the section ID for.</p></td>
  2816. </tr>
  2817. <tr>
  2818. <td class="name"><code>sid</code></td>
  2819. <td class="type">
  2820. <span class="param-type">string</span>
  2821. </td>
  2822. <td class="description last">
  2823. <p>The section ID to resolve. If the ID is in the form <code>@typename[#]</code>,
  2824. it will get resolved to an internal anonymous ID in the forms
  2825. <code>cfgXXXXXX</code>/<code>newXXXXXX</code> or to the name of a section in case it points
  2826. to a named section. When the given ID is not in extended notation,
  2827. it will be returned as-is.</p></td>
  2828. </tr>
  2829. </tbody>
  2830. </table>
  2831. <dl class="details">
  2832. </dl>
  2833. <h5>Returns:</h5>
  2834. <table class="params">
  2835. <thead>
  2836. <tr>
  2837. <th>Type</th>
  2838. <th class="last">Description</th>
  2839. </tr>
  2840. </thead>
  2841. <tbody>
  2842. <tr>
  2843. <td class="type">
  2844. string
  2845. |
  2846. null
  2847. </td>
  2848. <td class="description last">Returns the resolved section ID or the original given ID if it was
  2849. not in extended notation. Returns <code>null</code> when an extended ID could
  2850. not be resolved to existing section ID.</td>
  2851. </tr>
  2852. </tbody>
  2853. </table>
  2854. </dd>
  2855. <dt>
  2856. <div class="nameContainer">
  2857. <h4 class="name" id="save">
  2858. save<span class="signature">()</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{Array.&lt;string>}</span>
  2859. </h4>
  2860. <div class="tag-source">
  2861. <a href="uci.js.html">uci.js</a>, <a href="uci.js.html#line867">line 867</a>
  2862. </div>
  2863. </div>
  2864. </dt>
  2865. <dd>
  2866. <div class="description">
  2867. <p>Submits all local configuration changes to the remove <code>ubus</code> api,
  2868. adds, removes and reorders remote sections as needed and reloads
  2869. all loaded configurations to resynchronize the local state with
  2870. the remote configuration values.</p>
  2871. </div>
  2872. <dl class="details">
  2873. </dl>
  2874. <h5>Returns:</h5>
  2875. <table class="params">
  2876. <thead>
  2877. <tr>
  2878. <th>Type</th>
  2879. <th class="last">Description</th>
  2880. </tr>
  2881. </thead>
  2882. <tbody>
  2883. <tr>
  2884. <td class="type">
  2885. Array.&lt;string>
  2886. </td>
  2887. <td class="description last">Returns a promise resolving to an array of configuration names which
  2888. have been reloaded by the save operation.</td>
  2889. </tr>
  2890. </tbody>
  2891. </table>
  2892. </dd>
  2893. <dt>
  2894. <div class="nameContainer">
  2895. <h4 class="name" id="sections">
  2896. sections<span class="signature">(conf, <span class="optional">type</span>, <span class="optional">cb</span>)</span><span class="glyphicon glyphicon-circle-arrow-right"></span><span class="type-signature returnType">{Array.&lt;<a href="LuCI.uci.html#.SectionObject">LuCI.uci.SectionObject</a>>}</span>
  2897. </h4>
  2898. <div class="tag-source">
  2899. <a href="uci.js.html">uci.js</a>, <a href="uci.js.html#line454">line 454</a>
  2900. </div>
  2901. </div>
  2902. </dt>
  2903. <dd>
  2904. <div class="description">
  2905. <p>Enumerates the sections of the given configuration, optionally
  2906. filtered by type.</p>
  2907. </div>
  2908. <table class="params">
  2909. <thead>
  2910. <tr>
  2911. <th>Name</th>
  2912. <th>Type</th>
  2913. <th class="last">Description</th>
  2914. </tr>
  2915. </thead>
  2916. <tbody>
  2917. <tr>
  2918. <td class="name"><code>conf</code></td>
  2919. <td class="type">
  2920. <span class="param-type">string</span>
  2921. </td>
  2922. <td class="description last">
  2923. <p>The name of the configuration to enumerate the sections for.</p></td>
  2924. </tr>
  2925. <tr>
  2926. <td class="name"><code>type</code></td>
  2927. <td class="type">
  2928. <span class="param-type">string</span>
  2929. </td>
  2930. <td class="description last">
  2931. <span class="optional">optional</span>
  2932. <p>Enumerate only sections of the given type. If omitted, enumerate
  2933. all sections.</p></td>
  2934. </tr>
  2935. <tr>
  2936. <td class="name"><code>cb</code></td>
  2937. <td class="type">
  2938. <span class="param-type"><a href="LuCI.uci.html#~sectionsFn">LuCI.uci~sectionsFn</a></span>
  2939. </td>
  2940. <td class="description last">
  2941. <span class="optional">optional</span>
  2942. <p>An optional callback to invoke for each enumerated section.</p></td>
  2943. </tr>
  2944. </tbody>
  2945. </table>
  2946. <dl class="details">
  2947. </dl>
  2948. <h5>Returns:</h5>
  2949. <table class="params">
  2950. <thead>
  2951. <tr>
  2952. <th>Type</th>
  2953. <th class="last">Description</th>
  2954. </tr>
  2955. </thead>
  2956. <tbody>
  2957. <tr>
  2958. <td class="type">
  2959. Array.&lt;<a href="LuCI.uci.html#.SectionObject">LuCI.uci.SectionObject</a>>
  2960. </td>
  2961. <td class="description last">Returns a sorted array of the section objects within the given
  2962. configuration, filtered by type of a type has been specified.</td>
  2963. </tr>
  2964. </tbody>
  2965. </table>
  2966. </dd>
  2967. <dt>
  2968. <div class="nameContainer">
  2969. <h4 class="name" id="set">
  2970. set<span class="signature">(conf, sid, opt, val)</span>
  2971. </h4>
  2972. <div class="tag-source">
  2973. <a href="uci.js.html">uci.js</a>, <a href="uci.js.html#line601">line 601</a>
  2974. </div>
  2975. </div>
  2976. </dt>
  2977. <dd>
  2978. <div class="description">
  2979. <p>Sets the value of the given option within the specified section
  2980. of the given configuration.</p>
  2981. <p>If either config, section or option is null, or if <code>option</code> begins
  2982. with a dot, the function will do nothing.</p>
  2983. </div>
  2984. <table class="params">
  2985. <thead>
  2986. <tr>
  2987. <th>Name</th>
  2988. <th>Type</th>
  2989. <th class="last">Description</th>
  2990. </tr>
  2991. </thead>
  2992. <tbody>
  2993. <tr>
  2994. <td class="name"><code>conf</code></td>
  2995. <td class="type">
  2996. <span class="param-type">string</span>
  2997. </td>
  2998. <td class="description last">
  2999. <p>The name of the configuration to set the option value in.</p></td>
  3000. </tr>
  3001. <tr>
  3002. <td class="name"><code>sid</code></td>
  3003. <td class="type">
  3004. <span class="param-type">string</span>
  3005. </td>
  3006. <td class="description last">
  3007. <p>The name or ID of the section to set the option value in.</p></td>
  3008. </tr>
  3009. <tr>
  3010. <td class="name"><code>opt</code></td>
  3011. <td class="type">
  3012. <span class="param-type">string</span>
  3013. </td>
  3014. <td class="description last">
  3015. <p>The option name to set the value for.</p></td>
  3016. </tr>
  3017. <tr>
  3018. <td class="name"><code>val</code></td>
  3019. <td class="type">
  3020. <span class="param-type">null</span>
  3021. |
  3022. <span class="param-type">string</span>
  3023. |
  3024. <span class="param-type">Array.&lt;string></span>
  3025. </td>
  3026. <td class="description last">
  3027. <p>The option value to set. If the value is <code>null</code> or an empty string,
  3028. the option will be removed, otherwise it will be set or overwritten
  3029. with the given value.</p></td>
  3030. </tr>
  3031. </tbody>
  3032. </table>
  3033. <dl class="details">
  3034. </dl>
  3035. </dd>
  3036. <dt>
  3037. <div class="nameContainer">
  3038. <h4 class="name" id="set_first">
  3039. set_first<span class="signature">(conf, <span class="optional">type</span>, opt, val)</span>
  3040. </h4>
  3041. <div class="tag-source">
  3042. <a href="uci.js.html">uci.js</a>, <a href="uci.js.html#line748">line 748</a>
  3043. </div>
  3044. </div>
  3045. </dt>
  3046. <dd>
  3047. <div class="description">
  3048. <p>Sets the value of the given option within the first found section
  3049. of the given configuration matching the specified type or within
  3050. the first section of the entire config when no type has is specified.</p>
  3051. <p>If either config, type or option is null, or if <code>option</code> begins
  3052. with a dot, the function will do nothing.</p>
  3053. </div>
  3054. <table class="params">
  3055. <thead>
  3056. <tr>
  3057. <th>Name</th>
  3058. <th>Type</th>
  3059. <th class="last">Description</th>
  3060. </tr>
  3061. </thead>
  3062. <tbody>
  3063. <tr>
  3064. <td class="name"><code>conf</code></td>
  3065. <td class="type">
  3066. <span class="param-type">string</span>
  3067. </td>
  3068. <td class="description last">
  3069. <p>The name of the configuration to set the option value in.</p></td>
  3070. </tr>
  3071. <tr>
  3072. <td class="name"><code>type</code></td>
  3073. <td class="type">
  3074. <span class="param-type">string</span>
  3075. </td>
  3076. <td class="description last">
  3077. <span class="optional">optional</span>
  3078. <p>The type of the first section to find. If it is <code>null</code>, the first
  3079. section of the entire config is written to, otherwise the first
  3080. section matching the given type is used.</p></td>
  3081. </tr>
  3082. <tr>
  3083. <td class="name"><code>opt</code></td>
  3084. <td class="type">
  3085. <span class="param-type">string</span>
  3086. </td>
  3087. <td class="description last">
  3088. <p>The option name to set the value for.</p></td>
  3089. </tr>
  3090. <tr>
  3091. <td class="name"><code>val</code></td>
  3092. <td class="type">
  3093. <span class="param-type">null</span>
  3094. |
  3095. <span class="param-type">string</span>
  3096. |
  3097. <span class="param-type">Array.&lt;string></span>
  3098. </td>
  3099. <td class="description last">
  3100. <p>The option value to set. If the value is <code>null</code> or an empty string,
  3101. the option will be removed, otherwise it will be set or overwritten
  3102. with the given value.</p></td>
  3103. </tr>
  3104. </tbody>
  3105. </table>
  3106. <dl class="details">
  3107. </dl>
  3108. </dd>
  3109. <dt>
  3110. <div class="nameContainer">
  3111. <h4 class="name" id="unload">
  3112. unload<span class="signature">(packages)</span>
  3113. </h4>
  3114. <div class="tag-source">
  3115. <a href="uci.js.html">uci.js</a>, <a href="uci.js.html#line259">line 259</a>
  3116. </div>
  3117. </div>
  3118. </dt>
  3119. <dd>
  3120. <div class="description">
  3121. <p>Unloads the given UCI configurations from the local cache.</p>
  3122. </div>
  3123. <table class="params">
  3124. <thead>
  3125. <tr>
  3126. <th>Name</th>
  3127. <th>Type</th>
  3128. <th class="last">Description</th>
  3129. </tr>
  3130. </thead>
  3131. <tbody>
  3132. <tr>
  3133. <td class="name"><code>packages</code></td>
  3134. <td class="type">
  3135. <span class="param-type">string</span>
  3136. |
  3137. <span class="param-type">Array.&lt;string></span>
  3138. </td>
  3139. <td class="description last">
  3140. <p>The name of the configuration or an array of configuration
  3141. names to unload.</p></td>
  3142. </tr>
  3143. </tbody>
  3144. </table>
  3145. <dl class="details">
  3146. </dl>
  3147. </dd>
  3148. <dt>
  3149. <div class="nameContainer">
  3150. <h4 class="name" id="unset">
  3151. unset<span class="signature">(conf, sid, opt)</span>
  3152. </h4>
  3153. <div class="tag-source">
  3154. <a href="uci.js.html">uci.js</a>, <a href="uci.js.html#line682">line 682</a>
  3155. </div>
  3156. </div>
  3157. </dt>
  3158. <dd>
  3159. <div class="description">
  3160. <p>Remove the given option within the specified section of the given
  3161. configuration.</p>
  3162. <p>This function is a convenience wrapper around
  3163. <code>uci.set(config, section, option, null)</code>.</p>
  3164. </div>
  3165. <table class="params">
  3166. <thead>
  3167. <tr>
  3168. <th>Name</th>
  3169. <th>Type</th>
  3170. <th class="last">Description</th>
  3171. </tr>
  3172. </thead>
  3173. <tbody>
  3174. <tr>
  3175. <td class="name"><code>conf</code></td>
  3176. <td class="type">
  3177. <span class="param-type">string</span>
  3178. </td>
  3179. <td class="description last">
  3180. <p>The name of the configuration to remove the option from.</p></td>
  3181. </tr>
  3182. <tr>
  3183. <td class="name"><code>sid</code></td>
  3184. <td class="type">
  3185. <span class="param-type">string</span>
  3186. </td>
  3187. <td class="description last">
  3188. <p>The name or ID of the section to remove the option from.</p></td>
  3189. </tr>
  3190. <tr>
  3191. <td class="name"><code>opt</code></td>
  3192. <td class="type">
  3193. <span class="param-type">string</span>
  3194. </td>
  3195. <td class="description last">
  3196. <p>The name of the option to remove.</p></td>
  3197. </tr>
  3198. </tbody>
  3199. </table>
  3200. <dl class="details">
  3201. </dl>
  3202. </dd>
  3203. <dt>
  3204. <div class="nameContainer">
  3205. <h4 class="name" id="unset_first">
  3206. unset_first<span class="signature">(conf, <span class="optional">type</span>, opt)</span>
  3207. </h4>
  3208. <div class="tag-source">
  3209. <a href="uci.js.html">uci.js</a>, <a href="uci.js.html#line778">line 778</a>
  3210. </div>
  3211. </div>
  3212. </dt>
  3213. <dd>
  3214. <div class="description">
  3215. <p>Removes the given option within the first found section of the given
  3216. configuration matching the specified type or within the first section
  3217. of the entire config when no type has is specified.</p>
  3218. <p>This function is a convenience wrapper around
  3219. <code>uci.set_first(config, type, option, null)</code>.</p>
  3220. </div>
  3221. <table class="params">
  3222. <thead>
  3223. <tr>
  3224. <th>Name</th>
  3225. <th>Type</th>
  3226. <th class="last">Description</th>
  3227. </tr>
  3228. </thead>
  3229. <tbody>
  3230. <tr>
  3231. <td class="name"><code>conf</code></td>
  3232. <td class="type">
  3233. <span class="param-type">string</span>
  3234. </td>
  3235. <td class="description last">
  3236. <p>The name of the configuration to set the option value in.</p></td>
  3237. </tr>
  3238. <tr>
  3239. <td class="name"><code>type</code></td>
  3240. <td class="type">
  3241. <span class="param-type">string</span>
  3242. </td>
  3243. <td class="description last">
  3244. <span class="optional">optional</span>
  3245. <p>The type of the first section to find. If it is <code>null</code>, the first
  3246. section of the entire config is written to, otherwise the first
  3247. section matching the given type is used.</p></td>
  3248. </tr>
  3249. <tr>
  3250. <td class="name"><code>opt</code></td>
  3251. <td class="type">
  3252. <span class="param-type">string</span>
  3253. </td>
  3254. <td class="description last">
  3255. <p>The option name to set the value for.</p></td>
  3256. </tr>
  3257. </tbody>
  3258. </table>
  3259. <dl class="details">
  3260. </dl>
  3261. </dd>
  3262. </dl>
  3263. <h3 class="subsection-title">Type Definitions</h3>
  3264. <dl>
  3265. <dt>
  3266. <div class="nameContainer">
  3267. <h4 class="name" id=".ChangeRecord">LuCI.uci.ChangeRecord<span class="type-signature type array.<string>">Array.&lt;string></span> </h4>
  3268. </div>
  3269. </dt>
  3270. <dd>
  3271. <div class="description">
  3272. <p>An UCI change record is a plain array containing the change operation
  3273. name as first element, the affected section ID as second argument
  3274. and an optional third and fourth argument whose meanings depend on
  3275. the operation.</p>
  3276. </div>
  3277. <dl class="details">
  3278. <h5 class="subsection-title">Properties:</h5>
  3279. <dl>
  3280. <table class="props">
  3281. <thead>
  3282. <tr>
  3283. <th>Name</th>
  3284. <th>Type</th>
  3285. <th class="last">Description</th>
  3286. </tr>
  3287. </thead>
  3288. <tbody>
  3289. <tr>
  3290. <td class="name"><code>0</code></td>
  3291. <td class="type">
  3292. <span class="param-type">string</span>
  3293. </td>
  3294. <td class="description last"><p>The operation name - may be one of <code>add</code>, <code>set</code>, <code>remove</code>, <code>order</code>,
  3295. <code>list-add</code>, <code>list-del</code> or <code>rename</code>.</p></td>
  3296. </tr>
  3297. <tr>
  3298. <td class="name"><code>1</code></td>
  3299. <td class="type">
  3300. <span class="param-type">string</span>
  3301. </td>
  3302. <td class="description last"><p>The section ID targeted by the operation.</p></td>
  3303. </tr>
  3304. <tr>
  3305. <td class="name"><code>2</code></td>
  3306. <td class="type">
  3307. <span class="param-type">string</span>
  3308. </td>
  3309. <td class="description last"><p>The meaning of the third element depends on the operation.</p>
  3310. <ul>
  3311. <li>For <code>add</code> it is type of the section that has been added</li>
  3312. <li>For <code>set</code> it either is the option name if a fourth element exists,
  3313. or the type of a named section which has been added when the change
  3314. entry only contains three elements.</li>
  3315. <li>For <code>remove</code> it contains the name of the option that has been
  3316. removed.</li>
  3317. <li>For <code>order</code> it specifies the new sort index of the section.</li>
  3318. <li>For <code>list-add</code> it contains the name of the list option a new value
  3319. has been added to.</li>
  3320. <li>For <code>list-del</code> it contains the name of the list option a value has
  3321. been removed from.</li>
  3322. <li>For <code>rename</code> it contains the name of the option that has been
  3323. renamed if a fourth element exists, else it contains the new name
  3324. a section has been renamed to if the change entry only contains
  3325. three elements.</li>
  3326. </ul></td>
  3327. </tr>
  3328. <tr>
  3329. <td class="name"><code>4</code></td>
  3330. <td class="type">
  3331. <span class="param-type">string</span>
  3332. </td>
  3333. <td class="description last"><p>The meaning of the fourth element depends on the operation.</p>
  3334. <ul>
  3335. <li>For <code>set</code> it is the value an option has been set to.</li>
  3336. <li>For <code>list-add</code> it is the new value that has been added to a
  3337. list option.</li>
  3338. <li>For <code>rename</code> it is the new name of an option that has been
  3339. renamed.</li>
  3340. </ul></td>
  3341. </tr>
  3342. </tbody>
  3343. </table></dl>
  3344. </dl>
  3345. </dd>
  3346. <dt>
  3347. <div class="nameContainer">
  3348. <h4 class="name" id=".SectionObject">LuCI.uci.SectionObject<span class="type-signature type object.<string, (boolean|number|string|array.<string>)>">Object.&lt;string, (boolean|number|string|Array.&lt;string>)></span> </h4>
  3349. </div>
  3350. </dt>
  3351. <dd>
  3352. <div class="description">
  3353. <p>A section object represents the options and their corresponding values
  3354. enclosed within a configuration section, as well as some additional
  3355. meta data such as sort indexes and internal ID.</p>
  3356. <p>Any internal metadata fields are prefixed with a dot which isn't
  3357. an allowed character for normal option names.</p>
  3358. </div>
  3359. <dl class="details">
  3360. <h5 class="subsection-title">Properties:</h5>
  3361. <dl>
  3362. <table class="props">
  3363. <thead>
  3364. <tr>
  3365. <th>Name</th>
  3366. <th>Type</th>
  3367. <th class="last">Description</th>
  3368. </tr>
  3369. </thead>
  3370. <tbody>
  3371. <tr>
  3372. <td class="name"><code>.anonymous</code></td>
  3373. <td class="type">
  3374. <span class="param-type">boolean</span>
  3375. </td>
  3376. <td class="description last"><p>The <code>.anonymous</code> property specifies whether the configuration is
  3377. anonymous (<code>true</code>) or named (<code>false</code>).</p></td>
  3378. </tr>
  3379. <tr>
  3380. <td class="name"><code>.index</code></td>
  3381. <td class="type">
  3382. <span class="param-type">number</span>
  3383. </td>
  3384. <td class="description last"><p>The <code>.index</code> property specifies the sort order of the section.</p></td>
  3385. </tr>
  3386. <tr>
  3387. <td class="name"><code>.name</code></td>
  3388. <td class="type">
  3389. <span class="param-type">string</span>
  3390. </td>
  3391. <td class="description last"><p>The <code>.name</code> property holds the name of the section object. It may be
  3392. either an anonymous ID in the form <code>cfgXXXXXX</code> or <code>newXXXXXX</code> with <code>X</code>
  3393. being a hexadecimal digit or a string holding the name of the section.</p></td>
  3394. </tr>
  3395. <tr>
  3396. <td class="name"><code>.type</code></td>
  3397. <td class="type">
  3398. <span class="param-type">string</span>
  3399. </td>
  3400. <td class="description last"><p>The <code>.type</code> property contains the type of the corresponding uci
  3401. section.</p></td>
  3402. </tr>
  3403. <tr>
  3404. <td class="name"><code>*</code></td>
  3405. <td class="type">
  3406. <span class="param-type">string</span>
  3407. |
  3408. <span class="param-type">Array.&lt;string></span>
  3409. </td>
  3410. <td class="description last"><p>A section object may contain an arbitrary number of further properties
  3411. representing the uci option enclosed in the section.</p>
  3412. <p>All option property names will be in the form <code>[A-Za-z0-9_]+</code> and
  3413. either contain a string value or an array of strings, in case the
  3414. underlying option is an UCI list.</p></td>
  3415. </tr>
  3416. </tbody>
  3417. </table></dl>
  3418. </dl>
  3419. </dd>
  3420. <dt>
  3421. <div class="nameContainer">
  3422. <h4 class="name" id="~sectionsFn">
  3423. sectionsFn<span class="signature">(section, sid)</span>
  3424. </h4>
  3425. <div class="tag-source">
  3426. <a href="uci.js.html">uci.js</a>, <a href="uci.js.html#line422">line 422</a>
  3427. </div>
  3428. </div>
  3429. </dt>
  3430. <dd>
  3431. <div class="description">
  3432. <p>The sections callback is invoked for each section found within
  3433. the given configuration and receives the section object and its
  3434. associated name as arguments.</p>
  3435. </div>
  3436. <table class="params">
  3437. <thead>
  3438. <tr>
  3439. <th>Name</th>
  3440. <th>Type</th>
  3441. <th class="last">Description</th>
  3442. </tr>
  3443. </thead>
  3444. <tbody>
  3445. <tr>
  3446. <td class="name"><code>section</code></td>
  3447. <td class="type">
  3448. <span class="param-type"><a href="LuCI.uci.html#.SectionObject">LuCI.uci.SectionObject</a></span>
  3449. </td>
  3450. <td class="description last">
  3451. <p>The section object.</p></td>
  3452. </tr>
  3453. <tr>
  3454. <td class="name"><code>sid</code></td>
  3455. <td class="type">
  3456. <span class="param-type">string</span>
  3457. </td>
  3458. <td class="description last">
  3459. <p>The name or ID of the section.</p></td>
  3460. </tr>
  3461. </tbody>
  3462. </table>
  3463. <dl class="details">
  3464. </dl>
  3465. </dd>
  3466. </dl>
  3467. </article>
  3468. </section>
  3469. <footer>
  3470. Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.11</a> on Wed Nov 27 2024 20:43:36 GMT+0000 (Coordinated Universal Time)
  3471. </footer>
  3472. </div>
  3473. </div>
  3474. <script>prettyPrint();</script>
  3475. <script src="scripts/jaguar.js"></script>
  3476. </body>
  3477. </html>