Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Added some PDF notes. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d1c318440689ecacf3e2ed400f2a378f |
User & Date: | peter 2007-01-07 00:11:18.000 |
Context
2007-01-07
| ||
00:12 | Added Commit button check-in: 04650ebbd1 user: peter tags: trunk | |
00:11 | Added some PDF notes. check-in: d1c3184406 user: peter tags: trunk | |
00:09 | Fixed dir diff window check-in: 8cad3a42db user: peter tags: trunk | |
Changes
Changes to src/registry.tcl.
︙ | ︙ | |||
130 131 132 133 134 135 136 137 | } button $top.close -text "Close" -width 10 -command [list destroy $top] \ -default active pack $top.close -side bottom -pady 4 bind $top <Key-Return> [list destroy $top] bind $top <Key-Escape> [list destroy $top] } | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 | } button $top.close -text "Close" -width 10 -command [list destroy $top] \ -default active pack $top.close -side bottom -pady 4 bind $top <Key-Return> [list destroy $top] bind $top <Key-Escape> [list destroy $top] } # Some notes about how to get PDF info from registry. # Inended for future use when PDF printing is supported. if 0 { (diff) 4 % registry get HKEY_CLASSES_ROOT\\.pdf {} AcroExch.Document (diff) 5 % registry get HKEY_CLASSES_ROOT\\AcroExch.Document {} Adobe Acrobat 7.0 Document (diff) 13 % registry keys HKEY_CLASSES_ROOT\\.pdf\\OpenWithList AcroRd32.exe (diff) 13 % registry keys HKEY_CLASSES_ROOT\\.pdf\\OpenWithList AcroRd32.exe (diff) 16 % registry get HKEY_CLASSES_ROOT\\AcroExch.Document\\Shell\\Open\\Command {} "C:\Program Files\Adobe\Acrobat 7.0\Reader\AcroRd32.exe" "%1" (diff) 18 % registry get HKEY_CLASSES_ROOT\\AcroExch.Document\\CurVer {} AcroExch.Document.7 (diff) 19 % registry get HKEY_CLASSES_ROOT\\AcroExch.Document.7\\Shell\\Open\\Command {} "C:\Program Files\Adobe\Acrobat 7.0\Reader\AcroRd32.exe" "%1" (diff) 20 % registry get HKEY_CLASSES_ROOT\\AcroExch.Document.7\\Shell\\Print\\Command {} "C:\Program Files\Adobe\Acrobat 7.0\Reader\AcroRd32.exe" /p /h "%1" (fm2006.06-0704) 49 % auto_execok acroread /usr/bin/acroread } |