ChangeLog 9.8 KB

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