ChangeLog 10 KB

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