ChangeLog 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. 2005-09-27 Gonzalo Paniagua Javier <[email protected]>
  2. * SimpleWorkerRequest.cs: all tests pass now.
  3. 2005-09-26 Gonzalo Paniagua Javier <[email protected]>
  4. * ApplicationHost.cs: append a directory separator char to the physical
  5. path. Fixes bug #76187.
  6. 2005-09-21 Gonzalo Paniagua Javier <[email protected]>
  7. * SimpleWorkerRequest.cs: fix GetUriPath() for paths ending in '/'.
  8. 2005-09-10 Sebastien Pouliot <[email protected]>
  9. * AppDomainFactory.cs: Added LinkDemand for Minimal. Added Demand for
  10. UnmanagedCode on ctor. Added TODO on unimplemented method.
  11. * ApplicationHost.cs: Added LinkDemand for Minimal. Added Demand for
  12. UnmanagedCode on ctor. Removed duplicate null checks.
  13. * ISAPIRuntime.cs: Fixed inheritance (added MarshalByRefObject and
  14. IRegisteredObject) for 2.0. Added LinkDemand for Minimal. Added Demand
  15. for UnmanagedCode on ctor.
  16. * SimpleWorkerRequest.cs: Added LinkDemand and InheritanceDemand (not
  17. sealed) for Minimal. Added Demands for UnmanagedCode on ctors. Added
  18. FileIOPermission for PathDiscovery before returning processed paths.
  19. 2005-09-10 Gonzalo Paniagua Javier <[email protected]>
  20. * ApplicationHost.cs: set the domain's DynamicBase property instead of
  21. guessing it in BaseCompiler.
  22. 2005-09-08 Eyal Alalouf <[email protected]>
  23. * ServletWorkerRequest.jvm.cs: Implement SendResponseFromFile
  24. 2005-07-24 Eyal Alalouf <[email protected]>
  25. * ServletWorkerRequest.jvm.cs: Put Console.WriteLine in #if DEBUG
  26. 2005-07-18 Eyal Alalouf <[email protected]>
  27. * Added ServletWorkerRequest.jvm.cs
  28. 2005-06-08 Gonzalo Paniagua Javier <[email protected]>
  29. * IISAPIRuntime.cs: GUID changed.
  30. 2004-08-03 Atsushi Enomoto <[email protected]>
  31. * IApplicationHost.cs : missing namespace import.
  32. 2004-08-02 Duncan Mak <[email protected]>
  33. * IApplicationHost.cs (MapPath): Add [In] attribute.
  34. * IAppManagerAppDomainFactory.cs:
  35. * IProcessHostSupportFunction.cs: signature fixes.
  36. 2004-08-02 Duncan Mak <[email protected]>
  37. * IApplicationHost.cs:
  38. * IHttpWorkerRequestHandler.cs:
  39. * IProcessHost.cs:
  40. * IProcessHostFactoryHelper.cs:
  41. * IProcessHostSupportFunction.cs:
  42. * IProcessPingCallback.cs:
  43. * IQueueHost.cs:
  44. * IRegisteredObject.cs: Added interfaces.
  45. 2004-06-18 Gert Driesen <[email protected]>
  46. * IAppDomainFactory.cs: added missing marshalling attributes
  47. * IISAPIRuntime.cs: added missing marshalling attributes
  48. 2004-05-14 Gonzalo Paniagua Javier <[email protected]>
  49. * AppDomainFactory.cs: set the Dynamic base for the AppDomain.
  50. 2004-03-18 Gonzalo Paniagua Javier <[email protected]>
  51. * SimpleWorkerRequest.cs: patch from Aleksey Demakov that fixes
  52. MapPath when the virtual directory is the root virtual directory.
  53. 2004-01-14 Andreas Nahr <[email protected]>
  54. * IISAPIRuntime.cs: Fixed wrong attribute
  55. 2004-01-11 Andreas Nahr <[email protected]>
  56. * SimpleWorkerRequest.cs: Added missing attribute
  57. * IISAPIRuntime.cs: Added attributes, fixed signature
  58. * IAppDomainFactory.cs: Added attributes, fixed signature
  59. 2003-08-29 Gonzalo Paniagua Javier <[email protected]>
  60. * ApplicationHost.cs: set hostingInstallDir.
  61. * SimpleWorkerRequest.cs: implemented a couple of properties.
  62. 2003-08-29 Gonzalo Paniagua Javier <[email protected]>
  63. * SimpleWorkerRequest.cs: fixed GetFilePathTranslated and added a
  64. paranoid condition to ExtractPathInfo.
  65. 2003-06-25 Eric Lindvall <[email protected]>
  66. * SimpleWorkerRequest.cs:
  67. -adds PATH_INFO support
  68. - updates GetFilePathTranslated() to make use of Path.Combine()
  69. - gets rid of the null check in GetPathInfo() (we're setting
  70. _PathInfo to String.Empty now)
  71. - fixed CreatePath() so that it doesn't return String.Empty if
  72. the _AppVirtualPath is not "/" (to match MS runtime -- does
  73. anyone know why it was returning String.Empty?)
  74. 2003-03-17 Gonzalo Paniagua Javier <[email protected]>
  75. * AppDomainFactory.cs: hacks to work-around our buggy System.Uri.
  76. 2003-03-17 George Kodinov <[email protected]>
  77. * AppDomainFactory.cs: place the correct full path for Web.config when
  78. in Application host
  79. 2003-02-17 Gonzalo Paniagua Javier <[email protected]>
  80. * AppDomainFactory.cs: Web.config takes precedence over web.config.
  81. * ApplicationHost.cs: removed hacks to work around an old bug.
  82. 2003-02-04 Tim Haynes <[email protected]>
  83. * SimpleWorkerRequest.cs: changed the initialised values of
  84. _App{Install,Virtual}Path variables
  85. 2002-09-28 Gonzalo Paniagua Javier <[email protected]>
  86. * System.Web.Hosting/SimpleWorkerRequest.cs: we are now able to compile
  87. pages and use HttpApplication, HttpRuntime and SimpleWorkerRequest.
  88. 2002-09-26 Gonzalo Paniagua Javier <[email protected]>
  89. * ApplicationHost.cs:
  90. * SimpleWorkerRequest.cs: workaround for bug #31245.
  91. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  92. * ApplicationHost.cs: little fixes.
  93. 2002-08-20 Gonzalo Paniagua Javier <[email protected]>
  94. * ApplicationHost.cs: use Assembly instead of Module.
  95. 2002-08-05 Gonzalo Paniagua Javier <[email protected]>
  96. * AppDomainFactory.cs: implemented.
  97. * ApplicationHost.cs: implemented.
  98. * SimpleWorkerRequest.cs: a few little fixes and reformatted. It's now
  99. fully implemented.
  100. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  101. * AppDomainFactory.cs:
  102. * IAppDomainFactory.cs:
  103. * IISAPIRuntime.cs:
  104. * ISAPIRuntime.cs: make them compile.
  105. 2002-04-10 Patrik Torstensson <[email protected]>
  106. * ApplicationHost.cs: Test implementation to support testing.
  107. * SimpleWorkerRequest.cs: Rewrite and a almost full implementation.
  108. 2001-08-30 Bob Smith <[email protected]>
  109. * AppDomainFactory.cs: Stubbed.
  110. * ApplicationHost.cs: Stubbed.
  111. * IAppDomainFactory.cs: Stubbed.
  112. * IISAPIRuntime.cs: Stubbed.
  113. * ISAPIRuntime.cs: Implemented.
  114. * SimpleWorkerRequest.cs: Implemented.