HARMONY-TRIO.txt 143 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278
  1. // page js
  2. var nb_affichage;
  3. var st, st1;
  4. var jourMois = ["31","28","31","30","31","30","31","31","30","31","30","31"];
  5. var tch_zone_horaire = new Array(
  6. "Hawaii (GMT-10:00)",
  7. //value="0"
  8. "L.Angeles (GMT-08:00)",
  9. "Denver (GMT-07:00)",
  10. "Chicago (GMT-06:00)",
  11. "New York (GMT-05:00)",
  12. "Santiago (GMT-04:00)",
  13. //value="5"
  14. "Martinique (GMT-04:00)",
  15. "Guyana (GMT-03:00)",
  16. "Azores (GMT-01:00)",
  17. "London (GMT+00:00)",
  18. "Paris (GMT+01:00)",
  19. //value="10"
  20. "Helsinki (GMT+02:00)",
  21. "Moscow (GMT+03:00)", // FQ 4348
  22. "Reunion (GMT+04:00)",
  23. "Abu Dhabi (GMT+04:00)",
  24. "Kolkata (GMT+05:30)",
  25. //value="15"
  26. "Bangkok (GMT+07:00)",
  27. "Singapore (GMT+08:00)",
  28. "Tokyo (GMT+09:00)",
  29. "Adelaide (GMT+09:30)",
  30. "Sydney (GMT+10:00)",
  31. //value="20"
  32. "Noumea (GMT+11:00)",
  33. "PROG.");
  34. //value="22"
  35. var tch_rang = new Array(
  36. "date",
  37. //value="0"
  38. "1st",
  39. "2nd",
  40. "3rd",
  41. "4th",
  42. "last", //value="5"
  43. "fixe quant.",
  44. "after 1st",
  45. "after 2nd",
  46. "after 3rd",
  47. "after 4th",
  48. "after last",
  49. //value="11"
  50. "before 1st",
  51. "before 2nd",
  52. "before 3rd",
  53. "before 4th",
  54. "before last");
  55. var tch_jour = new Array(
  56. "Sunday",
  57. //value="0"
  58. "Monday",
  59. "Tuesday",
  60. "Wednesday",
  61. "Thursday",
  62. "Friday",
  63. //value="5"
  64. "Saturday");//value="6"
  65. var tch_mois = new Array(
  66. "January",
  67. //value="0"
  68. "February",
  69. "March",
  70. "April",
  71. "May",
  72. "June",
  73. "July",
  74. //value="5"
  75. "August",
  76. "September",
  77. "October",
  78. "November",
  79. //value="10"
  80. "December");//value="11"
  81. // page js
  82. function parse_vars(data) {
  83. var parsed = data.split( "\n" );
  84. var i;
  85. F_remplir_select();
  86. document.getElementsByName("ntp_mode")[0].selectedIndex = parsed[0] ;
  87. document.getElementsByName("ntp1")[0].value= parsed[1] ;
  88. document.getElementsByName("ntp2")[0].value= parsed[2] ;
  89. document.getElementsByName("ntp3")[0].value= parsed[3] ;
  90. document.getElementsByName("ntp4")[0].value= parsed[4] ;
  91. document.getElementsByName("ntp5")[0].value= parsed[5] ;
  92. document.getElementsByName("pool")[0].value= parsed[6] ;
  93. //NTP-I
  94. if (parsed[7] == 0)
  95. document.getElementsByName("ntpi")[0].checked = false ;
  96. else document.getElementsByName("ntpi")[0].checked = true ;
  97. configSyncBoxes();
  98. j=0;
  99. document.getElementsByName("K"+j)[0].selectedIndex = parsed[8] ;
  100. document.getElementsByName("TZn"+j)[0].selectedIndex = parsed[9] ;
  101. document.getElementsByName("TZh"+j)[0].selectedIndex = parsed[10] ;
  102. document.getElementsByName("TZm"+j)[0].selectedIndex = parsed[11] ;
  103. if (parsed[12] == 0)
  104. document.getElementsByName("tc"+j)[0].checked = false ;
  105. else document.getElementsByName("tc"+j)[0].checked = true ;
  106. document.getElementsByName("EM"+j)[0].selectedIndex = parsed[13] ;
  107. document.getElementsByName("ER"+j)[0].selectedIndex = parsed[14] ;
  108. if ((parsed[14] == 0) || (parsed[14] == 6))
  109. document.getElementsByName("EJF"+j)[0].selectedIndex = parsed[15]-1 ;
  110. else
  111. document.getElementsByName("EJ"+j)[0].selectedIndex = parsed[15] ;
  112. document.getElementsByName("HM"+j)[0].selectedIndex = parsed[16] ;
  113. document.getElementsByName("HR"+j)[0].selectedIndex = parsed[17] ;
  114. if ((parsed[17] == 0) || (parsed[17] == 6))
  115. document.getElementsByName("HJF"+j)[0].selectedIndex = parsed[18]-1 ;
  116. else
  117. document.getElementsByName("HJ"+j)[0].selectedIndex = parsed[18] ;
  118. configAllTimeConf();
  119. function verify_input(){
  120. var carValides = /^[\w-.]*$/;
  121. var reCarInvalides = /_/;
  122. e = document.forms.config2;
  123. if ((carValides.test(e.ntp1.value) && carValides.test(e.ntp2.value) && carValides.test(e.ntp3.value) && carValides.test(e.ntp4.value) && carValides.test(e.ntp5.value)) &&
  124. (!reCarInvalides.test(e.ntp1.value) && !reCarInvalides.test(e.ntp2.value) && !reCarInvalides.test(e.ntp3.value) && !reCarInvalides.test(e.ntp4.value) && !reCarInvalides.test(e.ntp5.value)))
  125. if (e.ntp_mode.selectedIndex == 2) //multicast
  126. return verify_addr();
  127. //@IP obligatoire
  128. return true;
  129. else
  130. alert("wrong caracters, only 'A-Z, a-z, 0-9, ., -' accepted");
  131. return false ;
  132. function verify_addr(){
  133. var adresseIP;
  134. var octetAdresseIP1, octetAdresseIP2, octetAdresseIP3, octetAdresseIP4 ;
  135. e = document.forms.config2;
  136. st = e.ntp_mode.selectedIndex ;
  137. if (st == 1) // Unicast
  138. for (var i = 1; i <= 5; ++i)
  139. if (document.getElementsByName('ntp'+i)[0].value.length > 0)
  140. adresseIP = document.getElementsByName('ntp'+i)[0].value;
  141. octetAdresseIP1 = adresseIP.substring(0,adresseIP.indexOf('.'));
  142. adresseIP = adresseIP.substring(adresseIP.indexOf('.')).substring(1);
  143. octetAdresseIP2 = adresseIP.substring(0,adresseIP.indexOf('.'));
  144. adresseIP = adresseIP.substring(adresseIP.indexOf('.')).substring(1);
  145. octetAdresseIP3 = adresseIP.substring(0,adresseIP.indexOf('.'));
  146. octetAdresseIP4 = adresseIP.substring(adresseIP.indexOf('.')).substring(1);
  147. if ((octetAdresseIP1.length == 0) || (octetAdresseIP1>255) ||
  148. (octetAdresseIP2.length == 0) || (octetAdresseIP2>255) ||
  149. (octetAdresseIP3.length == 0) || (octetAdresseIP3>255) ||
  150. (octetAdresseIP4.length == 0) || (octetAdresseIP4>255))
  151. alert('IP address '+i+' : "'+document.getElementsByName('ntp'+i)[0].value +'" is incorrect.');
  152. return false;
  153. if ((octetAdresseIP1 >= 224) && (octetAdresseIP1 <= 239))
  154. if (confirm('Address IP '+i+' : "'+document.getElementsByName('ntp'+i)[0].value+'" is not a valid Unicast IP address.\n Do you want to continue?')==false)
  155. return false;
  156. if (st == 2) // Multicast
  157. adresseIP = document.getElementsByName('ntp1')[0].value;
  158. octetAdresseIP1 = adresseIP.substring(0,adresseIP.indexOf('.'));
  159. adresseIP = adresseIP.substring(adresseIP.indexOf('.')).substring(1);
  160. octetAdresseIP2 = adresseIP.substring(0,adresseIP.indexOf('.'));
  161. adresseIP = adresseIP.substring(adresseIP.indexOf('.')).substring(1);
  162. octetAdresseIP3 = adresseIP.substring(0,adresseIP.indexOf('.'));
  163. octetAdresseIP4 = adresseIP.substring(adresseIP.indexOf('.')).substring(1);
  164. if ((octetAdresseIP1.length == 0) || (octetAdresseIP1>255) ||
  165. (octetAdresseIP2.length == 0) || (octetAdresseIP2>255) ||
  166. (octetAdresseIP3.length == 0) || (octetAdresseIP3>255) ||
  167. (octetAdresseIP4.length == 0) || (octetAdresseIP4>255))
  168. alert('IP address 1 : "'+document.getElementsByName('ntp1')[0].value +'" is incorrect.');
  169. return false;
  170. if ((octetAdresseIP1 < 224) || (octetAdresseIP1 > 239))
  171. if (confirm('Address IP 1 : "'+document.getElementsByName('ntp1')[0].value+'" is not a valid Multicast IP address.\n Do you want to continue?')==false)
  172. return false;
  173. return true;
  174. function configSyncBoxes() {
  175. e = document.forms.config2;
  176. st = e.ntp_mode.selectedIndex ;
  177. if (st == 0) // DHCP
  178. e.ntp1.disabled = 1
  179. e.ntp2.disabled = 1
  180. e.ntp3.disabled = 1
  181. e.ntp4.disabled = 1
  182. e.ntp5.disabled = 1
  183. e.pool.disabled = 0
  184. document.getElementById('id_label_Address1').style.color='darkgray';
  185. document.getElementById('id_label_Address2').style.color='darkgray';
  186. document.getElementById('id_label_Address3').style.color='darkgray';
  187. document.getElementById('id_label_Address4').style.color='darkgray';
  188. document.getElementById('id_label_Address5').style.color='darkgray';
  189. document.getElementById('id_interval').style.color='black';
  190. if (st == 1) // Unicast
  191. e.ntp1.disabled = 0
  192. e.ntp2.disabled = 0
  193. e.ntp3.disabled = 0
  194. e.ntp4.disabled = 0
  195. e.ntp5.disabled = 0
  196. e.pool.disabled = 0
  197. document.getElementById('id_label_Address1').style.color='black';
  198. document.getElementById('id_label_Address2').style.color='black';
  199. document.getElementById('id_label_Address3').style.color='black';
  200. document.getElementById('id_label_Address4').style.color='black';
  201. document.getElementById('id_label_Address5').style.color='black';
  202. document.getElementById('id_interval').style.color='black';
  203. if (st == 2) // Multicast
  204. e.ntp1.disabled = 0
  205. e.ntp2.disabled = 1
  206. e.ntp3.disabled = 1
  207. e.ntp4.disabled = 1
  208. e.ntp5.disabled = 1
  209. e.pool.disabled = 1
  210. document.getElementById('id_label_Address1').style.color='black';
  211. document.getElementById('id_label_Address2').style.color='darkgray';
  212. document.getElementById('id_label_Address3').style.color='darkgray';
  213. document.getElementById('id_label_Address4').style.color='darkgray';
  214. document.getElementById('id_label_Address5').style.color='darkgray';
  215. document.getElementById('id_interval').style.color='darkgray';
  216. function configAllTimeConf()
  217. if (nb_affichage>1)
  218. document.getElementById('id_label_Time_Zone').style.display = 'none';
  219. for (i = 0; i <= nb_affichage; i++)
  220. configTimeConf(i);
  221. else
  222. document.getElementById('id_label_Time_Zone').style.display = 'inline';
  223. configTimeConf(0);
  224. function configTimeConf(numAffichage)
  225. st = document.getElementsByName("K"+numAffichage)[0].selectedIndex ;
  226. if (st == 22)
  227. document.getElementById('timechangesetting'+numAffichage).style.display = 'inline';
  228. configTimeChangeOver(numAffichage);
  229. else
  230. document.getElementById('timechangesetting'+numAffichage).style.display = 'none';
  231. document.getElementById('timezone'+numAffichage).style.display = 'inline';
  232. function configTimeChangeOver()
  233. e = document.forms.config;
  234. st = document.getElementsByName("tc")[0].checked ;
  235. e.dns2.disabled = st;
  236. if (st){
  237. document.getElementById('id_label_Winter_Time').style.color='black';
  238. document.getElementById('id_label_Summer_Time').style.color='black';
  239. document.getElementsByName("EM")[0].disabled = 0;
  240. document.getElementsByName("EJ")[0].disabled = 0;
  241. document.getElementsByName("EJF")[0].disabled = 0;
  242. document.getElementsByName("ER")[0].disabled = 0;
  243. document.getElementsByName("HM")[0].disabled = 0;
  244. document.getElementsByName("HJ")[0].disabled = 0;
  245. document.getElementsByName("HJF")[0].disabled = 0;
  246. document.getElementsByName("HR")[0].disabled = 0;
  247. else {
  248. document.getElementById('id_label_Winter_Time').style.color='darkgray';
  249. document.getElementById('id_label_Summer_Time').style.color='darkgray';
  250. document.getElementsByName("EM")[0].disabled = 1;
  251. document.getElementsByName("EJ")[0].disabled = 1;
  252. document.getElementsByName("EJF")[0].disabled = 1;
  253. document.getElementsByName("ER")[0].disabled = 1;
  254. document.getElementsByName("HM")[0].disabled = 1;
  255. document.getElementsByName("HJ")[0].disabled = 1;
  256. document.getElementsByName("HJF")[0].disabled = 1;
  257. document.getElementsByName("HR")[0].disabled = 1;
  258. configTimeRangHiver();
  259. configTimeRangEte();
  260. function configTimeChangeOver(numAffichage)
  261. e = document.forms.config;
  262. st = document.getElementsByName("tc"+numAffichage)[0].checked ;
  263. e.dns2.disabled = st;
  264. if (st){
  265. document.getElementById('id_label_Winter_Time'+numAffichage).style.color='black';
  266. document.getElementById('id_label_Summer_Time'+numAffichage).style.color='black';
  267. document.getElementsByName("EM"+numAffichage)[0].disabled = 0;
  268. document.getElementsByName("EJ"+numAffichage)[0].disabled = 0;
  269. document.getElementsByName("EJF"+numAffichage)[0].disabled = 0;
  270. document.getElementsByName("ER"+numAffichage)[0].disabled = 0;
  271. document.getElementsByName("HM"+numAffichage)[0].disabled = 0;
  272. document.getElementsByName("HJ"+numAffichage)[0].disabled = 0;
  273. document.getElementsByName("HJF"+numAffichage)[0].disabled = 0;
  274. document.getElementsByName("HR"+numAffichage)[0].disabled = 0;
  275. else {
  276. document.getElementById('id_label_Winter_Time'+numAffichage).style.color='darkgray';
  277. document.getElementById('id_label_Summer_Time'+numAffichage).style.color='darkgray';
  278. document.getElementsByName("EM"+numAffichage)[0].disabled = 1;
  279. document.getElementsByName("EJ"+numAffichage)[0].disabled = 1;
  280. document.getElementsByName("EJF"+numAffichage)[0].disabled = 1;
  281. document.getElementsByName("ER"+numAffichage)[0].disabled = 1;
  282. document.getElementsByName("HM"+numAffichage)[0].disabled = 1;
  283. document.getElementsByName("HJ"+numAffichage)[0].disabled = 1;
  284. document.getElementsByName("HJF"+numAffichage)[0].disabled = 1;
  285. document.getElementsByName("HR"+numAffichage)[0].disabled = 1;
  286. configTimeRangHiver(numAffichage);
  287. configTimeRangEte(numAffichage);
  288. function configJourFixeHiver(numAffichage)
  289. var temp;
  290. st = document.getElementsByName("HR"+numAffichage)[0].selectedIndex;
  291. if ((st == 0) || (st == 6))
  292. st1 = document.getElementsByName("HJF"+numAffichage)[0];
  293. temp = st1.selectedIndex;
  294. st1.length = 0; //on vide le select box
  295. for (var i=1 ; i <= jourMois[document.getElementsByName("HM"+numAffichage)[0].selectedIndex]; i++)
  296. st1.options[st1.length] = new Option(i, i);
  297. //on r
  298. re l'ancien index (cap
  299. la valeur max)
  300. if (temp == -1)
  301. st1 = 0;
  302. else if (temp<st1.length)
  303. st1.selectedIndex = temp;
  304. else
  305. st1.selectedIndex = st1.length-1;
  306. displayTextChangeover(numAffichage, 1);
  307. function configTimeRangHiver(numAffichage)
  308. st = document.getElementsByName("HR"+numAffichage)[0].selectedIndex;
  309. if ((st == 0) || (st == 6))
  310. document.getElementsByName("HJ"+numAffichage)[0].style.display = 'none';
  311. document.getElementsByName("HJF"+numAffichage)[0].style.display = 'inline';
  312. configJourFixeHiver(numAffichage);
  313. else
  314. document.getElementsByName("HJ"+numAffichage)[0].style.display = 'inline';
  315. document.getElementsByName("HJF"+numAffichage)[0].style.display = 'none';
  316. displayTextChangeover(numAffichage, 1);
  317. function configJourFixeEte(numAffichage)
  318. var temp;
  319. st = document.getElementsByName("ER"+numAffichage)[0].selectedIndex;
  320. if ((st == 0) || (st == 6))
  321. st1 = document.getElementsByName("EJF"+numAffichage)[0];
  322. temp = st1.selectedIndex;
  323. st1.length = 0; //on vide le select box
  324. for (var i=1 ; i <= jourMois[document.getElementsByName("EM"+numAffichage)[0].selectedIndex]; i++)
  325. st1.options[st1.length] = new Option(i, i);
  326. //on r
  327. re l'ancien index (cap
  328. la valeur max)
  329. if (temp == -1)
  330. st1.selectedIndex = 0;
  331. else if (temp<st1.length)
  332. st1.selectedIndex = temp;
  333. else
  334. st1.selectedIndex = st1.length-1;
  335. displayTextChangeover(numAffichage, 0);
  336. function configTimeRangEte(numAffichage)
  337. st = document.getElementsByName("ER"+numAffichage)[0].selectedIndex;
  338. if ((st == 0) || (st == 6))
  339. document.getElementsByName("EJ"+numAffichage)[0].style.display = 'none';
  340. document.getElementsByName("EJF"+numAffichage)[0].style.display = 'inline';
  341. configJourFixeEte(numAffichage);
  342. else
  343. document.getElementsByName("EJ"+numAffichage)[0].style.display = 'inline';
  344. document.getElementsByName("EJF"+numAffichage)[0].style.display = 'none';
  345. displayTextChangeover(numAffichage, 0);
  346. function displayTextChangeover (numAffichage, season)
  347. var textSeason;
  348. var textExpl;
  349. if (season == 0)
  350. textSeason = "E"
  351. else
  352. textSeason = "H"
  353. textExpl = "TZ"+textSeason +"_exp"+numAffichage;
  354. var month = document.getElementsByName(textSeason + "M"+numAffichage)[0].selectedIndex;
  355. var rang = document.getElementsByName(textSeason + "R"+numAffichage)[0].selectedIndex;
  356. var date = document.getElementsByName(textSeason + "JF"+numAffichage)[0].selectedIndex;
  357. var jour = document.getElementsByName(textSeason + "J"+numAffichage)[0].selectedIndex;
  358. if (rang == 0)
  359. document.getElementById(textExpl).innerHTML = tch_mois[month] + " " + (date+1);
  360. else if (rang <= 5)
  361. document.getElementById(textExpl).innerHTML = tch_rang[rang] + " " + tch_jour[jour] + " of " + tch_mois[month];
  362. else if (rang == 6)
  363. if (month <= 1)
  364. document.getElementById(textExpl).innerHTML = tch_mois[month] + " " + (date+1);
  365. else
  366. if (date > 0)
  367. document.getElementById(textExpl).innerHTML = tch_mois[month] + " " + (date+1) + " (except leap years: " + tch_mois[month] + " " + (date) + ")";
  368. else
  369. document.getElementById(textExpl).innerHTML = tch_mois[month] + " " + (date+1) + " (except leap years: " + tch_mois[month-1] + " " + jourMois[month-1] + ")";
  370. else if (rang <= 11)
  371. document.getElementById(textExpl).innerHTML = tch_jour[(jour + 1) % 7] + " " + tch_rang[rang] + " " + tch_jour[jour] + " of " + tch_mois[month];
  372. else
  373. document.getElementById(textExpl).innerHTML = tch_jour[(jour + 6) % 7] + " " + tch_rang[rang] + " " + tch_jour[jour] + " of " + tch_mois[month];
  374. function F_remplir_select()
  375. var i,j,temp_str;
  376. //jusqu'
  377. 7 affichage
  378. //for (i = 0; i <= 7 ; i++)
  379. i = 0;
  380. st1 = document.getElementsByName("K"+i)[0];
  381. for (j = 0; j <= 22; j++)
  382. st1.options[st1.length] = new Option(tch_zone_horaire[j], j);
  383. st1 = document.getElementsByName("TZh"+i)[0];
  384. for (j = 0; j <= 12; j++)
  385. st1.options[st1.length] = new Option(j+"H", j);
  386. st1 = document.getElementsByName("TZm"+i)[0];
  387. for (j = 0; j <= 3; j++)
  388. st1.options[st1.length] = new Option(j*15, j);
  389. st1 = document.getElementsByName("EM"+i)[0];
  390. st2 = document.getElementsByName("HM"+i)[0];
  391. for (j = 0; j < tch_mois.length; j++)
  392. st1.options[st1.length] = new Option(tch_mois[j], j);
  393. st2.options[st2.length] = new Option(tch_mois[j], j);
  394. st1 = document.getElementsByName("ER"+i)[0];
  395. st2 = document.getElementsByName("HR"+i)[0];
  396. for (j = 0; j < tch_rang.length; j++)
  397. st1.options[st1.length] = new Option(tch_rang[j], j);
  398. st2.options[st2.length] = new Option(tch_rang[j], j);
  399. st1 = document.getElementsByName("EJ"+i)[0];
  400. st2 = document.getElementsByName("HJ"+i)[0];
  401. for (j = 0; j < tch_jour.length; j++)
  402. st1.options[st1.length] = new Option(tch_jour[j], j);
  403. st2.options[st2.length] = new Option(tch_jour[j], j);
  404. st1 = document.getElementsByName("EJF"+i)[0];
  405. st2 = document.getElementsByName("HJF"+i)[0];
  406. for (j = 1; j <= 31; j++)
  407. st1.options[st1.length] = new Option(j, j);
  408. st2.options[st2.length] = new Option(j, j);
  409. function codeTouche(evenement)
  410. for (prop in evenement)
  411. if(prop == 'which') return(evenement.which);
  412. return(evenement.keyCode);
  413. function scanTouche_adresseIP(evenement)
  414. var reCarValides = /[\d.\x00\x08\x0D]/;
  415. var car = String.fromCharCode(codeTouche(evenement));
  416. return reCarValides.test(car);
  417. function scanTouche_chiffre(evenement)
  418. var reCarValides = /[\d\x00\x08\x0D]/;
  419. var car = String.fromCharCode(codeTouche(evenement));
  420. return reCarValides.test(car);
  421. function scanTouche(evenement)
  422. var reCarValides = /[\w-.\x00\x08\x0D]/;
  423. var reCarInvalides = /_/;
  424. var car = String.fromCharCode(codeTouche(evenement));
  425. return (reCarValides.test(car) && !reCarInvalides.test(car)) ;
  426. AppG
  427. ppG*
  428. ph`E
  429. Wi0X
  430. ht`Ri
  431. `xbk
  432. %(F2
  433. &ec0Fp
  434. bj`x
  435. q`x
  436. %(F2
  437. FpG-
  438. pD0F
  439. pG(F
  440. F.h,
  441. 9F(F
  442. "9F0F
  443. a1yA
  444. 1q'F
  445. 1F@F
  446. 21F F
  447. 2F)F F
  448. a y@
  449. )F F
  450. hnaT
  451. H/!F
  452. Fti7h 4
  453. )F8F
  454. a)F8F
  455. F0Fp
  456. 'j8x
  457. &j0x
  458. bi"c
  459. 3F
  460. ai F
  461. j "
  462. F!k%hfi
  463. 5j,{
  464. ZT1j
  465. zr0j
  466. z9r2j
  467. 8`0j
  468. 2jR\I
  469. RRaArrAa
  470. F(FE
  471. 1x=F
  472. !FPF
  473. 0x/(
  474. " !0F
  475. "*:<>?|
  476. +,;=[]
  477. /0 F
  478. `iF F
  479. FAT32
  480. 5`(x
  481. !)pophx
  482. !F(F
  483. $bE8
  484. $rE8
  485. ,(q+
  486. ha,p
  487. h@x
  488. (`0Fp
  489. :FiF
  490. Hkhb
  491. ((a:
  492. RRaArrAap
  493. BQF8
  494. ;Fhx
  495. 2jJE
  496. D:FPF
  497. BQF8
  498. 3Fhx
  499. 8j@E
  500. i&FQF
  501. h h)F
  502. iF F
  503. !F(F
  504. F F!F(F
  505. )F F
  506. !FhF
  507. " !80
  508. )FN0
  509. "F81
  510. Kx.+
  511. 7v 7
  512. \1@F
  513. 9F F
  514. )! w
  515. )! p
  516. mI@F
  517. 8F'F
  518. :FAF
  519. !@F_D
  520. E:FAF0F
  521. KqHD
  522. "AF0F
  523. RRaArrAa
  524. #pGJ
  525. $/FN
  526. MSDOS5.0
  527. NO NAME FAT32
  528. NO NAME FAT
  529. zJhSh
  530. "bU2
  531. 0zehpG8
  532. (z\h%i
  533. hMhP*
  534. "P:@
  535. FpG@
  536. k l!hBC
  537. k l"h
  538. `#hI
  539. pApu
  540. )F0F
  541. *F*`
  542. c(F)d
  543. FP!
  544. 2FQF8F
  545. Ep2FAF F
  546. BpG-
  547. 9F0F
  548. c0i0
  549. YpGr
  550. p`0i0
  551. 9F Fv
  552. 2F)F
  553. aYa@
  554. $- 8
  555. ]IP Jh
  556. *IJhR
  557. *J`
  558. pG IHhH
  559. `b\k
  560. 4 `\
  561. aRFmbAF
  562. Cie!
  563. l FI
  564. H!o!
  565. !g#m
  566. jpG(oH
  567. `pG|
  568. IDLE
  569. 0g1o
  570. Cqe!
  571. #3f0h
  572. 0fd
  573. e0n8
  574. b8cxn@
  575. Cye)
  576. AhIhA`
  577. IhA`@h
  578. (T*o"
  579. pGP#@
  580. 5!F(F
  581. Cie!
  582. (fp
  583. TP#*o"
  584. !)fp
  585. Cie!
  586. An!`
  587. mA`pG
  588. mbh.h
  589. +`An!`
  590. fpGp
  591. dikI
  592. pG-
  593. zCBD
  594. DMP"
  595. #m`e
  596. imGC
  597. iepG
  598. `mP"
  599. 'ai{C
  600. Cie!
  601. jBmR
  602. jpG<
  603. M F/m
  604. BhJ`
  605. #F\h%h
  606. ZhJ`
  607. hDhT`Kh
  608. `Ph0a
  609. @paqiO
  610. 1F7hzh
  611. 2iyh
  612. 0api
  613. (MahjiP#
  614. h`hA
  615. FS`Ch
  616. C`$h
  617. @F !
  618. 8`8j
  619. (8b"
  620. pG H
  621. CF:F1F(F
  622. #2FiF(F
  623. i3F*F F
  624. aj F
  625. h"Fq
  626. !!`(F5a
  627. ?a0h
  628. yj8F
  629. phq`0`
  630. BA`GM
  631. ij(F
  632. "a` !
  633. Tmr Svc
  634. TmrQ
  635. HxD 0
  636. 0x%(
  637. jFAF0F
  638. 0x.(
  639. 8h8`v
  640. 0xh(
  641. 0xl(
  642. :h:`R
  643. hjltzL
  644. !pG|
  645. :@l,
  646. `3T)
  647. 3+cjF)F
  648. ia-"
  649. ia+"
  650. ia "2T
  651. hi0!1T@
  652. ja4T!Fhi0D
  653. ia-"
  654. ia+"
  655. ia "2Thi0D
  656. `!F(F
  657. `x!(F
  658. : l*
  659. ia%"2T
  660. ha%"rT!
  661. ka4T
  662. Frkpi1j
  663. siBF1F(F
  664. h1F(F
  665. 1F(F
  666. #ik@
  667. hiHD
  668. )F0F
  669. JFiF
  670. )F0F
  671. hahc F$
  672. Fo)>i
  673. 0 ;%
  674. {kyi8j[
  675. @FIF"F
  676. rU@FIF"F
  677. p]0(
  678. 0 pU
  679. BFKF0F9F
  680. F@FIFBFKF
  681. 0F9F
  682. x!X!Aphi
  683. (kIF
  684. F@FIF
  685. F@FIF
  686. @F1F
  687. F@F1F
  688. Ff,(k
  689. F@FIF
  690. F@FIF
  691. 1x0)
  692. 2FQF(F
  693. @j5k
  694. 0@f(
  695. 0#CT
  696. ABDE
  697. i*F9F
  698. BF9F
  699. +"Bp
  700. -!ApdB
  701. printf_s: %n disallowed
  702. printf: bad %n argument
  703. printf_s: bad %s argument
  704. printf_s: bad %ls argument
  705. pGa8
  706. pGA8
  707. 0pG
  708. 8pG
  709. HpGp
  710. ahjk F
  711. !a`2
  712. `Bh2
  713. pAhI
  714. A`pG
  715. constraint handler: bad message
  716. [BRBc
  717. IB@Ba
  718. IB@Ba
  719. [BRBc
  720. F)FvA
  721. 0FqFdAmA
  722. @AIAT
  723. $B<D
  724. QpGP
  725. @RB@
  726. "pGO
  727. : ;
  728. pGRB@
  729. QpG
  730. L5*'
  731. pGaF
  732. P@pG
  733. V5.O
  734. 0FaF
  735. I""BP
  736. @U@c
  737. @Z@mB
  738. @AIA!
  739. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//FR"
  740. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  741. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
  742. <head>
  743. <title>BODET Carillon</title>
  744. <link href="melodys.css" rel="stylesheet" type="text/css" />
  745. <script type="text/javascript" src="request.js"></script>
  746. <script type="text/javascript" src="param.js"></script>
  747. <style type="text/css">
  748. .auto-style1 {
  749. margin-left: 4px;
  750. </style>
  751. </head>
  752. <body>
  753. <div id="shadow-one" style="height: 396px"><div id="shadow-two"><div id="shadow-three"><div id="shadow-four">
  754. <div id="page">
  755. <div style="padding:0 0 5px 0px"><img src="bodet.png" width=22% alt="Bodet"/></div>
  756. <div id="title"><div class="right">Serveur Web</div><span id="hello">&nbsp;</span></div>
  757. <div id="menu">
  758. <a href="index_fr.html">Accueil</a>
  759. <a href="network_fr.html">Configuration r&eacute;seau</a>
  760. <a href="param_fr.html">Param&egrave;tres</a>
  761. <a href="time_fr.html">Distribution horaire</a>
  762. <a href="SNMP_fr.html">Configuration alarmes</a>
  763. <a href="system_fr.html">Syst&egrave;me</a>
  764. </div>
  765. <div id="content" style="width: 525px;">
  766. <h1>Param&egrave;tres</h1>
  767. <p>&nbsp;</p>
  768. <p class="auto-style1"><strong>Adresses Multicast</strong></p>
  769. <form method="post" action="save.cgi" name="config_1" onsubmit="return testChampMul();">
  770. <fieldset>
  771. <div><label style="margin-left:-110px" for="id_multi" id="id_label_multi">Adresse A</label>
  772. <td><input type="text" name="ip_multi1" id="id_multi1" onKeyPress="return scanTouche_adresseIP(event)" /></td>
  773. </div>
  774. <div><label style="margin-left:-110px" for="id_multi" id="id_label_multi">Adresse B</label>
  775. <td><input type="text" name="ip_multi2" id="id_multi" onKeyPress="return scanTouche_adresseIP(event)" /></td>
  776. </div>
  777. <div>&nbsp;</div>
  778. <div><label id="id_zone">N&deg; de zone</label>
  779. <input type="int" name="zone" size="5" maxlength="3"style="width: 47px" onKeyPress="return scanTouche_chiffre(event)"/>&nbsp;&nbsp;&nbsp;<i>(1-100)</i></div>
  780. <div></div>
  781. <div><input type="submit" class="sm" value="Ok" style="width: 125px"/></div>
  782. </fieldset>
  783. </form>
  784. <p class="auto-style1"><strong>Audio</strong></p>
  785. <form method="post" action="audio.cgi" name="config_2">
  786. <fieldset>
  787. <div>
  788. <span lang="fr"><label id="id_label_vol">Volume</label></span>
  789. <select name="volume" style="width: 136px">
  790. <option value="1">Niveau 1 (faible)</option>
  791. <option value="2">Niveau 2</option>
  792. <option value="3">Niveau 3</option>
  793. <option value="4">Niveau 4</option>
  794. <option value="5">Niveau 5</option>
  795. <option value="6">Niveau 6</option>
  796. <option value="7">Niveau 7</option>
  797. <option value="8">Niveau 8 (fort)</option>
  798. </select>
  799. </div>
  800. <div>
  801. <input type="checkbox" class="sm" name="boost" value="0" onclick="gestion_message_boost()"/>Boost
  802. <img class="picto" id="picto_boost" src="warn.png" style="visibility:hidden"/>
  803. <span id="warning_boost"></span>
  804. <div id="id_poe_vol" style="display:none;padding:0px">
  805. <p class="error" style="margin: 0px" >
  806. <b>PoE : </b><span id="label_poe_vol"></span></p>
  807. <div>&nbsp;</div>
  808. </div>
  809. </div>
  810. <div><input type="submit" class="sm" value="Ok" style="width: 125px"/></div>
  811. </fieldset>
  812. </form>
  813. <!--<div>&nbsp;&nbsp;</div>-->
  814. <p class="auto-style1"><strong>Texte</strong></p>
  815. <form method="post" action="display.cgi" name="config_3">
  816. <fieldset>
  817. <div>
  818. <label id="id_label_light">Luminosit&eacute;</label>
  819. <select name="light" class="auto-style1" onchange="change_lum_disp(value)" style="width: 136px">
  820. <option value="1">Niveau 1 (faible)</option>
  821. <option value="2">Niveau 2</option>
  822. <option value="3">Niveau 3</option>
  823. <option value="4">Niveau 4 (fort)</option>
  824. </select>
  825. <div id="id_poe_disp" style="display:none;padding:0px">
  826. <div>&nbsp;</div>
  827. <p class="error" style="margin: 0px">
  828. <b>PoE : </b><span id="label_poe_disp"></p>
  829. </div>
  830. </div>
  831. <div>&nbsp;</div>
  832. <!--choix mode affichage heure-->
  833. <div>
  834. <label>Affichage Heure</label>
  835. <select name="dispAff" class="auto-style1" style="width: 136px" onChange="confAffHeure()">
  836. <option value="0">Aucun</option>
  837. <option value="1">HH:MM</option>
  838. <option value="2">HH:MM:SS</option>
  839. </select>
  840. </div>
  841. <div>&nbsp;</div>
  842. <div id="idAffConf" style="display: none;padding: 2px 0px;">
  843. <!--choix mode 12/24H-->
  844. <div><label id="ampm_text">Mode 12H/24H</label>
  845. <input type="radio" name="amPm" value="0" style="width: 27px" id="ampm12"><span id="ampm12_text">12H</span></input>
  846. <input type="radio" name="amPm" value="1" style="width: 27px" id="ampm24"><span id="ampm24_text">24H</span></input>
  847. </div>
  848. <span id = "id_texte_warning1" style="display:none">Mode 12H non compatible avec affichage des secondes</span>
  849. <div>&nbsp;</div>
  850. <!--choix mode ECO/Normal-->
  851. <div><label id="id_label_ecoNor">Eco Mode</label>
  852. <input type="radio" name="ecoNor" onclick="F_Change_EcoNor();" value="0" style="width: 27px">Eco</input>
  853. <input type="radio" name="ecoNor" onclick="F_Change_EcoNor();" value="1" style="width: 27px">Normal</input>
  854. </div>
  855. <!--affichage des heures ON/OFF-->
  856. <span id="id_EcoP_actif" style="display:none">
  857. <div>&nbsp;</div>
  858. <div>
  859. <label id="id_label_ecoNor">ON & OFF Time</label>
  860. <span id="id_ecop">
  861. <input type="number" min="0" max="23" step="1" style="width:40px;text-align: right;" name="Ecop_OFF" id="id_Ecop_OFF"/> H : OFF
  862. <input type="number" min="0" max="23" step="1" style="width:40px;margin-left:30px;text-align: right;" name="Ecop_ON" id="id_Ecop_ON"/> H : ON
  863. </span>
  864. </div>
  865. </span>
  866. <div>&nbsp;</div>
  867. </div>
  868. <!--choix mode affichage heure-->
  869. <div>
  870. <label>Vitesse de defilement</label>
  871. <select name="speedAff" class="auto-style1" style="width: 136px">
  872. <option value="1">Lent</option>
  873. <option value="2">Normal</option>
  874. <option value="3">Rapide</option>
  875. </select>
  876. </div>
  877. <div>&nbsp;</div>
  878. <div><input type="submit" class="sm" value="Ok" style="width: 125px"/></div>
  879. </fieldset>
  880. </form>
  881. <p class="auto-style1"><strong>Flash</strong></p>
  882. <form method="post" action="flash.cgi" name="config_4">
  883. <fieldset>
  884. <div>
  885. <span lang="fr"><label id="id_label_light_flash">Luminosit&eacute;</label></span>
  886. <select name="lightFlash" class="auto-style1" onchange="change_lum_flash(value)" style="width: 136px">
  887. <option value="1">25%</option>
  888. <option value="2">50%</option>
  889. <option value="3">75%</option>
  890. <option value="4">100%</option>
  891. </select>
  892. <div id="id_poe_flash" style="display:none;padding:0px">
  893. <div>&nbsp;</div>
  894. <p class="error" style="margin: 0px">
  895. <b>PoE : </b><span id="label_poe_flash"></span></p>
  896. </div>
  897. </div>
  898. <div>&nbsp;</div>
  899. <div><input type="submit" class="sm" value="Ok" style="width: 125px"/></div>
  900. </fieldset>
  901. </form>
  902. <p class="auto-style1"><strong>Repeteur</strong></p>
  903. <form method="post" action="save_rep.cgi" onsubmit="return testChampRep()" name="config_5">
  904. <fieldset>
  905. <div><input type="checkbox" class="sm" name="repet_in" value="0" onclick="configRepeaterClient()" />R&eacute;p&eacute;teur client<br /><br /></div>
  906. <div></div>
  907. <div><input type="checkbox" class="sm" name="repet_out" value="0" onclick="configRepeaterServer()" />R&eacute;p&eacute;teur serveur<br /><br /></div>
  908. <div></div>
  909. <div><input type="checkbox" class="sm" name="repet_mls" value="0" onclick="configRepeaterMultisite()" />R&eacute;p&eacute;teur multisite<br /><br /></div>
  910. <div><label for="id_ip" id="id_label_ip">Adresse R&eacute;p&eacute;teur</label>
  911. <td><input type="text" name="ip_rep" id="id_ip_rep" onKeyPress="return scanTouche_adresseIP(event)" /></td></div>
  912. <div></div>
  913. <div><input type="submit" class="sm" value="Ok et Red&eacute;marrer" /></div>
  914. </fieldset>
  915. </form>
  916. </div>
  917. <script language="javascript">
  918. function gestion_message_boost() {
  919. if (document.getElementsByName("boost")[0].checked == true)
  920. if (poe_vol == 1)
  921. document.getElementById('id_poe_vol').style.display = 'inline';
  922. else
  923. document.getElementById('id_poe_vol').style.display = 'none';
  924. document.getElementById('warning_boost').innerHTML = "Budget PoE";
  925. document.getElementById('picto_boost').style.visibility = 'visible';
  926. }
  927. else
  928. {
  929. document.getElementById('id_poe_vol').style.display = 'none';
  930. document.getElementById('warning_boost').innerHTML = "";
  931. document.getElementById('picto_boost').style.visibility = 'hidden'
  932. }
  933. document.getElementById('hello').innerHTML = "Param&egrave;tres Carillon";
  934. document.getElementById('label_poe_vol').innerHTML = "Boost d&eacutesactiv&eacute";
  935. document.getElementById('label_poe_flash').innerHTML = "Luminosit&eacute; brid&eacute;e &agrave; " + document.getElementsByName('lightFlash')[0][max_poe_flash-1].text;
  936. document.getElementById('label_poe_disp').innerHTML = "Luminosit&eacute; brid&eacute;e au niveau " + max_poe_disp;
  937. </script>
  938. <div class="spacer" style="height: 46px"></div>
  939. </div>
  940. </div>
  941. </div>
  942. </div>
  943. </div>
  944. </body>
  945. </html>
  946. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  947. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  948. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  949. <head>
  950. <title>BODET Speaker</title>
  951. <link href="melodys.css" rel="stylesheet" type="text/css" />
  952. <script type="text/javascript" src="request.js"></script>
  953. <script type="text/javascript" src="param.js"></script>
  954. <style type="text/css">
  955. .auto-style1 {
  956. margin-left: 4px;
  957. </style>
  958. </head>
  959. <body>
  960. <div id="shadow-one" style="height: 396px"><div id="shadow-two"><div id="shadow-three"><div id="shadow-four">
  961. <div id="page">
  962. <div style="padding:0 0 5px 0px"><img src="bodet.png" width=22% alt="Bodet"/></div>
  963. <div id="title"><div class="right">Embedded Web Server</div><span id="hello">&nbsp;</span></div>
  964. <div id="menu">
  965. <a href="index_gb.html">Home</a>
  966. <a href="network_gb.html">Network Configuration</a>
  967. <a href="param_gb.html">Parameters</a>
  968. <a href="time_gb.html">Time Configuration</a>
  969. <a href="SNMP_gb.html">Alarm Configuration</a>
  970. <a href="system_gb.html">System</a>
  971. </div>
  972. <div id="content" style="width: 525px;">
  973. <h1>Parameters</h1>
  974. <p>&nbsp;</p>
  975. <p class="auto-style1"><strong>Multicast Addresses</strong></p>
  976. <form method="post" action="save.cgi" name="config_1" onsubmit="return testChampMul();">
  977. <fieldset>
  978. <!--<div><label style="width: 169px;top: 225px;">Multicast Addresses</label></div>
  979. <p>&nbsp;</p>-->
  980. <div><label style="margin-left:-110px" for="id_multi" id="id_label_multi">Address A</label>
  981. <td><input type="text" name="ip_multi1" id="id_multi1" onKeyPress="return scanTouche_adresseIP(event)" /></td>
  982. </div>
  983. <div><label style="margin-left:-110px" for="id_multi" id="id_label_multi">Address B</label>
  984. <td><input type="text" name="ip_multi2" id="id_multi" onKeyPress="return scanTouche_adresseIP(event)" /></td>
  985. </div>
  986. <div>&nbsp;</div>
  987. <div><label id="id_zone">N&deg; zone</label>
  988. <input type="int" name="zone" size="5" maxlength="3"style="width: 47px" onKeyPress="return scanTouche_chiffre(event)"/>&nbsp;&nbsp;&nbsp;<i>(1-100)</i></div>
  989. <div></div>
  990. <div><input type="submit" class="sm" value="Save" style="width: 125px"/></div>
  991. </fieldset>
  992. </form>
  993. <p class="auto-style1"><strong>Audio</strong></p>
  994. <form method="post" action="audio.cgi" name="config_2">
  995. <fieldset>
  996. <div>
  997. <span lang="en"><label id="id_label_vol">Volume</label></span>
  998. <select name="volume" style="width: 136px">
  999. <option value="1">Level 1 (low)</option>
  1000. <option value="2">Level 2</option>
  1001. <option value="3">Level 3</option>
  1002. <option value="4">Level 4</option>
  1003. <option value="5">Level 5</option>
  1004. <option value="6">Level 6</option>
  1005. <option value="7">Level 7</option>
  1006. <option value="8">Level 8 (high)</option>
  1007. </select>
  1008. </div>
  1009. <div>
  1010. <input type="checkbox" class="sm" name="boost" value="0" onclick="gestion_message_boost()"/>Boost
  1011. <img class="picto" id="picto_boost" src="warn.png" style="visibility:hidden"/>
  1012. <span id="warning_boost"></span>
  1013. <div id="id_poe_vol" style="display:none;padding:0px">
  1014. <p class="error" style="margin: 0px" >
  1015. <b>PoE : </b><span id="label_poe_vol"></span></p>
  1016. <div>&nbsp;</div>
  1017. </div>
  1018. </div>
  1019. <div><input type="submit" class="sm" value="Ok" style="width: 125px"/></div>
  1020. </fieldset>
  1021. </form>
  1022. <!--<div>&nbsp;&nbsp;</div>-->
  1023. <p class="auto-style1"><strong>Text</strong></p>
  1024. <form method="post" action="display.cgi" name="config_3">
  1025. <fieldset>
  1026. <div>
  1027. <label id="id_label_light">luminosity</label>
  1028. <select name="light" class="auto-style1" onchange="change_lum_disp(value)" style="width: 136px">
  1029. <option value="1">Level 1 (low)</option>
  1030. <option value="2">Level 2</option>
  1031. <option value="3">Level 3</option>
  1032. <option value="4">Level 4 (high)</option>
  1033. </select>
  1034. <div id="id_poe_disp" style="display:none;padding:0px">
  1035. <div>&nbsp;</div>
  1036. <p class="error" style="margin: 0px">
  1037. <b>PoE : </b><span id="label_poe_disp"></p>
  1038. </div>
  1039. </div>
  1040. <div>&nbsp;</div>
  1041. <!--choix mode affichage heure-->
  1042. <div>
  1043. <label>Time Display</label>
  1044. <select name="dispAff" class="auto-style1" style="width: 136px" onChange="confAffHeure()">
  1045. <option value="0">Aucun</option>
  1046. <option value="1">HH:MM</option>
  1047. <option value="2">HH:MM:SS</option>
  1048. </select>
  1049. </div>
  1050. <div>&nbsp;</div>
  1051. <div id="idAffConf" style="display: none;padding: 2px 0px;">
  1052. <!--choix mode 12/24H-->
  1053. <div><label id="ampm_text">Mode 12H/24H</label>
  1054. <input type="radio" name="amPm" value="0" style="width: 27px" id="ampm12"><span id="ampm12_text">12H</span></input>
  1055. <input type="radio" name="amPm" value="1" style="width: 27px" id="ampm24"><span id="ampm24_text">24H</span></input>
  1056. </div>
  1057. <span id = "id_texte_warning1" style="display:none">Mode 12H is not compatible with seconds display</span>
  1058. <div>&nbsp;</div>
  1059. <!--choix mode ECO/Normal-->
  1060. <div><label id="id_label_ecoNor">Eco Mode</label>
  1061. <input type="radio" name="ecoNor" onclick="F_Change_EcoNor();" value="0" style="width: 27px">Eco</input>
  1062. <input type="radio" name="ecoNor" onclick="F_Change_EcoNor();" value="1" style="width: 27px">Normal</input>
  1063. </div>
  1064. <!--affichage des heures ON/OFF-->
  1065. <span id="id_EcoP_actif" style="display:none">
  1066. <div>&nbsp;</div>
  1067. <div>
  1068. <label id="id_label_ecoNor">ON & OFF Time</label>
  1069. <span id="id_ecop">
  1070. <input type="number" min="0" max="23" step="1" style="width:40px;text-align: right;" name="Ecop_OFF" id="id_Ecop_OFF"/> H : OFF
  1071. <input type="number" min="0" max="23" step="1" style="width:40px;margin-left:30px;text-align: right;" name="Ecop_ON" id="id_Ecop_ON"/> H : ON
  1072. </span>
  1073. </div>
  1074. </span>
  1075. <div>&nbsp;</div>
  1076. </div>
  1077. <!--choix mode affichage heure-->
  1078. <div>
  1079. <label>Scrolling Speed</label>
  1080. <select name="speedAff" class="auto-style1" style="width: 136px">
  1081. <option value="1">Slow</option>
  1082. <option value="2">Normal</option>
  1083. <option value="3">Fast</option>
  1084. </select>
  1085. </div>
  1086. <div>&nbsp;</div>
  1087. <div><input type="submit" class="sm" value="Ok" style="width: 125px"/></div>
  1088. </fieldset>
  1089. </form>
  1090. <p class="auto-style1"><strong>Flash</strong></p>
  1091. <form method="post" action="flash.cgi" name="config_4">
  1092. <fieldset>
  1093. <div>
  1094. <span lang="fr"><label id="id_label_light_flash">luminosity</label></span>
  1095. <select name="lightFlash" class="auto-style1" onchange="change_lum_flash(value)" style="width: 136px">
  1096. <option value="1">25%</option>
  1097. <option value="2">50%</option>
  1098. <option value="3">75%</option>
  1099. <option value="4">100%</option>
  1100. </select>
  1101. <div id="id_poe_flash" style="display:none;padding:0px">
  1102. <div>&nbsp;</div>
  1103. <p class="error" style="margin: 0px">
  1104. <b>PoE : </b><span id="label_poe_flash"></span></p>
  1105. </div>
  1106. </div>
  1107. <div>&nbsp;</div>
  1108. <div><input type="submit" class="sm" value="Ok" style="width: 125px"/></div>
  1109. </fieldset>
  1110. </form>
  1111. <p class="auto-style1"><strong>Repeater</strong></p>
  1112. <form method="post" action="save_rep.cgi" onsubmit="return testChampRep()" name="config_5">
  1113. <fieldset>
  1114. <div><input type="checkbox" class="sm" name="repet_in" value="0" onclick="configRepeaterClient()" />Client repeater<br /><br /></div>
  1115. <div></div>
  1116. <div><input type="checkbox" class="sm" name="repet_out" value="0" onclick="configRepeaterServer()" />Server repeater<br /><br /></div>
  1117. <div></div>
  1118. <div><input type="checkbox" class="sm" name="repet_mls" value="0" onclick="configRepeaterMultisite()" />Multisite repeater<br /><br /></div>
  1119. <div><label for="id_ip" id="id_label_ip">Repeater Address</label>
  1120. <td><input type="text" name="ip_rep" id="id_ip_rep" onKeyPress="return scanTouche_adresseIP(event)" /></td></div>
  1121. <div></div>
  1122. <div><input type="submit" class="sm" value="Save and Reboot" /></div>
  1123. </fieldset>
  1124. </form>
  1125. </div>
  1126. <script language="javascript">
  1127. function gestion_message_boost() {
  1128. if (document.getElementsByName("boost")[0].checked == true)
  1129. if (poe_vol == 1)
  1130. document.getElementById('id_poe_vol').style.display = 'inline';
  1131. else
  1132. document.getElementById('id_poe_vol').style.display = 'none';
  1133. document.getElementById('warning_boost').innerHTML = "PoE budget";
  1134. document.getElementById('picto_boost').style.visibility = 'visible'
  1135. }
  1136. else
  1137. {
  1138. document.getElementById('id_poe_vol').style.display = 'none';
  1139. document.getElementById('warning_boost').innerHTML = "";
  1140. document.getElementById('picto_boost').style.visibility = 'hidden'
  1141. }
  1142. document.getElementById('hello').innerHTML = "Speaker Setting";
  1143. document.getElementById('label_poe_vol').innerHTML = "Boost desactivated";
  1144. document.getElementById('label_poe_flash').innerHTML = "Luminosity limited at " + document.getElementsByName('lightFlash')[0][max_poe_flash-1].text;
  1145. document.getElementById('label_poe_disp').innerHTML = "Luminosity limited at level " + max_poe_disp;
  1146. </script>
  1147. <div class="spacer" style="height: 46px"></div>
  1148. </div>
  1149. </div>
  1150. </div>
  1151. </div>
  1152. </div>
  1153. </body>
  1154. </html>
  1155. var poe_vol;
  1156. var poe_disp;
  1157. var poe_flash;
  1158. const max_poe_vol = 8;
  1159. const max_poe_flash = 3;
  1160. const max_poe_disp = 3;
  1161. // page js
  1162. function parse_param(data) {
  1163. var parsed = data.split( "\n" );
  1164. // Adresse Multicast
  1165. document.getElementsByName("ip_multi1")[0].value= parsed[0] ;
  1166. // Adresse Multicast 2
  1167. document.getElementsByName("ip_multi2")[0].value= parsed[1] ;
  1168. // Zone
  1169. document.getElementsByName("zone")[0].value= parsed[2] ;
  1170. // coche REPETEUR IN
  1171. if (parsed[3] == 0)
  1172. document.getElementsByName("repet_in")[0].checked = false ;
  1173. else
  1174. document.getElementsByName("repet_in")[0].checked = true ;
  1175. // coche REPETEUR OUT
  1176. if (parsed[4] == 0)
  1177. document.getElementsByName("repet_out")[0].checked = false ;
  1178. else
  1179. document.getElementsByName("repet_out")[0].checked = true ;
  1180. if (parsed[5] == 0)
  1181. document.getElementsByName("repet_mls")[0].checked = false ;
  1182. else
  1183. document.getElementsByName("repet_mls")[0].checked = true ;
  1184. // Adresse Repeteur
  1185. document.getElementsByName("ip_rep")[0].value= parsed[6] ;
  1186. configRepeaterClient();
  1187. function parse_audio(data)
  1188. var parsed = data.split( "\n" );
  1189. // Volume
  1190. document.getElementsByName("volume")[0].value = parsed[0] ;
  1191. // coche boost
  1192. if (parsed[1] == 0)
  1193. document.getElementsByName("boost")[0].checked = false ;
  1194. else
  1195. document.getElementsByName("boost")[0].checked = true ;
  1196. poe_vol = parsed[2];
  1197. gestion_message_boost();
  1198. function parse_display(data)
  1199. var parsed = data.split( "\n" );
  1200. // Luminosit
  1201. document.getElementsByName("light")[0].value= parsed[0] ;
  1202. // Affichage de l'heure
  1203. document.getElementsByName("dispAff")[0].value= parsed[1] ;
  1204. //mode 12/24H
  1205. if (parsed[2]== 0)
  1206. document.getElementsByName("amPm")[0].checked = true ;
  1207. else document.getElementsByName("amPm")[1].checked = true ;
  1208. //Mode ECO
  1209. // hvac_value[4]=0 mode Eco
  1210. // hvac_value[4]=1 mode normal
  1211. if (parsed[3]== 1)
  1212. document.getElementsByName("ecoNor")[1].checked = true ;
  1213. //normal
  1214. else // mode Eco ou EcoP
  1215. document.getElementsByName("ecoNor")[0].checked = true ;
  1216. //Eco
  1217. val_eco_on = parsed[4] ;
  1218. val_eco_off = parsed[5] ;
  1219. confAffHeure();
  1220. F_Change_EcoNor();
  1221. // Vitesse d'affichage des messages
  1222. document.getElementsByName("speedAff")[0].value= parsed[6] ;
  1223. poe_disp = parsed[7];
  1224. change_lum_disp(parsed[0]);
  1225. function parse_flash(data)
  1226. var parsed = data.split( "\n" );
  1227. // Luminosite
  1228. document.getElementsByName("lightFlash")[0].value = parsed[0] ;
  1229. poe_flash = parsed[1];
  1230. change_lum_flash(parsed[0]);
  1231. window.onload = function() {
  1232. //F_remplir_select();
  1233. makeRequest("param.cgi", parse_param);
  1234. makeRequest("audio.cgi", parse_audio);
  1235. makeRequest("display.cgi", parse_display);
  1236. makeRequest("flash.cgi", parse_flash);
  1237. function change_vol(data)
  1238. if ((poe_vol == 1) && (data > max_poe_vol))
  1239. document.getElementById('id_poe_vol').style.display = 'inline';
  1240. else
  1241. document.getElementById('id_poe_vol').style.display = 'none';
  1242. function change_lum_disp(data)
  1243. if ((poe_disp == 1) && (data > max_poe_disp))
  1244. document.getElementById('id_poe_disp').style.display = 'inline';
  1245. else
  1246. document.getElementById('id_poe_disp').style.display = 'none';
  1247. function change_lum_flash(data)
  1248. if ((poe_flash == 1) && (data > max_poe_flash))
  1249. document.getElementById('id_poe_flash').style.display = 'inline';
  1250. else
  1251. document.getElementById('id_poe_flash').style.display = 'none';
  1252. //-------------------------------------------------------------------------------------------------------------
  1253. //---
  1254. //-------------------------------------------------------------------------------------------------------------
  1255. function F_Change_EcoNor()
  1256. if (document.getElementsByName("ecoNor")[0].checked == true)
  1257. document.getElementById('id_EcoP_actif').style.display = 'inline';
  1258. configEcoP();
  1259. else
  1260. document.getElementById('id_EcoP_actif').style.display = 'none';
  1261. //-------------------------------------------------------------------------------------------------------------
  1262. //---
  1263. //-------------------------------------------------------------------------------------------------------------
  1264. function configEcoP()
  1265. document.getElementById('id_Ecop_OFF').disabled = false;
  1266. document.getElementById('id_Ecop_OFF').value = val_eco_off;
  1267. document.getElementById('id_Ecop_ON').disabled = false;
  1268. document.getElementById('id_Ecop_ON').value = val_eco_on;
  1269. function confAffHeure()
  1270. if (document.getElementsByName("dispAff")[0].value == "0")
  1271. document.getElementById('idAffConf').style.display = 'none';
  1272. else
  1273. document.getElementById('idAffConf').style.display = 'block';
  1274. if (document.getElementsByName("dispAff")[0].value == "2")
  1275. document.getElementById('id_texte_warning1').style.display = 'block';
  1276. document.getElementById("ampm12").disabled = true ;
  1277. document.getElementById("ampm24").disabled = true ;
  1278. document.getElementById("ampm12_text").style.color = 'darkgray';
  1279. document.getElementById("ampm24_text").style.color = 'darkgray';
  1280. document.getElementById("ampm_text").style.color = 'darkgray' ;
  1281. else
  1282. document.getElementById('id_texte_warning1').style.display = 'none';
  1283. document.getElementById("ampm12").disabled = false ;
  1284. document.getElementById("ampm24").disabled = false ;
  1285. document.getElementById("ampm12_text").style.color = 'black';
  1286. document.getElementById("ampm24_text").style.color = 'black';
  1287. document.getElementById("ampm_text").style.color = 'black' ;
  1288. function scanTouche_adresseIP(evenement)
  1289. var reCarValides = /[\d.\x00\x08]/;
  1290. var car = String.fromCharCode(codeTouche(evenement));
  1291. return reCarValides.test(car);
  1292. function scanTouche_chiffre(evenement)
  1293. var reCarValides = /[\d\x00\x08\x0D]/;
  1294. var car = String.fromCharCode(codeTouche(evenement));
  1295. return reCarValides.test(car);
  1296. function configRepeaterClient() {
  1297. e = document.forms.config_5;
  1298. st_in = e.repet_in.checked; // client
  1299. if (st_in)
  1300. e.repet_out.checked = false;
  1301. e.repet_mls.checked = false;
  1302. st_out = e.repet_out.checked; // server
  1303. st_mls = e.repet_mls.checked; // multisite
  1304. if ((!st_in) && (!st_out) && (!st_mls)) {
  1305. document.getElementById('id_ip_rep').style.color='darkgray';
  1306. else {
  1307. document.getElementById('id_ip_rep').style.color='black';
  1308. function configRepeaterServer() {
  1309. e = document.forms.config_5;
  1310. st_out = e.repet_out.checked;
  1311. if (st_out)
  1312. e.repet_in.checked = false;
  1313. e.repet_mls.checked = false;
  1314. st_in = e.repet_in.checked;
  1315. st_mls = e.repet_mls.checked;
  1316. if ((!st_in) && (!st_out) && (!st_mls)) {
  1317. document.getElementById('id_ip_rep').style.color='darkgray';
  1318. else {
  1319. document.getElementById('id_ip_rep').style.color='black';
  1320. function configRepeaterMultisite() {
  1321. e = document.forms.config_5;
  1322. st_mls = e.repet_mls.checked;
  1323. if (st_mls)
  1324. e.repet_in.checked = false;
  1325. e.repet_out.checked = false;
  1326. st_in = e.repet_in.checked;
  1327. st_out = e.repet_out.checked;
  1328. if ((!st_in) && (!st_out) && (!st_mls)) {
  1329. document.getElementById('id_ip_rep').style.color='darkgray';
  1330. else {
  1331. document.getElementById('id_ip_rep').style.color='black';
  1332. function testChampRep() {
  1333. e = document.forms.config_5;
  1334. if (e.ip_rep.value != "")
  1335. if (ValidateIPaddress(e.ip_rep.value) == false)
  1336. return (false)
  1337. return true;
  1338. function testChampMul()
  1339. e = document.forms.config_1;
  1340. if (e.ip_multi1.value != "")
  1341. if (ValidateIPaddress(e.ip_multi1.value) == false)
  1342. return (false)
  1343. if (e.ip_multi2.value != "")
  1344. if (ValidateIPaddress(e.ip_multi2.value) == false)
  1345. return (false)
  1346. return true;
  1347. SITH
  1348. HL z
  1349. \TBR
  1350. \UBR
  1351. 1FHF
  1352. v1F:F
  1353. 'ZDk\0+
  1354. #STI
  1355. 0{1)
  1356. !&0F
  1357. 6&0F
  1358. zz1(
  1359. z}1(
  1360. pCXD
  1361. ERROR S_param.TCH_user !!! %d
  1362. j"1(pG
  1363. 1(pG
  1364. p"hO
  1365. kF:F)F
  1366. $.`1&
  1367. xcx"x
  1368. ycy9F
  1369. zcz9F
  1370. |c|9F
  1371. }c}9F
  1372. !{(h
  1373. 1}(h
  1374. xsx2x
  1375. q{(h
  1376. |s|2|
  1377. ysy9F
  1378. q}(h
  1379. j 9F
  1380. ) QF`C@D
  1381. "(hd
  1382. Vt(h"h
  1383. pG)hO
  1384. (`pGhFO
  1385. (h9F
  1386. s[H0`
  1387. q`2rqr
  1388. d&1F
  1389. 0p5I
  1390. ERROR delete file %s
  1391. /CONFIG\C_A_vars.tri
  1392. F_sauv_A_vars DEBUT
  1393. /CONFIG\C_A_vars.triold
  1394. C_A_vars.triold
  1395. ERROR rename file
  1396. Create file ERROR
  1397. %d.%d.%d.%d
  1398. CHK = %04x (%d)
  1399. F_sauv_A_vars FIN
  1400. F_config_par_defaut_A_vars
  1401. BODET-%02X%02X%02X%02X%02X%02X
  1402. jkl1vi5erjnfh
  1403. public
  1404. aSe2=9Z8gOi37*
  1405. ----
  1406. 239.192.54.1
  1407. MELODYS_2013
  1408. `FpG
  1409. 0%7%
  1410. 7#0#
  1411. 7"0"
  1412. HppG8
  1413. FD@D
  1414. HrpG
  1415. @x@(
  1416. IF,"
  1417. p(F@
  1418. z`q8
  1419. axP)
  1420. qHy=(
  1421. y0(
  1422. ax!)
  1423. !zp{
  1424. yP(
  1425. "jq9x
  1426. QF@F
  1427. "jq9x
  1428. QF@F
  1429. P"AF
  1430. q`x
  1431. p`)y
  1432. pG8h
  1433. "AF8F
  1434. C`zH
  1435. jha3h#
  1436. `pPF
  1437. `tPF
  1438. ph`a(i
  1439. (`hi
  1440. ZFQF
  1441. 2FAF
  1442. ZFQF
  1443. ppG8
  1444. `bBM
  1445. stop manuel message
  1446. buffer full %d
  1447. F_traitement_OPCODE --> ERROR
  1448. BAD %d/%d
  1449. RX %d/%d (%d/%d)
  1450. CHK BAD !!! %d
  1451. error %lx
  1452. a1FAC
  1453. "FCS
  1454. `x!x@
  1455. ApG(h
  1456. !FhF
  1457. .a(x
  1458. (ap
  1459. IHapG
  1460. HAiI
  1461. FsM(h
  1462. kF "QF
  1463. GL F
  1464. ! "yaQF F
  1465. #QFXF
  1466. Exit
  1467. error HAL_SPI_Transmit : %d
  1468. F_fifo_dequeue_n ERROR
  1469. N]kw
  1470. dBIB
  1471. x+FI
  1472. yqz0z
  1473. !pG+F
  1474. !pG-
  1475. 0XDHCHD
  1476. ]YE
  1477. TC#D
  1478. U DEp
  1479. >D0ppG
  1480. <#9x
  1481. yxj
  1482. (W
  1483. ppG<!
  1484. ppGAh
  1485. A`pGAh
  1486. rA`pG
  1487. FuOy~
  1488. ;v}v_
  1489. Fpi F
  1490. Fd(pG
  1491. 1F(F
  1492. "F1F(F
  1493. `d"a`
  1494. `!abapG8
  1495. d p1
  1496. F8h,F
  1497. Z"y(h
  1498. ycy(h
  1499. )Fd"
  1500. prBF
  1501. <YQx(hT
  1502. '0F"F"
  1503. !FpG
  1504. d"!pO
  1505. 7ap1F
  1506. d#d!
  1507. !!pap@
  1508. hF,"
  1509. !
  1510. "9F;
  1511. %2d
  1512. "pGDisplay connected
  1513. Display not connected
  1514. %02d*.txt
  1515. /MESSAGES
  1516. %s/%s
  1517. error opening text file
  1518. error reading text file
  1519. traitement message
  1520. error malloc
  1521. #!PoE!#
  1522. %s %c %s
  1523. %02d*.mp3
  1524. /MELODIES
  1525. %02d
  1526. F8h,F
  1527. iF(F
  1528. "iF F
  1529. TJpG-
  1530. d(x`
  1531. 8p8x
  1532. FjF
  1533. a&A&
  1534. " I-
  1535. unhandled
  1536. "i!h`h+F
  1537. `Uh%
  1538. @/CW`
  1539. 'PoN5ho
  1540. #THII
  1541. `Gh7@G`
  1542. `Uh%
  1543. apGBi
  1544. apGD8
  1545. )p F
  1546. hp h
  1547. b k0
  1548. cfh
  1549. h!i`i
  1550. w!j>C
  1551. ibjak
  1552. C3C&h
  1553. "s` h
  1554. h`jp
  1555. ```p p
  1556. *FAF
  1557. qv0v8F
  1558. &KF~v*F
  1559. !yv@
  1560. p"lS
  1561. *FAF F
  1562. yv8v0F
  1563. !hKh#
  1564. !hKhC
  1565. SK`!h
  1566. h lO
  1567. p lA
  1568. F*FAF
  1569. "yv0F:v
  1570. hJhB
  1571. pGAhA
  1572. QA`pG
  1573. Fd! F
  1574. F"hQh
  1575. F!m
  1576. hBh"
  1577. A`pG
  1578. @E/
  1579. (hAh!
  1580. A`hh
  1581. 0hAh!
  1582. A`ph
  1583. `pG|
  1584. ! F:
  1585. !fpG
  1586. F hAh!
  1587. A`d! F
  1588. ]0 n
  1589. fpG
  1590. a F!
  1591. "9F F
  1592. (hs(H
  1593. F)h!
  1594. F)hHF
  1595. AF0F
  1596. "9F F
  1597. res == 0
  1598. Error connecting %d - %s
  1599. Error in getsockopt() %d - %s
  1600. !F0F
  1601. #IF0F
  1602. #*FHF
  1603. AFHF
  1604. :F1F
  1605. @ip : %d char =
  1606. %d.%d.%d.%d
  1607. F"xN
  1608. :FQF F
  1609. IF/p*x
  1610. 2F!F@F
  1611. "AF-
  1612. \/Nh{
  1613. (ip`){
  1614. (ip`@!
  1615. `p@
  1616. (h``
  1617. 9F@F
  1618. 0iP`
  1619. XkIF
  1620. [FIF
  1621. Ah2i
  1622. a p
  1623. q8y
  1624. @yy@
  1625. qph
  1626. 1z00[
  1627. !HF!p!
  1628. !&q8y
  1629. ! q8y
  1630. :F1F@F
  1631. "IF
  1632. K&:F
  1633. mel 1 get-info
  1634. mel 3 get-info%c%s%c
  1635. mel 3 get-info
  1636. mel 1 set-ip
  1637. yes
  1638. ;ypG
  1639. "pGHF
  1640. "1F
  1641. hp@
  1642. !!t2
  1643. "IF
  1644. !yppx
  1645. "x`hk9F
  1646. htB
  1647. hpE
  1648. HtpG
  1649. tpG-
  1650. "AFHF
  1651. "AF F
  1652. n ip
  1653. xhh`@!
  1654. d!JN
  1655. !wdqp
  1656. hhp`@!
  1657. l1EM
  1658. t2u8
  1659. error %lx
  1660. DHCP : oui
  1661. Hostname: %s
  1662. mel 1 set-zone
  1663. mel 2 set-zone%cwrong_pass%c
  1664. mel 2 set-zone%cack%c
  1665. UCH_zone = %d
  1666. mel 1 set-lumi-aff
  1667. mel 2 set-lumi-aff%cack%c
  1668. mel 1 set-lumi
  1669. mel 1 set-lumi
  1670. mel 2 set-lumi%cwrong_pass%c
  1671. mel 2 set-lumi%cack%c
  1672. UCH_luminosite = %d
  1673. mel 1 set-aff-heure
  1674. mel 1 set-aff-heure
  1675. mel 2 set-aff-heure%cack%c
  1676. UCH_aff_heure = %d
  1677. mel 1 set-volume
  1678. mel 2 set-volume%cwrong_pass%c
  1679. mel 2 set-volume%cack%c
  1680. UCH_volume = %d
  1681. mel 1 set-locate
  1682. mel 1 set-sn
  1683. mel 2 set-sn
  1684. mel 1 reset-factory
  1685. mel 2 reset-factory
  1686. REPOUT
  1687. REP_IN
  1688. REPACK
  1689. b_repeteur_status OK !
  1690. b_repeteur_status ERROR !
  1691. hT F(F
  1692. )F F
  1693. H$hF
  1694. iF F
  1695. PA F1%
  1696. rpG0"
  1697. z(hO
  1698. j\9F
  1699. JFAF
  1700. #FJFAF
  1701. iF0F
  1702. iF0F
  1703. mN0F
  1704. iF F
  1705. iHAx
  1706. _M[L(h
  1707. 7L h
  1708. Status:
  1709. Stop
  1710. Start
  1711. Mel=
  1712. %02d,
  1713. %s;%d;%s
  1714. jkl1vi5erjnfh
  1715. reboot_trap
  1716. {pGO
  1717. }=p2F
  1718. px3x
  1719. kF:F1F
  1720. P7bp
  1721. abpp
  1722. #cpp
  1723. `pp
  1724. abr;q
  1725. QFXF
  1726. !!p y
  1727. "s1
  1728. `y+x
  1729. `id!
  1730. p*
  1731. !!p%
  1732. r q s
  1733. p pap
  1734. )x`yACY
  1735. rpG`y+x
  1736. "@!@F
  1737. `zHp
  1738. xaa
  1739. "@!0F
  1740. yACU
  1741. "@!0F
  1742. "Js:
  1743. "@!(F
  1744. p7y_pvy
  1745. #"p#q
  1746. /CONFIG/TEMP
  1747. TEST_BODET.mp3
  1748. /CONFIG/TEMP\TEST_BODET.mp3
  1749. padding buffer full %d
  1750. Padding ...
  1751. %02d*.mp3
  1752. /MELODIES
  1753. F_repeat_trio --> STOP
  1754. spi2:
  1755. VS1011E init ERROR
  1756. F_audio_init : PLay Streaming
  1757. #``a
  1758. apG j
  1759. ,ihi
  1760. !bC7
  1761. ,ihi
  1762. rC9F
  1763. 9FbC
  1764. zC(h
  1765. (jna
  1766. hrC0
  1767. hWC0
  1768. i&iah
  1769. jC8F
  1770. iahjC(
  1771. 8FrC
  1772. iahWC(
  1773. `ib`
  1774. jea
  1775. @ipG
  1776. `pG0
  1777. !x`9
  1778. Fp`0
  1779. tF
  1780. (`*h
  1781. t@F
  1782. newconn != NULL
  1783. invalid socket index
  1784. addr valid but addrlen NULL
  1785. F hiF
  1786. lwip_bind: invalid address
  1787. `jFH`
  1788. 1F F
  1789. sock->lastdata == NULL
  1790. F hiF
  1791. lwip_connect: invalid address
  1792. (`pG8
  1793. _ t
  1794. t2
  1795. h`)h+
  1796. !i`)
  1797. #HF+t
  1798. buf != NULL
  1799. )F@F
  1800. 2F)F
  1801. )pG-
  1802. CF2F9F(F
  1803. 9FhF
  1804. hiF
  1805. lwip_sendto: invalid address
  1806. i!)`
  1807. !
  1808. ]9BT
  1809. nready >= 0
  1810. 1F8F
  1811. ,FEF
  1812. ptXF
  1813. ;F2F!F
  1814. SFBF)F
  1815. GF.F
  1816. "%(+
  1817. 'BF9F
  1818. t0`O
  1819. h;FjF
  1820. 0`2h(F
  1821. t8`
  1822. +FRFYFHF
  1823. 00`%t
  1824. 2`ACq`
  1825. i2`1
  1826. !1p"
  1827. \%(F
  1828. )pG-
  1829. t0`
  1830. +FRFYF@F
  1831. 1hAb
  1832. 1hAr
  1833. rhmO
  1834. 1h &
  1835. \$ F
  1836. uh2hO
  1837. )pGp
  1838. &I"H
  1839. &&`hh
  1840. (tp
  1841. &!)t
  1842. sock->select_waiting > 0
  1843. select_cb.prev == NULL
  1844. select_cb.prev != NULL
  1845. unknown event
  1846. bN({
  1847. `hh0a
  1848. hqa\H]J
  1849. OI@F
  1850. 8`){
  1851. .L F
  1852. -I@F
  1853. bpGIP : %d.%d.%d.%d
  1854. Eth link : %s
  1855. down
  1856. Synchro_task
  1857. UDP_task
  1858. TCP_task
  1859. Repet_task
  1860. Protoc_task
  1861. 7hBFYFo
  1862. 0h(@0`
  1863. 7hBFYF8F
  1864. h"i
  1865. hUh_
  1866. pGp
  1867. qpG;I
  1868. ppGpG9HAx
  1869. & H
  1870. papp
  1871. WDOG bloque
  1872. WDOG general desactive
  1873. demande RESET task %d
  1874. RESET because task %d blocked
  1875. `(!B`
  1876. #sIO
  1877. !h_L`H
  1878. QAaBi
  1879. 8# F
  1880. QAaBi
  1881. hd#7H
  1882. J(I#L
  1883. Kh F#
  1884. SK`8!
  1885. PH`d!
  1886. !F0"
  1887. error!!!
  1888. hp h
  1889. *pGp
  1890. EEdpG h
  1891. ! F)ppG
  1892. hxpG
  1893. w h
  1894. w h
  1895. w h
  1896. w h
  1897. 0h)F
  1898. 0h)F
  1899. i*iA
  1900. 0h)F
  1901. 0h)F
  1902. i*iA
  1903. 0h)F
  1904. 0hAmA
  1905. Ae0hBm"
  1906. Be1hKm(i
  1907. 0h)F
  1908. 0hAmA
  1909. aAe0hBm"
  1910. bBe0hAm*iA
  1911. !p`ppG
  1912. !ppG
  1913. CJi&
  1914. &@qL
  1915. aIhAc
  1916. @\JD
  1917. jTK"
  1918. CJiC
  1919. j/K"
  1920. jDhEm
  1921. 4KiD
  1922. $D`EeIh
  1923. jChDm
  1924. #JiC
  1925. #C`DeIh
  1926. hF9FO
  1927. +F"FiFF
  1928. PH`O
  1929. apG-
  1930. C9`v
  1931. Cy`%
  1932. DihI
  1933. 3azh"
  1934. YF F
  1935. SEB`
  1936. asa3abh"
  1937. r0`Sh
  1938. )a1ata
  1939. 0:hjb(b
  1940. D`CF(F
  1941. #"F(F
  1942. RZ`O
  1943. Mh,D
  1944. XByh
  1945. Cy`&
  1946. "ra2a
  1947. FqhHB
  1948. Cq`"
  1949. ga'a
  1950. a(i0
  1951. C @`B
  1952. )F0F
  1953. )F0F
  1954. C`APE
  1955. )F0F
  1956. 4`EE
  1957. h`qi
  1958. |a<a
  1959. a(i(
  1960. hBE@
  1961. Cq`#
  1962. 9iAE
  1963. |a<a
  1964. aka+arh"
  1965. pGp
  1966. %mNpGp
  1967. WK\x
  1968. BpG8
  1969. TLex
  1970. AF8F
  1971. IF8F
  1972. 1F8F
  1973. "F)F8F
  1974. <8PC
  1975. pG\"
  1976. ,8PC
  1977. pG\"
  1978. 8PC
  1979. DAupG\"
  1980. bpG\#XC
  1981. F#F\
  1982. "\!HC
  1983. DBvpG\"
  1984. F\!LC
  1985. (z+x
  1986. H'HC
  1987. pG\!
  1988. 0'HC
  1989. spG\"
  1990. TpG\#XC
  1991. F\!KC
  1992. "F\#ZC
  1993. :x{h
  1994. 6UC
  1995. F\!HC
  1996. Fh0x
  1997. *F!F0F
  1998. F\$gC
  1999. @4"xch
  2000. pGHxpGHx@
  2001. pGHx@
  2002. ppGHx@
  2003. ppGHx@
  2004. ppGHx@
  2005. 0ppGIx
  2006. pGJx
  2007. pG\!
  2008. F#F\
  2009. D0c F
  2010. "NC*p
  2011. pc0kBx
  2012. "qk F
  2013. F*F\ sIBC
  2014. 111"
  2015. !~(F
  2016. !~(F
  2017. !~(F
  2018. !!s ~
  2019. v {
  2020. "F\ BC3I F
  2021. F\"TC
  2022. FKF\
  2023. !sx|H
  2024. !!sx|
  2025. "sx|H
  2026. !!sx|!{
  2027. ""sq
  2028. "sx|
  2029. pG`~
  2030. F+F\ FCC
  2031. "2s(F
  2032. !1sp
  2033. F2F\
  2034. BpGp
  2035. F3F\
  2036. J il
  2037. "*sp
  2038. (s
  2039. (sp
  2040. F;F\ lJCC
  2041. sR
  2042. 0p#s8F
  2043. `~1k
  2044. 2Vhx
  2045. hx
  2046. pG(xBC
  2047. ]pG0
  2048. !!p0
  2049. H@hpG
  2050. !ip h
  2051. ipp
  2052. kpp
  2053. `#hZi`j
  2054. j2C9
  2055. Za F
  2056. "jpp
  2057. h!#q`
  2058. ` a`a
  2059. a b`p pp
  2060. 0xwj
  2061. 0ppx
  2062. pp F5b
  2063. ` hBiB
  2064. `0hBi"
  2065. `!pbp
  2066. pG-
  2067. `1jA
  2068. #hZi
  2069. `0j@
  2070. `0j@
  2071. ` hqx
  2072. ` hCi#
  2073. `1psp
  2074. 0pqp
  2075. "rp h
  2076. 3ppp
  2077. BpG0
  2078. h%h%
  2079. %%`c`
  2080. no error
  2081. domain error
  2082. range error
  2083. file positioning error
  2084. multibyte encoding error
  2085. unknown error
  2086. error #xxx
  2087. pGpG
  2088. F"FO
  2089. '0x.(
  2090. IF@F
  2091. "iF@F
  2092. P%kC
  2093. zHE
  2094. bh#hQF
  2095. `m
  2096. tuC=D
  2097. r*sis F
  2098. !)shs
  2099. h`HF
  2100. ' %qN
  2101. &F F'r
  2102. r `O
  2103. )F F
  2104. HqCG
  2105. SFJFAF F
  2106. xh(`
  2107. dns server out of array
  2108. array index out of bounds
  2109. unknown dns_table entry state:
  2110. @ pG
  2111. F hO
  2112. )h"FhF
  2113. (`LM(
  2114. (h!F
  2115. `"I(
  2116. xpG-
  2117. #"F@
  2118. fqhI
  2119. #"F@
  2120. !F(F
  2121. bi(F
  2122. iF(F
  2123. 9F F
  2124. !0q1`
  2125. J9F F
  2126. 2h:`8hH
  2127. `pG0
  2128. h FKI@
  2129. ),/2
  2130. *x F
  2131. H `
  2132. 1F F
  2133. 2F9F(F
  2134. `CxK`
  2135. 8h1h
  2136. F@E
  2137. yCF*F
  2138. xh#y"hP
  2139. kF2FAF
  2140. h:F6
  2141. )FHF
  2142. IF F
  2143. !y(y
  2144. "h(h
  2145. !RF9p0
  2146. ypy`
  2147. `9aya
  2148. YFPF
  2149. )y3F
  2150. 9i,F
  2151. kFIF F
  2152. &hvh
  2153. &h0x
  2154. FbF8F
  2155. !09xI
  2156. ;x F[
  2157. #y"h9F0F
  2158. h9F0F
  2159. mibs pointer must be != NULL
  2160. num_mibs pointer must be != 0
  2161. oid_len <= LWIP_SNMP_OBJ_ID_LEN
  2162. netif not found in netif_list
  2163. 'oid' param must not be NULL!
  2164. 'oid2' param must not be NULL!
  2165. QppG
  2166. Invalid SNMP version
  2167. community string is too long!
  2168. !ihF
  2169. jh+hY
  2170. ihrh5
  2171. F=m8
  2172. x0CE2
  2173. BFhF
  2174. p`hF
  2175. bhhF
  2176. ")`j`
  2177. F F)z
  2178. B*C*
  2179. B(C(
  2180. jh F
  2181. jh F
  2182. Fih F
  2183. pe)h
  2184. "j`0!
  2185. pfqh
  2186. rh0p
  2187. B(C(
  2188. &HAiI
  2189. FpGUnknown variable type
  2190. ` I F
  2191. snmp_raw: no PCB
  2192. snmp_raw: Unable to bind PCB
  2193. !%x!p
  2194. Bp`7
  2195. s!s`s
  2196. B `,`
  2197. p8F`
  2198. !p`7
  2199. 1`0y1s
  2200. 0Fqs
  2201. p`7
  2202. 0`4s
  2203. IFXF
  2204. ah F
  2205. hQ F
  2206. (Q@F
  2207. "IF@F
  2208. {%h
  2209. q0F@
  2210. `A0F
  2211. chhh
  2212. &hH4
  2213. F`h:F
  2214. 7F:F
  2215. @h@\
  2216. @hDT
  2217. pbuf_alloc: bad pbuf layer
  2218. rem_len < max_u16_t
  2219. pbuf_alloc: erroneous type
  2220. pbuf_realloc: p != NULL
  2221. pbuf_realloc: sane p->type
  2222. grow < max_u16_t
  2223. pbuf_realloc: q != NULL
  2224. mem_trim returned q == NULL
  2225. p != NULL
  2226. increment_magnitude <= p->len
  2227. bad pbuf type
  2228. pbuf_free: sane type
  2229. pbuf_free: p->ref > 0
  2230. pbuf ref overflow
  2231. p->next == NULL
  2232. offset_to <= p_to->len
  2233. offset_from <= p_from->len
  2234. p_to != NULL
  2235. pbuf_copy_partial: invalid buf
  2236. pbuf_take: invalid buf
  2237. pbuf_take: invalid dataptr
  2238. pbuf_take: buf not large enough
  2239. pbuf_take: invalid pbuf
  2240. did not copy all data
  2241. `` `!F
  2242. `` `
  2243. netbuf_free: invalid buf
  2244. netbuf_ref: invalid buf
  2245. F#h
  2246. '/`L
  2247. "jiF
  2248. "jiF
  2249. ""`M
  2250. iF(F
  2251. FJLX
  2252. iF3H
  2253. !`%`
  2254. iF#H
  2255. conn has no recvmbox
  2256. conn has no op_completed
  2257. netconn_getaddr: invalid conn
  2258. netconn_getaddr: invalid addr
  2259. netconn_getaddr: invalid port
  2260. netconn_bind: invalid conn
  2261. netconn_connect: invalid conn
  2262. netconn_listen: invalid conn
  2263. netconn_accept: invalid pointer
  2264. netconn_accept: invalid conn
  2265. netconn_recv: invalid pointer
  2266. netconn_recv: invalid conn
  2267. netconn_recv: invalid recvmbox
  2268. buf != NULL
  2269. p != NULL
  2270. netconn_send: invalid conn
  2271. netconn_write: invalid conn
  2272. netconn_close: invalid conn
  2273. `B`pG8
  2274. "BrI
  2275. ")F F
  2276. (hp`
  2277. pr0r0s
  2278. 0`>c
  2279. h0`&`0F
  2280. nh0F
  2281. AF8F
  2282. qx F
  2283. phiF
  2284. F1ho
  2285. 1F(F
  2286. F1ho
  2287. 1F(F
  2288. "1F(F
  2289. !F(F
  2290. `r!{
  2291. F1ho
  2292. 1F(F
  2293. F1ho
  2294. {L#h
  2295. 1F(F
  2296. ` zP
  2297. !F(F
  2298. "1F(F
  2299. ZH[N
  2300. ah:h
  2301. 0!F(F[
  2302. !qp0Fq
  2303. !F*F
  2304. CFt`
  2305. %%p>M
  2306. 0a0F
  2307. hh0`n`a|
  2308. 1F(F
  2309. 9F(F
  2310. 1F(F
  2311. 9F(F
  2312. !F(F
  2313. hh`
  2314. bpGNo init function given
  2315. sL!h
  2316. i")F0F
  2317. !F p
  2318. @J@J
  2319. / p!Fe`
  2320. tcpip_thread: invalid message
  2321. Invalid mbox
  2322. tcpip_thread
  2323. J!x1
  2324. ZD"A
  2325. hC")F
  2326. J x@
  2327. ")F0F
  2328. 1F(F
  2329. jAz )
  2330. H(chc
  2331. c yjh
  2332. D! F
  2333. pbuf p_out wasn't freed
  2334. ")F F
  2335. XF1h
  2336. netif != NULL
  2337. ")F0F
  2338. zpAC
  2339. A\(Fd
  2340. "9!(F
  2341. "2!(F
  2342. jF1F F
  2343. dhcp_bind: netif != NULL
  2344. dhcp_bind: dhcp != NULL
  2345. BpG-
  2346. 1F F
  2347. 1F F
  2348. "7! F
  2349. A\ F
  2350. "9! F
  2351. "!F0F
  2352. "2! F
  2353. b c`c d
  2354. "!F(F
  2355. r`h8
  2356. !!r1
  2357. di!D[
  2358. ciH
  2359. ciA
  2360. RAFHF
  2361. RAFHF
  2362. !0F
  2363. 3DZx
  2364. ZFiF F
  2365. 8h !
  2366. x?hH
  2367. ``(F
  2368. )F F
  2369. 8`9h)`(i
  2370. !@hha
  2371. phiApji
  2372. iiH`ii
  2373. iibh
  2374. ajiPaii
  2375. hiGI
  2376. "5!(F
  2377. 1F(F
  2378. a`a1
  2379. =q(F
  2380. reply wasn't freed
  2381. dhcp_stop: netif != NULL
  2382. DHCP: hostname is too long!
  2383. len == 4
  2384. len >= decode_len
  2385. len %% 4 == 0
  2386. len == 1
  2387. overload in file/sname
  2388. check decode_idx
  2389. decode_len %% 4 == 0
  2390. invalid decode_len
  2391. next pbuf was null
  2392. dhcp_create_msg: netif != NULL
  2393. dhcp_create_msg: dhcp != NULL
  2394. dhcp_delete_msg: dhcp != NULL
  2395. jJzR
  2396. h~,h
  2397. {K@F
  2398. `q ` r
  2399. })~nO.h@
  2400. BhHiI8
  2401. `@F
  2402. ! qaq
  2403. !"qkF
  2404. `9h
  2405. d 8r
  2406. pGAUTOIP address not in range
  2407. Xd0F
  2408. !'8F
  2409. )F`e
  2410. c F
  2411. \C x
  2412. iy*y
  2413. (\PT
  2414. ! p`p
  2415. 0\`T
  2416. H!0F
  2417. 4!8F
  2418. :FIF@F
  2419. :FIF@F
  2420. OI@F
  2421. rIF0F
  2422. zq"F
  2423. Erase
  2424. .BOD
  2425. .bod
  2426. TELECHARGEMENT_PROG_APPLI
  2427. TEST_BODET
  2428. .TRI
  2429. .tri
  2430. TELECHARGEMENT_PARAM_APPLI -->
  2431. ERROR !!!
  2432. .MP3
  2433. .mp3
  2434. .TXT
  2435. .txt
  2436. TELECHARGEMENT_FICHIER
  2437. 150 OpenData
  2438. FTP:fail bad GAMME_PRODUIT
  2439. FTP:fail
  2440. `a F
  2441. `a F
  2442. 0!hF
  2443. yIHn
  2444. 6" eJe
  2445. KFBFQF
  2446. CFRF1H
  2447. xrx1x
  2448. 0`p`m
  2449. /index.html
  2450. HTTPSRV_init() is Failed
  2451. envoi trap access to server
  2452. `chC`
  2453. TpG&K
  2454. pG$KO
  2455. `pG8
  2456. pG
  2457. wHxO
  2458. htMB
  2459. Pq@F
  2460. iF(F
  2461. q&` Fe`
  2462. q&`g` F
  2463. h)J+I
  2464. 0H0IO
  2465. !B` "
  2466. ")H"a `(I
  2467. &`!h
  2468. a!i
  2469. LS F
  2470. yIyH
  2471. `K_L
  2472. "!FFH
  2473. error Mutex : Mutex_bdt
  2474. error Mutex : Mutex_VS1011
  2475. test
  2476. = Version %s =
  2477. default
  2478. melodie
  2479. message
  2480. flash
  2481. SwTimer_1s
  2482. Min Heap Size 5 is %d bytes
  2483. PoE+ detected
  2484. Config usine forcee
  2485. /CONFIG
  2486. error : f_mkfs (%d)
  2487. error : f_mkdir (%d)
  2488. /CONFIG/TEMP
  2489. /MELODIES
  2490. /MESSAGES
  2491. 11`0h
  2492. !1`0h@
  2493. 22`1h!
  2494. !1``hh
  2495. 0g1oA
  2496. 0g1o!
  2497. 1h i!
  2498. 1`!x
  2499. P0d1l
  2500. 0h!i
  2501. (0h
  2502. Ss`1hA
  2503. oN0h
  2504. hfM
  2505. h!i
  2506. h@I<K
  2507. 1`2h
  2508. BEpG0
  2509. 1L`h
  2510. #"h h%hA
  2511. (I!I
  2512. hpG
  2513. h0l"
  2514. Q9d8l
  2515. `9o0k
  2516. C9g1x
  2517. `2hQ
  2518. hpn#
  2519. h0o#
  2520. `1xJ
  2521. h0m#
  2522. `1hJ
  2523. hpm#
  2524. h0n#
  2525. `1hJ
  2526. hpo!
  2527. 8o9oA
  2528. 19g:o
  2529. 2:g8g8o
  2530. h!hrh
  2531. p `0h
  2532. h!hrh
  2533. hqj@
  2534. h!h3irh
  2535. `0h
  2536. 0irh
  2537. p `8h@
  2538. `hahri
  2539. `hah3jri
  2540. ``0x
  2541. `hahri
  2542. `9hA
  2543. hAh!
  2544. AA` h
  2545. (p F
  2546. $!i` h
  2547. `pG F
  2548. F (C
  2549. `! ``
  2550. 8j F
  2551. F (T
  2552. "9v" zb8b
  2553. C7`rh
  2554. i j"
  2555. i8)G
  2556. `h4I
  2557. f`f(F
  2558. hShAk#
  2559. ThAl$
  2560. CT`
  2561. "pv
  2562. `(h !
  2563. B`pG
  2564. pGpGpGpGpGpGpG
  2565. a`a y
  2566. PqPy(
  2567. :F1F
  2568. 2F)F F
  2569. F,L y@
  2570. CpGp
  2571. erreur malloc _matrix
  2572. erreur malloc _spiData
  2573. xKLF)
  2574. `@y`p
  2575. F2JSh
  2576. h/L%h
  2577. 9F F
  2578. N2hP]m
  2579. F!F8F
  2580. FAF0F
  2581. 9hxi
  2582. 0`%j
  2583. RF!F
  2584. p`PF
  2585. ;F*F1F F
  2586. hAF
  2587. ")F(F
  2588. IF0F
  2589. x"F
  2590. iz0FlM
  2591. $nh0F
  2592. "!F F
  2593. !|(h``
  2594. !t+IJh
  2595. `L`p
  2596. bBbpG
  2597. r w F
  2598. pbuf_header failed
  2599. $L$J x$Ko
  2600. wg`F
  2601. wg`@
  2602. %%p`h
  2603. pG8
  2604. hjF
  2605. 1hph("
  2606. ) p1
  2607. "iFbp
  2608. C `v
  2609. iF(F
  2610. F F
  2611. F1p9
  2612. "(8D
  2613. !P8D
  2614. iF@F
  2615. iF@F
  2616. 1F F
  2617. 1FPF
  2618. h0a0}
  2619. PFIB
  2620. !iPFI
  2621. !aYF
  2622. YFPF
  2623. piAF
  2624. 1`q`
  2625. 1apa
  2626. iYF@
  2627. aPFpGPF
  2628. a`pG
  2629. hh"F
  2630. ;HAhI
  2631. p->ref == 1
  2632. `*p!}
  2633. uii
  2634. !F(p
  2635. p`)u
  2636. pcb->flags & TF_RXCLOSED
  2637. pcb->state == LISTEN
  2638. pcb != NULL
  2639. x}hu9z)r
  2640. ryzir:h*`
  2641. p(F
  2642. F(h``&
  2643. abbq`I
  2644. `1aaj`
  2645. qxph@
  2646. 9p9x
  2647. 8pxx
  2648. rh(j
  2649. qh(j
  2650. 0qh*jO
  2651. ph*j
  2652. ph*j
  2653. Lp(F
  2654. i!F
  2655. ph)j@
  2656. Thx@
  2657. hp,i
  2658. ! F)p
  2659. ,~{hg:F
  2660. Yi]h
  2661. jh"bkx
  2662. JcwA
  2663. apG8
  2664. apGp
  2665. P&wp
  2666. N1i
  2667. new_rcv_ann_wnd <= 0xffff
  2668. invalid state
  2669. invalid socket state for poll
  2670. unsent segments leaking
  2671. unacked segments leaking
  2672. ooseq segments leaking
  2673. memp_malloc: type < MEMP_MAX
  2674. memp_free: mem properly aligned
  2675. memp_free: type < MEMP_MAX
  2676. PD h
  2677. F )2
  2678. &NMF
  2679. pG0F
  2680. plug_holes: mem >= ram
  2681. plug_holes: mem < ram_end
  2682. plug_holes: mem->used == 0
  2683. failed to create mem_mutex
  2684. mem_free: legal memory
  2685. mem_free: mem->used
  2686. mem_trim: legal memory
  2687. mem_trim can only shrink memory
  2688. mem_malloc: !lfree->used
  2689. `:|)F
  2690. -7`w`
  2691. *F F
  2692. recv_udp must have an argument
  2693. recv_udp: recv for wrong pcb!
  2694. recv_tcp must have an argument
  2695. recv_tcp: recv for wrong pcb!
  2696. f`fx`po
  2697. inavlid op_completed_sem
  2698. conn->current_msg == NULL
  2699. FLh F
  2700. 'r!F
  2701. %h+x
  2702. "hP`
  2703. !hHh
  2704. 2"q1
  2705. t"hPh
  2706. pcb_new: pcb already allocated
  2707. q"hQh
  2708. r%p
  2709. -@-
  2710. a"bab
  2711. p Fp
  2712. Wah9
  2713. h`(F
  2714. pkwh
  2715. BF8F
  2716. rppc
  2717. 1F8F
  2718. invalid conn
  2719. this is for tcp netconns only
  2720. pcb already closed
  2721. N(hDx
  2722. !)q(h
  2723. *hPhh
  2724. H`(h
  2725. G(h 0
  2726. !Ab(h@h
  2727. 0!0F
  2728. !*r+h]c(h
  2729. ($Ax
  2730. ;B!F0F
  2731. )hHx
  2732. !F0F
  2733. q!hHh
  2734. q h@
  2735. F!hHh
  2736. ( q@
  2737. , Ap hR
  2738. !hLc hBx
  2739. hAx
  2740. !q h8
  2741. "q h8
  2742. (q)hHh
  2743. (q)h
  2744. !Qp(hD`)hHh
  2745. )q(hP
  2746. q!hHh
  2747. q h8
  2748. BpGp
  2749. !)q)hHh
  2750. ?Ph,
  2751. h<xo
  2752. iQi@
  2753. hh[F
  2754. MJp!hHk
  2755. !Dc"h
  2756. hAx
  2757. !q h8
  2758. 1F(FpG!h
  2759. BpG8F
  2760. 5w h
  2761. 1F(F
  2762. hAh
  2763. ##q!h
  2764. |Ih
  2765. |Kh
  2766. "q!h9
  2767. F!hHh
  2768. (JxJ
  2769. h:MAk
  2770. Hp"h
  2771. !Tc h
  2772. !hHx
  2773. !q h8
  2774. !q h8
  2775. conn != NULL
  2776. conn->current_msg != NULL
  2777. netconn state error
  2778. already writing or closing
  2779. state!
  2780. conn->state == NETCONN_CONNECT
  2781. blocking connect state error
  2782. Invalid netconn type
  2783. conn->state == NETCONN_WRITE
  2784. conn->pcb.tcp != NULL
  2785. msg->msg.w.len != 0
  2786. invalid netconn_type
  2787. a(bqz(FA
  2788. qrja
  2789. phiAx1qji
  2790. xpqii
  2791. qji@
  2792. QPyrz0r
  2793. IF F
  2794. !hA
  2795. FihRF
  2796. OF*F
  2797. *i)F
  2798. cs!t"
  2799. pBpHH`aHK
  2800. >MjF
  2801. netif != NULL
  2802. lwip
  2803. (|HE2
  2804. wIJi
  2805. tK:F)F
  2806. xhPE
  2807. pGo
  2808. pGAa
  2809. apG-
  2810. !F@F
  2811. 0h9F
  2812. jz@F
  2813. )F2F
  2814. ` F2
  2815. p7jC
  2816. hh`
  2817. *F9F F
  2818. %HC1F
  2819. !F(F
  2820. h+` 00`
  2821. ``h(
  2822. 0uO
  2823. )F F
  2824. 0h!F
  2825. )F F
  2826. )F F
  2827. "IF7
  2828. *F F
  2829. {rQF
  2830. %F(F
  2831. )FHF
  2832. FCN@
  2833. ";qzq
  2834. arp_table[i].q == NULL
  2835. i < ARP_TABLE_SIZE
  2836. ipaddr != NULL
  2837. netif != NULL
  2838. eth_ret != NULL
  2839. q != NULL
  2840. no packet queues allowed!
  2841. \L h
  2842. G"F hWI
  2843. $TMTN
  2844. OIH`p
  2845. *FY`
  2846. `b`(
  2847. E` `
  2848. FahSh
  2849. e`!`
  2850. &N3h3
  2851. QFHF
  2852. 0h@h
  2853. QFHF
  2854. %F(F2
  2855. FTP server
  2856. Q`pa
  2857. `p`x
  2858. `a(i
  2859. a j@
  2860. a1
  2861. F`k)F
  2862. (D+F
  2863. JF1F8F
  2864. 3FAF
  2865. 0x;F
  2866. AF/( F
  2867. %s%s%s
  2868. %s/%s
  2869. gx8F
  2870. 7?W?:.
  2871. 7>W>
  2872. !x/)
  2873. bx\*
  2874. 2F)F
  2875. 211-Features:
  2876. SIZE
  2877. 211 End
  2878. 250 "%s" deleted.
  2879. &*hIF
  2880. %-10s
  2881. 9FPF
  2882. d!-!
  2883. -!w!
  2884. - w `q
  2885. q!rar
  2886. 1(qHF)`
  2887. +v*F
  2888. 1F F
  2889. !F8F
  2890. !F8F
  2891. 10q(F1`
  2892. !ae@
  2893. 0j0`8
  2894. 1F F
  2895. &AF8F
  2896. FAF8F
  2897. hp0F
  2898. #IF F
  2899. zq*F
  2900. +v*F
  2901. *pGx
  2902. (Q8F
  2903. *F0F
  2904. *FpG-
  2905. rIF0F
  2906. "FIF
  2907. zq*F
  2908. jI@F
  2909. "!F(F
  2910. 1F(F
  2911. F!F#H
  2912. !pG9F0F
  2913. ----------
  2914. %-3.3s %02d %02d:%02d
  2915. %s %3ld %-4s %-4s %8d %12s %s
  2916. 257 "%s" directory created.
  2917. 250 "%s" directory removed.
  2918. 250 "%s" renamed to "%s".
  2919. "F8IJ
  2920. %F(F2
  2921. %4h
  2922. FiF F
  2923. ri1i F
  2924. a(F
  2925. a(F>
  2926. HTTP server
  2927. 5,hL
  2928. 8\)
  2929. ` F!a
  2930. BB`@h
  2931. "#pbp
  2932. bp!p
  2933. ! F)p
  2934. `h"h
  2935. ( h
  2936. `P` hAhA
  2937. AA` h
  2938. `!i`i#h
  2939. i j"h
  2940. ` i`hp
  2941. $ hp h
  2942. hxpG0
  2943. Sx +
  2944. Sx +
  2945. ` Pp
  2946. ! F)p
  2947. |hp#h
  2948. @"jN
  2949. . PJ
  2950. "B` F
  2951. "B` F
  2952. "B` F
  2953. "B` F
  2954. "B` F
  2955. "B` F
  2956. @"B` F
  2957. RESET
  2958. debut du test...
  2959. duree : %dms
  2960. " `a`
  2961. xL h
  2962. "@!@F
  2963. :FPF ! <
  2964. :F!FPF
  2965. "@!@F
  2966. kF "QF
  2967. 2#QF
  2968. 2FPF
  2969. HFyC
  2970. 2FPF
  2971. "@!(F
  2972. 2FHF ! <
  2973. 2F!FHF
  2974. )]0Fd
  2975. hp z
  2976. (q`|
  2977. "iFsH
  2978. @pGO
  2979. @Test LED en cours
  2980. -----LED Alimentation------
  2981. --------LED Verte----------
  2982. --------LED Rouge----------
  2983. ------LED Verte+Rouge------
  2984. Appuyez sur le bouton
  2985. error : FATFS_LinkDriver (%d)
  2986. Erreur INIT SD CARD
  2987. /CONFIG/TEMP\TEST_BODET.mp3
  2988. Volume (1-->8)?
  2989. Erreur de Volume !
  2990. spi2:
  2991. VS1011E init ERROR
  2992. INIT Codec Audio OK!
  2993. erreur codec audio : %d
  2994. /CONFIG/TEMP
  2995. Erreur ouverture fichier '%s'
  2996. Erreur lecture fichier '%s'
  2997. --------VOIE GAUCHE--------
  2998. TEST_G.mp3
  2999. --------VOIE DROITE--------
  3000. TEST_D.mp3
  3001. -----------MUTE------------
  3002. TEST_BODET.mp3
  3003. ----------NORMAL-----------
  3004. -----------BOOST-----------
  3005. Fin test Audio
  3006. ERASE SECTEUR FLASH %d
  3007. ERASE OK!
  3008. Chargement Fichier MP3: %d%%
  3009. Test SD CARD OK!
  3010. Test Codec Audio OK!
  3011. Load Melodie Par defaut
  3012. Page Memoire %d:
  3013. %02x
  3014. Erase flash...
  3015. Erase flash OK!
  3016. Version hard : %d
  3017. Version interieure : 511289
  3018. Version exterieure : 511xxx
  3019. Lecture @mac... ERROR
  3020. No adresse MAC valide...
  3021. Afficheur non connecte
  3022. Test
  3023. Test:%d
  3024. {``z/# D
  3025. r`zB
  3026. 00br
  3027. p: Hp
  3028. rYzH
  3029. (d#x7x
  3030. q)x,
  3031. y\yU1x
  3032. (c0x
  3033. (F0\ B
  3034. !FX\
  3035. !FX\2
  3036. L#xpG
  3037. @(h:B
  3038. XU8x
  3039. FiJfN
  3040. 1hCB
  3041. T4h@
  3042. 8Fm
  3043. \pG3h
  3044. (pG0h
  3045. !FPF
  3046. `hJF
  3047. QF F
  3048. @IFPF
  3049. p`
  3050. IFXF
  3051. ">p}p
  3052. w FL
  3053. F F)F
  3054. |hah
  3055. "x``h
  3056. ^DPF
  3057. )F8F
  3058. IF@F
  3059. 1F(F
  3060. ! F
  3061. Ah!`)FD`
  3062. *hB`
  3063. .h&`)F
  3064. 8h9FX
  3065. `h}M
  3066. OqOx
  3067. pBaMh(x
  3068. QF(F
  3069. *F F
  3070. `hAh
  3071. )FXF
  3072. `XFO
  3073. QF(F
  3074. prev != ipr
  3075. prev->next == ipr
  3076. pbufs_freed + clen <= 0xffff
  3077. ip_reass_pbufcount >= clen
  3078. sanity check linked list
  3079. check fragments don't overlap
  3080. sanity check
  3081. qh)bp
  3082. Ahib!
  3083. )jH`
  3084. h`1
  3085. `(j(a)cipi
  3086. ps`oo
  3087. lc F
  3088. i!F
  3089. (k`gix
  3090. hc F
  3091. hc(c
  3092. p->next != NULL
  3093. p->len == 0
  3094. p->tot_len == p->next->tot_len
  3095. pcb->refused_data == NULL
  3096. he0xA
  3097. Gxi `9ia`
  3098. e)i!a
  3099. `(uh
  3100. hxb
  3101. !(F)
  3102. j9hA
  3103. (uxk
  3104. (uB
  3105. rx0x
  3106. ~(FA
  3107. !)u>
  3108. ~(FB
  3109. tcp_input: pcb->state != CLOSED
  3110. #+u h
  3111. F$h
  3112. ! pap
  3113. JpHx
  3114. Jp;`1}
  3115. YD@
  3116. TRQF
  3117. b*iQ`
  3118. F$h
  3119. hrjHh
  3120. ip0}
  3121. !1u h
  3122. bAF5
  3123. Bh`h
  3124. &`AF0F
  3125. QFHF
  3126. !FHF
  3127. HAxA
  3128. AppG
  3129. pcb->snd_queuelen > 0
  3130. no segment to free
  3131. pcb->listener->accept != NULL
  3132. tcp_receive: wrong state
  3133. tcp_receive: valid queue length
  3134. inseg.p != NULL
  3135. insane offset!
  3136. pbuf too short!
  3137. pbuf_header failed
  3138. tcp_receive: tcplen > rcv_wnd
  3139. `g`9
  3140. `hAh
  3141. hP`p
  3142. p->tot_len >= optlen
  3143. need unchained pbuf
  3144. @hJF!F
  3145. m9F0F
  3146. TFMD
  3147. xhJF
  3148. mBF!F(F
  3149. pGHF
  3150. qz F
  3151. F=F F
  3152. JF)F F
  3153. h8b)}
  3154. ""`xj0
  3155. 4`&F
  3156. TA@F
  3157. zhh:
  3158. p`HF
  3159. @!8F
  3160. :FAF F
  3161. c0hP
  3162. 1h!`4` h
  3163. !Ch0F
  3164. z1FpG8
  3165. mss_local is too small
  3166. inconsistent oversize vs. space
  3167. inconsistent oversize vs. len
  3168. oversize == 0
  3169. prev_seg != NULL
  3170. tcp_write: valid queue length
  3171. seg->tcphdr not aligned
  3172. RST not expected here!
  3173. ! Fip
  3174. ! Fm
  3175. *pkp
  3176. &gpD
  3177. eE.
  3178. "pcp
  3179. #ep#p
  3180. pap
  3181. ! papW
  3182. @P8`
  3183. j]`s
  3184. %#pep(F
  3185. pJp0
  3186. !h@
  3187. #kp"hO
  3188. Q*pkp
  3189. 1p h
  3190. )p h
  3191. Ba h
  3192. RBP hCXC
  3193. ipA
  3194. (p hBX"
  3195. RBP hCX#
  3196. *pkp2
  3197. ` F1
  3198. px F
  3199. ;`+h
  3200. j kbk
  3201. {`*hWh
  3202. (hG`*h
  3203. `+h m
  3204. `+hO
  3205. n o)h
  3206. ;`)h h
  3207. i%h>J
  3208. C3CC
  3209. +`-h
  3210. hP!
  3211. `A`Eh
  3212. yByC
  3213. CJ`p
  3214. AQBY
  3215. "hQQ1
  3216. 1` F
  3217. AF F
  3218. AF F
  3219. !F(F
  3220. pG0
  3221. F"x
  3222. %k(F
  3223. 1!c`kH
  3224. !ac`l
  3225. a`a1
  3226. ( cH
  3227. kpG
  3228. BpBx
  3229. BaJj
  3230. index.html
  3231. H60F
  3232. '1F F
  3233. F!F(F
  3234. 8hHE%
  3235. )F@F
  3236. (e(F
  3237. 'HF7p
  3238. x%(
  3239. "1F(F
  3240. hF !
  3241. Ax>)
  3242. ")F@F
  3243. OD8F
  3244. :F1F F
  3245. EF(F
  3246. 7F:F
  3247. i9F@D
  3248. FPh
  3249. *F9F0D
  3250. !0F
  3251. !0F
  3252. ihk3F
  3253. |A@F
  3254. :! F
  3255. hpb
  3256. `k/!
  3257. 5(h`
  3258. ahhh
  3259. nx0F
  3260. Ax.)
  3261. ppG-
  3262. :F)F
  3263. 1x\)
  3264. BF1F
  3265. &! F
  3266. \=(
  3267. F2F!F(F
  3268. HTTP/1.1 %d %s
  3269. Upgrade
  3270. Keep-Alive
  3271. close
  3272. Connection: %s
  3273. Server: %s
  3274. Content-Type: %s
  3275. Cache-Control:
  3276. max-age=%d
  3277. no-store
  3278. no-cache
  3279. Content-Length: %d
  3280. Transfer-Encoding: chunked
  3281. .shtml
  3282. .shtm
  3283. ;%<>
  3284. GET
  3285. POST
  3286. HEAD
  3287. Host:
  3288. Connection:
  3289. keep-alive
  3290. Content-Length:
  3291. Content-Type:
  3292. Authorization:
  3293. Basic
  3294. pGpGpGpGpGpGpG
  3295. ! pJ
  3296. sapa
  3297. (! F
  3298. ("(F
  3299. !F(F
  3300. !F(F
  3301. ping: recv %d.%d.%d.%d
  3302. <1 ms
  3303. %d ms
  3304. setting receive timeout failed
  3305. 2!HCd
  3306. 2 gIDCc
  3307. %PNh'oC
  3308. >D Fqn
  3309. #!x%
  3310. "1H)D
  3311. h"QC
  3312. (F{n
  3313. = Version %s =
  3314. Test en cours ---->
  3315. <-----
  3316. Test>>
  3317. unknown command
  3318. Boot User Application....
  3319. pGpGp
  3320. 5ih1
  3321. )h F
  3322. nh0Fp
  3323. 0jF
  3324. (0ij
  3325. @j1F
  3326. 2F)F
  3327. j:!0F
  3328. p8F
  3329. :!!p
  3330. 2F)F
  3331. "iF(F
  3332. HTTP/1.1
  3333. CGI/1.1
  3334. + 08
  3335. 9x@"@F
  3336. 8x=(
  3337. lFGF
  3338. 8x-(
  3339. k+&+FJF!F8F
  3340. (`-.
  3341. 70h
  3342. #%F.h
  3343. &!wv'
  3344. )F F
  3345. (pG-
  3346. re0h
  3347. /0F,
  3348. 0hiF
  3349. pe0h
  3350. /0F,
  3351. TpG@"
  3352. 0hiF
  3353. 0hAk
  3354. 0hAk
  3355. F F1m
  3356. lpG2h@
  3357. F hAk
  3358. $ a i
  3359. cpCk
  3360. #rer
  3361. hClA
  3362. tUtpF
  3363. ij7"
  3364. @!`"
  3365. (hAk
  3366. pG@
  3367. cpG(h@
  3368. *BAk
  3369. !(Fv
  3370. "aj@#
  3371. FiF
  3372. c`bhb``h``bh
  3373. d h !
  3374. `d j
  3375. c h !
  3376. `c0F
  3377. hiF
  3378. 8hAhA
  3379. ) @#
  3380. 7#@%
  3381. 7!8F
  3382. 7!8F
  3383. )"@#
  3384. (Qk?
  3385. (pG8h
  3386. pG8
  3387. hAk
  3388. pG@
  3389. aj7"
  3390. a8F)`
  3391. apG h@
  3392. *BAk
  3393. BpG h
  3394. "@#O
  3395. iF(F
  3396. jj7#
  3397. jj7#
  3398. (hiF
  3399. (hiF
  3400. (hAk
  3401. !(FO
  3402. a)bib
  3403. $ F2
  3404. $ Fv
  3405. $ Fv
  3406. `t`|
  3407. .aH
  3408. @!`V
  3409. ZC"`I
  3410. !!p6
  3411. ""p3
  3412. `(l
  3413. ``il
  3414. `)m
  3415. ``hm
  3416. `io
  3417. (| p
  3418. C CD`
  3419. hBbKh
  3420. iIi%
  3421. pGpGpGpGpG
  3422. UHVMAiO
  3423. AaBi
  3424. !h`O
  3425. `(a
  3426. `@!hf
  3427. f !(g
  3428. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//FR"
  3429. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3430. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
  3431. <head>
  3432. <title>BODET Carillon</title>
  3433. <link href="melodys.css" rel="stylesheet" type="text/css" />
  3434. <script type="text/javascript" src="request.js"></script>
  3435. <script type="text/javascript" src="SNMP.js"></script>
  3436. </head>
  3437. <body>
  3438. <div id="shadow-one"><div id="shadow-two"><div id="shadow-three"><div id="shadow-four">
  3439. <div id="page">
  3440. <div style="padding:0 0 5px 0px"><img src="bodet.png" width=22% alt="Bodet" /></div>
  3441. <div id="title"><div class="right">Serveur Web</div><span id="hello">&nbsp;</span></div>
  3442. <div id="menu">
  3443. <a href="index_fr.html">Accueil</a>
  3444. <a href="network_fr.html">Configuration r&eacute;seau</a>
  3445. <a href="param_fr.html">Param&egrave;tres</a>
  3446. <a href="time_fr.html">Distribution horaire</a>
  3447. <a href="SNMP_fr.html">Configuration alarmes</a>
  3448. <a href="system_fr.html">Syst&egrave;me</a>
  3449. </div>
  3450. <div id="content">
  3451. <h1>Configuration alarmes</h1>
  3452. <form method="post" name="config" onsubmit="return verify_input();">
  3453. <fieldset>
  3454. <span>
  3455. <div><input type="checkbox" class="sm" name="agent" onclick="configSNMP()"/> SNMP</div>
  3456. <div><label>Version</label>
  3457. <input type="radio" name="version" value="0" style="width: 27px">V1</input>
  3458. <input type="radio" name="version" value="1" style="width: 27px">V2C</input>
  3459. </div>
  3460. <div><label>Community</label>
  3461. <input type="text" name="community" onKeyPress="return scanTouche(event)" maxlength="30"/></div>
  3462. <div>&nbsp;</div>
  3463. </span>
  3464. <span id="snmp_trap" style="display:inline">
  3465. <HR align=center width="50%">
  3466. <div>&nbsp;</div>
  3467. <div><input type="checkbox" class="sm" name="trap"/> SNMP Trap</div>
  3468. <div><label>SNMP Manager 1</label>
  3469. <input type="text" name="manag_1" onKeyPress="return scanTouche(event)" maxlength="30"/></div>
  3470. <div><label>SNMP Manager 2</label>
  3471. <input type="text" name="manag_2" onKeyPress="return scanTouche(event)" maxlength="30" /></div>
  3472. <div><label>SNMP Manager 3</label>
  3473. <input type="text" name="manag_3" onKeyPress="return scanTouche(event)" maxlength="30" /></div>
  3474. <div>
  3475. <input type="submit" class="sm" style="width: 125px" name="test_trap" onclick="document.pressed=this.name" value="SNMP Trap test">
  3476. </div>
  3477. <br></br>
  3478. <div style="padding:0 0 20px 20px">
  3479. <TABLE border=1 CELLPADDING=5 CELLSPACING=0>
  3480. <TBODY>
  3481. <TR>
  3482. <Th>Alarmes actives</Th>
  3483. <Th style="width: 200px">Param&egrave;tres</Th>
  3484. </TR>
  3485. <TR>
  3486. <TD style="width: 220px"><input type="checkbox" class="sm2" name="alarm_1"/>Red&eacute;marrage<img class="picto" src="info.png"/></TD>
  3487. <TD style="width: 200px">&nbsp;</TD>
  3488. </TR>
  3489. <TR>
  3490. <TD style="width: 220px"><input type="checkbox" class="sm2" name="alarm_2"/>M&eacute;lodie programm&eacute;e<img class="picto" src="info.png"/></TD>
  3491. <TD>&nbsp;</TD>
  3492. </TR>
  3493. <TR>
  3494. <TD style="width: 220px"><input type="checkbox" class="sm2" name="alarm_3"/>M&eacute;lodie manuelle<img class="picto" src="info.png"/></TD>
  3495. <TD>&nbsp;</TD>
  3496. </TR>
  3497. <TR>
  3498. <TD style="width: 220px"><input type="checkbox" class="sm2" name="alarm_4"/>Streaming<img class="picto" src="info.png"/></TD>
  3499. <TD style="width: 200px">&nbsp;</TD>
  3500. </TR>
  3501. <TR>
  3502. <TD style="width: 220px"><input type="checkbox" class="sm2" name="alarm_5"/>M&eacute;lodie alerte<img class="picto" src="warn.png"/></TD>
  3503. <TD style="width: 200px">&nbsp;</TD>
  3504. </TR>
  3505. <TR>
  3506. <TD style="width: 220px"><input type="checkbox" class="sm2" name="alarm_6"/>Fichier manquant<img class="picto" src="warn.png"/></TD>
  3507. <TD style="width: 200px">&nbsp;</TD>
  3508. </TR>
  3509. <TR>
  3510. <TD><input type="checkbox" class="sm2" name="alarm_7"/>Acc&egrave;s web<img class="picto" src="warn.png"/></TD>
  3511. <TD>&nbsp;</TD>
  3512. </TR>
  3513. <TR>
  3514. <TD><input type="checkbox" class="sm2" name="alarm_8"/>D&eacute;faut authentification<img class="picto" src="warn.png"/></TD>
  3515. <TD>&nbsp;</TD>
  3516. </TR>
  3517. <TR>
  3518. <TD><input type="checkbox" class="sm2" name="alarm_9"/>Probl&egrave;me synchronisation<img class="picto" src="warn.png"/></TD>
  3519. <TD>&nbsp;</TD>
  3520. </TR>
  3521. <TR>
  3522. <TD><input type="checkbox" class="sm2" name="alarm_10"/>Probl&egrave;me r&eacute;p&eacute;teur<img class="picto" src="crit.png"/></TD>
  3523. <TD>&nbsp;</TD>
  3524. </TR>
  3525. <TR>
  3526. <TD><input type="checkbox" class="sm2" name="alarm_11"/>Status p&eacute;riodique<img class="picto" src="info.png"/></TD>
  3527. <TD>Periode (h)&nbsp;<input type="text" name="k" maxlength="2" style="width: 30px" onKeyPress="return scanTouche_chiffre(event)"/></TD>
  3528. </TR>
  3529. </TBODY>
  3530. </TABLE>
  3531. </div>
  3532. <div style="padding:0px 0 0 10px"><img class="picto" src="info.png"/> Information</div>
  3533. <div style="padding:0px 0 0 10px"><img class="picto" src="warn.png"/> Warning</div>
  3534. <div style="padding:0px 0 0 10px"><img class="picto" src="crit.png"/> Critic</div>
  3535. </span>
  3536. <div>&nbsp;</div>
  3537. <HR align=center width="50%">
  3538. <div>&nbsp;</div>
  3539. <div><input type="submit" class="sm" name="Save" onclick="document.pressed=this.name" style="width: 125px" value="OK" /></div>
  3540. </fieldset>
  3541. </form>
  3542. <br></br>
  3543. </div>
  3544. <script language="javascript">
  3545. document.getElementById('hello').innerHTML = "Param&egrave;tres Carillon";
  3546. makeRequest("snmpdata.cgi", parse_vars);
  3547. </script>
  3548. <div class="spacer">&nbsp;</div>
  3549. </div></div></div></div></div>
  3550. </body>
  3551. </html>
  3552. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  3553. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3554. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3555. <head>
  3556. <title>BODET Speaker</title>
  3557. <link href="melodys.css" rel="stylesheet" type="text/css" />
  3558. <script type="text/javascript" src="request.js"></script>
  3559. <script type="text/javascript" src="SNMP.js"></script>
  3560. </head>
  3561. <body>
  3562. <div id="shadow-one"><div id="shadow-two"><div id="shadow-three"><div id="shadow-four">
  3563. <div id="page">
  3564. <div style="padding:0 0 5px 0px"><img src="bodet.png" width=22% alt="Bodet" /></div>
  3565. <div id="title"><div class="right">Embedded Web Server </div><span id="hello">&nbsp;</span></div>
  3566. <div id="menu">
  3567. <a href="index_gb.html">Home</a>
  3568. <a href="network_gb.html">Network Configuration</a>
  3569. <a href="param_gb.html">Parameters</a>
  3570. <a href="time_gb.html">Time Configuration</a>
  3571. <a href="SNMP_gb.html">Alarm Configuration</a>
  3572. <a href="system_gb.html">System</a>
  3573. </div>
  3574. <div id="content">
  3575. <h1>Alarm Configuration</h1>
  3576. <form method="post" name="config" onsubmit="return verify_input();">
  3577. <fieldset>
  3578. <span>
  3579. <div><input type="checkbox" class="sm" name="agent" onclick="configSNMP()"/> SNMP</div>
  3580. <div><label>Version</label>
  3581. <input type="radio" name="version" value="0" style="width: 27px">V1</input>
  3582. <input type="radio" name="version" value="1" style="width: 27px">V2C</input>
  3583. </div>
  3584. <div><label>Community</label>
  3585. <input type="text" name="community" onKeyPress="return scanTouche(event)" maxlength="30"/></div>
  3586. <div>&nbsp;</div>
  3587. </span>
  3588. <span id="snmp_trap" style="display:inline">
  3589. <HR align=center width="50%">
  3590. <div>&nbsp;</div>
  3591. <div><input type="checkbox" class="sm" name="trap"/> SNMP Trap</div>
  3592. <div><label>SNMP Manager 1</label>
  3593. <input type="text" name="manag_1" onKeyPress="return scanTouche(event)" maxlength="30"/></div>
  3594. <div><label>SNMP Manager 2</label>
  3595. <input type="text" name="manag_2" onKeyPress="return scanTouche(event)" maxlength="30" /></div>
  3596. <div><label>SNMP Manager 3</label>
  3597. <input type="text" name="manag_3" onKeyPress="return scanTouche(event)" maxlength="30" /></div>
  3598. <div>
  3599. <input type="submit" class="sm" style="width: 125px" name="test_trap" onclick="document.pressed=this.name" value="SNMP Trap test">
  3600. </div>
  3601. <br></br>
  3602. <div style="padding:0 0 20px 20px">
  3603. <TABLE border=1 CELLPADDING=5 CELLSPACING=0>
  3604. <TBODY>
  3605. <TR>
  3606. <Th>Enable Alarms</Th>
  3607. <Th style="width: 139px">Parameters</Th>
  3608. </TR>
  3609. <TR>
  3610. <TD style="width: 220px"><input type="checkbox" class="sm2" name="alarm_1"/>Reboot<img class="picto" src="info.png"/></TD>
  3611. <TD style="width: 200px">&nbsp;</TD>
  3612. </TR>
  3613. <TR>
  3614. <TD style="width: 220px"><input type="checkbox" class="sm2" name="alarm_2"/>Scheduled melody<img class="picto" src="info.png"/></TD>
  3615. <TD>&nbsp;</TD>
  3616. </TR>
  3617. <TR>
  3618. <TD style="width: 220px"><input type="checkbox" class="sm2" name="alarm_3"/>Manual melody<img class="picto" src="info.png"/></TD>
  3619. <TD>&nbsp;</TD>
  3620. </TR>
  3621. <TR>
  3622. <TD style="width: 220px"><input type="checkbox" class="sm2" name="alarm_4"/>Streaming<img class="picto" src="info.png"/></TD>
  3623. <TD>&nbsp;</TD>
  3624. </TR>
  3625. <TR>
  3626. <TD style="width: 220px"><input type="checkbox" class="sm2" name="alarm_5"/>Alert Melody<img class="picto" src="warn.png"/></TD>
  3627. <TD style="width: 200px">&nbsp;</TD>
  3628. </TR>
  3629. <TR>
  3630. <TD style="width: 220px"><input type="checkbox" class="sm2" name="alarm_6"/>Missing File<img class="picto" src="warn.png"/></TD>
  3631. <TD style="width: 200px">&nbsp;</TD>
  3632. </TR>
  3633. <TR>
  3634. <TD><input type="checkbox" class="sm2" name="alarm_7"/>Web access<img class="picto" src="warn.png"/></TD>
  3635. <TD>&nbsp;</TD>
  3636. </TR>
  3637. <TR>
  3638. <TD><input type="checkbox" class="sm2" name="alarm_8"/>Authentication failure<img class="picto" src="warn.png"/></TD>
  3639. <TD>&nbsp;</TD>
  3640. </TR>
  3641. <TR>
  3642. <TD><input type="checkbox" class="sm2" name="alarm_9"/>Synchronisation failure<img class="picto" src="crit.png"/></TD>
  3643. <TD>&nbsp;</TD>
  3644. </TR>
  3645. <TR>
  3646. <TD><input type="checkbox" class="sm2" name="alarm_10"/>Repeater failure<img class="picto" src="crit.png"/></TD>
  3647. <TD>&nbsp;</TD>
  3648. </TR>
  3649. <TR>
  3650. <TD><input type="checkbox" class="sm2" name="alarm_11"/>Periodic status<img class="picto" src="warn.png"/></TD>
  3651. <TD>Periode (h)&nbsp;<input type="text" name="k" maxlength="2" style="width: 30px" onKeyPress="return scanTouche_chiffre(event)"/></TD>
  3652. </TR>
  3653. </TBODY>
  3654. </TABLE>
  3655. </div>
  3656. <div style="padding:0px 0 0 10px"><img class="picto" src="info.png"/> Information</div>
  3657. <div style="padding:0px 0 0 10px"><img class="picto" src="warn.png"/> Warning</div>
  3658. <div style="padding:0px 0 0 10px"><img class="picto" src="crit.png"/> Critic</div>
  3659. </span>
  3660. <div>&nbsp;</div>
  3661. <HR align=center width="50%">
  3662. <div>&nbsp;</div>
  3663. <div><input type="submit" class="sm" name="Save" onclick="document.pressed=this.name" style="width: 125px" value="Save" /></div>
  3664. </fieldset>
  3665. </form>
  3666. <br></br>
  3667. </div>
  3668. <script language="javascript">
  3669. document.getElementById('hello').innerHTML = "Speaker Setting";
  3670. makeRequest("snmpdata.cgi", parse_vars);
  3671. </script>
  3672. <div class="spacer">&nbsp;</div>
  3673. </div></div></div></div></div>
  3674. </body>
  3675. </html>
  3676. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  3677. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3678. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3679. <head>
  3680. <title>BODET Clock Setting</title>
  3681. <link href="melodys.css" rel="stylesheet" type="text/css" />
  3682. <script type="text/javascript" src="request.js"></script>
  3683. <script type="text/javascript" src="time.js"></script>
  3684. <style type="text/css">
  3685. .auto-style1 {
  3686. font-family: Verdana;
  3687. font-size: small;
  3688. </style>
  3689. </head>
  3690. <body>
  3691. <div id="shadow-one">
  3692. <div id="shadow-two">
  3693. <div id="shadow-three">
  3694. <div id="shadow-four">
  3695. <div id="page">
  3696. <div style="padding:0 0 5px 0px"><img src="bodet.png" width=22% alt="Bodet"/></div>
  3697. <div id="title"><div class="right">Serveur Web</div><span id="hello">&nbsp;</span></div>
  3698. <div id="menu">
  3699. <a href="index_fr.html">Accueil</a>
  3700. <a href="network_fr.html">Configuration r&eacute;seau</a>
  3701. <a href="param_fr.html">Param&egrave;tres</a>
  3702. <a href="time_fr.html">Distribution horaire</a>
  3703. <a href="SNMP_fr.html">Configuration alarmes</a>
  3704. <a href="system_fr.html">Syst&egrave;me</a>
  3705. </div>
  3706. <div id="content">
  3707. <h1>Distribution horaire</h1>
  3708. <!--------------------------------AFFICHAGE HEURE LOCALE------------------------------------->
  3709. <p class="auto-style1"><strong id ="id_label_Time_Zone_Titre">Zone horaire</strong></p>
  3710. <form method="post" action="time.cgi" name="config">
  3711. <fieldset>
  3712. <span id = "timezone0" style="display:inline">
  3713. <div>
  3714. <span id ="id_label_Time_Zone" style="display:inline"><label>Zone horaire</label></span>
  3715. <select onchange="configTimeConf(0)" name="K0">
  3716. </select>
  3717. </div>
  3718. <div>&nbsp;</div>
  3719. <span id = "timechangesetting0" style="display:none" >
  3720. <div>
  3721. <label id ="id_label_GMT_Offset0">Offset GMT</label>
  3722. <select name="TZn0">
  3723. <option value="0">-</option>
  3724. <option value="1">+</option>
  3725. </select>
  3726. <select name="TZh0">
  3727. </select>
  3728. <select name="TZm0">
  3729. </select>
  3730. </div>
  3731. <div>
  3732. <input type="checkbox" class="sm" name="tc0" value="0" onclick="configTimeChangeOver(0)"/> Activer changement d'heure
  3733. </div>
  3734. <div id = "summertime0">
  3735. <label id ="id_label_Summer_Time0">Heure d'&eacute;t&eacute;</label>
  3736. <select onchange="configJourFixeEte(0)" name="EM0">
  3737. </select>
  3738. <select onchange="configTimeRangEte(0)" name="ER0">
  3739. </select>
  3740. <select onchange="displayTextChangeover(0,0)" name="EJ0">
  3741. </select>
  3742. <select onchange="displayTextChangeover(0,0)" name="EJF0">
  3743. </select>
  3744. <br>
  3745. <div id="TZE_exp0" style="padding-left:0px;color:grey"></div>
  3746. </div>
  3747. <div id = "wintertime0">
  3748. <label id="id_label_Winter_Time0">Heure d'hiver</label>
  3749. <select onchange="configJourFixeHiver(0)" name="HM0">
  3750. </select>
  3751. <select onchange="configTimeRangHiver(0)" name="HR0">
  3752. </select>
  3753. <select onchange="displayTextChangeover(0,1)" name="HJ0">
  3754. </select>
  3755. <select onchange="displayTextChangeover(0,1)" name="HJF0">
  3756. </select>
  3757. <br>
  3758. <div id="TZH_exp0" style="padding-left:0px;color:grey"></div>
  3759. </div>
  3760. <div>&nbsp;</div>
  3761. </span>
  3762. </span>
  3763. <div>&nbsp;</div>
  3764. <div><input type="submit" name = "bp_save" class="sm" value="Save" style="width: 100px"/></div>
  3765. </fieldset>
  3766. </form>
  3767. <p class="auto-style1"><strong>Synchronisation</strong></p>
  3768. <form method="post" action="synchro.cgi" name="config2" onSubmit="return verify_input()">
  3769. <fieldset>
  3770. <div><label>Mode NTP</label>
  3771. <select name="ntp_mode" ONCHANGE="configSyncBoxes()">
  3772. <option value="0"> DHCP</option>
  3773. <option value="1"> Unicast</option>
  3774. <option value="2"> Multicast</option>
  3775. </select>
  3776. </div>
  3777. <div><label id="id_label_Address1">Addresse 1</label>
  3778. <input type="text" name="ntp1" style="width: 136px" maxlength="40" onKeyPress="return scanTouche(event)"/></div>
  3779. <div><label id="id_label_Address2">Addresse 2</label>
  3780. <input type="text" name="ntp2" style="width: 136px" maxlength="40" onKeyPress="return scanTouche(event)"/></div>
  3781. <div><label id="id_label_Address3">Addresse 3</label>
  3782. <input type="text" name="ntp3" style="width: 136px" maxlength="40" onKeyPress="return scanTouche(event)"/></div>
  3783. <div><label id="id_label_Address4">Addresse 4</label>
  3784. <input type="text" name="ntp4" style="width: 136px" maxlength="40" onKeyPress="return scanTouche(event)"/></div>
  3785. <div><label id="id_label_Address5">Addresse 5</label>
  3786. <input type="text" name="ntp5" style="width: 136px" maxlength="40" onKeyPress="return scanTouche(event)"/></div>
  3787. <div><label id="id_interval">Periodicit&eacute;</label>
  3788. <input type="number" name="pool" size="5" min="1" max="999" style="width: 47px" onKeyPress="return scanTouche_chiffre(event)"/>&nbsp;&nbsp;&nbsp;<i>(1 &agrave; 999 minutes)</i></div>
  3789. <div class="table"><input type="checkbox" class="sm" name="ntpi" value="1" /> <span>Continuer l'affichage de l'heure apr&egrave;s la perte de synchronisation</span></div>
  3790. <div>&nbsp;</div>
  3791. <div><input type="submit" class="sm" value="Save" style="width: 100px" /></div>
  3792. </fieldset>
  3793. </form>
  3794. </div>
  3795. <div class="spacer">&nbsp;</div>
  3796. </div>
  3797. </div>
  3798. </div>
  3799. </div>
  3800. </div>
  3801. <script type="text/javascript">
  3802. document.getElementById('hello').innerHTML = "Param&egrave;tres Carillon";
  3803. makeRequest("timedata.cgi", parse_vars);
  3804. </script>
  3805. </body>
  3806. </html><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  3807. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3808. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3809. <head>
  3810. <title>BODET Clock Setting</title>
  3811. <link href="melodys.css" rel="stylesheet" type="text/css" />
  3812. <script type="text/javascript" src="request.js"></script>
  3813. <script type="text/javascript" src="time.js"></script>
  3814. <style type="text/css">
  3815. .auto-style1 {
  3816. font-family: Verdana;
  3817. font-size: small;
  3818. </style>
  3819. </head>
  3820. <body>
  3821. <div id="shadow-one">
  3822. <div id="shadow-two">
  3823. <div id="shadow-three">
  3824. <div id="shadow-four">
  3825. <div id="page">
  3826. <div style="padding:0 0 5px 0px"><img src="bodet.png" width=22% alt="Bodet"/></div>
  3827. <div id="title"><div class="right">Embedded Web Server </div><span id="hello">&nbsp;</span></div>
  3828. <div id="menu">
  3829. <a href="index_gb.html">Home</a>
  3830. <a href="network_gb.html">Network Configuration</a>
  3831. <a href="param_gb.html">Parameters</a>
  3832. <a href="time_gb.html">Time Configuration</a>
  3833. <a href="SNMP_gb.html">Alarm Configuration</a>
  3834. <a href="system_gb.html">System</a>
  3835. </div>
  3836. <div id="content">
  3837. <h1>Time Configuration</h1>
  3838. <!--------------------------------AFFICHAGE HEURE LOCALE------------------------------------->
  3839. <p class="auto-style1"><strong id ="id_label_Time_Zone_Titre">Time Zone</strong></p>
  3840. <form method="post" action="time.cgi" name="config">
  3841. <fieldset>
  3842. <span id = "timezone0" style="display:inline">
  3843. <div>
  3844. <span id ="id_label_Time_Zone" style="display:inline"><label>Time Zone</label></span>
  3845. <select onchange="configTimeConf(0)" name="K0">
  3846. </select>
  3847. </div>
  3848. <div>&nbsp;</div>
  3849. <span id = "timechangesetting0" style="display:none" >
  3850. <div>
  3851. <label id ="id_label_GMT_Offset0">GMT Offset</label>
  3852. <select name="TZn0">
  3853. <option value="0">-</option>
  3854. <option value="1">+</option>
  3855. </select>
  3856. <select name="TZh0">
  3857. </select>
  3858. <select name="TZm0">
  3859. </select>
  3860. </div>
  3861. <div>
  3862. <input type="checkbox" class="sm" name="tc0" value="0" onclick="configTimeChangeOver(0)"/> Enable Time Changeovers
  3863. </div>
  3864. <div id = "summertime0">
  3865. <label id ="id_label_Summer_Time0">Summer Time</label>
  3866. <select onchange="configJourFixeEte(0)" name="EM0">
  3867. </select>
  3868. <select onchange="configTimeRangEte(0)" name="ER0">
  3869. </select>
  3870. <select onchange="displayTextChangeover(0,0)" name="EJ0">
  3871. </select>
  3872. <select onchange="displayTextChangeover(0,0)" name="EJF0">
  3873. </select>
  3874. <br>
  3875. <div id="TZE_exp0" style="padding-left:0px;color:grey"></div>
  3876. </div>
  3877. <div id = "wintertime0">
  3878. <label id="id_label_Winter_Time0">Winter Time</label>
  3879. <select onchange="configJourFixeHiver(0)" name="HM0">
  3880. </select>
  3881. <select onchange="configTimeRangHiver(0)" name="HR0">
  3882. </select>
  3883. <select onchange="displayTextChangeover(0,1)" name="HJ0">
  3884. </select>
  3885. <select onchange="displayTextChangeover(0,1)" name="HJF0">
  3886. </select>
  3887. <br>
  3888. <div id="TZH_exp0" style="padding-left:0px;color:grey"></div>
  3889. </div>
  3890. <div>&nbsp;</div>
  3891. </span>
  3892. </span>
  3893. <div>&nbsp;</div>
  3894. <div><input type="submit" name = "bp_save" class="sm" value="Save" style="width: 100px"/></div>
  3895. </fieldset>
  3896. </form>
  3897. <p class="auto-style1"><strong>Synchronisation</strong></p>
  3898. <form method="post" action="synchro.cgi" name="config2" onSubmit="return verify_input()">
  3899. <fieldset>
  3900. <div><label>NTP Mode</label>
  3901. <select name="ntp_mode" ONCHANGE="configSyncBoxes()">
  3902. <option value="0"> by DHCP</option>
  3903. <option value="1"> Unicast</option>
  3904. <option value="2"> Multicast</option>
  3905. </select>
  3906. </div>
  3907. <div><label id="id_label_Address1">Address 1</label>
  3908. <input type="text" name="ntp1" style="width: 136px" maxlength="40" onKeyPress="return scanTouche(event)"/></div>
  3909. <div><label id="id_label_Address2">Address 2</label>
  3910. <input type="text" name="ntp2" style="width: 136px" maxlength="40" onKeyPress="return scanTouche(event)"/></div>
  3911. <div><label id="id_label_Address3">Address 3</label>
  3912. <input type="text" name="ntp3" style="width: 136px" maxlength="40" onKeyPress="return scanTouche(event)"/></div>
  3913. <div><label id="id_label_Address4">Address 4</label>
  3914. <input type="text" name="ntp4" style="width: 136px" maxlength="40" onKeyPress="return scanTouche(event)"/></div>
  3915. <div><label id="id_label_Address5">Address 5</label>
  3916. <input type="text" name="ntp5" style="width: 136px" maxlength="40" onKeyPress="return scanTouche(event)"/></div>
  3917. <div><label id="id_interval">Periodicity</label>
  3918. <input type="number" name="pool" size="5" min="1" max="999" style="width: 47px" onKeyPress="return scanTouche_chiffre(event)"/>&nbsp;&nbsp;&nbsp;<i>(1 to 999 minutes)</i></div>
  3919. <div class="table"><input type="checkbox" class="sm" name="ntpi" value="1" /> <span>Continue to display time after synchronisation failure</span></div>
  3920. <div>&nbsp;</div>
  3921. <div><input type="submit" class="sm" value="Save" style="width: 100px" /></div>
  3922. </fieldset>
  3923. </form>
  3924. </div>
  3925. <div class="spacer">&nbsp;</div>
  3926. </div>
  3927. </div>
  3928. </div>
  3929. </div>
  3930. </div>
  3931. <script type="text/javascript">
  3932. document.getElementById('hello').innerHTML = "Speaker Setting";
  3933. makeRequest("timedata.cgi", parse_vars);
  3934. </script>
  3935. </body>
  3936. </html>
  3937. // page js
  3938. function parse_vars(data) {
  3939. var i, parsed = data.split( "\n" );
  3940. var form ;
  3941. // Enable SNMP
  3942. if (parsed[0] == 0)
  3943. document.getElementsByName("agent")[0].checked = false ;
  3944. else document.getElementsByName("agent")[0].checked = true ;
  3945. // Version
  3946. if (parsed[1]== 0)
  3947. document.getElementsByName("version")[0].checked = true ;
  3948. else document.getElementsByName("version")[1].checked = true ;
  3949. // Communaute
  3950. document.getElementsByName("community")[0].value= parsed[2] ;
  3951. if (parsed[3] == 0)
  3952. document.getElementsByName("trap")[0].checked = false ;
  3953. else document.getElementsByName("trap")[0].checked = true ;
  3954. // SNMP Manager
  3955. document.getElementsByName("manag_1")[0].value= parsed[4] ;
  3956. document.getElementsByName("manag_2")[0].value= parsed[5] ;
  3957. document.getElementsByName("manag_3")[0].value= parsed[6] ;
  3958. // Enable alarms
  3959. if (parsed[7] == 0)
  3960. document.getElementsByName("alarm_1")[0].checked = false ;
  3961. else document.getElementsByName("alarm_1")[0].checked = true ;
  3962. if (parsed[8] == 0)
  3963. document.getElementsByName("alarm_2")[0].checked = false ;
  3964. else document.getElementsByName("alarm_2")[0].checked = true ;
  3965. if (parsed[9] == 0)
  3966. document.getElementsByName("alarm_3")[0].checked = false ;
  3967. else document.getElementsByName("alarm_3")[0].checked = true ;
  3968. if (parsed[10] == 0)
  3969. document.getElementsByName("alarm_4")[0].checked = false ;
  3970. else document.getElementsByName("alarm_4")[0].checked = true ;
  3971. if (parsed[11] == 0)
  3972. document.getElementsByName("alarm_5")[0].checked = false ;
  3973. else document.getElementsByName("alarm_5")[0].checked = true ;
  3974. if (parsed[12] == 0)
  3975. document.getElementsByName("alarm_6")[0].checked = false ;
  3976. else document.getElementsByName("alarm_6")[0].checked = true ;
  3977. if (parsed[13] == 0)
  3978. document.getElementsByName("alarm_7")[0].checked = false ;
  3979. else document.getElementsByName("alarm_7")[0].checked = true ;
  3980. if (parsed[14] == 0)
  3981. document.getElementsByName("alarm_8")[0].checked = false ;
  3982. else document.getElementsByName("alarm_8")[0].checked = true ;
  3983. if (parsed[15] == 0)
  3984. document.getElementsByName("alarm_9")[0].checked = false ;
  3985. else document.getElementsByName("alarm_9")[0].checked = true ;
  3986. if (parsed[16] == 0)
  3987. document.getElementsByName("alarm_10")[0].checked = false ;
  3988. else document.getElementsByName("alarm_10")[0].checked = true ;
  3989. if (parsed[17] == 0)
  3990. document.getElementsByName("alarm_11")[0].checked = false ;
  3991. else document.getElementsByName("alarm_11")[0].checked = true ;
  3992. // periode status
  3993. document.getElementsByName("k")[0].value= parsed[18] ;
  3994. configSNMP();
  3995. function configSNMP(){
  3996. e = document.forms.config;
  3997. st = e.agent.checked;
  3998. e.trap.disabled = !st;
  3999. e.manag_1.disabled = !st;
  4000. e.manag_2.disabled = !st;
  4001. e.manag_3.disabled = !st;
  4002. e.alarm_1.disabled = !st;
  4003. e.alarm_2.disabled = !st;
  4004. e.alarm_3.disabled = !st;
  4005. e.alarm_4.disabled = !st;
  4006. e.alarm_5.disabled = !st;
  4007. e.alarm_6.disabled = !st;
  4008. e.alarm_7.disabled = !st;
  4009. e.alarm_8.disabled = !st;
  4010. e.alarm_9.disabled = !st;
  4011. e.alarm_10.disabled = !st;
  4012. e.alarm_11.disabled = !st;
  4013. e.k.disabled = !st;
  4014. e.test_trap.disabled = !st;
  4015. if (st)
  4016. document.getElementById('snmp_trap').style.color='black';
  4017. else
  4018. document.getElementById('snmp_trap').style.color='darkgray';
  4019. function codeTouche(evenement)
  4020. for (prop in evenement)
  4021. if(prop == 'which') return(evenement.which);
  4022. return(evenement.keyCode);
  4023. function scanTouche(evenement)
  4024. var reCarValides = /[\w-.\x00\x08]/;
  4025. var reCarInvalides = /_/;
  4026. var car = String.fromCharCode(codeTouche(evenement));
  4027. return (reCarValides.test(car) && !reCarInvalides.test(car)) ;
  4028. function scanTouche_chiffre(evenement)
  4029. var reCarValides = /[\d\x00\x08]/;
  4030. var car = String.fromCharCode(codeTouche(evenement));
  4031. return reCarValides.test(car);
  4032. function verify_input(){
  4033. var carValides = /^[\w-.]*$/;
  4034. var reCarInvalides = /_/;
  4035. e = document.forms.config;
  4036. if ((carValides.test(e.community.value)) && (!reCarInvalides.test(e.community.value)) &&
  4037. (carValides.test(e.manag_1.value)) && (!reCarInvalides.test(e.manag_1.value)) &&
  4038. (carValides.test(e.manag_2.value)) && (!reCarInvalides.test(e.manag_2.value)) &&
  4039. (carValides.test(e.manag_3.value)) && (!reCarInvalides.test(e.manag_3.value)))
  4040. return OnSubmitForm();
  4041. else
  4042. alert("wrong caracters, only 'A-Z, a-z, 0-9, ., -' accepted");
  4043. return false ;
  4044. function OnSubmitForm()
  4045. if(document.pressed == 'Save')
  4046. configSNMP();
  4047. document.config.action ="snmp.cgi";
  4048. else
  4049. if(document.pressed == 'test_trap')
  4050. document.config.action ="snmptest.cgi";
  4051. return true;
  4052. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//FR"
  4053. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  4054. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
  4055. <head>
  4056. <title>BODET Carillon</title>
  4057. <link href="melodys.css" rel="stylesheet" type="text/css" />
  4058. <script type="text/javascript" src="request.js"></script>
  4059. <script type="text/javascript" src="system.js"></script>
  4060. </head>
  4061. <body>
  4062. <div id="shadow-one"><div id="shadow-two"><div id="shadow-three"><div id="shadow-four">
  4063. <div id="page">
  4064. <div style="padding:0 0 5px 0px"><img src="bodet.png" width=22% alt="Bodet" oncontextmenu="tech();return false;"/></div>
  4065. <div id="title"><div class="right">Serveur Web</div><span id="hello">&nbsp;</span></div>
  4066. <div id="menu">
  4067. <a href="index_fr.html">Accueil</a>
  4068. <a href="network_fr.html">Configuration r&eacute;seau</a>
  4069. <a href="param_fr.html">Param&egrave;tres</a>
  4070. <a href="time_fr.html">Distribution horaire</a>
  4071. <a href="SNMP_fr.html">Configuration alarmes</a>
  4072. <a href="system_fr.html">Syst&egrave;me</a>
  4073. </div>
  4074. <div id="content">
  4075. <h1>Syst&egrave;me</h1>
  4076. <form method="post" action="http:version.cgi" name="config">
  4077. <fieldset>
  4078. <DIV><label>Firmware</label><SPAN id="id_version">&nbsp;</SPAN></DIV>
  4079. <DIV><label>Uptime</label><SPAN id="id_timestamp">&nbsp;</SPAN></DIV>
  4080. <DIV><label>DateCode</label><SPAN id="id_datecode">&nbsp;</SPAN></DIV>
  4081. <br>
  4082. </fieldset>
  4083. </form>
  4084. <br>
  4085. <form method="post" action="http:security.cgi" name="security" onSubmit="return verify_input()">
  4086. <fieldset>
  4087. <p class="error">
  4088. <b>Attention:</b> Le mot de passe sera requis pour la connexion avec le serveur web.</p>
  4089. <div>
  4090. <input type="checkbox" class="sm" name="auth" value="0" />Authentification</div>
  4091. <div><label for="id_user" id="id_label_user">Utilisateur</label>
  4092. <td><input type="text" name="user" id="id_user" maxlength="16" onclick="select(user)" onKeyPress="return scanTouche(event)"/></div>
  4093. <div><label for="id_password" id="id_label_password">Mot de passe</label>
  4094. <td><input type="password" name="password" id="id_password" maxlength="16" onclick="select(password)" onKeyPress="return scanTouche(event)"/></div>
  4095. <div><label for="id_password2" id="id_label_password2">Confirmation mot de passe</label>
  4096. <td><input type="password" name="password2" id="id_password2" maxlength="16" onclick="select(password2)" onKeyPress="return scanTouche(event)"/></div>
  4097. <br>
  4098. <div><input type="submit" class="sm" value="Ok" style="width: 125px"/></div>
  4099. </fieldset>
  4100. </form>
  4101. <br>
  4102. <form method="post" action="http:reboot.cgi" name="config2">
  4103. <fieldset>
  4104. <p class="error">
  4105. <b>Attention:</b> Red&eacute;marrer entrainera la perte de la connexion r&eacute;seau.</p>
  4106. <input type="hidden" name="h1" value="0"/>
  4107. <div><input type="submit" class="sm" value="Red&eacute;marrer" style="width: 125px"/></div>
  4108. </fieldset>
  4109. </form>
  4110. <br>
  4111. <form method="post" action="http:factory_config.cgi" name="config3">
  4112. <fieldset>
  4113. <p class="error">
  4114. <b>Attention:</b> La configuration usine entrainera la perte de tous les param&egrave;tres et eventuellement la perte de la connexion r&eacute;seau.</p>
  4115. <input type="hidden" name="h2" value="0"/>
  4116. <div>
  4117. <input type="submit" class="sm" value="Config. usine et Red&eacute;marrer"/></div>
  4118. </fieldset>
  4119. </form>
  4120. </div>
  4121. <script language="javascript">
  4122. makeRequest("system.cgi", parse_vars);
  4123. document.getElementById('hello').innerHTML = "Param&egrave;tres Carillon";
  4124. </script>
  4125. <div class="spacer" style="height: 51px">&nbsp;</div>
  4126. </div></div></div></div></div>
  4127. </body>
  4128. </html>
  4129. body {
  4130. font-family: Verdana, Arial, sans-serif;
  4131. background: #5b5b5b;
  4132. margin: 0px auto;
  4133. padding: 0 0 20px 0;
  4134. #shadow-one {
  4135. width: 760px;
  4136. border: 1px solid #555;
  4137. border-top: 0;
  4138. margin: 0px auto;
  4139. #shadow-two {
  4140. border: 1px solid #4b4b4b;
  4141. border-top: 0;
  4142. #shadow-three {
  4143. border: 1px solid #444;
  4144. border-top: 0;
  4145. #shadow-four {
  4146. border: 1px solid #3a3a3a;
  4147. border-top: 0;
  4148. #page {
  4149. border: 1px solid #333;
  4150. background: #fff;
  4151. border-top: 0;
  4152. padding: 20px;
  4153. font-size: 10pt;
  4154. #page td {
  4155. font-size: 10pt;
  4156. #title {
  4157. background: #E1E1E1;
  4158. padding: 4px;
  4159. font-weight: bold;
  4160. color: #4B4B4B;
  4161. margin-bottom: 15px;
  4162. height: 16px;
  4163. #title .right {
  4164. float: right;
  4165. width: 300px;
  4166. text-align: right;
  4167. #menu {
  4168. float: left;
  4169. width: 150px;
  4170. padding-right: 20px;
  4171. #menu a {
  4172. width: 140px;
  4173. display: block;
  4174. background: #FFF101;
  4175. color: #000000;
  4176. padding: 8px;
  4177. font-weight: bold;
  4178. border-bottom: 2px solid #fff;
  4179. text-decoration: none;
  4180. #menu a:hover {
  4181. background: #FFFF66;
  4182. text-decoration: underline;
  4183. #content {
  4184. width: 525px;
  4185. float: right;
  4186. padding-right: 10px;
  4187. #content a {
  4188. color: #FFFF00;
  4189. text-decoration: none;
  4190. #content a:hover {
  4191. color: #FFFF00;
  4192. text-decoration: underline;
  4193. #content h1 {
  4194. margin-top: 0px;
  4195. .spacer {
  4196. clear: both;
  4197. #footer {
  4198. font-size: 0.8em;
  4199. color: #666;
  4200. text-align: center;
  4201. margin: 10px 50px 0 50px;
  4202. padding-top: 10px;
  4203. border-top: 1px dotted #666;
  4204. #status {
  4205. width: 175px;
  4206. float: right;
  4207. padding: 10px;
  4208. margin: 10px;
  4209. border: 1px dotted #666;
  4210. font-weight: bold;
  4211. #status p {
  4212. padding: 5px 0 5px 10px;
  4213. text-indent: -10px;
  4214. margin: 0;
  4215. #status .leds {
  4216. font-size: 14pt;
  4217. #status .leds a {
  4218. color: #ddd;
  4219. cursor: pointer;
  4220. #status .leds a:hover {
  4221. color: #ddd;
  4222. text-decoration: none;
  4223. .examplebox {
  4224. margin:10px 40px 10px 40px;
  4225. padding: 8px;
  4226. border: 1px dotted #333;
  4227. text-align:center;
  4228. background:#ddd;
  4229. .code {
  4230. font-family: Courier New, Courier, fixed-width, fixed;
  4231. .exercise {
  4232. background: #fe9;
  4233. padding: 5px;
  4234. margin-left: 10px;
  4235. border-left: 2px solid #eb3;
  4236. .error {
  4237. margin-left: 10px;
  4238. padding: 10px;
  4239. background: #fdd;
  4240. border-left: 2px solid #900;
  4241. .table {
  4242. margin-left: 20px;
  4243. padding: 10px;
  4244. #content h6 {
  4245. border-top: 1px dashed #333;
  4246. margin: 15px;
  4247. padding: 0px;
  4248. height: 1px;
  4249. .examplebox td {
  4250. text-align:left;
  4251. padding-right: 15px;
  4252. fieldset {
  4253. margin: 0px 0px 0px 10px;
  4254. padding: 8px;
  4255. border: 1px dotted #333;
  4256. background: #EBEBEB;
  4257. fieldset div {
  4258. margin: 0 0 0 auto;
  4259. padding: 2px 0px 2px 150px;
  4260. fieldset div label {
  4261. margin-left: -130px;
  4262. padding-top: 2px;
  4263. width: 130px;
  4264. font-weight: bold;
  4265. position: absolute;
  4266. fieldset div lab1 {
  4267. padding-right: 20px;
  4268. .picto {
  4269. margin-left: 10px;
  4270. padding-top: 2px;
  4271. fieldset input {
  4272. width: 250px;
  4273. fieldset input.sm {
  4274. width: auto;
  4275. left: inherit;
  4276. fieldset input.sm3 {
  4277. margin-left: 100px ;
  4278. width: 124px;
  4279. fieldset input.sm2 {
  4280. width: 25px;
  4281. left: inherit;
  4282. fieldset textarea {
  4283. width: 250px;
  4284. .result
  4285. margin: 10px 40px 10px 40px;
  4286. padding: 8px;
  4287. border: 1px solid #333;
  4288. text-align: center;
  4289. font-weight: bold;
  4290. background: #eee;
  4291. .ok {
  4292. border-color: #6b6;
  4293. background: #efe;
  4294. .fail {
  4295. border-color: #b66;
  4296. background: #fee;
  4297. .unk {
  4298. border-color: #cc6;
  4299. background: #ffd;
  4300. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  4301. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  4302. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4303. <head>
  4304. <title>BODET Speaker</title>
  4305. <link href="melodys.css" rel="stylesheet" type="text/css" />
  4306. <script type="text/javascript" src="request.js"></script>
  4307. <script type="text/javascript" src="system.js"></script>
  4308. </head>
  4309. <body>
  4310. <div id="shadow-one"><div id="shadow-two"><div id="shadow-three"><div id="shadow-four">
  4311. <div id="page">
  4312. <div style="padding:0 0 5px 0px"><img src="bodet.png" width=22% alt="Bodet" oncontextmenu="tech();return false;"/></div>
  4313. <div id="title"><div class="right">Embedded Web Server</div><span id="hello">&nbsp;</span></div>
  4314. <div id="menu">
  4315. <a href="index_gb.html">Home</a>
  4316. <a href="network_gb.html">Network Configuration</a>
  4317. <a href="param_gb.html">Parameters</a>
  4318. <a href="time_gb.html">Time Configuration</a>
  4319. <a href="SNMP_gb.html">Alarm Configuration</a>
  4320. <a href="system_gb.html">System</a>
  4321. </div>
  4322. <div id="content">
  4323. <h1>System</h1>
  4324. <form method="post" action="http:version.cgi" name="config">
  4325. <fieldset>
  4326. <DIV><label>Firmware</label><SPAN id="id_version">&nbsp;</SPAN></DIV>
  4327. <DIV><label>Uptime</label><SPAN id="id_timestamp">&nbsp;</SPAN></DIV>
  4328. <DIV><label>DateCode</label><SPAN id="id_datecode">&nbsp;</SPAN></DIV>
  4329. <br>
  4330. </fieldset>
  4331. </form>
  4332. <br>
  4333. <form method="post" action="http:security.cgi" name="security" onSubmit="return verify_input()">
  4334. <fieldset>
  4335. <p class="error">
  4336. <b>CAUTION:</b> The correct password is required for the connection with the Embedded Web Server.</p>
  4337. <div>
  4338. <input type="checkbox" class="sm" name="auth" value="0" /> Enable authentication</div>
  4339. <div><label for="id_user" id="id_label_user">Username</label>
  4340. <td><input type="text" name="user" id="id_user" maxlength="16" onclick="select(user)" onKeyPress="return scanTouche(event)"/></div>
  4341. <div><label for="id_password" id="id_label_password">New Password</label>
  4342. <td><input type="password" name="password" id="id_password" maxlength="16" onclick="select(password)" onKeyPress="return scanTouche(event)"/></div>
  4343. <div><label for="id_password2" id="id_label_password2">Confirm New Password</label>
  4344. <td><input type="password" name="password2" id="id_password2" maxlength="16" onclick="select(password2)" onKeyPress="return scanTouche(event)"/></div>
  4345. <br>
  4346. <div><input type="submit" class="sm" value="Save" style="width: 125px"/></div>
  4347. </fieldset>
  4348. </form>
  4349. <br>
  4350. <form method="post" action="http:reboot.cgi" name="config2">
  4351. <fieldset>
  4352. <p class="error">
  4353. <b>CAUTION:</b> Reboot will cause the loss of the network connection.</p>
  4354. <input type="hidden" name="h1" value="0"/>
  4355. <div><input type="submit" class="sm" value="Reboot" style="width: 125px" /></div>
  4356. </fieldset>
  4357. </form>
  4358. <br>
  4359. <form method="post" action="http:factory_config.cgi" name="config3">
  4360. <fieldset>
  4361. <p class="error">
  4362. <b>CAUTION:</b> Factory configuration will cause the loss of all your parameters and may cause the loss of the network connection.</p>
  4363. <input type="hidden" name="h2" value="0"/>
  4364. <div>
  4365. <input type="submit" class="sm" value="Factory config.+ Reboot" style="width: 164px" /></div>
  4366. </fieldset>
  4367. </form>
  4368. </div>
  4369. <script language="javascript">
  4370. makeRequest("system.cgi", parse_vars);
  4371. document.getElementById('hello').innerHTML = "Speaker Setting";
  4372. </script>
  4373. <div class="spacer" style="height: 51px">&nbsp;</div>
  4374. </div></div></div></div></div>
  4375. </body>
  4376. </html>
  4377. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//FR"
  4378. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  4379. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
  4380. <head>
  4381. <title>BODET Carillon</title>
  4382. <link href="melodys.css" rel="stylesheet" type="text/css" />
  4383. <script type="text/javascript" src="request.js"></script>
  4384. <script type="text/javascript">
  4385. // page js
  4386. function parse_vars(data) {
  4387. var parsed = data.split( "\n" );
  4388. document.getElementById("id_product").innerHTML = parsed[0];
  4389. document.getElementById("id_host_name").innerHTML = parsed[1];
  4390. document.getElementById("id_synchro").innerHTML = parsed[2];
  4391. document.getElementById("id_date").innerHTML = parsed[3];
  4392. document.getElementById("id_heure").innerHTML = parsed[4];
  4393. if (parsed[5] == 0)
  4394. document.getElementById('label_poe').style.display = 'inline'
  4395. else document.getElementById('label_poe').style.display = 'none'
  4396. function loop() {
  4397. if (!data_received)
  4398. makeRequest("home.cgi", parse_vars);
  4399. setTimeout("loop()", 1000);
  4400. window.onload=loop;
  4401. </script>
  4402. <style type="text/css">
  4403. .auto-style1 {
  4404. direction: ltr;
  4405. </style>
  4406. </head>
  4407. <body>
  4408. <div id="shadow-one" style="height: 396px"><div id="shadow-two"><div id="shadow-three"><div id="shadow-four">
  4409. <div id="page">
  4410. <div style="padding:0 0 5px 0px"><img src="bodet.png" width=22% alt="Bodet"/></div>
  4411. <div id="title"><div class="right">Serveur Web</div><span id="hello">&nbsp;</span></div>
  4412. <div id="menu">
  4413. <a href="index_fr.html">Accueil</a>
  4414. <a href="network_fr.html">Configuration r&eacute;seau</a>
  4415. <a href="param_fr.html">Param&egrave;tres</a>
  4416. <a href="time_fr.html">Distribution horaire</a>
  4417. <a href="SNMP_fr.html">Configuration alarmes</a>
  4418. <a href="system_fr.html">Syst&egrave;me</a>
  4419. </div>
  4420. <div id="content">
  4421. <h1>Accueil</h1>
  4422. <p>&nbsp;</p>
  4423. <form method="post" action="http:index.cgi" name="config">
  4424. <fieldset style="word-break: break-word">
  4425. <DIV><label for="id_product">Produit</label><span id="id_product">&nbsp;</span></div>
  4426. <DIV>&nbsp;</div>
  4427. <div><label>Nom</label><span id="id_host_name">&nbsp;</span></div>
  4428. <DIV>&nbsp;</div>
  4429. <div id="label_poe" style="display:none;padding:0px">
  4430. <p class="error" style="margin: 0px">
  4431. <b>Attention:</b> Produit aliment&eacute; en PoE et non en PoE+. <br>Fonctionnement brid&eacute;.</p>
  4432. <DIV>&nbsp;</div>
  4433. </div>
  4434. <div><label>Synchro</label><SPAN id="id_synchro">&nbsp;</SPAN></DIV>
  4435. <DIV>&nbsp;</DIV>
  4436. <div><label>Date Locale</label><SPAN id="id_date">&nbsp;</SPAN></DIV>
  4437. <DIV>&nbsp;</DIV>
  4438. <div><label>Heure Locale</label><SPAN id="id_heure">&nbsp;</SPAN></DIV>
  4439. <DIV>&nbsp;</div>
  4440. </fieldset>
  4441. </form>
  4442. </div>
  4443. <script language="javascript">
  4444. document.getElementById('hello').innerHTML = "Param&egrave;tres Carillon";
  4445. //makeRequest("home.cgi", parse_vars);
  4446. </script>
  4447. <div class="spacer" style="height: 212px">&nbsp;</div>
  4448. </div></div></div></div></div>
  4449. </body>
  4450. </html>
  4451. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  4452. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  4453. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4454. <head>
  4455. <title>BODET Speaker</title>
  4456. <link href="melodys.css" rel="stylesheet" type="text/css" />
  4457. <script type="text/javascript" src="request.js"></script>
  4458. <script type="text/javascript">
  4459. // page js
  4460. function parse_vars(data) {
  4461. var parsed = data.split( "\n" );
  4462. document.getElementById("id_product").innerHTML = parsed[0];
  4463. document.getElementById("id_host_name").innerHTML = parsed[1];
  4464. document.getElementById("id_synchro").innerHTML = parsed[2];
  4465. document.getElementById("id_date").innerHTML = parsed[3];
  4466. document.getElementById("id_heure").innerHTML = parsed[4];
  4467. if (parsed[5] == 0)
  4468. document.getElementById('label_poe').style.display = 'inline'
  4469. else document.getElementById('label_poe').style.display = 'none'
  4470. function loop() {
  4471. if (!data_received)
  4472. makeRequest("home.cgi", parse_vars);
  4473. setTimeout("loop()", 1000);
  4474. window.onload=loop;
  4475. </script>
  4476. <style type="text/css">
  4477. .auto-style1 {
  4478. direction: ltr;
  4479. </style>
  4480. </head>
  4481. <body>
  4482. <div id="shadow-one" style="height: 396px"><div id="shadow-two"><div id="shadow-three"><div id="shadow-four">
  4483. <div id="page">
  4484. <div style="padding:0 0 5px 0px"><img src="bodet.png" width=22% alt="Bodet"/></div>
  4485. <div id="title"><div class="right">Embedded Web Server</div><span id="hello">&nbsp;</span></div>
  4486. <div id="menu">
  4487. <a href="index_gb.html">Home</a>
  4488. <a href="network_gb.html">Network Configuration</a>
  4489. <a href="param_gb.html">Parameters</a>
  4490. <a href="time_gb.html">Time Configuration</a>
  4491. <a href="SNMP_gb.html">Alarm Configuration</a>
  4492. <a href="system_gb.html">System</a>
  4493. </div>
  4494. <div id="content">
  4495. <h1>Home</h1>
  4496. <p>&nbsp;</p>
  4497. <form method="post" action="http:index.cgi" name="config">
  4498. <fieldset style="word-break: break-word">
  4499. <DIV><label for="id_product">Product</label><span id="id_product">&nbsp;</span></div>
  4500. <DIV>&nbsp;</div>
  4501. <div><label>Name</label><span id="id_host_name">&nbsp;</span></div>
  4502. <DIV>&nbsp;</div>
  4503. <div id="label_poe" style="display:none;padding:0px">
  4504. <p class="error" style="margin: 0px">
  4505. <b>Warning:</b> Product powered in PoE and not PoE+.<br>Limited operation</p>
  4506. <DIV>&nbsp;</div>
  4507. </div>
  4508. <div><label>Synchro</label><SPAN id="id_synchro">&nbsp;</SPAN></DIV>
  4509. <DIV>&nbsp;</DIV>
  4510. <div><label>Local Date</label><SPAN id="id_date">&nbsp;</SPAN></DIV>
  4511. <DIV>&nbsp;</DIV>
  4512. <div><label>Local Time</label><SPAN id="id_heure">&nbsp;</SPAN></DIV>
  4513. <DIV>&nbsp;</div>
  4514. </fieldset>
  4515. </form>
  4516. </div>
  4517. <script language="javascript">
  4518. document.getElementById('hello').innerHTML = "Speaker Setting";
  4519. //makeRequest("home.cgi", parse_vars);
  4520. </script>
  4521. <div class="spacer" style="height: 212px">&nbsp;</div>
  4522. </div></div></div></div></div>
  4523. </body>
  4524. </html>
  4525. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//FR"
  4526. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  4527. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
  4528. <head>
  4529. <title>BODET Carillon</title>
  4530. <link href="melodys.css" rel="stylesheet" type="text/css" />
  4531. <script type="text/javascript" src="request.js"></script>
  4532. <script type="text/javascript" src="network.js"></script>
  4533. </head>
  4534. <body>
  4535. <div id="shadow-one" style="height: 572px"><div id="shadow-two"><div id="shadow-three"><div id="shadow-four">
  4536. <div id="page">
  4537. <div style="padding:0 0 5px 0px"><img src="bodet.png" width=22% alt="Bodet" /></div>
  4538. <div id="title"><div class="right">Serveur Web</div><span id="hello">&nbsp;</span></div>
  4539. <div id="menu">
  4540. <a href="index_fr.html">Accueil</a>
  4541. <a href="network_fr.html">Configuration r&eacute;seau</a>
  4542. <a href="param_fr.html">Param&egrave;tres</a>
  4543. <a href="time_fr.html">Distribution horaire</a>
  4544. <a href="SNMP_fr.html">Configuration alarmes</a>
  4545. <a href="system_fr.html">Syst&egrave;me</a>
  4546. </div>
  4547. <div id="content">
  4548. <h1>Configuration r&eacute;seau</h1>
  4549. <p>Cette page permet de configurer les param&egrave;tres r&eacute;seau.</p>
  4550. <p class="error">
  4551. <b>Attention:</b> Un param&eacute;trage incorrect peut entrainer une perte de la connexion r&eacute;seau.</p>
  4552. <form method="post" action="http:network.cgi" name="config" style="height: 294px" onsubmit="return verify_input();">
  4553. <fieldset>
  4554. <div><label>Adresse MAC</label>
  4555. <input type="text" name="mac" style="width: 140px" disabled="disabled"/></div>
  4556. <div><label>Nom</label>
  4557. <input type="text" name="host" onKeyPress="return scanTouche(event)" maxlength="50" style="width: 331px" /></div>
  4558. <div>&nbsp;</div>
  4559. <div>
  4560. <input type="checkbox" class="sm" name="dhcp" value="1" onclick="configIPBoxes()" />&nbsp;DHCP</div>
  4561. <div><label for="id_ip" id="id_label_ip">Adresse IP</label>
  4562. <td><input type="text" name="ip" id="id_ip" onKeyPress="return scanTouche_adresseIP(event)" /></td></div>
  4563. <div><label for="id_sub" id="id_label_sub">Masque</label>
  4564. <td><input type="text" name="sub" id="id_sub" onKeyPress="return scanTouche_adresseIP(event)"/></td></div>
  4565. <div><label for="id_gw" id="id_label_gw">Passerelle</label>
  4566. <td><input type="text" name="gw" id="id_gw" onKeyPress="return scanTouche_adresseIP(event)"/></td></div>
  4567. <div><label for="id_dns1" id="id_label_dns1">Adresse DNS</label>
  4568. <td><input type="text" name="dns1" id="id_dns1" onKeyPress="return scanTouche_adresseIP(event)"/></td></div>
  4569. <div></div>
  4570. <div><input type="submit" class="sm" value="Ok et Red&eacute;marrage" /></div>
  4571. </fieldset>
  4572. </form>
  4573. </div>
  4574. <script language="javascript">
  4575. document.getElementById('hello').innerHTML = "Param&egrave;tres Carillon";
  4576. makeRequest("netdata.cgi", parse_vars);
  4577. </script>
  4578. <div class="spacer">&nbsp;</div>
  4579. </div></div></div></div></div>
  4580. </body>
  4581. </html>
  4582. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  4583. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  4584. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4585. <head>
  4586. <title>BODET Speaker</title>
  4587. <link href="melodys.css" rel="stylesheet" type="text/css" />
  4588. <script type="text/javascript" src="request.js"></script>
  4589. <script type="text/javascript" src="network.js"></script>
  4590. </head>
  4591. <body>
  4592. <div id="shadow-one" style="height: 572px"><div id="shadow-two"><div id="shadow-three"><div id="shadow-four">
  4593. <div id="page">
  4594. <div style="padding:0 0 5px 0px"><img src="bodet.png" width=22% alt="Bodet" /></div>
  4595. <div id="title"><div class="right">Embedded Web Server</div><span id="hello">&nbsp;</span></div>
  4596. <div id="menu">
  4597. <a href="index_gb.html">Home</a>
  4598. <a href="network_gb.html">Network Configuration</a>
  4599. <a href="param_gb.html">Parameters</a>
  4600. <a href="time_gb.html">Time Configuration</a>
  4601. <a href="SNMP_gb.html">Alarm Configuration</a>
  4602. <a href="system_gb.html">System</a>
  4603. </div>
  4604. <div id="content">
  4605. <h1>Network Configuration</h1>
  4606. <p>This page allows the network configuration.</p>
  4607. <p class="error">
  4608. <b>CAUTION:</b> Incorrect settings may cause the loss of the network connection.</p>
  4609. <p>Enter the new settings below:</p>
  4610. <form method="post" action="http:network.cgi" name="config" style="height: 294px" onsubmit="return verify_input();">
  4611. <fieldset>
  4612. <div><label>MAC Address</label>
  4613. <input type="text" name="mac" style="width: 140px" disabled="disabled"/></div>
  4614. <div><label>Name</label>
  4615. <input type="text" name="host" onKeyPress="return scanTouche(event)" maxlength="50" style="width: 331px" /></div>
  4616. <div>&nbsp;</div>
  4617. <div>
  4618. <input type="checkbox" class="sm" name="dhcp" value="1" onclick="configIPBoxes()" /> Enable DHCP</div>
  4619. <div><label for="id_ip" id="id_label_ip">IP Address</label>
  4620. <td><input type="text" name="ip" id="id_ip" onKeyPress="return scanTouche_adresseIP(event)" /></td></div>
  4621. <div><label for="id_sub" id="id_label_sub">Subnet Mask</label>
  4622. <td><input type="text" name="sub" id="id_sub" onKeyPress="return scanTouche_adresseIP(event)"/></td></div>
  4623. <div><label for="id_gw" id="id_label_gw">Gateway</label>
  4624. <td><input type="text" name="gw" id="id_gw" onKeyPress="return scanTouche_adresseIP(event)"/></td></div>
  4625. <div><label for="id_dns1" id="id_label_dns1">DNS Address</label>
  4626. <td><input type="text" name="dns1" id="id_dns1" onKeyPress="return scanTouche_adresseIP(event)"/></td></div>
  4627. <div></div>
  4628. <div><input type="submit" class="sm" value="Save and Reboot" /></div>
  4629. </fieldset>
  4630. </form>
  4631. </div>
  4632. <script language="javascript">
  4633. document.getElementById('hello').innerHTML = "Speaker Setting";
  4634. makeRequest("netdata.cgi", parse_vars);
  4635. </script>
  4636. <div class="spacer">&nbsp;</div>
  4637. </div></div></div></div></div>
  4638. </body>
  4639. </html>
  4640. 6IV P
  4641. >AA>
  4642. bQIF
  4643. "AI6
  4644. 'EE9
  4645. >II2
  4646. 6II6
  4647. &II>
  4648. >A]YN
  4649. >AA"
  4650. >AQr
  4651. @@?
  4652. >AA>
  4653. >Aa~
  4654. FII1
  4655. ?@@?
  4656. ?@8@?
  4657. qIEC
  4658. @@@@
  4659. TTx
  4660. 8TTX
  4661. 8DD8
  4662. HTT$
  4663. <@@|
  4664. <@0@<
  4665. dTTL
  4666. >UA"
  4667. HUV%
  4668. EfUL
  4669. HUV%
  4670. 8DD|TT
  4671. EfUL
  4672. <$~$
  4673. H~Ib
  4674. >A]UUA>
  4675. KuA>
  4676. DD_DD
  4677. |UVD
  4678. |VUD
  4679. ~UUF
  4680. |UTE
  4681. EAA>
  4682. 8EF8
  4683. 8FE8
  4684. :EE:
  4685. :EF9
  4686. 8ED9
  4687. >IE>
  4688. <AB<
  4689. <BA<
  4690. :AA:
  4691. <A@=
  4692. TUz
  4693. TVy
  4694. "UUz
  4695. "UVy
  4696. UTy
  4697. TUx
  4698. TT|TT
  4699. 8UVX
  4700. 8VUX
  4701. :UUZ
  4702. 8UTY
  4703. 0KJ=
  4704. 0JL0
  4705. 0LJ0
  4706. 4JJ4
  4707. 4JL2
  4708. 0JH2
  4709. @8TLD:
  4710. 8BDx
  4711. 8DBx
  4712. :AAz
  4713. 8B@z
  4714. <BAA>
  4715. III6
  4716. |BAB|
  4717. IIIA
  4718. cQIEc
  4719. >III>
  4720. cIIIc
  4721. >AAA>
  4722. cUIAc
  4723. 8DI0H
  4724. =@@
  4725. 8DH0H
  4726. 0JM1
  4727. (TTD
  4728. 8TTT8
  4729. <@@
  4730. 0@0
  4731. 8DDD8
  4732. HTTT$
  4733. 8DD<
  4734. <@@@<
  4735. 8D0D8
  4736. <A@
  4737. <A@A<
  4738. 8DED8
  4739. <@A@<
  4740. 8D1D8
  4741. (TUD
  4742. 6IU"P
  4743. >QIE>
  4744. rIIIF
  4745. !AIM3
  4746. 'EEE9
  4747. <JII1
  4748. 6III6
  4749. FII)
  4750. >A]YN
  4751. III6
  4752. >AAA"
  4753. AAA>
  4754. IIIA
  4755. >AAQs
  4756. @A?
  4757. @@@@
  4758. >AAA>
  4759. >AQ!^
  4760. &III2
  4761. ?@@@?
  4762. ?@8@?
  4763. aYIMC
  4764. @@@@@
  4765. TTx@
  4766. (DD8
  4767. 8DDD(
  4768. 8DD(
  4769. 8TTT
  4770. 8DDD8
  4771. HTTT$
  4772. <@@ |
  4773. <@0@<
  4774. DdTLD
  4775. <&#&<
  4776. 8D@CYT$
  4777. 8EDE8
  4778. 8DA@A<
  4779. 8D@BA:
  4780. DDDD8
  4781. DDED8
  4782. 8D@@<@<@<
  4783. 8D@@=@=@=
  4784. 8D@@<DDDD8
  4785. 8D@@<DDED8
  4786. @@~DDDD8
  4787. @@~DDED8
  4788. DDDH
  4789. DEDH
  4790. 8D@@HTUT8
  4791. 0H@CA@?
  4792. <DDD8
  4793. 8D@A<
  4794. 8DDD8
  4795. 8D@@XT$
  4796. 4JJJ
  4797. <BBB<
  4798. >@@@>
  4799. IHDR
  4800. PLTE
  4801. dca(#
  4802. /.&zzz
  4803. -,&NH
  4804. 76085
  4805. tRNS
  4806. pHYs
  4807. IDATx
  4808. b{lfcF
  4809. xm$9
  4810. <O4bt
  4811. :gC=
  4812. @mxW
  4813. ] aj
  4814. Vn!Q
  4815. YQU,
  4816. WNih
  4817. \@NY0^
  4818. NACZ
  4819. w[Kc&
  4820. u>zve|B
  4821. @b4)
  4822. id"3
  4823. ZL'W_m
  4824. _9h
  4825. 2>C,?
  4826. IEND
  4827. data_received = 0;
  4828. // header.js
  4829. sfHover2 = function() {
  4830. var navthree = document.getElementById("lnv");
  4831. if (navthree){
  4832. var sfEls2 = document.getElementById("lnv").getElementsByTagName("LI");
  4833. for (var i=0; i<sfEls2.length; i++) {
  4834. sfEls2[i].onmouseover=function() {
  4835. this.className+=" sfhover";
  4836. hideselects('hidden');
  4837. sfEls2[i].onmouseout=function() {
  4838. this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
  4839. hideselects('visible');
  4840. if (window.attachEvent) {
  4841. window.attachEvent("onload", sfHover2);
  4842. function hideselects(state) {
  4843. for(i=0;i<document.forms.length;i++){ // if there are forms on the page
  4844. frm = document.forms[i];
  4845. var inputs = frm.getElementsByTagName("SELECT");
  4846. for (j=0;j<inputs.length;j++){
  4847. inputs[j].style.visibility = state;
  4848. // request.js
  4849. function makeRequest(url, parseFuncCb) {
  4850. var http_request = false;
  4851. url = url + "?sid=" + Math.random();
  4852. data_received = 1;
  4853. if (window.XMLHttpRequest) { // Mozilla, Safari,...
  4854. http_request = new XMLHttpRequest();
  4855. if (http_request.overrideMimeType) {
  4856. http_request.overrideMimeType('text/xml');
  4857. }
  4858. else if (window.ActiveXObject) { // IE
  4859. try {
  4860. http_request = new ActiveXObject("Msxml2.XMLHTTP");
  4861. catch (e) {
  4862. try {
  4863. http_request = new ActiveXObject("Microsoft.XMLHTTP");
  4864. catch (e) {}
  4865. }
  4866. if (!http_request) {
  4867. alert('Giving up :( Cannot create an XMLHTTP instance');
  4868. return false;
  4869. }
  4870. http_request.onreadystatechange = function() { alertContents(http_request, parseFuncCb); };
  4871. http_request.open('GET', url, true);
  4872. http_request.send(null);
  4873. function alertContents(http_request, parseFuncCb) {
  4874. if (http_request.readyState == 4) {
  4875. if (http_request.status == 200) {
  4876. parseFuncCb(http_request.responseText);
  4877. data_received = 0;
  4878. }
  4879. else {
  4880. data_received = 0;
  4881. }
  4882. }
  4883. function ValidateIPaddress(ipaddress)
  4884. var ipformat = /^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/;
  4885. if(ipaddress.match(ipformat))
  4886. return (true)
  4887. alert("You have entered an invalid IP address!")
  4888. return (false)
  4889. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//FR"
  4890. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  4891. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
  4892. <head>
  4893. <title>BODET Carillon</title>
  4894. <link href="melodys.css" rel="stylesheet" type="text/css" />
  4895. <script type="text/javascript" src="request.js"></script>
  4896. <script type="text/javascript">
  4897. // page js
  4898. function parse_vars(data) {
  4899. var parsed = data.split( "\n" );
  4900. if (parsed[0] == 0)
  4901. document.getElementsByName("dispTest")[0].checked = true ;
  4902. else
  4903. document.getElementsByName("dispTest")[1].checked = true ;
  4904. if (parsed[1] == 0)
  4905. document.getElementsByName("flashTest")[0].checked = true ;
  4906. else
  4907. document.getElementsByName("flashTest")[1].checked = true ;
  4908. if (parsed[2] == 0)
  4909. document.getElementsByName("audioTest")[0].checked = true ;
  4910. else
  4911. document.getElementsByName("audioTest")[1].checked = true ;
  4912. </script>
  4913. <style type="text/css">
  4914. .auto-style1 {
  4915. margin-left: 4px;
  4916. </style>
  4917. </head>
  4918. <body>
  4919. <div id="shadow-one"><div id="shadow-two"><div id="shadow-three"><div id="shadow-four">
  4920. <div id="page">
  4921. <div style="padding:0 0 5px 0px"><img src="bodet.png" width=22% alt="Bodet"/></div>
  4922. <div id="title"><div class="right">Serveur Web</div><span id="hello">&nbsp;</span></div>
  4923. <div id="menu" style="height: 578px">
  4924. <a href="index.html">Home</a>
  4925. </div>
  4926. <div id="content">
  4927. <h1>Tech</h1>
  4928. <p>&nbsp;</p>
  4929. <form method="post" action="http:disptest.cgi" name="config">
  4930. <fieldset>
  4931. <div><label>Display Test</label>
  4932. <input type="radio" name="dispTest" value="0" style="width: 27px">no</input>
  4933. <input type="radio" name="dispTest" value="1" style="width: 27px">yes</input>
  4934. </div>
  4935. <br/>
  4936. <div><label>Flash Test</label>
  4937. <input type="radio" name="flashTest" value="0" style="width: 27px">no</input>
  4938. <input type="radio" name="flashTest" value="1" style="width: 27px">yes</input>
  4939. </div>
  4940. <br/>
  4941. <div><label>Audio Test</label>
  4942. <input type="radio" name="audioTest" value="0" style="width: 27px">no</input>
  4943. <input type="radio" name="audioTest" value="1" style="width: 27px">yes</input>
  4944. </div>
  4945. <br/>
  4946. <div><input type="submit" class="sm" value="Ok" style="width: 125px"/></div>
  4947. </fieldset>
  4948. </form>
  4949. </div>
  4950. <script language="javascript">
  4951. document.getElementById('hello').innerHTML = "Debug Carillon";
  4952. makeRequest("disptest.cgi", parse_vars);
  4953. </script>
  4954. <div class="spacer" style="height: 212px">&nbsp;</div>
  4955. </div></div></div></div></div>
  4956. </body>
  4957. </html>
  4958. // page js
  4959. function parse_vars(data) {
  4960. var parsed = data.split( "\n" );
  4961. // MAC
  4962. document.getElementsByName("mac")[0].value= parsed[0] ;
  4963. // host
  4964. document.getElementsByName("host")[0].value= parsed[1] ;
  4965. // coche DHCP
  4966. if (parsed[2] == 0)
  4967. document.getElementsByName("dhcp")[0].checked = false ;
  4968. else document.getElementsByName("dhcp")[0].checked = true ;
  4969. // @IP
  4970. document.getElementsByName("ip")[0].value= parsed[3] ;
  4971. // Mask
  4972. document.getElementsByName("sub")[0].value= parsed[4] ;
  4973. // Passerelle
  4974. document.getElementsByName("gw")[0].value= parsed[5] ;
  4975. // DNS1
  4976. document.getElementsByName("dns1")[0].value= parsed[6] ;
  4977. configIPBoxes();
  4978. function codeTouche(evenement)
  4979. for (prop in evenement)
  4980. if(prop == 'which') return(evenement.which);
  4981. return(evenement.keyCode);
  4982. function scanTouche(evenement)
  4983. var reCarValides = /[\w-.\x00\x08]/;
  4984. var car = String.fromCharCode(codeTouche(evenement));
  4985. return (reCarValides.test(car) && !reCarInvalides.test(car)) ;
  4986. function scanTouche_adresseIP(evenement)
  4987. var reCarValides = /[\d.\x00\x08]/;
  4988. var car = String.fromCharCode(codeTouche(evenement));
  4989. return reCarValides.test(car);
  4990. function configIPBoxes() {
  4991. e = document.forms.config;
  4992. st = e.dhcp.checked;
  4993. e.ip.disabled = st;
  4994. e.gw.disabled = st;
  4995. e.sub.disabled = st;
  4996. e.dns1.disabled = st;
  4997. if (st){
  4998. document.getElementById('id_label_ip').style.color='darkgray';
  4999. document.getElementById('id_label_gw').style.color='darkgray';
  5000. document.getElementById('id_label_sub').style.color='darkgray';
  5001. document.getElementById('id_label_dns1').style.color='darkgray';
  5002. else {
  5003. document.getElementById('id_label_ip').style.color='black';
  5004. document.getElementById('id_label_gw').style.color='black';
  5005. document.getElementById('id_label_sub').style.color='black';
  5006. document.getElementById('id_label_dns1').style.color='black';
  5007. function verify_input(){
  5008. var carValides = /^[\w-.]*$/;
  5009. e = document.forms.config;
  5010. if (carValides.test(e.host.value))
  5011. if (e.ip.value != "" && !ValidateIPaddress(e.ip.value))
  5012. return false;
  5013. if (e.sub.value != "" && !ValidateIPaddress(e.sub.value))
  5014. return false;
  5015. if (e.gw.value != "" && !ValidateIPaddress(e.gw.value))
  5016. return false;
  5017. if (e.dns1.value != "" && !ValidateIPaddress(e.dns1.value))
  5018. return false;
  5019. return true;
  5020. else
  5021. alert("wrong caracters, only 'A-Z, a-z, 0-9, ., -, _' accepted");
  5022. return false ;
  5023. // page js
  5024. function parse_vars(data) {
  5025. var parsed = data.split( "\n" );
  5026. // version
  5027. id_version.innerHTML = parsed[0] ;
  5028. // timestamp
  5029. id_timestamp.innerHTML = parsed[1] ;
  5030. // Datecode
  5031. id_datecode.innerHTML = parsed[2] ;
  5032. // Auth
  5033. if (parsed[3] == 0)
  5034. document.getElementsByName("auth")[0].checked = false ;
  5035. else document.getElementsByName("auth")[0].checked = true ;
  5036. // user
  5037. document.getElementsByName("user")[0].value= parsed[4] ;
  5038. // Password
  5039. document.getElementsByName("password")[0].value= parsed[5] ;
  5040. // Confirm
  5041. document.getElementsByName("password2")[0].value= parsed[6] ;
  5042. //alert("Fin") ;
  5043. function tech(evenement)
  5044. window.location.href="tech.html" ;
  5045. function select(element){
  5046. e = document.forms.security;
  5047. e.element.select()
  5048. function verify_input(){
  5049. var carValides = /^[\w-.]*$/;
  5050. e = document.forms.security;
  5051. if (carValides.test(e.user.value) && carValides.test(e.password.value) && carValides.test(e.password2.value))
  5052. return verify_auth();
  5053. else
  5054. alert("wrong caracters, only 'A-Z, a-z, 0-9, ., -, _' accepted");
  5055. return false ;
  5056. function verify_auth(){
  5057. e = document.forms.security;
  5058. if (e.auth.checked){
  5059. if (e.user.value=='')
  5060. alert("Please enter your username in the first field")
  5061. e.user.focus()
  5062. return false ;
  5063. return verify(e.password,e.password2) ;
  5064. } else {
  5065. if (e.password.value!=''){
  5066. return verify(e.password,e.password2) ;
  5067. } else return true ;
  5068. function verify(element1, element2)
  5069. var passed=false
  5070. if (element1.value=='')
  5071. {
  5072. alert("Please enter your password in the second field")
  5073. element1.focus()
  5074. }
  5075. else if (element2.value=='')
  5076. {
  5077. alert("Please confirm your password in the third field!")
  5078. element2.focus()
  5079. }
  5080. else if (element1.value!=element2.value)
  5081. {
  5082. alert("The two passwords do not match")
  5083. element1.select()
  5084. }
  5085. else
  5086. passed=true
  5087. return passed
  5088. function codeTouche(evenement)
  5089. for (prop in evenement)
  5090. if(prop == 'which') return(evenement.which);
  5091. return(evenement.keyCode);
  5092. function scanTouche(evenement)
  5093. var reCarValides = /[\w-.\x00\x08]/;
  5094. var car = String.fromCharCode(codeTouche(evenement));
  5095. return (reCarValides.test(car) && !reCarInvalides.test(car)) ;
  5096. :U(F;F;2K
  5097. K;:;-98X}
  5098. G5(<-i
  5099. t:;-a
  5100. wE/o
  5101. Ithlfkookc@73o
  5102. ,,++,&"
  5103. 6"G0s
  5104. ||||}}|ww
  5105. 6IV P
  5106. >AAA>
  5107. BaQIF
  5108. !AEK1
  5109. 'EEE9
  5110. <JII0
  5111. 6III6
  5112. >A]YN
  5113. III6
  5114. >AAA"
  5115. AAA>
  5116. IIIA
  5117. >AAQs
  5118. @A?
  5119. @@@@
  5120. >AAA>
  5121. >AQ!^
  5122. &III2
  5123. ?@@@?
  5124. ?@8@?
  5125. aYIMC
  5126. @@@@@
  5127. TTx@
  5128. (DD8
  5129. 8DDD(
  5130. 8DD(
  5131. 8TTT
  5132. 8DDD8
  5133. HTTT$
  5134. <@@ |
  5135. <@0@<
  5136. DdTLD
  5137. >UUA"
  5138. HUVU$
  5139. DeVMD
  5140. HUVU$
  5141. 8DD|TT
  5142. DeVMD
  5143. <$~$$
  5144. H~IAf
  5145. >A]UUA>
  5146. KuA>
  5147. DD_DD
  5148. 0HM@
  5149. |UVD
  5150. |VUD
  5151. ~UUF
  5152. |UTE
  5153. EAA>
  5154. 8DEF8
  5155. 8FED8
  5156. :EEE:
  5157. 8FEF9
  5158. 8EDE8
  5159. @>QIE>
  5160. <AB@<
  5161. <@BA<
  5162. :AAA:
  5163. <A@A<
  5164. TUz@
  5165. TVy@
  5166. "UUyB
  5167. VUzA
  5168. UTy@
  5169. TUx@
  5170. TT|TT
  5171. 8TUVX
  5172. 8TVUX
  5173. :UUUZ
  5174. 8UTUX
  5175. 0KJ=
  5176. 8DEF8
  5177. 8FED8
  5178. :EEE:
  5179. 8FEF9
  5180. 8EDE8
  5181. @8TLD:
  5182. <AB |
  5183. <@B!|
  5184. :AA!z
  5185. <A@!|
  5186. >AA>
  5187. bQIF
  5188. "II6
  5189. 'EE9
  5190. >II2
  5191. 6II6
  5192. &II>
  5193. CC+`7
  5194. .`hF
  5195. .` F
  5196. kh(h
  5197. !Fh`
  5198. !F8F/
  5199. .`!F
  5200. .` F
  5201. p`hj
  5202. F`h#
  5203. H@hpG
  5204. 2h{
  5205. xpyx8p
  5206. x`1`^
  5207. `OpGp
  5208. hFhKh
  5209. U`Ch
  5210. SNTP_setup error_code : %d
  5211. SNTP_oneshot error_code : %d
  5212. erreur SNTP : %d
  5213. erreur IGMP : %d
  5214. sendto error
  5215. Select failed: errno %d
  5216. rcv NTP: %s
  5217. error 0x%X
  5218. addr.sin_port 0x%X
  5219. probleme validation header
  5220. (p`"h
  5221. xcx"x
  5222. ycy"y
  5223. |c|"|
  5224. p x
  5225. q y
  5226. `p1h
  5227. 0y~M
  5228. `M
  5229. AL h
  5230. 0y9M
  5231. h0h
  5232. ip_multi1
  5233. ip_multi2
  5234. zone
  5235. repet_in
  5236. repet_out
  5237. repet_mls
  5238. ip_rep
  5239. %d.%d.%d.%d
  5240. light
  5241. dispAff
  5242. amPm
  5243. ecoNor
  5244. Ecop_ON
  5245. Ecop_OFF
  5246. speedAff
  5247. volume
  5248. boost
  5249. lightFlash
  5250. Ok !
  5251. Ok !
  5252. Ok !
  5253. Ok !
  5254. Ok !
  5255. Ok !
  5256. Ok !
  5257. Ok !
  5258. Ok !
  5259. Ok !
  5260. Ok !
  5261. Ok !
  5262. Ok !
  5263. Ok !
  5264. Ok !
  5265. Ok !
  5266. Fin du mode console.............
  5267. F0h@
  5268. !(qD
  5269. nja@
  5270. f`kO
  5271. F`h%h
  5272. 2h1F(F
  5273. !!qp
  5274. !ibi@
  5275. !!q y
  5276. x}&
  5277. !F(F
  5278. qp
  5279. !F(F
  5280. &e8E
  5281. !F(F
  5282. 1F F
  5283. `@E8
  5284. |0k-
  5285. nAF@
  5286. BF1FHF
  5287. AF0F
  5288. cpk.!
  5289. pqkHF
  5290. . p8
  5291. tk!x/)
  5292. F8xJF\(
  5293. qk@F
  5294. HTTP server session
  5295. .cgi
  5296. Unauthorized
  5297. Unauthorized!
  5298. Forbidden
  5299. Forbidden!
  5300. Uri too long
  5301. Requested URI too long!
  5302. Not Found
  5303. Requested URL not found!
  5304. Method Not Allowed
  5305. !FhF
  5306. F_charge_A_vars --> Delete File %s --
  5307. F_charge_A_vars --> DEJA EN COURS !!! ON SORT
  5308. LOC @mac ...: %02X:%02X:%02X:%02X:%02X:%02X
  5309. F_charge_A_vars --> Le fichier %s n'existe pas, on le creer
  5310. Open file ERROR (CHARGEMENT_MISE_A_JOUR_FTP)
  5311. F_charge_A_vars --> ERREUR CHK (calcule = %04x/ fichier re
  5312. u = %04x)
  5313. F_charge_A_vars --> Delete File %s
  5314. F_charge_A_vars --> CHK OK %04x
  5315. F_charge_A_vars --> Rename File %s to %s
  5316. F_charge_A_vars --> S_param.UCH_version_param NON CONFORME (%d/%d)
  5317. ERROR S_param.TCH_serial_number !!! %d
  5318. ERROR S_param.TCH_hostname !!! %d
  5319. F_charge_A_vars --> Erreur conversion S_param.S_config_net.ip : %s %d.%d.%d.%d
  5320. F_charge_A_vars --> Erreur conversion S_param.S_config_net.netmask : %s %d.%d.%d.%d
  5321. F_charge_A_vars --> Erreur conversion S_param.S_config_net.gw : %s %d.%d.%d.%d
  5322. F_charge_A_vars --> Erreur conversion S_param.S_primary_DNS : %s %d.%d.%d.%d
  5323. F_charge_A_vars --> Erreur conversion S_param.S_secondary_DNS : %s %d.%d.%d.%d
  5324. ERROR S_param.TCH_snmp_manager1 !!! %d
  5325. ERROR S_param.TCH_snmp_manager2 !!! %d
  5326. ERROR S_param.TCH_snmp_manager3 !!! %d
  5327. ERROR S_param.TCH_snmp_community !!! %d
  5328. F_charge_A_vars --> Erreur conversion S_param.S_multicast : %s %d.%d.%d.%d
  5329. F_charge_A_vars --> Erreur conversion S_param.S_ip_repeater : %s %d.%d.%d.%d
  5330. ERROR S_param.TCH_password !!! %d
  5331. F_charge_A_vars --> Erreur conversion S_param.S_multicast2 : %s %d.%d.%d.%d
  5332. ERROR S_param.TCH_ntp_server[%d] !!! %d
  5333. ERROR S_param.TCH_message_micro !!! %d
  5334. F_charge_A_vars --> Reboot demand
  5335. F_charge_A_vars --> Demande Sauvegarde suite chargement FTP
  5336. >[O[>
  5337. >kOk>
  5338. &)y)&
  5339. `````
  5340. 08>80
  5341. 6IV P
  5342. >QIE>
  5343. rIIIF
  5344. !AIM3
  5345. 'EEE9
  5346. <JII1
  5347. 6III6
  5348. FII)
  5349. >A]YN
  5350. III6
  5351. >AAA"
  5352. AAA>
  5353. IIIA
  5354. >AAQs
  5355. @A?
  5356. @@@@
  5357. >AAA>
  5358. >AQ!^
  5359. &III2
  5360. ?@@@?
  5361. ?@8@?
  5362. aYIMC
  5363. @@@@@
  5364. TTx@
  5365. (DD8
  5366. 8DDD(
  5367. 8DD(
  5368. 8TTT
  5369. 8DDD8
  5370. HTTT$
  5371. <@@ |
  5372. <@0@<
  5373. DdTLD
  5374. <&#&<
  5375. 8B@"x
  5376. 8TTUY
  5377. !UUyA
  5378. !TTxA
  5379. !UTx@
  5380. TUy@
  5381. 9UUUY
  5382. 8UTUX
  5383. 9UTTX
  5384. |TUE
  5385. TT|TT
  5386. 2III2
  5387. 0JHJ0
  5388. 2JHH0
  5389. :AA!z
  5390. :B@ x
  5391. 8EDE8
  5392. <A@A<
  5393. H~ICf
  5394. TTyA
  5395. 0HHJ2
  5396. 8@@"z
  5397. &))/(
  5398. &)))&
  5399. 0HM@
  5400. 8DD8D
  5401. |**>
  5402. cUIAc
  5403. 8DD<
  5404. 0JMM0
  5405. 0HxH0
  5406. bZF=
  5407. >III
  5408. *****
  5409. DD_DD
  5410. @QJD@
  5411. @DJQ@
  5412. <<<<
  5413. "hFm
  5414. pqpy
  5415. 0r0z
  5416. )!@F
  5417. kxBF
  5418. )!HCd
  5419. TZn%d
  5420. TZh%d
  5421. TZm%d
  5422. tc%d
  5423. EM%d
  5424. ER%d
  5425. EJF%d
  5426. EJ%d
  5427. HM%d
  5428. HR%d
  5429. HJF%d
  5430. HJ%d
  5431. ntp_mode
  5432. UCH_mode_synchro_ntp : %d
  5433. pool
  5434. ntp%d
  5435. ntp1
  5436. ntpi
  5437. %d.%d.%d.%d
  5438. `fTI
  5439. qxhF
  5440. )xhF
  5441. 1xhF
  5442. (hF
  5443. 9F1F
  5444. (hF
  5445. 9F1F
  5446. (hF
  5447. 9F1F
  5448. i}hF
  5449. AF0F
  5450. "1F@F
  5451. xu)h
  5452. "1FPF
  5453. h hD
  5454. jkl1vi5erjnfh
  5455. agent
  5456. version
  5457. community
  5458. trap
  5459. manag_1
  5460. manag_2
  5461. manag_3
  5462. alarm_1
  5463. alarm_2
  5464. alarm_3
  5465. alarm_4
  5466. alarm_5
  5467. alarm_6
  5468. alarm_7
  5469. alarm_8
  5470. alarm_9
  5471. alarm_10
  5472. alarm_11
  5473. !!q(h
  5474. iF0D
  5475. iF0F
  5476. zqHC
  5477. (ui}
  5478. %sNnO
  5479. XL y
  5480. d %F
  5481. xbx!x
  5482. UTC date: %02d/%02d/%02d
  5483. Synchro Failed
  5484. Synchro Success : %d.%d.%d.%d
  5485. %d.%d.%d.%d
  5486. h`1FHF
  5487. 1Xp!jO
  5488. F`h%h
  5489. 1F(F
  5490. 1ac l(
  5491. T\Ck
  5492. @,CTT
  5493. 8Fyd{I
  5494. )F F
  5495. 61hI
  5496. sh"F)F8F
  5497. ]I8F
  5498. !9c8k
  5499. LF x(
  5500. FTP server session
  5501. FTPd_process
  5502. G<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//FR"
  5503. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  5504. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
  5505. <head>
  5506. <title>BODET Carillon</title>
  5507. <link href="melodys.css" rel="stylesheet" type="text/css" />
  5508. <script type="text/javascript">
  5509. sfHover2 = function() {
  5510. var navthree = document.getElementById("lnv");
  5511. if (navthree){
  5512. var sfEls2 = document.getElementById("lnv").getElementsByTagName("LI");
  5513. for (var i=0; i<sfEls2.length; i++) {
  5514. sfEls2[i].onmouseover=function() {
  5515. this.className+=" sfhover";
  5516. hideselects('hidden');
  5517. sfEls2[i].onmouseout=function() {
  5518. this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
  5519. hideselects('visible');
  5520. if (window.attachEvent) {
  5521. window.attachEvent("onload", sfHover2);
  5522. function detect_langue() {
  5523. if (navigator.browserLanguage)
  5524. var language = navigator.browserLanguage;
  5525. else
  5526. var language = navigator.language;
  5527. if (language.indexOf('fr') > -1) {
  5528. //alert("Fr") ;
  5529. document.location.href = 'index_fr.html';
  5530. else {
  5531. //alert("Gb") ;
  5532. document.location.href = 'index_gb.html';
  5533. </script>
  5534. </head>
  5535. </html>
  5536. <script language="javascript">
  5537. detect_langue();
  5538. </script>
  5539. IHDR
  5540. PLTE8|
  5541. \tRNS
  5542. pHYs
  5543. IDAT
  5544. vm^r
  5545. JAR4
  5546. Y%y#Cqi&
  5547. rL%D
  5548. IEND
  5549. #Ch[
  5550. "$&(*,.07773
  5551. @h `
  5552. X20F
  5553. iF0F
  5554. *F!F
  5555. CF:F)F
  5556. $&(.1
  5557. Jh"`
  5558. +F"F
  5559. +F"F
  5560. #pG-
  5561. CF*FA
  5562. ! `1`
  5563. >xiF8
  5564. *F!F
  5565. CF2F!F
  5566. IHDR
  5567. PLTE
  5568. tRNS
  5569. pHYs
  5570. IDATx
  5571. e@|Y9y
  5572. @`PpHhXx
  5573. oLl\|BbRrJjZ:CFfVvNn^~AaQqIiY9CEeUuMm]}CcSsKk[;CGgWwOo_
  5574. IEND
  5575. +-/>25>99
  5576. a)}
  5577. `b+F
  5578. CFJFQF
  5579. 1F8F
  5580. BF(F
  5581. BFPF
  5582. *`>
  5583. invalid id
  5584. IHDR
  5585. PLTE
  5586. caEqpUchv
  5587. tRNS
  5588. pHYs
  5589. IDAT
  5590. I 7=+6!
  5591. pLLM
  5592. YYX33r
  5593. n9Yi~
  5594. IEND
  5595. text/plain
  5596. text/html
  5597. text/css
  5598. image/gif
  5599. image/jpeg
  5600. image/png
  5601. image/svg+xml
  5602. application/javascript
  5603. application/xml
  5604. application/zip
  5605. application/pdf
  5606. application/octet-stream
  5607. Continue
  5608. Switching Protocols
  5609. Created
  5610. Accepted
  5611. Non-Authoritative Information
  5612. No Content
  5613. Reset Content
  5614. Partial Content
  5615. Multiple Choices
  5616. Moved Permanently
  5617. Found
  5618. See Other
  5619. Not Modified
  5620. Use Proxy
  5621. Temporary Redirect
  5622. Bad Request
  5623. Unauthorized
  5624. Payment Required
  5625. Forbidden
  5626. Not Found
  5627. Method Not Allowed
  5628. Not Acceptable
  5629. Proxy Authentication Required
  5630. Request Time-out
  5631. Conflict
  5632. Gone
  5633. Length Required
  5634. Precondition Failed
  5635. Request Entity Too Large
  5636. Request-URI Too Large
  5637. Unsupported Media Type
  5638. Requested range not satisfiable
  5639. Expectation Failed
  5640. Upgrade Required
  5641. Request Header Fields Too Large
  5642. Internal Server Error
  5643. Not Implemented
  5644. Bad Gateway
  5645. Service Unavailable
  5646. Gateway Time-out
  5647. HTTP Version not supported
  5648. html
  5649. shtm
  5650. shtml
  5651. F_reponse_recensement_repeteur_TCP : ERREUR !!!!! Cr
  5652. ation du socket serveur impossible
  5653. F_reponse_recensement_repeteur_TCP : ERREUR !!!! SETSOCKOPT du socket serveur impossible (OPT_RBSIZE)
  5654. F_reponse_recensement_repeteur_TCP : ERREUR !!!!! --> BIND du socket serveur impossible, error 0x%lx
  5655. F_reponse_recensement_repeteur_TCP : Error--connect() failed with error code %lx
  5656. F_reponse_recensement_repeteur_TCP : send failed with count %ld :
  5657. error getting socket error code: %lx
  5658. F_reponse_recensement_repeteur_TCP : ERRROR Read IP (%d.%d.%d.%d)
  5659. F_gestion_repeteur_UDP : !!!!! ERREUR !!!!! --> SETSOCKOPT UDP du socket serveur impossible (RTCS_SO_IP_TX_TTL) - 0x%04x
  5660. F_repondre_IP --> send failed with with count %ld :
  5661. Failed to set SO_BROADCAST On. Error %d
  5662. Failed to config SO_RCVTIMEO. Error %d
  5663. F_gestion_repeteur_UDP : !!!!! ERREUR !!!!! --> Cration du socket serveur impossible
  5664. F_gestion_repeteur_UDP : !!!!! ERREUR !!!!! --> BIND du socket serveur impossible
  5665. 0F9FO
  5666. "AFHF
  5667. "AF0F
  5668. h7JA
  5669. %dd %02dh %02dm
  5670. aSe2=9Z8gOi37*
  5671. auth
  5672. user
  5673. user %s
  5674. password
  5675. pass %s
  5676. Assertion "%s" failed at line %d in %s
  5677. igmp_lookup_group: first group must be allsystems
  5678. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\core\ipv4\igmp.c
  5679. igmp_lookup_group: all except first group must not be allsystems
  5680. igmp_joingroup: attempt to join non-multicast address
  5681. igmp_joingroup: attempt to join allsystems address
  5682. igmp_joingroup_netif: attempt to join non-multicast address
  5683. igmp_joingroup_netif: attempt to join allsystems address
  5684. igmp_joingroup_netif: attempt to join on non-IGMP netif
  5685. igmp_leavegroup: attempt to leave non-multicast address
  5686. igmp_leavegroup: attempt to leave allsystems address
  5687. igmp_leavegroup_netif: attempt to leave non-multicast address
  5688. igmp_leavegroup_netif: attempt to leave allsystems address
  5689. igmp_leavegroup_netif: attempt to leave on non-IGMP netif
  5690. igmp_send: check that first pbuf can hold struct igmp_msg
  5691. Assertion "%s" failed at line %d in %s
  5692. check that first pbuf can hold struct tcp_hdr
  5693. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\core\tcp_out.c
  5694. tcp_write: pbufs on queue => at least one queue non-empty
  5695. tcp_write: no pbufs on queue => both queues empty
  5696. tcp_write: arg == NULL (programmer violates API)
  5697. tcp_write: ROM pbufs cannot be oversized
  5698. unsent_oversize mismatch (pcb->unsent is NULL)
  5699. tcp_write: check that first pbuf can hold the complete seglen
  5700. tcp_write: cannot concatenate when pcb->unsent is empty
  5701. tcp_write: extension of reference requires reference
  5702. tcp_enqueue_flags: need either TCP_SYN or TCP_FIN in flags (programmer violates API)
  5703. tcp_enqueue_flags: check that first pbuf can hold optlen
  5704. tcp_enqueue_flags: invalid segment length
  5705. tcp_enqueue_flags: invalid queue length
  5706. don't call tcp_output for listen-pcbs
  5707. Assertion "%s" failed at line %d in %s
  5708. dhcp_inc_pcb_refcount(): memory leak
  5709. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\core\ipv4\dhcp.c
  5710. dhcp_pcb_refcount(): refcount error
  5711. netif already has a struct dhcp set
  5712. dhcp_option: dhcp->options_out_len + 2 + option_len <= DHCP_OPTIONS_LEN
  5713. dhcp_option_byte: dhcp->options_out_len < DHCP_OPTIONS_LEN
  5714. dhcp_option_short: dhcp->options_out_len + 2 <= DHCP_OPTIONS_LEN
  5715. dhcp_option_long: dhcp->options_out_len + 4 <= DHCP_OPTIONS_LEN
  5716. dhcp_create_msg: dhcp->p_out == NULL
  5717. dhcp_create_msg: dhcp->msg_out == NULL
  5718. dhcp_create_msg: check that first pbuf can hold struct dhcp_msg
  5719. dhcp_delete_msg: dhcp->p_out != NULL
  5720. dhcp_delete_msg: dhcp->msg_out != NULL
  5721. dhcp_option_trailer: dhcp != NULL
  5722. dhcp_option_trailer: dhcp->msg_out != NULL
  5723. dhcp_option_trailer: dhcp->options_out_len < DHCP_OPTIONS_LEN
  5724. h(h-
  5725. h3#A
  5726. N2"
  5727. <p4sC
  5728. !1siF
  5729. 0`iF
  5730. p`iF
  5731. 0aiF
  5732. xkx*x
  5733. yky*y
  5734. zkz*z
  5735. |k|*|
  5736. host
  5737. dhcp
  5738. dns1
  5739. %02X:%02X:%02X:%02X:%02X:%02X
  5740. %d.%d.%d.%d
  5741. Assertion "%s" failed at line %d in %s
  5742. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\core\tcp.c
  5743. don't call tcp_abort/tcp_abandon for listen-pcbs
  5744. tcp_bind: can only bind in state CLOSED
  5745. tcp_listen: pcb already connected
  5746. don't call tcp_recved for listen-pcbs
  5747. tcp_recved: len wrapped rcv_wnd
  5748. tcp_connect: can only connect from state CLOSED
  5749. tcp_slowtmr: active pcb->state != CLOSED
  5750. tcp_slowtmr: active pcb->state != LISTEN
  5751. tcp_slowtmr: active pcb->state != TIME-WAIT
  5752. tcp_slowtmr: middle tcp != tcp_active_pcbs
  5753. tcp_slowtmr: first pcb == tcp_active_pcbs
  5754. tcp_slowtmr: TIME-WAIT pcb->state == TIME-WAIT
  5755. tcp_slowtmr: middle tcp != tcp_tw_pcbs
  5756. tcp_slowtmr: first pcb == tcp_tw_pcbs
  5757. invalid socket state for recv callback
  5758. invalid socket state for sent callback
  5759. invalid socket state for err callback
  5760. Choix des tests a effectuer :
  5761. A : Test Automatique (B->M)
  5762. B : Test Led
  5763. C : Test Memoire Flash
  5764. D : Lecture de l'adresse MAC
  5765. E : Lecture versions
  5766. F : Test du reseau
  5767. G : Test Bouton
  5768. H : Test TCXO
  5769. I : Test Audio
  5770. J : Test afficheur
  5771. K : Test flash
  5772. L : Load Melodie par defaut
  5773. M : RESET CARTE
  5774. N : Test SD CARD
  5775. O : Test Codec Audio
  5776. P : Flash SPI Erase
  5777. 2!p!
  5778. Assertion "%s" failed at line %d in %s
  5779. recv_udp must have a pcb argument
  5780. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\api\api_msg.c
  5781. recv_tcp must have a pcb argument
  5782. netconn_alloc: undefined netconn_type
  5783. PCB must be deallocated outside this function
  5784. recvmbox must be deallocated before calling this function
  5785. acceptmbox must be deallocated before calling this function
  5786. conn must be in state NETCONN_CLOSE
  5787. Closing a listen pcb may not fail!
  5788. (conn->current_msg != NULL) || conn->in_non_blocking_connect
  5789. conn->write_offset < conn->current_msg->msg.w.len
  5790. lwip_netconn_do_writemore: invalid length!
  5791. Assertion "%s" failed at line %d in %s
  5792. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\core\pbuf.c
  5793. pbuf_alloc: pbuf p->payload properly aligned
  5794. check p->payload + p->len does not overflow pbuf
  5795. PBUF_POOL_BUFSIZE must be bigger than MEM_ALIGNMENT
  5796. pbuf_alloc: pbuf q->payload properly aligned
  5797. pbuf_alloc: pbuf->payload properly aligned
  5798. (h != NULL) && (t != NULL) (programmer violates API)
  5799. p->tot_len == p->len (of last pbuf in chain)
  5800. p->tot_len == p->len + q->tot_len
  5801. pbuf_copy: target not big enough to hold source
  5802. pbuf_copy() does not allow packet queues!
  5803. pbuf_copy_partial: invalid dataptr
  5804. pIyAp%jE`aj
  5805. F(y.hO
  5806. 0jx`qj
  5807. !y*F9p`yiFxp
  5808. !(q(
  5809. F!y%h
  5810. F(y.h
  5811. iF F
  5812. bh!h
  5813. 2M3N
  5814. (hF
  5815. (hF
  5816. (hF
  5817. (hF
  5818. (hF
  5819. dispTest
  5820. flashTest
  5821. audioTest
  5822. Assertion "%s" failed at line %d in %s
  5823. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\core\tcp_in.c
  5824. tcp_input: active pcb->state != CLOSED
  5825. tcp_input: active pcb->state != TIME-WAIT
  5826. tcp_input: active pcb->state != LISTEN
  5827. tcp_input: pcb->next != pcb (before cache)
  5828. tcp_input: pcb->next != pcb (after cache)
  5829. tcp_input: TIME-WAIT pcb->state == TIME-WAIT
  5830. pcb->snd_queuelen >= pbuf_clen(next->p)
  5831. tcp_receive: segment not trimmed correctly to rcv_wnd
  5832. tcp_receive: segment not trimmed correctly to ooseq queue
  5833. tcp_receive: ooseq tcplen > rcv_wnd
  5834. 200 Port command okay
  5835. 220 RTCS FTP Server Ready
  5836. 221 Goodbye!
  5837. 230 Logged in
  5838. 426 write error
  5839. 426 device full
  5840. 500 Unknown command
  5841. 501 Bad port syntax
  5842. 502 Command not implemented
  5843. 226 File size is %d.
  5844. 530 Not logged in.
  5845. 221 Goodbye.
  5846. 501 Option not supported.
  5847. 215 MQX
  5848. 521 Error changing directory.
  5849. 521 Error removing directory.
  5850. 521 Error deleting file.
  5851. 200 OK.
  5852. 200 Type ASCII.
  5853. 200 Type Binary.
  5854. 501 Unknown type.
  5855. 150 Opening data connection.
  5856. 226 Transfer complete.
  5857. 425 Data connection refused.
  5858. 9F@F
  5859. pGA
  5860. pG|
  5861. #(J0F
  5862. iF0F
  5863. *F!F
  5864. CF:F)F
  5865. Assertion "%s" failed at line %d in %s
  5866. state == ETHARP_STATE_PENDING || state >= ETHARP_STATE_STABLE
  5867. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\core\ipv4\etharp.c
  5868. arp_table[i].state == ETHARP_STATE_EMPTY
  5869. netif->hwaddr_len == ETH_HWADDR_LEN
  5870. eth_ret != NULL && ip_ret != NULL
  5871. arp_table[arp_idx].state >= ETHARP_STATE_STABLE
  5872. arp_table[i].state == PENDING or STABLE
  5873. check that first pbuf can hold struct etharp_hdr
  5874. netif->hwaddr_len must be the same as ETH_HWADDR_LEN for etharp!
  5875. HTTPSRV/0.1 - NXP Embedded Web Server v0.1
  5876. WWW-Authenticate: Basic realm="%s"
  5877. Assertion "%s" failed at line %d in %s
  5878. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\apps\snmp\snmp_core.c
  5879. target->len + oid_len <= LWIP_SNMP_OBJ_ID_LEN
  5880. offset + oid_len <= LWIP_SNMP_OBJ_ID_LEN
  5881. 'oid1' param must not be NULL or 'oid1_len' param be 0!
  5882. 'oid2' param must not be NULL or 'oid2_len' param be 0!
  5883. MIB array not initialized correctly
  5884. MIB array not initialized correctly - base OID is NULL
  5885. 'oid2_len' param must be greater than 0!
  5886. F_traitement_trame_explorer_BODET --> ERROR _mutex_lock
  5887. mel 2 set-info%c%c%c%03d.%03d.%03d.%03d%c%03d.%03d.%03d.%03d%c%02X:%02X:%02X:%02X:%02X:%02X%c%03d.%03d.%03d.%03d%c%03d.%03d.%03d.%03d%c%s%c%s%c%s%c%c%c%c%c%c%c%c%c%c%c%08X%c%08X%c%c%c%c%c%c%c%c
  5888. mel 2 set-ip%c%02X:%02X:%02X:%02X:%02X:%02X%cwrong_pass%c
  5889. mel 2 set-ip%c%02X:%02X:%02X:%02X:%02X:%02X%cack%c
  5890. mel 2 set-lumi-aff%cwrong_pass%c
  5891. mel 2 set-aff-heure%cwrong_pass%c
  5892. Assertion "%s" failed at line %d in %s
  5893. freeing conn without freeing pcb
  5894. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\api\api_lib.c
  5895. conn->acceptmbox shouldn't exist
  5896. netconn_disconnect: invalid conn
  5897. netconn_write: invalid conn->type
  5898. netconn_join_leave_group: invalid conn
  5899. netconn_gethostbyname: invalid name
  5900. netconn_gethostbyname: invalid addr
  5901. FDM
  5902. d"d
  5903. %02d/%02d/%02d
  5904. %02d:%02d:%02d
  5905. %2d:%02d:%02d
  5906. Yes, strat %d, Server %s
  5907. pGp
  5908. &hQH
  5909. !(,8:<>@BDFHJLNPR
  5910. %(F2
  5911. x!pAxap
  5912. Q{!`
  5913. "?1 F
  5914. J|Bp
  5915. pLiD`
  5916. li#Fy
  5917. B F1F
  5918. /bodet.png
  5919. /crit.png
  5920. /favicon.ico
  5921. /index.html
  5922. /index_fr.html
  5923. /index_gb.html
  5924. /info.png
  5925. /melodys.css
  5926. /network.js
  5927. /network_fr.html
  5928. /network_gb.html
  5929. /param.js
  5930. /param_fr.html
  5931. /param_gb.html
  5932. /request.js
  5933. /SNMP.js
  5934. /SNMP_fr.html
  5935. /SNMP_gb.html
  5936. /system.js
  5937. /system_fr.html
  5938. /system_gb.html
  5939. /tech.html
  5940. /time.js
  5941. /time_fr.html
  5942. /time_gb.html
  5943. /warn.png
  5944. Assertion "%s" failed at line %d in %s
  5945. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\core\mem.c
  5946. plug_holes: mem->next <= MEM_SIZE_ALIGNED
  5947. mem_free: sanity check alignment
  5948. mem_malloc: allocated memory not above ram_end.
  5949. mem_malloc: allocated memory properly aligned.
  5950. mem_malloc: sanity check alignment
  5951. Failed to get IP address info. Error 0x%x
  5952. Configured IPV4 multicast address '%s' is not a valid multicast address. This will probably not work.
  5953. Failed to set IP_MULTICAST_IF. Error %d
  5954. Failed to set IP_ADD_MEMBERSHIP. Error %d
  5955. SNTP_oneshot_multicast timeout : %d
  5956. Failed to create socket. Error %d
  5957. Failed to bind socket. Error %d
  5958. Assertion "%s" failed at line %d in %s
  5959. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\api\sockets.c
  5960. newconn->callback == event_callback
  5961. invalid copylen, len would underflow
  5962. lwip_sendmsg: invalid msghdr iov
  5963. lwip_sendmsg: invalid msghdr name
  5964. lwip_sendto: size must fit in u16_t
  5965. 350 File exists, ready for destination name.
  5966. F_gestion_trame_PROTOCOLE : !!!!! ERREUR !!!!! --> Cr
  5967. ation du socket serveur impossible
  5968. F_gestion_trame_PROTOCOLE : !!!!! ERREUR !!!!! --> BIND du socket serveur impossible
  5969. F_gestion_trame_PROTOCOLE : !!!!! ERREUR !!!!! --> Abonnement IGMP BAD sur %d.%d.%d.%d
  5970. error getting socket error code: %lx
  5971. Assertion "%s" failed at line %d in %s
  5972. icmp_input: moving r->payload to icmp header failed
  5973. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\core\ipv4\icmp.c
  5974. icmp_input: restoring original p->payload failed
  5975. check that first pbuf can hold icmp message
  5976. F_gestion_trame_TCP : ERREUR !!!!! Cr
  5977. ation du socket serveur impossible
  5978. %s: Failed to config SO_RCVTIMEO. Error %d
  5979. F_gestion_trame_TCP : ERREUR !!!!! --> BIND du socket serveur impossible, error 0x%lx
  5980. F_gestion_trame_TCP : ERREUR !!!!! --> LISTEN du socket serveur impossible, error 0x%lx
  5981. F_traitement_trame_PROTOCOLE : REPOUT
  5982. F_traitement_trame_vie_repeteur --> REP STREAM !!! ERREUR !!! Trame non transmise
  5983. F_traitement_trame_vie_repeteur --> tx ok
  5984. F_traitement_trame_PROTOCOLE : REPACK
  5985. F_traitement_trame_PROTOCOLE : REPIN
  5986. F_traitement_trame_vie_repeteur --> rx ok
  5987. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><title>Settings response</title></head>
  5988. <body>
  5989. <html><head></head></html><script language="javascript">
  5990. alert("No parameters received.");
  5991. history.go(-1);</script>
  5992. <br><br>
  5993. </body></html>
  5994. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><title>Settings response</title></head>
  5995. <body>
  5996. <html><head></head></html><script language="javascript">
  5997. alert("No parameters received.");
  5998. history.go(-1);</script>
  5999. <br><br>
  6000. </body></html>
  6001. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><title>Settings response</title></head>
  6002. <body>
  6003. <html><head></head></html><script language="javascript">
  6004. alert("No parameters received.");
  6005. history.go(-1);</script>
  6006. <br><br>
  6007. </body></html>
  6008. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><title>Settings response</title></head>
  6009. <body>
  6010. <html><head></head></html><script language="javascript">
  6011. alert("No parameters received.");
  6012. history.go(-1);</script>
  6013. <br><br>
  6014. </body></html>
  6015. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><title>Settings response</title></head>
  6016. <body>
  6017. <html><head></head></html><script language="javascript">
  6018. alert("No parameters received.");
  6019. history.go(-1);</script>
  6020. <br><br>
  6021. </body></html>
  6022. Assertion "%s" failed at line %d in %s
  6023. raw pcb recv callback altered pbuf payload pointer without eating packet
  6024. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\core\raw.c
  6025. Can't restore header we just removed!
  6026. `pA
  6027. ```i
  6028. SERVEUR_TCP_task
  6029. & !
  6030. Assertion "%s" failed at line %d in %s
  6031. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\LWIP\App\A_trame_UDP_TCP.c
  6032. EINPROGRESS in connect() - selecting
  6033. Error in delayed connection() %d - %s
  6034. Timeout in select() - Cancelling!
  6035. Assertion "%s" failed at line %d in %s
  6036. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\core\ipv4\ip4_frag.c
  6037. no previous fragment, this must be the first fragment!
  6038. validate_datagram:next_pbuf!=NULL
  6039. Assertion "%s" failed at line %d in %s
  6040. memp_malloc: memp properly aligned
  6041. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\core\memp.c
  6042. Assertion "%s" failed at line %d in %s
  6043. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\apps\snmp\snmp_msg.c
  6044. community string must not be NULL
  6045. SNMP_MAX_VALUE_SIZE is configured too low
  6046. h F-I@
  6047. !#%')+-/13579;S=?ACEGIPP
  6048. Hh `
  6049. Assertion "%s" failed at line %d in %s
  6050. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\core\ipv4\autoip.c
  6051. netif already has a struct autoip set
  6052. netif is not up, old style port?
  6053. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><title>Settings response</title></head>
  6054. <body>
  6055. <html><head></head></html><script language="javascript">
  6056. history.go(-1);</script>
  6057. <br><br>
  6058. </body></html>
  6059. abor
  6060. acct
  6061. help
  6062. cdup
  6063. feat
  6064. dele
  6065. list
  6066. rnfr
  6067. rnto
  6068. retr
  6069. size
  6070. nlst
  6071. xcwd
  6072. xmkd
  6073. xpwd
  6074. xrmd
  6075. stor
  6076. noop
  6077. opts
  6078. pass
  6079. pasv
  6080. port
  6081. quit
  6082. site
  6083. syst
  6084. type
  6085. user
  6086. Erreur ouverture fichier 'TEST_BODET.mp3'
  6087. Ouverture fichier 'TEST_BODET.mp3' OK!
  6088. Taille du fichier audio : %d octets
  6089. Erreur ! le fichier ne doit pas d
  6090. passer 1572864 octets
  6091. Erreur lecture fichier 'TEST_BODET.mp3'
  6092. ==========================================
  6093. = (C) COPYRIGHT 2019 BODET SA =
  6094. = Application METIS (BODET SA) =
  6095. ==========================================
  6096. Free Heap Size 5 is %d bytes
  6097. Assertion "%s" failed at line %d in %s
  6098. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\api\tcpip.c
  6099. failed to create tcpip_thread mbox
  6100. failed to create lock_tcpip_core
  6101. home
  6102. network
  6103. netdata
  6104. param
  6105. save
  6106. save_rep
  6107. display
  6108. audio
  6109. flash
  6110. timedata
  6111. time
  6112. synchro
  6113. snmpdata
  6114. snmp
  6115. snmptest
  6116. system
  6117. reboot
  6118. factory_config
  6119. security
  6120. disptest
  6121. etat
  6122. admin
  6123. auth
  6124. Assertion "%s" failed at line %d in %s
  6125. sys_timeout: timeout != NULL, pool MEMP_SYS_TIMEOUT is empty
  6126. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\core\timeouts.c
  6127. Assertion "%s" failed at line %d in %s
  6128. netif->hwaddr_len must be 6 for ethernet_output!
  6129. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\netif\ethernet.c
  6130. d!hF
  6131. 2(8`
  6132. Assertion "%s" failed at line %d in %s
  6133. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\core\ipv4\ip4.c
  6134. check that first pbuf can hold struct ip_hdr
  6135. Assertion "%s" failed at line %d in %s
  6136. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\core\udp.c
  6137. check that first pbuf can hold struct udp_hdr
  6138. Assertion "%s" failed at line %d in %s
  6139. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\api\netbuf.c
  6140. check that first pbuf can hold size
  6141. Error, getpeername() failed with error code %lx
  6142. SNMP : tentative de connexion HTTP -> %d.%d.%d.%d
  6143. SNMP : connexion HTTP -> %d.%d.%d.%d
  6144. Access to server from %d.%d.%d.%d
  6145. Harmonys Trio
  6146. C_A_vars.tri
  6147. /CONFIG/TEMP\C_A_vars.tri
  6148. F_charge_A_vars START
  6149. Lecture @mac ... ERROR
  6150. C_A_vars.sav
  6151. /CONFIG/TEMP\C_A_vars.sav
  6152. ERROR rename file %s
  6153. Assertion "%s" failed at line %d in %s
  6154. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\apps\snmp\snmp_mib2_system.c
  6155. Assertion "%s" failed at line %d in %s
  6156. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\apps\snmp\snmp_mib2_tcp.c
  6157. Power Recovery
  6158. Synchro failure
  6159. Bodet Time
  6160. Harmonys Trio
  6161. F_controle_CHK_protocole ERROR 1 UI_i_lg_trame = %d
  6162. F_controle_CHK_protocole ERROR 2 UI_i_lg_trame = %d %d
  6163. F_controle_CHK_protocole ERROR 3 %d %d
  6164. Assertion "%s" failed at line %d in %s
  6165. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\core\ipv4\ip4_addr.c
  6166. Assertion "%s" failed at line %d in %s
  6167. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\apps\snmp\snmp_raw.c
  6168. Assertion "%s" failed at line %d in %s
  6169. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\apps\ping\ping.c
  6170. Assertion "%s" failed at line %d in %s
  6171. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\core\dns.c
  6172. Assertion "%s" failed at line %d in %s
  6173. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\Middlewares\Third_Party\LwIP\src\core\netif.c
  6174. F_traitement_OPCODE --> ERROR _mutex_lock
  6175. !!! ERROR !!! UI_nb_data_stream > TAILLE_BUFFER_MP3 (%d)
  6176. F_traitement_trame_PROTOCOLE --> ERROR _mutex_lock
  6177. morisation de la trame pendant 20 secondes ...
  6178. -------------no streaming------------
  6179. h J@
  6180. !#%')+-444/14444
  6181. |------------------------------------|
  6182. |---- ----|
  6183. |---- CONSOLE DE TEST PRODUCTION ----|
  6184. Assertion "%s" failed at line %d in %s
  6185. d:\JenkinsJobs\workspace\Indus\Harmonys\Harmonys_trio\Metis_appli\LWIP\Target\ethernetif.c
  6186. F_gestion_trame_vie_repeteur --> REP STREAM !!! ERREUR !!! Trame non transmise
  6187. F_gestion_trame_vie_repeteur --> tx ok
  6188. the message is not from the specified server, try again
  6189. the reply is an old duplicate, try again
  6190. %s: error lwip_setsockopt FTPD_CFG_SEND_TIMEOUT !!!
  6191. %s: error lwip_setsockopt SO_RCVTIMEO !!!
  6192. h HB
  6193. F_gestion_reprise_cde_auto_sur_streaming_micro --> Rejouage trame memo apres micro
  6194. error Mutex : Mutex_trame_traitement_OPCODE
  6195. error Mutex : Mutex_trame_PROTOCOLE
  6196. error Mutex : Mutex_trame_explorer_BODET
  6197. error Mutex : Mutex_traitement_message
  6198. Synchro Success, server %d/5 : %d.%d.%d.%d
  6199. UTC heure: %02d:%02d:%02d.%03d
  6200. n###odefghijklm#######0123456789:;<=>?@ABCDEFGHI######JKLMNOPQRSTUVWXYZ[\]^_`abc
  6201. Erreur detection type d'afficheur
  6202. Appuyer sur "Entree" pour terminer le test
  6203. 0123456789abcdefghijklmnopqrstuvwxyz
  6204. -----Verifier les LEDs RJ45-----
  6205. Appuyer sur 'Entree' pour continuer
  6206. 550 Rename from file not specified.
  6207. 550 unable to rename "%s" to %s.
  6208. <HTML><HEAD><TITLE>%s</TITLE></HEAD>
  6209. <BODY><H1>%s</H1>
  6210. </BODY></HTML>
  6211. ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/
  6212. !!!!! ERROR !!!!!!!!!!! TEST ERROR !!!!!!!! ERROR !!!!!!!
  6213. !!! ERREUR !!! format @ MAC %s 0x%X:0x%X:0x%X:0x%X:0x%X:0x%X
  6214. Stack Overflow in task : %s
  6215. malloc failed!!!
  6216. defaultTask
  6217. Fin telech melodie test de lg = %d (%02x %02x %02x %02x)
  6218. Create a FAT file system (format) on the logical drive
  6219. 550 Requested action not taken. File system not mounted.
  6220. L h@
  6221. Tick 10s
  6222. UI_compteur_1s=%d TUI32_cpt_expire_tache[UI32_cpt]=%d
  6223. Lecture @mac... OK : %02X:%02X:%02X:%02X:%02X:%02X
  6224. F_VS1011E_gestion_set_volume --> ERROR _mutex_lock
  6225. 227 Entering Passive Mode (%ld,%ld,%ld,%ld,%hd,%hd).
  6226. 550 Requested action not taken. Memory unavailable.
  6227. F_VS1011E_force_set_volume --> ERROR _mutex_lock
  6228. 550 Requested action not taken. File unavailable.
  6229. F_fifo_enqueue_padding_0 --> ERROR _mutex_lock
  6230. F_VS1011E_read_status --> ERROR _mutex_lock
  6231. F_gestion_lecture_mp3 --> ERROR _mutex_lock
  6232. error FTPd_open_passive_data_connection : %d
  6233. 226 File sent OK - %ld bytes in %ld.%03ld sec
  6234. 200 RTCS FTPd: No site specific information.
  6235. 214- The following commands are recognized:
  6236. 214 Direct comments to Embedded Access Inc.
  6237. BODET F_vs1011_send_and_receive --> NOK
  6238. F_VS1011E_spi_init --> ERROR _mutex_lock
  6239. F_VS1011E_SineTest --> ERROR _mutex_lock
  6240. F_start_lecture_mp3 --> ERROR _mutex_lock
  6241. HTTPSRV/0.1 - NXP Embedded Web Server v0.1
  6242. F_fifo_enqueue_n --> ERROR _mutex_lock
  6243. F_fifo_dequeue_n --> ERROR _mutex_lock
  6244. Web activity timeout for %d.%d.%d.%d
  6245. Authentication failure to Web Server
  6246. 331 User name okay, need password.
  6247. JanFebMarAprMayJunJulAugSepOctNovDec
  6248. POST on static content is not allowed!
  6249. error malloc scrollingParam[z]._cBuf
  6250. Taille Fichier MP3: %d octets
  6251. F_decodage_adresse_reseau ERROR
  6252. Waiting for Network connection...
  6253. 257 "%s" is the current directory
  6254. F_fifo_init : ERROR Mutex_FIFO
  6255. lwIP
  6256. FQDN-unk
  6257. $ F2
  6258. V1.1A21 11/12/23
  6259. public
  6260. private
  6261. EthIf
  6262. LinkThr
  6263. Melodys
  6264. 54321
  6265. pC,B`4