ChangeLog 28 KB

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