ChangeLog 13 KB

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