ChangeLog 5.8 KB

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