ChangeLog 34 KB

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