ChangeLog 17 KB

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