ChangeLog 7.7 KB

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