2
0

ChangeLog 12 KB

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