2
0

ChangeLog 9.4 KB

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