Fossil SCM
added some help docs + TODO
Commit
cf5bbd92a2f5f0585c118b20fdb2eeb6c160581e
Parent
decac09b7d246ca…
1 file changed
+6
-4
+6
-4
| --- src/wiki.c | ||
| +++ src/wiki.c | ||
| @@ -612,17 +612,19 @@ | ||
| 612 | 612 | ** Sends the latest version of the WikiName wiki |
| 613 | 613 | ** entry to stdout. |
| 614 | 614 | ** |
| 615 | 615 | ** %fossil wiki list |
| 616 | 616 | ** |
| 617 | -** Lists all wiki entries, one per line. | |
| 618 | -** | |
| 617 | +** Lists all wiki entries, one per line, ordered | |
| 618 | +** case-insentively by name. | |
| 619 | 619 | ** |
| 620 | 620 | ** TODOs: |
| 621 | 621 | ** |
| 622 | -** %fossil export WikiName ?UUID? ?-f outfile? | |
| 623 | -** %fossil commit WikiName ?-f infile? | |
| 622 | +** %fossil export ?UUID? ?-f outfile[=stdout]? WikiName | |
| 623 | +** %fossil delete ?-m MESSAGE? WikiName (can we have a commit message for a wiki page?) | |
| 624 | +** %fossil commit ?-f infile[=stdin]? WikiName | |
| 625 | +** Commit should create a new entry if one doesn't exist. | |
| 624 | 626 | */ |
| 625 | 627 | void wiki_cmd(void){ |
| 626 | 628 | int n; |
| 627 | 629 | db_find_and_open_repository(1); |
| 628 | 630 | if( g.argc<3 ){ |
| 629 | 631 |
| --- src/wiki.c | |
| +++ src/wiki.c | |
| @@ -612,17 +612,19 @@ | |
| 612 | ** Sends the latest version of the WikiName wiki |
| 613 | ** entry to stdout. |
| 614 | ** |
| 615 | ** %fossil wiki list |
| 616 | ** |
| 617 | ** Lists all wiki entries, one per line. |
| 618 | ** |
| 619 | ** |
| 620 | ** TODOs: |
| 621 | ** |
| 622 | ** %fossil export WikiName ?UUID? ?-f outfile? |
| 623 | ** %fossil commit WikiName ?-f infile? |
| 624 | */ |
| 625 | void wiki_cmd(void){ |
| 626 | int n; |
| 627 | db_find_and_open_repository(1); |
| 628 | if( g.argc<3 ){ |
| 629 |
| --- src/wiki.c | |
| +++ src/wiki.c | |
| @@ -612,17 +612,19 @@ | |
| 612 | ** Sends the latest version of the WikiName wiki |
| 613 | ** entry to stdout. |
| 614 | ** |
| 615 | ** %fossil wiki list |
| 616 | ** |
| 617 | ** Lists all wiki entries, one per line, ordered |
| 618 | ** case-insentively by name. |
| 619 | ** |
| 620 | ** TODOs: |
| 621 | ** |
| 622 | ** %fossil export ?UUID? ?-f outfile[=stdout]? WikiName |
| 623 | ** %fossil delete ?-m MESSAGE? WikiName (can we have a commit message for a wiki page?) |
| 624 | ** %fossil commit ?-f infile[=stdin]? WikiName |
| 625 | ** Commit should create a new entry if one doesn't exist. |
| 626 | */ |
| 627 | void wiki_cmd(void){ |
| 628 | int n; |
| 629 | db_find_and_open_repository(1); |
| 630 | if( g.argc<3 ){ |
| 631 |