ChangeLog 28 KB

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