ChangeLog 12 KB

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