ChangeLog 6.1 KB

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