Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix typos in comments and error messages. Ticket [d38c2c8795181] |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
c5f7ab040abc168f0d6598636a894771 |
| User & Date: | drh 2011-03-14 12:18:34.684 |
Context
|
2011-03-14
| ||
| 12:42 | Merge the path-refactor changes into trunk. Refactoring is not complete, but it appears to be stable. ... (check-in: e5121b4762 user: drh tags: trunk) | |
| 12:18 | Fix typos in comments and error messages. Ticket [d38c2c8795181] ... (check-in: c5f7ab040a user: drh tags: trunk) | |
| 12:16 | Put two blank pages at the end of a generated TAR file. Ticket [b767f47cdefef12]. ... (check-in: a5ebf2f5df user: drh tags: trunk) | |
Changes
Changes to src/report.c.
| ︙ | ︙ | |||
1115 1116 1117 1118 1119 1120 1121 |
}else{
db_prepare(&q,
"SELECT title, sqlcode, owner, cols FROM reportfmt WHERE title='%s'", zRep);
}
if( db_step(&q)!=SQLITE_ROW ){
db_finalize(&q);
rpt_list_reports();
| | | 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 |
}else{
db_prepare(&q,
"SELECT title, sqlcode, owner, cols FROM reportfmt WHERE title='%s'", zRep);
}
if( db_step(&q)!=SQLITE_ROW ){
db_finalize(&q);
rpt_list_reports();
fossil_fatal("unknown report format(%s)!",zRep);
}
zTitle = db_column_malloc(&q, 0);
zSql = db_column_malloc(&q, 1);
zOwner = db_column_malloc(&q, 2);
zClrKey = db_column_malloc(&q, 3);
db_finalize(&q);
}
|
| ︙ | ︙ |
Changes to src/stash.c.
| ︙ | ︙ | |||
331 332 333 334 335 336 337 | ** check-out. Then delete that stash. This is equivalent to ** doing an "apply" and a "drop" against the most recent stash. ** This command is undoable. ** ** fossil stash apply ?STASHID? ** ** Apply the identified stash to the current working check-out. | | | 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 | ** check-out. Then delete that stash. This is equivalent to ** doing an "apply" and a "drop" against the most recent stash. ** This command is undoable. ** ** fossil stash apply ?STASHID? ** ** Apply the identified stash to the current working check-out. ** If no STASHID is specified, use the most recent stash. Unlike ** the "pop" command, the stash is retained so that it can be used ** again. This command is undoable. ** ** fossil stash goto ?STASHID? ** ** Update to the baseline checkout for STASHID then apply the ** changes of STASHID. Keep STASHID so that it can be reused |
| ︙ | ︙ |
Changes to src/style.c.
| ︙ | ︙ | |||
622 623 624 625 626 627 628 |
@ color: black;
},
{ "span.ueditInheritAnonymous",
"color for capabilities, inherited by anonymous",
@ color: blue;
},
{ "span.capability",
| | | 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 |
@ color: black;
},
{ "span.ueditInheritAnonymous",
"color for capabilities, inherited by anonymous",
@ color: blue;
},
{ "span.capability",
"format for capabilities, mentioned on the user edit page",
@ font-weight: bold;
},
{ "span.usertype",
"format for different user types, mentioned on the user edit page",
@ font-weight: bold;
},
{ "span.usertype:before",
|
| ︙ | ︙ |
Changes to src/tkt.c.
| ︙ | ︙ | |||
850 851 852 853 854 855 856 | ** options can be: ** ?-l|--limit LIMITCHAR? ** ?-q|--quote? ** ?-R|--repository FILE? ** ** Run the ticket report, identified by the report format title ** used in the gui. The data is written as flat file on stdout, | | | 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 | ** options can be: ** ?-l|--limit LIMITCHAR? ** ?-q|--quote? ** ?-R|--repository FILE? ** ** Run the ticket report, identified by the report format title ** used in the gui. The data is written as flat file on stdout, ** using "," as separator. The separator "," can be changed using ** the -l or --limit option. ** If TICKETFILTER is given on the commandline, the query is ** limited with a new WHERE-condition. ** example: Report lists a column # with the uuid ** TICKETFILTER may be [#]='uuuuuuuuu' ** example: Report only lists rows with status not open ** TICKETFILTER: status != 'open' |
| ︙ | ︙ |