ChangeLog 14 KB

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