ChangeLog 124 KB

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