Fossil SCM
Change the name of the "Detailed" mode on /timeline to "Verbose".
Commit
c0a3a90b28e05da8a0e35dea3e2c383b0b98a3905d9d3c337c97ebc65c7f5cd4
Parent
92af2148fbfce50…
1 file changed
+6
-6
+6
-6
| --- src/timeline.c | ||
| +++ src/timeline.c | ||
| @@ -104,11 +104,11 @@ | ||
| 104 | 104 | #define TIMELINE_FRENAMES 0x0100 /* Detail only file name changes */ |
| 105 | 105 | #define TIMELINE_UNHIDE 0x0200 /* Unhide check-ins with "hidden" tag */ |
| 106 | 106 | #define TIMELINE_SHOWRID 0x0400 /* Show RID values in addition to UUIDs */ |
| 107 | 107 | #define TIMELINE_BISECT 0x0800 /* Show supplimental bisect information */ |
| 108 | 108 | #define TIMELINE_COMPACT 0x1000 /* Use the "compact" view style */ |
| 109 | -#define TIMELINE_DETAILED 0x2000 /* Use the "detailed" view style */ | |
| 109 | +#define TIMELINE_VERBOSE 0x2000 /* Use the "detailed" view style */ | |
| 110 | 110 | #define TIMELINE_NORMAL 0x4000 /* Use the "normal" view style */ |
| 111 | 111 | #define TIMELINE_COLUMNAR 0x8000 /* Use the "columns view style */ |
| 112 | 112 | #endif |
| 113 | 113 | |
| 114 | 114 | /* |
| @@ -267,12 +267,12 @@ | ||
| 267 | 267 | bCommentGitStyle = db_get_int("timeline-truncate-at-blank", 0); |
| 268 | 268 | if( tmFlags & TIMELINE_COLUMNAR ){ |
| 269 | 269 | zStyle = "Columnar"; |
| 270 | 270 | }else if( tmFlags & TIMELINE_COMPACT ){ |
| 271 | 271 | zStyle = "Compact"; |
| 272 | - }else if( tmFlags & TIMELINE_DETAILED ){ | |
| 273 | - zStyle = "Detailed"; | |
| 272 | + }else if( tmFlags & TIMELINE_VERBOSE ){ | |
| 273 | + zStyle = "Verbose"; | |
| 274 | 274 | }else{ |
| 275 | 275 | zStyle = "Normal"; |
| 276 | 276 | } |
| 277 | 277 | zDateFmt = P("datefmt"); |
| 278 | 278 | if( zDateFmt ) dateFormat = atoi(zDateFmt); |
| @@ -1560,11 +1560,11 @@ | ||
| 1560 | 1560 | ** rel Show related check-ins as well as those matching t=TAG |
| 1561 | 1561 | ** mionly Limit rel to show ancestors but not descendants |
| 1562 | 1562 | ** ms=MATCHSTYLE Set tag match style to EXACT, GLOB, LIKE, REGEXP |
| 1563 | 1563 | ** u=USER Only show items associated with USER |
| 1564 | 1564 | ** y=TYPE 'ci', 'w', 't', 'e', or 'all'. |
| 1565 | -** ss=VIEWSTYLE c: "compact" d: "detail" n: "normal" j: "columnar" | |
| 1565 | +** ss=VIEWSTYLE c: "compact" v: "verbose" n: "normal" j: "columnar" | |
| 1566 | 1566 | ** ng No Graph. |
| 1567 | 1567 | ** nd Do not highlight the focus check-in |
| 1568 | 1568 | ** v Show details of files changed |
| 1569 | 1569 | ** f=CHECKIN Show family (immediate parents and children) of CHECKIN |
| 1570 | 1570 | ** from=CHECKIN Path from... |
| @@ -1643,11 +1643,11 @@ | ||
| 1643 | 1643 | int disableY = 0; /* Disable type selector on submenu */ |
| 1644 | 1644 | char cViewStyle; /* Overall style of the page */ |
| 1645 | 1645 | static const char *azViewStyles[] = { |
| 1646 | 1646 | "n", "Normal", |
| 1647 | 1647 | "c", "Compact", |
| 1648 | - "d", "Detailed", | |
| 1648 | + "v", "Verbose", | |
| 1649 | 1649 | "j", "Columnar", |
| 1650 | 1650 | }; |
| 1651 | 1651 | |
| 1652 | 1652 | /* Set number of rows to display */ |
| 1653 | 1653 | cookie_parse(DISPLAY_SETTINGS_COOKIE); |
| @@ -1748,11 +1748,11 @@ | ||
| 1748 | 1748 | zCirca = 0; |
| 1749 | 1749 | } |
| 1750 | 1750 | switch( cViewStyle ){ |
| 1751 | 1751 | case 'n': tmFlags |= TIMELINE_NORMAL; break; |
| 1752 | 1752 | case 'c': tmFlags |= TIMELINE_COMPACT; break; |
| 1753 | - case 'd': tmFlags |= TIMELINE_DETAILED; break; | |
| 1753 | + case 'v': tmFlags |= TIMELINE_VERBOSE; break; | |
| 1754 | 1754 | case 'j': tmFlags |= TIMELINE_COLUMNAR; break; |
| 1755 | 1755 | } |
| 1756 | 1756 | if( zType[0]=='a' ){ |
| 1757 | 1757 | tmFlags |= TIMELINE_BRIEF | TIMELINE_GRAPH; |
| 1758 | 1758 | }else{ |
| 1759 | 1759 |
| --- src/timeline.c | |
| +++ src/timeline.c | |
| @@ -104,11 +104,11 @@ | |
| 104 | #define TIMELINE_FRENAMES 0x0100 /* Detail only file name changes */ |
| 105 | #define TIMELINE_UNHIDE 0x0200 /* Unhide check-ins with "hidden" tag */ |
| 106 | #define TIMELINE_SHOWRID 0x0400 /* Show RID values in addition to UUIDs */ |
| 107 | #define TIMELINE_BISECT 0x0800 /* Show supplimental bisect information */ |
| 108 | #define TIMELINE_COMPACT 0x1000 /* Use the "compact" view style */ |
| 109 | #define TIMELINE_DETAILED 0x2000 /* Use the "detailed" view style */ |
| 110 | #define TIMELINE_NORMAL 0x4000 /* Use the "normal" view style */ |
| 111 | #define TIMELINE_COLUMNAR 0x8000 /* Use the "columns view style */ |
| 112 | #endif |
| 113 | |
| 114 | /* |
| @@ -267,12 +267,12 @@ | |
| 267 | bCommentGitStyle = db_get_int("timeline-truncate-at-blank", 0); |
| 268 | if( tmFlags & TIMELINE_COLUMNAR ){ |
| 269 | zStyle = "Columnar"; |
| 270 | }else if( tmFlags & TIMELINE_COMPACT ){ |
| 271 | zStyle = "Compact"; |
| 272 | }else if( tmFlags & TIMELINE_DETAILED ){ |
| 273 | zStyle = "Detailed"; |
| 274 | }else{ |
| 275 | zStyle = "Normal"; |
| 276 | } |
| 277 | zDateFmt = P("datefmt"); |
| 278 | if( zDateFmt ) dateFormat = atoi(zDateFmt); |
| @@ -1560,11 +1560,11 @@ | |
| 1560 | ** rel Show related check-ins as well as those matching t=TAG |
| 1561 | ** mionly Limit rel to show ancestors but not descendants |
| 1562 | ** ms=MATCHSTYLE Set tag match style to EXACT, GLOB, LIKE, REGEXP |
| 1563 | ** u=USER Only show items associated with USER |
| 1564 | ** y=TYPE 'ci', 'w', 't', 'e', or 'all'. |
| 1565 | ** ss=VIEWSTYLE c: "compact" d: "detail" n: "normal" j: "columnar" |
| 1566 | ** ng No Graph. |
| 1567 | ** nd Do not highlight the focus check-in |
| 1568 | ** v Show details of files changed |
| 1569 | ** f=CHECKIN Show family (immediate parents and children) of CHECKIN |
| 1570 | ** from=CHECKIN Path from... |
| @@ -1643,11 +1643,11 @@ | |
| 1643 | int disableY = 0; /* Disable type selector on submenu */ |
| 1644 | char cViewStyle; /* Overall style of the page */ |
| 1645 | static const char *azViewStyles[] = { |
| 1646 | "n", "Normal", |
| 1647 | "c", "Compact", |
| 1648 | "d", "Detailed", |
| 1649 | "j", "Columnar", |
| 1650 | }; |
| 1651 | |
| 1652 | /* Set number of rows to display */ |
| 1653 | cookie_parse(DISPLAY_SETTINGS_COOKIE); |
| @@ -1748,11 +1748,11 @@ | |
| 1748 | zCirca = 0; |
| 1749 | } |
| 1750 | switch( cViewStyle ){ |
| 1751 | case 'n': tmFlags |= TIMELINE_NORMAL; break; |
| 1752 | case 'c': tmFlags |= TIMELINE_COMPACT; break; |
| 1753 | case 'd': tmFlags |= TIMELINE_DETAILED; break; |
| 1754 | case 'j': tmFlags |= TIMELINE_COLUMNAR; break; |
| 1755 | } |
| 1756 | if( zType[0]=='a' ){ |
| 1757 | tmFlags |= TIMELINE_BRIEF | TIMELINE_GRAPH; |
| 1758 | }else{ |
| 1759 |
| --- src/timeline.c | |
| +++ src/timeline.c | |
| @@ -104,11 +104,11 @@ | |
| 104 | #define TIMELINE_FRENAMES 0x0100 /* Detail only file name changes */ |
| 105 | #define TIMELINE_UNHIDE 0x0200 /* Unhide check-ins with "hidden" tag */ |
| 106 | #define TIMELINE_SHOWRID 0x0400 /* Show RID values in addition to UUIDs */ |
| 107 | #define TIMELINE_BISECT 0x0800 /* Show supplimental bisect information */ |
| 108 | #define TIMELINE_COMPACT 0x1000 /* Use the "compact" view style */ |
| 109 | #define TIMELINE_VERBOSE 0x2000 /* Use the "detailed" view style */ |
| 110 | #define TIMELINE_NORMAL 0x4000 /* Use the "normal" view style */ |
| 111 | #define TIMELINE_COLUMNAR 0x8000 /* Use the "columns view style */ |
| 112 | #endif |
| 113 | |
| 114 | /* |
| @@ -267,12 +267,12 @@ | |
| 267 | bCommentGitStyle = db_get_int("timeline-truncate-at-blank", 0); |
| 268 | if( tmFlags & TIMELINE_COLUMNAR ){ |
| 269 | zStyle = "Columnar"; |
| 270 | }else if( tmFlags & TIMELINE_COMPACT ){ |
| 271 | zStyle = "Compact"; |
| 272 | }else if( tmFlags & TIMELINE_VERBOSE ){ |
| 273 | zStyle = "Verbose"; |
| 274 | }else{ |
| 275 | zStyle = "Normal"; |
| 276 | } |
| 277 | zDateFmt = P("datefmt"); |
| 278 | if( zDateFmt ) dateFormat = atoi(zDateFmt); |
| @@ -1560,11 +1560,11 @@ | |
| 1560 | ** rel Show related check-ins as well as those matching t=TAG |
| 1561 | ** mionly Limit rel to show ancestors but not descendants |
| 1562 | ** ms=MATCHSTYLE Set tag match style to EXACT, GLOB, LIKE, REGEXP |
| 1563 | ** u=USER Only show items associated with USER |
| 1564 | ** y=TYPE 'ci', 'w', 't', 'e', or 'all'. |
| 1565 | ** ss=VIEWSTYLE c: "compact" v: "verbose" n: "normal" j: "columnar" |
| 1566 | ** ng No Graph. |
| 1567 | ** nd Do not highlight the focus check-in |
| 1568 | ** v Show details of files changed |
| 1569 | ** f=CHECKIN Show family (immediate parents and children) of CHECKIN |
| 1570 | ** from=CHECKIN Path from... |
| @@ -1643,11 +1643,11 @@ | |
| 1643 | int disableY = 0; /* Disable type selector on submenu */ |
| 1644 | char cViewStyle; /* Overall style of the page */ |
| 1645 | static const char *azViewStyles[] = { |
| 1646 | "n", "Normal", |
| 1647 | "c", "Compact", |
| 1648 | "v", "Verbose", |
| 1649 | "j", "Columnar", |
| 1650 | }; |
| 1651 | |
| 1652 | /* Set number of rows to display */ |
| 1653 | cookie_parse(DISPLAY_SETTINGS_COOKIE); |
| @@ -1748,11 +1748,11 @@ | |
| 1748 | zCirca = 0; |
| 1749 | } |
| 1750 | switch( cViewStyle ){ |
| 1751 | case 'n': tmFlags |= TIMELINE_NORMAL; break; |
| 1752 | case 'c': tmFlags |= TIMELINE_COMPACT; break; |
| 1753 | case 'v': tmFlags |= TIMELINE_VERBOSE; break; |
| 1754 | case 'j': tmFlags |= TIMELINE_COLUMNAR; break; |
| 1755 | } |
| 1756 | if( zType[0]=='a' ){ |
| 1757 | tmFlags |= TIMELINE_BRIEF | TIMELINE_GRAPH; |
| 1758 | }else{ |
| 1759 |