Differences From Artifact [26aad606fb]:
- File src/unversioned.c — part of check-in [7675987551] at 2025-04-16 16:22:13 on branch trunk — Add the --editor option to "fossil commit" and "fossil uv edit". (user: drh size: 25013) [more...]
To Artifact [01f8fbab04]:
- File src/unversioned.c — part of check-in [7991defa6f] at 2025-07-27 11:58:50 on branch trunk — When unversioned content is saved, add an entry to the admin log. (user: stephan size: 25111) [more...]
| ︙ | |||
145 146 147 148 149 150 151 152 153 154 155 156 157 158 | 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | + + |
db_bind_int(&ins, ":encoding", 1);
db_bind_blob(&ins, ":content", &compressed);
}else{
db_bind_int(&ins, ":encoding", 0);
db_bind_blob(&ins, ":content", pContent);
}
db_step(&ins);
admin_log("Wrote unversioned file \"%w\" with hash %!S",
zUVFile, blob_str(&hash));
blob_reset(&compressed);
blob_reset(&hash);
db_finalize(&ins);
db_unset("uv-hash", 0);
}
|
| ︙ |