ChangeLog 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. 2007-03-18 Marek Habersack <[email protected]>
  2. * UrlUtils.cs: GetDirectory always returns a path with trailing
  3. slash.
  4. 2007-03-16 Marek Habersack <[email protected]>
  5. * UrlUtils.cs: make sure the trailing slash is present.
  6. 2007-03-05 Marek Habersack <[email protected]>
  7. * UrlUtils.cs: Make sure GetDirectory returns a directory with the
  8. trailing slash.
  9. 2007-01-30 Adar Wesley <[email protected]>
  10. * UrlUtils.cs: fixed GetFile to throw right exception
  11. 2007-01-20 Miguel de Icaza <[email protected]>
  12. * FileUtils.cs (CreateTemporaryFile): Remove unused variable.
  13. 2006-11-26 Igor Zelmanovich <[email protected]>
  14. * StrUtils.cs: added new helper method EscapeQuotesAndBackslashes
  15. 2006-11-13 Marek Habersack <[email protected]>
  16. * FileUtils.cs: Added a utility class for temporary file creation
  17. (and possibly other future common file operations)
  18. 2006-03-15 Vladimir Krasnov <[email protected]>
  19. * DataSourceResolver.cs: corrected exceptions type in
  20. ResolveDataSource
  21. 2006-02-01 Chris Toshok <[email protected]>
  22. * WebEncoding.cs: CONFIGURATION_2_0 => NET_2_0, and use GetSection
  23. instead of GetWebApplicationSection.
  24. 2006-01-31 Gonzalo Paniagua Javier <[email protected]>
  25. * UrlUtils.cs: more than one consecutive slash are turned into one.
  26. 2006-01-26 Chris Toshok <[email protected]>
  27. * WebEncoding.cs: rework this so we cache the section, and so we
  28. swallow exceptions based on a broken configuration.
  29. 2006-01-09 Konstantin Triger <[email protected]>
  30. AltSerialization.cs: under TARGET_JVM: merging /main/4
  31. 2005-11-28 Chris Toshok <[email protected]>
  32. * WebEncoding.cs (FileEncoding, ResponseEncoding,
  33. RequestEncoding): CONFIGURATION_2_0 work.
  34. 2005-09-22 Gonzalo Paniagua Javier <[email protected]>
  35. * UrlUtils.cs: fix GetFile to work with '/blah'.
  36. 2005-09-11 Sebastien Pouliot <[email protected]>
  37. * IWebObjectFactory.cs: New. 2.0 interface.
  38. * IWebPropertyAccessor.cs: New. 2.0 interface.
  39. * Transactions.cs: Added [Link|Inheritance]Demand for Minimal.
  40. * WorkItem.cs: Added [Link|Inheritance]Demand for Minimal. Added
  41. Demand for UnmanagedCode on the static Post method,
  42. 2005-08-28 Gonzalo Paniagua Javier <[email protected]>
  43. * UrlUtils.cs: removed 2 unused methods. IsRelativeUrl returns false if
  44. there's a colon in the string, assuming it's the beginning of the ://
  45. after the schema.
  46. 2005-07-15 Ben Maurer <[email protected]>
  47. * DataSourceHelper.cs: Obsolete
  48. * DataSourceResolver.cs: Moved from DataSourceHelper.
  49. 2005-07-14 Ben Maurer <[email protected]>
  50. * DataSourceHelper.cs: Helper method used for data binding.
  51. 2005-06-26 Gonzalo Paniagua Javier <[email protected]>
  52. * UrlUtils.cs: (Combine) if the base path is "~", expand it.
  53. 2005-06-26 Gonzalo Paniagua Javier <[email protected]>
  54. * StrUtils.cs: new string utilities.
  55. 2005-05-09 Ben Maurer <[email protected]>
  56. * UrlUtils.cs (Reduce): a more efficient impl that avoids an
  57. arraylist, making an arraylist into an array, and a replace
  58. operation.
  59. 2004-11-30 Gonzalo Paniagua Javier <[email protected]>
  60. * UrlUtils.cs: made (Insert|Get|Remove)SessionId use the appRoot +
  61. SessionID + vpath format.
  62. 2004-07-20 Gonzalo Paniagua Javier <[email protected]>
  63. * UrlUtils.cs: don't pass double slash when the path begins with a
  64. tilde. Fixes bug #61654.
  65. 2004-05-26 Gonzalo Paniagua Javier <[email protected]>
  66. * UrlUtils.cs:
  67. (GetFile): not public, and fixed to really return just the file name.
  68. (InsertSessionId): ensure that the directory ends with a "/". This
  69. fixes cookieless sessions.
  70. (RemoveSessionId): don't return "/" twice.
  71. Fixed bug #59051.
  72. 2004-05-14 Gonzalo Paniagua Javier <[email protected]>
  73. * UrlUtils.cs: respect trailing slashes. Fixes bug #56802.
  74. 2004-05-14 Gonzalo Paniagua Javier <[email protected]>
  75. * UrlUtils.cs: no more ^Ms.
  76. 2004-04-24 Gonzalo Paniagua Javier <[email protected]>
  77. * UrlUtils.cs: MakeRelative was returning null for virtual paths without
  78. directory.
  79. 2004-04-22 Gonzalo Paniagua Javier <[email protected]>
  80. * FileAction.cs:
  81. * FileChangeEventHandler.cs:
  82. * FileChangedEventArgs.cs:
  83. * FileChangesMonitor.cs:
  84. * FilePathParser.cs: removed unused/obsolete files.
  85. 2004-04-19 Gonzalo Paniagua Javier <[email protected]>
  86. * UrlUtils.cs: fixed MakeRelative. nGallery goes one step further.
  87. 2004-03-19 Gonzalo Paniagua Javier <[email protected]>
  88. * UrlUtils.cs: small fix from George Kodinov for Combine when ~ is used.
  89. 2004-02-18 Gonzalo Paniagua Javier <[email protected]>
  90. * UrlUtils.cs: ~ is not always /. Fixed.
  91. 2004-02-17 Gonzalo Paniagua Javier <[email protected]>
  92. * UrlUtils.cs:
  93. (Combine): handle subdirectories and tilde. Fixes bug 54231.
  94. 2004-02-01 Alon Gazit <[email protected]>
  95. * UrlUtils.cs: little fix in GetDirectory ().
  96. 2004-01-11 Andreas Nahr <[email protected]>
  97. * TransactedCallback.cs:
  98. * WorkItemCallback.cs:
  99. * WorkItem.cs:
  100. * Transactions.cs: Added and stubbed/ implemented
  101. 2004-01-11 Andreas Nahr <[email protected]>
  102. * WebEqualComparer.cs:
  103. * WebHashCodeProvider.cs:
  104. * FileAction.cs:
  105. * FileChangeEventHandler.cs:
  106. * NativeFileChangeEventHandler.cs: Monostyled header, internalized
  107. 2004-01-09 Gonzalo Paniagua Javier <[email protected]>
  108. * UrlUtils.cs: make reduce not to throw an exception for '../'. Fixes
  109. bug #52599.
  110. 2003-12-03 Jackson Harper <[email protected]>
  111. * UrlUtils.cs: Some methods for working with session ids in urls.
  112. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  113. * WebEncoding.cs: use the Default encoding when the globalization
  114. configuration is not available.
  115. 2003-12-01 Gonzalo Paniagua Javier <[email protected]>
  116. * UrlUtils.cs: don't forget basePath when relative path is not rooted.
  117. Fixes bug #51522.
  118. 2003-11-27 Gonzalo Paniagua Javier <[email protected]>
  119. * UrlUtils.cs: fix bug introduced with last change that makes relative
  120. paths fail. Closes bug #51448.
  121. 2003-11-27 Gonzalo Paniagua Javier <[email protected]>
  122. * UrlUtils.cs: fixed Combine() handling of ~.
  123. 2003-11-25 Jackson Harper <[email protected]>
  124. * AltSerialization.cs: Utility methods for optimized serializing.
  125. 2003-11-13 Jackson Harper <[email protected]>
  126. * TimeUtil.cs: Utility methods for dealing with time.
  127. 2003-11-08 Ben Maurer <[email protected]>
  128. * UrlUtils.cs: new function to do the app mapping, but make
  129. it return a physical path.
  130. 2003-11-07 Ben Maurer <[email protected]>
  131. * UrlUtils.cs: add a new function for mapping app absolute
  132. paths to virual paths (ie, ~/blah/ to /application/root/blah/)
  133. 2003-11-05 Gonzalo Paniagua Javier <[email protected]>
  134. * WebEncoding.cs: added properties to access configuration files
  135. encoding.
  136. 2003-08-29 Gonzalo Paniagua Javier <[email protected]>
  137. * ICalls.cs: holds a couple of icalls.
  138. 2003-08-27 Gonzalo Paniagua Javier <[email protected]>
  139. * UrlUtils.cs: made Reduce work when a "/" is passed.
  140. 2003-05-14 Gonzalo Paniagua Javier <[email protected]>
  141. * UrlUtils.cs: fixed Combine and reworked Reduce.
  142. 2003-03-18 Gonzalo Paniagua Javier <[email protected]>
  143. * UrlUtils.cs: another little fix in Combine ().
  144. 2003-01-29 Gonzalo Paniagua Javier <[email protected]>
  145. * UrlUtils.cs: fixed Combine ().
  146. 2002-12-20 Gonzalo Paniagua Javier <[email protected]>
  147. * UrlUtils.cs: fixed IsRelativeUrl and IsRootUrl.
  148. 2002-12-18 Gonzalo Paniagua Javier <[email protected]>
  149. * PathUtil.cs: removed.
  150. * UrlUtils.cs: fixed Combine to handle '~'.
  151. 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
  152. * PathUtil.cs: some path handling methods that are not available in
  153. System.IO.Path.
  154. 2002-10-28 Gaurav Vaish <[email protected]>
  155. * DataSourceHelper.cs : Fresh implementation. Moved from
  156. System.Web.UI.WebControls.DataGrid
  157. ::ResolveData(object, string).
  158. 2002-10-27 Gonzalo Paniagua Javier <[email protected]>
  159. * WebTrace.cs: fixed namespace.
  160. * WebEncoding.cs: new class that holds the default encoding for
  161. System.Web.
  162. 2002-01-03 Nick Drochak <[email protected]>
  163. * FileChangesMonitor.cs: remove redundant using statement; use int
  164. for MAXLEN; capitalize correctly 'WebHashCodeProvider';
  165. fix typo rsLock -> rwLock; Change IsRooted to IsPathRooted;
  166. set out parameter value where needed
  167. * FilePathParser.cs: qualify method GetPathRoot() with 'Path.'
  168. * IISVersionInfo.cs: initialize static member to avoid compile error.
  169. * WebEqualComparer.cs: static member defC shouldn't be readonly;
  170. the string comparer had some typos (fixed)
  171. * WebHashCodeProvider.cs: needed System.Globalization; static member
  172. defHcp shouldn't be readonly; remove double equal typo.
  173. 2002-01-02 Nick Drochak <[email protected]>
  174. * FileAction.cs: Use 0x7FFFFFFF as enum value for error. 0xFFFFFFFF
  175. is too big for Int32.
  176. * FileChangeEventHandler.cs: put missing 'void' return type on delegate
  177. FileChangeEventHandler()
  178. * FileChangedEventArgs.cs: ditto for FileChangedEvent()
  179. * NativeFileChangeEventHandler.cs: ditto for NativeFileChangeEventHandler()
  180. * FileChangesMonitor.cs: add needed namespaces and comment out imcomplete
  181. code.
  182. 2001-12-21 Gaurav Vaish <[email protected]>
  183. * ApacheVersionInfo.cs - Dummy class, for later use.
  184. * FileAction.cs:
  185. * FileChangeEventHandler.cs:
  186. * FileChangeEventArgs.cs:
  187. * FileChangesMonitor.cs:
  188. * NativeFileChangeEventHandler.cs
  189. - To be used in System.Web/Http* classes.
  190. Initially needed for HttpRuntime
  191. * IISVersionInfo.cs - Some useful methods
  192. 2001-12-17 Gaurav Vaish <[email protected]>
  193. * UrlUtils.cs - Added functions Combine and Reduce
  194. 2001-12-16 Miguel de Icaza <[email protected]>
  195. * DataSourceHelper.cs, UrlUtils.cs: Set the correct namespace.
  196. 2001-11-30
  197. Gaurav Vaish <[email protected]>
  198. * DataSourceHelper.cs - Resolving DataSource objects
  199. 2001-11-09
  200. Gaurav Vaish <[email protected]>
  201. * UrlUtil.cs - Some basic functions
  202. 2001-11-08
  203. Gaurav Vaish <[email protected]>
  204. * Namespace - Created the namespace for commonly used,
  205. otherwise not available functions