ChangeLog 6.8 KB

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