Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Honor the -f flag on commit. (It was using -r in place of -f due to a typo, apparently.) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e0580dfeeea53a641c5ae575fae0b53c |
User & Date: | drh 2008-02-04 00:25:00.000 |
Context
2008-02-04
| ||
02:45 | Add file and directory browsing capabilities to the web interface. ... (check-in: e487b77b user: drh tags: trunk) | |
00:25 | Honor the -f flag on commit. (It was using -r in place of -f due to a typo, apparently.) ... (check-in: e0580dfe user: drh tags: trunk) | |
2008-02-03
| ||
22:12 | login_page() now honors the 'g' (goto) parameter after a successful password update ... (check-in: 44811a65 user: stephan tags: trunk) | |
Changes
Changes to src/checkin.c.
︙ | ︙ | |||
335 336 337 338 339 340 341 | Blob muuid; /* Manifest uuid */ Blob mcksum; /* Self-checksum on the manifest */ Blob cksum1, cksum2; /* Before and after commit checksums */ Blob cksum1b; /* Checksum recorded in the manifest */ noSign = find_option("nosign","",0)!=0; zComment = find_option("comment","m",1); | | | 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 | Blob muuid; /* Manifest uuid */ Blob mcksum; /* Self-checksum on the manifest */ Blob cksum1, cksum2; /* Before and after commit checksums */ Blob cksum1b; /* Checksum recorded in the manifest */ noSign = find_option("nosign","",0)!=0; zComment = find_option("comment","m",1); forceFlag = find_option("force", "f", 0)!=0; db_must_be_within_tree(); noSign = db_get_int("omitsign", 0)|noSign; verify_all_options(); /* ** Autosync if requested. */ |
︙ | ︙ |