ChangeLog 108 KB

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