ChangeLog 53 KB

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