Fossil SCM
Do not attempt to verify phantoms. Set the default max message size at 500K instead of 1MB. Updates to the todo list.
Commit
71ed18cc4b891c43cc0230e6cbc81f910144d622
Parent
9df32e280830dec…
3 files changed
+1
-1
+1
-1
-7
+1
-1
| --- src/content.c | ||
| +++ src/content.c | ||
| @@ -311,15 +311,15 @@ | ||
| 311 | 311 | db_exec(&s1); |
| 312 | 312 | db_exec(&s2); |
| 313 | 313 | db_end_transaction(0); |
| 314 | 314 | db_finalize(&s1); |
| 315 | 315 | db_finalize(&s2); |
| 316 | + verify_before_commit(rid); | |
| 316 | 317 | } |
| 317 | 318 | blob_reset(&src); |
| 318 | 319 | blob_reset(&data); |
| 319 | 320 | blob_reset(&delta); |
| 320 | - verify_before_commit(rid); | |
| 321 | 321 | } |
| 322 | 322 | |
| 323 | 323 | /* |
| 324 | 324 | ** COMMAND: test-content-deltify |
| 325 | 325 | ** |
| 326 | 326 |
| --- src/content.c | |
| +++ src/content.c | |
| @@ -311,15 +311,15 @@ | |
| 311 | db_exec(&s1); |
| 312 | db_exec(&s2); |
| 313 | db_end_transaction(0); |
| 314 | db_finalize(&s1); |
| 315 | db_finalize(&s2); |
| 316 | } |
| 317 | blob_reset(&src); |
| 318 | blob_reset(&data); |
| 319 | blob_reset(&delta); |
| 320 | verify_before_commit(rid); |
| 321 | } |
| 322 | |
| 323 | /* |
| 324 | ** COMMAND: test-content-deltify |
| 325 | ** |
| 326 |
| --- src/content.c | |
| +++ src/content.c | |
| @@ -311,15 +311,15 @@ | |
| 311 | db_exec(&s1); |
| 312 | db_exec(&s2); |
| 313 | db_end_transaction(0); |
| 314 | db_finalize(&s1); |
| 315 | db_finalize(&s2); |
| 316 | verify_before_commit(rid); |
| 317 | } |
| 318 | blob_reset(&src); |
| 319 | blob_reset(&data); |
| 320 | blob_reset(&delta); |
| 321 | } |
| 322 | |
| 323 | /* |
| 324 | ** COMMAND: test-content-deltify |
| 325 | ** |
| 326 |
+1
-1
| --- src/xfer.c | ||
| +++ src/xfer.c | ||
| @@ -132,11 +132,11 @@ | ||
| 132 | 132 | */ |
| 133 | 133 | static int send_all_pending(Blob *pOut){ |
| 134 | 134 | int iRidSent = 0; |
| 135 | 135 | int sent = 0; |
| 136 | 136 | int nSent = 0; |
| 137 | - int maxSize = db_get_int("http-msg-size", 1000000); | |
| 137 | + int maxSize = db_get_int("http-msg-size", 500000); | |
| 138 | 138 | Stmt q; |
| 139 | 139 | #if 0 |
| 140 | 140 | db_multi_exec( |
| 141 | 141 | "CREATE TEMP TABLE priority(rid INTEGER PRIMARY KEY);" |
| 142 | 142 | "INSERT INTO priority" |
| 143 | 143 |
| --- src/xfer.c | |
| +++ src/xfer.c | |
| @@ -132,11 +132,11 @@ | |
| 132 | */ |
| 133 | static int send_all_pending(Blob *pOut){ |
| 134 | int iRidSent = 0; |
| 135 | int sent = 0; |
| 136 | int nSent = 0; |
| 137 | int maxSize = db_get_int("http-msg-size", 1000000); |
| 138 | Stmt q; |
| 139 | #if 0 |
| 140 | db_multi_exec( |
| 141 | "CREATE TEMP TABLE priority(rid INTEGER PRIMARY KEY);" |
| 142 | "INSERT INTO priority" |
| 143 |
| --- src/xfer.c | |
| +++ src/xfer.c | |
| @@ -132,11 +132,11 @@ | |
| 132 | */ |
| 133 | static int send_all_pending(Blob *pOut){ |
| 134 | int iRidSent = 0; |
| 135 | int sent = 0; |
| 136 | int nSent = 0; |
| 137 | int maxSize = db_get_int("http-msg-size", 500000); |
| 138 | Stmt q; |
| 139 | #if 0 |
| 140 | db_multi_exec( |
| 141 | "CREATE TEMP TABLE priority(rid INTEGER PRIMARY KEY);" |
| 142 | "INSERT INTO priority" |
| 143 |
M
todo.txt
-7
| --- todo.txt | ||
| +++ todo.txt | ||
| @@ -1,14 +1,7 @@ | ||
| 1 | 1 | Things to work on: |
| 2 | 2 | |
| 3 | - * Bug: The timeline is visible in sqlitert even though anonymous | |
| 4 | - access is turned off. The timeline menu item should be omitted | |
| 5 | - and the timeline page should be disallowed if the user does not | |
| 6 | - have the right access permissions. Feel free to add new access | |
| 7 | - permissions (view timeline permission?) if this seems like something | |
| 8 | - appropriate to do. | |
| 9 | - | |
| 10 | 3 | * Use the wiki_convert() routine to render comments and other text |
| 11 | 4 | on web pages. |
| 12 | 5 | |
| 13 | 6 | * If the server does not have write permission on the database |
| 14 | 7 | file, or on the directory containing the database file (and |
| 15 | 8 |
| --- todo.txt | |
| +++ todo.txt | |
| @@ -1,14 +1,7 @@ | |
| 1 | Things to work on: |
| 2 | |
| 3 | * Bug: The timeline is visible in sqlitert even though anonymous |
| 4 | access is turned off. The timeline menu item should be omitted |
| 5 | and the timeline page should be disallowed if the user does not |
| 6 | have the right access permissions. Feel free to add new access |
| 7 | permissions (view timeline permission?) if this seems like something |
| 8 | appropriate to do. |
| 9 | |
| 10 | * Use the wiki_convert() routine to render comments and other text |
| 11 | on web pages. |
| 12 | |
| 13 | * If the server does not have write permission on the database |
| 14 | file, or on the directory containing the database file (and |
| 15 |
| --- todo.txt | |
| +++ todo.txt | |
| @@ -1,14 +1,7 @@ | |
| 1 | Things to work on: |
| 2 | |
| 3 | * Use the wiki_convert() routine to render comments and other text |
| 4 | on web pages. |
| 5 | |
| 6 | * If the server does not have write permission on the database |
| 7 | file, or on the directory containing the database file (and |
| 8 |