ChangeLog 10 KB

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