ChangeLog 18 KB

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