ChangeLog 46 KB

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