Fossil

Check-in [3e3bb5f71a]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Improve the help message for the bloblist web page.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 3e3bb5f71a61fa4881d5293b6923c26d8bc089df
User & Date: drh 2014-12-11 12:53:42.318
Context
2014-12-11
14:59
Add a link to the [http://fuelscm.org/] project on the Fossil homepage. Oops: Some other unrelated and experimental changes to the "search" command also got folded into this check-in check-in: 85f265625b user: drh tags: trunk
12:53
Improve the help message for the bloblist web page. check-in: 3e3bb5f71a user: drh tags: trunk
03:42
Avoid parsing error in browser for missing end of statement. check-in: ffa6b36d08 user: andybradford tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/name.c.
967
968
969
970
971
972
973
974



975
976
977
978
979
980
981
982
983
  zRange = mprintf("BETWEEN %d AND %d", iFrom, iFrom+iCnt-1);
  describe_artifacts_to_stdout(zRange, 0);
}

/*
** WEBPAGE: bloblist
**
** Return a page showing all artifacts in the repository



*/
void test_describe_artifacts_page(void){
  Stmt q;
  int s = atoi(PD("s","0"));
  int n = atoi(PD("n","5000"));
  int mx = db_int(0, "SELECT max(rid) FROM blob");
  char *zRange;

  login_check_credentials();







|
>
>
>

|







967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
  zRange = mprintf("BETWEEN %d AND %d", iFrom, iFrom+iCnt-1);
  describe_artifacts_to_stdout(zRange, 0);
}

/*
** WEBPAGE: bloblist
**
** Return a page showing all artifacts in the repository.  Query parameters:
**
**   n=N         Show N artifacts
**   s=S         Start with artifact number S
*/
void bloblist_page(void){
  Stmt q;
  int s = atoi(PD("s","0"));
  int n = atoi(PD("n","5000"));
  int mx = db_int(0, "SELECT max(rid) FROM blob");
  char *zRange;

  login_check_credentials();