ChangeLog 13 KB

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