ChangeLog 6.0 KB

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