ChangeLog 9.2 KB

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