Fossil SCM
Improve the help message for the bloblist web page.
Commit
3e3bb5f71a61fa4881d5293b6923c26d8bc089df
Parent
ffa6b36d08b245a…
1 file changed
+5
-2
+5
-2
| --- src/name.c | ||
| +++ src/name.c | ||
| @@ -969,13 +969,16 @@ | ||
| 969 | 969 | } |
| 970 | 970 | |
| 971 | 971 | /* |
| 972 | 972 | ** WEBPAGE: bloblist |
| 973 | 973 | ** |
| 974 | -** Return a page showing all artifacts in the repository | |
| 974 | +** Return a page showing all artifacts in the repository. Query parameters: | |
| 975 | +** | |
| 976 | +** n=N Show N artifacts | |
| 977 | +** s=S Start with artifact number S | |
| 975 | 978 | */ |
| 976 | -void test_describe_artifacts_page(void){ | |
| 979 | +void bloblist_page(void){ | |
| 977 | 980 | Stmt q; |
| 978 | 981 | int s = atoi(PD("s","0")); |
| 979 | 982 | int n = atoi(PD("n","5000")); |
| 980 | 983 | int mx = db_int(0, "SELECT max(rid) FROM blob"); |
| 981 | 984 | char *zRange; |
| 982 | 985 |
| --- src/name.c | |
| +++ src/name.c | |
| @@ -969,13 +969,16 @@ | |
| 969 | } |
| 970 | |
| 971 | /* |
| 972 | ** WEBPAGE: bloblist |
| 973 | ** |
| 974 | ** Return a page showing all artifacts in the repository |
| 975 | */ |
| 976 | void test_describe_artifacts_page(void){ |
| 977 | Stmt q; |
| 978 | int s = atoi(PD("s","0")); |
| 979 | int n = atoi(PD("n","5000")); |
| 980 | int mx = db_int(0, "SELECT max(rid) FROM blob"); |
| 981 | char *zRange; |
| 982 |
| --- src/name.c | |
| +++ src/name.c | |
| @@ -969,13 +969,16 @@ | |
| 969 | } |
| 970 | |
| 971 | /* |
| 972 | ** WEBPAGE: bloblist |
| 973 | ** |
| 974 | ** Return a page showing all artifacts in the repository. Query parameters: |
| 975 | ** |
| 976 | ** n=N Show N artifacts |
| 977 | ** s=S Start with artifact number S |
| 978 | */ |
| 979 | void bloblist_page(void){ |
| 980 | Stmt q; |
| 981 | int s = atoi(PD("s","0")); |
| 982 | int n = atoi(PD("n","5000")); |
| 983 | int mx = db_int(0, "SELECT max(rid) FROM blob"); |
| 984 | char *zRange; |
| 985 |