ChangeLog 5.2 KB

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