ChangeLog 131 KB

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