Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Support -noempty from DiffUtil. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ab1da68c44d5d9eda6dcf3f594a68c39 |
User & Date: | peter.spjuth@gmail.com 2010-06-23 20:33:56.000 |
Context
2010-11-07
| ||
20:19 | Autodetect line endings in conflict file. Allow line ending selection in merge save. [FR 5160] Added menu bar to merge window. check-in: a2cdf2901b user: peter.spjuth@gmail.com tags: trunk | |
2010-06-23
| ||
20:34 | Trying out to use tablelist instead of ttk::treeview for dir diff. check-in: 17bdab9a27 user: peter.spjuth@gmail.com tags: table-list | |
20:33 | Support -noempty from DiffUtil. check-in: ab1da68c44 user: peter.spjuth@gmail.com tags: trunk | |
20:31 | Get DiffUtil from new location. check-in: fab6204614 user: peter.spjuth@gmail.com tags: trunk | |
Changes
Changes to Changes.
1 2 3 4 5 6 7 | 2010-04-27 Added command line options to control PDF options. [FR 5008] 2010-04-27 Removed support for Postscript output. 2010-04-27 | > > > | 1 2 3 4 5 6 7 8 9 10 | 2010-06-23 Support -noempty from DiffUtil, to try it out. 2010-04-27 Added command line options to control PDF options. [FR 5008] 2010-04-27 Removed support for Postscript output. 2010-04-27 |
︙ | ︙ |
Changes to src/eskil.tcl.
︙ | ︙ | |||
724 725 726 727 728 729 730 731 732 733 734 735 736 737 | set ::diff($top,rightLabel) $file set ::diff($top,leftLabel) $file set ::diff($top,leftOK) 0 # Turn off ignore set ::Pref(ignore) " " set ::Pref(nocase) 0 } # Read a conflict file and extract the two versions. proc prepareConflict {top} { global Pref disallowEdit $top | > | 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 | set ::diff($top,rightLabel) $file set ::diff($top,leftLabel) $file set ::diff($top,leftOK) 0 # Turn off ignore set ::Pref(ignore) " " set ::Pref(nocase) 0 set ::Pref(noempty) 0 } # Read a conflict file and extract the two versions. proc prepareConflict {top} { global Pref disallowEdit $top |
︙ | ︙ | |||
1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 | } else { wm title $top "Eskil: $tail2 vs $tail1" } # Run diff and parse the result. set opts $Pref(ignore) if {$Pref(nocase)} {lappend opts -nocase} if {[info exists ::diff($top,aligns)] && \ [llength $::diff($top,aligns)] > 0} { lappend opts -align $::diff($top,aligns) } set range {} if {[info exists ::diff($top,range)] && \ [llength $::diff($top,range)] == 4} { | > | 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 | } else { wm title $top "Eskil: $tail2 vs $tail1" } # Run diff and parse the result. set opts $Pref(ignore) if {$Pref(nocase)} {lappend opts -nocase} if {$Pref(noempty)} {lappend opts -noempty} if {[info exists ::diff($top,aligns)] && \ [llength $::diff($top,aligns)] > 0} { lappend opts -align $::diff($top,aligns) } set range {} if {[info exists ::diff($top,range)] && \ [llength $::diff($top,range)] == 4} { |
︙ | ︙ | |||
1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 | proc openPatch {top} { global Pref if {[doOpenLeft $top]} { set ::diff($top,mode) "patch" set Pref(ignore) " " set Pref(nocase) 0 set ::diff($top,patchFile) $::diff($top,leftFile) doDiff $top } } proc openRev {top} { if {[doOpenRight $top]} { | > | 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 | proc openPatch {top} { global Pref if {[doOpenLeft $top]} { set ::diff($top,mode) "patch" set Pref(ignore) " " set Pref(nocase) 0 set Pref(noempty) 0 set ::diff($top,patchFile) $::diff($top,leftFile) doDiff $top } } proc openRev {top} { if {[doOpenRight $top]} { |
︙ | ︙ | |||
2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 | $top.m.mo.i add radiobutton -label "Space changes (-b)" \ -variable Pref(ignore) -value "-b" $top.m.mo.i add radiobutton -label "All spaces (-w)" \ -variable Pref(ignore) -value "-w" $top.m.mo.i add separator $top.m.mo.i add checkbutton -label "Case (-i)" \ -variable Pref(nocase) $top.m.mo.i add checkbutton -label "Digits" \ -variable Pref(nodigit) menu $top.m.mo.p $top.m.mo.p add radiobutton -label "Nothing" -variable Pref(parse) -value 0 $top.m.mo.p add radiobutton -label "Lines" -variable Pref(parse) -value 1 $top.m.mo.p add radiobutton -label "Blocks (small)" -variable Pref(parse) \ | > > | 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 | $top.m.mo.i add radiobutton -label "Space changes (-b)" \ -variable Pref(ignore) -value "-b" $top.m.mo.i add radiobutton -label "All spaces (-w)" \ -variable Pref(ignore) -value "-w" $top.m.mo.i add separator $top.m.mo.i add checkbutton -label "Case (-i)" \ -variable Pref(nocase) $top.m.mo.i add checkbutton -label "Empty" \ -variable Pref(noempty) $top.m.mo.i add checkbutton -label "Digits" \ -variable Pref(nodigit) menu $top.m.mo.p $top.m.mo.p add radiobutton -label "Nothing" -variable Pref(parse) -value 0 $top.m.mo.p add radiobutton -label "Lines" -variable Pref(parse) -value 1 $top.m.mo.p add radiobutton -label "Blocks (small)" -variable Pref(parse) \ |
︙ | ︙ | |||
3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 | set Pref(ignore) "-b" } elseif {$arg eq "-noignore"} { set Pref(ignore) " " } elseif {$arg eq "-i"} { set Pref(nocase) 1 } elseif {$arg eq "-nocase"} { set Pref(nocase) 1 } elseif {$arg eq "-nodigit"} { set Pref(nodigit) 1 } elseif {$arg eq "-nokeyword"} { set Pref(dir,ignorekey) 1 } elseif {$arg eq "-prefix"} { set nextArg prefix } elseif {$arg eq "-preprocess"} { | > > | 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 | set Pref(ignore) "-b" } elseif {$arg eq "-noignore"} { set Pref(ignore) " " } elseif {$arg eq "-i"} { set Pref(nocase) 1 } elseif {$arg eq "-nocase"} { set Pref(nocase) 1 } elseif {$arg eq "-noempty"} { set Pref(noempty) 1 } elseif {$arg eq "-nodigit"} { set Pref(nodigit) 1 } elseif {$arg eq "-nokeyword"} { set Pref(dir,ignorekey) 1 } elseif {$arg eq "-prefix"} { set nextArg prefix } elseif {$arg eq "-preprocess"} { |
︙ | ︙ | |||
3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 | global Pref set Pref(fontsize) 8 # Maybe change to TkFixedFont in 8.5 ? set Pref(fontfamily) Courier set Pref(ignore) "-b" set Pref(nocase) 0 set Pref(nodigit) 0 set Pref(parse) 2 set Pref(lineparsewords) 0 set Pref(colorequal) "" set Pref(colorchange) red set Pref(colornew1) darkgreen set Pref(colornew2) blue | > | 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 | global Pref set Pref(fontsize) 8 # Maybe change to TkFixedFont in 8.5 ? set Pref(fontfamily) Courier set Pref(ignore) "-b" set Pref(nocase) 0 set Pref(noempty) 0 set Pref(nodigit) 0 set Pref(parse) 2 set Pref(lineparsewords) 0 set Pref(colorequal) "" set Pref(colorchange) red set Pref(colornew1) darkgreen set Pref(colornew2) blue |
︙ | ︙ |