ChangeLog 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856
  1. 2003-07-17 Andreas Nahr <[email protected]>
  2. * IUserControlDesignerAccessor.cs: Added and implemented
  3. * Control.cs: Missing member added, added all attributes
  4. * Page.cs: Added attributes, fixed signature
  5. * TemplateControl.cs: Fixed signature, added all attributes
  6. * UserControl.cs: Added all attributes, added and implemented missing interface
  7. 2003-07-17 Gonzalo Paniagua Javier <[email protected]>
  8. * ControlCollection.cs: fixed bug #46472.
  9. 2003-07-03 Gonzalo Paniagua Javier <[email protected]>
  10. * SimpleWebHandlerParser.cs: implemented GetTypeFromBin.
  11. 2003-07-03 Gonzalo Paniagua Javier <[email protected]>
  12. * SimpleWebHandlerParser.cs: updated to new compilation interface.
  13. * TemplateParser.cs: use the new parameter when compiling.
  14. 2003-07-01 Gonzalo Paniagua Javier <[email protected]>
  15. * Page.cs: also keep the value for the second try on handling postback
  16. events.
  17. 2003-05-14 Gonzalo Paniagua Javier <[email protected]>
  18. * BaseParser.cs: fixed MapPath for non-rooted files.
  19. * PageParser.cs: don't pass a non-virtual file around.
  20. * TemplateControlParser.cs: InputFile uses MapPath now. Take care of
  21. the exception teh may be throw by MapPath on an invalid path.
  22. * TemplateParser.cs: removed unused method.
  23. * UserControlParser.cs: modified inputfile. The result is the same, but
  24. this one is better.
  25. 2003-05-06 Gonzalo Paniagua Javier <[email protected]>
  26. * RootBuilder.cs: throw exception when the tagprefix is not valid or
  27. not found.
  28. 2003-05-05 Gonzalo Paniagua Javier <[email protected]>
  29. * TemplateControlParser.cs: return after processing @Register.
  30. 2003-05-04 Gonzalo Paniagua Javier <[email protected]>
  31. * TemplateParser.cs: Added support for server side includes.
  32. 2003-05-03 Gonzalo Paniagua Javier <[email protected]>
  33. * TemplateControl.cs: fixed the flags used to find the methods that
  34. are automatically hooked up on events.
  35. * TemplateParser.cs: don't compile a source file directly. Use the
  36. cache instead.
  37. 2003-05-01 Gonzalo Paniagua Javier <[email protected]>
  38. * BaseParser.cs: Location property is now here. Added a couple of
  39. convenience methods to throw a ParseException.
  40. * TemplateParser.cs:
  41. * TemplateControlParser.cs:
  42. * PageParser.cs: throw ParseException where appropiate.
  43. 2003-05-01 Gonzalo Paniagua Javier <[email protected]>
  44. * ApplicationFileParser.cs: use the generator to actually parse the
  45. file.
  46. * ControlBuilder.cs: small fix in NamingContainerType because
  47. TemplateBuilders have a null ControlType. When a control is appended
  48. to a parent, assign the child's parent.
  49. * UserControlParser.cs: fixed the value of InputFile.
  50. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  51. * ApplicationFileParser.cs: store the Context and override
  52. BaseVirtualDir so that it's the application path.
  53. * BaseParser.cs: removed CurrentVirtualPath property.
  54. * TemplateControlParser.cs: use BaseVirtualDir.
  55. * UserControlParser.cs: removed CurrentVirtualPath.
  56. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  57. * TemplateParser.cs: always reference all the assemblies in bin
  58. directory.
  59. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  60. * ApplicationFileParser.cs: it works now. Prior to these changes, we
  61. were using the compiler directly.
  62. * BaseParser.cs: added some useful properties and methods.
  63. * CodeBuilder.cs: use ILocation.
  64. * CodeRenderBuilder.cs: use ILocation.
  65. * CollectionBuilder.cs: use the RootBuilder to map tag names into Types.
  66. * ControlBuilder.cs: made it useful.
  67. * DataBindingBuilder.cs: the control type for data bound text is
  68. DataBoundLiteralControl now.
  69. * ObjectTagBuilder.cs: store some object tag attributes.
  70. * PageParser.cs: handle page-only directives.
  71. * RootBuilder.cs: bah.
  72. * SimpleWebHandlerParser.cs: made it dummy.
  73. * TemplateControl.cs: Modified file.
  74. * TemplateControlParser.cs: handle directives that are common to pages
  75. and user controls.
  76. * TemplateParser.cs: utility methods and handling of directives that
  77. are common to app, page and user controls.
  78. * UserControl.cs: added ControlBuilderAttribute.
  79. * UserControlControlBuilder.cs: builder for user controls.
  80. * UserControlParser.cs: use the new interfaces.
  81. 2003-04-20 Gonzalo Paniagua Javier <[email protected]>
  82. * ControlBuilder.cs: line and fileName are protected now.
  83. * CodeBuilder.cs: base class for the next 2 files.
  84. * CodeRenderBuilder.cs: builder for code render.
  85. * DataBindingBuilder.cs: builder for data binding.
  86. 2003-04-20 Gonzalo Paniagua Javier <[email protected]>
  87. * ITagNameToTypeMapper.cs: made it internal.
  88. * ObjectTagBuilder.cs: builder for <object runat="server"> tag.
  89. * ObjectTag.cs:
  90. * RootBuilder.cs: initial builder.
  91. 2003-04-15 Gonzalo Paniagua Javier <[email protected]>
  92. * CollectionBuilder.cs:
  93. * TemplateBuilder.cs: new classes derived from ControlBuilder that
  94. represent a property or a ITemplate.
  95. * ControlBuilder.cs: implemented all the missing bits.
  96. * TemplateParser.cs: added mapping from tag name to Type feature.
  97. 2003-02-15 Gonzalo Paniagua Javier <[email protected]>
  98. * Control.cs: have i definitely fixed naming container stuff this time?
  99. * LosFormatter.cs: activated binary serialization code.
  100. 2003-02-14 Gonzalo Paniagua Javier <[email protected]>
  101. * Control.cs:
  102. (AddedControl): fixed default id assignation when the sequence of
  103. AddedControl until it's included in the page or one of its controls
  104. does not pass through a naming container.
  105. 2003-02-09 Gonzalo Paniagua Javier <[email protected]>
  106. * Control.cs: give different default names depending on the place where
  107. it is assigned. Implemented ResolveURl (no more ~ rendered in
  108. attributes!).
  109. 2003-02-08 Gonzalo Paniagua Javier <[email protected]>
  110. * Control.cs: when adding a control, assign default names to th
  111. children that don't have one.
  112. 2003-02-03 Gonzalo Paniagua Javier <[email protected]>
  113. * SimpleWebHandlerParser.cs: modified to use the new parser interface.
  114. 2003-01-17 Gonzalo Paniagua Javier <[email protected]>
  115. * Control.cs: some more tweaks to naming containers stuff.
  116. * DataBinder.cs: don't throw exception if the container is null.
  117. * Page.cs: now we can render client scripts, startup scripts and hidden
  118. fields. Only render __VIEWSTATE if there is someone that will take care
  119. of it.
  120. (RaisePostBackEvents): first try the last one that required raise event,
  121. then try __EVENTTARGET.
  122. 2003-01-16 Gonzalo Paniagua Javier <[email protected]>
  123. * Control.cs: fixes in UniqueID, FindControl, AddedControl,
  124. UnloadRecursive, InitRecursive. Reduced the size of __VIEWSTATE. Made
  125. FindControl work with NamingContainers.
  126. * ControlCollection.cs: notify the parent when clearing the collection.
  127. * LosFormatter.cs: Added debugging output and generate a valid
  128. viewstate even for unknown types.
  129. * Page.cs: GetPostBackEventReference now uses UniqueID. Reduced
  130. viewstate.
  131. 2003-01-10 Gonzalo Paniagua Javier <[email protected]>
  132. * Page.cs: make it fire the LoadData related events also for controls
  133. such as ImageButton, whose variable(s) in the query string are of the
  134. form ctrl_name.x and only fire them once per control.
  135. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  136. * DataBinder.cs:
  137. (GetPropertyValue): don't try to get the property as indexed
  138. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  139. * DataBinder.cs: use TypeDescriptor to get the properties and their
  140. values.
  141. 2003-01-04 Gonzalo Paniagua Javier <[email protected]>
  142. * Control.cs:
  143. (AddedControl): take the children to the same state of the parent.
  144. (InitRecursive): set the page of the children.
  145. * Page.cs: removed one line (it's done a few lines above).
  146. * UserControl.cs:
  147. (OnInit): always call InitializeAsUserControl
  148. (InitializeAsUserControl): sets the page for the control.
  149. 2003-01-03 Gonzalo Paniagua Javier <[email protected]>
  150. * Control.cs: fixed bug #36037.
  151. 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
  152. * BaseParser.cs: a couple of path fixes to make it work
  153. when the page is not in the root directory.
  154. 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
  155. * Control.cs: fixed PreRenderRecursiveInternal. Thanks to kojoadams for
  156. reporting the bug.
  157. 2002-12-18 Gonzalo Paniagua Javier <[email protected]>
  158. * BaseParser.cs: use MapPath and context to locate files.
  159. * Control.cs: implemented MapPathSecure.
  160. * TemplateControl.cs: use UrlUtils to generate the path.
  161. * TemplateControlParser.cs: use the context and MapPath.
  162. * UserControl.cs: implemented MapPath.
  163. * UserControlParser.cs: added context parameter to constructor.
  164. 2002-12-17 Gonzalo Paniagua Javier <[email protected]>
  165. * Control.cs: implemented MapPathSecure.
  166. * Page.cs: fixed Server property.
  167. 2002-12-15 Gonzalo Paniagua Javier <[email protected]>
  168. * DataBinder.cs: try the indexer if the property is not found in
  169. GetPropertyValue ().
  170. 2002-12-13 Gonzalo Paniagua Javier <[email protected]>
  171. * Control.cs: added AutoEventWireup internal property.
  172. * Page.cs: removed page events wire up from here.
  173. * TemplateControl.cs: new method WireupAutomaticEvents to hook up page
  174. and user controls events.
  175. * TemplateControlParser.cs: process the options that are applicable
  176. once we have the instance of the control.
  177. * TemplateParser.cs: also stores the options.
  178. * UserControl.cs: hook up events before initializing the control.
  179. 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
  180. * Control.cs: new method to set bindingContainer value.
  181. * TemplateControl.cs: added controls are not binding containers.
  182. 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
  183. * Control.cs: implemented TemplateSourceDirectory.
  184. * TemplateControl.cs: implemented LoadControl and LoadTemplate.
  185. 2002-11-27 Gonzalo Paniagua Javier <[email protected]>
  186. * UserControl.cs: fixed SetAttribute.
  187. * UserControlParser.cs: set the correct base type.
  188. 2002-11-26 Gonzalo Paniagua Javier <[email protected]>
  189. * TemplateParser.cs: fixed BaseType.
  190. * UserControlParser.cs: helper class to compile user controls.
  191. 2002-11-20 Gonzalo Paniagua Javier <[email protected]>
  192. * LosFormatter.cs: added DateTime to special types.
  193. 2002-11-12 Gonzalo Paniagua Javier <[email protected]>
  194. * LosFormatter.cs: added array serialization support. Disabled binary
  195. serialization and add some debugging code.
  196. * StateBag.cs: the length of the list of value can be less than the
  197. length if the list of keys when remaining values are null.
  198. 2002-11-07 Gonzalo Paniagua Javier <[email protected]>
  199. * Page.cs: return something useful in GetPostBackClientEvent.
  200. 2002-11-02 Gonzalo Paniagua Javier <[email protected]>
  201. * Page.cs: implemented FileDependecies and made it protected.
  202. 2002-10-31 Gonzalo Paniagua Javier <[email protected]>
  203. * Control.cs: save control names instead of the controls
  204. themselves to the ViewState.
  205. * LosFormatter.cs: added support for serializing unknown
  206. types. BinaryFormatter does not work so you better don't store anything
  207. of unknown Type in ViewState.
  208. * Page.cs: GetViewStateString works now using LosFormatter.
  209. Complete "Control execution lifecycle" by unloading all the child
  210. controls. Check for null in RaisePostBackEvents.
  211. LoadPageViewStateFromPersistenceMedium uses LosFormatter too.
  212. 2002-10-29 Gonzalo Paniagua Javier <[email protected]>
  213. * DataBinder.cs: implemented Eval and GetIndexedPropertyValue methods.
  214. 2002-10-27 Gonzalo Paniagua Javier <[email protected]>
  215. * LosFormatter.cs: Use WebEncoding.Encoding.
  216. * Control.cs:
  217. * Page.cs: fixed namespace.
  218. 2002-10-24 Gonzalo Paniagua Javier <[email protected]>
  219. * Page.cs: set the context in ProcessRequest. Added a few trace calls.
  220. * Control.cs: added some trace information.
  221. 2002-10-08 Gonzalo Paniagua Javier <[email protected]>
  222. * SimpleHandlerFactory.cs: new handler for .ashx files.
  223. 2002-09-28 Gonzalo Paniagua Javier <[email protected]>
  224. * System.Web.UI/PageHandlerFactory.cs: new file.
  225. * System.Web.UI/PageParser.cs:
  226. * System.Web.UI/TemplateControlParser.cs: we are now able to compile
  227. pages and use HttpApplication, HttpRuntime and SimpleWorkerRequest.
  228. 2002-09-25 Gonzalo Paniagua Javier <[email protected]>
  229. * Control.cs: implemented ObBubbleEvent.
  230. * Page.cs: temporary workaround to make POST work with xsp server.
  231. 2002-09-22 Gonzalo Paniagua Javier <[email protected]>
  232. * Page.cs: fixed InvokeEventMethod now that Type.GetMethod does not
  233. return pvt methods.
  234. 2002-09-11 Gonzalo Paniagua Javier <[email protected]>
  235. * SimpleWebHandlerParser.cs: New file.
  236. * WebServiceParser.cs: New file.
  237. 2002-08-22 Gonzalo Paniagua Javier <[email protected]>
  238. * LosFormatter.cs: almost fully implemented.
  239. 2002-08-18 Gonzalo Paniagua Javier <[email protected]>
  240. * CompiledTemplateBuilder.cs: InstantiateIn is virtual.
  241. * EmptyControlCollection.cs: throw correct exception.
  242. * LosFormatter.cs: stubbed out.
  243. * OutputCacheLocation.cs: little fix.
  244. 2002-08-16 Gonzalo Paniagua Javier <[email protected]>
  245. * System.Web.UI/ApplicationFileParser.cs:
  246. * System.Web.UI/BaseParser.cs:
  247. * System.Web.UI/PageParser.cs:
  248. * System.Web.UI/TemplateControl.cs:
  249. * System.Web.UI/TemplateControlParser.cs:
  250. * System.Web.UI/TemplateParser.cs: first steps to move xsp into
  251. System.Web.
  252. 2002-07-30 Gonzalo Paniagua Javier <[email protected]>
  253. * Page.cs: request to render postback script can be after form started
  254. rendering.
  255. 2002-07-22 Gonzalo Paniagua Javier <[email protected]>
  256. * Page.cs: added more page events to invoke automagically if some
  257. methods are defined.
  258. 2002-07-22 Gonzalo Paniagua Javier <[email protected]>
  259. * Control.cs:
  260. (SaveViewState): save state even when control is not visible.
  261. (SaveViewStateRecursive):
  262. (LoadViewStateRecursive): made internal.
  263. 2002-07-21 Gonzalo Paniagua Javier <[email protected]>
  264. * Page.cs: improved event raising to allow client postback for a wider
  265. variety of actions (clicking an hyperlink, ...).
  266. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  267. * UserControl.cs: implemented Load/SaveViewState.
  268. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  269. * AttributeCollection.cs:
  270. (Add): handle 'style' through styleCollection.
  271. * CssStyleCollection.cs:
  272. (fillStyle): renamed to FillStyle and made it internal.
  273. * Page.cs:
  274. (GetViewStateString): fixed, broken after other recent changes.
  275. (ProcessPostData): allow a second try for postback data after OnLoad.
  276. (ProcessRequest): clear controls collection, removed call to
  277. UnloadRecursive.
  278. 2002-07-19 Gonzalo Paniagua Javier <[email protected]>
  279. * Control.cs: uncommented Dispose.
  280. * Page.cs:
  281. (DeterminePostBackMode): more checkings.
  282. (GetPostBackClientHyperLink): implemented.
  283. (GetPostBackEventReference): added some comments with the HTML that MS
  284. generates for that.
  285. (ProcessRequest): fixed processing order. The page is unloaded after
  286. a request and regenerated from view state on subsequents posts.
  287. 2002-07-17 Gonzalo Paniagua Javier <[email protected]>
  288. * Control.cs: fixed related to ViewState. Added RemovedControl.
  289. * ControlCollection.cs: notify owner of control removal.
  290. * CssStyleCollection.cs: almost rewritten to make it render the style
  291. attribute after changes to it.
  292. * Page.cs: follow the guidelines in 'Control execution lifecycle'.
  293. Removed Xml code.
  294. * StateBag.cs: don't use IDictionary.GetEnumerator on the
  295. HybridDictionary: it makes the program give an InvalidCastException at
  296. runtime. Why?
  297. 2002-07-16 Gonzalo Paniagua Javier <[email protected]>
  298. * Page.cs: fire Init and Load events for all children.
  299. 2002-07-14 Gonzalo Paniagua Javier <[email protected]>
  300. * UserControl.cs: New file.
  301. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  302. * ControlBuilderAttribute.cs: finished implementation.
  303. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  304. * ConstructorNeedsTagAttribute.cs: the default constructor sets the
  305. property to false.
  306. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  307. * System.Web.UI/AttributeCollection.cs: added CssStyleCollection.
  308. * System.Web.UI/CssStyleCollection.cs: use a StateBag instead of a
  309. Hashtable. Added internal .ctor.
  310. * System.Web.UI/DataBinding.cs: propertyType is a Type. Implemented
  311. Equals and GetHashCode.
  312. * System.Web.UI/DataBoundLiteralControl.cs:
  313. (LoadViewState):
  314. (SaveViewState): implemented.
  315. * System.Web.UI/Page.cs: FileDependencies is not public.
  316. * System.Web.UI/ParseChildrenAttribute.cs: give a value to Default.
  317. (GetHashCode):
  318. (Equals):
  319. (IsDefaultAttribute): implemented.
  320. 2002-07-08 Gonzalo Paniagua Javier <[email protected]>
  321. * Control.cs: fixed Visible property.
  322. * Page.cs: fixed GetViewStateString.
  323. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  324. * System.Web.UI/Page.cs:
  325. (GetViewStateString): new function to give the server access to the
  326. generated view state string.
  327. (Validate): d'oh!
  328. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  329. * Control.cs:
  330. (SaveViewstateRecursive): implemented.
  331. (SaveViewState): fixed.
  332. (IParserAccessor.AddParsedSubObject): don't use 'this'.
  333. * Page.cs: added code to save view state to an xml file. It's not
  334. being used right now.
  335. 2002-06-30 Gonzalo Paniagua Javier <[email protected]>
  336. * System.Web.UI/LiteralControl.cs:
  337. Fixes based on class status page:
  338. - Add attributes (DefaultEvent, ParseChildren).
  339. - Fix declarations.
  340. - Explicitly implement some interfaces (IPostBackDataHandler
  341. and IPostBackEventHandler).
  342. - Implemented some missing methods.
  343. 2002-06-29 Gonzalo Paniagua Javier <[email protected]>
  344. * Control.cs: reimplemented FindControls.
  345. * Page.cs:
  346. (.ctor): set the page for this control.
  347. (IsPostBack): return valid value.
  348. (DeterminePostBackMode): finished.
  349. (OnFormRender): render __VIEWSTATE (uses GetTypeHashCode()).
  350. (ProcessPostData): implemented. Raises change and postback events.
  351. (ProcessRequest): changed to support reuse of the instance.
  352. (RegisterRequiresPostBack): implemented.
  353. * ValidatorCollection.cs: implemented all methods.
  354. 2002-06-25 Gonzalo Paniagua Javier <[email protected]>
  355. * Control.cs:
  356. * Page.cs: first attemp to save view state.
  357. * HtmlForm.cs: don't render Action.
  358. 2002-06-24 Gonzalo Paniagua Javier <[email protected]>
  359. * Page.cs: implemented more properties using information we already
  360. have in Context.
  361. (OnFormRender):
  362. (OnFormPostRender):
  363. (VerifyRenderingInServerForm): implemented.
  364. 2002-06-22 Gonzalo Paniagua Javier <[email protected]>
  365. * Page.cs: changed InvokeEventMethod to use a GetMethod that works with
  366. out runtime. Renamed Page_Init and Page_Load.
  367. After this, we can load a dll and render HTML in linux.
  368. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  369. * Control.cs:
  370. (AddedControl): new function that is called whenever a control is
  371. added to a collection of controls in a container. It sets the defaults
  372. except for Page.
  373. * ControlCollection.cs: call AddedControl in Add/AddAt.
  374. * DataBoundLiteralControl.cs: implemented constructor, Text, Render,
  375. SetStaticString and SetDataBoundString.
  376. * Page.cs: removed SetDefaults.
  377. 2002-06-19 Gonzalo Paniagua Javier <[email protected]>
  378. * CompiledTemplateBuilder.cs: new file. Used in the code generated
  379. by xsp.
  380. * Control.cs:
  381. (BindingContainer): implemented.
  382. (EnsureChildControls): avoid stack overflow.
  383. * DataBinder.cs: implemented Eval and PropertyValue.
  384. 2002-06-18 Gonzalo Paniagua Javier <[email protected]>
  385. * HtmlTextWriter.cs: fixed style attributes rendering (almost the same
  386. bug as in regular attributes).
  387. 2002-06-17 Gonzalo Paniagua Javier <[email protected]>
  388. * Control.cs: implemented PreventAutoID.
  389. * Page.cs:
  390. (SetDefaults): don't set ID automatically if Control.PreventAutoID has
  391. been called.
  392. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  393. * Page.cs:
  394. (Validators): if the collection is null, create one.
  395. (GetPostBackEventReference 2): don't throw exception.
  396. (GetPostBackClientEvent): return a string with containing the method
  397. name, the control name and the argument.
  398. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  399. * Page.cs: SetPage is now called SetDefaults and also sets a default
  400. ID for controls that don't have one yet.
  401. 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
  402. * Page.cs:
  403. (GetPostBackClient):
  404. (RegisterRequiresPostBack): don't throw NotImplementedException to
  405. keep going.
  406. (ProcessRequest): set the current page as the Page property for *all*
  407. the controls, not just the direct children of the page.
  408. 2002-06-11 Gonzalo Paniagua Javier <[email protected]>
  409. * Control.cs:
  410. (MapPathSecure): until security is implemented, return the same path
  411. received as argument.
  412. (RenderControl): call OnPreRender before rendering the control. So
  413. AdRotator can read its configuration file.Is there any other place
  414. where this should be done?
  415. * HtmlTextWriter.cs:
  416. (AddAttribute): fixed. Now it really stores attributes.
  417. (RenderBeginTag): fixed a couple of bugs (little ones but hard to find).
  418. 2002-06-09 Gonzalo Paniagua Javier <[email protected]>
  419. * ControlCollection.cs:
  420. (AddAt): if index is -1 behave as a plain Add.
  421. 2002-06-06 Gonzalo Paniagua Javier <[email protected]>
  422. * Page.cs: for each child control to render, assign Control.Page.
  423. Probably also needed in HtmlContainerControl derived classes.
  424. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  425. * AttributeCollection.cs: don't need a Hastable. StateBag now works
  426. fine and takes care of the details.
  427. * Control.cs: added HasChildren property.
  428. * StateBag.cs: fixed a couple of nasty bugs.
  429. 2002-06-05 Gonzalo Paniagua Javier <[email protected]>
  430. * Page.cs: run OnInit, OnLoad y PreRender before rendering the page.
  431. Invoke Page_Init and/or Page_Load if the user supplied them (though
  432. this should depend on AutoEventWireUp attribute of Page directive).
  433. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  434. * Control.cs: don't throw exception in ControlID. By now, it returns ID.
  435. * Page.cs:
  436. (ProcessRequest): implemented.
  437. 2002-06-04 Gonzalo Paniagua Javier <[email protected]>
  438. * System.Web.UI/Page.cs: finished stubbing out. Implemented some
  439. methods.
  440. 2002-06-03 Gonzalo Paniagua Javier <[email protected]>
  441. * Page.cs:
  442. (FileDependencies): now is public public.
  443. (EnableViewStateMAC): uncommented and made protected.
  444. (GetTypeHashCode): added method.
  445. 2002-05-24 Duncan Mak <[email protected]>
  446. * TemplateControl.cs (SetStringResourcePointer): Fixed typo.
  447. * StateBag.cs (Item): Changed the visibility level of the this
  448. [object] indexer.
  449. Misc. formatting edits, fixing some bugs introduced by the indentation.
  450. * DataBinder.cs (Eval)
  451. (GetIndexedPropertyValue)
  452. (GetPropertyValue): Fixed return types.
  453. 2002-05-21 Miguel de Icaza <[email protected]>
  454. * HtmlTextWriter.cs: Use this to change the member instances.
  455. 2002-05-17 Duncan Mak <[email protected]>
  456. * AttributeCollection.cs:
  457. * ControlCollection.cs:
  458. * CssStyleCollection.cs:
  459. * DataBindingCollection.cs:
  460. * EmptyControlCollection.cs: Added missing Collection classes.
  461. 2002-05-17 Duncan Mak <[email protected]>
  462. * BaseParser.cs:
  463. * TemplateParser.cs: Implemented. BaseParser is weird because
  464. there is no documentation on what it does.
  465. * ControlBuilder.cs:
  466. * DataBinder.cs:
  467. * DataBinding.cs: Added.
  468. * DataBoundLiteralControl.cs:
  469. * Triplet.cs: Added.
  470. * RenderMethod.cs: Added this delegate for Control.cs
  471. 2002-05-15 Gonzalo Paniagua Javier <[email protected]>
  472. * ValidationPropertyAttribute.cs: a couple of fixes to make it compile.
  473. 2002-05-14 Duncan Mak <[email protected]>
  474. * ValidationPropertyAttribute.cs: Added to CVS.
  475. 2002-05-10 Duncan Mak <[email protected]>
  476. * ConstructorNeedsTagAttribute.cs:
  477. * ControlBuilderAttribute.cs:
  478. * ImageClickEventArgs.cs:
  479. * ParseChildrenAttribute.cs:
  480. * PartialCachingAttribute.cs:
  481. * PersistChildrenAttribute.cs:
  482. * PersistenceModeAttribute.cs:
  483. * TemplateContainerAttribute.cs: Added to CVS.
  484. * PersistanceMode.cs: Removed, fixed typo.
  485. * PersistenceMode.cs: Replacing above.
  486. * StateBag.cs (this): Fixed indexer, it takes a string as the
  487. index, not an object.
  488. * ValidatorCollection.cs: Fixed typo, ValidatedCollection to ValidatorCollection.
  489. * Page.cs (Validators): return type should be ValidatorCollection,
  490. not ValidatedCollection.
  491. * TagPrefixAttribute.cs: Added to CVS.
  492. 2002-05-07 Duncan Mak <[email protected]>
  493. * Utils.cs (GetClientValidatedEvent): Uncommented the 'Page' argument.
  494. 2002-03-26 Gaurav Vaish <[email protected]>
  495. * DataBindingHandlerAttribute.cs
  496. - Completed
  497. * ToolboxDataAttribute.cs - Completed
  498. 2002-01-03 Nick Drochak <[email protected]>
  499. * DesignTimeParseData.cs: initialze static member to avoid compile
  500. error
  501. * PropertyConverter.cs: remove uneeded exception variables from
  502. catch blocks.
  503. 2002-01-02 Nick Drochak <[email protected]>
  504. * DesignTimeParseData.cs: fix header to show correct class name
  505. 2001-12-21 Gaurav Vaish <[email protected]>
  506. * StateBag.cs - Completed
  507. 2001-12-19 Gaurav Vaish <[email protected]>
  508. * Pair.cs - Small undocumented class. Completed.
  509. 2001-12-18 Gaurav Vaish <[email protected]>
  510. * DesignTimeParseData.cs - Initial implementation
  511. * StateBag.cs - Initial implementation
  512. 2001-12-17 Gaurav Vaish <[email protected]>
  513. * PropertyConverter.cs - Undocumented class. Completed.
  514. * Utils.cs - Undocumented, private class.
  515. Initial implementation
  516. 2001-08-28 Bob Smith <[email protected]>
  517. * Control.cs: Figured out some undocumented API.
  518. * Added TODO.
  519. * BuildMethod.cs: Initial implementation.
  520. * BuildTemplateMethod.cs: Initial implementation.
  521. * HtmlTextWriterAttribute.cs: Initial implementation.
  522. * HtmlTextWriterStyle.cs: Initial implementation.
  523. * HtmlTextWriterTag.cs: Initial implementation.
  524. * IAttributeAccessor.cs: Initial implementation.
  525. * IDataBindingsAccessor.cs: Initial implementation.
  526. * ImageClickEventHandler.cs: Initial implementation.
  527. * INamingContainer.cs: Initial implementation.
  528. * IParserAccessor.cs: Initial implementation.
  529. * IPostBackDataHandler.cs: Initial implementation.
  530. * IPostBackEventHandler.cs: Initial implementation.
  531. * IStateManager.cs: Initial implementation.
  532. * ITagNameToTypeMapper.cs: Initial implementation.
  533. * ITemplate.cs: Initial implementation.
  534. * IValidator.cs: Initial implementation.
  535. * OutputCacheLocation.cs: Initial implementation.
  536. * PersistanceMode.cs: Initial implementation.
  537. * StateItem.cs: Initial implementation.
  538. 2001-08-27 Bob Smith <[email protected]>
  539. * Control.cs: Bug fixes and implementations.
  540. 2001-08-24 Bob Smith <[email protected]>
  541. * Control.cs: Bug fixes.
  542. 2001-08-23 Bob Smith <[email protected]>
  543. * Control.cs: More implementation. Events reworked for performance.
  544. 2001-08-22 Bob Smith <[email protected]>
  545. * LiteralControl.cs: Implemented.
  546. * Control.cs: Even more implementation (Events). What a beast.
  547. 2001-08-20 Bob Smith <[email protected]>
  548. * Control.cs: More implementation. Not done yet. Shutter.
  549. 2001-08-17 Bob Smith <[email protected]>
  550. * Control.cs: Partial implementation.