Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
50 most recent check-ins
2023-12-02
| ||
18:30 | Use a new pragma requested only in the first clone cycle to track the rebuilt time on the remote server to be able to error out if the rids are rebuilt before resuming a clone. This is currently just a fossilized string but it could instead be a hash of the components to make it more like a "code". Requesting the pragma only at the beginning does not account for the possibility that a rebuild will happen after the clone begins. I find that scenario highly unlikely, but grant that it might be possible. If the remote server does not yet support the pragma the client falls back to using the remote server-code. ... (Leaf check-in: 7f116a437c user: andybradford tags: clone-resume) | |
2023-12-01
| ||
22:37 | Typo corrections in comments only. No change in functionality. ... (Leaf check-in: a8b6fdc83e user: andybradford tags: trunk) | |
21:22 | Just write the value the first time it is seen since there is no need to have the value during the sync (yet). ... (check-in: 15b166df9b user: andybradford tags: clone-resume) | |
21:14 | Prevent resuming a clone from a different server by preserving the remote server-code and comparing on resume. This is a crude heuristic to determine whether or not it is likely that the remote server still has the same rids. A better heuristic may be to probe the server for known rids that have been received (e.g. each clone seqno that is sent by the server could be recorded and then probed with a pragma request by the client later on). ... (check-in: aa54ea4116 user: andybradford tags: clone-resume) | |
20:31 | Prevent the resuming of a clone that does not have the product code. ... (check-in: 63af8da355 user: andybradford tags: clone-resume) | |
20:17 | Minor style change. ... (check-in: d82079546d user: andybradford tags: clone-resume) | |
20:12 | Skip all finalizing until the clone is complete. ... (check-in: 9fa25cd746 user: andybradford tags: clone-resume) | |
17:55 | Try to handle some error conditions better. First, if the clone's first sync didn't bring down any artifacts there isn't likely any point in continuing. Second, if on resuming a clone no artifacts were received, abort. Third, check if the project-code has changed earlier (this might be detected even earlier when the client receives the "push" card). ... (check-in: 17f3408f6b user: andybradford tags: clone-resume) | |
04:12 | Minor correction in comment. No change in functionality. ... (check-in: 4fdc41bd05 user: andybradford tags: clone-resume) | |
03:58 | Shorten warning message to fit in a terminal without wrapping. ... (check-in: 5bb6d26187 user: andybradford tags: clone-resume) | |
03:53 | Verify that the project-code on resume hasn't changed per discussion in [forum:d1a2ed56271602fa|forum post d1a2ed56271602fa] and rollback changes if they are different. ... (check-in: ee5b942080 user: andybradford tags: clone-resume) | |
2023-11-30
| ||
06:26 | Defer rebuilding the database until the clone is complete. This prevents a lot of unnecessary rebuilding while there aren't enough artifacts to make it worth it. ... (check-in: 333a89bf96 user: andybradford tags: clone-resume) | |
04:01 | Catch SIGINT during sync so that when pressing ctrl-c during a clone of a large repository it doesn't dispose of all the progress that was made during, thus enabling resume from an user interrupt. When the handler returns, the last sync will complete and then exit the loop. ... (check-in: ad2e148541 user: andybradford tags: clone-resume) | |
2023-11-29
| ||
04:32 | Merge in latest from trunk. ... (check-in: 5d12d42680 user: andybradford tags: clone-resume) | |
2023-11-28
| ||
22:05 | Tiny documentation fix: an extra space before argument to the '--base-rcvid' hook test option made the argument appear on the line describing the option. ... (check-in: cb283ca505 user: km tags: trunk) | |
19:31 | Use signed char for two json timeline functions that may return -1. ... (Leaf check-in: c42dee8634 user: preben tags: signed-chars) | |
14:58 | Fix sort order in json_page_finfo() on systems where char is unsigned. ... (check-in: fd288be356 user: preben tags: signed-chars) | |
2023-11-27
| ||
10:28 | Fix typos in unvers.wiki. ... (check-in: 22ee43db43 user: danield tags: trunk) | |
06:19 | Take advantage of the fact that the seqno is recorded and automatically resume up to three times if failure is encountered. ... (check-in: bc0a4c60c0 user: andybradford tags: clone-resume) | |
06:14 | Check for valid value from return of function. ... (check-in: 2f0aac8c01 user: andybradford tags: clone-resume) | |
2023-11-26
| ||
19:07 | Fix previous commit: Just fixing amend breaks subsequent tests. As tests should not need input, move the code to the test/tester.tcl. ... (Leaf check-in: 3b37f7d97b user: preben tags: test-fixes-2.24) | |
18:18 | The amend tests may fail on narrow terminals on systems where the terminal size can be determined when tclsh is running (for me, all but Windows). Closing stdin causes fossil not to wrap output. To avoid fossil complaining about file descriptor zero (which is now used on some systems), temproarily open the script readonly. ... (check-in: 1cb0d57db1 user: preben tags: test-fixes-2.24) | |
17:52 | Fix merge_renames-13-3 on macOs as the expected a filename under /tmp but the result was under the normalized /private/tmp directory. ... (check-in: f044437634 user: preben tags: test-fixes-2.24) | |
16:48 | Fix json tests that no longer reflects default capabilities for anonymous. ... (check-in: 9ba74ae04e user: preben tags: test-fixes-2.24) | |
2023-11-25
| ||
16:42 | Update [4f9cfebf18]: indent the verbatim merge conflict markers in the merge1.test script to avoid check-in warnings for this branch. ... (check-in: 3fc08b7633 user: florian tags: test-fixes-2.24) | |
15:56 | Remove description of unsupported option that was removed with [298ccff06c487d035a7] from "fossil all rebuild" command. No change in functionality. ... (check-in: 33fa915508 user: andybradford tags: trunk) | |
2023-11-24
| ||
23:51 | Do away with the --resume flag as it is mostly redundant and can be assumed by the presence of the recorded clone_seqno. Suggested by Warren Young in [forum:4bcbb41aab2538d4|forum post 4bcbb41aab2538d4]. ... (check-in: b0a60d8f1d user: andybradford tags: clone-resume) | |
22:14 | Need to reset the server-code so that the user password is correct. Might as well also reset the project-code. ... (check-in: 61e0ced9bf user: andybradford tags: clone-resume) | |
21:39 | Implement the ability to resume a clone that has failed. This is a variation on the attempt made in [ec26471439] that was never completed. The significant difference in the use of the "clone protocol" which uses cfile cards to complete the synchronization rather than the "sync protocol" which takes much longer using the file card. ... (check-in: ee710cc171 user: andybradford tags: clone-resume) | |
12:59 | Update the built-in SQLite to version 3.44.2. ... (check-in: 3f97785608 user: drh tags: trunk) | |
2023-11-22
| ||
20:22 | Update the built-in SQLite to version 3.44.1. ... (check-in: 2edeeee4a8 user: drh tags: trunk) | |
2023-11-20
| ||
19:16 | On the activity report page, make sure the graph bar with the expected changes for the current week/month is not displayed on a separate line. ... (check-in: 698dc59ec1 user: florian tags: trunk) | |
18:57 | Do not separate timeline entries by an empty line when using custom formatting strings. ... (check-in: 256983fdd5 user: danield tags: trunk) | |
17:07 | Add a button to review a list of hashes to shun. As discussed in [forum:1d54d9965c7e4c00], fossil may accept 40 byte abbreviated hashes from command output, when the intention is to shun the real 64 byte hash. ... (Leaf check-in: d5c8235cdc user: preben tags: shun-list-review) | |
2023-11-19
| ||
11:42 | Improved description on /timeline pages that make use of tl= or rl=. ... (check-in: e03200e545 user: drh tags: trunk) | |
2023-11-18
| ||
20:41 | Add new tl= and rl= query parameters to /timeline ... (check-in: 2288b74257 user: drh tags: trunk) | |
2023-11-17
| ||
18:05 | Update th1-tcl tests to reflect change from XML style closing hr/ tag to just hr in HTML from change [f5482a0a79]. ... (check-in: 1c637a4985 user: preben tags: test-fixes-2.24) | |
17:47 | Add script to rewrite test output for easier comparison of output from different runs. Invoked with tclsh, the script reads either a file argument or stdin and writes to stdout. ... (Leaf check-in: b3f89945a5 user: preben tags: testing-improvements) | |
17:44 | When testing, sort glob results for consistent test ordering across OSes. ... (check-in: 7fc504d100 user: preben tags: testing-improvements) | |
17:42 | In the symlinks test, this used to require allow-symlinks being set before testing. With the current temporary repositories, it is safe to enable allow-symlinks locally. ... (check-in: dc1836edb6 user: preben tags: testing-improvements) | |
17:41 | In the th1-docs test, the dirty checkout should be done in the fossil checkout, not the current directory (which the dirty_ckout variable reflects). ... (check-in: 62838cc7f2 user: preben tags: testing-improvements) | |
17:39 | In unversioned test, cloning with --save-http-password avoid password prompts on macOs, OpenBSD and Linux. ... (check-in: 85b3a60025 user: preben tags: testing-improvements) | |
17:37 | List skipped tests in the final summary. ... (check-in: c028f36de8 user: preben tags: testing-improvements) | |
17:36 | Switch out of temporary test repos to avoid require_no_open_checkout errors when using -keep. ... (check-in: 41f7e90c84 user: preben tags: testing-improvements) | |
17:31 | When testing, indicate that there was failures using exit code 1. ... (check-in: d92c23d700 user: preben tags: testing-improvements) | |
2023-11-16
| ||
21:27 | The symlinks tests are all concerned with files accessed through symlink traversal which has not been allowed for quite a while (I think [4d445ead] is the last change that enforced this). The test changes now check the reverse condition: traversing symlinks should not work. To carry out the tests, ensure allow-symlinks is set in the local repo. ... (check-in: d30cd07314 user: preben tags: test-fixes-2.24) | |
19:04 | Update transfer summaries in unversioned tests. Summaries changed in [2b8ac4d15b] and [0b7af9d865]. ... (check-in: b94d8c4479 user: preben tags: test-fixes-2.24) | |
12:23 | Honour global web-browser setting if running fossil ui with a path to a repository. ... (check-in: 200247bc62 user: preben tags: trunk) | |
12:16 | Add more information when user encounters an Unresolved RID condition. ... (Leaf check-in: c04e494d07 user: preben tags: unresolved-rid-explanation) | |
2023-11-15
| ||
12:26 | Add diff test cases for added/deleted files indicated by /dev/null. ... (Leaf check-in: 33174a3b5f user: preben tags: diff-deleted-files) | |