ChangeLog 7.4 KB

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