ChangeLog 5.6 KB

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