ChangeLog 16 KB

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