ChangeLog 5.4 KB

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