Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix minor typo in comment |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
6a6dae151d21848ad5564c0be9a6b9db |
User & Date: | andygoth 2016-11-05 14:55:30.708 |
Context
2016-11-05
| ||
14:59 | Demote the rss command to second-tier because it is infrequently used and falls in the saame general category as the server and cgi commands which are already second-tier ... (check-in: d623a0ad user: andygoth tags: trunk) | |
14:55 | Fix minor typo in comment ... (check-in: 6a6dae15 user: andygoth tags: trunk) | |
14:31 | Change help index command list from seven columns to six to better match the widths of the other lists presented on the page ... (check-in: 2f613574 user: andygoth tags: trunk) | |
Changes
Changes to src/mkindex.c.
︙ | ︙ | |||
200 201 202 203 204 205 206 | aEntry[nUsed].eType |= CMDFLAG_2ND_TIER; }else{ /* Otherwise, this is a first-tier command */ aEntry[nUsed].eType |= CMDFLAG_1ST_TIER; } } | | | 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 | aEntry[nUsed].eType |= CMDFLAG_2ND_TIER; }else{ /* Otherwise, this is a first-tier command */ aEntry[nUsed].eType |= CMDFLAG_1ST_TIER; } } /* Process additional flags that might follow the command name */ while( zLine[i+j]!=0 ){ i += j; while( fossil_isspace(zLine[i]) ){ i++; } if( zLine[i]==0 ) break; for(j=0; zLine[i+j] && !fossil_isspace(zLine[i+j]); j++){} if( j==8 && strncmp(&zLine[i], "1st-tier", j)==0 ){ aEntry[nUsed].eType &= ~(CMDFLAG_2ND_TIER|CMDFLAG_TEST); |
︙ | ︙ |