Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
35 check-ins using file src/db.c version e7df87c2a8
|
2025-03-07
| ||
| 17:52 | Improvements to the title on the /help webpage. check-in: e28cc7373a user: drh tags: trunk | |
| 16:30 | The codecheck1 utility makes a distinction between routines that need to generate HTML-free content and routines that generate content that is safe for any generic HTTP reply. Closed-Leaf check-in: cd9086c266 user: drh tags: enhanced-defenses | |
| 15:56 | Enhance codecheck1.c to detect cases where style_header() is called with arguments that are not easily proven to be HTML-free. Fix multiple calls to style_header() to prove they are always HTML-free. check-in: 2da41072ff user: drh tags: enhanced-defenses | |
|
2025-03-06
| ||
| 17:57 | Add the optional "min" query parameter to /timeline for use with from= and to=, to omit changes of nodes along the same branch for brevity, and to just show the branching changes. check-in: ef80526267 user: drh tags: min-from-to | |
| 14:35 | Simplify www_print_timeline() so that it uses branch_of_rid() rather than computing the branch name for itself. check-in: 0150eda979 user: drh tags: trunk | |
| 11:01 | Work around issues with aggressive caching of pikchr.wasm that were making it difficult to upgrade. (1) On the /built-in page, allow filenames to have text of the form -vNNNNNNNN before the file suffix, where N is an arbitrary digit and there are at least 8 of them. The extra -vNNNNNNNN is removed before looking up the file. (2) When running "make wasm" modify the generated scripts to add random -vNNNNNNNN values to key filenames, so that browsers won't try to use the old names still in cache. check-in: dd20f34950 user: drh tags: trunk | |
| 07:49 | Latest upstream sqlite3 shell.c, primarily to squelch warnings on cygwin. check-in: 4d34e18c21 user: stephan tags: trunk | |
|
2025-03-05
| ||
| 21:43 | Further tweaks to the markdown style formatting in wiki. check-in: 1029539757 user: drh tags: comment-markdown-links | |
| 21:19 | Get Markdown italic and bold working in wiki. check-in: 079615cb7a user: drh tags: comment-markdown-links | |
| 20:52 | Fix minor issues with markdown rendering in wiki. check-in: 4be82a52a5 user: drh tags: comment-markdown-links | |
| 20:16 | Provide the ability to control markdown styling and markdown hyperlinks for check-in cmments separately and independently. check-in: 34f36bc211 user: drh tags: comment-markdown-links | |
| 15:52 | Update the Environment Variables and Global Options document and the Change Log to reflect current development. (Plus an unrelated formatting fix in the first document.) check-in: 007fd18d69 user: florian tags: trunk | |
| 13:19 | Automatically randomize the names of the "pikchr.js" and "pikchr.wasm" files after "make wasm", to force browser cache reloads. Closed-Leaf check-in: 369cb38315 user: drh tags: wasm-cache-workaround | |
| 12:15 | Allow 8 *or more* digits in the "-v00000000" string that can be added to builtin filenames. check-in: 81af7db0a3 user: drh tags: wasm-cache-workaround | |
| 12:11 | Update pikchr to the latest check-in. check-in: 95b8022b0c user: drh tags: wasm-cache-workaround | |
| 06:25 | Render the pikchr version in the /pikchrshow footer/toolbar. Update to latest upstream pikchr.c to work around an Emscripten issue when trying to export inlined functions (pikchr_version()). Rebuild pikchr wasm pieces with emscripten 4.0.4 (latest as of this writing). check-in: f3227f8f1a user: stephan tags: wasm-cache-workaround | |
| 05:34 | wasm: add MAKEFILE_LIST as a dep of pikchr.js so that it gets rebuilt after makemake.tcl is run. Add stackAllock to EXPORTED_RUNTIME_METHODS for the sake of some emcc versions. check-in: 89e41f250b user: stephan tags: wasm-cache-workaround | |
| 00:40 | Update to the latest pikchr.c. If then the "pikchr.wasm" filename in the generated extsrc/pikchr.js file is changes to something like "pikchr-v12345678.wasm" and if the "pikchr.js" filename in extsrc/pikchr-worker.js is change similarly, and if the cache is disabled in the browser, then the new version of pikchr loads immediately and without hassle. check-in: cebd126de3 user: drh tags: wasm-cache-workaround | |
|
2025-03-04
| ||
| 18:42 | Adjust the /builtin page such that if a filename contains "-v12345689" as part of its name right before a ".", where the digits can vary, then that part of the name is ignored. We can thus give semi-random names to built-in resources (ex: extsrc/pikchr-v12345678.wasm) to defeat aggressive browser caches. This is experimental. check-in: a9f4bbb09f user: drh tags: wasm-cache-workaround | |
| 14:50 | Implement `...` verbatim sections for the WIKI_MARKDOWN_SPAN option. check-in: c903885574 user: drh tags: comment-markdown-links | |
| 14:01 | Implement backslash-escapes in WIKI_MARKDOWN_SPAN mode. Add the --tokenize option to the test-wiki-render command. check-in: 6f9e299244 user: drh tags: comment-markdown-links | |
| 12:21 | Add the timeline-markdown-span setting that controls whether or not markdown span markup will be interpreted in check-in comments. Add auto-links. Support for emphasis and code marks is pending. check-in: 8f55b909c4 user: drh tags: comment-markdown-links | |
| 11:48 | Change the rendering option to WIKI_MARKDOWN_SPAN with the idea of eventually supporting all kinds of span-markdown, just not block-markdown. Add support for auto-links. check-in: f80b892178 user: drh tags: comment-markdown-links | |
| 10:58 | Restore the --comfmtflags and --comment-format global command-line options to prevent breaking legacy scripts that use them. But leave them undocumented and marked as deprecated. Omit the "comment.test" test file, since it no longer works after syntax improvements in the test-comment-format command and was not actually helping to make the product better. check-in: 6382e25428 user: drh tags: trunk | |
| 04:41 | Update the build notes about rebuilding pikchr.wasm to include an explicit rm of the js/wasm files beforehand, as they may otherwise not always be rebuilt. check-in: b7338a55af user: stephan tags: trunk | |
| 03:48 | Rebuild pikchr wasm/js. For reasons beyond my ken, the [c32f97e9e] build was rendering correctly (as per that fix) in legacy mode but not wasm mode. check-in: 316b0a689b user: stephan tags: trunk | |
| 00:39 | Proof-of-concept code that allows markdown-style hyperlinks to appear in check-in comments. Markdown-style hyperlinks are not allowed in ordinary text/x-fossil-wiki for backwards compatibility. This simply change reduces the need to provide full markdown support for check-in comments. check-in: e7bc33f080 user: drh tags: comment-markdown-links | |
|
2025-03-03
| ||
| 23:23 | Fix the printf() %W and %!W conversions so that they can both be used during the same Fossil run. check-in: adbb0b9255 user: drh tags: trunk | |
| 20:57 | Bug fix in pikchr. check-in: c32f97e9e4 user: drh tags: trunk | |
| 15:13 | Add the --text option to test-wiki-render and test-markdown-render. check-in: 3ea3cd5ca5 user: drh tags: trunk | |
| 14:25 | Rework the command-line arguments to the "fossil test-comment-format" command. check-in: 2b2bc057f6 user: drh tags: trunk | |
| 13:34 | Fix misspelled "--canonical" option on "fossil test-comment-format". check-in: 9813e6f85d user: drh tags: trunk | |
| 13:17 | Correct a CSS selector in skins/default/css.txt which was causing the LI elements of sub-lists to have the wrong display type. check-in: eb42f59fc0 user: stephan tags: trunk | |
| 12:39 | Update the change log to report on recent enhancements. check-in: 871b514651 user: drh tags: trunk | |
| 12:07 | Change the "legacy comment printing algorithm" to the "canonical comment printing algorithm". Omit the --comfmtflags and --comment-format global flags. Simplify the comment printing code. check-in: 35302d9e50 user: drh tags: trunk | |