ChangeLog 151 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701
  1. 2007-11-05 Marek Habersack <[email protected]>
  2. * ClientScriptManager.cs: EventStateFieldName is a constant now.
  3. * Page.cs: use full control ids when processing post data. Fixes
  4. bug #317615
  5. 2007-11-03 Marek Habersack <[email protected]>
  6. * Control.cs: need to append a "/" to TemplateSourceDirectory
  7. before calling VirtualPathUtility.Combine, in order to get the
  8. correct physical path to the requested file. Combine looks for the
  9. last occurrence of "/" to determine where the relative paths
  10. should be joined.
  11. * MinimizableAttributeTypeConverter.cs: don't throw on null value,
  12. call the base class method in that case.
  13. * SimpleWebHandlerParser.cs: don't NRE on a null assembly passed
  14. to AddAssembly.
  15. AddAssemblyByName must check the return value of
  16. Assembly.LoadWithPartialName, as the method doesn't throw on
  17. missing assembly, it returns null instead.
  18. * ClientScriptManager.cs: eventValidationArray is serialized in an
  19. optimized fashion, so that its serialized form occupies only as
  20. many slots as were actually used. It may result in that an array
  21. of 0 entries will be serialized and then
  22. restored. EnsureEventValidationArray takes that into consideration
  23. now.
  24. 2007-11-01 Marek Habersack <[email protected]>
  25. * Page.cs, ObjectStateFormatter.cs: use the new
  26. MachineKeySectionUtils class wherever necessary.
  27. 2007-10-29 Marek Habersack <[email protected]>
  28. * TemplateParser.cs: add the file pointed to by the Src or
  29. CodeFile attributes to the list of page cache dependencies.
  30. * PageParser.cs, UserControlParser.cs: Add the MasterPage file to
  31. the list of page cache dependencies.
  32. * MasterPageParser.cs: add the source pointed to by VirtualPath to
  33. the list of cache dependencies.
  34. 2007-10-23 Marek Habersack <[email protected]>
  35. * ClientScriptManager.cs: added two constants to define start/end
  36. script block comments rendering. 1.1 uses HTML comments, while 2.0
  37. uses a CDATA block.
  38. * Page.cs: render script blocks with start/end comments taken from
  39. the ClientScriptManager constants above.
  40. 2007-10-17 Marek Habersack <[email protected]>
  41. * TemplateParser.cs: removed code that ignored the Async and
  42. AsyncTimeout attributes.
  43. * PageParser.cs: handle the Async and AsyncTimeout attributes
  44. here. Fixes bug #325450
  45. * Control.cs: properly configure control visibility in
  46. PreRenderRecursiveInternal. The check must be made by looking at
  47. the Visible value, not at the flags directly. Fixes bug #325303
  48. 2007-10-03 Marek Habersack <[email protected]>
  49. * Page.cs: complete implementation of ValidationGroups. Fixes bug
  50. #330423. Patch from Juraj Skripsky <[email protected]>, thanks!
  51. 2007-10-02 Marek Habersack <[email protected]>
  52. * SimpleWebHandlerParser.cs: fix the way types are loaded from
  53. top-level assemblies.
  54. 2007-10-01 Marek Habersack <[email protected]>
  55. * Page.cs: do not set IsPostBack to true if we're in transfer from
  56. another page. Fixes bug #329341
  57. 2007-09-18 Marek Habersack <[email protected]>
  58. * TemplateParser.cs: VaryByControl OutputCache attribute is
  59. allowed for both controls and pages in 2.0.
  60. 2007-09-11 Marek Habersack <[email protected]>
  61. * WebServiceParser.cs: inputFile is a virtual path to the service,
  62. not a physical one in GetCompiledType.
  63. 2007-09-05 Marek Habersack <[email protected]>
  64. * RootBuilder.cs: make Foundry settable, but protect the backing
  65. field from being set to null.
  66. 2007-09-04 Marek Habersack <[email protected]>
  67. * TemplateParser.cs: don't optimize for case when 'name' is a full
  68. assembly name in AddAssemblyByName. Assembly.Load triggers the
  69. AssemblyResolve event on the current AppDomain if an assembly
  70. isn't found and we use this mechanism to map names like "App_Code"
  71. or "App_GlobalResources" to the real names of those dynamic
  72. assemblies.
  73. 2007-09-02 Igor Zelmanovich <[email protected]>
  74. * Page.jvm.cs: implemented IsMultiForm property to take
  75. the value from configuration.
  76. 2007-08-30 Igor Zelmanovich <[email protected]>
  77. * Page.cs: fixed MaintainScrollPositionOnPostBack feature.
  78. 2007-08-29 Marek Habersack <[email protected]>
  79. * TemplateBuilder.cs: check for and store for later use the
  80. TemplateContainerAttribute. Added a nullable property
  81. TemplateInstance to return the value of the attribute.
  82. 2007-08-29 Vladimir Krasnov <[email protected]>
  83. * Control.cs: optimized performance in InitControlsCache()
  84. 2007-08-28 Marek Habersack <[email protected]>
  85. * Page.cs: The following property values are returned from cached
  86. fields instead of looking them up on Context: Application,
  87. Response, Request, Cache (as determined by the tests).
  88. Added a backing field for the Session property.
  89. Session doesn't throw an exception when Context is null - it
  90. silently ignores it and throws a session not available exception.
  91. _context is never used directly, the Context property is used
  92. instead. Fixes bug #82606
  93. 2007-08-23 Juraj Skripsky <[email protected]>
  94. * Control.cs (InitControlsCache): Make the hash table case insensitive to
  95. make FindControl compatible with MS.net again. Add LAMESPEC note.
  96. 2007-08-23 Marek Habersack <[email protected]>
  97. * SimpleWebHandlerParser.cs: use
  98. HttpApplication.BinDirectoryAssemblies in AddAssembliesInBin and
  99. LoadAssemblyFromBin.
  100. Restore the old logic in GetTypeFromBin, also use
  101. HttpApplication.BinDirectoryAssemblies there.
  102. * TemplateParser.cs: use HttpApplication.BinDirectories to
  103. interate over the list of bin dirs.
  104. Use HttpApplication.BinDirectoryAssemblies in AddAssembliesInBin.
  105. 2007-08-23 Igor Zelmanovich <[email protected]>
  106. * ClientScriptManager.cs: encode values of hidden fields.
  107. 2007-08-21 Marek Habersack <[email protected]>
  108. * SimpleWebHandlerParser.cs: use HttpApplication.PrivateBinPath
  109. enumerator when loading or adding assemblies from binary
  110. directories. Remove unused PrivateBinPath property.
  111. * ControlBuilder.cs: remove unused PrivateBinPath property.
  112. * TemplateParser.cs: use HttpApplication.PrivateBinPath when
  113. adding assemblis and loading types.
  114. 2007-08-21 Igor Zelmanovich <[email protected]>
  115. * ClientScriptManager.cs: fixed onsubmit script for MultiForm environment
  116. 2007-08-20 Marek Habersack <[email protected]>
  117. * MasterPage.cs: use the place holder IDs collection instead of
  118. the placholder collection to see if we have the place holder in
  119. the master page. Fixes bug #82485.
  120. * MasterPageParser.cs: store the content place holder ids in the
  121. internal cache to gain access to them when needed.
  122. 2007-08-19 Vladimir Krasnov <[email protected]>
  123. * MasterPageParser.jvm.cs: optimized GetDirectory call
  124. * PageTheme.cs: optimized string formatting in CreateSkinKey
  125. 2007-08-19 Vladimir Krasnov <[email protected]>
  126. * Page.cs: ResetEventValidationState call moved back to
  127. InternalProcessRequest
  128. 2007-08-19 Marek Habersack <[email protected]>
  129. * Page.cs: make sure not to ever pass a null value as the value
  130. of the postCollection parameter to control's LoadPostData. The
  131. ProcessPostData's 'data' parameter is no longer passed to
  132. LoadPostData, instead we pass _requestValueCollection or an empty
  133. collection if it is null. The controls should always get all the
  134. request data, no matter if the 'data' parameter is null or
  135. not. Possible fix for bug #82477.
  136. 2007-08-18 Gert Driesen <[email protected]>
  137. * MasterPage.cs: Include relative URL of MasterPage in exception
  138. message.
  139. 2007-08-18 Marek Habersack <[email protected]>
  140. * MasterPage.cs: if a ContentPlaceHolder ID is not found in the
  141. associated MasterPage, throw an exception. This is compatible with
  142. what MS.NET does. Fixes bug #82447.
  143. 2007-08-15 Igor Zelmanovich <[email protected]>
  144. * Page.cs: fixed:
  145. - avoid NullRefferenceException from Title property
  146. when Page does not have <head runat="server>,
  147. - scriptManager.ResetEventValidationState () is called from Render.
  148. It allows multiply calling of RenderControl returns the same output.
  149. 2007-08-14 Vladimir Krasnov <[email protected]>
  150. * Control.cs: optimized GetDirectory call in ResolveClientUrl
  151. 2007-08-14 Vladimir Krasnov <[email protected]>
  152. * ClientScriptManager.cs: otimized string.Replace in GetScriptLiteral
  153. 2007-08-14 Marek Habersack <[email protected]>
  154. * Control.cs: include the actual exception when reporting control
  155. id clash.
  156. 2007-08-10 Gert Driesen <[email protected]>
  157. * PageParser.cs: Replace enableSessionState and readOnlySessionState
  158. bools with enum backed field. Move 1.0 profile code for checking value
  159. of EnableSessionState pages config to PagesConfigurationHandler.
  160. Fixes bug #82392 for 1.0 profile.
  161. 2007-08-09 Marek Habersack <[email protected]>
  162. * PageParser.cs: honor web.config enableSessionState
  163. ReadOnly setting instead of overwriting based on default value for
  164. page directive EnableSessionState. Patch from Joel Reed
  165. <[email protected]>, thanks! Fixes bug #82392
  166. 2007-08-09 Vladimir Krasnov <[email protected]>
  167. * CssStyleCollection.cs: used ListDictionary instead of
  168. HybridDictionary as underlaying data structure
  169. 2007-08-07 Vladimir Krasnov <[email protected]>
  170. * Control.cs: refactoring of LookForControlByName with caching
  171. 2007-08-06 Igor Zelmanovich <[email protected]>
  172. * DataSourceView.cs: fixed:
  173. view raises onchange event when datasource is chenged.
  174. 2007-08-06 Igor Zelmanovich <[email protected]>
  175. * Control.cs: fixed: control ID management.
  176. 2007-08-06 Igor Zelmanovich <[email protected]>
  177. * Control.cs: refactoring: code formatting only.
  178. 2007-08-05 Vladimir Krasnov <[email protected]>
  179. * HtmlTextWriter.cs: performance refactoring, optimized AddAttribute
  180. overloads, used StringComparer for tag, styles and attrs hashtables
  181. fixed AddAttribute, id attr should not be encoded by default
  182. 2007-07-31 Vladimir Krasnov <[email protected]>
  183. * Control.cs: fixed AppRelativeTemplateSourceDirectory that should
  184. depend on AppRelativeVirtualPath
  185. * Control.jvm.cs: fixed TemplateSourceDirectory that should depend on
  186. AppRelativeTemplateSourceDirectory
  187. 2007-07-30 Vladimir Krasnov <[email protected]>
  188. * Page.jvm.cs: fixed RenderResponse property, should not fail in no
  189. Contex available
  190. 2007-07-29 Igor Zelmanovich <[email protected]>
  191. * Page.cs: added TARGET_J2EE variable at client side.
  192. 2007-07-24 Igor Zelmanovich <[email protected]>
  193. * ClientScriptManager.cs:
  194. * Page.cs:
  195. * Page.jvm.cs:
  196. added new internal property IsMultiForm which returns false under
  197. !TARGET_J2EE (Portal). All client scripts are rendered
  198. according this property.
  199. 2007-07-24 Igor Zelmanovich <[email protected]>
  200. * ClientScriptManager.cs: fixed: GetCallbackEventReference method.
  201. 2007-07-23 Igor Zelmanovich <[email protected]>
  202. * Page.cs: refactoring: __doPostBack client script
  203. It is a part of adapting System.Web to work whith
  204. System.Web.Extensions (AJAX).
  205. 2007-07-23 Konstantin Triger <[email protected]>
  206. * Control.cs: calculate AppRelativeTemplateSourceDirectory from HttpContext
  207. when control is not in control collection.
  208. 2007-07-22 Konstantin Triger <[email protected]>
  209. * Control.cs,
  210. TemplateControl.cs: base AppRelativeTemplateSourceDirectory property
  211. on TemplateControl; implement special behavior of Control.TemplateControl for
  212. TemplateControl instances.
  213. 2007-07-18 Marek Habersack <[email protected]>
  214. * ControlBuilder.cs: on the 2.0 profile BindingContainerType
  215. returns the associated control's base type when parent builder is
  216. absent instead of typeof (Control). It returns typeof (Control) if
  217. the parent builder type is determined to be a
  218. NamingContainer. This makes the generated code match the MS.NET
  219. output. Fixes bug #82119.
  220. 2007-07-18 Igor Zelmanovich <[email protected]>
  221. * Page.cs:
  222. * ClientScriptManager.cs:
  223. scripts, registered using RegisterClientScriptInclude,
  224. RegisterClientScriptResource and RegisterClientScriptBlock appear on Page
  225. in order matches the order in which the scripts were registered.
  226. 2007-07-16 Igor Zelmanovich <[email protected]>
  227. * Control.cs: fixed EnsureID.
  228. ID is not assigned, if already was set.
  229. 2007-07-12 Vladimir Krasnov <[email protected]>
  230. * ClientScriptManager.cs: refactored event validation data structure
  231. * Page.cs: fixed InternalProcessRequest, event validation list should
  232. be cleared before render
  233. 2007-06-24 Vladimir Krasnov <[email protected]>
  234. * ObjectStateFormatter.cs: optimized loops in array formatters
  235. 2007-07-03 Marek Habersack <[email protected]>
  236. * SimpleWebHandlerParser.cs: improve directive
  237. pre-parsing. Directives can span multiple lines, they don't have
  238. to start at the beginning of the line and any content can follow
  239. them after the directive end. Also, do not trim the input since
  240. that might affect program content. Fixes bug #81993.
  241. 2007-07-02 Marek Habersack <[email protected]>
  242. * Control.cs: make sure TemplateSourceDirectory returns meaningful
  243. results in the 1.1 profile. Fixes bug #81950.
  244. 2007-06-24 Vladimir Krasnov <[email protected]>
  245. * ObjectStateFormatter.cs: WriterContext.RegisterCache, refactored out
  246. parameter
  247. 2007-06-20 Marek Habersack <[email protected]>
  248. * BasePartialCachingControl.cs: use HttpRuntime.InternalCache to
  249. keep the private entries.
  250. 2007-06-18 Igor Zelmanovich <[email protected]>
  251. * Control.cs: revised the changes from r79982.
  252. 2007-06-18 Igor Zelmanovich <[email protected]>
  253. * Control.cs: optimized flow in ResolveClientUrl.
  254. 2007-06-15 Gert Driesen <[email protected]>
  255. * ObjectStateFormatter.cs: Avoid NRE in Serialize. Fixes bug #81851.
  256. 2007-06-09 Marek Habersack <[email protected]>
  257. * TemplateControl.cs: make sure TemplateControl is set to the
  258. current control.
  259. * Control.cs: TemplateControl property goes up the parent chain if
  260. the property isn't defined in the current control.
  261. TemplateSourceDir finally implemented correctly.
  262. 2007-06-06 Marek Habersack <[email protected]>
  263. * Control.cs: more changes to the way TemplateSourceDirectory
  264. works in the 2.0 profile. Take into account situations when a
  265. control is placed in a UserControl (.ascx) and only then fall back
  266. to the parent for its TemplateSourceDirectory.
  267. 2007-06-05 Marek Habersack <[email protected]>
  268. * Control.cs: TemplateSourceDirectory uses TemplateControl to
  269. lookup the virtual source directory in the 2.0 instead of the
  270. Parent.
  271. ResolveClientUrl copes with empty TemplateSourceDirectory in the
  272. correct way now - the check is made after the basePath checks.
  273. The changes above make ResolveClientUrl work properly when called
  274. from within a control residing in a TemplateControl.
  275. 2007-05-30 Vladimir Krasnov <[email protected]>
  276. * HtmlTextWriter.cs: EncodeAttributeValue should call
  277. HtmlAttributeEncode as documented
  278. 2007-05-24 Marek Habersack <[email protected]>
  279. * PageParser.cs: added support for the PreviousPageType
  280. directive.
  281. 2007-05-23 Marek Habersack <[email protected]>
  282. * TemplateParser.cs: use VirtualPathUtility.Combine to properly
  283. create the custom control's virtual path.
  284. 2007-05-22 Marek Habersack <[email protected]>
  285. * TemplateBuilder.cs: in the absence of containerAttribute,
  286. default to two-way binding direction.
  287. 2007-05-21 Igor Zelmanovich <[email protected]>
  288. * DataSourceView.cs: refactoring: Update, Insert methods:
  289. exception is re-thrown from catch scope.
  290. It allows actual call stack be shown
  291. 2007-05-17 Vladimir Krasnov <[email protected]>
  292. * TemplateControl.jvm.cs: refactored key for CachedString method
  293. 2007-05-16 Vladimir Krasnov <[email protected]>
  294. * HtmlTextWriter.cs: refactoring, created hashtables for tags, styles
  295. and attributes arrays, that gives performance improvement in GetTagKey
  296. GetStyleKey and GetAttributeKey methods
  297. 2007-05-15 Marek Habersack <[email protected]>
  298. * TemplateControl.cs: implemented the 3-parameter overloads of
  299. GetLocalResourceObject and GetGlobalResourceObject.
  300. * TemplateParser.cs: refactoring - use HttpApplication.LoadType to
  301. actually look up types.
  302. * ControlBuilder.cs: as above
  303. 2007-05-14 Marek Habersack <[email protected]>
  304. * ClientScriptManager.cs: put the hidden field within a <div>, the
  305. way MS.NET does it.
  306. 2007-05-11 Gert Driesen <[email protected]>
  307. * ControlBuilder.cs: Fixed exception message in MapType.
  308. 2007-05-10 Marek Habersack <[email protected]>
  309. * Control.cs: small formatting change
  310. 2007-05-10 Igor Zelmanovich <[email protected]>
  311. * Page.cs: ExecuteRegisteredAsyncTasks:
  312. implimentation for TARGET_JVM doesn't use WaitHandle.WaitAll, but WaitOne
  313. 2007-05-09 Vladimir Krasnov <[email protected]>
  314. * HtmlTextWriter.cs: used classes instead of sctrucs in TARGET_JVM for
  315. AddedTag, AddedStyle and AddedAttr members
  316. * TemplateControl.jvm.cs: refactored CachedString method
  317. 2007-05-09 Marek Habersack <[email protected]>
  318. * CollectionBuilder.cs: formatting changes
  319. * ControlBuilder.cs: if a control enables children as properties,
  320. has a default property and parser encounters a child tag/container
  321. with the default property name, discard the default property
  322. builder in order to avoid invalid sub builder invocation. An
  323. example is: <asp:DropDownList><Items></Items></asp:DropDownList>
  324. Formatting changes.
  325. When checking for empty string, use Length not comparison with ""
  326. 2007-05-08 Marek Habersack <[email protected]>
  327. * CssStyleCollection.cs: put the style in the bag each time a key
  328. is set, otherwise resetting of a key has no effect on rendered
  329. style.
  330. 2007-05-07 Marek Habersack <[email protected]>
  331. * TemplateParser.cs: added support for implicit language
  332. detection. If the language isn't set explicitly in the Page
  333. directive, the language value taken from the configuration
  334. considered to be implicit - that is, it can be overwritten by the
  335. first <script> with the runat="server" and language="xx" sets the
  336. language for the parser. This makes it possible to have the
  337. default language set to "C#" and the inline code in, e.g.,
  338. VisualBasic.
  339. * ControlBuilder.cs: when mapping types, catch casses of missing
  340. original and mapped types.
  341. If mapped type doesn't derive from the original type, throw an
  342. exception. Fixes bug #81553.
  343. 2007-05-04 Marek Habersack <[email protected]>
  344. * Control.cs: added an internal method to resolve a physical path
  345. to a file from its virtual path considering the possibility that a
  346. control is placed in a master page, which in turn is referenced
  347. from a directory another than that of master page itself.
  348. 2007-05-03 Igor Zelmanovich <[email protected]>
  349. * AttributeCollection.cs:
  350. * DataBindingHandlerAttribute.cs:
  351. * HtmlTextWriter.cs:
  352. * PartialCachingControl.cs:
  353. * TemplateControl.cs:
  354. * TemplateControl.jvm.cs:
  355. * XPathBinder.cs:
  356. added missing API.
  357. 2007-05-03 Igor Zelmanovich <[email protected]>
  358. * CssStyleCollection.cs: optimization:
  359. used StringBuilder instead string to hold value.
  360. When added key that not exists in collection, value is recalculated by
  361. appending required key to existing value.
  362. 2007-05-02 Igor Zelmanovich <[email protected]>
  363. * Control.cs: ResolveClientUrl: optimization.
  364. if basePath is the same as TemplateSourceDirectory
  365. releativeUrl is returned as is.
  366. 2007-05-02 Igor Zelmanovich <[email protected]>
  367. * Control.cs:
  368. ResolveClientUrl considers TemplateSourceDirectory property.
  369. 2007-05-01 Marek Habersack <[email protected]>
  370. * PageParser.cs: clientTarget comparisons must be case-insensitive
  371. 2007-04-30 Konstantin Triger <[email protected]>
  372. * DataBinder.cs: When formatting, threat empty string as null.
  373. 2007-04-27 Marek Habersack <[email protected]>
  374. * TemplateControlParser.cs: 2.0 allows 'Namespace' without the
  375. 'Assembly' attribute on tag prefix registration.
  376. * TemplateParser.cs: do not rely on assembly name being not null.
  377. 2007-04-19 Gert Driesen <[email protected]>
  378. * TemplateParser.cs: On 2.0 profile, allow namespace in ClassName
  379. attribute. Fixes part of bug #81399.
  380. 2007-04-11 Marek Habersack <[email protected]>
  381. * Page.cs: check whether control passed to
  382. RegisterRequiresPostBack implements the IPostBackDataHandler
  383. interface.
  384. 2007-04-06 Marek Habersack <[email protected]>
  385. * ClientScriptManager.cs: render the 'type' attribute in
  386. WriteScript and do not render the 'language' attribute when in
  387. NET_2_0+ mode.
  388. * Page.cs: defaults for ViewStateEncrptionMode and AsyncTimeout
  389. are read from the pages section, if found.
  390. * TemplateControlParser.cs: added support for loading
  391. pages/controls defaults from web.config even if the page/control
  392. does not have its corresponding directive.
  393. Added support for reading the CompilationMode attribute.
  394. * PageParser.cs: added support for loading pages/controls defaults
  395. as above. Fixes bug #80915.
  396. Added support for reading the maxPageStateFieldLength setting.
  397. Added support for reading the pageParserFilter setting.
  398. * ControlBuilder.cs: allow tag mappings from code found
  399. in bin/* or App_Code/*. Fixes bug #80811.
  400. 2007-03-29 Vladimir Krasnov <[email protected]>
  401. * TemplateControl.jvm.cs: performance improvement, added cache for
  402. methods and events in user code
  403. 2007-03-26 Marek Habersack <[email protected]>
  404. * TemplateControl.cs: make local resources work with master
  405. pages - use the AppRelativeVirtualPath for resource resolution.
  406. * TemplateParser.cs: support the meta:resourcekey attribute in
  407. Page and Control directives. Fixes bug #81204.
  408. 2007-03-21 Marek Habersack <[email protected]>
  409. * UnknownAttributeDescriptor.cs: an internal helper class for
  410. custom directive attributes support.
  411. * BaseParser.cs: ThrowParseException can now take variadic
  412. parameters, for convenience.
  413. * TemplateParser.cs: add support for custom attributes for the
  414. Page and Control directives.
  415. Added support for the CodeFileBaseClass directive. Fixes bug #81132
  416. 2007-03-20 Igor Zelmanovich <[email protected]>
  417. * Control.cs: fixed ResolveClientUrl method.
  418. 2007-03-18 Marek Habersack <[email protected]>
  419. * BaseParser.cs: fix BaseVirtualDir to always return app-absolute
  420. paths.
  421. 2007-03-17 Marek Habersack <[email protected]>
  422. * MasterPageParser.cs: remove superfluous #ifdef
  423. * TemplateParser.cs: use VirtualPathUtility here
  424. 2007-03-14 Vladimir Krasnov <[email protected]>
  425. * TemplateControl.jvm.cs: fixed WireupAutomaticEvents, performance
  426. optimization
  427. 2007-03-13 Marek Habersack <[email protected]>
  428. * TemplateParser.cs: name generated classes the same way MS.NET
  429. does - include the app-relative path to the control/page in the
  430. class name.
  431. 2007-03-13 Adar Wesley <[email protected]>
  432. * Page.cs: improved Async Page implementation.
  433. 2007-03-13 Marek Habersack <[email protected]>
  434. * TemplateControl.cs: implement AppRelativeVirtualPath. Closes bug
  435. #80634.
  436. 2007-03-12 Marek Habersack <[email protected]>
  437. * RootBuilder.cs: change the error text to be less misleading.
  438. 2007-03-12 Igor Zelmanovich <[email protected]>
  439. * AttributeCollection.cs:
  440. * CssStyleCollection.cs: fixed: works w/o state bag.
  441. 2007-03-12 Igor Zelmanovich <[email protected]>
  442. * HtmlTextWriter.cs: fixed:
  443. - Fixed writing background-image style attribute (different behavior in
  444. 1.1 and 2.0).
  445. - Does not encode 'name' attribute.
  446. - Always encode style attributes (for 2.0 only).
  447. 2007-03-06 Adar Wesley <[email protected]>
  448. * Page.cs: initial implementation of support for Async=true. Added
  449. initial support for ViewStateEncryption. Implemented
  450. CreateHtmlTextWriterFromType.
  451. * PageAsyncTask.cs: Created class to support Async pages.
  452. * ObjectStateFormatter.cs: Added support for ViewState encryption.
  453. * HtmlTextWriter.cs: Fixed constructor to accept null TextWriter
  454. to conform to MS behavior.
  455. 2007-03-05 Vladimir Krasnov <[email protected]>
  456. * Control.jvm.cs: fixed TemplateSourceDirectory property
  457. 2007-03-03 Marek Habersack <[email protected]>
  458. * TemplateParser.cs: support but ignore the Async and AsyncTimeOut
  459. page directive attributes.
  460. Support the LinePragmas page directive attribute.
  461. * PageParser.cs: added support for the
  462. MaintainScrollPositionOnPostBack page directive attribute.
  463. 2007-02-26 Igor Zelmanovich <[email protected]>
  464. * TemplateControl.cs:
  465. * TemplateControl.jvm.cs: fixed: AutoEventWireup feature:
  466. Method 'Page_XXX' is declared in the base class must be
  467. called even is private.
  468. 2007-02-26 Vladimir Krasnov <[email protected]>
  469. * Control.cs: fixed AppRelativeTemplateSourceDirectory property, should
  470. not return AppRelativeTemplateSourceDirectory of master page
  471. 2007-02-26 Igor Zelmanovich <[email protected]>
  472. * ClientScriptManager.cs: fixed: GetScriptLiteral escapes back-slash:
  473. 2007-02-22 Igor Zelmanovich <[email protected]>
  474. * TemplateControl.cs: added missing property AppRelativeVirtualPath
  475. 2007-02-21 Konstantin Triger <[email protected]>
  476. * TemplateParser.cs: remove CodeGenerator.IsValidLanguageIndependentIdentifier
  477. check from Global.asax inherits attribute to let inherits="A.B" construct.
  478. 2007-02-20 Igor Zelmanovich <[email protected]>
  479. * ObjectStateFormatter.cs:
  480. optimization for serialization of primitive type arrays
  481. 2007-02-19 Igor Zelmanovich <[email protected]>
  482. * ClientScriptManager.cs:
  483. * Control.cs:
  484. * Page.cs:
  485. implemented PostBackOptions.TrackFocus feature.
  486. 2007-02-14 Igor Zelmanovich <[email protected]>
  487. * Page.cs: for 2.0: refactoring:
  488. prepare infrastructure for Form.SubmitDisabledControls feature
  489. 2007-02-18 Eyal Alaluf <[email protected]>
  490. * Control.jvm.cs, Control.cs: Move TemplateSourceDirectory to .jvm file.
  491. * Control.jvm.cs, Page.jvm.cs: Centralize Portlet specific API in Page.jvm
  492. * Page.cs, Page.jvm.cs, ClientScriptManager.cs: Support for Http callbacks
  493. for J2EE portlets.
  494. 2007-02-14 Igor Zelmanovich <[email protected]>
  495. * Page.cs: for 2.0:
  496. '__EVENTTARGET' and '__EVENTARGUMENT' hidden fields are
  497. registered only once.
  498. 2007-02-14 Igor Zelmanovich <[email protected]>
  499. * Page.cs: for 2.0: '__doPostBack' declared as function of form.
  500. convention to use 'currForm' instead 'myForm'
  501. 2007-02-14 Igor Zelmanovich <[email protected]>
  502. * Page.cs:
  503. * ClientScriptManager.cs:
  504. including 'webform.js' requires '__doPostBack' on the form be rendered.
  505. 2007-02-14 Igor Zelmanovich <[email protected]>
  506. * Page.cs:
  507. * ClientScriptManager.cs:
  508. refactoring: 'theForm' variable is always declared on client.
  509. '__EVENTTARGET' and '__EVENTARGUMENT' hidden fields is rendered using
  510. RegisterHiddenField API. 'WebForm_OnSubmit' declared as function of form.
  511. 2007-02-14 Vladimir Krasnov <[email protected]>
  512. * Page.cs: fixed OnInit, adding css should throw exception if no header
  513. present on the page
  514. 2007-02-14 Igor Zelmanovich <[email protected]>
  515. * Page.cs: __doPostBack considers 2.0 features
  516. such RegisterOnSubmitStatement
  517. 2007-02-14 Igor Zelmanovich <[email protected]>
  518. * Page.cs:
  519. * ClientScriptManager.cs:
  520. implemented RegisterOnSubmitStatement for 2.0
  521. 2007-02-13 Igor Zelmanovich <[email protected]>
  522. * ClientScriptManager.cs: EventValidation feature optimization on Callback.
  523. 2007-02-13 Igor Zelmanovich <[email protected]>
  524. * Page.cs: fixed exception handling on Callback at client.
  525. 2007-02-08 Marek Habersack <[email protected]>
  526. * Page.cs: Make sure to create specific cultures.
  527. 2007-02-08 Vladimir Krasnov <[email protected]>
  528. * ClientScriptManager.cs: added array declaration also as member of
  529. form in TARGET_J2EE for j2ee portal support.
  530. Added validators context init for GetClientValidationEvent under
  531. TARGET_J2EE for j2ee portal support.
  532. * Page.cs: fixed OnFormPostRender, render array declarations after
  533. postback script.
  534. 2007-02-04 Igor Zelmanovich <[email protected]>
  535. * Page.cs:
  536. * ClientScriptManager.cs:
  537. client scripts (webform.js, callback.js and
  538. MaintainScrollPositionOnPostBack.js) were merged into one resource file.
  539. 2007-02-04 Igor Zelmanovich <[email protected]>
  540. * Page.cs:
  541. http://msdn2.microsoft.com/en-us/library/ms178141.aspx
  542. LAMESPEC: on Callback IsPostBack is set to false, but true.
  543. 2007-02-04 Igor Zelmanovich <[email protected]>
  544. * Page.cs:
  545. VerifyRenderingInServerForm does not fire exception when IsCallback
  546. 2007-02-04 Igor Zelmanovich <[email protected]>
  547. * Page.cs:
  548. * ClientScriptManager.cs:
  549. fixed RegisterClientScriptInclude: all includes that was registered before
  550. rendering are rendered at begin form.
  551. 2007-02-02 Marek Habersack <[email protected]>
  552. * TemplateParser.cs: Do not register controls here.
  553. 2007-02-02 Adar Wesley <[email protected]>
  554. * Control.cs: Changed UniqueId implementation to have '$' and not ':'
  555. to conform to MS. This led to updating several Tests that referenced
  556. the UniqueId as string.
  557. 2007-01-30 Eyal Alaluf <[email protected]>
  558. * ClientScriptManager.cs: Fix Igor's last changes for TARGET_JVM.
  559. 2007-01-29 Igor Zelmanovich <[email protected]>
  560. * Page.cs:
  561. * ClientScriptManager.cs:
  562. CallBack works with EvantValidation.
  563. 2007-01-25 Eyal Alaluf <[email protected]>
  564. * Page.cs: Change code to use the 'theForm' property when generating
  565. JavaScript code. Ensure that we pass 'theForm' as param to the JS funcs.
  566. * Page.jvm.cs, Control.jvm.cs: Implement the 'theForm' property to include
  567. the portlet namespace. Moved 'PortletNamespace' from Control.jvm.cs
  568. * Page.jvm.cs, Control.jvm.cs, ClientScriptManager.cs: Added support for
  569. saving hidden fields for TARGET_J2EE Portlets re-render.
  570. * Control.cs: Under TARGET_J2EE portal support add the PortletNamespace
  571. to all the control IDs to ensure they different between portlets.
  572. 2007-01-24 Vladimir Krasnov <[email protected]>
  573. * Page.cs: fixed CheckForValidationSupport,
  574. SupportsEventValidationAttribute should be checked at only one level
  575. 2007-01-23 Vladimir Krasnov <[email protected]>
  576. * TemplateControl.jvm.cs: ParseControl not supported, added limited
  577. implementation if TestDeviceFilter
  578. 2007-01-22 Konstantin Triger <[email protected]>
  579. * ClientScriptManager.cs: ensure the callback client script is
  580. registered before the client script includes are rendered.
  581. 2007-01-22 Konstantin Triger <[email protected]>
  582. * Page.cs, ClientScriptManager.cs: ensure the web form client script is
  583. registerd before the client script includes are rendered.
  584. 2007-01-21 Konstantin Triger <[email protected]>
  585. * Page.cs: move the WriteClientScriptIncludes to the top of the form,
  586. according to the MSDN.
  587. 2007-01-20 Miguel de Icaza <[email protected]>
  588. * XhtmlTextWriter.cs: comment out unused code.
  589. * ThemeProvider.cs: comment out unused code.
  590. * DataSourceView.cs: Comment unused variable.
  591. * ClientScriptManager.cs: Put the expandoAttributes inside the 2.0
  592. code
  593. * Control.cs: Put _templateControl inside the NET_2_0 ifdef
  594. 2007-01-20 Marek Habersack <[email protected]>
  595. * TemplateParser.cs: Check whether the base type is in the root
  596. namespace.
  597. 2007-01-18 Eyal Alaluf <[email protected]>
  598. * Control.jvm.cs: Added PortletNamespace property.
  599. 2007-01-16 Vladimir Krasnov <[email protected]>
  600. * TemplateControl.jvm.cs: remover TemplateSourceDirectory propery
  601. * Control.cs: moved TemplateSourceDirectory from TemplateControl for
  602. TARGET_JVM, fixed AppRelativeTemplateSourceDirectory
  603. 2007-01-16 Vladimir Krasnov <[email protected]>
  604. * TemplateControl.jvm.cs: added 2.0 event names for wiring up
  605. 2007-01-15 Ilya Kharmatsky <ilya - at - decode-systems.com>
  606. * Control.cs:
  607. - IsViewStateEnabled - removed check for non-null page, since
  608. the control by definition should come with enabled
  609. view state, even if it not 'attached' to the page
  610. - HasEvents() - implementation (still could produce bug in exotic scenarios
  611. when all events added to 'this' control has been removed
  612. through the property 'Events', but currently we can't see
  613. better implementation)
  614. 2007-01-14 Eyal Alaluf <[email protected]>
  615. * Control.jvm.cs, Page.jvm.cs: Added TARGET_J2EE specific files.
  616. * Page.cs, ClientScriptManager.cs, Control.cs: Added J2EE portal
  617. support for TARGET_J2EE.
  618. 2007-01-12 Miguel de Icaza <[email protected]>
  619. * Control.cs: Remove comment, it provides no information about
  620. what could be wrong.
  621. 2007-01-08 Vladimir Krasnov <[email protected]>
  622. * PageTheme.cs: implemented
  623. * Page.cs: fixed InitializeTheme, added PageTheme page initialization
  624. * TemplateControl.cs,
  625. * TemplateControl.jvm.cs: added XPath, XPathSelect overloads with
  626. IXmlNamespaceResolver parameter
  627. * XPathBinder.cs: added Eval, Select overloads with
  628. IXmlNamespaceResolver parameter, refactored
  629. 2007-01-08 Vladimir Krasnov <[email protected]>
  630. * TemplateControl.jvm.cs: added GetGlobalResourceObject
  631. 2007-01-07 Igor Zelmanovich <[email protected]>
  632. * Page.cs: refactoring: used RegisterHiddenField for _VIEWSTATE field.
  633. 2007-01-04 Igor Zelmanovich <[email protected]>
  634. * Control.cs: ensure 'id' attribute will be rendered if
  635. ClientID was accessed but ID is generated by the Page,
  636. important for custom controls developing.
  637. 2007-01-04 Igor Zelmanovich <[email protected]>
  638. * Page.cs: fixed: InitializeCulture should be called
  639. before creating controls.
  640. 2007-01-03 Marek Habersack <[email protected]>
  641. * Page.cs: Make sure the ValidatorOnSubmit function is defined for the
  642. document before attempting to use it.
  643. 2007-01-01 Vladimir Krasnov <[email protected]>
  644. * Control.cs: fixed ResolveClientUrl, wrong when control that calls
  645. this method and the page are in different folders
  646. 2006-12-31 Gonzalo Paniagua Javier <[email protected]>
  647. * Page.cs: show the validation summary when client validation and
  648. linkbuttons are used. Patch by Juraj Skripsky.
  649. 2006-12-31 Igor Zelmanovich <[email protected]>
  650. * Page.cs: fixed: EventValidation is not performed for CallBack request.
  651. 2006-12-27 Igor Zelmanovich <[email protected]>
  652. * Page.cs: fixed: RegisterRequiresPostBack feature.
  653. 2006-12-21 Marek Habersack <[email protected]>
  654. * ControlBuilder.cs: Add support for tag mapping in 2.0
  655. 2006-12-20 Marek Habersack <[email protected]>
  656. * TemplateParser.cs: make sure Context.ApplicationInstance is not
  657. valid before adding application assembly.
  658. 2006-12-11 Igor Zelmanovich <[email protected]>
  659. * Page.cs: fixed and optimized ProcessPostData
  660. The "second try" used for controls that created at OnLoad.
  661. fixed for controls that use RgisterRequeresPostBack to handle post data.
  662. 2006-11-29 Igor Zelmanovich <[email protected]>
  663. * Page.cs: The specified theme must exist as either an application theme.
  664. If the theme does not exist, an HttpException exception s thrown.
  665. 2006-12-09 Marek Habersack <[email protected]>
  666. * HiddenFieldPageStatePersister.cs: Implement the 2.0 class (used
  667. also in the 1.x profile)
  668. * ObjectStateFormatter.cs: Implement the IStateFormatter interface
  669. * ClientScriptManager.cs: Use IStateFormatter instead of
  670. LosFormatter.
  671. Use the IStateFormatter interface when registering the hidden
  672. field with the state.
  673. * LosFormatter.cs: Use ObjectStateFormatter
  674. * PageStatePersister.cs: Make the class available as internal for
  675. 1.x profile.
  676. Constructor throws an exception on its page parameter being null.
  677. Implemented several properties: ControlState, ViewState, Page,
  678. StateFormatter
  679. * Page.cs: Use new state persister for all the profiles.
  680. Use the new HiddenFieldPageStatePersister class.
  681. * IStateFormatter.cs: Make the class available as internal for 1.x profile.
  682. 2006-12-04 Vladimir Krasnov <[email protected]>
  683. * TemplateControl.jvm.cs: fixed TemplateSourceDirectory initialization
  684. 2006-11-29 Marek Habersack <[email protected]>
  685. * TemplateParser.cs: if the OutputCache directive is present, make
  686. sure the cache does not expire the current output.
  687. 2006-11-29 Igor Zelmanovich <[email protected]>
  688. * Page.cs: added missing methods and properties:
  689. AsyncMode
  690. AsyncTimeout
  691. IsAsync
  692. UniqueFilePathSuffix
  693. MaxPageStateFieldLength
  694. ViewStateEncryptionMode
  695. AddOnPreRenderCompleteAsync
  696. AddOnPreRenderCompleteAsync
  697. ExecuteRegisteredAsyncTasks
  698. CreateHtmlTextWriterFromType
  699. RegisterRequiresViewStateEncryption
  700. 2006-11-29 Igor Zelmanovich <[email protected]>
  701. * Page.cs: Master property returns null when no HttpContext.
  702. 2006-11-29 Igor Zelmanovich <[email protected]>
  703. * Page.cs: InitializeCulture method is called before OnPreInit.
  704. 2006-11-28 Marek Habersack <[email protected]>
  705. * TemplateControlParser.cs: Use the new TemplateParser methods to
  706. register controls/namespaces
  707. * TemplateParser.cs: Implement support for the
  708. system.web/pages/namespaces collection instead of hard-coding the
  709. namespaces into the source.
  710. Refactoring: added two internal methods to handle both the
  711. system.web/pages/controls registration and the Register directive.
  712. Added a new internal method to pull the system.web/pages/controls
  713. collection before parsing.
  714. 2006-11-27 Marek Habersack <[email protected]>
  715. * SimpleWebHandlerParser.cs: Added support for looking up types in
  716. the top-level assemblies (App_Code et al)
  717. 2006-11-27 Igor Zelmanovich <[email protected]>
  718. * Control.cs: implemented EnsureID method.
  719. 2006-11-27 Igor Zelmanovich <[email protected]>
  720. * Control.cs: implemented Focus methods.
  721. 2006-11-27 Igor Zelmanovich <[email protected]>
  722. * Page.cs: implemented SetFocus methods.
  723. * PageLifeCycle.cs:
  724. 2006-11-27 Igor Zelmanovich <[email protected]>
  725. * ClientScriptManager.cs: refactoring:
  726. extracted method RegisterWebFormClientScript
  727. 2006-11-27 Igor Zelmanovich <[email protected]>
  728. * Control.cs: implemented OpenFile()
  729. 2006-11-26 Igor Zelmanovich <[email protected]>
  730. * Page.cs:
  731. * Control.cs:
  732. implemented ClearChildState(), ClearChildControlState() and
  733. IsChildControlStateCleared
  734. 2006-11-26 Igor Zelmanovich <[email protected]>
  735. * Page.cs:
  736. * ClientScriptManager.cs:
  737. implemented RegisterExpandoAttribute feature
  738. 2006-11-23 Igor Zelmanovich <[email protected]>
  739. * ListSourceHelper.cs: optimization of implementation
  740. 2006-11-23 Igor Zelmanovich <[email protected]>
  741. * ListSourceHelper.cs: implemented
  742. 2006-11-21 Igor Zelmanovich <[email protected]>
  743. * DataSourceView.cs: fixed: constructor throws ArgumentNullException
  744. 2006-11-21 Igor Zelmanovich <[email protected]>
  745. * Page.cs: fixed: PreviousPage property
  746. when CrossPostBack is processed PreviousPage is initialized
  747. only if PreviousPage property is called.
  748. 2006-11-21 Igor Zelmanovich <[email protected]>
  749. * DataSourceControl.cs: fixed: Focus(), EnableTheming
  750. 2006-11-21 Marek Habersack <[email protected]>
  751. * Control.cs: Make ClientIDSeparator private for !NET_2_0
  752. 2006-11-21 Igor Zelmanovich <[email protected]>
  753. * Page.cs: fixed: LoadControlState is called for controls
  754. that added on Load and latter
  755. 2006-11-20 Marek Habersack <[email protected]>
  756. * Control.cs: Implementations of a few missing properties.
  757. * Page.cs: Added support for automatic culture detection from the
  758. user's browser.
  759. * PageParser.cs: Added support for "auto" cultures in the Page
  760. directive.
  761. 2006-11-20 Igor Zelmanovich <[email protected]>
  762. * ClientScriptManager.cs: fixed: ValidateEvent feature:
  763. client side return eventArgument as empty string
  764. for controls that set it as null
  765. 2006-11-18 Marek Habersack <[email protected]>
  766. * ClientScriptManager.cs: Implemented two missing
  767. GetPostBackEventReference overloads. Made one of the overloads
  768. internal for .NET < 2.0.
  769. 2006-11-17 Marek Habersack <[email protected]>
  770. * PostBackOptions.cs: Renamed the constructors parameters to match
  771. those Microsoft .NET uses.
  772. targetControl must not be passed null to the constructor.
  773. * ClientScriptManager.cs: Support for event validation.
  774. Implemented a GetPostBackHyperlink overload.
  775. Implemented the RegisterForEventValidation methods.
  776. Implemented the ValidateEvent method.
  777. Added support for saving/restoring event validation state.
  778. * Page.cs: EnableEventValidation can be set only from the config
  779. files (the <pages> element), the Page directive or from
  780. Page_Init. After Page_Init returns, an exception is thrown.
  781. Made GetFormatter internal, so that ClientScriptManager can use
  782. it.
  783. Added the internal LifeCycle property which contains the current
  784. life cycle stage of the page request processing.
  785. Added calls to save/restore event validation state.
  786. Added checks for whether child controls of the page support event
  787. validation or not.
  788. Added calls to ClientScriptManager.ValidateEvent in appropriate
  789. places.
  790. * PageLifeCycle.cs: Added the PageLifeCycle enum, used in event
  791. validation.
  792. 2006-11-16 Gonzalo Paniagua Javier <[email protected]>
  793. * LosFormatter.cs:
  794. * ObjectStateFormatter.cs: match MS 1.x and 2.0 behaviour for null and
  795. empty strings.
  796. 2006-11-16 Gonzalo Paniagua Javier <[email protected]>
  797. * SimpleWebHandlerParser.cs: 'using' for file reading.
  798. 2006-11-16 Gonzalo Paniagua Javier <[email protected]>
  799. * Page.cs: revert r67514 until after tagging for the next release.
  800. 2006-11-12 Igor Zelmanovich <[email protected]>
  801. * LiteralControl.cs: fixed: constructors & Text property
  802. 2006-11-09 Igor Zelmanovich <[email protected]>
  803. * Page.cs: fixed: LoadControlState is called for controls
  804. that added on Load and latter, for 1.x refactoring only
  805. 2006-11-02 Igor Zelmanovich <[email protected]>
  806. * ClientScriptManager.cs:
  807. fixed: checks arguments for null in public methods,
  808. fixed public interface.
  809. 2006-10-23 Igor Zelmanovich <[email protected]>
  810. * PostBackOptions.cs: fixed: default values of properties
  811. 2006-10-22 Igor Zelmanovich <[email protected]>
  812. * CssStyleCollection.cs:
  813. * AttributeCollection.cs:
  814. fixed: style collection is synchronized with style attribute
  815. 2006-10-19 Igor Zelmanovich <[email protected]>
  816. * ClientScriptManager.cs: fixed: renders id attribute in hidden field
  817. 2006-10-18 Marek Habersack <[email protected]>
  818. * TemplateParser.cs: reference System.Resources when compiling a
  819. control.
  820. * TemplateControl.cs: implement the GetGlobalResourceObject
  821. ASP.NET 2.0 APIs.
  822. 2006-10-12 Igor Zelmanovich <[email protected]>
  823. * Page.cs: fixed: for 2.0 only
  824. When Page processes Callback IsPostBack = false, but it still needs
  825. LoadViewState/ControlState and ProcessPostData
  826. 2006-10-11 Igor Zelmanovich <[email protected]>
  827. * DataSourceSelectArguments.cs: fixed:
  828. SortExpression not returns null,
  829. Empty property returns new instance each time
  830. 2006-10-10 Igor Zelmanovich <[email protected]>
  831. * DataSourceSelectArguments.cs:
  832. fixed: RaiseUnsupportedCapabilitiesError method.
  833. 2006-10-09 Igor Zelmanovich <[email protected]>
  834. * DataSourceSelectArguments.cs: fixed: Equals method.
  835. 2006-10-09 Gonzalo Paniagua Javier <[email protected]>
  836. * CssStyleCollection.cs: don't clear the collection of properties, but
  837. create a new one.
  838. 2006-10-06 Gonzalo Paniagua Javier <[email protected]>
  839. * CssStyleCollection.cs: 'style' can be modified on our back, so build
  840. the style table every time instead of keeping one that is not in sync.
  841. Fixes bug #79587.
  842. 2006-09-25 Igor Zelmanovich <[email protected]>
  843. * Page.cs: fixed: Cross-page postback feature in ASP.NET 2.0
  844. When page is invoked by cross-page posting, PreviousPage processed all
  845. live-cycle up to OnLoadComplite included.
  846. IsPostBack, IsCallBack and IsCrossPagePostBack returns relevant values.
  847. 2006-09-20 Gonzalo Paniagua Javier <[email protected]>
  848. * TemplateParser.cs: patch by Joel Reed that makes use of the namespace
  849. collection from the PagesConfiguration to add new namespaces when
  850. generating the page/control code.
  851. 2006-09-18 Gonzalo Paniagua Javier <[email protected]>
  852. * PageParser.cs: support the EnableEventValidation attribute.
  853. 2006-09-18 Igor Zelmanovich <[email protected]>
  854. * Page.cs: fixed: Title property works properly
  855. 2006-09-17 Igor Zelmanovich <[email protected]>
  856. * ClientScriptManager.cs: added helper method
  857. 2006-09-14 Igor Zelmanovich <[email protected]>
  858. * Page.cs: fixed: GetValidators(string), Validate(string) works properly
  859. 2006-09-08 Robert Jordan <[email protected]>
  860. * Page.cs: assure that RenderTrace is called even if an
  861. exception occurred. Fixes bug #78930.
  862. 2006-09-08 Gonzalo Paniagua Javier <[email protected]>
  863. * TemplateControl.cs: search for the new Page_* event handlers in 2.0.
  864. Patch by Marek Habersack that fixes bug #78268.
  865. 2006-09-07 Lluis Sanchez Gual <[email protected]>
  866. * Page.cs: Use lowercase getElementById in the javascript that
  867. checks the browser.
  868. 2006-08-22 Vladimir Krasnov <[email protected]>
  869. * KeyedListEnumerator.cs: fixed Current property to return real object
  870. instead of DictionaryEntry
  871. 2006-09-06 Gonzalo Paniagua Javier <[email protected]>
  872. * Page.cs: don't use the Browser object, as it slows down process
  873. request time *a lot*. Fixes bug #79206.
  874. 2006-09-05 Konstantin Triger <[email protected]>
  875. * Page.cs: Imlemented InitOutputCache(OutputCacheParameters cacheSettings).
  876. * OutputCacheParameters.cs: added an implementation.
  877. 2006-09-04 Igor Zelmanovich <[email protected]>
  878. * CssStyleCollection.cs: fixed: background-image style attribute
  879. 2006-08-31 Konstantin Triger <[email protected]>
  880. * StaticPartialCachingControl.cs: added forwarding implementation for
  881. 2.0 version of BuildCachedControl().
  882. 2006-08-30 Igor Zelmanovich <[email protected]>
  883. * Page.cs: added internal method
  884. * ClientScriptManager.cs:
  885. 2006-08-30 Igor Zelmanovich <[email protected]>
  886. * ClientScriptManager.cs: added helper method
  887. 2006-08-22 Vladimir Krasnov <[email protected]>
  888. * Page.cs: fixed ApplyMasterPage, masterPageFile can be empty string
  889. if compiled with .net aspx parser
  890. fixed OnInit, GetStyleSheets may return null if no css files found by
  891. .net aspx parser
  892. 2006-08-22 Vladimir Krasnov <[email protected]>
  893. * TemplateControl.jvm.cs: fixed WireupAutomaticEvents, removed access
  894. modifiers check on event handlers
  895. 2006-08-22 Vladimir Krasnov <[email protected]>
  896. * Control.cs: implemented AppRelativeTemplateSourceDirectory for aspx
  897. parser 2.0
  898. * TemplateControl.jvm.cs: fixed AppRelativeVirtualPath
  899. fixed TemplateSourceDirectory, should not work on master pages.
  900. 2006-08-20 Vladimir Krasnov <[email protected]>
  901. * MasterPageParser.jvm.cs: fixed path resolving
  902. GetCompiledMasterInstance
  903. 2006-08-17 Vladimir Krasnov <[email protected]>
  904. * TemplateControl.jvm.cs: fixed data binding API, implemented
  905. AppRelativeVirtualPath, ReadStringResource
  906. 2006-08-17 Vladimir Krasnov <[email protected]>
  907. * Page.cs: added stubs to run aspx files compiled by .net
  908. 2006-08-17 Vladimir Krasnov <[email protected]>
  909. * MasterPageParser.jvm.cs: implemented
  910. 2006-08-10 Andrew Skiba <[email protected]>
  911. * Page.cs: render css path as a virtual path.
  912. 2006-08-09 Robert Jordan <[email protected]>
  913. * Control.cs: add the 2.0 ResolveClientUrl method.
  914. Expose ResolveClientUrl as internal for the 1.1 profile.
  915. Fixes bug #77539.
  916. 2006-08-08 Vladimir Krasnov <[email protected]>
  917. * added MasterPageParser.jvm.cs
  918. 2006-08-08 Vladimir Krasnov <[email protected]>
  919. * ControlBuilder.jvm.cs: added BuildObject method
  920. 2006-08-08 Vladimir Krasnov <[email protected]>
  921. * ParseChildrenAttribute.cs: fixed ChildControlType property to
  922. compliant to .net
  923. * UserControl.cs: fixed ParseChildren attribute to be compliant
  924. to .net
  925. 2006-08-08 Igor Zelmanovich <[email protected]>
  926. * Page.cs: implemented MaintainScrollPositionOnPostBack feature
  927. 2006-08-06 Vladimir Krasnov <[email protected]>
  928. * Control.cs: fixed EnableTheming proprty, fixes bug when child
  929. control has EnableTheming=false and parent has true.
  930. 2006-07-31 Vladimir Krasnov <[email protected]>
  931. * MasterPage.cs: fixed default values, fixed AddContentTemplate
  932. 2006-07-31 Vladimir Krasnov <[email protected]>
  933. * Control.cs: fixed EnableTheming proprty, fixes the bug when skins
  934. are applied even if EnableTheming property was set to false.
  935. 2006-07-24 Andrew Skiba <[email protected]>
  936. * DataSourceView.cs: refactor to keep the original exception stack.
  937. 2006-07-21 Gonzalo Paniagua Javier <[email protected]>
  938. * PostBackOptions.cs: default to String.Empty for several field values.
  939. Patch by Marek Habersack.
  940. 2006-07-20 Gonzalo Paniagua Javier <[email protected]>
  941. * Page.cs: when ProcessRequest is not called, get the session from
  942. the current context. Fixes bug #78730.
  943. 2006-07-20 Gonzalo Paniagua Javier <[email protected]>
  944. * Page.cs: fix IsPostback for AJAX calls to match MS behavior. Patch
  945. by Peijen Lin that closes bug #78646.
  946. 2006-06-14 Gonzalo Paniagua Javier <[email protected]>
  947. * TemplateControlParser.cs: fix compilation caching when more than one
  948. @control is compiled from source. Closes bug #78626.
  949. 2006-06-14 Gonzalo Paniagua Javier <[email protected]>
  950. * Page.cs: add the 2.0 Items property. Fixes bug #78467.
  951. 2006-06-14 Gonzalo Paniagua Javier <[email protected]>
  952. * Page.cs: use the new internal LosFormatter.SerializeToBase64.
  953. * LosFormatter.cs: always work on base 64 strings even if the
  954. input/output is on a Stream. Fixes bug #78640.
  955. 2006-06-08 Konstantin Triger <[email protected]>
  956. * Page.cs: For loading themes, use '~/App_Themes' instead of
  957. './App_Themes' to enable theme support for files in sub folders.
  958. 2006-05-25 Andrew Skiba <[email protected]>
  959. * Control.cs: move 2.0 stuff into ifdef NET_2_0
  960. 2006-05-25 Andrew Skiba <[email protected]>
  961. * Page.cs, Control.cs: Fix the order of OnInit invocation of controls
  962. created via master page content (see
  963. http://lists.ximian.com/pipermail/mono-devel-list/2006-May/018585.html ).
  964. 2006-05-11 Andrew Skiba <[email protected]>
  965. * Page.cs, PageTheme.cs: This patch uses LinkedStyleSheets from the
  966. PageTheme and from StyleSheetPageTheme to insert links in page header.
  967. 2006-05-10 Andrew Skiba <[email protected]>
  968. * TemlpateParser.cs: surround file name with quotes
  969. 2006-05-08 Chris Toshok <[email protected]>
  970. * ControlBuilder.cs (ResetState): set renderIndex to 0 here. This
  971. fixes the last thing keeping the test in #76818 from working.
  972. 2006-05-07 Andrew Skiba <[email protected]>
  973. * Page.cs: if no theme is defined in aspx, read default from web.config.
  974. Same for the style sheet theme.
  975. 2006-04-27 Andrew Skiba <[email protected]>
  976. * TemplateParser.cs: format according to
  977. http://lists.ximian.com/pipermail/mono-devel-list/2006-April/018096.html
  978. 2006-04-25 Chris Toshok <[email protected]>
  979. * PageThemeParser.cs (LinkedStyleSheets): reformat.
  980. 2006-04-25 Konstantin Triger <[email protected]>
  981. * Control.cs: implementation for IsViewStateEnabled.
  982. 2006-04-25 Andrew Skiba <[email protected]>
  983. * Control.cs: fix null pointer exception
  984. 2006-04-23 Andrew Skiba <[email protected]>
  985. * PageThemeParser.cs: add LinkedStyleSheets property
  986. 2006-04-16 Andrew Skiba <[email protected]>
  987. * TemplateParser.cs: add internal method AddAssemblyByFileName
  988. 2006-04-16 Konstantin Triger <[email protected]>
  989. * SimpleWebHandlerParser.cs: correctly resolve GACs dependencies.
  990. 2006-04-11 Konstantin Triger <[email protected]>
  991. * Page.cs, TemplateControl.cs: refactoring implementing Page.GetDataItem().
  992. 2006-04-10 Chris Toshok <[email protected]>
  993. * PageThemeFileParser.cs (AddDirective): allow Register directives
  994. in skin files.
  995. 2006-04-02 Chris Toshok <[email protected]>
  996. * Control.cs (DesignMode): always return false for now. Fixes
  997. #77991.
  998. 2006-03-24 Gonzalo Paniagua Javier <[email protected]>
  999. * ControlBuilder.cs: when creating a default property builder, handle
  1000. strings specially.
  1001. * StringPropertyBuilder.cs: new builder used in TextBox 2.0.
  1002. 2006-03-15 Vladimir Krasnov <[email protected]>
  1003. * ControlCollection.cs: fixed CopyTo method, fixes bug when if target
  1004. index is not zero
  1005. 2006-03-13 Chris Toshok <[email protected]>
  1006. * HtmlTextWriterTag.cs: no [Serializable] in 2.0.
  1007. * HtmlTextWriterAttribute.cs: same.
  1008. * HtmlTextWriterStyle.cs: same.
  1009. * VirtualReferenceType.cs: new enum.
  1010. 2006-03-13 Chris Toshok <[email protected]>
  1011. * UserControl.cs: rework InitializeAsUserControl and
  1012. InitializeAsUserControlInternal - the Internal variety doesn't set
  1013. this.page to null now.
  1014. * MasterPage.cs (CreateMasterPage): map the masterPageFile path,
  1015. and also remove a line of spew.
  1016. 2006-03-09 Vladimir Krasnov <[email protected]>
  1017. * Added PageParser.jvm.cs, WebServiceParser.jvm.cs
  1018. 2006-03-07 Chris Toshok <[email protected]>
  1019. * Page.cs (InitializeStyleSheet): load the style sheet theme using
  1020. ThemeDirectoryCompiler.
  1021. (InitializeTheme): load the page's theme using
  1022. ThemeDirectoryCompiler.
  1023. (InternalProcessRequest): call InitializeTheme after OnPreInit.
  1024. (FrameworkInitialize): call InitializeStyleSheet.
  1025. (PageTheme,StyleSheetPageTheme): new properties to get the
  1026. respective themes.
  1027. * Control.cs (ApplyStyleSheetSkin): new method. Calls ApplySkin
  1028. on the ControlSkin (if there is one) for this control in the
  1029. page's StyleSheetSkin.
  1030. (ApplyThemeRecursively): applies the page's theme recursively to
  1031. the control hierarchy. Must be done this way because the control
  1032. tree is already present when we apply the theme (it has to be,
  1033. since theme's override settings).
  1034. * PageTheme.cs (GetControlSkin): add internal call to do the
  1035. lookup for us.
  1036. * PageThemeFileParser.cs: the parser object that represents each
  1037. individual skin file.
  1038. * PageThemeParser.cs: the parser object that represents the entire
  1039. theme directory.
  1040. * PageThemeBuilder.cs: this class generates the right exception on
  1041. the right event, but it's not hooked up yet.
  1042. 2006-03-02 Chris Toshok <[email protected]>
  1043. * Control.cs (ApplyStyleSheetTheme): remove the exception, and add
  1044. a MonoTODO.
  1045. * Page.cs (Theme): implement setter/getter.
  1046. (StyleSheetTheme): same.
  1047. * PageParser.cs (ProcessMainAttributes): parse the Theme and
  1048. StyleSheetTheme attributes.
  1049. 2006-02-27 Chris Toshok <[email protected]>
  1050. * TemplateControl.cs: corcompare work.
  1051. * ExpressionBindingCollection.cs: same.
  1052. * HierarchicalDataSourceControl.cs: same.
  1053. * PostBackOptions.cs: same.
  1054. * ClientScriptManager.cs: same.
  1055. * FilterableAttribute.cs: same.
  1056. * ControlCollection.cs: same.
  1057. * DataBindingCollection.cs: same.
  1058. * PropertyEntry.cs: mark ctor internal.
  1059. * SimpleWebHandlerParser.cs: mark the 2.0 ctor as internal.
  1060. * Page.cs: stub out two Theme oriented 2.0 properties.
  1061. * DataBinder.cs: remove the obsolete attribute on the ctor.
  1062. * TwoWayBoundPropertyEntry.cs: remove this.
  1063. * ControlBuilder.cs (BindingContainerType): virtual in 2.0.
  1064. * ThemeProvider: new (stubbed) class.
  1065. * SkinBuilder.cs: same.
  1066. * PageTheme.cs: same.
  1067. * ControlSkin.cs: same.
  1068. * ControlSkinProc.cs: rename this to ControlSkinDelegate.cs.
  1069. * SimplePropertyEntry.cs: mark ctor as internal.
  1070. * IThemeResolutionService.cs: enable the 3 members of this
  1071. interface.
  1072. 2006-02-27 Chris Toshok <[email protected]>
  1073. * ListSourceHelper.cs: this class is static.
  1074. * Page.cs: add some EditorBrowsable attributes to the 2.0 events.
  1075. 2006-02-27 Chris Toshok <[email protected]>
  1076. * DataSourceView.cs: Name isn't virtual.
  1077. * DataSourceControl.cs: beat this class over the head with the
  1078. corcompare stick.
  1079. * DataSourceControlBuilder.cs: new stubbed control builder for
  1080. DataSourceControl.
  1081. 2006-02-23 Chris Toshok <[email protected]>
  1082. * Page.cs: more corcompare work.
  1083. 2006-02-23 Chris Toshok <[email protected]>
  1084. * Page.cs (ProcessCallbackData): track change to
  1085. ICallbackEventHandler iface.
  1086. * ICallbackEventHandler.cs: enable the proper members of this
  1087. interface.
  1088. * DataSourceSelectArguments.cs: reformat getter/setters.
  1089. 2006-02-22 Cesar Lopez Nataren <[email protected]>
  1090. * HtmlTextWriter.cs: Added method WriteEncodedText for the .NET 2.0 profile.
  1091. 2006-02-14 Gonzalo Paniagua Javier <[email protected]>
  1092. * WebHandlerParser.cs:
  1093. * WebServiceParser.cs:
  1094. * UserControlParser.cs:
  1095. * PageParser.cs: added new ctor that uses a TextReader as input.
  1096. * TemplateControlParser.cs: new Reader property.
  1097. * SimpleWebHandlerParser.cs: new Reader property and ctor.
  1098. 2006-02-12 Cesar Lopez Nataren <[email protected]>
  1099. * HtmlTextWriter.cs: Implemented IsValidFormAttribute and
  1100. WriterBreak for the .NET 2.0 profile.
  1101. 2006-02-10 Gonzalo Paniagua Javier <[email protected]>
  1102. * IThemeResolutionService.cs: this is now added to the
  1103. sources file, but some other stuff does not compile yet as the
  1104. interface changed after the beta.
  1105. * ObjectConverter.cs: removed extra attribute.
  1106. * ObjectStateFormatter.cs: add IStateFormatter for 2.0.
  1107. * ICallbackEventHandler.cs: update the interface, but commented the
  1108. 'good' stuff out, since other files need to be fixed too.
  1109. 2006-02-07 Chris Toshok <[email protected]>
  1110. * ControlBuilder.cs: rename flushOutputStatements to
  1111. methodStatements to at least reflect that they're in that method.
  1112. 2006-02-07 Chris Toshok <[email protected]>
  1113. * MasterPage.cs (CreateMasterPage): don't nullref on null
  1114. contentTemplateCollection.
  1115. * ControlBuilder.cs: add a flushOutputStatements field.
  1116. * PageParser.cs (ProcessMainAttributes): handle Title attribute.
  1117. (Title): add getter.
  1118. * Page.cs (Title): implement getter/setter.
  1119. (InternalProcessRequest): after calling ApplyMasterPage, apply the
  1120. page's Title directive if there is one.
  1121. (AddContentTemplate): make the EditorBrowsable attribute apply to
  1122. the method, not the field.
  1123. 2006-02-07 Chris Toshok <[email protected]>
  1124. * MasterPage.cs: rework this file, adding some static methods
  1125. gleaned from MS stack traces, and clear up the propogation of
  1126. content templates between nested master pages.
  1127. * Control.cs (TemplateControl): implement.
  1128. * TemplateControl.cs: re-indent some of the code.
  1129. (ReadStringRecource): according to msdn2, these throw
  1130. NotSupportedException.
  1131. * MasterPageParser.cs (HandleOption): implement. assign our
  1132. master page's MasterPageFile from the UserControl property.
  1133. * UserControl.cs (InitializeAsUserControlInternal): new method
  1134. that allows initialization without a page.
  1135. * UserControlParser.cs (ProcessMainAttributes): for 2.0 handle
  1136. MasterPageFile attributes, so we can have nested master pages.
  1137. (MasterPageFile): add a 2.0 specific property.
  1138. * TemplateControlParser.cs: in .net 2.0, our base class is
  1139. BaseTemplateParser.
  1140. (HandleOptions): be consistent and call base.HandleOptions.
  1141. * BaseTemplateParser.cs: new (stubbed) class.
  1142. * MasterPageControlBuilder.cs: new file, not filled in (and really
  1143. not used either.)
  1144. * Page.cs (InternalProcessRequest): call ApplyMasterPage.
  1145. (SaveExistingContentTemplates): nuke.
  1146. (ReapplyExistingContentTemplate): nuke.
  1147. (ApplyMasterPage): if we have a master page, call
  1148. MasterPage.ApplyMasterPageRecursive with it and add it to our
  1149. controls.
  1150. (set_MasterPageFile): remove call to SaveExistingContentTemplates.
  1151. (get_Master): call MasterPage.CreateMasterPage.
  1152. (AddContentTemplate): keep track of the page's content templates
  1153. in a local Hashtable - they aren't our master page's content
  1154. templates.
  1155. 2006-02-01 Chris Toshok <[email protected]>
  1156. * TemplateParser.cs: CONFIGURATION_2_0 => NET_2_0, and replace
  1157. calls to GetWebApplicationSection with GetSection.
  1158. * SimpleWebHandlerParser.cs: same.
  1159. * Page.cs: same.
  1160. * PageParser.cs: same.
  1161. * BaseParser.cs: same.
  1162. 2006-01-27 Chris Toshok <[email protected]>
  1163. * MasterPage.cs (ContentTemplatesInternal): add get/set for the
  1164. actual Hashtable.
  1165. * Page.cs (SaveExistingContentTemplates): store off the existing
  1166. MasterPage content templates so they can be reapplied when setting
  1167. MasterPageFile to something else.
  1168. (ReapplyExistingContentTemplates): set masterPage's
  1169. ContentTemplates to our saved copy.
  1170. (set_MasterPageFile): save off the current content templates
  1171. before clearing masterPage.
  1172. (get_Master): reapply the saved content templates after we create
  1173. the new MasterPage.
  1174. 2006-01-25 Chris Toshok <[email protected]>
  1175. * ClientScriptManager.cs (RegisterClientScriptResource): last
  1176. patch, I swear. How can 1 line of code have 3 bugs?
  1177. 2006-01-25 Chris Toshok <[email protected]>
  1178. * ClientScriptManager.cs (RegisterClientScriptResource): gah, fix
  1179. problem with last commit - unquote "resourceName" so it uses the
  1180. parameter instead of the string constant.
  1181. 2006-01-22 Chris Toshok <[email protected]>
  1182. * RootBuilder.cs (.cctor): use a 2.0 friendly hashtable ctor to
  1183. quiet mcs.
  1184. * PageParser.cs (ProcessMainAttributes): i missed a
  1185. CONFIGURATION_2_0 block.
  1186. * BoundPropertyEntry.cs (.ctor): mark as internal to fix
  1187. corcompare.
  1188. 2006-01-18 Konstantin Triger <[email protected]>
  1189. * ObjectStateFormatter.cs: preserve emptiness in ColorFormatter.
  1190. 2006-01-18 Konstantin Triger <[email protected]>
  1191. * HtmlTextWriter.cs: perform case insensitive compare;
  1192. return correct key in default case.
  1193. 2006-01-11 Chris Toshok <[email protected]>
  1194. * ClientScriptManager.cs (RegisterClientScriptResource):
  1195. implement.
  1196. 2006-01-11 Vladimir Krasnov <[email protected]>
  1197. * ObjectStateFormatter.cs: Removed TARGET_JVM parts in
  1198. TypeFormatter.Read
  1199. 2006-01-10 Chris Toshok <[email protected]>
  1200. * Page.cs (ValidateCollection): in NET_2_0 if event validation is
  1201. off, return true.
  1202. 2006-01-09 Chris Toshok <[email protected]>
  1203. * Page.cs: fix a lot of indentation, and add the
  1204. EnableEventValidation .net 2.0 property.
  1205. 2006-01-09 Vladimir Krasnov <[email protected]>
  1206. * ObjectStateFormatter.cs: Merged TARGET_JVM parts in
  1207. TypeFormatter.Read, TypeFormatter.Write from /main/5
  1208. 2006-01-09 Konstantin Triger <[email protected]>
  1209. * Page.cs: make ProcessRequest virtual under TARGET_JVM.
  1210. 2006-01-04 Chris Toshok <[email protected]>
  1211. * TemplateParser.cs (.ctor): kinda gross, but handle the
  1212. AddAssembliesInBin case here.
  1213. * SimpleWebHandlerParser.cs (.ctor): same.
  1214. 2006-01-04 Chris Toshok <[email protected]>
  1215. * SimpleWebHandlerParser.cs: Remove the declaration of
  1216. compilationConfig in the CONFIGURATION_2_0 case. it's
  1217. unnecessary.
  1218. (.ctor): ifdef out the AddAssembliesInBin call in the
  1219. CONFIGURATION_2_0 case. need to revisit this.
  1220. (CompilationConfig): add a CONFIGURATION_2_0 version.
  1221. * BaseParser.cs: Remove the declaration of compilationConfig in
  1222. the CONFIGURATION_2_0 case. it's unnecessary.
  1223. 2005-12-08 Gonzalo Paniagua Javier <[email protected]>
  1224. * Control.cs: use _controls instead of the property wherever possible.
  1225. 2005-12-05 Gonzalo Paniagua Javier <[email protected]>
  1226. * Control.cs: use the _controls field instead of the Controls property.
  1227. Fixes bug #76919.
  1228. 2005-11-30 Sebastien Pouliot <[email protected]>
  1229. * KeyedList.cs: Fixed for IOrderedDictionary change in 2.0 final.
  1230. Now internal.
  1231. * KeyedListEnumerator.cs: Now internal.
  1232. 2005-11-29 Gonzalo Paniagua Javier <[email protected]>
  1233. * ControlCollection.cs: allow 'null' in Remove.
  1234. 2005-11-28 Chris Toshok <[email protected]>
  1235. * Page.cs (GetFormatter): CONFIGURATION_2_0 work.
  1236. * TemplateParser.cs (..ctor): CONFIGURATION_2_0 work.
  1237. (PagesConfig): add a CONFIGURATION_2_0 version that returns a
  1238. PagesSection.
  1239. * PageParser.cs (ProcessMainAttributes): CONFIGURATION_2_0 work.
  1240. * BaseParser.cs (CompilationConfig): add a CONFIGURATION_2_0
  1241. version that returns a CompilationSection.
  1242. 2005-11-22 Gonzalo Paniagua Javier <[email protected]>
  1243. * SimpleWebHandlerParser.cs: removed 'codebehind' related stuff.
  1244. 2005-11-09 Chris Toshok <[email protected]>
  1245. * ViewStateEncryptionMode.cs: new 2.0 enum.
  1246. 2005-11-08 Gonzalo Paniagua Javier <[email protected]>
  1247. * TemplateParser.cs: fixes #76423. Not tested properly.
  1248. 2005-11-07 Gonzalo Paniagua Javier <[email protected]>
  1249. * Page.cs: call LoadViewStateRecursive when the Form collection has
  1250. not been used by a different page (GetTypeHashCode). This fixes problems
  1251. when calling Server.Transfer while preserving Form and QueryString,
  1252. as the page we transfer to used the view state stored in the Form, which
  1253. contained the serialized data for the page calling Server.Transfer
  1254. instead.
  1255. 2005-10-31 Gonzalo Paniagua Javier <[email protected]>
  1256. * Page.cs: add/remove the error before/after invoking OnError.
  1257. 2005-10-27 Gonzalo Paniagua Javier <[email protected]>
  1258. * Page.cs: call OnError when there's an exception (not for TAE). Fixes
  1259. bug #76572.
  1260. 2005-10-25 Gonzalo Paniagua Javier <[email protected]>
  1261. * TemplateControl.cs:
  1262. * PartialCachingControl.cs: if a control is cacheable, LoadControl
  1263. returns a PartialCachingControl that holds the VaryBy* and takes care
  1264. of partial caching and rendering. Fixes bug #76547.
  1265. 2005-10-17 Gonzalo Paniagua Javier <[email protected]>
  1266. * Page.cs: don't cache the 'Validate()' results. IsValid retests
  1267. the validators again.
  1268. 2005-09-29 Gonzalo Paniagua Javier <[email protected]>
  1269. * DesignerDataBoundLiteralControl.cs: changed autoid api.
  1270. * DataBoundLiteralControl.cs: changed autoid api.
  1271. * Control.cs: fixlet for UniqueID and weird test case. Removed
  1272. PreventAutoID and only use the property to set that value.
  1273. * LiteralControl.cs: changed autoid api.
  1274. 2005-09-28 Gonzalo Paniagua Javier <[email protected]>
  1275. * AttributeCollection.cs: avoid code duplication and
  1276. don't add "style" to the bag, or it will overwrite the settings made
  1277. by CssStyleCollection.
  1278. * CssStyleCollection.cs: make it throw where MS throws.
  1279. Minimize the number of times we create the "style" string and take
  1280. care of updating it for the AttributeCollection. FillStyle and
  1281. BagToString are now private. One should use the 2.0 (internal in <2.0)
  1282. Value property.
  1283. 2005-09-28 Gonzalo Paniagua Javier <[email protected]>
  1284. * Control.cs: fix HasChildViewStates.
  1285. 2005-09-27 Gonzalo Paniagua Javier <[email protected]>
  1286. * LosFormatter.cs: when the default ctor is used, MAC is disabled.
  1287. Fixes bug #76240.
  1288. 2005-09-27 Gonzalo Paniagua Javier <[email protected]>
  1289. * ObjectTagBuilder.cs: only fail when no id and no attributes.
  1290. 2005-09-23 Sebastien Pouliot <[email protected]>
  1291. * DataBindingCollection.cs: Using an hashtable is a nice trick but
  1292. we need to copy values (not the DictionaryEntry) in CopyTo.
  1293. * Page.cs: IsValid throws an exception if the page hasn't be
  1294. validated. VerifyRenderingInServerForm doesn't throw an exception
  1295. during unit testing (without a context?) but does in normal ops.
  1296. 2005-09-23 Gonzalo Paniagua Javier <[email protected]>
  1297. * LosFormatter.cs: the exceptions thrown have a 500 httpCode. Really
  1298. save the allocation of new MemoryStreams when possible. Thanks to
  1299. Sebastien again.
  1300. 2005-09-23 Ben Maurer <[email protected]>
  1301. * HtmlTextWriter.cs: Initial support for escaping.
  1302. 2005-09-23 Gonzalo Paniagua Javier <[email protected]>
  1303. * ViewStateOutputHashStream.cs: Removed. It didn't last long.
  1304. * Page.cs: almost restored to its previous state, but now that we found
  1305. that LosFormatter ctor that takes 'enableMac', moved the logic to
  1306. add the hash and validate there. Thanks to Sebastien for his input.
  1307. * LosFormatter.cs: implemented the missing ctors and support for
  1308. "MAC" validation of the data.
  1309. 2005-09-23 Gonzalo Paniagua Javier <[email protected]>
  1310. * Page.cs:
  1311. * ViewStateOutputHashStream.cs: added support for viewstate MAC. It
  1312. prevents the viewstate being altered on the client and it's disabled
  1313. by default as per the documentation, but MS machine.config has it
  1314. enabled in machine.config.
  1315. 2005-09-22 Miguel de Icaza <[email protected]>
  1316. * DataBindingCollection.cs: Raise the event, remove MonoTODO.
  1317. * MinimizableAttributeTypeConverter.cs: Fix warning, compare to a
  1318. string.
  1319. 2005-09-21 Sebastien Pouliot <[email protected]>
  1320. * Control.cs: Added null checks for Trace as it can be null when
  1321. rendering (like it was for 39 unit tests).
  1322. 2005-09-21 Gonzalo Paniagua Javier <[email protected]>
  1323. * Page.cs: reverted hacks used with the wrong method of getting a
  1324. control rendered size.
  1325. * Control.cs: if the trace is enabled, save control rendered size.
  1326. 2005-09-19 Sebastien Pouliot <[email protected]>
  1327. * Page.cs: Remove references to IPageParser (removed from 2.0 RC). We
  1328. now use HtmlHeader directly.
  1329. * UrlPropertyAttribute.cs: Removed AllowedTypes property (2.0 RC) and
  1330. rewrote Equals to avoid dual type cast.
  1331. 2005-09-19 Sebastien Pouliot <[email protected]>
  1332. * SupportsEventValidationAttribute.cs: New attribute added in 2.0 RC.
  1333. 2005-09-19 Sebastien Pouliot <[email protected]>
  1334. * ControlBuilder.cs: Added BuildObject override for 2.0 profile.
  1335. * TagPrefixAttribute.cs: Added LinkDemand for AspNetHostingPermission
  1336. with Minimal level. Fixed checks on ctor.
  1337. * TemplateBuilder.cs: Added LinkDemand and InheritanceDemand for
  1338. AspNetHostingPermission with Minimal level.
  1339. * TemplateContainerAttribute.cs: Added LinkDemand for
  1340. AspNetHostingPermission with Minimal level.
  1341. * TemplateControl.cs: Added LinkDemand and InheritanceDemand for
  1342. AspNetHostingPermission with Minimal level. Fixed checks/exceptions.
  1343. Stubbed IFilterResolutionService for CAS testing.
  1344. * TemplateControlParser.cs: Added LinkDemand and InheritanceDemand for
  1345. AspNetHostingPermission with Minimal level.
  1346. * TemplateParser.cs: Added LinkDemand and InheritanceDemand for
  1347. AspNetHostingPermission with Minimal level.
  1348. * ThemeableAttribute.cs: Added LinkDemand for AspNetHostingPermission
  1349. with Minimal level. Removed IDispose interface.
  1350. * ToolboxDataAttribute.cs: Added LinkDemand for
  1351. AspNetHostingPermission with Minimal level. Fixed IsDefaultAttribute
  1352. to work on both 1.x and 2.0 profiles.
  1353. * Triplet.cs: Added LinkDemand and (only for 1.x) InheritanceDemand
  1354. for AspNetHostingPermission with Minimal level.
  1355. * UserControl.cs: Added LinkDemand and InheritanceDemand for
  1356. AspNetHostingPermission with Minimal level. Stubbed
  1357. IFilterResolutionService for CAS testing.
  1358. * UserControlControlBuilder.cs: Added LinkDemand and InheritanceDemand
  1359. for AspNetHostingPermission with Minimal level.
  1360. * ValidationPropertyAttribute.cs: Added LinkDemand for
  1361. AspNetHostingPermission with Minimal level.
  1362. * ValidatorCollection.cs: Added LinkDemand for AspNetHostingPermission
  1363. with Minimal level.
  1364. * WebResourceAttribute.cs: Removed extra ctor and added setter to
  1365. PerformSubstitution.
  1366. * WebServiceParser.cs: Added LinkDemand and InheritanceDemand for
  1367. AspNetHostingPermission with Minimal level.
  1368. 2005-09-15 Sebastien Pouliot <[email protected]>
  1369. * ParseChildrenAttribute.cs: Added LinkDemand for
  1370. AspNetHostingPermission with Minimal level. Simplified Equals to avoid
  1371. casting. Added new ctor and public fields (2.0). Changed
  1372. ChildControlType setter visibility to internal.
  1373. * PartialCachingAttribute.cs: Added LinkDemand for
  1374. AspNetHostingPermission with Minimal level. Added new ctor and
  1375. SqlDependency property (2.0).
  1376. * PartialCachingControl.cs: Added LinkDemand and InheritanceDemand for
  1377. AspNetHostingPermission with Minimal level.
  1378. * PersistenceModeAttribute.cs: Added LinkDemand for
  1379. AspNetHostingPermission with Minimal level. Simplified Equals to avoid
  1380. casting.
  1381. * PersistChildrenAttribute.cs: Added LinkDemand for
  1382. AspNetHostingPermission with Minimal level. Simplified Equals to avoid
  1383. casting.
  1384. * PropertyConverter.cs: Added LinkDemand for AspNetHostingPermission
  1385. with Minimal level. Class is static in 2.0.
  1386. * RootBuilder.cs: Added LinkDemand and, for 2.0, InheritanceDemand for
  1387. AspNetHostingPermission with Minimal level. Class is no more sealed in
  1388. 2.0. Added new (2.0) BuiltObjects property.
  1389. * SimpleWebHandlerParser.cs: Added LinkDemand and InheritanceDemand
  1390. for AspNetHostingPermission with Minimal level.
  1391. * StateItem.cs: Added LinkDemand for AspNetHostingPermission with
  1392. Minimal level.
  1393. * StateBag.cs: Added LinkDemand for AspNetHostingPermission with
  1394. Minimal level. Removed SetDirty() which was called (2.0) but did
  1395. nothing.
  1396. * StaticPartialCachingControl.cs: Added LinkDemand and
  1397. InheritanceDemand for AspNetHostingPermission with Minimal level.
  1398. 2005-09-15 Sebastien Pouliot <[email protected]>
  1399. * Html32TextWriter.cs: Added LinkDemand and InheritanceDemand for
  1400. AspNetHostingPermission with Minimal level. Added new 2.0 properties
  1401. (but the generated HTML doesn't use them).
  1402. * HtmlTextWriter.cs: Added LinkDemand and InheritanceDemand for
  1403. AspNetHostingPermission with Minimal level.
  1404. * ImageClickEventArgs.cs: Added LinkDemand for AspNetHostingPermission
  1405. with Minimal level.
  1406. * LiteralControl.cs: Added LinkDemand and InheritanceDemand for
  1407. AspNetHostingPermission with Minimal level. Default Text is null.
  1408. * LosFormatter.cs: Added LinkDemand and InheritanceDemand for
  1409. AspNetHostingPermission with Minimal level. Stubbed new 2.0 ctor.
  1410. * ObjectConverter.cs: Added LinkDemand and InheritanceDemand for
  1411. AspNetHostingPermission with Minimal level. Obsoleted ctor for 2.0.
  1412. * ObjectTagBuilder.cs: Added LinkDemand for AspNetHostingPermission
  1413. with Minimal level. Added check for null id (HttpException).
  1414. * Page.cs: Added LinkDemand and InheritanceDemand for
  1415. AspNetHostingPermission with Minimal level. Throw some HttpException
  1416. when no context is available.
  1417. * Pair.cs: Added LinkDemand for AspNetHostingPermission with Minimal
  1418. level. InheritanceDemand too for 1.x.
  1419. * PageParser.cs: Added LinkDemand for AspNetHostingPermission with
  1420. Minimal level.
  1421. 2005-09-14 Sebastien Pouliot <[email protected]>
  1422. * DataBinder.cs: Added LinkDemand for AspNetHostingPermission with
  1423. Minimal level. Fixed some exceptions.
  1424. * DataBindingCollection.cs: Added LinkDemand for
  1425. AspNetHostingPermission with Minimal level. Added 2.0 method and
  1426. event.
  1427. * DataBindingHandlerAttribute.cs: Added LinkDemand for
  1428. AspNetHostingPermission with Minimal level.
  1429. * DataBinding.cs: Added LinkDemand for AspNetHostingPermission with
  1430. Minimal level. Simplified Equals (reduced casts).
  1431. * DataBoundLiteralControl.cs: Added LinkDemand for
  1432. AspNetHostingPermission with Minimal level. Implemented ITextControl
  1433. for 2.0.
  1434. * DesignerDataBoundLiteralControl.cs: Added LinkDemand for
  1435. AspNetHostingPermission with Minimal level.
  1436. * DesignTimeParseData.cs: Added LinkDemand for AspNetHostingPermission
  1437. with Minimal level. Added new 2.0 properties.
  1438. * DesignTimeTemplateParser.cs: Added LinkDemand for
  1439. AspNetHostingPermission with Minimal level. Made class static and
  1440. stubbed missing methods (2.0).
  1441. * EmptyControlCollection.cs: Added LinkDemand and InheritanceDemand
  1442. for AspNetHostingPermission with Minimal level. Changed Add* methods
  1443. exceptions to HttpException.
  1444. 2005-09-14 Sebastien Pouliot <[email protected]>
  1445. * AttributeCollection.cs: Added LinkDemand for AspNetHostingPermission
  1446. with Minimal level.
  1447. * BaseParser.cs: Added LinkDemand and InheritanceDemand for
  1448. AspNetHostingPermission with Minimal level.
  1449. * BasePartialCachingControl.cs: Added LinkDemand and InheritanceDemand
  1450. for AspNetHostingPermission with Minimal level.
  1451. * CompiledTemplateBuilder.cs: Added LinkDemand for
  1452. AspNetHostingPermission with Minimal level.
  1453. * ConstructorNeedsTagAttribute.cs: Added LinkDemand for
  1454. AspNetHostingPermission with Minimal level.
  1455. * ControlBuilderAttribute.cs: Added LinkDemand for
  1456. AspNetHostingPermission with Minimal level. Simplified Equals and
  1457. IsDefaultAttribute.
  1458. * ControlBuilder.cs: Added LinkDemand and InheritanceDemand for
  1459. AspNetHostingPermission with Minimal level.
  1460. * ControlCachePolicy.cs: Hided ctor and removed SupportsCaching setter
  1461. * ControlCollection.cs: Added LinkDemand and InheritanceDemand for
  1462. AspNetHostingPermission with Minimal level. Fixed possible stack
  1463. overflow in Add* methods. Fixed CopyTo as we're not allocating the
  1464. array based on the number of items.
  1465. * Control.cs: Added LinkDemand and InheritanceDemand for
  1466. AspNetHostingPermission with Minimal level. Fixed 2.0 signatures.
  1467. * CssStyleCollection.cs: Added LinkDemand for AspNetHostingPermission
  1468. with Minimal level.
  1469. * IStyleSheet.cs: Fixed parameter orders (2.0).
  1470. 2005-09-10 Gonzalo Paniagua Javier <[email protected]>
  1471. * TemplateParser.cs: default VS 2005 pages are compiled fine now.
  1472. 2005-09-07 Chris Toshok <[email protected]>
  1473. * MinimizableAttributeTypeConverter.cs: new class, whose existence
  1474. we know about because of corcompare, and for whose implementation
  1475. we have exclusively nunit to thank.
  1476. 2005-09-06 Chris Toshok <[email protected]>
  1477. * RootBuilder.cs (.cctor): doh, add all the new html controls
  1478. here.
  1479. 2005-08-31 Chris Toshok <[email protected]>
  1480. * DataSourceSelectArguments.cs (Empty): this is apparently,
  1481. according to corcompare, a property, not a field. go figure.
  1482. (Equals): implement.
  1483. (IsEmpty): remove all mention of it.
  1484. 2005-08-29 Chris Toshok <[email protected]>
  1485. * StateBag.cs (GetChar): add.
  1486. 2005-08-28 Chris Toshok <[email protected]>
  1487. * Page.cs: more random corcompare work.
  1488. (PageAdapter): implement.
  1489. 2005-08-28 Chris Toshok <[email protected]>
  1490. * Page.cs (.ctor): set our initial ID to "__Page".
  1491. (SmartNavigation): obsolete in 2.0.
  1492. (FindControl): new implementation. Just check our own ID against
  1493. the control we're looking for. otherwise pass it along to
  1494. base.FindControl.
  1495. (GetPostBackClientHyperlink): obsolete in 2.0.
  1496. 2005-08-28 Chris Toshok <[email protected]>
  1497. * ClientScriptManager.cs: public sealed in 2.0
  1498. * IAdaptableTextWriter.cs: new 2.0 interface.
  1499. * IHierarchyData.cs: fix return type for GetParent.
  1500. 2005-08-28 Chris Toshok <[email protected]>
  1501. * Pair.cs: mark serializable and sealed in 2.0.
  1502. 2005-08-26 Sebastien Pouliot <[email protected]>
  1503. * CssStyleCollection.cs: Implemented setter for Value (2.0) using the
  1504. existing (but internal) FillStyle method. Rewrote BagToString to use an
  1505. HtmlTextWriter so we get the "right" format for background-image url.
  1506. 2005-08-26 Sebastien Pouliot <[email protected]>
  1507. * CssStyleCollection.cs: Implemented this[HtmlTextWriterStyle],
  1508. Remove(HtmlTextWriterStyle) and the getter for Value (all 2.0). Removed
  1509. the extra space from last patch because they break some unit tests.
  1510. 2005-08-26 Lluis Sanchez Gual <[email protected]>
  1511. * CssStyleCollection.cs: Added some spacing.
  1512. * HtmlTextWriter.cs: Made style and attribute tables static.
  1513. Implemented StaticGetStyleName().
  1514. 2005-08-26 Sebastien Pouliot <[email protected]>
  1515. * CssStyleCollection.cs: Stubbed new 2.0 stuff to allow TableStyleTest
  1516. compilation.
  1517. * HtmlTextWriter.cs: Fix style rendering for BackgroundImage in 2.0.
  1518. The new rendering formats the value as "url(" + original + ")".
  1519. 2005-08-26 Sebastien Pouliot <[email protected]>
  1520. * HtmlTextWriter.cs: Added support for VerticalAlign style (as it
  1521. depends on the HtmlTextWriterStyle ordering).
  1522. 2005-08-26 Gonzalo Paniagua Javier <[email protected]>
  1523. * HtmlTextWriter.cs: remove 'mistaken end of statement' and FIXME.
  1524. 2005-08-25 Sebastien Pouliot <[email protected]>
  1525. * HtmlTextWriterStyle.cs: Added missing VerticalAlign in 2.0 (which
  1526. fixed the rest of the enum values).
  1527. * UrlPropertyAttribute.cs: Removed the .ctor accepting an UrlTypes
  1528. parameter to match 2.0 API. Added a setter to the AllowedTypes
  1529. property.
  1530. 2005-08-24 Chris Toshok <[email protected]>
  1531. * Control.cs (get_Adapter): Instead of throwing an exception, just
  1532. return null, so we can write the rest of the Control specific
  1533. Adapter code and just not enable any of those code paths until we
  1534. have actual adapters. Also flag TODO.
  1535. (EnsureChildControls): Call out to Adapter.CreateChildControls if
  1536. we have an adapter.
  1537. (RenderChildren): call "RenderControl (writer, adapter)" if we
  1538. have an adapter.
  1539. (RenderControl): implement the adapter case naively.
  1540. (LoadRecursive): call out to Adapter.OnLoad if we have one.
  1541. (PreRenderRecursiveInternal): call out to Adapter.OnPrerender if
  1542. we have one.
  1543. (InitRecursive): call out to Adapter.OnInit if we have one.
  1544. 2005-08-24 Chris Toshok <[email protected]>
  1545. * Page.cs (GetPostBackEventReference): track change to
  1546. ClientScriptManager and don't call a removed method.
  1547. * ClientScriptManager.cs: track more recent docs and corcompare
  1548. output.
  1549. 2005-08-24 Sebastien Pouliot <[email protected]>
  1550. * KeyedList.cs: Fixed bug when removing an unexisting object.
  1551. * StateManagedCollection.cs: Fixed API for beta2. Fixed buglets found
  1552. in implementing RoleGroupCollection.
  1553. 2005-08-22 Sebastien Pouliot <[email protected]>
  1554. * Page.cs: Use Control property (and not the _control variable) to get
  1555. the User (so the virtual Control property can be overriden properly).
  1556. Sadly this doesn't seems to be the case for other properties (like
  1557. Request).
  1558. 2005-08-18 Dick Porter <[email protected]>
  1559. * ControlCachePolicy.cs, PersistChildrenAttribute.cs,
  1560. UserControl.cs, DesignerDataBoundLiteralControl.cs,
  1561. PageStatePersister.cs, DataBoundLiteralControl.cs, Control.cs,
  1562. BasePartialCachingControl.cs, LiteralControl.cs: 2.0 API fixes and
  1563. stubs and attribute fixes
  1564. 2005-08-13 Sebastien Pouliot <[email protected]>
  1565. * Control.cs: Add protected virtual SetDesignModeState, in 2.0
  1566. profile, as this is required for the Login control.
  1567. 2005-08-11 Dick Porter <[email protected]>
  1568. * CssStyleCollection.cs: Tweak the css string format to pass a
  1569. unit test
  1570. * AttributeCollection.cs: Don't NRE if someone sets the "style"
  1571. attribute to null.
  1572. 2005-08-05 Ben Maurer <[email protected]>
  1573. * HtmlTextWriter.cs: Revert the patch below, see test case
  1574. 2005-08-05 Dick Porter <[email protected]>
  1575. * HtmlTextWriter.cs: Make <option> tags render inline, to match
  1576. the ms output
  1577. 2005-08-03 Ben Maurer <[email protected]>
  1578. * HtmlTextWriter.cs: Optmize this not to do insane amounts of
  1579. allocation for large pages, etc.
  1580. 2005-07-30 Chris Toshok <[email protected]>
  1581. * Page.cs (VerifyRenderingInServerForm): copy MS's error message
  1582. since our form-errors jsunit tests depend on it.
  1583. 2005-07-30 Chris Toshok <[email protected]>
  1584. * DataBinder.cs (FormatResult): make internal, not private.
  1585. 2005-07-29 Ben Maurer <[email protected]>
  1586. * StateBag.cs: Don't remove when tracking viewstate, as per msft
  1587. docs.
  1588. 2005-07-29 Ben Maurer <[email protected]>
  1589. * StateBag.cs: Actually *remove* items that are null. Duh.
  1590. 2005-07-21 Peter Dennis Bartok <[email protected]>
  1591. * Page.cs: Need to throw exception when accessing Request but no
  1592. context exists
  1593. 2005-07-20 Chris Toshok <[email protected]>
  1594. * ClientScriptManager.cs (GetClientValidationEvent): the JS we
  1595. stick in onclick handlers for buttons/links/etc.
  1596. * Page.cs (GetSubmitStatements): new function to return
  1597. scriptManager.WriteSubmitStatements. Used by HtmlForm.
  1598. (AreValidatorsUplevel): used by many of the button/linkbutton
  1599. controls (the ones that can CauseValidation) to tell whether or
  1600. not to emit client side validation calls.
  1601. 2005-07-20 Chris Toshok <[email protected]>
  1602. * WebResourceAttribute.cs: make internal (and available) in
  1603. !NET_2_0.
  1604. 2005-07-20 Chris Toshok <[email protected]>
  1605. * ClientScriptManager.cs (GetWebResourceUrl): make internal (but
  1606. available) in !NET_2_0.
  1607. 2005-07-18 Peter Dennis Bartok <[email protected]>
  1608. * Control.cs: Added IDataBindingsAccessor interface methods
  1609. 2005-07-18 Ben Maurer <[email protected]>
  1610. * HtmlTextWriter.cs: Fix nested indentation
  1611. 2005-07-18 Peter Dennis Bartok <[email protected]>
  1612. * Control.cs: Added missing IParserAccessor.AddParsedSubObject
  1613. interface method
  1614. 2005-07-18 Ben Maurer <[email protected]>
  1615. * HtmlTextWriter.cs: Fix indentation (somewhat at least)
  1616. 2005-07-18 Peter Dennis Bartok <[email protected]>
  1617. * Control.cs:
  1618. - Default name for controls on MS.Net is "_ctl" not "_ctrl"
  1619. - MS does not append 'a' for auto-generated names
  1620. 2005-07-17 Ben Maurer <[email protected]>
  1621. * AttributeCollection.cs: Use the invariant culture.
  1622. * StateBag.cs: "Duh" optimization: return null when there are no
  1623. dirty items in the view state
  1624. 2005-07-14 Ben Maurer <[email protected]>
  1625. * StateBag.cs: A "short" version of my favorite method.
  1626. * HtmlTextWriter.cs: New method to get the tag name staticly.
  1627. 2005-07-14 Duncan Mak <[email protected]>
  1628. * DataBindingHandlerAttribute.cs: Fixed after receiving some
  1629. comments from Gonzalo.
  1630. 2005-07-13 Jackson Harper <[email protected]>
  1631. * PropertyConverter.cs: No public constructors.
  1632. 2005-07-13 Ben Maurer <[email protected]>
  1633. * HtmlTextWriter.cs: Remove debugging spew. Style cleanup
  1634. 2005-07-12 Ben Maurer <[email protected]>
  1635. * HtmlTextWriter.cs: Make styles work.
  1636. 2005-07-11 Peter Dennis Bartok <[email protected]>
  1637. * AttributeCollection.cs:
  1638. - Changes to match MS behaviour, the "style" attribute is always
  1639. added to the list, in addition to being added to the
  1640. CssStyleCollection. Also added check for "style" attribute when
  1641. setting via index setter
  1642. - When "Style" attribute is added, CssStyleCollection is
  1643. automatically created
  1644. - The style keyword needs to be lowercase
  1645. 2005-07-11 Ben Maurer <[email protected]>
  1646. * HtmlTextWriter.cs: Missing a PopEndTag here.
  1647. * PropertyConverter.cs: Pass tests
  1648. 2005-07-09 Miguel de Icaza <[email protected]>
  1649. * DataBindingHandlerAttribute.cs: Create the "Default" property.
  1650. 2005-07-09 Duncan Mak <[email protected]>
  1651. * DataBindingHandlerAttribute.cs: Implemented.
  1652. 2005-07-08 Ben Maurer <[email protected]>
  1653. * HtmlTextWriter.cs: Much better compliance with msft
  1654. 2005-07-08 Jackson Harper <[email protected]>
  1655. * ToolbarDataAttribute.cs: New implementation.
  1656. 2005-07-07 Jackson Harper <[email protected]>
  1657. * PropertyConverter.cs: New implementation.
  1658. 2005-07-07 Ben Maurer <[email protected]>
  1659. * StateBag.cs: Noticed an issue where SetDirty was called when the
  1660. key did not exist.
  1661. 2005-07-07 Ben Maurer <[email protected]>
  1662. * StateBag.cs: Add a method that gets a string or else a default
  1663. value.
  1664. 2005-07-07 Dick Porter <[email protected]>
  1665. * StateBag.cs: Added internal SetDirty (void) method to fix the
  1666. build
  1667. 2005-07-07 Sebastien Pouliot <[email protected]>
  1668. * HtmlTextWriter.cs: Small fixlet when attribute has no value.
  1669. 2005-07-07 Miguel de Icaza <[email protected]>
  1670. * HtmlTextWriter.cs: Return the stuff in lowercase to pass the
  1671. tests.
  1672. * StateBag.cs: Add NET_2_0 SetDirty method to get the build
  1673. going.
  1674. 2005-07-07 Sebastien Pouliot <[email protected]>
  1675. * HtmlTextWriter.cs: Small fixlet (required for the unit tests).
  1676. 2005-07-06 Ben Maurer <[email protected]>
  1677. * HtmlTextWriter.cs: Make sure to clear attributes when they are
  1678. written.
  1679. * StateBag.cs: New impl
  1680. 2005-06-25 Gonzalo Paniagua Javier <[email protected]>
  1681. * Page.cs:
  1682. * Control.cs: avoid the creation of the EventHandlerList and accessing
  1683. to it whenever possible. Fix ENABLE_THEMING constant.
  1684. 2005-06-25 Gonzalo Paniagua Javier <[email protected]>
  1685. * TemplateParser.cs:
  1686. * TemplateControlParser.cs:
  1687. * UserControlParser.cs: detect circular references when a control tries
  1688. to register itself as a tag. Fixes bug #75376.
  1689. 2005-06-14 Gonzalo Paniagua Javier <[email protected]>
  1690. * PageParser.cs: don't try to compile the master page if it wan't
  1691. provided. Use MapPath from the base classes instead of the long
  1692. version. Fixes bug #75269 that prevented xsp2 from working properly.
  1693. 2005-06-13 Lluis Sanchez Gual <[email protected]>
  1694. * MasterPage.cs: Clear the default content of placeholders before
  1695. adding the page content. Fixes bug #75193.
  1696. 2005-06-13 Lluis Sanchez Gual <[email protected]>
  1697. * PageParser.cs: Added MasterType property. Get the type from the
  1698. MasterType directive.
  1699. * MasterPageParser.cs: Added GetCompiledMasterType method.
  1700. 2005-06-08 Gonzalo Paniagua Javier <[email protected]>
  1701. * UserControl.cs:
  1702. * Page.cs:
  1703. * Control.cs: updates for 1.1 SP1
  1704. 2005-06-06 Lluis Sanchez Gual <[email protected]>
  1705. * Control.cs: Added new DataBind() overload for 2.0. The old
  1706. method calls this new overload.
  1707. 2005-06-04 Gonzalo Paniagua Javier <[email protected]>
  1708. * TemplateParser.cs: ignore empty assembly.Location for in-memory
  1709. generated assemblies.
  1710. 2005-06-04 Gonzalo Paniagua Javier <[email protected]>
  1711. * Page.cs: added AddContentTemplate method.
  1712. 2005-05-26 Gonzalo Paniagua Javier <[email protected]>
  1713. * AttributeCollection.cs: html-encode attribute values. Fixes
  1714. bug #73771.
  1715. 2005-05-26 Lluis Sanchez Gual <[email protected]>
  1716. * DataSourceView.cs: Fix api.
  1717. * NonVisualControlAttribute.cs: Implemented.
  1718. * IDataItemContainer.cs: Added missing properties.
  1719. * Control.cs: Added new EnableTheming and SkinID properties.
  1720. * HierarchicalDataSourceControl.cs: Implemented missing methods.
  1721. 2005-05-13 Lluis Sanchez Gual <[email protected]>
  1722. * ControlCollection.cs: Added internal setter for ReadOnly.
  1723. 2005-05-09 Geoff Norotn <[email protected]>
  1724. * TemplateParser.cs: Silently remove the CodeFile attribute that ASP.NET 2.0
  1725. uses instead of codebehind.
  1726. 2005-05-08 Gonzalo Paniagua Javier <[email protected]>
  1727. * Page.cs: as setting CurrentCulture is slow, don't set it if the
  1728. culture has not changed since before the page started processing.
  1729. 2005-05-06 Gonzalo Paniagua Javier <[email protected]>
  1730. * TemplateParser.cs: LoadWithPartialName returns null if the assembly is
  1731. not found.
  1732. 2005-04-25 Gonzalo Paniagua Javier <[email protected]>
  1733. * TemplateParser.cs:
  1734. * SimpleWebHandlerParser.cs: removed values assigned and neved used.
  1735. 2005-04-22 Gonzalo Paniagua Javier <[email protected]>
  1736. * SimpleWebHandlerParser.cs:
  1737. * TemplateParser.cs: always get the location (full path) for assemblies,
  1738. even the ones from the GAC.
  1739. * BaseCompiler.cs: check that DynamicBase directory exists before
  1740. creating the TempFileCollection.
  1741. 2005-04-22 Lluis Sanchez Gual <[email protected]>
  1742. * ClientScriptManager.cs: Use a linked list instead of a Hashtable
  1743. to store the scripts. In this way, scripts will be rendered in the
  1744. same order as they have been registered. It shouldn't be slower
  1745. since pages don't have many scripts.
  1746. 2005-04-21 Lluis Sanchez Gual <[email protected]>
  1747. * IEditableTextControl.cs: Implemented.
  1748. * DataBinder.cs: Marked constructor as obsolete in 2.0.
  1749. In GetDataItem, check for the IDataItemContainer interface
  1750. in the container.
  1751. * TemplateControl.cs: Improved check for data item.
  1752. 2005-04-21 Gonzalo Paniagua Javier <[email protected]>
  1753. * TemplateParser.cs: we still need LoadWithPartialName if Load fails.
  1754. * Page.cs: ensure _requiresPostBack is emptied if we didn't have a copy
  1755. for second postback.
  1756. 2005-04-20 Rafael Teixeira <[email protected]>
  1757. * TemplateParser.cs: Adding support for Strict/Explicit attributes
  1758. for @Page/@Control directives as documented at
  1759. http://msdn.microsoft.com/library/en-us/cpgenref/html/cpconControlDirective.asp.
  1760. First step don't choke on them. Fixing #74671
  1761. 2005-04-20 Gonzalo Paniagua Javier <[email protected]>
  1762. * TemplateParser.cs: use Load instead of LoadWithPartialName. That was
  1763. there from the time when Load wasn't working properly. First part of the
  1764. fix to 74500.
  1765. 2005-04-15 Lluis Sanchez Gual <[email protected]>
  1766. * ControlBuilder.cs: The BindingContainerType property happens
  1767. to exist in 2.0, so I made it public. Added ParentTemplateBuilder,
  1768. which is used to get the binding container that is managing
  1769. the current two-way binding context.
  1770. * TemplateBuilder.cs: Added some methods and an internal class
  1771. to support two-way bindings.
  1772. * CompiledBindableTemplateBuilder.cs: Implemented.
  1773. * IBindableTemplate.cs: This interface inherits from ITemplate.
  1774. 2005-04-14 Lluis Sanchez Gual <[email protected]>
  1775. * ControlBuilder.cs: Added BindingContainerType property,
  1776. which works like NamingContainerType but takes into account
  1777. template builders with a specific container type (specified
  1778. using the TemplateContainerAttribute.
  1779. * StateManagedCollection.cs: Reimplemented Save/Load view
  1780. state methods. The existing implementation was not correct
  1781. in all cases.
  1782. 2005-04-08 Lluis Sanchez Gual <[email protected]>
  1783. * DataSourceView.cs: Added null check.
  1784. 2005-04-07 Lluis Sanchez Gual <[email protected]>
  1785. * TemplateControl.cs:
  1786. * Page.cs: Moved Eval and XPath from Page
  1787. to TemplateControl.
  1788. * StateManagedCollection.cs: Avoid saving null state.
  1789. 2005-04-01 Lluis Sanchez Gual <[email protected]>
  1790. * DataSourceView.cs: Rethrow exceptions not handled by operation
  1791. callbacks.
  1792. * ITextControl.cs: Removed event.
  1793. * CollectionBuilder.cs: Don't crash when a collection has more
  1794. than one indexer.
  1795. 2005-03-23 Lluis Sanchez Gual <[email protected]>
  1796. * Control.cs: Added a new internal property: HasRenderMethodDelegate.
  1797. * HtmlTextWriterAttribute.cs: Replaced wrong enum value.
  1798. * HtmlTextWriter.cs: Register new ASP.NET 2.0 attributes
  1799. 2005-03-16 Lluis Sanchez Gual <[email protected]>
  1800. * ClientScriptManager.cs: Fix build.
  1801. 2005-03-11 Lluis Sanchez Gual <[email protected]>
  1802. * Utils.cs, Control.cs: Don't use Page.GetPostBackClientEvent
  1803. since it is deprecated in 2.0.
  1804. * Page.cs: Deprecated GetPostBackClientEvent and similar methods
  1805. in 2.0. Moved callback management methods to ClientScriptManager.
  1806. * ClientScriptManager.cs: Moved here deprecated methods from Page.
  1807. In GetPostBackEventReference (PostBackOptions), don't use the
  1808. WebForm_DoPostback script if the post can be done with a simple
  1809. __doPostBack call.
  1810. * PostBackOptions.cs: Fixed default values for some properties.
  1811. 2005-03-09 Gonzalo Paniagua Javier <[email protected]>
  1812. * Control.cs: in FindControl, throw if there's more than one control
  1813. with the same ID. Fixes bug #73479.
  1814. 2005-03-04 Lluis Sanchez Gual <[email protected]>
  1815. * Page.cs: Load control state before loading view state, and the
  1816. same for saving.
  1817. * DataSourceSelectArguments.cs: Fix recursive property call.
  1818. 2005-02-25 Lluis Sanchez Gual <[email protected]>
  1819. * DataSourceView.cs: Fixed incorrect implementation of
  1820. RaiseUnsupportedCapabilityError.
  1821. * IDataItemContainer.cs: Added new properties.
  1822. * Page.cs: Implemented Form property.
  1823. * Control.cs: Fixed formatting.
  1824. * StateManagedCollection.cs: Track view state of items loaded
  1825. in LoadViewState.
  1826. 2005-02-22 Lluis Sanchez Gual <[email protected]>
  1827. * FilterableAttribute.cs: Fix endless loop.
  1828. 2005-02-18 Lluis Sanchez Gual <[email protected]>
  1829. * Page.cs: Implemented missing events.
  1830. 2005-02-17 Gonzalo Paniagua Javier <[email protected]>
  1831. * BoundPropertyEntry.cs:
  1832. * PropertyEntry.cs:
  1833. * TwoWayBoundPropertyEntry.cs: implemented.
  1834. 2005-02-10 Lluis Sanchez Gual <[email protected]>
  1835. * Page.cs: Added support for validation groups. Some fixes in
  1836. SavePageControlState().
  1837. * IFilterResolutionService.cs: Removed extra field.
  1838. * INavigateUIData.cs: Added missing field.
  1839. * ICheckBoxControl.cs, IStaticTextControl.cs, ITextControl.cs:
  1840. Implemented new interfaces.
  1841. 2005-02-04 Lluis Sanchez Gual <[email protected]>
  1842. * Page.cs: Implemented support for cross page postback. Implemented
  1843. support for postback with options. Fixed several method and property
  1844. signatures for 2.0.
  1845. * PostBackOptions.cs: Added some TODOs.
  1846. 2005-02-02 Lluis Sanchez Gual <[email protected]>
  1847. * ParseChildrenAttribute.cs: Set the correct default value for the
  1848. childType property.
  1849. 2005-01-28 Lluis Sanchez Gual <[email protected]>
  1850. * ParseChildrenAttribute.cs: Added 2.0 property.
  1851. * Pair.cs, Triplet.cs: Make classes serializable and sealed in 2.0.
  1852. * Page.cs: Added support for control state.
  1853. * TemplateBuilder.cs: ContainerType should be internal.
  1854. * Control.cs: Added some new 2.0 methods.
  1855. 2005-01-21 Lluis Sanchez Gual <[email protected]>
  1856. * PageParser.cs: Read the MasterPageFile attribute.
  1857. * UserControlParser.cs: Not sealed any more since we need to inherit from
  1858. it. Added new constructor with an additional "type" parameter.
  1859. * MasterPageParser.cs: Parser for master pages.
  1860. * Page.cs: Added support for master pages.
  1861. * MasterPage.cs: Implemented.
  1862. 2005-01-10 Lluis Sanchez Gual <[email protected]>
  1863. * TemplateBuilder.cs: Added a special constructor that takes an
  1864. attribute provider as parameter. The container type for the template
  1865. may be defined in a TemplateContainerAttribute.
  1866. * ControlBuilder.cs: Create the TemplateBuilder using that special
  1867. constructor.
  1868. * TemplateContainerAttribute.cs: Added 2.0 property and ctor.
  1869. 2004-12-20 Lluis Sanchez Gual <[email protected]>
  1870. * IStyleSheet.cs: Added missing "using".
  1871. * Page.cs: Implemented Header property.
  1872. * CssStyleCollection.cs: Made BagToString method internal.
  1873. * RootBuilder.cs: Register HtmlHead control.
  1874. 2004-12-17 Lluis Sanchez Gual <[email protected]>
  1875. * CssStyleCollection.cs: Minor (!) fix.
  1876. * HtmlTextWriter.cs: Register names for new 2.0 styles.
  1877. 2004-12-17 Lluis Sanchez Gual <[email protected]>
  1878. * CssStyleCollection.cs: Make it work as a standalone collection.
  1879. * HtmlTextWriter.cs: Added static method for getting style names.
  1880. 2004-12-14 Gonzalo Paniagua Javier <[email protected]>
  1881. * ControlCollection.cs: fix off-by-one and store a null at the end to
  1882. remove the reference to the removed control.
  1883. 2004-12-10 Lluis Sanchez Gual <[email protected]>
  1884. * ClientScriptManager.cs: Added GetScriptLiteral helper method.
  1885. 2004-12-02 Lluis Sanchez Gual <[email protected]>
  1886. * Page.cs: Added support for callback events. Moved theform variable
  1887. outside the __doPostBack function, so it can be used by other
  1888. scripts.
  1889. * StateBag.cs: Implemented SetDirty().
  1890. 2004-11-30 Gonzalo Paniagua Javier <[email protected]>
  1891. * Control.cs: when saving "Visible" into the ViewState, save the value
  1892. for this precise control, as using the Visible property might give us
  1893. Control's parent visibility. Fixes bug #69200.
  1894. 2004-11-30 Gonzalo Paniagua Javier <[email protected]>
  1895. * Control.cs: fixed ResolveUrl for relative URLs when using cookie-less
  1896. sessions.
  1897. * System.Web.Util/UrlUtils.cs: made (Insert|Get|Remove)SessionId use
  1898. the appRoot + SessionID + vpath format.
  1899. Fixes the 3 issues reported in bug #66623.
  1900. 2004-11-26 Lluis Sanchez Gual <[email protected]>
  1901. * Page.cs: Moved code for managing client scripts to ClientScriptManager,
  1902. which is public in 2.0 and internal in 1.1.
  1903. * ClientScriptManager.cs: Implemented.
  1904. 2004-11-25 Sanjay Gupta <[email protected]>
  1905. * DataSourceView.cs: Removed extra method.
  1906. 2004-11-24 Sanjay Gupta <[email protected]>
  1907. * DataSourveViewSelectCallback.cs: Corrected method signature.
  1908. 2004-11-23 Lluis Sanchez Gual <[email protected]>
  1909. * ControlBuilder.cs: Always check for the ParseChildrenAttribute,
  1910. even if the class doesn't implement IParserAccessor.
  1911. * WebResourceAttribute.cs: Allow multiple attributes of this type.
  1912. 2004-11-15 Lluis Sanchez Gual <[email protected]>
  1913. * DataSourceView.cs: Moved here implementation of DataSourceViewChanged
  1914. from SqlDataSourceView.cs.
  1915. 2004-11-09 Gonzalo Paniagua Javier <[email protected]>
  1916. * Control.cs: unified a few bool fields into an int one.
  1917. * ControlCollection.cs: use an array internally instead of always
  1918. allocating an arraylist. Also added our own enumerator.
  1919. * EmptyControlCollection.cs: there's no 'special' ctor now in the base
  1920. class.
  1921. 2004-11-05 Sanjay Gupta <[email protected]>
  1922. * DataSourceView.cs: Changes in access modifiers of methods.
  1923. 2004-10-20 Sanjay Gupta <[email protected]>
  1924. * DataSourceCapabilities.cs: Added Flags attribute.
  1925. * DataSourceSelectArguments.cs: Updated.
  1926. * DataSourveView.cs: Updated.
  1927. 2004-10-19 Sanjay Gupta <[email protected]>
  1928. * HierarchicalDataSourceView.cs: Corrected class definition and updated.
  1929. 2004-10-18 Gonzalo Paniagua Javier <[email protected]>
  1930. * HierarchicalDataSourceView.cs: fix typo.
  1931. 2004-10-18 Sanjay Gupta <[email protected]>
  1932. * HierarchicalDataSourceView.cs: Updated.
  1933. 2004-10-18 Sanjay Gupta <[email protected]>
  1934. * DataSourceSelectArguments.cs: Initial implementation.
  1935. 2004-10-12 Sanjay Gupta <[email protected]>
  1936. * UrlPropertyAttribute.cs: Corrected implementation of Equals () method.
  1937. 2004-10-12 Sanjay Gupta <[email protected]>
  1938. * UrlTypes.cs: Updated.
  1939. 2004-10-12 Sanjay Gupta <[email protected]>
  1940. * UrlPropertyAttribute.cs: Added new file.
  1941. 2004-10-01 Gonzalo Paniagua Javier <[email protected]>
  1942. * Control.cs: even if the control has no children the naming container
  1943. may contain the control we're looking for. Fixes bug #67304.
  1944. 2004-09-30 Gonzalo Paniagua Javier <[email protected]>
  1945. * AspGenerator.cs: added OtherTags.
  1946. 2004-09-24 Sanjay Gupta <[email protected]>
  1947. * ControlValuePropertyAttribute.cs: Initial implementation.
  1948. 2004-09-24 Sanjay Gupta <[email protected]>
  1949. * IPaginationContainer.cs: Corrected name of class.
  1950. 2004-09-24 Sanjay Gupta <[email protected]>
  1951. * IDReferencePropertyAttribute.cs: Completed implementation.
  1952. 2004-09-24 Sanjay Gupta <[email protected]>
  1953. * ThemeableAttribute.cs:
  1954. * FilterableAttribute.cs: Code scrubbing and optimization.
  1955. 2004-09-14 Sanjay Gupta <[email protected]>
  1956. * ThemeableAttribute.cs: Completed implementation.
  1957. 2004-09-14 Sanjay Gupta <[email protected]>
  1958. * FilterableAttribute.cs: Completed implementation.
  1959. 2004-09-14 Sanjay Gupta <[email protected]>
  1960. * Control.cs: Added new attributes and a method.
  1961. * FilterableAttribute.cs: New attribute, initial implementation.
  1962. * ThemeableAttribute.cs: New attribute, initial implemenataion.
  1963. 2004-09-09 Gonzalo Paniagua Javier <[email protected]>
  1964. * TemplateParser.cs: ensure bin directory exists before trying to access
  1965. it. Fixes bug #65446 (not closed yet due to dependencies).
  1966. 2004-09-09 Sanjay Gupta <[email protected]>
  1967. * Control.cs: Implemented methods of interface IExpressionAccessor.
  1968. 2004-09-05 Gonzalo Paniagua Javier <[email protected]>
  1969. * SimpleWebHandlerParser.cs: correctly cache Type instead of the
  1970. assembly for ashx/asmx. Otherwise we need to open the file and check
  1971. for the class name in there. Thanks to Ben for pointing this out.
  1972. 2004-09-05 Gonzalo Paniagua Javier <[email protected]>
  1973. * TemplateParser.cs: removed creation of StringWriter. It's not used.
  1974. * Control.cs: don't create the EventHandlerList until requested.
  1975. 2004-09-03 Sanjay Gupta <[email protected]>
  1976. * Control.cs: Added new interfaces implemented in .Net 2.0.
  1977. * ExpressionBinding.cs: Added new class.
  1978. * ExpressionBindingCollection.cs: Added new class.
  1979. 2004-09-01 Gonzalo Paniagua Javier <[email protected]>
  1980. * LiteralControl.cs: stylized. This control has EnableViewState disabled
  1981. by default and doesn't get an automatic ID. When text is null -> "".
  1982. 2004-08-31 Sanjay Gupta <[email protected]>
  1983. * ControlSkinProc.cs:
  1984. * DataSourceViewOperationCallback.cs:
  1985. * DataSourceViewSelectCallback.cs:
  1986. * ExtractTemplateValuesMethod.cs: Explicit modifier "sealed" not
  1987. required in definition as delegates by default are sealed.
  1988. 2004-08-31 Sanjay Gupta <[email protected]>
  1989. * IDReferencePropertyAttribute.cs: Corrected and changed from interface
  1990. to class.
  1991. * IMobileTextWriter.cs: Corrected method signatures.
  1992. 2004-08-09 Sanjay Gupta <[email protected]>
  1993. * ControlSkinProc.cs:
  1994. * DataSourceViewOperationCallback.cs:
  1995. * DataSourceViewSelectCallback.cs:
  1996. * ExtractTemplateValuesMethod.cs: Added new delegates.
  1997. 2004-08-06 Sanjay Gupta <[email protected]>
  1998. * IBindableTemplate.cs:
  1999. * ICallbackEventHandler.cs:
  2000. * IControlBuilderAccessor.cs:
  2001. * IControlDesignerAccessor.cs:
  2002. * IControlTypeFilter.cs:
  2003. * IDataItemContainer.cs:
  2004. * IDataSourceViewSchemaAccessor.cs:
  2005. * IDReferencePropertyAttribute.cs:
  2006. * IExpressionsAccessor.cs:
  2007. * IFilterResolutionService.cs:
  2008. * IItemPaginationInfo.cs:
  2009. * IMobileTextWriter.cs:
  2010. * IPageHeader.cs:
  2011. * IPaginationContainer.cs:
  2012. * IPaginationInfo.cs:
  2013. * IResourceResolutionService.cs:
  2014. * IResourceUrlGenerator.cs:
  2015. * IStateFormatter.cs:
  2016. * IStyleSheet.cs:
  2017. * IThemeResolutionService.cs:
  2018. * IUrlResolutionService.cs:
  2019. * IUserControlTypeResolutionService.cs: Added new files for Interfaces.
  2020. 2004-08-05 Sanjay Gupta <[email protected]>
  2021. * PostBackOptions.cs: Added new file and implemented the class.
  2022. 2004-08-04 Gonzalo Paniagua Javier <[email protected]>
  2023. * HtmlTextWriterTag.cs: readded author name.
  2024. 2004-08-04 Sanjay Gupta <[email protected]>
  2025. * HtmlTextWriterAttribute.cs:
  2026. * HtmlTextWriterStyle.cs: Added .Net 2.0 enumerations.
  2027. * CompilationMode.cs:
  2028. * ConflictOptions.cs:
  2029. * DataSourceCacheExpiry.cs:
  2030. * DataSourceCapabilities.cs:
  2031. * DataSourceOperation.cs:
  2032. * TemplateContentType.cs:
  2033. * TemplateInstance.cs:
  2034. * UrlTypes.cs:
  2035. * VerificationConditionalOperator.cs:
  2036. * VerificationReportLevel.cs:
  2037. * VerificationRule.cs:
  2038. * XhtmlMobileDocType.cs: Added enumerations.
  2039. 2004-07-27 Gonzalo Paniagua Javier <[email protected]>
  2040. * Control.cs: style. Reverted previous patch modification of
  2041. TemplateSourceDirectory (failed when the control is reparented). Use
  2042. HasControls() and Controls all over instead of _controls, as Controls
  2043. property and HasControls() might be overriden.
  2044. 2004-07-27 Alon Gazit <[email protected]>
  2045. * Control.cs: Changed the implementation of TemplateSourceDirectory
  2046. and GetDefaultName(). replaced foreach statements with for statements,
  2047. in order to improve performence.
  2048. 2004-07-27 Alon Gazit <[email protected]>
  2049. * Page.cs: changed the implementation of GetViewStateString().
  2050. if the view state object is null there is no need to perform
  2051. Serialization.
  2052. 2004-07-16 Gonzalo Paniagua Javier <[email protected]>
  2053. * TemplateControl.cs: don't include private methods of base classes when
  2054. auto-attaching events. Fixes bug 61569.
  2055. 2004-07-14 Alon Gazit <[email protected]>
  2056. * HtmlTextWriter.cs: changed the Hashtables to case insensitive.
  2057. 2004-07-08 Pablo Baena <[email protected]>
  2058. * Page.cs: added workaround for __doPostBack script on Netscape 4.xx
  2059. 2004-07-02 Gonzalo Paniagua Javier <[email protected]>
  2060. * Page.cs: added additional checks for saving/displaying trace data.
  2061. * PageParser.cs: removed checks for trace enabled in configuration
  2062. files.
  2063. 2004-06-29 Gonzalo Paniagua Javier <[email protected]>
  2064. * ControlCollection.cs: when clearing the control collection, tell the
  2065. owners about the removal. Fixes bug #60800.
  2066. 2004-06-29 Gonzalo Paniagua Javier <[email protected]>
  2067. * Page.cs: don't nullify _context after processing the request as there
  2068. are events not triggered yet. Fixes bug #60726.
  2069. 2004-06-24 Gonzalo Paniagua Javier <[email protected]>
  2070. * HtmlTextWriter.cs: only create a closing tag for unknown tags. Fixes
  2071. bug #60681.
  2072. 2004-06-23 Gonzalo Paniagua Javier <[email protected]>
  2073. * PageParser.cs:
  2074. * UserControlParser.cs: set the page/user control base type even when no
  2075. default directive provided. Fixes bug #60572.
  2076. 2004-06-23 Gonzalo Paniagua Javier <[email protected]>
  2077. * PageParser.cs: use default trace settings from web.config and check
  2078. if trace is only requested for local connections. Fixes bug #60180.
  2079. 2004-06-16 Gonzalo Paniagua Javier <[email protected]>
  2080. * SimpleWebHandlerParser.cs: implemented GetCompiledTypeFromCache. When
  2081. we read the default directive, check the cache for the Type and if
  2082. present, don't keep reading and store the type found.
  2083. * WebHandlerParser.cs:
  2084. * WebServiceParser.cs: try GetCompiledTypeFromCache before actually
  2085. compiling.
  2086. 2004-06-14 Gonzalo Paniagua Javier <[email protected]>
  2087. * Control.cs: properly fixed bug #59794.
  2088. 2004-06-10 Gonzalo Paniagua Javier <[email protected]>
  2089. * Control.cs:
  2090. (ResolveUrl): fixed typo when dealing with relative urls. Closes bug
  2091. #59794.
  2092. 2004-06-08 Gonzalo Paniagua Javier <[email protected]>
  2093. * SimpleWebHandlerParser.cs:
  2094. * TemplateParser.cs: pass the language when compiling from a file.
  2095. 2004-06-08 Gonzalo Paniagua Javier <[email protected]>
  2096. * SimpleWebHandlerParser.cs: if we have a global.asax, move its
  2097. reference to the end to help mcs loading the assemblies. Fixes bug
  2098. #58768.
  2099. * TemplateParser.cs: same as above. Removed some kludges to workaround
  2100. loading assemblies from bin path that are now in the runtime. Don't
  2101. load the assemblies in bin if not needed, but still reference them
  2102. when compiling.
  2103. 2004-06-07 Alon Gazit <[email protected]>
  2104. * Page.cs: Changed Page.ProcessPostData().
  2105. After the change ,the state of controls that aren't visible is saved
  2106. during a postback.
  2107. 2004-06-07 Gonzalo Paniagua Javier <[email protected]>
  2108. * Page.cs: removed obsolete MonoTODO from RegisterOnSubmitStatement.
  2109. 2004-06-05 Gonzalo Paniagua Javier <[email protected]>
  2110. * Page.cs: IsPostBack also returns true when method is GET and we have
  2111. viewstate information in the query string. Fixes bug #58151.
  2112. 2004-06-05 Gonzalo Paniagua Javier <[email protected]>
  2113. * Page.cs: removed obsolete TODO. Only check if Trace is enabled, not
  2114. HttpRutime.TraceManager.
  2115. * PageParser.cs: for 'trace' we have 2 variables now. Added support
  2116. for 'buffer' attribute.
  2117. 2004-06-04 Gonzalo Paniagua Javier <[email protected]>
  2118. * Page.cs: implemented ClientTarget.
  2119. * PageParser.cs: support for clientTarget and check for validity.
  2120. 2004-06-03 Gonzalo Paniagua Javier <[email protected]>
  2121. * Control.cs:
  2122. * Html32TextWriter.cs:
  2123. * HtmlTextWriter.cs:
  2124. * SimpleWebHandlerParser.cs:
  2125. * TemplateControl.cs: Added protected missing members and attributes.
  2126. 2004-06-03 Gonzalo Paniagua Javier <[email protected]>
  2127. * ObjectStateFormatter.cs: use ObjectFormatter methods instead of
  2128. calling a protected method of another object.
  2129. 2004-06-03 Atsushi Enomoto <[email protected]>
  2130. * ObjectStateFormatter.cs : csc build fix. Protected Read()/Write()
  2131. (of other objects) are called in TypeConverterFormatter.
  2132. 2004-06-03 Gonzalo Paniagua Javier <[email protected]>
  2133. * ObjectStateFormatter.cs: before choosing the binary formatter, check
  2134. if the object type has a TypeConverter that can convert to/from string.
  2135. Fixes bug #59495.
  2136. * Page.cs: call GetViewStateString from outside the WriteLine. This
  2137. allows writing to the Response when getting the string without breaking
  2138. the HTML generated.
  2139. 2004-06-02 Gonzalo Paniagua Javier <[email protected]>
  2140. * HtmlTextWriter.cs: render end tag for unknown tags.
  2141. Patch frmo Markus Krutner. Fixes bug #59466.
  2142. 2004-05-24 Gonzalo Paniagua Javier <[email protected]>
  2143. * Page.cs: call DeterminePostBackMode only once per request. Patch by
  2144. Evain Jb.
  2145. 2004-05-12 Gonzalo Paniagua Javier <[email protected]>
  2146. * Html32TextWriter.cs: stub contributed by Matthijs ter Woord
  2147. [meddochat].
  2148. * ObjectTagBuilder.cs: remove the HasBody override as MS does not have
  2149. that.
  2150. 2004-05-04 Gonzalo Paniagua Javier <[email protected]>
  2151. * SimpleWebHandlerParser.cs:
  2152. * TemplateParser.cs: for the assembly names given in the 'assembly'
  2153. attribute, use LoadWithPartialName instead of Load.
  2154. 2004-03-19 Gonzalo Paniagua Javier <[email protected]>
  2155. * Page.cs: return HttpContext.Current if _context has not yet been
  2156. assigned to. Fixes bug #55245.
  2157. 2004-03-15 Gonzalo Paniagua Javier <[email protected]>
  2158. * TemplateParser.cs: don't add import statement or assemblies from
  2159. global.asax to every file. Fixes bug #55496.
  2160. 2004-03-09 Juraj Skripsky <[email protected]>
  2161. * DataBinder.cs: allow unquoted string expressions (e.g. "[test]") and
  2162. handle single quotes and a few corner cases correctly (see test cases).
  2163. 2004-03-04 Gonzalo Paniagua Javier <[email protected]>
  2164. * TemplateControl.cs: fixed typos and added new method names to the set
  2165. of page events.
  2166. 2004-02-23 Gonzalo Paniagua Javier <[email protected]>
  2167. * ControlBuilder.cs: added SetTagName().
  2168. * ObjectTagBuilder.cs: use SetTagName so that we can properly close
  2169. <object> builders if the closing tag is provided.
  2170. 2004-02-16 Jackson Harper <[email protected]>
  2171. * Page.cs: Set cacheability for Location.DownStream.
  2172. 2004-02-10 Jackson Harper <[email protected]>
  2173. * TemplateParser.cs: Use full path if the assembly is in the
  2174. private bin directory. Patch by Gonzalo Paniagua Javier.
  2175. 2004-02-09 Jackson Harper <[email protected]>
  2176. * Page.cs: Set cacheability for server side caching.
  2177. 2004-01-30 Jackson Harper <[email protected]>
  2178. * Control.cs: Ensure that dynamically loaded controls are
  2179. initialized.
  2180. 2004-01-28 Gonzalo Paniagua Javier <[email protected]>
  2181. * ApplicationFileParser.cs: check for error in directives. Use
  2182. GlobalAsaxCompiler.CompileApplicationType for compiling.
  2183. * ObjectTagBuilder.cs: load the Type and check for errors.
  2184. * TemplateParser.cs: add assemblies and imports from global.asax.
  2185. Now we properly create accessors for session and application objects in
  2186. the application itself, pages and controls. First step for fixing
  2187. bug #53387.
  2188. 2004-01-28 Gonzalo Paniagua Javier <[email protected]>
  2189. * TemplateControl.cs: small speedup for WireUpautomaticEvents. Thanks
  2190. to Eric Lindvall for pointing this out.
  2191. 2004-01-15 Jackson Harper <[email protected]>
  2192. * TemplateParser.cs: Detect if we are parsing a control or page
  2193. properly.
  2194. * Page.cs: vary by params and vary by headers can be null now.
  2195. 2004-01-15 Martin Willemoes Hansen <[email protected]>
  2196. * HtmlTextWriter.cs: Fixed OutputTab routine to generate correct
  2197. indention.
  2198. 2004-01-14 Jackson Harper <[email protected]>
  2199. * Page.cs: If we have a postback that wasn't sent through a
  2200. postback script (ie user hit submit on a input type=submit) call
  2201. Validate so page validation occurs. This fixes bug #52770.
  2202. 2004-01-14 Jackson Harper <[email protected]>
  2203. * Page.cs: Don't tell the response to cache anymore. This is done
  2204. when the cacheability is modified by a callback. Set the cache's
  2205. duration.
  2206. 2004-01-14 Jackson Harper <[email protected]>
  2207. * TemplateParser.cs: If varybyparam is set to "none" make it null
  2208. so we dont get a param named null in the outputcache key.
  2209. 2004-01-14 Jackson Harper <[email protected]>
  2210. * BasePartialCachingControl.cs: Use varyby attributes in key
  2211. generation.
  2212. 2004-01-14 Jackson Harper <[email protected]>
  2213. * TemplateParser.cs: Add all the outputcache attribute error
  2214. messages.
  2215. 2004-01-13 Jackson Harper <[email protected]>
  2216. * TemplateParser.cs: Add VaryByControls and Shared output cache
  2217. properties. These are not assigned yet.
  2218. * TemplateControlParser.cs: Do not ignore the OutputCache
  2219. attribute.
  2220. * BasePartialCachingControl.cs: Initial implementation. Keys are
  2221. still not created properly.
  2222. * StaticPartialCachingControl.cs: Assign properties in base class,
  2223. implement CreateControl.
  2224. 2004-01-12 Gonzalo Paniagua Javier <[email protected]>
  2225. * ApplicationFileParser.cs: adde DefaultBaseTypeName property.
  2226. * PageParser.cs: support validateRequest.
  2227. * TemplateControlParser.cs: get default values from system.web/pages
  2228. section.
  2229. * TemplateParser.cs: added separate method for changing base type
  2230. (Inherits or system.web/pages).
  2231. * UserControlParser.cs: support system.web/pages defined base type.
  2232. 2004-01-11 Andreas Nahr <[email protected]>
  2233. * UserControl.cs: Added missing attribute, implemented method
  2234. * Page.cs: Added missing attribute, implemented method
  2235. 2004-01-10 Jackson Harper <[email protected]>
  2236. * Page.cs: Handle trace being enabled in the config file.
  2237. 2004-01-10 Jackson Harper <[email protected]>
  2238. * Page.cs: Save trace data before rendering it.
  2239. * System.Web.dll.sources: Add TraceData.cs
  2240. 2004-01-03 Gonzalo Paniagua Javier <[email protected]>
  2241. * Page.cs: removed a couple of MonoTODO on methods we're not gonna
  2242. implement. Applied patch from Jan Jaros ([email protected]) to
  2243. ensure that Unload event is raised. Fixes bug #52555.
  2244. 2004-01-02 Zoltan Varga <[email protected]>
  2245. * KeyedList.cs: 'private' is not allowed on explicit interface
  2246. implementations. Fixes 1.2 build.
  2247. 2003-12-31 Jackson Harper <[email protected]>
  2248. * TemplateControlParser.cs: When registering tag prefixs make sure
  2249. the file exists and throw the correct error if it does not.
  2250. 2003-12-25 Jackson Harper <[email protected]>
  2251. * Page.cs: Throw error if the session is accessed when sessions
  2252. are disabled.
  2253. 2003-12-18 Jackson Harper <[email protected]>
  2254. * Page.cs: Write Trace info.
  2255. 2003-12-18 Gonzalo Paniagua Javier <[email protected]>
  2256. * LosFormatter.cs: new ctor for 1.1. The default ctor is public.
  2257. * Page.cs: added ViewStateUserKey and made RegisterclientScriptFile
  2258. internal.
  2259. * PageParser.cs: the ctor is public.
  2260. * PartialCachingAttribute.cs: added new ctor and Shared property.
  2261. 2003-12-17 Gonzalo Paniagua Javier <[email protected]>
  2262. * Page.cs: assign the ErrorPage to the context if we get an exception
  2263. when processing the page which only calls Unload.
  2264. * PageParser.cs: handle ErrorPage.
  2265. 2003-12-16 Gonzalo Paniagua Javier <[email protected]>
  2266. * ObjectStateFormatter.cs: added formatters for Unit and FontUnit, which
  2267. are not [Serializable]. Fixes bug #52244.
  2268. 2003-12-16 Jackson Harper <[email protected]>
  2269. * Page.cs: Render trace data when tracing is enabled.
  2270. 2003-12-15 Jackson Harper <[email protected]>
  2271. * PageParser.cs: Add Trace and Trace mode attributes.
  2272. 2003-12-15 Jackson Harper <[email protected]>
  2273. * Page.cs: Use the context trace object.
  2274. 2003-12-14 Alon Gazit <[email protected]>
  2275. * AttributeCollection.cs: Changed AttributeCollection.Render().
  2276. After the change attributes ,that their value is null, aren't
  2277. rendered.
  2278. 2003-12-12 Gonzalo Paniagua Javier <[email protected]>
  2279. * Control.cs: remove a few dangling ^M, don't set values for fields
  2280. that has the default value. If Visible is modified and we're tracking
  2281. viewstate, save and restore it. Fixes bug #48689.
  2282. 2003-12-11 Jackson Harper <[email protected]>
  2283. * Control.cs: Give null for the ID if it hasn't been explicitly
  2284. set. This fixes bug #51520.
  2285. 2003-12-08 Jackson Harper <[email protected]>
  2286. * PageParser.cs: Ignore the SmartNavigation attribute for now.
  2287. 2003-12-05 Jackson Harper <[email protected]>
  2288. * DataBinder.cs (GetIndexedPropertyValue): Check if container is
  2289. an IList and use a cast instead of reflection to retrieve the item
  2290. if it is. Fixes bug #51759.
  2291. 2003-12-04 Alon Gazit <[email protected]>
  2292. * Page.cs: Changed Page.ID so it will call Control.ID.
  2293. Fixed Bug 51682.
  2294. 2003-12-02 Jackson Harper <[email protected]>
  2295. * Page.cs: Implemented registered array declarations. Patch by
  2296. Benjamin Jemlich <[email protected]>
  2297. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  2298. * TemplateParser.cs: basic check for 'classname' attribute and added
  2299. patch by [email protected] for bug #51568, which fixes automatic class
  2300. names for pages starting with a number.
  2301. 2003-11-30 Ben Maurer <[email protected]>
  2302. * LosFormatter.cs: Use ObjectStateFormatter. Pretty big size
  2303. reduction.
  2304. * ObjectStateFormatter.cs: Comment out tracing.
  2305. 2003-11-30 Gonzalo Paniagua Javier <[email protected]>
  2306. * Page.cs: fixed UICulture, LCID and Culture. Set the thread
  2307. [UI]Culture before processing the request.
  2308. * PageParser.cs: read Culture, UICulture and LCID attributes. Added
  2309. properties for these. Partially contributed by Mohammad Damt.
  2310. Fixes bug #51511.
  2311. 2003-11-27 Jackson Harper <[email protected]>
  2312. * TemplateParser.cs: Ignore aspCompat attribute. This fixes bug
  2313. 51434.
  2314. 2003-11-22 Ben Maurer <[email protected]>
  2315. * ObjectStateFormatter.cs: Fix bug when reading small ints.
  2316. Add some tracing so we can see what is going on.
  2317. 2003-11-21 Jackson Harper <[email protected]>
  2318. * Page.cs: Set vary by params when cache location is Server.
  2319. 2003-11-21 Ben Maurer <[email protected]>
  2320. * ObjectStateFormatter.cs: v2 file. In v1.x this will be
  2321. internal as LosFormatter will eventually use it to save
  2322. the view state.
  2323. 2003-11-21 Gonzalo Paniagua Javier <[email protected]>
  2324. * PersistChildrenAttribute.cs:
  2325. * PersistenceModeAttribute.cs: implemented.
  2326. * TODO: Removed file.
  2327. * OutputCacheLocation.cs:
  2328. * TemplateControlParser.cs:
  2329. * HtmlInputFile.cs: class status based fixes.
  2330. 2003-11-19 Jackson Harper <[email protected]>
  2331. * Page.cs: Always set the cache expire time. Tell the response to
  2332. cache itself for server side cached pages.
  2333. 2003-11-19 Jackson Harper <[email protected]>
  2334. * Control.cs: Remove ResolveBaseUrl. ResolveUrl does the same
  2335. thing, some corner cases still need work though. Was this the
  2336. shortest lived method in the history of mono?
  2337. 2003-11-19 Jackson Harper <[email protected]>
  2338. * Control.cs: New method for resolving urls that use ~/ to denote
  2339. the applications base directory.
  2340. 2003-11-19 Jackson Harper <[email protected]>
  2341. * TemplateParser.cs: Fix typo in error message.
  2342. 2003-11-19 Gonzalo Paniagua Javier <[email protected]>
  2343. * TemplateControlParser.cs: support @Reference. Fixes bug #49572. Thanks
  2344. to Sanjay Gupta.
  2345. 2003-11-19 Todd Berman <[email protected]>
  2346. * KeyedList.cs:
  2347. * KeyedListEnumerator.cs: New v2 implementations.
  2348. 2003-11-17 Ben Maurer <[email protected]>
  2349. * StateManagedCollection.cs: Implement.
  2350. 2003-11-13 Jackson Harper <[email protected]>
  2351. * Page.cs: Initial implementation of InitOutputCache.
  2352. * TemplateParser.cs: Page OutputCache options
  2353. 2003-11-09 Ben Maurer <[email protected]>
  2354. * HierarchicalDataSourceControl.cs: Implement.
  2355. 2003-11-09 Ben Maurer <[email protected]>
  2356. * XPathBinder.cs: Implemented.
  2357. 2003-11-08 Ben Maurer <[email protected]>
  2358. * DataSourceView.cs:
  2359. * IDataSource.cs:
  2360. * ListSourceHelper.cs:
  2361. * DataSourceControl.cs:
  2362. * HierarchicalDataSourceView.cs:
  2363. * IHierarchicalDataSource.cs: Move v2 stuff.
  2364. 2003-11-07 Jackson Harper <[email protected]>
  2365. * Control.cs (ResolveUrl): Special case for urls that consist of
  2366. only a page anchor. ie <a href="#top">. This fixes bug #50165.
  2367. 2003-11-07 Ben Maurer <[email protected]>
  2368. * IHierarchicalEnumerable.cs:
  2369. * IHierarchyData.cs:
  2370. * INavigateUIData.cs: New v2 interfaces.
  2371. 2003-11-06 Gonzalo Paniagua Javier <[email protected]>
  2372. * Page.cs: patch by Alon Gazit <[email protected]> to remove extra
  2373. space in generated javascript.
  2374. 2003-11-05 Gonzalo Paniagua Javier <[email protected]>
  2375. * LosFormatter.cs: encoding updates.
  2376. * Page.cs: implemented CodePage and ContentType.
  2377. * PageParser.cs: handle CodePage, ContentEncoding and ResponseEncoding
  2378. attributes.
  2379. 2003-11-04 Ben Maurer <[email protected]>
  2380. * Control.cs (GetWebResourceUrl): new v2 function
  2381. * Page.cs (GetWebResourceUrl): ditto.
  2382. make the JS we generate work with moz if the form is not a child
  2383. of document.
  2384. * WebResourceAttribute.cs: Added, new v2 attribute.
  2385. 2003-10-22 Gonzalo Paniagua Javier <[email protected]>
  2386. * DesignTimeTemplateParser.cs: added FIXME related to PageParser.
  2387. * PageParser.cs: initialize the parser in the constructor, not just
  2388. before compiling and reference the application assembly.
  2389. * SimpleWebHandlerParser.cs: reference the assembly that contains the
  2390. application Type.
  2391. * TemplateControl.cs:
  2392. * TemplateControlParser.cs: fix BenM #1 bug. Now we pass correct virtual
  2393. path and physical path when compiling a user control.
  2394. * TemplateParser.cs: new AddApplicationAssembly ().
  2395. * UserControlParser.cs: now we get valid values in the ctor.
  2396. Referencing the application assembly fixes bug #49652.
  2397. 2003-10-18 Gonzalo Paniagua Javier <[email protected]>
  2398. * TemplateControl.cs: moved NoParamsInvoker class to its own file.
  2399. 2003-10-14 Gonzalo Paniagua Javier <[email protected]>
  2400. * BaseParser.cs: added CompilationConfig property.
  2401. * TemplateParser.cs:
  2402. * SimpleWebHandlerParser.cs: added CompilationConfig property.
  2403. Don't hardcode assembly names any more, assemblies in bin are added
  2404. depending on the configuration. The default language is also taken
  2405. from the configuration.
  2406. 2003-10-13 Gonzalo Paniagua Javier <[email protected]>
  2407. * LosFormatter.cs: fixed bug #49604. Patch by [email protected].
  2408. 2003-10-13 Gonzalo Paniagua Javier <[email protected]>
  2409. * Control.cs: removed some debug lines.
  2410. * Page.cs: implemented RegisterOnSubmitStatement
  2411. * TemplateControl.cs: fixed wire up for methods with no parameters.
  2412. 2003-10-13 Gonzalo Paniagua Javier <[email protected]>
  2413. * PageParser.cs: ignore ValidateRequest by now.
  2414. 2003-10-11 Gonzalo Paniagua Javier <[email protected]>
  2415. * System.Web.UI/TemplateControl.cs: support for wiring up events without
  2416. parameters.
  2417. 2003-10-08 Pedro Martnez Juli <[email protected]>
  2418. * PageParser.cs: drop some useless code.
  2419. 2002-10-29 Gaurav Vaish <gvaish_mono AT lycos.com>
  2420. * Utils.cs : GetScriptLocation(HttpContext) - Partial Implementation.
  2421. 2003-10-03 Gonzalo Paniagua Javier <[email protected]>
  2422. * System.Web.UI/PageParser.cs:
  2423. * System.Web.UI/TemplateControlParser.cs: honour the input file given
  2424. as argument.
  2425. 2003-09-29 Gonzalo Paniagua Javier <[email protected]>
  2426. * Control.cs:
  2427. (ClearChildViewState): doh! Don't clear control viewstate but the
  2428. viewstate of possible children.
  2429. (LoadViewStateRecursive): load viewstate even when control is not
  2430. visible.
  2431. Fixes bug #49024.
  2432. The rest are just dangling ^M removed.
  2433. * DataBoundLiteralControl.cs:
  2434. (LoadViewState): we get an object [], not a string [].
  2435. 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
  2436. * Control.cs: implemented ClearChildViewState ().
  2437. 2003-09-22 Gonzalo Paniagua Javier <[email protected]>
  2438. * Page.cs: store unique IDs for controls requiring postback. Fixes bug
  2439. #47985.
  2440. 2003-09-21 Gonzalo Paniagua Javier <[email protected]>
  2441. * SimpleWebHandlerParser.cs: add the ashx/asmx file itself to the
  2442. dependencies so that it's recompiled when changed.
  2443. 2003-09-18 Gonzalo Paniagua Javier <[email protected]>
  2444. * LosFormatter.cs: fixed Deserialize for empty viewstate.
  2445. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  2446. * Page.cs: check if controls that require postback have
  2447. been changed by an event and register them to be notified of data
  2448. changed event.
  2449. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  2450. * Control.cs: patch by [email protected] (Yaron Shkop) that fixes
  2451. bug #47866.
  2452. 2003-08-21 Gonzalo Paniagua Javier <[email protected]>
  2453. * LosFormatter.cs: handle Unit and FonrUnit as special cases as they
  2454. are not serializable. Fixes bug #47784.
  2455. 2003-08-20 Gonzalo Paniagua Javier <[email protected]>
  2456. * Control.cs: index the viewstates saved by the control position, not
  2457. the control name. Fixes bug #47697.
  2458. 2003-08-20 Gonzalo Paniagua Javier <[email protected]>
  2459. * ControlCollection.cs:
  2460. * EmptyControlCollection.cs: create a minimum ArrayList for this.
  2461. * BaseParser.cs: added setter for BaseVirtualDir.
  2462. * Page.cs: fixed message when restoring view state fails.
  2463. * UserControlParser.cs: set the BaseVirtualDirectory to handle the case
  2464. when a relative path to the control is given. Fixes bug #47685.
  2465. 2003-08-18 Gonzalo Paniagua Javier <[email protected]>
  2466. * Control.cs: when we load the viewstate for a control that has children
  2467. viewstates and the child is not found, keep its viewstate around and
  2468. wait until the child is added to load the viewstate. Fixes bug #47697.
  2469. 2003-08-11 Gonzalo Paniagua Javier <[email protected]>
  2470. * TemplateControl.cs: more Delegate.CreateDelegate fixes.
  2471. 2003-08-01 Andreas Nahr <[email protected]>
  2472. * PartialCachingControl.cs: is not abstract
  2473. 2003-08-01 Gonzalo Paniagua Javier <[email protected]>
  2474. * SimpleHandlerFactory.cs: implemented GetHandler.
  2475. * WebHandlerParser.cs: new file that parses .ashx files.
  2476. 2003-07-30 Andreas Nahr <[email protected]>
  2477. * PersistenceModeAttribute.cs: Fixed wrong AttributeUsage
  2478. 2003-07-30 Andreas Nahr <[email protected]>
  2479. * UserControl.cs: Added attribute
  2480. * BasePartialCachingControl.cs: New class and paritally implemented
  2481. * DesignerDataBoundLiteralControl.cs: New class and implemented
  2482. * DesignTimeTemplateParser.cs:
  2483. * PartialCachingControl.cs:
  2484. * StaticPartialCachingControl.cs: New class and paritally implemented
  2485. 2003-07-27 Andreas Nahr <[email protected]>
  2486. * ApplicationFileParser.cs: Fixed signature
  2487. * DesignTimeParseData.cs: Added missing properties, implemented
  2488. * Page.cs: Added attributes
  2489. * PageParser.cs:
  2490. * TemplateControlParser.cs:
  2491. * TemplateParser.cs:
  2492. * UserControlParser.cs: Fixed signature
  2493. 2003-07-17 Andreas Nahr <[email protected]>
  2494. * HtmlControlPersistableAttribute.cs: Added
  2495. * IgnoreUnknownContentAttribute.cs: Added
  2496. 2003-07-17 Andreas Nahr <[email protected]>
  2497. * IUserControlDesignerAccessor.cs: Added and implemented
  2498. * Control.cs: Missing member added, added all attributes
  2499. * Page.cs: Added attributes, fixed signature
  2500. * TemplateControl.cs: Fixed signature, added all attributes
  2501. * UserControl.cs: Added all attributes, added and implemented missing interface
  2502. 2003-07-17 Gonzalo Paniagua Javier <[email protected]>
  2503. * ControlCollection.cs: fixed bug #46472.
  2504. 2003-07-03 Gonzalo Paniagua Javier <[email protected]>
  2505. * SimpleWebHandlerParser.cs: implemented GetTypeFromBin.
  2506. 2003-07-03 Gonzalo Paniagua Javier <[email protected]>
  2507. * SimpleWebHandlerParser.cs: updated to new compilation interface.
  2508. * TemplateParser.cs: use the new parameter when compiling.
  2509. 2003-07-01 Gonzalo Paniagua Javier <[email protected]>
  2510. * Page.cs: also keep the value for the second try on handling postback
  2511. events.
  2512. 2003-05-14 Gonzalo Paniagua Javier <[email protected]>
  2513. * BaseParser.cs: fixed MapPath for non-rooted files.
  2514. * PageParser.cs: don't pass a non-virtual file around.
  2515. * TemplateControlParser.cs: InputFile uses MapPath now. Take care of
  2516. the exception teh may be throw by MapPath on an invalid path.
  2517. * TemplateParser.cs: removed unused method.
  2518. * UserControlParser.cs: modified inputfile. The result is the same, but
  2519. this one is better.
  2520. 2003-05-06 Gonzalo Paniagua Javier <[email protected]>
  2521. * RootBuilder.cs: throw exception when the tagprefix is not valid or
  2522. not found.
  2523. 2003-05-05 Gonzalo Paniagua Javier <[email protected]>
  2524. * TemplateControlParser.cs: return after processing @Register.
  2525. 2003-05-04 Gonzalo Paniagua Javier <[email protected]>
  2526. * TemplateParser.cs: Added support for server side includes.
  2527. 2003-05-03 Gonzalo Paniagua Javier <[email protected]>
  2528. * TemplateControl.cs: fixed the flags used to find the methods that
  2529. are automatically hooked up on events.
  2530. * TemplateParser.cs: don't compile a source file directly. Use the
  2531. cache instead.
  2532. 2003-05-01 Gonzalo Paniagua Javier <[email protected]>
  2533. * BaseParser.cs: Location property is now here. Added a couple of
  2534. convenience methods to throw a ParseException.
  2535. * TemplateParser.cs:
  2536. * TemplateControlParser.cs:
  2537. * PageParser.cs: throw ParseException where appropiate.
  2538. 2003-05-01 Gonzalo Paniagua Javier <[email protected]>
  2539. * ApplicationFileParser.cs: use the generator to actually parse the
  2540. file.
  2541. * ControlBuilder.cs: small fix in NamingContainerType because
  2542. TemplateBuilders have a null ControlType. When a control is appended
  2543. to a parent, assign the child's parent.
  2544. * UserControlParser.cs: fixed the value of InputFile.
  2545. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  2546. * ApplicationFileParser.cs: store the Context and override
  2547. BaseVirtualDir so that it's the application path.
  2548. * BaseParser.cs: removed CurrentVirtualPath property.
  2549. * TemplateControlParser.cs: use BaseVirtualDir.
  2550. * UserControlParser.cs: removed CurrentVirtualPath.
  2551. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  2552. * TemplateParser.cs: always reference all the assemblies in bin
  2553. directory.
  2554. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  2555. * ApplicationFileParser.cs: it works now. Prior to these changes, we
  2556. were using the compiler directly.
  2557. * BaseParser.cs: added some useful properties and methods.
  2558. * CodeBuilder.cs: use ILocation.
  2559. * CodeRenderBuilder.cs: use ILocation.
  2560. * CollectionBuilder.cs: use the RootBuilder to map tag names into Types.
  2561. * ControlBuilder.cs: made it useful.
  2562. * DataBindingBuilder.cs: the control type for data bound text is
  2563. DataBoundLiteralControl now.
  2564. * ObjectTagBuilder.cs: store some object tag attributes.
  2565. * PageParser.cs: handle page-only directives.
  2566. * RootBuilder.cs: bah.
  2567. * SimpleWebHandlerParser.cs: made it dummy.
  2568. * TemplateControl.cs: Modified file.
  2569. * TemplateControlParser.cs: handle directives that are common to pages
  2570. and user controls.
  2571. * TemplateParser.cs: utility methods and handling of directives that
  2572. are common to app, page and user controls.
  2573. * UserControl.cs: added ControlBuilderAttribute.
  2574. * UserControlControlBuilder.cs: builder for user controls.
  2575. * UserControlParser.cs: use the new interfaces.
  2576. 2003-04-20 Gonzalo Paniagua Javier <[email protected]>
  2577. * ControlBuilder.cs: line and fileName are protected now.
  2578. * CodeBuilder.cs: base class for the next 2 files.
  2579. * CodeRenderBuilder.cs: builder for code render.
  2580. * DataBindingBuilder.cs: builder for data binding.
  2581. 2003-04-20 Gonzalo Paniagua Javier <[email protected]>
  2582. * ITagNameToTypeMapper.cs: made it internal.
  2583. * ObjectTagBuilder.cs: builder for <object runat="server"> tag.
  2584. * ObjectTag.cs:
  2585. * RootBuilder.cs: initial builder.
  2586. 2003-04-15 Gonzalo Paniagua Javier <[email protected]>
  2587. * CollectionBuilder.cs:
  2588. * TemplateBuilder.cs: new classes derived from ControlBuilder that
  2589. represent a property or a ITemplate.
  2590. * ControlBuilder.cs: implemented all the missing bits.
  2591. * TemplateParser.cs: added mapping from tag name to Type feature.
  2592. 2003-02-15 Gonzalo Paniagua Javier <[email protected]>
  2593. * Control.cs: have i definitely fixed naming container stuff this time?
  2594. * LosFormatter.cs: activated binary serialization code.
  2595. 2003-02-14 Gonzalo Paniagua Javier <[email protected]>
  2596. * Control.cs:
  2597. (AddedControl): fixed default id assignation when the sequence of
  2598. AddedControl until it's included in the page or one of its controls
  2599. does not pass through a naming container.
  2600. 2003-02-09 Gonzalo Paniagua Javier <[email protected]>
  2601. * Control.cs: give different default names depending on the place where
  2602. it is assigned. Implemented ResolveURl (no more ~ rendered in
  2603. attributes!).
  2604. 2003-02-08 Gonzalo Paniagua Javier <[email protected]>
  2605. * Control.cs: when adding a control, assign default names to th
  2606. children that don't have one.
  2607. 2003-02-03 Gonzalo Paniagua Javier <[email protected]>
  2608. * SimpleWebHandlerParser.cs: modified to use the new parser interface.
  2609. 2003-01-17 Gonzalo Paniagua Javier <[email protected]>
  2610. * Control.cs: some more tweaks to naming containers stuff.
  2611. * DataBinder.cs: don't throw exception if the container is null.
  2612. * Page.cs: now we can render client scripts, startup scripts and hidden
  2613. fields. Only render __VIEWSTATE if there is someone that will take care
  2614. of it.
  2615. (RaisePostBackEvents): first try the last one that required raise event,
  2616. then try __EVENTTARGET.
  2617. 2003-01-16 Gonzalo Paniagua Javier <[email protected]>
  2618. * Control.cs: fixes in UniqueID, FindControl, AddedControl,
  2619. UnloadRecursive, InitRecursive. Reduced the size of __VIEWSTATE. Made
  2620. FindControl work with NamingContainers.
  2621. * ControlCollection.cs: notify the parent when clearing the collection.
  2622. * LosFormatter.cs: Added debugging output and generate a valid
  2623. viewstate even for unknown types.
  2624. * Page.cs: GetPostBackEventReference now uses UniqueID. Reduced
  2625. viewstate.
  2626. 2003-01-10 Gonzalo Paniagua Javier <[email protected]>
  2627. * Page.cs: make it fire the LoadData related events also for controls
  2628. such as ImageButton, whose variable(s) in the query string are of the
  2629. form ctrl_name.x and only fire them once per control.
  2630. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  2631. * DataBinder.cs:
  2632. (GetPropertyValue): don't try to get the property as indexed
  2633. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  2634. * DataBinder.cs: use TypeDescriptor to get the properties and their
  2635. values.
  2636. 2003-01-04 Gonzalo Paniagua Javier <[email protected]>
  2637. * Control.cs:
  2638. (AddedControl): take the children to the same state of the parent.
  2639. (InitRecursive): set the page of the children.
  2640. * Page.cs: removed one line (it's done a few lines above).
  2641. * UserControl.cs:
  2642. (OnInit): always call InitializeAsUserControl
  2643. (InitializeAsUserControl): sets the page for the control.
  2644. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  2645. * Control.cs: fixed bug #36037.
  2646. 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
  2647. * BaseParser.cs: a couple of path fixes to make it work
  2648. when the page is not in the root directory.
  2649. 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
  2650. * Control.cs: fixed PreRenderRecursiveInternal. Thanks to kojoadams for
  2651. reporting the bug.
  2652. 2002-12-18 Gonzalo Paniagua Javier <[email protected]>
  2653. * BaseParser.cs: use MapPath and context to locate files.
  2654. * Control.cs: implemented MapPathSecure.
  2655. * TemplateControl.cs: use UrlUtils to generate the path.
  2656. * TemplateControlParser.cs: use the context and MapPath.
  2657. * UserControl.cs: implemented MapPath.
  2658. * UserControlParser.cs: added context parameter to constructor.
  2659. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  2660. * Control.cs: implemented MapPathSecure.
  2661. * Page.cs: fixed Server property.
  2662. 2002-12-15 Gonzalo Paniagua Javier <[email protected]>
  2663. * DataBinder.cs: try the indexer if the property is not found in
  2664. GetPropertyValue ().
  2665. 2002-12-13 Gonzalo Paniagua Javier <[email protected]>
  2666. * Control.cs: added AutoEventWireup internal property.
  2667. * Page.cs: removed page events wire up from here.
  2668. * TemplateControl.cs: new method WireupAutomaticEvents to hook up page
  2669. and user controls events.
  2670. * TemplateControlParser.cs: process the options that are applicable
  2671. once we have the instance of the control.
  2672. * TemplateParser.cs: also stores the options.
  2673. * UserControl.cs: hook up events before initializing the control.
  2674. 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
  2675. * Control.cs: new method to set bindingContainer value.
  2676. * TemplateControl.cs: added controls are not binding containers.
  2677. 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
  2678. * Control.cs: implemented TemplateSourceDirectory.
  2679. * TemplateControl.cs: implemented LoadControl and LoadTemplate.
  2680. 2002-11-27 Gonzalo Paniagua Javier <[email protected]>
  2681. * UserControl.cs: fixed SetAttribute.
  2682. * UserControlParser.cs: set the correct base type.
  2683. 2002-11-26 Gonzalo Paniagua Javier <[email protected]>
  2684. * TemplateParser.cs: fixed BaseType.
  2685. * UserControlParser.cs: helper class to compile user controls.
  2686. 2002-11-20 Gonzalo Paniagua Javier <[email protected]>
  2687. * LosFormatter.cs: added DateTime to special types.
  2688. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  2689. * LosFormatter.cs: added array serialization support. Disabled binary
  2690. serialization and add some debugging code.
  2691. * StateBag.cs: the length of the list of value can be less than the
  2692. length if the list of keys when remaining values are null.
  2693. 2002-11-07 Gonzalo Paniagua Javier <[email protected]>
  2694. * Page.cs: return something useful in GetPostBackClientEvent.
  2695. 2002-11-02 Gonzalo Paniagua Javier <[email protected]>
  2696. * Page.cs: implemented FileDependecies and made it protected.
  2697. 2002-10-31 Gonzalo Paniagua Javier <[email protected]>
  2698. * Control.cs: save control names instead of the controls
  2699. themselves to the ViewState.
  2700. * LosFormatter.cs: added support for serializing unknown
  2701. types. BinaryFormatter does not work so you better don't store anything
  2702. of unknown Type in ViewState.
  2703. * Page.cs: GetViewStateString works now using LosFormatter.
  2704. Complete "Control execution lifecycle" by unloading all the child
  2705. controls. Check for null in RaisePostBackEvents.
  2706. LoadPageViewStateFromPersistenceMedium uses LosFormatter too.
  2707. 2002-10-29 Gonzalo Paniagua Javier <[email protected]>
  2708. * DataBinder.cs: implemented Eval and GetIndexedPropertyValue methods.
  2709. 2002-10-27 Gonzalo Paniagua Javier <[email protected]>
  2710. * LosFormatter.cs: Use WebEncoding.Encoding.
  2711. * Control.cs:
  2712. * Page.cs: fixed namespace.
  2713. 2002-10-24 Gonzalo Paniagua Javier <[email protected]>
  2714. * Page.cs: set the context in ProcessRequest. Added a few trace calls.
  2715. * Control.cs: added some trace information.
  2716. 2002-10-08 Gonzalo Paniagua Javier <[email protected]>
  2717. * SimpleHandlerFactory.cs: new handler for .ashx files.
  2718. 2002-09-28 Gonzalo Paniagua Javier <[email protected]>
  2719. * System.Web.UI/PageHandlerFactory.cs: new file.
  2720. * System.Web.UI/PageParser.cs:
  2721. * System.Web.UI/TemplateControlParser.cs: we are now able to compile
  2722. pages and use HttpApplication, HttpRuntime and SimpleWorkerRequest.
  2723. 2002-09-25 Gonzalo Paniagua Javier <[email protected]>
  2724. * Control.cs: implemented ObBubbleEvent.
  2725. * Page.cs: temporary workaround to make POST work with xsp server.
  2726. 2002-09-22 Gonzalo Paniagua Javier <[email protected]>
  2727. * Page.cs: fixed InvokeEventMethod now that Type.GetMethod does not
  2728. return pvt methods.
  2729. 2002-09-11 Gonzalo Paniagua Javier <[email protected]>
  2730. * SimpleWebHandlerParser.cs: New file.
  2731. * WebServiceParser.cs: New file.
  2732. 2002-08-22 Gonzalo Paniagua Javier <[email protected]>
  2733. * LosFormatter.cs: almost fully implemented.
  2734. 2002-08-18 Gonzalo Paniagua Javier <[email protected]>
  2735. * CompiledTemplateBuilder.cs: InstantiateIn is virtual.
  2736. * EmptyControlCollection.cs: throw correct exception.
  2737. * LosFormatter.cs: stubbed out.
  2738. * OutputCacheLocation.cs: little fix.
  2739. 2002-08-16 Gonzalo Paniagua Javier <[email protected]>
  2740. * System.Web.UI/ApplicationFileParser.cs:
  2741. * System.Web.UI/BaseParser.cs:
  2742. * System.Web.UI/PageParser.cs:
  2743. * System.Web.UI/TemplateControl.cs:
  2744. * System.Web.UI/TemplateControlParser.cs:
  2745. * System.Web.UI/TemplateParser.cs: first steps to move xsp into
  2746. System.Web.
  2747. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  2748. * Page.cs: request to render postback script can be after form started
  2749. rendering.
  2750. 2002-07-22 Gonzalo Paniagua Javier <[email protected]>
  2751. * Page.cs: added more page events to invoke automagically if some
  2752. methods are defined.
  2753. 2002-07-22 Gonzalo Paniagua Javier <[email protected]>
  2754. * Control.cs:
  2755. (SaveViewState): save state even when control is not visible.
  2756. (SaveViewStateRecursive):
  2757. (LoadViewStateRecursive): made internal.
  2758. 2002-07-21 Gonzalo Paniagua Javier <[email protected]>
  2759. * Page.cs: improved event raising to allow client postback for a wider
  2760. variety of actions (clicking an hyperlink, ...).
  2761. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  2762. * UserControl.cs: implemented Load/SaveViewState.
  2763. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  2764. * AttributeCollection.cs:
  2765. (Add): handle 'style' through styleCollection.
  2766. * CssStyleCollection.cs:
  2767. (fillStyle): renamed to FillStyle and made it internal.
  2768. * Page.cs:
  2769. (GetViewStateString): fixed, broken after other recent changes.
  2770. (ProcessPostData): allow a second try for postback data after OnLoad.
  2771. (ProcessRequest): clear controls collection, removed call to
  2772. UnloadRecursive.
  2773. 2002-07-19 Gonzalo Paniagua Javier <[email protected]>
  2774. * Control.cs: uncommented Dispose.
  2775. * Page.cs:
  2776. (DeterminePostBackMode): more checkings.
  2777. (GetPostBackClientHyperLink): implemented.
  2778. (GetPostBackEventReference): added some comments with the HTML that MS
  2779. generates for that.
  2780. (ProcessRequest): fixed processing order. The page is unloaded after
  2781. a request and regenerated from view state on subsequents posts.
  2782. 2002-07-17 Gonzalo Paniagua Javier <[email protected]>
  2783. * Control.cs: fixed related to ViewState. Added RemovedControl.
  2784. * ControlCollection.cs: notify owner of control removal.
  2785. * CssStyleCollection.cs: almost rewritten to make it render the style
  2786. attribute after changes to it.
  2787. * Page.cs: follow the guidelines in 'Control execution lifecycle'.
  2788. Removed Xml code.
  2789. * StateBag.cs: don't use IDictionary.GetEnumerator on the
  2790. HybridDictionary: it makes the program give an InvalidCastException at
  2791. runtime. Why?
  2792. 2002-07-16 Gonzalo Paniagua Javier <[email protected]>
  2793. * Page.cs: fire Init and Load events for all children.
  2794. 2002-07-14 Gonzalo Paniagua Javier <[email protected]>
  2795. * UserControl.cs: New file.
  2796. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  2797. * ControlBuilderAttribute.cs: finished implementation.
  2798. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  2799. * ConstructorNeedsTagAttribute.cs: the default constructor sets the
  2800. property to false.
  2801. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  2802. * System.Web.UI/AttributeCollection.cs: added CssStyleCollection.
  2803. * System.Web.UI/CssStyleCollection.cs: use a StateBag instead of a
  2804. Hashtable. Added internal .ctor.
  2805. * System.Web.UI/DataBinding.cs: propertyType is a Type. Implemented
  2806. Equals and GetHashCode.
  2807. * System.Web.UI/DataBoundLiteralControl.cs:
  2808. (LoadViewState):
  2809. (SaveViewState): implemented.
  2810. * System.Web.UI/Page.cs: FileDependencies is not public.
  2811. * System.Web.UI/ParseChildrenAttribute.cs: give a value to Default.
  2812. (GetHashCode):
  2813. (Equals):
  2814. (IsDefaultAttribute): implemented.
  2815. 2002-07-08 Gonzalo Paniagua Javier <[email protected]>
  2816. * Control.cs: fixed Visible property.
  2817. * Page.cs: fixed GetViewStateString.
  2818. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  2819. * System.Web.UI/Page.cs:
  2820. (GetViewStateString): new function to give the server access to the
  2821. generated view state string.
  2822. (Validate): d'oh!
  2823. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  2824. * Control.cs:
  2825. (SaveViewstateRecursive): implemented.
  2826. (SaveViewState): fixed.
  2827. (IParserAccessor.AddParsedSubObject): don't use 'this'.
  2828. * Page.cs: added code to save view state to an xml file. It's not
  2829. being used right now.
  2830. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  2831. * System.Web.UI/LiteralControl.cs:
  2832. Fixes based on class status page:
  2833. - Add attributes (DefaultEvent, ParseChildren).
  2834. - Fix declarations.
  2835. - Explicitly implement some interfaces (IPostBackDataHandler
  2836. and IPostBackEventHandler).
  2837. - Implemented some missing methods.
  2838. 2002-06-29 Gonzalo Paniagua Javier <[email protected]>
  2839. * Control.cs: reimplemented FindControls.
  2840. * Page.cs:
  2841. (.ctor): set the page for this control.
  2842. (IsPostBack): return valid value.
  2843. (DeterminePostBackMode): finished.
  2844. (OnFormRender): render __VIEWSTATE (uses GetTypeHashCode()).
  2845. (ProcessPostData): implemented. Raises change and postback events.
  2846. (ProcessRequest): changed to support reuse of the instance.
  2847. (RegisterRequiresPostBack): implemented.
  2848. * ValidatorCollection.cs: implemented all methods.
  2849. 2002-06-25 Gonzalo Paniagua Javier <[email protected]>
  2850. * Control.cs:
  2851. * Page.cs: first attemp to save view state.
  2852. * HtmlForm.cs: don't render Action.
  2853. 2002-06-24 Gonzalo Paniagua Javier <[email protected]>
  2854. * Page.cs: implemented more properties using information we already
  2855. have in Context.
  2856. (OnFormRender):
  2857. (OnFormPostRender):
  2858. (VerifyRenderingInServerForm): implemented.
  2859. 2002-06-22 Gonzalo Paniagua Javier <[email protected]>
  2860. * Page.cs: changed InvokeEventMethod to use a GetMethod that works with
  2861. out runtime. Renamed Page_Init and Page_Load.
  2862. After this, we can load a dll and render HTML in linux.
  2863. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  2864. * Control.cs:
  2865. (AddedControl): new function that is called whenever a control is
  2866. added to a collection of controls in a container. It sets the defaults
  2867. except for Page.
  2868. * ControlCollection.cs: call AddedControl in Add/AddAt.
  2869. * DataBoundLiteralControl.cs: implemented constructor, Text, Render,
  2870. SetStaticString and SetDataBoundString.
  2871. * Page.cs: removed SetDefaults.
  2872. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  2873. * CompiledTemplateBuilder.cs: new file. Used in the code generated
  2874. by xsp.
  2875. * Control.cs:
  2876. (BindingContainer): implemented.
  2877. (EnsureChildControls): avoid stack overflow.
  2878. * DataBinder.cs: implemented Eval and PropertyValue.
  2879. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  2880. * HtmlTextWriter.cs: fixed style attributes rendering (almost the same
  2881. bug as in regular attributes).
  2882. 2002-06-17 Gonzalo Paniagua Javier <[email protected]>
  2883. * Control.cs: implemented PreventAutoID.
  2884. * Page.cs:
  2885. (SetDefaults): don't set ID automatically if Control.PreventAutoID has
  2886. been called.
  2887. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  2888. * Page.cs:
  2889. (Validators): if the collection is null, create one.
  2890. (GetPostBackEventReference 2): don't throw exception.
  2891. (GetPostBackClientEvent): return a string with containing the method
  2892. name, the control name and the argument.
  2893. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  2894. * Page.cs: SetPage is now called SetDefaults and also sets a default
  2895. ID for controls that don't have one yet.
  2896. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  2897. * Page.cs:
  2898. (GetPostBackClient):
  2899. (RegisterRequiresPostBack): don't throw NotImplementedException to
  2900. keep going.
  2901. (ProcessRequest): set the current page as the Page property for *all*
  2902. the controls, not just the direct children of the page.
  2903. 2002-06-11 Gonzalo Paniagua Javier <[email protected]>
  2904. * Control.cs:
  2905. (MapPathSecure): until security is implemented, return the same path
  2906. received as argument.
  2907. (RenderControl): call OnPreRender before rendering the control. So
  2908. AdRotator can read its configuration file.Is there any other place
  2909. where this should be done?
  2910. * HtmlTextWriter.cs:
  2911. (AddAttribute): fixed. Now it really stores attributes.
  2912. (RenderBeginTag): fixed a couple of bugs (little ones but hard to find).
  2913. 2002-06-09 Gonzalo Paniagua Javier <[email protected]>
  2914. * ControlCollection.cs:
  2915. (AddAt): if index is -1 behave as a plain Add.
  2916. 2002-06-06 Gonzalo Paniagua Javier <[email protected]>
  2917. * Page.cs: for each child control to render, assign Control.Page.
  2918. Probably also needed in HtmlContainerControl derived classes.
  2919. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  2920. * AttributeCollection.cs: don't need a Hastable. StateBag now works
  2921. fine and takes care of the details.
  2922. * Control.cs: added HasChildren property.
  2923. * StateBag.cs: fixed a couple of nasty bugs.
  2924. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  2925. * Page.cs: run OnInit, OnLoad y PreRender before rendering the page.
  2926. Invoke Page_Init and/or Page_Load if the user supplied them (though
  2927. this should depend on AutoEventWireUp attribute of Page directive).
  2928. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  2929. * Control.cs: don't throw exception in ControlID. By now, it returns ID.
  2930. * Page.cs:
  2931. (ProcessRequest): implemented.
  2932. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  2933. * System.Web.UI/Page.cs: finished stubbing out. Implemented some
  2934. methods.
  2935. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  2936. * Page.cs:
  2937. (FileDependencies): now is public public.
  2938. (EnableViewStateMAC): uncommented and made protected.
  2939. (GetTypeHashCode): added method.
  2940. 2002-05-24 Duncan Mak <[email protected]>
  2941. * TemplateControl.cs (SetStringResourcePointer): Fixed typo.
  2942. * StateBag.cs (Item): Changed the visibility level of the this
  2943. [object] indexer.
  2944. Misc. formatting edits, fixing some bugs introduced by the indentation.
  2945. * DataBinder.cs (Eval)
  2946. (GetIndexedPropertyValue)
  2947. (GetPropertyValue): Fixed return types.
  2948. 2002-05-21 Miguel de Icaza <[email protected]>
  2949. * HtmlTextWriter.cs: Use this to change the member instances.
  2950. 2002-05-17 Duncan Mak <[email protected]>
  2951. * AttributeCollection.cs:
  2952. * ControlCollection.cs:
  2953. * CssStyleCollection.cs:
  2954. * DataBindingCollection.cs:
  2955. * EmptyControlCollection.cs: Added missing Collection classes.
  2956. 2002-05-17 Duncan Mak <[email protected]>
  2957. * BaseParser.cs:
  2958. * TemplateParser.cs: Implemented. BaseParser is weird because
  2959. there is no documentation on what it does.
  2960. * ControlBuilder.cs:
  2961. * DataBinder.cs:
  2962. * DataBinding.cs: Added.
  2963. * DataBoundLiteralControl.cs:
  2964. * Triplet.cs: Added.
  2965. * RenderMethod.cs: Added this delegate for Control.cs
  2966. 2002-05-15 Gonzalo Paniagua Javier <[email protected]>
  2967. * ValidationPropertyAttribute.cs: a couple of fixes to make it compile.
  2968. 2002-05-14 Duncan Mak <[email protected]>
  2969. * ValidationPropertyAttribute.cs: Added to CVS.
  2970. 2002-05-10 Duncan Mak <[email protected]>
  2971. * ConstructorNeedsTagAttribute.cs:
  2972. * ControlBuilderAttribute.cs:
  2973. * ImageClickEventArgs.cs:
  2974. * ParseChildrenAttribute.cs:
  2975. * PartialCachingAttribute.cs:
  2976. * PersistChildrenAttribute.cs:
  2977. * PersistenceModeAttribute.cs:
  2978. * TemplateContainerAttribute.cs: Added to CVS.
  2979. * PersistanceMode.cs: Removed, fixed typo.
  2980. * PersistenceMode.cs: Replacing above.
  2981. * StateBag.cs (this): Fixed indexer, it takes a string as the
  2982. index, not an object.
  2983. * ValidatorCollection.cs: Fixed typo, ValidatedCollection to ValidatorCollection.
  2984. * Page.cs (Validators): return type should be ValidatorCollection,
  2985. not ValidatedCollection.
  2986. * TagPrefixAttribute.cs: Added to CVS.
  2987. 2002-05-07 Duncan Mak <[email protected]>
  2988. * Utils.cs (GetClientValidatedEvent): Uncommented the 'Page' argument.
  2989. 2002-03-26 Gaurav Vaish <[email protected]>
  2990. * DataBindingHandlerAttribute.cs
  2991. - Completed
  2992. * ToolboxDataAttribute.cs - Completed
  2993. 2002-01-03 Nick Drochak <[email protected]>
  2994. * DesignTimeParseData.cs: initialze static member to avoid compile
  2995. error
  2996. * PropertyConverter.cs: remove uneeded exception variables from
  2997. catch blocks.
  2998. 2002-01-02 Nick Drochak <[email protected]>
  2999. * DesignTimeParseData.cs: fix header to show correct class name
  3000. 2001-12-21 Gaurav Vaish <[email protected]>
  3001. * StateBag.cs - Completed
  3002. 2001-12-19 Gaurav Vaish <[email protected]>
  3003. * Pair.cs - Small undocumented class. Completed.
  3004. 2001-12-18 Gaurav Vaish <[email protected]>
  3005. * DesignTimeParseData.cs - Initial implementation
  3006. * StateBag.cs - Initial implementation
  3007. 2001-12-17 Gaurav Vaish <[email protected]>
  3008. * PropertyConverter.cs - Undocumented class. Completed.
  3009. * Utils.cs - Undocumented, private class.
  3010. Initial implementation
  3011. 2001-08-28 Bob Smith <[email protected]>
  3012. * Control.cs: Figured out some undocumented API.
  3013. * Added TODO.
  3014. * BuildMethod.cs: Initial implementation.
  3015. * BuildTemplateMethod.cs: Initial implementation.
  3016. * HtmlTextWriterAttribute.cs: Initial implementation.
  3017. * HtmlTextWriterStyle.cs: Initial implementation.
  3018. * HtmlTextWriterTag.cs: Initial implementation.
  3019. * IAttributeAccessor.cs: Initial implementation.
  3020. * IDataBindingsAccessor.cs: Initial implementation.
  3021. * ImageClickEventHandler.cs: Initial implementation.
  3022. * INamingContainer.cs: Initial implementation.
  3023. * IParserAccessor.cs: Initial implementation.
  3024. * IPostBackDataHandler.cs: Initial implementation.
  3025. * IPostBackEventHandler.cs: Initial implementation.
  3026. * IStateManager.cs: Initial implementation.
  3027. * ITagNameToTypeMapper.cs: Initial implementation.
  3028. * ITemplate.cs: Initial implementation.
  3029. * IValidator.cs: Initial implementation.
  3030. * OutputCacheLocation.cs: Initial implementation.
  3031. * PersistanceMode.cs: Initial implementation.
  3032. * StateItem.cs: Initial implementation.
  3033. 2001-08-27 Bob Smith <[email protected]>
  3034. * Control.cs: Bug fixes and implementations.
  3035. 2001-08-24 Bob Smith <[email protected]>
  3036. * Control.cs: Bug fixes.
  3037. 2001-08-23 Bob Smith <[email protected]>
  3038. * Control.cs: More implementation. Events reworked for performance.
  3039. 2001-08-22 Bob Smith <[email protected]>
  3040. * LiteralControl.cs: Implemented.
  3041. * Control.cs: Even more implementation (Events). What a beast.
  3042. 2001-08-20 Bob Smith <[email protected]>
  3043. * Control.cs: More implementation. Not done yet. Shutter.
  3044. 2001-08-17 Bob Smith <[email protected]>
  3045. * Control.cs: Partial implementation.