ChangeLog 15 KB

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