ChangeLog 9.7 KB

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