2
0

ChangeLog 7.7 KB

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