ChangeLog 11 KB

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