ChangeLog 42 KB

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