ChangeLog 48 KB

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