ChangeLog 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731
  1. 2004-05-06 Gonzalo Paniagua Javier <[email protected]>
  2. * AspParser.cs: indent a few lines.
  3. * AspTokenizer.cs: added ungetc() used when we read a '/' in an unquoted
  4. attribute value. This way we can simulate reading 2 characters ahead
  5. (one in ungetc and the other in Peek) and work with values like
  6. text/javascript. Fixes bug #57302.
  7. 2004-05-06 Gonzalo Paniagua Javier <[email protected]>
  8. * AspParser.cs: ignore whitespace after directives. Fixes bug #58057.
  9. 2004-04-02 Lluis Sanchez Gual <[email protected]>
  10. * TemplateControlCompiler.cs: Fixed build for net_1_0 profile.
  11. 2004-03-15 Gonzalo Paniagua Javier <[email protected]>
  12. * GlobalAsaxCompiler.cs: removed Imports and Assemblies properties.
  13. 2004-02-23 Gonzalo Paniagua Javier <[email protected]>
  14. * AspGenerator.cs: error out when <object> server tag is not closed.
  15. Ignore any content inside it.
  16. 2004-02-10 Jackson Harper <[email protected]>
  17. * AspTokenizer.cs: Collect discarded characters that might be used
  18. in client side scripts. Patch by Liyu Liu.
  19. * AspParser.cs: Add discarded characters. Patch by Liyu Liu.
  20. 2004-02-10 Jackson Harper <[email protected]>
  21. * BaseCompiler.cs: Use the TempDirectory for compilation. Fixes
  22. bug #54117.
  23. 2004-01-30 Jackson Harper <[email protected]>
  24. * TemplateControlCompiler.cs: Call ToString on the types hashcode,
  25. the build method takes strings not ints.
  26. 2004-01-28 Gonzalo Paniagua Javier <[email protected]>
  27. * AspGenerator.cs: handle more possible errors in global.asax file.
  28. * BaseCompiler.cs: added utility methods for creating <object> related
  29. properties and fields.
  30. * GlobalAsaxCompiler.cs: keep around applications and session scope
  31. objects builders. Also a list of imports and assemblies added in
  32. global.asax.
  33. * TemplateControlCompiler.cs: use base class methods for <object> stuff.
  34. 2004-01-28 Gonzalo Paniagua Javier <[email protected]>
  35. * AspGenerator.cs: use the Cache to store compiled Types. Don't parse
  36. pages more than once. Thanks to Eric Lindvall for pointing this out.
  37. 2004-01-23 Gonzalo Paniagua Javier <[email protected]>
  38. * TemplateControlCompiler.cs: allow handling subproperties for other
  39. types than Style and Font. Fixes bug #53217.
  40. 2004-01-16 Jackson Harper <[email protected]>
  41. * TagAttribute.cs: attributes can be stored as encoded html so we
  42. decode them here.
  43. 2004-01-14 Jackson Harper <[email protected]>
  44. * TemplateControlCompiler.cs: Is a user control is cached and
  45. shared use the controls type hashcode for the GUID so it will be
  46. the same across instances.
  47. 2004-01-13 Jackson Harper <[email protected]>
  48. * TemplateControlCompiler.cs: If an item has the partial caching
  49. attribute build a PartialCachingControl in the parents __Build method.
  50. * BaseCompiler.cs: Add a method for adding class attributes to the
  51. class.
  52. * UserControlCompiler.cs: If caching is enabled on a user control
  53. add the PartialCachingAttribute to it.
  54. 2004-01-12 Gonzalo Paniagua Javier <[email protected]>
  55. * PageCompiler.cs: invoke Request.ValidateInput if required.
  56. 2004-01-03 Gonzalo Paniagua Javier <[email protected]>
  57. * AspGenerator.cs: don't rely on GC to close the files parsed. Fixes bug
  58. #52521. Patch by [email protected].
  59. 2003-12-25 Jackson Harper <[email protected]>
  60. * AspGenerator.cs: Allow scriptlets in javascript. This fixes bug
  61. #52522.
  62. 2003-12-17 Gonzalo Paniagua Javier <[email protected]>
  63. * PageCompiler.cs: assign the ErrorPage property if provided.
  64. 2003-12-15 Jackson Harper <[email protected]>
  65. * PageCompiler.cs: Add Trace and TraceMode to framework initialize
  66. method if they are set.
  67. 2003-12-15 Gonzalo Paniagua Javier <[email protected]>
  68. * AspGenerator.cs: ignore <tbody> when we're inside a server table and
  69. fail when runat="server" is applied to <tbody> with a parse error
  70. instead of waiting for a compilation error. Fixes bug #52157.
  71. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  72. * AspGenerator.cs: basic checking of ID validity. Throw a
  73. ParseException when mixing languages.
  74. 2003-11-30 Gonzalo Paniagua Javier <[email protected]>
  75. * PageCompiler.cs: assign LCID, Culture and/or UICulture in
  76. FrameworInitialize() if provided in @Page.
  77. Fixes bug #51511.
  78. 2003-11-20 Gonzalo Paniagua Javier <[email protected]>
  79. * TemplateControlCompiler.cs: support for expressions of
  80. System.Drawing.Size type. Allow getting Color from comma separated
  81. numbers, which is not allowed by ColorConverter.
  82. This makes http://www.codeproject.com/aspnet/asppopup.asp work.
  83. 2003-11-13 Jackson Harper <[email protected]>
  84. * PageCompiler.cs: Call InitOutputCache when the OutputCache
  85. directive is set.
  86. 2003-11-05 Gonzalo Paniagua Javier <[email protected]>
  87. * AspGenerator.cs: use fileEncoding from configuration files.
  88. * PageCompiler.cs: add assign statements for ContentType,
  89. ResponseEncoding and CodePage if supplied.
  90. 2003-10-21 Gonzalo Paniagua Javier <[email protected]>
  91. * TemplateControlCompiler.cs: fix bug #42994. Now we don't generate
  92. a return statement for user controls with 'void' return type.
  93. 2003-10-19 Gonzalo Paniagua Javier <[email protected]>
  94. * AspParser.cs: fixed bug #49627.
  95. 2003-10-14 Gonzalo Paniagua Javier <[email protected]>
  96. * BaseCompiler.cs: now gets the CodeCompiler from configuration files.
  97. 2003-10-13 Gonzalo Paniagua Javier <[email protected]>
  98. * Directive.cs: new attribute for @Page directive in 1.1.
  99. 2003-10-11 Gonzalo Paniagua Javier <[email protected]>
  100. * AspParser.cs:
  101. * TagAttributes.cs: allow duplicated runat=server attributes and display
  102. error page when duplicated attributes and runat is specified.
  103. 2003-10-10 Gonzalo Paniagua Javier <[email protected]>
  104. * AspTokenizer.cs: moved token numbers above unicode.
  105. 2003-09-22 Gonzalo Paniagua Javier <[email protected]>
  106. * AspGenerator.cs: don't process code render tags inside scripts. Check
  107. the language of the script and treat javascript as verbatim input.
  108. Fixes bug #48592.
  109. 2003-09-19 Gonzalo Paniagua Javier <[email protected]>
  110. * TemplateControlCompiler.cs: fixed bug #48212.
  111. 2003-09-18 Gonzalo Paniagua Javier <[email protected]>
  112. * WebServiceCompiler.cs: remove the temporary files here too.
  113. 2003-08-03 Gonzalo Paniagua Javier <[email protected]>
  114. * AspGenerator.cs: fixed bug #46429.
  115. 2003-08-01 Gonzalo Paniagua Javier <[email protected]>
  116. * Directive.cs: support @WebHandler.
  117. 2003-07-16 Gonzalo Paniagua Javier <[email protected]>
  118. * TemplateControlCompiler.cs: support string []. Fixes bug #46415.
  119. 2003-07-08 Gonzalo Paniagua Javier <[email protected]>
  120. * BaseCompiler.cs: first look for cached items, then generate the tree.
  121. This should speed things up.
  122. * CachingCompiler.cs: when compiling web services, use the full path of
  123. the .asmx file as key when caching.
  124. * WebServiceCompiler.cs: first look for cached items, then generate
  125. the source file.
  126. 2003-07-04 Gonzalo Paniagua Javier <[email protected]>
  127. * AspParser.cs: more useful error information,
  128. * BaseCompiler.cs:
  129. * CachingCompiler.cs: honor the debug="true" option.
  130. * TemplateControlCompiler.cs: small fixes for templates.
  131. 2003-07-03 Gonzalo Paniagua Javier <[email protected]>
  132. * BaseCompiler.cs: made Compiler property virtual.
  133. * CachingCompiler.cs: added support for compiling web services.
  134. * WebServiceCompiler.cs: implemented.
  135. 2003-05-22 Gonzalo Paniagua Javier <[email protected]>
  136. * CachingCompiler.cs: fixed bug #43477.
  137. 2003-05-22 Gonzalo Paniagua Javier <[email protected]>
  138. * AspParser.cs:
  139. * AspTokenizer.cs: fixed bugs #43206 and #43371.
  140. 2003-05-10 Gonzalo Paniagua Javier <[email protected]>
  141. * TemplateControlCompiler.cs: duh! Generate SupportAutoEvents instead
  142. of AutoEventWireup (which is internal). Thanks to Stuart Ballard for
  143. reporting.
  144. 2003-05-06 Gonzalo Paniagua Javier <[email protected]>
  145. * CompilationException.cs: don't add duplicated lines in the case that
  146. mcs reports several errors for the same one.
  147. 2003-05-06 Gonzalo Paniagua Javier <[email protected]>
  148. * AspGenerator.cs: fully support including files, ie., treat them just
  149. as C treats #includes.
  150. 2003-05-04 Gonzalo Paniagua Javier <[email protected]>
  151. * AspGenerator.cs:
  152. * AspParser.cs:
  153. * TagType.cs: Added support for server side includes.
  154. 2003-05-03 Gonzalo Paniagua Javier <[email protected]>
  155. * CSCompiler.cs: actually add the list of referenced assemblies to the
  156. compiler options. Throw a CompilationException if there's an error.
  157. * CachingCompiler.cs: added a method to compile directly from a source
  158. file.
  159. 2003-05-01 Gonzalo Paniagua Javier <[email protected]>
  160. * AspGenerator.cs: copy the location before setting the value for the
  161. control builders.
  162. * BaseCompiler.cs: changed parameters for CompilationException.
  163. * CompilationException.cs: it takes now line numbers and error
  164. descriptions from the CompilerErrorCollection.
  165. * Location.cs: used when a copy of an ILocation is needed.
  166. * ParseException.cs: implemented new methods to provide line numbers
  167. and souce file.
  168. * TemplateControlCompiler.cs: throw a ParseException where appropiate.
  169. 2003-05-01 Gonzalo Paniagua Javier <[email protected]>
  170. * AspGenerator.cs: also support data bind syntax inside tags not
  171. processed as controls. Added debugging method.
  172. * TemplateControlCompiler.cs: reset the number of data binding handlers
  173. in the proper place. Small fix when getting the container type.
  174. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  175. * TemplateControlCompiler.cs: correctly set the TemplateSourceDirectory
  176. value.
  177. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  178. * AspGenerator.cs: handle code render syntax in tag attributes.
  179. * AspParser.cs: the constructor now takes a TextReader.
  180. * TemplateControlCompiler.cs: removed comment.
  181. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  182. * TemplateControlCompiler.cs: added support for data bound properties.
  183. 2003-04-30 Gonzalo Paniagua Javier <[email protected]>
  184. * AspComponentFoundry.cs: simplified it a lot by using Type and Assembly
  185. instead of their names.
  186. * AspElements.cs: removed. No longer needed.
  187. * AspGenerator.cs: this file is now in charge of interfacing between
  188. the parser and the compiler. It manages the creation of the
  189. ControlBuilder tree and the compilation of the CodeDOM tree.
  190. * AspParser.cs: tag handling is simpler now. Instead of a whole bunch
  191. of different Types, tags are just and id and a set of attributes.
  192. Implement ILocation interface.
  193. * AspTokenizer.cs: added a few methods to help the parser implementing
  194. ILocation.
  195. * BaseCompiler.cs: handles the portions of the CodeDOM tree that are
  196. common to appliaction, page and user control, including the actual
  197. compilation and error handling.
  198. * CSCompiler.cs: compiles C# files using CodeDOM interfaces.
  199. * CachingCompiler.cs: simplified to use the new interfaces.
  200. * CompilationException.cs: it's now using CompilationResult to report
  201. errors.
  202. * CompilationResult.cs: Removed file.
  203. * Directive.cs: to check for the validity of a directive.
  204. * GlobalAsaxCompiler.cs: simplified a lot, as most of the work is done
  205. in BaseCompiler.
  206. * ILocation.cs: interface used to now the exact place where a parse
  207. error happens.
  208. * PageCompiler.cs: generates a couple of methods that are only used in
  209. pages.
  210. * ParseException.cs: use the ILocation interface.
  211. * TagAttributes.cs: handles the attributes of the tags parsed.
  212. * TagType.cs: an enum for the different kinds of tags.
  213. * TemplateControlCompiler.cs: this is the one that does most of the
  214. conversion from teh ControlBuilder tree into a CodeDOM tree.
  215. * UserControlCompiler.cs: simplified as most of the work is done in
  216. its base classes.
  217. * WebServiceCompiler.cs: dummy.
  218. 2003-04-20 Gonzalo Paniagua Javier <[email protected]>
  219. * AspComponentFoundry.cs: added GetComponentType method.
  220. 2003-03-28 Gonzalo Paniagua Javier <[email protected]>
  221. * AspTokenizer.cs: allow quotes inside server tags that are part of
  222. attribute values.
  223. * CachingCompiler.cs: no more 'FileNotFound' exceptions when the
  224. compilation fails.
  225. 2003-03-27 Gonzalo Paniagua Javier <[email protected]>
  226. * AspGenerator.cs: generate correct appbase path. It was working with
  227. mcs but not with csc.
  228. * BaseCompiler.cs: quote arguments and removed GetRandomFileName.
  229. * CachingCompiler.cs: quote source file.
  230. 2003-03-26 Gonzalo Paniagua Javier <[email protected]>
  231. * AspGenerator.cs: now the Inherits attribute works as expected for
  232. global.asax file.
  233. 2003-03-24 Gonzalo Paniagua Javier <[email protected]>
  234. * CompilationException.cs:
  235. * ParseException.cs: display the correct line number in error messages.
  236. * AspElements.cs: added TargetSchema attribute for control. It's
  237. ignored.
  238. 2003-03-17 Gonzalo Paniagua Javier <[email protected]>
  239. * BaseCompiler.cs: fixed the hack to work under windows.
  240. * CachingCompiler.cs: under windows, try 'mcs.bat' and then 'mcs'.
  241. 2003-03-17 Gonzalo Paniagua Javier <[email protected]>
  242. * BaseCompiler.cs: hacks to work-around our buggy System.Uri.
  243. 2003-03-17 George Kodinov <[email protected]>
  244. * BaseCompiler.cs: Removed a FIXME: and added a correct calculation of
  245. app's private bin path
  246. 2003-03-10 Gonzalo Paniagua Javier <[email protected]>
  247. * AspGenerator.cs:
  248. * BaseCompiler.cs:
  249. * CachingCompiler.cs:
  250. * CompilationResult.cs:
  251. * GlobalAsaxCompiler.cs:
  252. * PageCompiler.cs:
  253. * UserControlCompiler.cs: recompile the page if dependencies change.
  254. 2003-02-15 Gonzalo Paniagua Javier <[email protected]>
  255. * AspGenerator.cs: corrected typo and wrong fix.
  256. 2003-02-14 Gonzalo Paniagua Javier <[email protected]>
  257. * AspGenerator.cs: fixed code generation for Table/TableRow/TableCell
  258. when used explicitly.
  259. 2003-02-13 Gonzalo Paniagua Javier <[email protected]>
  260. * AspElements.cs: get the property Type for controls that use
  261. ParseChildren with a property name.
  262. * AspGenerator.cs: generate correct signature for the method that
  263. adds controls to the default property in ParseChildren.
  264. 2003-02-11 Gonzalo Paniagua Javier <[email protected]>
  265. * AspGenerator.cs: rethrow exceptions that may come from parsing or
  266. compilation if a user control.
  267. 2003-02-11 Gonzalo Paniagua Javier <[email protected]>
  268. * AspGenerator.cs: throw ParseException on parse
  269. error.
  270. * AspParser.cs: added Line and Column props.
  271. * CompilationException.cs: derives now from HtmlizedException.
  272. * CompilationResult.cs: added fileName field. Fixed set_ExitCode.
  273. * GlobalAsaxCompiler.cs:
  274. * PageCompiler.cs:
  275. * UserControlCompiler.cs: pass the file name in the CompilationResult.
  276. * ParseException.cs: new exception.
  277. 2003-02-05 Gonzalo Paniagua Javier <[email protected]>
  278. * AspGenerator.cs: remove "file://" from the private bin path. Fixes
  279. bug #37628.
  280. 2003-02-03 Gonzalo Paniagua Javier <[email protected]>
  281. * AspParser.cs: the parser fires events when it parses an element.
  282. * GlobalAsaxCompiler.cs:
  283. * PageCompiler.cs:
  284. * UserControlCompiler.cs:
  285. * AspElements.cs: modified to use the new parser interface.
  286. * AspGenerator.cs: modified to use the new parser. Merge multiple text
  287. strings into one single LiteralControl.
  288. * AspTokenizer.cs: added Line and Column properties.
  289. 2003-01-24 Gonzalo Paniagua Javier <[email protected]>
  290. * AspParser.cs: fixed bug #36929.
  291. 2003-01-21 Tim Haynes <[email protected]>
  292. * AspGenerator.cs:
  293. * BaseCompiler.cs:
  294. * CachingCompiler.cs: changes to work around spaces and
  295. directory-separators in the local filesystem.
  296. 2003-01-20 Gonzalo Paniagua Javier <[email protected]>
  297. * AspGenerator.cs: make the generated file compile with csc after last
  298. change.
  299. 2003-01-20 Gonzalo Paniagua Javier <[email protected]>
  300. * AspGenerator.cs: removed unused variable. Added support for
  301. properties/fields of type string [].
  302. 2003-01-16 Gonzalo Paniagua Javier <[email protected]>
  303. * AspGenerator.cs: modified loading of the parent type now that
  304. Type.GetType is fixed.
  305. 2003-01-10 Gonzalo Paniagua Javier <[email protected]>
  306. * AspGenerator.cs: cast to Control if the container does not implement
  307. INamingContainer.
  308. 2003-01-10 Gonzalo Paniagua Javier <[email protected]>
  309. * AspGenerator.cs: fixed a couple of thinkos related to IsSubclassOf.
  310. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  311. * AspElements.cs: attributes without value lacked a space afterwards.
  312. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  313. * AspGenerator.cs: functions for columns don't return anything. Fixed
  314. typo.
  315. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  316. * AspGenerator.cs: add data bound controls to code render function.
  317. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  318. * AspComponentFoundry.cs: reworked to allow same prefix for multiple
  319. controls. You can register 1 assembly plus any number of user controls
  320. under the same prefix.
  321. * AspGenerator.cs: don't add duplicate 'using' for the same namespace.
  322. Hack to allow @Register access to assemblies in other places than bin
  323. directory.
  324. 2003-01-06 Gonzalo Paniagua Javier <[email protected]>
  325. * AspElements.cs: added 'codebehind' attribute for page, control and
  326. application. It's ignored by MS, but allowed. Fixed typo.
  327. 2003-01-06 Gonzalo Paniagua Javier <[email protected]>
  328. * AspGenerator.cs: fixed EnableSesssionState handling.
  329. 2003-01-05 Gonzalo Paniagua Javier <[email protected]>
  330. * AspGenerator.cs: don't generate instance fields for pages/controls
  331. when the base class specified in the Inherits attribute already has
  332. them. Closes bug #36262.
  333. 2002-12-19 Gonzalo Paniagua Javier <[email protected]>
  334. * AspGenerator.cs: generate code like 'control.XXX = value' also for
  335. public fields (properties were being handled in that way too).
  336. 2002-12-18 Gonzalo Paniagua Javier <[email protected]>
  337. * AspGenerator.cs: now it uses the current HttpContext when creating
  338. user controls. TemplateSourceDirectory is no longer a dummy value.
  339. * GlobalAsaxCompiler.cs:
  340. * PageCompiler.cs:
  341. * UserControlCompiler.cs: set the context which will be used to locate
  342. the files.
  343. 2002-12-13 Gonzalo Paniagua Javier <[email protected]>
  344. * AspGenerator.cs: added support for AutoEventWireup attribute in
  345. @Page and @Control.
  346. * CompilationResult.cs:
  347. * GlobalAsaxCompiler.cs:
  348. * PageCompiler.cs:
  349. * UserControlCompiler.cs: store the options.
  350. 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
  351. * AspElements.cs: new method Tag.GetElements
  352. used to parse the inner contents of a tag looking for data binding or
  353. code render tags.
  354. New property HtmlControlTag.ParseChildren allows
  355. differentiation of a couple of HtmlControls that has children as
  356. properties (namely HtmlTable and HtmlTableRow).
  357. * AspGenerator.cs: fixed container semantics to
  358. match BindingContainer one. Implemented Inherits attribute for page and
  359. control.
  360. Support HtmlControls that has ChildrenAsProperties.
  361. Generate code for data binding functions that matches the semantic of
  362. Container.
  363. Handle data bound and code render attribute values.
  364. Set proper value return for TemplateSourceDirectory. Should be relative
  365. to appPath.
  366. * BaseCompiler.cs: moved CompilerOptions and
  367. References handling here.
  368. * CachingCompiler.cs: copy result of compilation.
  369. * CompilationException.cs: simple ToString () implementation.
  370. * CompilationResult.cs: implemented CopyFrom and ToString.
  371. * GlobalAsaxCompiler.cs:
  372. * PageCompiler.cs:
  373. * UserControlCompiler.cs: removed CompilerOptions as it's now handled
  374. in the base class. Get all the types in the generated assembly and
  375. look for one that derives from the correct Type.
  376. 2002-11-30 Gonzalo Paniagua Javier <[email protected]>
  377. * AspElements.cs: added @Application directive.
  378. * AspGenerator.cs: make it work also with application files. We
  379. currently generate an extra private function.
  380. 2002-11-29 Gonzalo Paniagua Javier <[email protected]>
  381. * GlobalAsaxCompiler.cs: compiler for global.asax file. If the file
  382. exists, it will be compiled into an HttpApplication derived class
  383. (directly or through a user-provided class).
  384. 2002-11-27 Gonzalo Paniagua Javier <[email protected]>
  385. * AspGenerator.cs: fixed target file name and generated class name.
  386. * BaseCompiler.cs: reference assemblies in PrivateBinPath.
  387. 2002-11-26 Gonzalo Paniagua Javier <[email protected]>
  388. * AspGenerator.cs: reworked user control
  389. compilation. Provide the options as a Hashtable for use in compilation.
  390. Create the user controls in the private bin path of the domain.
  391. * BaseCompiler.cs: base class for the various compiler types.
  392. * CachingCompiler.cs: actually executes mcs and do some poor caching
  393. (it will use Cache when finished).
  394. * CompilationException.cs: this exception has enough information to
  395. generate a nice error page.
  396. * CompilationResult.cs: used in caching.
  397. * PageCompiler.cs: now derives from BaseCompiler
  398. * TemplateFactory.cs: no longer needed.
  399. * UserControlCompiler.cs: new class used when compiling user controls.
  400. * WebServiceCompiler.cs: derives from BaseCompiler.
  401. 2002-11-13 Gonzalo Paniagua Javier <[email protected]>
  402. * AspElements.cs: added ServerComment class.
  403. * AspParser.cs: ignore ServerComments tags. Remove server comments when
  404. in verbatim mode.
  405. Fixes #33482.
  406. * PageCompiler.cs: check if the type is already cached before generating
  407. the C# file.
  408. * TemplateFactory.cs: if csFile parameter is null, only checks if we
  409. already have the page compiled.
  410. 2002-11-02 Gonzalo Paniagua Javier <[email protected]>
  411. * AspGenerator.cs: undo one-liner change.
  412. 2002-10-31 Gonzalo Paniagua Javier <[email protected]>
  413. * AspGenerator.cs: removed a few hacks no longer needed.
  414. 2002-10-27 Gonzalo Paniagua Javier <[email protected]>
  415. * PageCompiler.cs: tracing.
  416. * TemplateFactory.cs: cache compiled types and tracing.
  417. * WebServiceCompiler.cs: new parameter in GetTypeFromsource,
  418. 2002-10-23 Gonzalo Paniagua Javier <[email protected]>
  419. * AspComponentFoundry.cs: fixed typo.
  420. * TemplateFactory.cs: use csc style options.
  421. * AspGenerator.cs: don't use FileDependencies property of base class.
  422. 2002-09-28 Gonzalo Paniagua Javier <[email protected]>
  423. * System.Web.Compilation/AspElements.cs:
  424. * System.Web.Compilation/AspGenerator.cs:
  425. * System.Web.Compilation/AspParser.cs:
  426. * System.Web.Compilation/PageCompiler.cs:
  427. * System.Web.Compilation/TemplateFactory.cs: we are now able to compile
  428. pages and use HttpApplication, HttpRuntime and SimpleWorkerRequest.
  429. 2002-09-11 Gonzalo Paniagua Javier <[email protected]>
  430. * AspElements.cs: added WebService directive.
  431. * WebServiceCompiler.cs: New file.
  432. 2002-08-18 Gonzalo Paniagua Javier <[email protected]>
  433. * PageCompiler.cs: fixed compilation.
  434. 2002-08-18 Gonzalo Paniagua Javier <[email protected]>
  435. * PageCompiler.cs: generate C# file using AspGenerator.
  436. 2002-08-18 Gonzalo Paniagua Javier <[email protected]>
  437. * AspComponentFoundry.cs: LookupFoundry now returns bool.
  438. * AspGenerator.cs: New file.
  439. 2002-08-16 Gonzalo Paniagua Javier <[email protected]>
  440. * AspComponentFoundry.cs: New file.
  441. * AspElements.cs: renamed Component to Aspcomponent.
  442. 2002-08-16 Gonzalo Paniagua Javier <[email protected]>
  443. * AspElements.cs:
  444. * AspParser.cs:
  445. * AspTokenizer.cs:
  446. * ChangeLog:
  447. * PageCompiler.cs:
  448. * TemplateFactory.cs: first steps to move xsp into System.Web.