ChangeLog 5.1 KB

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