Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Show the complete text of added and removed files on the "vdiff" webpage. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
c32a97e1b2669633b35a56eb2381a44c |
| User & Date: | drh 2012-10-12 13:21:28.262 |
Context
|
2012-10-13
| ||
| 14:19 | Add the --temp option to the "fossil extra" and "fossil clean" commands. ... (check-in: 3206b6485a user: drh tags: trunk) | |
|
2012-10-12
| ||
| 13:21 | Show the complete text of added and removed files on the "vdiff" webpage. ... (check-in: c32a97e1b2 user: drh tags: trunk) | |
|
2012-10-11
| ||
| 20:58 | Tweaks to the "fileages" user interface. ... (check-in: da2fe1be82 user: drh tags: trunk) | |
Changes
Changes to src/info.c.
| ︙ | ︙ | |||
965 966 967 968 969 970 971 |
}else if( pFileTo==0 ){
cmp = -1;
}else{
cmp = fossil_strcmp(pFileFrom->zName, pFileTo->zName);
}
if( cmp<0 ){
append_file_change_line(pFileFrom->zName,
| | | | 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 |
}else if( pFileTo==0 ){
cmp = -1;
}else{
cmp = fossil_strcmp(pFileFrom->zName, pFileTo->zName);
}
if( cmp<0 ){
append_file_change_line(pFileFrom->zName,
pFileFrom->zUuid, 0, 0, diffFlags, 0);
pFileFrom = manifest_file_next(pFrom, 0);
}else if( cmp>0 ){
append_file_change_line(pFileTo->zName,
0, pFileTo->zUuid, 0, diffFlags,
manifest_file_mperm(pFileTo));
pFileTo = manifest_file_next(pTo, 0);
}else if( fossil_strcmp(pFileFrom->zUuid, pFileTo->zUuid)==0 ){
/* No changes */
pFileFrom = manifest_file_next(pFrom, 0);
pFileTo = manifest_file_next(pTo, 0);
}else{
|
| ︙ | ︙ |