ChangeLog 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. 2003-03-24 Gonzalo Paniagua Javier <[email protected]>
  2. * CompilationException.cs:
  3. * ParseException.cs: display the correct line number in error messages.
  4. * AspElements.cs: added TargetSchema attribute for control. It's
  5. ignored.
  6. 2003-03-17 Gonzalo Paniagua Javier <[email protected]>
  7. * BaseCompiler.cs: fixed the hack to work under windows.
  8. * CachingCompiler.cs: under windows, try 'mcs.bat' and then 'mcs'.
  9. 2003-03-17 Gonzalo Paniagua Javier <[email protected]>
  10. * BaseCompiler.cs: hacks to work-around our buggy System.Uri.
  11. 2003-03-17 George Kodinov <[email protected]>
  12. * BaseCompiler.cs: Removed a FIXME: and added a correct calculation of
  13. app's private bin path
  14. 2003-03-10 Gonzalo Paniagua Javier <[email protected]>
  15. * AspGenerator.cs:
  16. * BaseCompiler.cs:
  17. * CachingCompiler.cs:
  18. * CompilationResult.cs:
  19. * GlobalAsaxCompiler.cs:
  20. * PageCompiler.cs:
  21. * UserControlCompiler.cs: recompile the page if dependencies change.
  22. 2003-02-15 Gonzalo Paniagua Javier <[email protected]>
  23. * AspGenerator.cs: corrected typo and wrong fix.
  24. 2003-02-14 Gonzalo Paniagua Javier <[email protected]>
  25. * AspGenerator.cs: fixed code generation for Table/TableRow/TableCell
  26. when used explicitly.
  27. 2003-02-13 Gonzalo Paniagua Javier <[email protected]>
  28. * AspElements.cs: get the property Type for controls that use
  29. ParseChildren with a property name.
  30. * AspGenerator.cs: generate correct signature for the method that
  31. adds controls to the default property in ParseChildren.
  32. 2003-02-11 Gonzalo Paniagua Javier <[email protected]>
  33. * AspGenerator.cs: rethrow exceptions that may come from parsing or
  34. compilation if a user control.
  35. 2003-02-11 Gonzalo Paniagua Javier <[email protected]>
  36. * AspGenerator.cs: throw ParseException on parse
  37. error.
  38. * AspParser.cs: added Line and Column props.
  39. * CompilationException.cs: derives now from HtmlizedException.
  40. * CompilationResult.cs: added fileName field. Fixed set_ExitCode.
  41. * GlobalAsaxCompiler.cs:
  42. * PageCompiler.cs:
  43. * UserControlCompiler.cs: pass the file name in the CompilationResult.
  44. * ParseException.cs: new exception.
  45. 2003-02-05 Gonzalo Paniagua Javier <[email protected]>
  46. * AspGenerator.cs: remove "file://" from the private bin path. Fixes
  47. bug #37628.
  48. 2003-02-03 Gonzalo Paniagua Javier <[email protected]>
  49. * AspParser.cs: the parser fires events when it parses an element.
  50. * GlobalAsaxCompiler.cs:
  51. * PageCompiler.cs:
  52. * UserControlCompiler.cs:
  53. * AspElements.cs: modified to use the new parser interface.
  54. * AspGenerator.cs: modified to use the new parser. Merge multiple text
  55. strings into one single LiteralControl.
  56. * AspTokenizer.cs: added Line and Column properties.
  57. 2003-01-24 Gonzalo Paniagua Javier <[email protected]>
  58. * AspParser.cs: fixed bug #36929.
  59. 2003-01-21 Tim Haynes <[email protected]>
  60. * AspGenerator.cs:
  61. * BaseCompiler.cs:
  62. * CachingCompiler.cs: changes to work around spaces and
  63. directory-separators in the local filesystem.
  64. 2003-01-20 Gonzalo Paniagua Javier <[email protected]>
  65. * AspGenerator.cs: make the generated file compile with csc after last
  66. change.
  67. 2003-01-20 Gonzalo Paniagua Javier <[email protected]>
  68. * AspGenerator.cs: removed unused variable. Added support for
  69. properties/fields of type string [].
  70. 2003-01-16 Gonzalo Paniagua Javier <[email protected]>
  71. * AspGenerator.cs: modified loading of the parent type now that
  72. Type.GetType is fixed.
  73. 2003-01-10 Gonzalo Paniagua Javier <[email protected]>
  74. * AspGenerator.cs: cast to Control if the container does not implement
  75. INamingContainer.
  76. 2003-01-10 Gonzalo Paniagua Javier <[email protected]>
  77. * AspGenerator.cs: fixed a couple of thinkos related to IsSubclassOf.
  78. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  79. * AspElements.cs: attributes without value lacked a space afterwards.
  80. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  81. * AspGenerator.cs: functions for columns don't return anything. Fixed
  82. typo.
  83. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  84. * AspGenerator.cs: add data bound controls to code render function.
  85. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  86. * AspComponentFoundry.cs: reworked to allow same prefix for multiple
  87. controls. You can register 1 assembly plus any number of user controls
  88. under the same prefix.
  89. * AspGenerator.cs: don't add duplicate 'using' for the same namespace.
  90. Hack to allow @Register access to assemblies in other places than bin
  91. directory.
  92. 2003-01-06 Gonzalo Paniagua Javier <[email protected]>
  93. * AspElements.cs: added 'codebehind' attribute for page, control and
  94. application. It's ignored by MS, but allowed. Fixed typo.
  95. 2003-01-06 Gonzalo Paniagua Javier <[email protected]>
  96. * AspGenerator.cs: fixed EnableSesssionState handling.
  97. 2003-01-05 Gonzalo Paniagua Javier <[email protected]>
  98. * AspGenerator.cs: don't generate instance fields for pages/controls
  99. when the base class specified in the Inherits attribute already has
  100. them. Closes bug #36262.
  101. 2002-12-19 Gonzalo Paniagua Javier <[email protected]>
  102. * AspGenerator.cs: generate code like 'control.XXX = value' also for
  103. public fields (properties were being handled in that way too).
  104. 2002-12-18 Gonzalo Paniagua Javier <[email protected]>
  105. * AspGenerator.cs: now it uses the current HttpContext when creating
  106. user controls. TemplateSourceDirectory is no longer a dummy value.
  107. * GlobalAsaxCompiler.cs:
  108. * PageCompiler.cs:
  109. * UserControlCompiler.cs: set the context which will be used to locate
  110. the files.
  111. 2002-12-13 Gonzalo Paniagua Javier <[email protected]>
  112. * AspGenerator.cs: added support for AutoEventWireup attribute in
  113. @Page and @Control.
  114. * CompilationResult.cs:
  115. * GlobalAsaxCompiler.cs:
  116. * PageCompiler.cs:
  117. * UserControlCompiler.cs: store the options.
  118. 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
  119. * AspElements.cs: new method Tag.GetElements
  120. used to parse the inner contents of a tag looking for data binding or
  121. code render tags.
  122. New property HtmlControlTag.ParseChildren allows
  123. differentiation of a couple of HtmlControls that has children as
  124. properties (namely HtmlTable and HtmlTableRow).
  125. * AspGenerator.cs: fixed container semantics to
  126. match BindingContainer one. Implemented Inherits attribute for page and
  127. control.
  128. Support HtmlControls that has ChildrenAsProperties.
  129. Generate code for data binding functions that matches the semantic of
  130. Container.
  131. Handle data bound and code render attribute values.
  132. Set proper value return for TemplateSourceDirectory. Should be relative
  133. to appPath.
  134. * BaseCompiler.cs: moved CompilerOptions and
  135. References handling here.
  136. * CachingCompiler.cs: copy result of compilation.
  137. * CompilationException.cs: simple ToString () implementation.
  138. * CompilationResult.cs: implemented CopyFrom and ToString.
  139. * GlobalAsaxCompiler.cs:
  140. * PageCompiler.cs:
  141. * UserControlCompiler.cs: removed CompilerOptions as it's now handled
  142. in the base class. Get all the types in the generated assembly and
  143. look for one that derives from the correct Type.
  144. 2002-11-30 Gonzalo Paniagua Javier <[email protected]>
  145. * AspElements.cs: added @Application directive.
  146. * AspGenerator.cs: make it work also with application files. We
  147. currently generate an extra private function.
  148. 2002-11-29 Gonzalo Paniagua Javier <[email protected]>
  149. * GlobalAsaxCompiler.cs: compiler for global.asax file. If the file
  150. exists, it will be compiled into an HttpApplication derived class
  151. (directly or through a user-provided class).
  152. 2002-11-27 Gonzalo Paniagua Javier <[email protected]>
  153. * AspGenerator.cs: fixed target file name and generated class name.
  154. * BaseCompiler.cs: reference assemblies in PrivateBinPath.
  155. 2002-11-26 Gonzalo Paniagua Javier <[email protected]>
  156. * AspGenerator.cs: reworked user control
  157. compilation. Provide the options as a Hashtable for use in compilation.
  158. Create the user controls in the private bin path of the domain.
  159. * BaseCompiler.cs: base class for the various compiler types.
  160. * CachingCompiler.cs: actually executes mcs and do some poor caching
  161. (it will use Cache when finished).
  162. * CompilationException.cs: this exception has enough information to
  163. generate a nice error page.
  164. * CompilationResult.cs: used in caching.
  165. * PageCompiler.cs: now derives from BaseCompiler
  166. * TemplateFactory.cs: no longer needed.
  167. * UserControlCompiler.cs: new class used when compiling user controls.
  168. * WebServiceCompiler.cs: derives from BaseCompiler.
  169. 2002-11-13 Gonzalo Paniagua Javier <[email protected]>
  170. * AspElements.cs: added ServerComment class.
  171. * AspParser.cs: ignore ServerComments tags. Remove server comments when
  172. in verbatim mode.
  173. Fixes #33482.
  174. * PageCompiler.cs: check if the type is already cached before generating
  175. the C# file.
  176. * TemplateFactory.cs: if csFile parameter is null, only checks if we
  177. already have the page compiled.
  178. 2002-11-02 Gonzalo Paniagua Javier <[email protected]>
  179. * AspGenerator.cs: undo one-liner change.
  180. 2002-10-31 Gonzalo Paniagua Javier <[email protected]>
  181. * AspGenerator.cs: removed a few hacks no longer needed.
  182. 2002-10-27 Gonzalo Paniagua Javier <[email protected]>
  183. * PageCompiler.cs: tracing.
  184. * TemplateFactory.cs: cache compiled types and tracing.
  185. * WebServiceCompiler.cs: new parameter in GetTypeFromsource,
  186. 2002-10-23 Gonzalo Paniagua Javier <[email protected]>
  187. * AspComponentFoundry.cs: fixed typo.
  188. * TemplateFactory.cs: use csc style options.
  189. * AspGenerator.cs: don't use FileDependencies property of base class.
  190. 2002-09-28 Gonzalo Paniagua Javier <[email protected]>
  191. * System.Web.Compilation/AspElements.cs:
  192. * System.Web.Compilation/AspGenerator.cs:
  193. * System.Web.Compilation/AspParser.cs:
  194. * System.Web.Compilation/PageCompiler.cs:
  195. * System.Web.Compilation/TemplateFactory.cs: we are now able to compile
  196. pages and use HttpApplication, HttpRuntime and SimpleWorkerRequest.
  197. 2002-09-11 Gonzalo Paniagua Javier <[email protected]>
  198. * AspElements.cs: added WebService directive.
  199. * WebServiceCompiler.cs: New file.
  200. 2002-08-18 Gonzalo Paniagua Javier <[email protected]>
  201. * PageCompiler.cs: fixed compilation.
  202. 2002-08-18 Gonzalo Paniagua Javier <[email protected]>
  203. * PageCompiler.cs: generate C# file using AspGenerator.
  204. 2002-08-18 Gonzalo Paniagua Javier <[email protected]>
  205. * AspComponentFoundry.cs: LookupFoundry now returns bool.
  206. * AspGenerator.cs: New file.
  207. 2002-08-16 Gonzalo Paniagua Javier <[email protected]>
  208. * AspComponentFoundry.cs: New file.
  209. * AspElements.cs: renamed Component to Aspcomponent.
  210. 2002-08-16 Gonzalo Paniagua Javier <[email protected]>
  211. * AspElements.cs:
  212. * AspParser.cs:
  213. * AspTokenizer.cs:
  214. * ChangeLog:
  215. * PageCompiler.cs:
  216. * TemplateFactory.cs: first steps to move xsp into System.Web.