ChangeLog 7.6 KB

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