ChangeLog 6.1 KB

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