Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Use backward compatible call to pdf4tcl |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c881805f12691db9718cd75b81f98570 |
User & Date: | peter 2016-08-21 22:38:14.406 |
Context
2016-08-30
| ||
21:31 | Bumped revision to 2.7.3 check-in: d7010dfc72 user: peter tags: trunk | |
2016-08-21
| ||
22:38 | Use backward compatible call to pdf4tcl check-in: c881805f12 user: peter tags: trunk | |
21:17 | Correct font in table view. check-in: 912173d603 user: peter tags: trunk | |
Changes
Changes to src/eskil.tcl.
︙ | ︙ | |||
1280 1281 1282 1283 1284 1285 1286 | lappend ::eskil($top,cleanup) "rev" } elseif {$::eskil($top,mode) eq "conflict"} { prepareConflict $top lappend ::eskil($top,cleanup) "conflict" } # Prepare Separator set ::eskil($top,separator) \ | | | 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 | lappend ::eskil($top,cleanup) "rev" } elseif {$::eskil($top,mode) eq "conflict"} { prepareConflict $top lappend ::eskil($top,cleanup) "conflict" } # Prepare Separator set ::eskil($top,separator) \ [subst -nocommands -novariables $::eskil($top,separatorview)] # Autodetect separator before any plugin processing if {$::eskil($top,view) eq "table" && $::eskil($top,separator) eq ""} { set ch1 [open $::eskil($top,leftFile)] gets $ch1 line1 close $ch1 # Any tab, comma or semicolon? if {[regsub -all "\t" $line1 "\t" _] >= 2} { |
︙ | ︙ |
Changes to src/printobj.tcl.
︙ | ︙ | |||
50 51 52 53 54 55 56 | variable ox2 variable oy variable page constructor {args} { set tmp(-file) $options(-file) catch {array set tmp $args} | | | 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | variable ox2 variable oy variable page constructor {args} { set tmp(-file) $options(-file) catch {array set tmp $args} install pdf using pdf4tcl::new %AUTO% -compress 1 \ -landscape 1 -paper a4 -margin 15mm -file $tmp(-file) $self configurelist $args $self StartPrint } destructor { catch {$pdf destroy} } |
︙ | ︙ |