ChangeLog 122 KB

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