Overview
| Comment: | Also give the callback the bare file name |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
ed3da129b8a9ed77b8212ad6a147bec9 |
| User & Date: | rkeene on 2019-09-20 16:11:52.772 |
| Other Links: | manifest | tags |
Context
|
2019-09-20
| ||
| 16:18 | Support adding additional output files from callbacks check-in: d8e00cd4a3 user: rkeene tags: trunk | |
| 16:11 | Also give the callback the bare file name check-in: ed3da129b8 user: rkeene tags: trunk | |
| 16:10 | Added support for user-defined file name remapping and exclusion check-in: 0e8537c65f user: rkeene tags: trunk | |
Changes
Modified lib/xvfs/xvfs.tcl
from [335b9042ac]
to [d7189b3c0d].
| ︙ | ︙ | |||
162 163 164 165 166 167 168 |
continue
}
set inputFile [file join $workingDirectory $file]
set outputFile [file join $outputDirectory [encoding convertto utf-8 $file]]
if {[info command ::xvfs::callback::setOutputFileName] ne ""} {
| | | 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 |
continue
}
set inputFile [file join $workingDirectory $file]
set outputFile [file join $outputDirectory [encoding convertto utf-8 $file]]
if {[info command ::xvfs::callback::setOutputFileName] ne ""} {
set outputFile [::xvfs::callback::setOutputFileName $file $workingDirectory $inputFile $outputDirectory $outputFile]
if {$outputFile eq ""} {
continue
}
}
unset -nocomplain fileInfo
catch {
|
| ︙ | ︙ |