ChangeLog 118 KB

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