ChangeLog 5.9 KB

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