http://nagoya.apache.org/bugzilla/show_bug.cgi?id=392
*** shadow/392 Thu Feb 1 07:21:55 2001
--- shadow/392.tmp.20179 Tue Feb 6 06:50:07 2001
***************
*** 2,9 ****
| copy task does a s/\r/\n/ when filtering is on BugRat Report#686 |
+----------------------------------------------------------------------------+
| Bug #: 392 Product: Ant |
! | Status: NEW Version: 1.2 |
! | Resolution: Platform: All |
| Severity: Normal OS/Version: All |
| Priority: High Component: Core tasks |
+----------------------------------------------------------------------------+
--- 2,9 ----
| copy task does a s/\r/\n/ when filtering is on BugRat Report#686 |
+----------------------------------------------------------------------------+
| Bug #: 392 Product: Ant |
! | Status: RESOLVED Version: 1.2 |
! | Resolution: WONTFIX Platform: All |
| Severity: Normal OS/Version: All |
| Priority: High Component: Core tasks |
+----------------------------------------------------------------------------+
***************
*** 28,31 ****
with the filter on, the file is text, not binary. The straight copy
operation does a byte for byte copy using streams. The filter copy uses
buffered readers and writers, reading and writing individual lines, appending
! the current platform's newline as it goes.
--- 28,37 ----
with the filter on, the file is text, not binary. The straight copy
operation does a byte for byte copy using streams. The filter copy uses
buffered readers and writers, reading and writing individual lines, appending
! the current platform's newline as it goes.
!
! ------- Additional Comments From glennm@apache.org 2001-02-06 06:50 -------
! The filtering capability of the copy and move tasks was never intended to
! be used with binary files. A change to the documentation that reflects this
! position should be sufficient, with a workaround of copying the binary files
! in a separate pass. The 1.3 release documentation will reflect this.
|