Fossil SCM
On the /timeline page with the r= or t= query parameters, change the header to report that it is showing only check-ins, since that is all it will show regardless.
Commit
31edaabf2b358ad74548804ce86343ec1d6554654e3081af8437bf83c2e090a9
Parent
1a857fe1fff49a8…
1 file changed
+2
+2
| --- src/timeline.c | ||
| +++ src/timeline.c | ||
| @@ -1583,19 +1583,21 @@ | ||
| 1583 | 1583 | cgi_delete_query_parameter("r"); |
| 1584 | 1584 | cgi_set_query_parameter("t", zBrName); |
| 1585 | 1585 | cgi_set_query_parameter("rel", "1"); |
| 1586 | 1586 | zTagName = zBrName; |
| 1587 | 1587 | related = 1; |
| 1588 | + zType = "ci"; | |
| 1588 | 1589 | } |
| 1589 | 1590 | |
| 1590 | 1591 | /* Ignore empty tag query strings. */ |
| 1591 | 1592 | if( zTagName && !*zTagName ){ |
| 1592 | 1593 | zTagName = 0; |
| 1593 | 1594 | } |
| 1594 | 1595 | |
| 1595 | 1596 | /* Finish preliminary processing of tag match queries. */ |
| 1596 | 1597 | if( zTagName ){ |
| 1598 | + zType = "ci"; | |
| 1597 | 1599 | /* Interpet the tag style string. */ |
| 1598 | 1600 | if( fossil_stricmp(zMatchStyle, "glob")==0 ){ |
| 1599 | 1601 | matchStyle = MS_GLOB; |
| 1600 | 1602 | }else if( fossil_stricmp(zMatchStyle, "like")==0 ){ |
| 1601 | 1603 | matchStyle = MS_LIKE; |
| 1602 | 1604 |
| --- src/timeline.c | |
| +++ src/timeline.c | |
| @@ -1583,19 +1583,21 @@ | |
| 1583 | cgi_delete_query_parameter("r"); |
| 1584 | cgi_set_query_parameter("t", zBrName); |
| 1585 | cgi_set_query_parameter("rel", "1"); |
| 1586 | zTagName = zBrName; |
| 1587 | related = 1; |
| 1588 | } |
| 1589 | |
| 1590 | /* Ignore empty tag query strings. */ |
| 1591 | if( zTagName && !*zTagName ){ |
| 1592 | zTagName = 0; |
| 1593 | } |
| 1594 | |
| 1595 | /* Finish preliminary processing of tag match queries. */ |
| 1596 | if( zTagName ){ |
| 1597 | /* Interpet the tag style string. */ |
| 1598 | if( fossil_stricmp(zMatchStyle, "glob")==0 ){ |
| 1599 | matchStyle = MS_GLOB; |
| 1600 | }else if( fossil_stricmp(zMatchStyle, "like")==0 ){ |
| 1601 | matchStyle = MS_LIKE; |
| 1602 |
| --- src/timeline.c | |
| +++ src/timeline.c | |
| @@ -1583,19 +1583,21 @@ | |
| 1583 | cgi_delete_query_parameter("r"); |
| 1584 | cgi_set_query_parameter("t", zBrName); |
| 1585 | cgi_set_query_parameter("rel", "1"); |
| 1586 | zTagName = zBrName; |
| 1587 | related = 1; |
| 1588 | zType = "ci"; |
| 1589 | } |
| 1590 | |
| 1591 | /* Ignore empty tag query strings. */ |
| 1592 | if( zTagName && !*zTagName ){ |
| 1593 | zTagName = 0; |
| 1594 | } |
| 1595 | |
| 1596 | /* Finish preliminary processing of tag match queries. */ |
| 1597 | if( zTagName ){ |
| 1598 | zType = "ci"; |
| 1599 | /* Interpet the tag style string. */ |
| 1600 | if( fossil_stricmp(zMatchStyle, "glob")==0 ){ |
| 1601 | matchStyle = MS_GLOB; |
| 1602 | }else if( fossil_stricmp(zMatchStyle, "like")==0 ){ |
| 1603 | matchStyle = MS_LIKE; |
| 1604 |