ChangeLog 8.4 KB

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