ChangeLog 12 KB

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