ChangeLog 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. 2002-11-30 Gonzalo Paniagua Javier <[email protected]>
  2. * AspElements.cs: added @Application directive.
  3. * AspGenerator.cs: make it work also with application files. We
  4. currently generate an extra private function.
  5. 2002-11-29 Gonzalo Paniagua Javier <[email protected]>
  6. * GlobalAsaxCompiler.cs: compiler for global.asax file. If the file
  7. exists, it will be compiled into an HttpApplication derived class
  8. (directly or through a user-provided class).
  9. 2002-11-27 Gonzalo Paniagua Javier <[email protected]>
  10. * AspGenerator.cs: fixed target file name and generated class name.
  11. * BaseCompiler.cs: reference assemblies in PrivateBinPath.
  12. 2002-11-26 Gonzalo Paniagua Javier <[email protected]>
  13. * AspGenerator.cs: reworked user control
  14. compilation. Provide the options as a Hashtable for use in compilation.
  15. Create the user controls in the private bin path of the domain.
  16. * BaseCompiler.cs: base class for the various compiler types.
  17. * CachingCompiler.cs: actually executes mcs and do some poor caching
  18. (it will use Cache when finished).
  19. * CompilationException.cs: this exception has enough information to
  20. generate a nice error page.
  21. * CompilationResult.cs: used in caching.
  22. * PageCompiler.cs: now derives from BaseCompiler
  23. * TemplateFactory.cs: no longer needed.
  24. * UserControlCompiler.cs: new class used when compiling user controls.
  25. * WebServiceCompiler.cs: derives from BaseCompiler.
  26. 2002-11-13 Gonzalo Paniagua Javier <[email protected]>
  27. * AspElements.cs: added ServerComment class.
  28. * AspParser.cs: ignore ServerComments tags. Remove server comments when
  29. in verbatim mode.
  30. Fixes #33482.
  31. * PageCompiler.cs: check if the type is already cached before generating
  32. the C# file.
  33. * TemplateFactory.cs: if csFile parameter is null, only checks if we
  34. already have the page compiled.
  35. 2002-11-02 Gonzalo Paniagua Javier <[email protected]>
  36. * AspGenerator.cs: undo one-liner change.
  37. 2002-10-31 Gonzalo Paniagua Javier <[email protected]>
  38. * AspGenerator.cs: removed a few hacks no longer needed.
  39. 2002-10-27 Gonzalo Paniagua Javier <[email protected]>
  40. * PageCompiler.cs: tracing.
  41. * TemplateFactory.cs: cache compiled types and tracing.
  42. * WebServiceCompiler.cs: new parameter in GetTypeFromsource,
  43. 2002-10-23 Gonzalo Paniagua Javier <[email protected]>
  44. * AspComponentFoundry.cs: fixed typo.
  45. * TemplateFactory.cs: use csc style options.
  46. * AspGenerator.cs: don't use FileDependencies property of base class.
  47. 2002-09-28 Gonzalo Paniagua Javier <[email protected]>
  48. * System.Web.Compilation/AspElements.cs:
  49. * System.Web.Compilation/AspGenerator.cs:
  50. * System.Web.Compilation/AspParser.cs:
  51. * System.Web.Compilation/PageCompiler.cs:
  52. * System.Web.Compilation/TemplateFactory.cs: we are now able to compile
  53. pages and use HttpApplication, HttpRuntime and SimpleWorkerRequest.
  54. 2002-09-11 Gonzalo Paniagua Javier <[email protected]>
  55. * AspElements.cs: added WebService directive.
  56. * WebServiceCompiler.cs: New file.
  57. 2002-08-18 Gonzalo Paniagua Javier <[email protected]>
  58. * PageCompiler.cs: fixed compilation.
  59. 2002-08-18 Gonzalo Paniagua Javier <[email protected]>
  60. * PageCompiler.cs: generate C# file using AspGenerator.
  61. 2002-08-18 Gonzalo Paniagua Javier <[email protected]>
  62. * AspComponentFoundry.cs: LookupFoundry now returns bool.
  63. * AspGenerator.cs: New file.
  64. 2002-08-16 Gonzalo Paniagua Javier <[email protected]>
  65. * AspComponentFoundry.cs: New file.
  66. * AspElements.cs: renamed Component to Aspcomponent.
  67. 2002-08-16 Gonzalo Paniagua Javier <[email protected]>
  68. * AspElements.cs:
  69. * AspParser.cs:
  70. * AspTokenizer.cs:
  71. * ChangeLog:
  72. * PageCompiler.cs:
  73. * TemplateFactory.cs: first steps to move xsp into System.Web.