ChangeLog 7.3 KB

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