ChangeLog 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406
  1. 2005-08-26 Sebastien Pouliot <[email protected]>
  2. * CssStyleCollection.cs: Implemented setter for Value (2.0) using the
  3. existing (but internal) FillStyle method. Rewrote BagToString to use an
  4. HtmlTextWriter so we get the "right" format for background-image url.
  5. 2005-08-26 Sebastien Pouliot <[email protected]>
  6. * CssStyleCollection.cs: Implemented this[HtmlTextWriterStyle],
  7. Remove(HtmlTextWriterStyle) and the getter for Value (all 2.0). Removed
  8. the extra space from last patch because they break some unit tests.
  9. 2005-08-26 Lluis Sanchez Gual <[email protected]>
  10. * CssStyleCollection.cs: Added some spacing.
  11. * HtmlTextWriter.cs: Made style and attribute tables static.
  12. Implemented StaticGetStyleName().
  13. 2005-08-26 Sebastien Pouliot <[email protected]>
  14. * CssStyleCollection.cs: Stubbed new 2.0 stuff to allow TableStyleTest
  15. compilation.
  16. * HtmlTextWriter.cs: Fix style rendering for BackgroundImage in 2.0.
  17. The new rendering formats the value as "url(" + original + ")".
  18. 2005-08-26 Sebastien Pouliot <[email protected]>
  19. * HtmlTextWriter.cs: Added support for VerticalAlign style (as it
  20. depends on the HtmlTextWriterStyle ordering).
  21. 2005-08-26 Gonzalo Paniagua Javier <[email protected]>
  22. * HtmlTextWriter.cs: remove 'mistaken end of statement' and FIXME.
  23. 2005-08-25 Sebastien Pouliot <[email protected]>
  24. * HtmlTextWriterStyle.cs: Added missing VerticalAlign in 2.0 (which
  25. fixed the rest of the enum values).
  26. * UrlPropertyAttribute.cs: Removed the .ctor accepting an UrlTypes
  27. parameter to match 2.0 API. Added a setter to the AllowedTypes
  28. property.
  29. 2005-08-24 Chris Toshok <[email protected]>
  30. * Control.cs (get_Adapter): Instead of throwing an exception, just
  31. return null, so we can write the rest of the Control specific
  32. Adapter code and just not enable any of those code paths until we
  33. have actual adapters. Also flag TODO.
  34. (EnsureChildControls): Call out to Adapter.CreateChildControls if
  35. we have an adapter.
  36. (RenderChildren): call "RenderControl (writer, adapter)" if we
  37. have an adapter.
  38. (RenderControl): implement the adapter case naively.
  39. (LoadRecursive): call out to Adapter.OnLoad if we have one.
  40. (PreRenderRecursiveInternal): call out to Adapter.OnPrerender if
  41. we have one.
  42. (InitRecursive): call out to Adapter.OnInit if we have one.
  43. 2005-08-24 Chris Toshok <[email protected]>
  44. * Page.cs (GetPostBackEventReference): track change to
  45. ClientScriptManager and don't call a removed method.
  46. * ClientScriptManager.cs: track more recent docs and corcompare
  47. output.
  48. 2005-08-24 Sebastien Pouliot <[email protected]>
  49. * KeyedList.cs: Fixed bug when removing an unexisting object.
  50. * StateManagedCollection.cs: Fixed API for beta2. Fixed buglets found
  51. in implementing RoleGroupCollection.
  52. 2005-08-22 Sebastien Pouliot <[email protected]>
  53. * Page.cs: Use Control property (and not the _control variable) to get
  54. the User (so the virtual Control property can be overriden properly).
  55. Sadly this doesn't seems to be the case for other properties (like
  56. Request).
  57. 2005-08-18 Dick Porter <[email protected]>
  58. * ControlCachePolicy.cs, PersistChildrenAttribute.cs,
  59. UserControl.cs, DesignerDataBoundLiteralControl.cs,
  60. PageStatePersister.cs, DataBoundLiteralControl.cs, Control.cs,
  61. BasePartialCachingControl.cs, LiteralControl.cs: 2.0 API fixes and
  62. stubs and attribute fixes
  63. 2005-08-13 Sebastien Pouliot <[email protected]>
  64. * Control.cs: Add protected virtual SetDesignModeState, in 2.0
  65. profile, as this is required for the Login control.
  66. 2005-08-11 Dick Porter <[email protected]>
  67. * CssStyleCollection.cs: Tweak the css string format to pass a
  68. unit test
  69. * AttributeCollection.cs: Don't NRE if someone sets the "style"
  70. attribute to null.
  71. 2005-08-05 Ben Maurer <[email protected]>
  72. * HtmlTextWriter.cs: Revert the patch below, see test case
  73. 2005-08-05 Dick Porter <[email protected]>
  74. * HtmlTextWriter.cs: Make <option> tags render inline, to match
  75. the ms output
  76. 2005-08-03 Ben Maurer <[email protected]>
  77. * HtmlTextWriter.cs: Optmize this not to do insane amounts of
  78. allocation for large pages, etc.
  79. 2005-07-30 Chris Toshok <[email protected]>
  80. * Page.cs (VerifyRenderingInServerForm): copy MS's error message
  81. since our form-errors jsunit tests depend on it.
  82. 2005-07-30 Chris Toshok <[email protected]>
  83. * DataBinder.cs (FormatResult): make internal, not private.
  84. 2005-07-29 Ben Maurer <[email protected]>
  85. * StateBag.cs: Don't remove when tracking viewstate, as per msft
  86. docs.
  87. 2005-07-29 Ben Maurer <[email protected]>
  88. * StateBag.cs: Actually *remove* items that are null. Duh.
  89. 2005-07-21 Peter Dennis Bartok <[email protected]>
  90. * Page.cs: Need to throw exception when accessing Request but no
  91. context exists
  92. 2005-07-20 Chris Toshok <[email protected]>
  93. * ClientScriptManager.cs (GetClientValidationEvent): the JS we
  94. stick in onclick handlers for buttons/links/etc.
  95. * Page.cs (GetSubmitStatements): new function to return
  96. scriptManager.WriteSubmitStatements. Used by HtmlForm.
  97. (AreValidatorsUplevel): used by many of the button/linkbutton
  98. controls (the ones that can CauseValidation) to tell whether or
  99. not to emit client side validation calls.
  100. 2005-07-20 Chris Toshok <[email protected]>
  101. * WebResourceAttribute.cs: make internal (and available) in
  102. !NET_2_0.
  103. 2005-07-20 Chris Toshok <[email protected]>
  104. * ClientScriptManager.cs (GetWebResourceUrl): make internal (but
  105. available) in !NET_2_0.
  106. 2005-07-18 Peter Dennis Bartok <[email protected]>
  107. * Control.cs: Added IDataBindingsAccessor interface methods
  108. 2005-07-18 Ben Maurer <[email protected]>
  109. * HtmlTextWriter.cs: Fix nested indentation
  110. 2005-07-18 Peter Dennis Bartok <[email protected]>
  111. * Control.cs: Added missing IParserAccessor.AddParsedSubObject
  112. interface method
  113. 2005-07-18 Ben Maurer <[email protected]>
  114. * HtmlTextWriter.cs: Fix indentation (somewhat at least)
  115. 2005-07-18 Peter Dennis Bartok <[email protected]>
  116. * Control.cs:
  117. - Default name for controls on MS.Net is "_ctl" not "_ctrl"
  118. - MS does not append 'a' for auto-generated names
  119. 2005-07-17 Ben Maurer <[email protected]>
  120. * AttributeCollection.cs: Use the invariant culture.
  121. * StateBag.cs: "Duh" optimization: return null when there are no
  122. dirty items in the view state
  123. 2005-07-14 Ben Maurer <[email protected]>
  124. * StateBag.cs: A "short" version of my favorite method.
  125. * HtmlTextWriter.cs: New method to get the tag name staticly.
  126. 2005-07-14 Duncan Mak <[email protected]>
  127. * DataBindingHandlerAttribute.cs: Fixed after receiving some
  128. comments from Gonzalo.
  129. 2005-07-13 Jackson Harper <[email protected]>
  130. * PropertyConverter.cs: No public constructors.
  131. 2005-07-13 Ben Maurer <[email protected]>
  132. * HtmlTextWriter.cs: Remove debugging spew. Style cleanup
  133. 2005-07-12 Ben Maurer <[email protected]>
  134. * HtmlTextWriter.cs: Make styles work.
  135. 2005-07-11 Peter Dennis Bartok <[email protected]>
  136. * AttributeCollection.cs:
  137. - Changes to match MS behaviour, the "style" attribute is always
  138. added to the list, in addition to being added to the
  139. CssStyleCollection. Also added check for "style" attribute when
  140. setting via index setter
  141. - When "Style" attribute is added, CssStyleCollection is
  142. automatically created
  143. - The style keyword needs to be lowercase
  144. 2005-07-11 Ben Maurer <[email protected]>
  145. * HtmlTextWriter.cs: Missing a PopEndTag here.
  146. * PropertyConverter.cs: Pass tests
  147. 2005-07-09 Miguel de Icaza <[email protected]>
  148. * DataBindingHandlerAttribute.cs: Create the "Default" property.
  149. 2005-07-09 Duncan Mak <[email protected]>
  150. * DataBindingHandlerAttribute.cs: Implemented.
  151. 2005-07-08 Ben Maurer <[email protected]>
  152. * HtmlTextWriter.cs: Much better compliance with msft
  153. 2005-07-08 Jackson Harper <[email protected]>
  154. * ToolbarDataAttribute.cs: New implementation.
  155. 2005-07-07 Jackson Harper <[email protected]>
  156. * PropertyConverter.cs: New implementation.
  157. 2005-07-07 Ben Maurer <[email protected]>
  158. * StateBag.cs: Noticed an issue where SetDirty was called when the
  159. key did not exist.
  160. 2005-07-07 Ben Maurer <[email protected]>
  161. * StateBag.cs: Add a method that gets a string or else a default
  162. value.
  163. 2005-07-07 Dick Porter <[email protected]>
  164. * StateBag.cs: Added internal SetDirty (void) method to fix the
  165. build
  166. 2005-07-07 Sebastien Pouliot <[email protected]>
  167. * HtmlTextWriter.cs: Small fixlet when attribute has no value.
  168. 2005-07-07 Miguel de Icaza <[email protected]>
  169. * HtmlTextWriter.cs: Return the stuff in lowercase to pass the
  170. tests.
  171. * StateBag.cs: Add NET_2_0 SetDirty method to get the build
  172. going.
  173. 2005-07-07 Sebastien Pouliot <[email protected]>
  174. * HtmlTextWriter.cs: Small fixlet (required for the unit tests).
  175. 2005-07-06 Ben Maurer <[email protected]>
  176. * HtmlTextWriter.cs: Make sure to clear attributes when they are
  177. written.
  178. * StateBag.cs: New impl
  179. 2005-06-25 Gonzalo Paniagua Javier <[email protected]>
  180. * Page.cs:
  181. * Control.cs: avoid the creation of the EventHandlerList and accessing
  182. to it whenever possible. Fix ENABLE_THEMING constant.
  183. 2005-06-25 Gonzalo Paniagua Javier <[email protected]>
  184. * TemplateParser.cs:
  185. * TemplateControlParser.cs:
  186. * UserControlParser.cs: detect circular references when a control tries
  187. to register itself as a tag. Fixes bug #75376.
  188. 2005-06-14 Gonzalo Paniagua Javier <[email protected]>
  189. * PageParser.cs: don't try to compile the master page if it wan't
  190. provided. Use MapPath from the base classes instead of the long
  191. version. Fixes bug #75269 that prevented xsp2 from working properly.
  192. 2005-06-13 Lluis Sanchez Gual <[email protected]>
  193. * MasterPage.cs: Clear the default content of placeholders before
  194. adding the page content. Fixes bug #75193.
  195. 2005-06-13 Lluis Sanchez Gual <[email protected]>
  196. * PageParser.cs: Added MasterType property. Get the type from the
  197. MasterType directive.
  198. * MasterPageParser.cs: Added GetCompiledMasterType method.
  199. 2005-06-08 Gonzalo Paniagua Javier <[email protected]>
  200. * UserControl.cs:
  201. * Page.cs:
  202. * Control.cs: updates for 1.1 SP1
  203. 2005-06-06 Lluis Sanchez Gual <[email protected]>
  204. * Control.cs: Added new DataBind() overload for 2.0. The old
  205. method calls this new overload.
  206. 2005-06-04 Gonzalo Paniagua Javier <[email protected]>
  207. * TemplateParser.cs: ignore empty assembly.Location for in-memory
  208. generated assemblies.
  209. 2005-06-04 Gonzalo Paniagua Javier <[email protected]>
  210. * Page.cs: added AddContentTemplate method.
  211. 2005-05-26 Gonzalo Paniagua Javier <[email protected]>
  212. * AttributeCollection.cs: html-encode attribute values. Fixes
  213. bug #73771.
  214. 2005-05-26 Lluis Sanchez Gual <[email protected]>
  215. * DataSourceView.cs: Fix api.
  216. * NonVisualControlAttribute.cs: Implemented.
  217. * IDataItemContainer.cs: Added missing properties.
  218. * Control.cs: Added new EnableTheming and SkinID properties.
  219. * HierarchicalDataSourceControl.cs: Implemented missing methods.
  220. 2005-05-13 Lluis Sanchez Gual <[email protected]>
  221. * ControlCollection.cs: Added internal setter for ReadOnly.
  222. 2005-05-09 Geoff Norotn <[email protected]>
  223. * TemplateParser.cs: Silently remove the CodeFile attribute that ASP.NET 2.0
  224. uses instead of codebehind.
  225. 2005-05-08 Gonzalo Paniagua Javier <[email protected]>
  226. * Page.cs: as setting CurrentCulture is slow, don't set it if the
  227. culture has not changed since before the page started processing.
  228. 2005-05-06 Gonzalo Paniagua Javier <[email protected]>
  229. * TemplateParser.cs: LoadWithPartialName returns null if the assembly is
  230. not found.
  231. 2005-04-25 Gonzalo Paniagua Javier <[email protected]>
  232. * TemplateParser.cs:
  233. * SimpleWebHandlerParser.cs: removed values assigned and neved used.
  234. 2005-04-22 Gonzalo Paniagua Javier <[email protected]>
  235. * SimpleWebHandlerParser.cs:
  236. * TemplateParser.cs: always get the location (full path) for assemblies,
  237. even the ones from the GAC.
  238. * BaseCompiler.cs: check that DynamicBase directory exists before
  239. creating the TempFileCollection.
  240. 2005-04-22 Lluis Sanchez Gual <[email protected]>
  241. * ClientScriptManager.cs: Use a linked list instead of a Hashtable
  242. to store the scripts. In this way, scripts will be rendered in the
  243. same order as they have been registered. It shouldn't be slower
  244. since pages don't have many scripts.
  245. 2005-04-21 Lluis Sanchez Gual <[email protected]>
  246. * IEditableTextControl.cs: Implemented.
  247. * DataBinder.cs: Marked constructor as obsolete in 2.0.
  248. In GetDataItem, check for the IDataItemContainer interface
  249. in the container.
  250. * TemplateControl.cs: Improved check for data item.
  251. 2005-04-21 Gonzalo Paniagua Javier <[email protected]>
  252. * TemplateParser.cs: we still need LoadWithPartialName if Load fails.
  253. * Page.cs: ensure _requiresPostBack is emptied if we didn't have a copy
  254. for second postback.
  255. 2005-04-20 Rafael Teixeira <[email protected]>
  256. * TemplateParser.cs: Adding support for Strict/Explicit attributes
  257. for @Page/@Control directives as documented at
  258. http://msdn.microsoft.com/library/en-us/cpgenref/html/cpconControlDirective.asp.
  259. First step don't choke on them. Fixing #74671
  260. 2005-04-20 Gonzalo Paniagua Javier <[email protected]>
  261. * TemplateParser.cs: use Load instead of LoadWithPartialName. That was
  262. there from the time when Load wasn't working properly. First part of the
  263. fix to 74500.
  264. 2005-04-15 Lluis Sanchez Gual <[email protected]>
  265. * ControlBuilder.cs: The BindingContainerType property happens
  266. to exist in 2.0, so I made it public. Added ParentTemplateBuilder,
  267. which is used to get the binding container that is managing
  268. the current two-way binding context.
  269. * TemplateBuilder.cs: Added some methods and an internal class
  270. to support two-way bindings.
  271. * CompiledBindableTemplateBuilder.cs: Implemented.
  272. * IBindableTemplate.cs: This interface inherits from ITemplate.
  273. 2005-04-14 Lluis Sanchez Gual <[email protected]>
  274. * ControlBuilder.cs: Added BindingContainerType property,
  275. which works like NamingContainerType but takes into account
  276. template builders with a specific container type (specified
  277. using the TemplateContainerAttribute.
  278. * StateManagedCollection.cs: Reimplemented Save/Load view
  279. state methods. The existing implementation was not correct
  280. in all cases.
  281. 2005-04-08 Lluis Sanchez Gual <[email protected]>
  282. * DataSourceView.cs: Added null check.
  283. 2005-04-07 Lluis Sanchez Gual <[email protected]>
  284. * TemplateControl.cs:
  285. * Page.cs: Moved Eval and XPath from Page
  286. to TemplateControl.
  287. * StateManagedCollection.cs: Avoid saving null state.
  288. 2005-04-01 Lluis Sanchez Gual <[email protected]>
  289. * DataSourceView.cs: Rethrow exceptions not handled by operation
  290. callbacks.
  291. * ITextControl.cs: Removed event.
  292. * CollectionBuilder.cs: Don't crash when a collection has more
  293. than one indexer.
  294. 2005-03-23 Lluis Sanchez Gual <[email protected]>
  295. * Control.cs: Added a new internal property: HasRenderMethodDelegate.
  296. * HtmlTextWriterAttribute.cs: Replaced wrong enum value.
  297. * HtmlTextWriter.cs: Register new ASP.NET 2.0 attributes
  298. 2005-03-16 Lluis Sanchez Gual <[email protected]>
  299. * ClientScriptManager.cs: Fix build.
  300. 2005-03-11 Lluis Sanchez Gual <[email protected]>
  301. * Utils.cs, Control.cs: Don't use Page.GetPostBackClientEvent
  302. since it is deprecated in 2.0.
  303. * Page.cs: Deprecated GetPostBackClientEvent and similar methods
  304. in 2.0. Moved callback management methods to ClientScriptManager.
  305. * ClientScriptManager.cs: Moved here deprecated methods from Page.
  306. In GetPostBackEventReference (PostBackOptions), don't use the
  307. WebForm_DoPostback script if the post can be done with a simple
  308. __doPostBack call.
  309. * PostBackOptions.cs: Fixed default values for some properties.
  310. 2005-03-09 Gonzalo Paniagua Javier <[email protected]>
  311. * Control.cs: in FindControl, throw if there's more than one control
  312. with the same ID. Fixes bug #73479.
  313. 2005-03-04 Lluis Sanchez Gual <[email protected]>
  314. * Page.cs: Load control state before loading view state, and the
  315. same for saving.
  316. * DataSourceSelectArguments.cs: Fix recursive property call.
  317. 2005-02-25 Lluis Sanchez Gual <[email protected]>
  318. * DataSourceView.cs: Fixed incorrect implementation of
  319. RaiseUnsupportedCapabilityError.
  320. * IDataItemContainer.cs: Added new properties.
  321. * Page.cs: Implemented Form property.
  322. * Control.cs: Fixed formatting.
  323. * StateManagedCollection.cs: Track view state of items loaded
  324. in LoadViewState.
  325. 2005-02-22 Lluis Sanchez Gual <[email protected]>
  326. * FilterableAttribute.cs: Fix endless loop.
  327. 2005-02-18 Lluis Sanchez Gual <[email protected]>
  328. * Page.cs: Implemented missing events.
  329. 2005-02-17 Gonzalo Paniagua Javier <[email protected]>
  330. * BoundPropertyEntry.cs:
  331. * PropertyEntry.cs:
  332. * TwoWayBoundPropertyEntry.cs: implemented.
  333. 2005-02-10 Lluis Sanchez Gual <[email protected]>
  334. * Page.cs: Added support for validation groups. Some fixes in
  335. SavePageControlState().
  336. * IFilterResolutionService.cs: Removed extra field.
  337. * INavigateUIData.cs: Added missing field.
  338. * ICheckBoxControl.cs, IStaticTextControl.cs, ITextControl.cs:
  339. Implemented new interfaces.
  340. 2005-02-04 Lluis Sanchez Gual <[email protected]>
  341. * Page.cs: Implemented support for cross page postback. Implemented
  342. support for postback with options. Fixed several method and property
  343. signatures for 2.0.
  344. * PostBackOptions.cs: Added some TODOs.
  345. 2005-02-02 Lluis Sanchez Gual <[email protected]>
  346. * ParseChildrenAttribute.cs: Set the correct default value for the
  347. childType property.
  348. 2005-01-28 Lluis Sanchez Gual <[email protected]>
  349. * ParseChildrenAttribute.cs: Added 2.0 property.
  350. * Pair.cs, Triplet.cs: Make classes serializable and sealed in 2.0.
  351. * Page.cs: Added support for control state.
  352. * TemplateBuilder.cs: ContainerType should be internal.
  353. * Control.cs: Added some new 2.0 methods.
  354. 2005-01-21 Lluis Sanchez Gual <[email protected]>
  355. * PageParser.cs: Read the MasterPageFile attribute.
  356. * UserControlParser.cs: Not sealed any more since we need to inherit from
  357. it. Added new constructor with an additional "type" parameter.
  358. * MasterPageParser.cs: Parser for master pages.
  359. * Page.cs: Added support for master pages.
  360. * MasterPage.cs: Implemented.
  361. 2005-01-10 Lluis Sanchez Gual <[email protected]>
  362. * TemplateBuilder.cs: Added a special constructor that takes an
  363. attribute provider as parameter. The container type for the template
  364. may be defined in a TemplateContainerAttribute.
  365. * ControlBuilder.cs: Create the TemplateBuilder using that special
  366. constructor.
  367. * TemplateContainerAttribute.cs: Added 2.0 property and ctor.
  368. 2004-12-20 Lluis Sanchez Gual <[email protected]>
  369. * IStyleSheet.cs: Added missing "using".
  370. * Page.cs: Implemented Header property.
  371. * CssStyleCollection.cs: Made BagToString method internal.
  372. * RootBuilder.cs: Register HtmlHead control.
  373. 2004-12-17 Lluis Sanchez Gual <[email protected]>
  374. * CssStyleCollection.cs: Minor (!) fix.
  375. * HtmlTextWriter.cs: Register names for new 2.0 styles.
  376. 2004-12-17 Lluis Sanchez Gual <[email protected]>
  377. * CssStyleCollection.cs: Make it work as a standalone collection.
  378. * HtmlTextWriter.cs: Added static method for getting style names.
  379. 2004-12-14 Gonzalo Paniagua Javier <[email protected]>
  380. * ControlCollection.cs: fix off-by-one and store a null at the end to
  381. remove the reference to the removed control.
  382. 2004-12-10 Lluis Sanchez Gual <[email protected]>
  383. * ClientScriptManager.cs: Added GetScriptLiteral helper method.
  384. 2004-12-02 Lluis Sanchez Gual <[email protected]>
  385. * Page.cs: Added support for callback events. Moved theform variable
  386. outside the __doPostBack function, so it can be used by other
  387. scripts.
  388. * StateBag.cs: Implemented SetDirty().
  389. 2004-11-30 Gonzalo Paniagua Javier <[email protected]>
  390. * Control.cs: when saving "Visible" into the ViewState, save the value
  391. for this precise control, as using the Visible property might give us
  392. Control's parent visibility. Fixes bug #69200.
  393. 2004-11-30 Gonzalo Paniagua Javier <[email protected]>
  394. * Control.cs: fixed ResolveUrl for relative URLs when using cookie-less
  395. sessions.
  396. * System.Web.Util/UrlUtils.cs: made (Insert|Get|Remove)SessionId use
  397. the appRoot + SessionID + vpath format.
  398. Fixes the 3 issues reported in bug #66623.
  399. 2004-11-26 Lluis Sanchez Gual <[email protected]>
  400. * Page.cs: Moved code for managing client scripts to ClientScriptManager,
  401. which is public in 2.0 and internal in 1.1.
  402. * ClientScriptManager.cs: Implemented.
  403. 2004-11-25 Sanjay Gupta <[email protected]>
  404. * DataSourceView.cs: Removed extra method.
  405. 2004-11-24 Sanjay Gupta <[email protected]>
  406. * DataSourveViewSelectCallback.cs: Corrected method signature.
  407. 2004-11-23 Lluis Sanchez Gual <[email protected]>
  408. * ControlBuilder.cs: Always check for the ParseChildrenAttribute,
  409. even if the class doesn't implement IParserAccessor.
  410. * WebResourceAttribute.cs: Allow multiple attributes of this type.
  411. 2004-11-15 Lluis Sanchez Gual <[email protected]>
  412. * DataSourceView.cs: Moved here implementation of DataSourceViewChanged
  413. from SqlDataSourceView.cs.
  414. 2004-11-09 Gonzalo Paniagua Javier <[email protected]>
  415. * Control.cs: unified a few bool fields into an int one.
  416. * ControlCollection.cs: use an array internally instead of always
  417. allocating an arraylist. Also added our own enumerator.
  418. * EmptyControlCollection.cs: there's no 'special' ctor now in the base
  419. class.
  420. 2004-11-05 Sanjay Gupta <[email protected]>
  421. * DataSourceView.cs: Changes in access modifiers of methods.
  422. 2004-10-20 Sanjay Gupta <[email protected]>
  423. * DataSourceCapabilities.cs: Added Flags attribute.
  424. * DataSourceSelectArguments.cs: Updated.
  425. * DataSourveView.cs: Updated.
  426. 2004-10-19 Sanjay Gupta <[email protected]>
  427. * HierarchicalDataSourceView.cs: Corrected class definition and updated.
  428. 2004-10-18 Gonzalo Paniagua Javier <[email protected]>
  429. * HierarchicalDataSourceView.cs: fix typo.
  430. 2004-10-18 Sanjay Gupta <[email protected]>
  431. * HierarchicalDataSourceView.cs: Updated.
  432. 2004-10-18 Sanjay Gupta <[email protected]>
  433. * DataSourceSelectArguments.cs: Initial implementation.
  434. 2004-10-12 Sanjay Gupta <[email protected]>
  435. * UrlPropertyAttribute.cs: Corrected implementation of Equals () method.
  436. 2004-10-12 Sanjay Gupta <[email protected]>
  437. * UrlTypes.cs: Updated.
  438. 2004-10-12 Sanjay Gupta <[email protected]>
  439. * UrlPropertyAttribute.cs: Added new file.
  440. 2004-10-01 Gonzalo Paniagua Javier <[email protected]>
  441. * Control.cs: even if the control has no children the naming container
  442. may contain the control we're looking for. Fixes bug #67304.
  443. 2004-09-30 Gonzalo Paniagua Javier <[email protected]>
  444. * AspGenerator.cs: added OtherTags.
  445. 2004-09-24 Sanjay Gupta <[email protected]>
  446. * ControlValuePropertyAttribute.cs: Initial implementation.
  447. 2004-09-24 Sanjay Gupta <[email protected]>
  448. * IPaginationContainer.cs: Corrected name of class.
  449. 2004-09-24 Sanjay Gupta <[email protected]>
  450. * IDReferencePropertyAttribute.cs: Completed implementation.
  451. 2004-09-24 Sanjay Gupta <[email protected]>
  452. * ThemeableAttribute.cs:
  453. * FilterableAttribute.cs: Code scrubbing and optimization.
  454. 2004-09-14 Sanjay Gupta <[email protected]>
  455. * ThemeableAttribute.cs: Completed implementation.
  456. 2004-09-14 Sanjay Gupta <[email protected]>
  457. * FilterableAttribute.cs: Completed implementation.
  458. 2004-09-14 Sanjay Gupta <[email protected]>
  459. * Control.cs: Added new attributes and a method.
  460. * FilterableAttribute.cs: New attribute, initial implementation.
  461. * ThemeableAttribute.cs: New attribute, initial implemenataion.
  462. 2004-09-09 Gonzalo Paniagua Javier <[email protected]>
  463. * TemplateParser.cs: ensure bin directory exists before trying to access
  464. it. Fixes bug #65446 (not closed yet due to dependencies).
  465. 2004-09-09 Sanjay Gupta <[email protected]>
  466. * Control.cs: Implemented methods of interface IExpressionAccessor.
  467. 2004-09-05 Gonzalo Paniagua Javier <[email protected]>
  468. * SimpleWebHandlerParser.cs: correctly cache Type instead of the
  469. assembly for ashx/asmx. Otherwise we need to open the file and check
  470. for the class name in there. Thanks to Ben for pointing this out.
  471. 2004-09-05 Gonzalo Paniagua Javier <[email protected]>
  472. * TemplateParser.cs: removed creation of StringWriter. It's not used.
  473. * Control.cs: don't create the EventHandlerList until requested.
  474. 2004-09-03 Sanjay Gupta <[email protected]>
  475. * Control.cs: Added new interfaces implemented in .Net 2.0.
  476. * ExpressionBinding.cs: Added new class.
  477. * ExpressionBindingCollection.cs: Added new class.
  478. 2004-09-01 Gonzalo Paniagua Javier <[email protected]>
  479. * LiteralControl.cs: stylized. This control has EnableViewState disabled
  480. by default and doesn't get an automatic ID. When text is null -> "".
  481. 2004-08-31 Sanjay Gupta <[email protected]>
  482. * ControlSkinProc.cs:
  483. * DataSourceViewOperationCallback.cs:
  484. * DataSourceViewSelectCallback.cs:
  485. * ExtractTemplateValuesMethod.cs: Explicit modifier "sealed" not
  486. required in definition as delegates by default are sealed.
  487. 2004-08-31 Sanjay Gupta <[email protected]>
  488. * IDReferencePropertyAttribute.cs: Corrected and changed from interface
  489. to class.
  490. * IMobileTextWriter.cs: Corrected method signatures.
  491. 2004-08-09 Sanjay Gupta <[email protected]>
  492. * ControlSkinProc.cs:
  493. * DataSourceViewOperationCallback.cs:
  494. * DataSourceViewSelectCallback.cs:
  495. * ExtractTemplateValuesMethod.cs: Added new delegates.
  496. 2004-08-06 Sanjay Gupta <[email protected]>
  497. * IBindableTemplate.cs:
  498. * ICallbackEventHandler.cs:
  499. * IControlBuilderAccessor.cs:
  500. * IControlDesignerAccessor.cs:
  501. * IControlTypeFilter.cs:
  502. * IDataItemContainer.cs:
  503. * IDataSourceViewSchemaAccessor.cs:
  504. * IDReferencePropertyAttribute.cs:
  505. * IExpressionsAccessor.cs:
  506. * IFilterResolutionService.cs:
  507. * IItemPaginationInfo.cs:
  508. * IMobileTextWriter.cs:
  509. * IPageHeader.cs:
  510. * IPaginationContainer.cs:
  511. * IPaginationInfo.cs:
  512. * IResourceResolutionService.cs:
  513. * IResourceUrlGenerator.cs:
  514. * IStateFormatter.cs:
  515. * IStyleSheet.cs:
  516. * IThemeResolutionService.cs:
  517. * IUrlResolutionService.cs:
  518. * IUserControlTypeResolutionService.cs: Added new files for Interfaces.
  519. 2004-08-05 Sanjay Gupta <[email protected]>
  520. * PostBackOptions.cs: Added new file and implemented the class.
  521. 2004-08-04 Gonzalo Paniagua Javier <[email protected]>
  522. * HtmlTextWriterTag.cs: readded author name.
  523. 2004-08-04 Sanjay Gupta <[email protected]>
  524. * HtmlTextWriterAttribute.cs:
  525. * HtmlTextWriterStyle.cs: Added .Net 2.0 enumerations.
  526. * CompilationMode.cs:
  527. * ConflictOptions.cs:
  528. * DataSourceCacheExpiry.cs:
  529. * DataSourceCapabilities.cs:
  530. * DataSourceOperation.cs:
  531. * TemplateContentType.cs:
  532. * TemplateInstance.cs:
  533. * UrlTypes.cs:
  534. * VerificationConditionalOperator.cs:
  535. * VerificationReportLevel.cs:
  536. * VerificationRule.cs:
  537. * XhtmlMobileDocType.cs: Added enumerations.
  538. 2004-07-27 Gonzalo Paniagua Javier <[email protected]>
  539. * Control.cs: style. Reverted previous patch modification of
  540. TemplateSourceDirectory (failed when the control is reparented). Use
  541. HasControls() and Controls all over instead of _controls, as Controls
  542. property and HasControls() might be overriden.
  543. 2004-07-27 Alon Gazit <[email protected]>
  544. * Control.cs: Changed the implementation of TemplateSourceDirectory
  545. and GetDefaultName(). replaced foreach statements with for statements,
  546. in order to improve performence.
  547. 2004-07-27 Alon Gazit <[email protected]>
  548. * Page.cs: changed the implementation of GetViewStateString().
  549. if the view state object is null there is no need to perform
  550. Serialization.
  551. 2004-07-16 Gonzalo Paniagua Javier <[email protected]>
  552. * TemplateControl.cs: don't include private methods of base classes when
  553. auto-attaching events. Fixes bug 61569.
  554. 2004-07-14 Alon Gazit <[email protected]>
  555. * HtmlTextWriter.cs: changed the Hashtables to case insensitive.
  556. 2004-07-08 Pablo Baena <[email protected]>
  557. * Page.cs: added workaround for __doPostBack script on Netscape 4.xx
  558. 2004-07-02 Gonzalo Paniagua Javier <[email protected]>
  559. * Page.cs: added additional checks for saving/displaying trace data.
  560. * PageParser.cs: removed checks for trace enabled in configuration
  561. files.
  562. 2004-06-29 Gonzalo Paniagua Javier <[email protected]>
  563. * ControlCollection.cs: when clearing the control collection, tell the
  564. owners about the removal. Fixes bug #60800.
  565. 2004-06-29 Gonzalo Paniagua Javier <[email protected]>
  566. * Page.cs: don't nullify _context after processing the request as there
  567. are events not triggered yet. Fixes bug #60726.
  568. 2004-06-24 Gonzalo Paniagua Javier <[email protected]>
  569. * HtmlTextWriter.cs: only create a closing tag for unknown tags. Fixes
  570. bug #60681.
  571. 2004-06-23 Gonzalo Paniagua Javier <[email protected]>
  572. * PageParser.cs:
  573. * UserControlParser.cs: set the page/user control base type even when no
  574. default directive provided. Fixes bug #60572.
  575. 2004-06-23 Gonzalo Paniagua Javier <[email protected]>
  576. * PageParser.cs: use default trace settings from web.config and check
  577. if trace is only requested for local connections. Fixes bug #60180.
  578. 2004-06-16 Gonzalo Paniagua Javier <[email protected]>
  579. * SimpleWebHandlerParser.cs: implemented GetCompiledTypeFromCache. When
  580. we read the default directive, check the cache for the Type and if
  581. present, don't keep reading and store the type found.
  582. * WebHandlerParser.cs:
  583. * WebServiceParser.cs: try GetCompiledTypeFromCache before actually
  584. compiling.
  585. 2004-06-14 Gonzalo Paniagua Javier <[email protected]>
  586. * Control.cs: properly fixed bug #59794.
  587. 2004-06-10 Gonzalo Paniagua Javier <[email protected]>
  588. * Control.cs:
  589. (ResolveUrl): fixed typo when dealing with relative urls. Closes bug
  590. #59794.
  591. 2004-06-08 Gonzalo Paniagua Javier <[email protected]>
  592. * SimpleWebHandlerParser.cs:
  593. * TemplateParser.cs: pass the language when compiling from a file.
  594. 2004-06-08 Gonzalo Paniagua Javier <[email protected]>
  595. * SimpleWebHandlerParser.cs: if we have a global.asax, move its
  596. reference to the end to help mcs loading the assemblies. Fixes bug
  597. #58768.
  598. * TemplateParser.cs: same as above. Removed some kludges to workaround
  599. loading assemblies from bin path that are now in the runtime. Don't
  600. load the assemblies in bin if not needed, but still reference them
  601. when compiling.
  602. 2004-06-07 Alon Gazit <[email protected]>
  603. * Page.cs: Changed Page.ProcessPostData().
  604. After the change ,the state of controls that aren't visible is saved
  605. during a postback.
  606. 2004-06-07 Gonzalo Paniagua Javier <[email protected]>
  607. * Page.cs: removed obsolete MonoTODO from RegisterOnSubmitStatement.
  608. 2004-06-05 Gonzalo Paniagua Javier <[email protected]>
  609. * Page.cs: IsPostBack also returns true when method is GET and we have
  610. viewstate information in the query string. Fixes bug #58151.
  611. 2004-06-05 Gonzalo Paniagua Javier <[email protected]>
  612. * Page.cs: removed obsolete TODO. Only check if Trace is enabled, not
  613. HttpRutime.TraceManager.
  614. * PageParser.cs: for 'trace' we have 2 variables now. Added support
  615. for 'buffer' attribute.
  616. 2004-06-04 Gonzalo Paniagua Javier <[email protected]>
  617. * Page.cs: implemented ClientTarget.
  618. * PageParser.cs: support for clientTarget and check for validity.
  619. 2004-06-03 Gonzalo Paniagua Javier <[email protected]>
  620. * Control.cs:
  621. * Html32TextWriter.cs:
  622. * HtmlTextWriter.cs:
  623. * SimpleWebHandlerParser.cs:
  624. * TemplateControl.cs: Added protected missing members and attributes.
  625. 2004-06-03 Gonzalo Paniagua Javier <[email protected]>
  626. * ObjectStateFormatter.cs: use ObjectFormatter methods instead of
  627. calling a protected method of another object.
  628. 2004-06-03 Atsushi Enomoto <[email protected]>
  629. * ObjectStateFormatter.cs : csc build fix. Protected Read()/Write()
  630. (of other objects) are called in TypeConverterFormatter.
  631. 2004-06-03 Gonzalo Paniagua Javier <[email protected]>
  632. * ObjectStateFormatter.cs: before choosing the binary formatter, check
  633. if the object type has a TypeConverter that can convert to/from string.
  634. Fixes bug #59495.
  635. * Page.cs: call GetViewStateString from outside the WriteLine. This
  636. allows writing to the Response when getting the string without breaking
  637. the HTML generated.
  638. 2004-06-02 Gonzalo Paniagua Javier <[email protected]>
  639. * HtmlTextWriter.cs: render end tag for unknown tags.
  640. Patch frmo Markus Krutner. Fixes bug #59466.
  641. 2004-05-24 Gonzalo Paniagua Javier <[email protected]>
  642. * Page.cs: call DeterminePostBackMode only once per request. Patch by
  643. Evain Jb.
  644. 2004-05-12 Gonzalo Paniagua Javier <[email protected]>
  645. * Html32TextWriter.cs: stub contributed by Matthijs ter Woord
  646. [meddochat].
  647. * ObjectTagBuilder.cs: remove the HasBody override as MS does not have
  648. that.
  649. 2004-05-04 Gonzalo Paniagua Javier <[email protected]>
  650. * SimpleWebHandlerParser.cs:
  651. * TemplateParser.cs: for the assembly names given in the 'assembly'
  652. attribute, use LoadWithPartialName instead of Load.
  653. 2004-03-19 Gonzalo Paniagua Javier <[email protected]>
  654. * Page.cs: return HttpContext.Current if _context has not yet been
  655. assigned to. Fixes bug #55245.
  656. 2004-03-15 Gonzalo Paniagua Javier <[email protected]>
  657. * TemplateParser.cs: don't add import statement or assemblies from
  658. global.asax to every file. Fixes bug #55496.
  659. 2004-03-09 Juraj Skripsky <[email protected]>
  660. * DataBinder.cs: allow unquoted string expressions (e.g. "[test]") and
  661. handle single quotes and a few corner cases correctly (see test cases).
  662. 2004-03-04 Gonzalo Paniagua Javier <[email protected]>
  663. * TemplateControl.cs: fixed typos and added new method names to the set
  664. of page events.
  665. 2004-02-23 Gonzalo Paniagua Javier <[email protected]>
  666. * ControlBuilder.cs: added SetTagName().
  667. * ObjectTagBuilder.cs: use SetTagName so that we can properly close
  668. <object> builders if the closing tag is provided.
  669. 2004-02-16 Jackson Harper <[email protected]>
  670. * Page.cs: Set cacheability for Location.DownStream.
  671. 2004-02-10 Jackson Harper <[email protected]>
  672. * TemplateParser.cs: Use full path if the assembly is in the
  673. private bin directory. Patch by Gonzalo Paniagua Javier.
  674. 2004-02-09 Jackson Harper <[email protected]>
  675. * Page.cs: Set cacheability for server side caching.
  676. 2004-01-30 Jackson Harper <[email protected]>
  677. * Control.cs: Ensure that dynamically loaded controls are
  678. initialized.
  679. 2004-01-28 Gonzalo Paniagua Javier <[email protected]>
  680. * ApplicationFileParser.cs: check for error in directives. Use
  681. GlobalAsaxCompiler.CompileApplicationType for compiling.
  682. * ObjectTagBuilder.cs: load the Type and check for errors.
  683. * TemplateParser.cs: add assemblies and imports from global.asax.
  684. Now we properly create accessors for session and application objects in
  685. the application itself, pages and controls. First step for fixing
  686. bug #53387.
  687. 2004-01-28 Gonzalo Paniagua Javier <[email protected]>
  688. * TemplateControl.cs: small speedup for WireUpautomaticEvents. Thanks
  689. to Eric Lindvall for pointing this out.
  690. 2004-01-15 Jackson Harper <[email protected]>
  691. * TemplateParser.cs: Detect if we are parsing a control or page
  692. properly.
  693. * Page.cs: vary by params and vary by headers can be null now.
  694. 2004-01-15 Martin Willemoes Hansen <[email protected]>
  695. * HtmlTextWriter.cs: Fixed OutputTab routine to generate correct
  696. indention.
  697. 2004-01-14 Jackson Harper <[email protected]>
  698. * Page.cs: If we have a postback that wasn't sent through a
  699. postback script (ie user hit submit on a input type=submit) call
  700. Validate so page validation occurs. This fixes bug #52770.
  701. 2004-01-14 Jackson Harper <[email protected]>
  702. * Page.cs: Don't tell the response to cache anymore. This is done
  703. when the cacheability is modified by a callback. Set the cache's
  704. duration.
  705. 2004-01-14 Jackson Harper <[email protected]>
  706. * TemplateParser.cs: If varybyparam is set to "none" make it null
  707. so we dont get a param named null in the outputcache key.
  708. 2004-01-14 Jackson Harper <[email protected]>
  709. * BasePartialCachingControl.cs: Use varyby attributes in key
  710. generation.
  711. 2004-01-14 Jackson Harper <[email protected]>
  712. * TemplateParser.cs: Add all the outputcache attribute error
  713. messages.
  714. 2004-01-13 Jackson Harper <[email protected]>
  715. * TemplateParser.cs: Add VaryByControls and Shared output cache
  716. properties. These are not assigned yet.
  717. * TemplateControlParser.cs: Do not ignore the OutputCache
  718. attribute.
  719. * BasePartialCachingControl.cs: Initial implementation. Keys are
  720. still not created properly.
  721. * StaticPartialCachingControl.cs: Assign properties in base class,
  722. implement CreateControl.
  723. 2004-01-12 Gonzalo Paniagua Javier <[email protected]>
  724. * ApplicationFileParser.cs: adde DefaultBaseTypeName property.
  725. * PageParser.cs: support validateRequest.
  726. * TemplateControlParser.cs: get default values from system.web/pages
  727. section.
  728. * TemplateParser.cs: added separate method for changing base type
  729. (Inherits or system.web/pages).
  730. * UserControlParser.cs: support system.web/pages defined base type.
  731. 2004-01-11 Andreas Nahr <[email protected]>
  732. * UserControl.cs: Added missing attribute, implemented method
  733. * Page.cs: Added missing attribute, implemented method
  734. 2004-01-10 Jackson Harper <[email protected]>
  735. * Page.cs: Handle trace being enabled in the config file.
  736. 2004-01-10 Jackson Harper <[email protected]>
  737. * Page.cs: Save trace data before rendering it.
  738. * System.Web.dll.sources: Add TraceData.cs
  739. 2004-01-03 Gonzalo Paniagua Javier <[email protected]>
  740. * Page.cs: removed a couple of MonoTODO on methods we're not gonna
  741. implement. Applied patch from Jan Jaros ([email protected]) to
  742. ensure that Unload event is raised. Fixes bug #52555.
  743. 2004-01-02 Zoltan Varga <[email protected]>
  744. * KeyedList.cs: 'private' is not allowed on explicit interface
  745. implementations. Fixes 1.2 build.
  746. 2003-12-31 Jackson Harper <[email protected]>
  747. * TemplateControlParser.cs: When registering tag prefixs make sure
  748. the file exists and throw the correct error if it does not.
  749. 2003-12-25 Jackson Harper <[email protected]>
  750. * Page.cs: Throw error if the session is accessed when sessions
  751. are disabled.
  752. 2003-12-18 Jackson Harper <[email protected]>
  753. * Page.cs: Write Trace info.
  754. 2003-12-18 Gonzalo Paniagua Javier <[email protected]>
  755. * LosFormatter.cs: new ctor for 1.1. The default ctor is public.
  756. * Page.cs: added ViewStateUserKey and made RegisterclientScriptFile
  757. internal.
  758. * PageParser.cs: the ctor is public.
  759. * PartialCachingAttribute.cs: added new ctor and Shared property.
  760. 2003-12-17 Gonzalo Paniagua Javier <[email protected]>
  761. * Page.cs: assign the ErrorPage to the context if we get an exception
  762. when processing the page which only calls Unload.
  763. * PageParser.cs: handle ErrorPage.
  764. 2003-12-16 Gonzalo Paniagua Javier <[email protected]>
  765. * ObjectStateFormatter.cs: added formatters for Unit and FontUnit, which
  766. are not [Serializable]. Fixes bug #52244.
  767. 2003-12-16 Jackson Harper <[email protected]>
  768. * Page.cs: Render trace data when tracing is enabled.
  769. 2003-12-15 Jackson Harper <[email protected]>
  770. * PageParser.cs: Add Trace and Trace mode attributes.
  771. 2003-12-15 Jackson Harper <[email protected]>
  772. * Page.cs: Use the context trace object.
  773. 2003-12-14 Alon Gazit <[email protected]>
  774. * AttributeCollection.cs: Changed AttributeCollection.Render().
  775. After the change attributes ,that their value is null, aren't
  776. rendered.
  777. 2003-12-12 Gonzalo Paniagua Javier <[email protected]>
  778. * Control.cs: remove a few dangling ^M, don't set values for fields
  779. that has the default value. If Visible is modified and we're tracking
  780. viewstate, save and restore it. Fixes bug #48689.
  781. 2003-12-11 Jackson Harper <[email protected]>
  782. * Control.cs: Give null for the ID if it hasn't been explicitly
  783. set. This fixes bug #51520.
  784. 2003-12-08 Jackson Harper <[email protected]>
  785. * PageParser.cs: Ignore the SmartNavigation attribute for now.
  786. 2003-12-05 Jackson Harper <[email protected]>
  787. * DataBinder.cs (GetIndexedPropertyValue): Check if container is
  788. an IList and use a cast instead of reflection to retrieve the item
  789. if it is. Fixes bug #51759.
  790. 2003-12-04 Alon Gazit <[email protected]>
  791. * Page.cs: Changed Page.ID so it will call Control.ID.
  792. Fixed Bug 51682.
  793. 2003-12-02 Jackson Harper <[email protected]>
  794. * Page.cs: Implemented registered array declarations. Patch by
  795. Benjamin Jemlich <[email protected]>
  796. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  797. * TemplateParser.cs: basic check for 'classname' attribute and added
  798. patch by [email protected] for bug #51568, which fixes automatic class
  799. names for pages starting with a number.
  800. 2003-11-30 Ben Maurer <[email protected]>
  801. * LosFormatter.cs: Use ObjectStateFormatter. Pretty big size
  802. reduction.
  803. * ObjectStateFormatter.cs: Comment out tracing.
  804. 2003-11-30 Gonzalo Paniagua Javier <[email protected]>
  805. * Page.cs: fixed UICulture, LCID and Culture. Set the thread
  806. [UI]Culture before processing the request.
  807. * PageParser.cs: read Culture, UICulture and LCID attributes. Added
  808. properties for these. Partially contributed by Mohammad Damt.
  809. Fixes bug #51511.
  810. 2003-11-27 Jackson Harper <[email protected]>
  811. * TemplateParser.cs: Ignore aspCompat attribute. This fixes bug
  812. 51434.
  813. 2003-11-22 Ben Maurer <[email protected]>
  814. * ObjectStateFormatter.cs: Fix bug when reading small ints.
  815. Add some tracing so we can see what is going on.
  816. 2003-11-21 Jackson Harper <[email protected]>
  817. * Page.cs: Set vary by params when cache location is Server.
  818. 2003-11-21 Ben Maurer <[email protected]>
  819. * ObjectStateFormatter.cs: v2 file. In v1.x this will be
  820. internal as LosFormatter will eventually use it to save
  821. the view state.
  822. 2003-11-21 Gonzalo Paniagua Javier <[email protected]>
  823. * PersistChildrenAttribute.cs:
  824. * PersistenceModeAttribute.cs: implemented.
  825. * TODO: Removed file.
  826. * OutputCacheLocation.cs:
  827. * TemplateControlParser.cs:
  828. * HtmlInputFile.cs: class status based fixes.
  829. 2003-11-19 Jackson Harper <[email protected]>
  830. * Page.cs: Always set the cache expire time. Tell the response to
  831. cache itself for server side cached pages.
  832. 2003-11-19 Jackson Harper <[email protected]>
  833. * Control.cs: Remove ResolveBaseUrl. ResolveUrl does the same
  834. thing, some corner cases still need work though. Was this the
  835. shortest lived method in the history of mono?
  836. 2003-11-19 Jackson Harper <[email protected]>
  837. * Control.cs: New method for resolving urls that use ~/ to denote
  838. the applications base directory.
  839. 2003-11-19 Jackson Harper <[email protected]>
  840. * TemplateParser.cs: Fix typo in error message.
  841. 2003-11-19 Gonzalo Paniagua Javier <[email protected]>
  842. * TemplateControlParser.cs: support @Reference. Fixes bug #49572. Thanks
  843. to Sanjay Gupta.
  844. 2003-11-19 Todd Berman <[email protected]>
  845. * KeyedList.cs:
  846. * KeyedListEnumerator.cs: New v2 implementations.
  847. 2003-11-17 Ben Maurer <[email protected]>
  848. * StateManagedCollection.cs: Implement.
  849. 2003-11-13 Jackson Harper <[email protected]>
  850. * Page.cs: Initial implementation of InitOutputCache.
  851. * TemplateParser.cs: Page OutputCache options
  852. 2003-11-09 Ben Maurer <[email protected]>
  853. * HierarchicalDataSourceControl.cs: Implement.
  854. 2003-11-09 Ben Maurer <[email protected]>
  855. * XPathBinder.cs: Implemented.
  856. 2003-11-08 Ben Maurer <[email protected]>
  857. * DataSourceView.cs:
  858. * IDataSource.cs:
  859. * ListSourceHelper.cs:
  860. * DataSourceControl.cs:
  861. * HierarchicalDataSourceView.cs:
  862. * IHierarchicalDataSource.cs: Move v2 stuff.
  863. 2003-11-07 Jackson Harper <[email protected]>
  864. * Control.cs (ResolveUrl): Special case for urls that consist of
  865. only a page anchor. ie <a href="#top">. This fixes bug #50165.
  866. 2003-11-07 Ben Maurer <[email protected]>
  867. * IHierarchicalEnumerable.cs:
  868. * IHierarchyData.cs:
  869. * INavigateUIData.cs: New v2 interfaces.
  870. 2003-11-06 Gonzalo Paniagua Javier <[email protected]>
  871. * Page.cs: patch by Alon Gazit <[email protected]> to remove extra
  872. space in generated javascript.
  873. 2003-11-05 Gonzalo Paniagua Javier <[email protected]>
  874. * LosFormatter.cs: encoding updates.
  875. * Page.cs: implemented CodePage and ContentType.
  876. * PageParser.cs: handle CodePage, ContentEncoding and ResponseEncoding
  877. attributes.
  878. 2003-11-04 Ben Maurer <[email protected]>
  879. * Control.cs (GetWebResourceUrl): new v2 function
  880. * Page.cs (GetWebResourceUrl): ditto.
  881. make the JS we generate work with moz if the form is not a child
  882. of document.
  883. * WebResourceAttribute.cs: Added, new v2 attribute.
  884. 2003-10-22 Gonzalo Paniagua Javier <[email protected]>
  885. * DesignTimeTemplateParser.cs: added FIXME related to PageParser.
  886. * PageParser.cs: initialize the parser in the constructor, not just
  887. before compiling and reference the application assembly.
  888. * SimpleWebHandlerParser.cs: reference the assembly that contains the
  889. application Type.
  890. * TemplateControl.cs:
  891. * TemplateControlParser.cs: fix BenM #1 bug. Now we pass correct virtual
  892. path and physical path when compiling a user control.
  893. * TemplateParser.cs: new AddApplicationAssembly ().
  894. * UserControlParser.cs: now we get valid values in the ctor.
  895. Referencing the application assembly fixes bug #49652.
  896. 2003-10-18 Gonzalo Paniagua Javier <[email protected]>
  897. * TemplateControl.cs: moved NoParamsInvoker class to its own file.
  898. 2003-10-14 Gonzalo Paniagua Javier <[email protected]>
  899. * BaseParser.cs: added CompilationConfig property.
  900. * TemplateParser.cs:
  901. * SimpleWebHandlerParser.cs: added CompilationConfig property.
  902. Don't hardcode assembly names any more, assemblies in bin are added
  903. depending on the configuration. The default language is also taken
  904. from the configuration.
  905. 2003-10-13 Gonzalo Paniagua Javier <[email protected]>
  906. * LosFormatter.cs: fixed bug #49604. Patch by [email protected].
  907. 2003-10-13 Gonzalo Paniagua Javier <[email protected]>
  908. * Control.cs: removed some debug lines.
  909. * Page.cs: implemented RegisterOnSubmitStatement
  910. * TemplateControl.cs: fixed wire up for methods with no parameters.
  911. 2003-10-13 Gonzalo Paniagua Javier <[email protected]>
  912. * PageParser.cs: ignore ValidateRequest by now.
  913. 2003-10-11 Gonzalo Paniagua Javier <[email protected]>
  914. * System.Web.UI/TemplateControl.cs: support for wiring up events without
  915. parameters.
  916. 2003-10-08 Pedro Martnez Juli <[email protected]>
  917. * PageParser.cs: drop some useless code.
  918. 2002-10-29 Gaurav Vaish <gvaish_mono AT lycos.com>
  919. * Utils.cs : GetScriptLocation(HttpContext) - Partial Implementation.
  920. 2003-10-03 Gonzalo Paniagua Javier <[email protected]>
  921. * System.Web.UI/PageParser.cs:
  922. * System.Web.UI/TemplateControlParser.cs: honour the input file given
  923. as argument.
  924. 2003-09-29 Gonzalo Paniagua Javier <[email protected]>
  925. * Control.cs:
  926. (ClearChildViewState): doh! Don't clear control viewstate but the
  927. viewstate of possible children.
  928. (LoadViewStateRecursive): load viewstate even when control is not
  929. visible.
  930. Fixes bug #49024.
  931. The rest are just dangling ^M removed.
  932. * DataBoundLiteralControl.cs:
  933. (LoadViewState): we get an object [], not a string [].
  934. 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
  935. * Control.cs: implemented ClearChildViewState ().
  936. 2003-09-22 Gonzalo Paniagua Javier <[email protected]>
  937. * Page.cs: store unique IDs for controls requiring postback. Fixes bug
  938. #47985.
  939. 2003-09-21 Gonzalo Paniagua Javier <[email protected]>
  940. * SimpleWebHandlerParser.cs: add the ashx/asmx file itself to the
  941. dependencies so that it's recompiled when changed.
  942. 2003-09-18 Gonzalo Paniagua Javier <[email protected]>
  943. * LosFormatter.cs: fixed Deserialize for empty viewstate.
  944. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  945. * Page.cs: check if controls that require postback have
  946. been changed by an event and register them to be notified of data
  947. changed event.
  948. 2003-08-26 Gonzalo Paniagua Javier <[email protected]>
  949. * Control.cs: patch by [email protected] (Yaron Shkop) that fixes
  950. bug #47866.
  951. 2003-08-21 Gonzalo Paniagua Javier <[email protected]>
  952. * LosFormatter.cs: handle Unit and FonrUnit as special cases as they
  953. are not serializable. Fixes bug #47784.
  954. 2003-08-20 Gonzalo Paniagua Javier <[email protected]>
  955. * Control.cs: index the viewstates saved by the control position, not
  956. the control name. Fixes bug #47697.
  957. 2003-08-20 Gonzalo Paniagua Javier <[email protected]>
  958. * ControlCollection.cs:
  959. * EmptyControlCollection.cs: create a minimum ArrayList for this.
  960. * BaseParser.cs: added setter for BaseVirtualDir.
  961. * Page.cs: fixed message when restoring view state fails.
  962. * UserControlParser.cs: set the BaseVirtualDirectory to handle the case
  963. when a relative path to the control is given. Fixes bug #47685.
  964. 2003-08-18 Gonzalo Paniagua Javier <[email protected]>
  965. * Control.cs: when we load the viewstate for a control that has children
  966. viewstates and the child is not found, keep its viewstate around and
  967. wait until the child is added to load the viewstate. Fixes bug #47697.
  968. 2003-08-11 Gonzalo Paniagua Javier <[email protected]>
  969. * TemplateControl.cs: more Delegate.CreateDelegate fixes.
  970. 2003-08-01 Andreas Nahr <[email protected]>
  971. * PartialCachingControl.cs: is not abstract
  972. 2003-08-01 Gonzalo Paniagua Javier <[email protected]>
  973. * SimpleHandlerFactory.cs: implemented GetHandler.
  974. * WebHandlerParser.cs: new file that parses .ashx files.
  975. 2003-07-30 Andreas Nahr <[email protected]>
  976. * PersistenceModeAttribute.cs: Fixed wrong AttributeUsage
  977. 2003-07-30 Andreas Nahr <[email protected]>
  978. * UserControl.cs: Added attribute
  979. * BasePartialCachingControl.cs: New class and paritally implemented
  980. * DesignerDataBoundLiteralControl.cs: New class and implemented
  981. * DesignTimeTemplateParser.cs:
  982. * PartialCachingControl.cs:
  983. * StaticPartialCachingControl.cs: New class and paritally implemented
  984. 2003-07-27 Andreas Nahr <[email protected]>
  985. * ApplicationFileParser.cs: Fixed signature
  986. * DesignTimeParseData.cs: Added missing properties, implemented
  987. * Page.cs: Added attributes
  988. * PageParser.cs:
  989. * TemplateControlParser.cs:
  990. * TemplateParser.cs:
  991. * UserControlParser.cs: Fixed signature
  992. 2003-07-17 Andreas Nahr <[email protected]>
  993. * HtmlControlPersistableAttribute.cs: Added
  994. * IgnoreUnknownContentAttribute.cs: Added
  995. 2003-07-17 Andreas Nahr <[email protected]>
  996. * IUserControlDesignerAccessor.cs: Added and implemented
  997. * Control.cs: Missing member added, added all attributes
  998. * Page.cs: Added attributes, fixed signature
  999. * TemplateControl.cs: Fixed signature, added all attributes
  1000. * UserControl.cs: Added all attributes, added and implemented missing interface
  1001. 2003-07-17 Gonzalo Paniagua Javier <[email protected]>
  1002. * ControlCollection.cs: fixed bug #46472.
  1003. 2003-07-03 Gonzalo Paniagua Javier <[email protected]>
  1004. * SimpleWebHandlerParser.cs: implemented GetTypeFromBin.
  1005. 2003-07-03 Gonzalo Paniagua Javier <[email protected]>
  1006. * SimpleWebHandlerParser.cs: updated to new compilation interface.
  1007. * TemplateParser.cs: use the new parameter when compiling.
  1008. 2003-07-01 Gonzalo Paniagua Javier <[email protected]>
  1009. * Page.cs: also keep the value for the second try on handling postback
  1010. events.
  1011. 2003-05-14 Gonzalo Paniagua Javier <[email protected]>
  1012. * BaseParser.cs: fixed MapPath for non-rooted files.
  1013. * PageParser.cs: don't pass a non-virtual file around.
  1014. * TemplateControlParser.cs: InputFile uses MapPath now. Take care of
  1015. the exception teh may be throw by MapPath on an invalid path.
  1016. * TemplateParser.cs: removed unused method.
  1017. * UserControlParser.cs: modified inputfile. The result is the same, but
  1018. this one is better.
  1019. 2003-05-06 Gonzalo Paniagua Javier <[email protected]>
  1020. * RootBuilder.cs: throw exception when the tagprefix is not valid or
  1021. not found.
  1022. 2003-05-05 Gonzalo Paniagua Javier <[email protected]>
  1023. * TemplateControlParser.cs: return after processing @Register.
  1024. 2003-05-04 Gonzalo Paniagua Javier <[email protected]>
  1025. * TemplateParser.cs: Added support for server side includes.
  1026. 2003-05-03 Gonzalo Paniagua Javier <[email protected]>
  1027. * TemplateControl.cs: fixed the flags used to find the methods that
  1028. are automatically hooked up on events.
  1029. * TemplateParser.cs: don't compile a source file directly. Use the
  1030. cache instead.
  1031. 2003-05-01 Gonzalo Paniagua Javier <[email protected]>
  1032. * BaseParser.cs: Location property is now here. Added a couple of
  1033. convenience methods to throw a ParseException.
  1034. * TemplateParser.cs:
  1035. * TemplateControlParser.cs:
  1036. * PageParser.cs: throw ParseException where appropiate.
  1037. 2003-05-01 Gonzalo Paniagua Javier <[email protected]>
  1038. * ApplicationFileParser.cs: use the generator to actually parse the
  1039. file.
  1040. * ControlBuilder.cs: small fix in NamingContainerType because
  1041. TemplateBuilders have a null ControlType. When a control is appended
  1042. to a parent, assign the child's parent.
  1043. * UserControlParser.cs: fixed the value of InputFile.
  1044. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  1045. * ApplicationFileParser.cs: store the Context and override
  1046. BaseVirtualDir so that it's the application path.
  1047. * BaseParser.cs: removed CurrentVirtualPath property.
  1048. * TemplateControlParser.cs: use BaseVirtualDir.
  1049. * UserControlParser.cs: removed CurrentVirtualPath.
  1050. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  1051. * TemplateParser.cs: always reference all the assemblies in bin
  1052. directory.
  1053. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  1054. * ApplicationFileParser.cs: it works now. Prior to these changes, we
  1055. were using the compiler directly.
  1056. * BaseParser.cs: added some useful properties and methods.
  1057. * CodeBuilder.cs: use ILocation.
  1058. * CodeRenderBuilder.cs: use ILocation.
  1059. * CollectionBuilder.cs: use the RootBuilder to map tag names into Types.
  1060. * ControlBuilder.cs: made it useful.
  1061. * DataBindingBuilder.cs: the control type for data bound text is
  1062. DataBoundLiteralControl now.
  1063. * ObjectTagBuilder.cs: store some object tag attributes.
  1064. * PageParser.cs: handle page-only directives.
  1065. * RootBuilder.cs: bah.
  1066. * SimpleWebHandlerParser.cs: made it dummy.
  1067. * TemplateControl.cs: Modified file.
  1068. * TemplateControlParser.cs: handle directives that are common to pages
  1069. and user controls.
  1070. * TemplateParser.cs: utility methods and handling of directives that
  1071. are common to app, page and user controls.
  1072. * UserControl.cs: added ControlBuilderAttribute.
  1073. * UserControlControlBuilder.cs: builder for user controls.
  1074. * UserControlParser.cs: use the new interfaces.
  1075. 2003-04-20 Gonzalo Paniagua Javier <[email protected]>
  1076. * ControlBuilder.cs: line and fileName are protected now.
  1077. * CodeBuilder.cs: base class for the next 2 files.
  1078. * CodeRenderBuilder.cs: builder for code render.
  1079. * DataBindingBuilder.cs: builder for data binding.
  1080. 2003-04-20 Gonzalo Paniagua Javier <[email protected]>
  1081. * ITagNameToTypeMapper.cs: made it internal.
  1082. * ObjectTagBuilder.cs: builder for <object runat="server"> tag.
  1083. * ObjectTag.cs:
  1084. * RootBuilder.cs: initial builder.
  1085. 2003-04-15 Gonzalo Paniagua Javier <[email protected]>
  1086. * CollectionBuilder.cs:
  1087. * TemplateBuilder.cs: new classes derived from ControlBuilder that
  1088. represent a property or a ITemplate.
  1089. * ControlBuilder.cs: implemented all the missing bits.
  1090. * TemplateParser.cs: added mapping from tag name to Type feature.
  1091. 2003-02-15 Gonzalo Paniagua Javier <[email protected]>
  1092. * Control.cs: have i definitely fixed naming container stuff this time?
  1093. * LosFormatter.cs: activated binary serialization code.
  1094. 2003-02-14 Gonzalo Paniagua Javier <[email protected]>
  1095. * Control.cs:
  1096. (AddedControl): fixed default id assignation when the sequence of
  1097. AddedControl until it's included in the page or one of its controls
  1098. does not pass through a naming container.
  1099. 2003-02-09 Gonzalo Paniagua Javier <[email protected]>
  1100. * Control.cs: give different default names depending on the place where
  1101. it is assigned. Implemented ResolveURl (no more ~ rendered in
  1102. attributes!).
  1103. 2003-02-08 Gonzalo Paniagua Javier <[email protected]>
  1104. * Control.cs: when adding a control, assign default names to th
  1105. children that don't have one.
  1106. 2003-02-03 Gonzalo Paniagua Javier <[email protected]>
  1107. * SimpleWebHandlerParser.cs: modified to use the new parser interface.
  1108. 2003-01-17 Gonzalo Paniagua Javier <[email protected]>
  1109. * Control.cs: some more tweaks to naming containers stuff.
  1110. * DataBinder.cs: don't throw exception if the container is null.
  1111. * Page.cs: now we can render client scripts, startup scripts and hidden
  1112. fields. Only render __VIEWSTATE if there is someone that will take care
  1113. of it.
  1114. (RaisePostBackEvents): first try the last one that required raise event,
  1115. then try __EVENTTARGET.
  1116. 2003-01-16 Gonzalo Paniagua Javier <[email protected]>
  1117. * Control.cs: fixes in UniqueID, FindControl, AddedControl,
  1118. UnloadRecursive, InitRecursive. Reduced the size of __VIEWSTATE. Made
  1119. FindControl work with NamingContainers.
  1120. * ControlCollection.cs: notify the parent when clearing the collection.
  1121. * LosFormatter.cs: Added debugging output and generate a valid
  1122. viewstate even for unknown types.
  1123. * Page.cs: GetPostBackEventReference now uses UniqueID. Reduced
  1124. viewstate.
  1125. 2003-01-10 Gonzalo Paniagua Javier <[email protected]>
  1126. * Page.cs: make it fire the LoadData related events also for controls
  1127. such as ImageButton, whose variable(s) in the query string are of the
  1128. form ctrl_name.x and only fire them once per control.
  1129. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  1130. * DataBinder.cs:
  1131. (GetPropertyValue): don't try to get the property as indexed
  1132. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  1133. * DataBinder.cs: use TypeDescriptor to get the properties and their
  1134. values.
  1135. 2003-01-04 Gonzalo Paniagua Javier <[email protected]>
  1136. * Control.cs:
  1137. (AddedControl): take the children to the same state of the parent.
  1138. (InitRecursive): set the page of the children.
  1139. * Page.cs: removed one line (it's done a few lines above).
  1140. * UserControl.cs:
  1141. (OnInit): always call InitializeAsUserControl
  1142. (InitializeAsUserControl): sets the page for the control.
  1143. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  1144. * Control.cs: fixed bug #36037.
  1145. 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
  1146. * BaseParser.cs: a couple of path fixes to make it work
  1147. when the page is not in the root directory.
  1148. 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
  1149. * Control.cs: fixed PreRenderRecursiveInternal. Thanks to kojoadams for
  1150. reporting the bug.
  1151. 2002-12-18 Gonzalo Paniagua Javier <[email protected]>
  1152. * BaseParser.cs: use MapPath and context to locate files.
  1153. * Control.cs: implemented MapPathSecure.
  1154. * TemplateControl.cs: use UrlUtils to generate the path.
  1155. * TemplateControlParser.cs: use the context and MapPath.
  1156. * UserControl.cs: implemented MapPath.
  1157. * UserControlParser.cs: added context parameter to constructor.
  1158. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  1159. * Control.cs: implemented MapPathSecure.
  1160. * Page.cs: fixed Server property.
  1161. 2002-12-15 Gonzalo Paniagua Javier <[email protected]>
  1162. * DataBinder.cs: try the indexer if the property is not found in
  1163. GetPropertyValue ().
  1164. 2002-12-13 Gonzalo Paniagua Javier <[email protected]>
  1165. * Control.cs: added AutoEventWireup internal property.
  1166. * Page.cs: removed page events wire up from here.
  1167. * TemplateControl.cs: new method WireupAutomaticEvents to hook up page
  1168. and user controls events.
  1169. * TemplateControlParser.cs: process the options that are applicable
  1170. once we have the instance of the control.
  1171. * TemplateParser.cs: also stores the options.
  1172. * UserControl.cs: hook up events before initializing the control.
  1173. 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
  1174. * Control.cs: new method to set bindingContainer value.
  1175. * TemplateControl.cs: added controls are not binding containers.
  1176. 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
  1177. * Control.cs: implemented TemplateSourceDirectory.
  1178. * TemplateControl.cs: implemented LoadControl and LoadTemplate.
  1179. 2002-11-27 Gonzalo Paniagua Javier <[email protected]>
  1180. * UserControl.cs: fixed SetAttribute.
  1181. * UserControlParser.cs: set the correct base type.
  1182. 2002-11-26 Gonzalo Paniagua Javier <[email protected]>
  1183. * TemplateParser.cs: fixed BaseType.
  1184. * UserControlParser.cs: helper class to compile user controls.
  1185. 2002-11-20 Gonzalo Paniagua Javier <[email protected]>
  1186. * LosFormatter.cs: added DateTime to special types.
  1187. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  1188. * LosFormatter.cs: added array serialization support. Disabled binary
  1189. serialization and add some debugging code.
  1190. * StateBag.cs: the length of the list of value can be less than the
  1191. length if the list of keys when remaining values are null.
  1192. 2002-11-07 Gonzalo Paniagua Javier <[email protected]>
  1193. * Page.cs: return something useful in GetPostBackClientEvent.
  1194. 2002-11-02 Gonzalo Paniagua Javier <[email protected]>
  1195. * Page.cs: implemented FileDependecies and made it protected.
  1196. 2002-10-31 Gonzalo Paniagua Javier <[email protected]>
  1197. * Control.cs: save control names instead of the controls
  1198. themselves to the ViewState.
  1199. * LosFormatter.cs: added support for serializing unknown
  1200. types. BinaryFormatter does not work so you better don't store anything
  1201. of unknown Type in ViewState.
  1202. * Page.cs: GetViewStateString works now using LosFormatter.
  1203. Complete "Control execution lifecycle" by unloading all the child
  1204. controls. Check for null in RaisePostBackEvents.
  1205. LoadPageViewStateFromPersistenceMedium uses LosFormatter too.
  1206. 2002-10-29 Gonzalo Paniagua Javier <[email protected]>
  1207. * DataBinder.cs: implemented Eval and GetIndexedPropertyValue methods.
  1208. 2002-10-27 Gonzalo Paniagua Javier <[email protected]>
  1209. * LosFormatter.cs: Use WebEncoding.Encoding.
  1210. * Control.cs:
  1211. * Page.cs: fixed namespace.
  1212. 2002-10-24 Gonzalo Paniagua Javier <[email protected]>
  1213. * Page.cs: set the context in ProcessRequest. Added a few trace calls.
  1214. * Control.cs: added some trace information.
  1215. 2002-10-08 Gonzalo Paniagua Javier <[email protected]>
  1216. * SimpleHandlerFactory.cs: new handler for .ashx files.
  1217. 2002-09-28 Gonzalo Paniagua Javier <[email protected]>
  1218. * System.Web.UI/PageHandlerFactory.cs: new file.
  1219. * System.Web.UI/PageParser.cs:
  1220. * System.Web.UI/TemplateControlParser.cs: we are now able to compile
  1221. pages and use HttpApplication, HttpRuntime and SimpleWorkerRequest.
  1222. 2002-09-25 Gonzalo Paniagua Javier <[email protected]>
  1223. * Control.cs: implemented ObBubbleEvent.
  1224. * Page.cs: temporary workaround to make POST work with xsp server.
  1225. 2002-09-22 Gonzalo Paniagua Javier <[email protected]>
  1226. * Page.cs: fixed InvokeEventMethod now that Type.GetMethod does not
  1227. return pvt methods.
  1228. 2002-09-11 Gonzalo Paniagua Javier <[email protected]>
  1229. * SimpleWebHandlerParser.cs: New file.
  1230. * WebServiceParser.cs: New file.
  1231. 2002-08-22 Gonzalo Paniagua Javier <[email protected]>
  1232. * LosFormatter.cs: almost fully implemented.
  1233. 2002-08-18 Gonzalo Paniagua Javier <[email protected]>
  1234. * CompiledTemplateBuilder.cs: InstantiateIn is virtual.
  1235. * EmptyControlCollection.cs: throw correct exception.
  1236. * LosFormatter.cs: stubbed out.
  1237. * OutputCacheLocation.cs: little fix.
  1238. 2002-08-16 Gonzalo Paniagua Javier <[email protected]>
  1239. * System.Web.UI/ApplicationFileParser.cs:
  1240. * System.Web.UI/BaseParser.cs:
  1241. * System.Web.UI/PageParser.cs:
  1242. * System.Web.UI/TemplateControl.cs:
  1243. * System.Web.UI/TemplateControlParser.cs:
  1244. * System.Web.UI/TemplateParser.cs: first steps to move xsp into
  1245. System.Web.
  1246. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  1247. * Page.cs: request to render postback script can be after form started
  1248. rendering.
  1249. 2002-07-22 Gonzalo Paniagua Javier <[email protected]>
  1250. * Page.cs: added more page events to invoke automagically if some
  1251. methods are defined.
  1252. 2002-07-22 Gonzalo Paniagua Javier <[email protected]>
  1253. * Control.cs:
  1254. (SaveViewState): save state even when control is not visible.
  1255. (SaveViewStateRecursive):
  1256. (LoadViewStateRecursive): made internal.
  1257. 2002-07-21 Gonzalo Paniagua Javier <[email protected]>
  1258. * Page.cs: improved event raising to allow client postback for a wider
  1259. variety of actions (clicking an hyperlink, ...).
  1260. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  1261. * UserControl.cs: implemented Load/SaveViewState.
  1262. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  1263. * AttributeCollection.cs:
  1264. (Add): handle 'style' through styleCollection.
  1265. * CssStyleCollection.cs:
  1266. (fillStyle): renamed to FillStyle and made it internal.
  1267. * Page.cs:
  1268. (GetViewStateString): fixed, broken after other recent changes.
  1269. (ProcessPostData): allow a second try for postback data after OnLoad.
  1270. (ProcessRequest): clear controls collection, removed call to
  1271. UnloadRecursive.
  1272. 2002-07-19 Gonzalo Paniagua Javier <[email protected]>
  1273. * Control.cs: uncommented Dispose.
  1274. * Page.cs:
  1275. (DeterminePostBackMode): more checkings.
  1276. (GetPostBackClientHyperLink): implemented.
  1277. (GetPostBackEventReference): added some comments with the HTML that MS
  1278. generates for that.
  1279. (ProcessRequest): fixed processing order. The page is unloaded after
  1280. a request and regenerated from view state on subsequents posts.
  1281. 2002-07-17 Gonzalo Paniagua Javier <[email protected]>
  1282. * Control.cs: fixed related to ViewState. Added RemovedControl.
  1283. * ControlCollection.cs: notify owner of control removal.
  1284. * CssStyleCollection.cs: almost rewritten to make it render the style
  1285. attribute after changes to it.
  1286. * Page.cs: follow the guidelines in 'Control execution lifecycle'.
  1287. Removed Xml code.
  1288. * StateBag.cs: don't use IDictionary.GetEnumerator on the
  1289. HybridDictionary: it makes the program give an InvalidCastException at
  1290. runtime. Why?
  1291. 2002-07-16 Gonzalo Paniagua Javier <[email protected]>
  1292. * Page.cs: fire Init and Load events for all children.
  1293. 2002-07-14 Gonzalo Paniagua Javier <[email protected]>
  1294. * UserControl.cs: New file.
  1295. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  1296. * ControlBuilderAttribute.cs: finished implementation.
  1297. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  1298. * ConstructorNeedsTagAttribute.cs: the default constructor sets the
  1299. property to false.
  1300. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  1301. * System.Web.UI/AttributeCollection.cs: added CssStyleCollection.
  1302. * System.Web.UI/CssStyleCollection.cs: use a StateBag instead of a
  1303. Hashtable. Added internal .ctor.
  1304. * System.Web.UI/DataBinding.cs: propertyType is a Type. Implemented
  1305. Equals and GetHashCode.
  1306. * System.Web.UI/DataBoundLiteralControl.cs:
  1307. (LoadViewState):
  1308. (SaveViewState): implemented.
  1309. * System.Web.UI/Page.cs: FileDependencies is not public.
  1310. * System.Web.UI/ParseChildrenAttribute.cs: give a value to Default.
  1311. (GetHashCode):
  1312. (Equals):
  1313. (IsDefaultAttribute): implemented.
  1314. 2002-07-08 Gonzalo Paniagua Javier <[email protected]>
  1315. * Control.cs: fixed Visible property.
  1316. * Page.cs: fixed GetViewStateString.
  1317. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  1318. * System.Web.UI/Page.cs:
  1319. (GetViewStateString): new function to give the server access to the
  1320. generated view state string.
  1321. (Validate): d'oh!
  1322. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  1323. * Control.cs:
  1324. (SaveViewstateRecursive): implemented.
  1325. (SaveViewState): fixed.
  1326. (IParserAccessor.AddParsedSubObject): don't use 'this'.
  1327. * Page.cs: added code to save view state to an xml file. It's not
  1328. being used right now.
  1329. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  1330. * System.Web.UI/LiteralControl.cs:
  1331. Fixes based on class status page:
  1332. - Add attributes (DefaultEvent, ParseChildren).
  1333. - Fix declarations.
  1334. - Explicitly implement some interfaces (IPostBackDataHandler
  1335. and IPostBackEventHandler).
  1336. - Implemented some missing methods.
  1337. 2002-06-29 Gonzalo Paniagua Javier <[email protected]>
  1338. * Control.cs: reimplemented FindControls.
  1339. * Page.cs:
  1340. (.ctor): set the page for this control.
  1341. (IsPostBack): return valid value.
  1342. (DeterminePostBackMode): finished.
  1343. (OnFormRender): render __VIEWSTATE (uses GetTypeHashCode()).
  1344. (ProcessPostData): implemented. Raises change and postback events.
  1345. (ProcessRequest): changed to support reuse of the instance.
  1346. (RegisterRequiresPostBack): implemented.
  1347. * ValidatorCollection.cs: implemented all methods.
  1348. 2002-06-25 Gonzalo Paniagua Javier <[email protected]>
  1349. * Control.cs:
  1350. * Page.cs: first attemp to save view state.
  1351. * HtmlForm.cs: don't render Action.
  1352. 2002-06-24 Gonzalo Paniagua Javier <[email protected]>
  1353. * Page.cs: implemented more properties using information we already
  1354. have in Context.
  1355. (OnFormRender):
  1356. (OnFormPostRender):
  1357. (VerifyRenderingInServerForm): implemented.
  1358. 2002-06-22 Gonzalo Paniagua Javier <[email protected]>
  1359. * Page.cs: changed InvokeEventMethod to use a GetMethod that works with
  1360. out runtime. Renamed Page_Init and Page_Load.
  1361. After this, we can load a dll and render HTML in linux.
  1362. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  1363. * Control.cs:
  1364. (AddedControl): new function that is called whenever a control is
  1365. added to a collection of controls in a container. It sets the defaults
  1366. except for Page.
  1367. * ControlCollection.cs: call AddedControl in Add/AddAt.
  1368. * DataBoundLiteralControl.cs: implemented constructor, Text, Render,
  1369. SetStaticString and SetDataBoundString.
  1370. * Page.cs: removed SetDefaults.
  1371. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  1372. * CompiledTemplateBuilder.cs: new file. Used in the code generated
  1373. by xsp.
  1374. * Control.cs:
  1375. (BindingContainer): implemented.
  1376. (EnsureChildControls): avoid stack overflow.
  1377. * DataBinder.cs: implemented Eval and PropertyValue.
  1378. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  1379. * HtmlTextWriter.cs: fixed style attributes rendering (almost the same
  1380. bug as in regular attributes).
  1381. 2002-06-17 Gonzalo Paniagua Javier <[email protected]>
  1382. * Control.cs: implemented PreventAutoID.
  1383. * Page.cs:
  1384. (SetDefaults): don't set ID automatically if Control.PreventAutoID has
  1385. been called.
  1386. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  1387. * Page.cs:
  1388. (Validators): if the collection is null, create one.
  1389. (GetPostBackEventReference 2): don't throw exception.
  1390. (GetPostBackClientEvent): return a string with containing the method
  1391. name, the control name and the argument.
  1392. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  1393. * Page.cs: SetPage is now called SetDefaults and also sets a default
  1394. ID for controls that don't have one yet.
  1395. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  1396. * Page.cs:
  1397. (GetPostBackClient):
  1398. (RegisterRequiresPostBack): don't throw NotImplementedException to
  1399. keep going.
  1400. (ProcessRequest): set the current page as the Page property for *all*
  1401. the controls, not just the direct children of the page.
  1402. 2002-06-11 Gonzalo Paniagua Javier <[email protected]>
  1403. * Control.cs:
  1404. (MapPathSecure): until security is implemented, return the same path
  1405. received as argument.
  1406. (RenderControl): call OnPreRender before rendering the control. So
  1407. AdRotator can read its configuration file.Is there any other place
  1408. where this should be done?
  1409. * HtmlTextWriter.cs:
  1410. (AddAttribute): fixed. Now it really stores attributes.
  1411. (RenderBeginTag): fixed a couple of bugs (little ones but hard to find).
  1412. 2002-06-09 Gonzalo Paniagua Javier <[email protected]>
  1413. * ControlCollection.cs:
  1414. (AddAt): if index is -1 behave as a plain Add.
  1415. 2002-06-06 Gonzalo Paniagua Javier <[email protected]>
  1416. * Page.cs: for each child control to render, assign Control.Page.
  1417. Probably also needed in HtmlContainerControl derived classes.
  1418. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  1419. * AttributeCollection.cs: don't need a Hastable. StateBag now works
  1420. fine and takes care of the details.
  1421. * Control.cs: added HasChildren property.
  1422. * StateBag.cs: fixed a couple of nasty bugs.
  1423. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  1424. * Page.cs: run OnInit, OnLoad y PreRender before rendering the page.
  1425. Invoke Page_Init and/or Page_Load if the user supplied them (though
  1426. this should depend on AutoEventWireUp attribute of Page directive).
  1427. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  1428. * Control.cs: don't throw exception in ControlID. By now, it returns ID.
  1429. * Page.cs:
  1430. (ProcessRequest): implemented.
  1431. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  1432. * System.Web.UI/Page.cs: finished stubbing out. Implemented some
  1433. methods.
  1434. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  1435. * Page.cs:
  1436. (FileDependencies): now is public public.
  1437. (EnableViewStateMAC): uncommented and made protected.
  1438. (GetTypeHashCode): added method.
  1439. 2002-05-24 Duncan Mak <[email protected]>
  1440. * TemplateControl.cs (SetStringResourcePointer): Fixed typo.
  1441. * StateBag.cs (Item): Changed the visibility level of the this
  1442. [object] indexer.
  1443. Misc. formatting edits, fixing some bugs introduced by the indentation.
  1444. * DataBinder.cs (Eval)
  1445. (GetIndexedPropertyValue)
  1446. (GetPropertyValue): Fixed return types.
  1447. 2002-05-21 Miguel de Icaza <[email protected]>
  1448. * HtmlTextWriter.cs: Use this to change the member instances.
  1449. 2002-05-17 Duncan Mak <[email protected]>
  1450. * AttributeCollection.cs:
  1451. * ControlCollection.cs:
  1452. * CssStyleCollection.cs:
  1453. * DataBindingCollection.cs:
  1454. * EmptyControlCollection.cs: Added missing Collection classes.
  1455. 2002-05-17 Duncan Mak <[email protected]>
  1456. * BaseParser.cs:
  1457. * TemplateParser.cs: Implemented. BaseParser is weird because
  1458. there is no documentation on what it does.
  1459. * ControlBuilder.cs:
  1460. * DataBinder.cs:
  1461. * DataBinding.cs: Added.
  1462. * DataBoundLiteralControl.cs:
  1463. * Triplet.cs: Added.
  1464. * RenderMethod.cs: Added this delegate for Control.cs
  1465. 2002-05-15 Gonzalo Paniagua Javier <[email protected]>
  1466. * ValidationPropertyAttribute.cs: a couple of fixes to make it compile.
  1467. 2002-05-14 Duncan Mak <[email protected]>
  1468. * ValidationPropertyAttribute.cs: Added to CVS.
  1469. 2002-05-10 Duncan Mak <[email protected]>
  1470. * ConstructorNeedsTagAttribute.cs:
  1471. * ControlBuilderAttribute.cs:
  1472. * ImageClickEventArgs.cs:
  1473. * ParseChildrenAttribute.cs:
  1474. * PartialCachingAttribute.cs:
  1475. * PersistChildrenAttribute.cs:
  1476. * PersistenceModeAttribute.cs:
  1477. * TemplateContainerAttribute.cs: Added to CVS.
  1478. * PersistanceMode.cs: Removed, fixed typo.
  1479. * PersistenceMode.cs: Replacing above.
  1480. * StateBag.cs (this): Fixed indexer, it takes a string as the
  1481. index, not an object.
  1482. * ValidatorCollection.cs: Fixed typo, ValidatedCollection to ValidatorCollection.
  1483. * Page.cs (Validators): return type should be ValidatorCollection,
  1484. not ValidatedCollection.
  1485. * TagPrefixAttribute.cs: Added to CVS.
  1486. 2002-05-07 Duncan Mak <[email protected]>
  1487. * Utils.cs (GetClientValidatedEvent): Uncommented the 'Page' argument.
  1488. 2002-03-26 Gaurav Vaish <[email protected]>
  1489. * DataBindingHandlerAttribute.cs
  1490. - Completed
  1491. * ToolboxDataAttribute.cs - Completed
  1492. 2002-01-03 Nick Drochak <[email protected]>
  1493. * DesignTimeParseData.cs: initialze static member to avoid compile
  1494. error
  1495. * PropertyConverter.cs: remove uneeded exception variables from
  1496. catch blocks.
  1497. 2002-01-02 Nick Drochak <[email protected]>
  1498. * DesignTimeParseData.cs: fix header to show correct class name
  1499. 2001-12-21 Gaurav Vaish <[email protected]>
  1500. * StateBag.cs - Completed
  1501. 2001-12-19 Gaurav Vaish <[email protected]>
  1502. * Pair.cs - Small undocumented class. Completed.
  1503. 2001-12-18 Gaurav Vaish <[email protected]>
  1504. * DesignTimeParseData.cs - Initial implementation
  1505. * StateBag.cs - Initial implementation
  1506. 2001-12-17 Gaurav Vaish <[email protected]>
  1507. * PropertyConverter.cs - Undocumented class. Completed.
  1508. * Utils.cs - Undocumented, private class.
  1509. Initial implementation
  1510. 2001-08-28 Bob Smith <[email protected]>
  1511. * Control.cs: Figured out some undocumented API.
  1512. * Added TODO.
  1513. * BuildMethod.cs: Initial implementation.
  1514. * BuildTemplateMethod.cs: Initial implementation.
  1515. * HtmlTextWriterAttribute.cs: Initial implementation.
  1516. * HtmlTextWriterStyle.cs: Initial implementation.
  1517. * HtmlTextWriterTag.cs: Initial implementation.
  1518. * IAttributeAccessor.cs: Initial implementation.
  1519. * IDataBindingsAccessor.cs: Initial implementation.
  1520. * ImageClickEventHandler.cs: Initial implementation.
  1521. * INamingContainer.cs: Initial implementation.
  1522. * IParserAccessor.cs: Initial implementation.
  1523. * IPostBackDataHandler.cs: Initial implementation.
  1524. * IPostBackEventHandler.cs: Initial implementation.
  1525. * IStateManager.cs: Initial implementation.
  1526. * ITagNameToTypeMapper.cs: Initial implementation.
  1527. * ITemplate.cs: Initial implementation.
  1528. * IValidator.cs: Initial implementation.
  1529. * OutputCacheLocation.cs: Initial implementation.
  1530. * PersistanceMode.cs: Initial implementation.
  1531. * StateItem.cs: Initial implementation.
  1532. 2001-08-27 Bob Smith <[email protected]>
  1533. * Control.cs: Bug fixes and implementations.
  1534. 2001-08-24 Bob Smith <[email protected]>
  1535. * Control.cs: Bug fixes.
  1536. 2001-08-23 Bob Smith <[email protected]>
  1537. * Control.cs: More implementation. Events reworked for performance.
  1538. 2001-08-22 Bob Smith <[email protected]>
  1539. * LiteralControl.cs: Implemented.
  1540. * Control.cs: Even more implementation (Events). What a beast.
  1541. 2001-08-20 Bob Smith <[email protected]>
  1542. * Control.cs: More implementation. Not done yet. Shutter.
  1543. 2001-08-17 Bob Smith <[email protected]>
  1544. * Control.cs: Partial implementation.