ChangeLog 15 KB

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