ChangeLog 8.6 KB

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