ChangeLog 11 KB

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