Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Merge documentation updates into trunk. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
6cf00533b2fafdd68907d2c22d49393e |
| User & Date: | drh 2011-09-13 18:36:56.270 |
Context
|
2011-09-13
| ||
| 18:45 | Add the "brief" query parameter to the "stat" page. check-in: d01ca14d08 user: drh tags: trunk | |
| 18:36 | Merge documentation updates into trunk. check-in: 6cf00533b2 user: drh tags: trunk | |
| 12:42 | online docco for [4fe2214116] (support for fossil info / descendants ?-R repo?) check-in: a336ff53d2 user: martin.weber tags: msw-docco | |
| 00:40 | Add support for the -R option on several command-line subcommands. check-in: 4fe2214116 user: drh tags: trunk | |
Changes
Changes to src/descendants.c.
| ︙ | ︙ | |||
262 263 264 265 266 267 268 | db_finalize(&ins); db_finalize(&q); } /* ** COMMAND: descendants ** | | > > > > | 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 |
db_finalize(&ins);
db_finalize(&q);
}
/*
** COMMAND: descendants
**
** Usage: %fossil descendants ?BASELINE-ID? ?OPTIONS?
**
** Find all leaf descendants of the baseline specified or if the argument
** is omitted, of the baseline currently checked out.
**
** Options:
**
** -R|--repository FILE Extract info from repository FILE
*/
void descendants_cmd(void){
Stmt q;
int base;
db_find_and_open_repository(0,0);
if( g.argc==2 ){
|
| ︙ | ︙ |
Changes to src/info.c.
| ︙ | ︙ | |||
119 120 121 122 123 124 125 | } } /* ** COMMAND: info ** | | > > > > | 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
}
}
/*
** COMMAND: info
**
** Usage: %fossil info ?VERSION | REPOSITORY_FILENAME? ?OPTIONS?
**
** With no arguments, provide information about the current tree.
** If an argument is specified, provide information about the object
** in the respository of the current tree that the argument refers
** to. Or if the argument is the name of a repository, show
** information about that repository.
**
** Use the "finfo" command to get information about a specific
** file in a checkout.
**
** Options:
**
** -R|--repository FILE Extract info from repository FILE
*/
void info_cmd(void){
i64 fsize;
if( g.argc==3 && (fsize = file_size(g.argv[2]))>0 && (fsize&0x1ff)==0 ){
db_open_config(0);
db_record_repository_filename(g.argv[2]);
db_open_repository(g.argv[2]);
|
| ︙ | ︙ |