Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Change the name of "Events" to "Technotes" in the activity reports pages. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
12a3f81cb268c5f04773e4a8e1a93e46 |
| User & Date: | drh 2015-02-14 21:20:10.648 |
Context
|
2015-02-15
| ||
| 02:46 | Fix a typo in the technote documentation. ... (check-in: ceafbb0f5f user: drh tags: trunk) | |
|
2015-02-14
| ||
| 21:20 | Change the name of "Events" to "Technotes" in the activity reports pages. ... (check-in: 12a3f81cb2 user: drh tags: trunk) | |
| 20:55 | Documentation updates: Revise the change list. Continue migrating from the term "Event" over to "Technical Note". Update the wiki documentation to acknowledge the ability to use Markdown for the past two years. ... (check-in: de6a590a0f user: drh tags: trunk) | |
Changes
Changes to src/statrep.c.
| ︙ | ︙ | |||
127 128 129 130 131 132 133 |
*/
static const char *stats_report_label_for_type(){
assert( statsReportType && "Must call stats_report_init_view() first." );
switch( statsReportType ){
case 'c':
return "checkins";
case 'e':
| | | 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
*/
static const char *stats_report_label_for_type(){
assert( statsReportType && "Must call stats_report_init_view() first." );
switch( statsReportType ){
case 'c':
return "checkins";
case 'e':
return "technotes";
case 'w':
return "wiki changes";
case 't':
return "ticket changes";
case 'g':
return "tag changes";
default:
|
| ︙ | ︙ | |||
169 170 171 172 173 174 175 |
}
if('c' == statsReportType){
cgi_printf(" <strong>checkins</strong>", zTop);
}else{
cgi_printf(" <a href='%s&type=ci'>checkins</a>", zTop);
}
if('e' == statsReportType){
| | | | 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 |
}
if('c' == statsReportType){
cgi_printf(" <strong>checkins</strong>", zTop);
}else{
cgi_printf(" <a href='%s&type=ci'>checkins</a>", zTop);
}
if('e' == statsReportType){
cgi_printf(" <strong>technotes</strong>", zTop);
}else{
cgi_printf(" <a href='%s&type=e'>technotes</a>", zTop);
}
if( 't' == statsReportType ){
cgi_printf(" <strong>tickets</strong>", zTop);
}else{
cgi_printf(" <a href='%s&type=t'>tickets</a>", zTop);
}
if( 'g' == statsReportType ){
|
| ︙ | ︙ |