Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Typo |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
e5b412df1200335428e78f21b8a75ff6 |
User & Date: | peter 2021-02-28 23:39:06.850 |
Context
2021-02-28
| ||
23:46 | Bumped revision to 2.8.5 check-in: 7d500c2e30 user: peter tags: trunk | |
23:39 | Typo check-in: e5b412df12 user: peter tags: trunk | |
15:37 | Log View support for Fossil check-in: b9f391ecdb user: peter tags: trunk | |
Changes
Changes to eskil.vfs/lib/psballoon/pkgIndex.tcl.
1 2 3 4 5 6 7 8 9 10 | # Tcl package index file, version 1.1 # This file is generated by the "pkg_mkIndex" command # and sourced either when an application starts up or # by a "package unknown" script. It invokes the # "package ifneeded" command to set up package-related # information so that packages will be loaded automatically # in response to "package require" commands. When this # script is sourced, the variable $dir must contain the # full path name of this file's directory. | | | 1 2 3 4 5 6 7 8 9 10 11 | # Tcl package index file, version 1.1 # This file is generated by the "pkg_mkIndex" command # and sourced either when an application starts up or # by a "package unknown" script. It invokes the # "package ifneeded" command to set up package-related # information so that packages will be loaded automatically # in response to "package require" commands. When this # script is sourced, the variable $dir must contain the # full path name of this file's directory. package ifneeded psballoon 1.2 [list source [file join $dir psballoon.tcl]] |
Changes to plugins/pdf.tcl.
︙ | ︙ | |||
60 61 62 63 64 65 66 | return 1 } if {[catch {llength $opts(-pdftotext)}]} { puts $cho "PDF plugin needs -pdftotext parameter to be a list" return 1 } # Pass options from -plugininfo as well. | | | 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | return 1 } if {[catch {llength $opts(-pdftotext)}]} { puts $cho "PDF plugin needs -pdftotext parameter to be a list" return 1 } # Pass options from -plugininfo as well. set options [concat $::Info $opts(-pdftotext)] foreach opt {-marginl -marginr -margint -marginb} { if {$opts($opt) ne ""} { lappend options $opt $opts($opt) } } # Use source file with pdftotext since stdin is not reliable on e.g Windows if {[catch {exec $cand {*}$options $::File($side) - >&@ $cho}]} { |
︙ | ︙ |