ChangeLog 47 KB

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