ChangeLog 6.5 KB

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