ChangeLog 13 KB

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