Fossil SCM

Change the name of the "Detailed" mode on /timeline to "Verbose".

drh 2017-11-29 02:29 UTC sticky-timeline-style
Commit c0a3a90b28e05da8a0e35dea3e2c383b0b98a3905d9d3c337c97ebc65c7f5cd4
1 file changed +6 -6
+6 -6
--- src/timeline.c
+++ src/timeline.c
@@ -104,11 +104,11 @@
104104
#define TIMELINE_FRENAMES 0x0100 /* Detail only file name changes */
105105
#define TIMELINE_UNHIDE 0x0200 /* Unhide check-ins with "hidden" tag */
106106
#define TIMELINE_SHOWRID 0x0400 /* Show RID values in addition to UUIDs */
107107
#define TIMELINE_BISECT 0x0800 /* Show supplimental bisect information */
108108
#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 */
110110
#define TIMELINE_NORMAL 0x4000 /* Use the "normal" view style */
111111
#define TIMELINE_COLUMNAR 0x8000 /* Use the "columns view style */
112112
#endif
113113
114114
/*
@@ -267,12 +267,12 @@
267267
bCommentGitStyle = db_get_int("timeline-truncate-at-blank", 0);
268268
if( tmFlags & TIMELINE_COLUMNAR ){
269269
zStyle = "Columnar";
270270
}else if( tmFlags & TIMELINE_COMPACT ){
271271
zStyle = "Compact";
272
- }else if( tmFlags & TIMELINE_DETAILED ){
273
- zStyle = "Detailed";
272
+ }else if( tmFlags & TIMELINE_VERBOSE ){
273
+ zStyle = "Verbose";
274274
}else{
275275
zStyle = "Normal";
276276
}
277277
zDateFmt = P("datefmt");
278278
if( zDateFmt ) dateFormat = atoi(zDateFmt);
@@ -1560,11 +1560,11 @@
15601560
** rel Show related check-ins as well as those matching t=TAG
15611561
** mionly Limit rel to show ancestors but not descendants
15621562
** ms=MATCHSTYLE Set tag match style to EXACT, GLOB, LIKE, REGEXP
15631563
** u=USER Only show items associated with USER
15641564
** 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"
15661566
** ng No Graph.
15671567
** nd Do not highlight the focus check-in
15681568
** v Show details of files changed
15691569
** f=CHECKIN Show family (immediate parents and children) of CHECKIN
15701570
** from=CHECKIN Path from...
@@ -1643,11 +1643,11 @@
16431643
int disableY = 0; /* Disable type selector on submenu */
16441644
char cViewStyle; /* Overall style of the page */
16451645
static const char *azViewStyles[] = {
16461646
"n", "Normal",
16471647
"c", "Compact",
1648
- "d", "Detailed",
1648
+ "v", "Verbose",
16491649
"j", "Columnar",
16501650
};
16511651
16521652
/* Set number of rows to display */
16531653
cookie_parse(DISPLAY_SETTINGS_COOKIE);
@@ -1748,11 +1748,11 @@
17481748
zCirca = 0;
17491749
}
17501750
switch( cViewStyle ){
17511751
case 'n': tmFlags |= TIMELINE_NORMAL; break;
17521752
case 'c': tmFlags |= TIMELINE_COMPACT; break;
1753
- case 'd': tmFlags |= TIMELINE_DETAILED; break;
1753
+ case 'v': tmFlags |= TIMELINE_VERBOSE; break;
17541754
case 'j': tmFlags |= TIMELINE_COLUMNAR; break;
17551755
}
17561756
if( zType[0]=='a' ){
17571757
tmFlags |= TIMELINE_BRIEF | TIMELINE_GRAPH;
17581758
}else{
17591759
--- 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

Keyboard Shortcuts

Open search /
Next entry (timeline) j
Previous entry (timeline) k
Open focused entry Enter
Show this help ?
Toggle theme Top nav button