Fossil

Timeline
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

51 check-ins using file src/shell.c version 7906f4002d

2020-08-26
12:44
Merge in trunk (version-2.11.2) check-in: 4f5bda658f user: george tags: wiki-history
2020-08-20
13:24
Version 2.11.2 Leaf check-in: c58877d6f2 user: drh tags: release, branch-2.11, version-2.11.2
2020-06-08
19:48
Version 2.11.1 check-in: 307d94c549 user: drh tags: release, version-2.11.1, branch-2.11
19:47
Make the "fossil git export" command more restrictive about characters that it allows in tag names. check-in: e8c6cd2ced user: drh tags: branch-2.11
2020-05-30
16:15
Make two passes through list of local changes so all "one-line" entries are listed first. check-in: bc56945ea4 user: graham tags: ui-local-diff
2020-05-29
10:32
Remove an incorrect foreign key from the mlink table. Many of the other foreign keys are syntactically correct, but Fossil uses numeric 0 instead of NULL to mean "no reference", which is semantically wrong. We should try to fix that at some point, perhaps. Or enhance SQLite so that it is able to interpret 0 values on a FK reference to an INTEGER PRIMARY KEY as if it were a NULL, as an option. Maybe. check-in: 1f5af80047 user: drh tags: trunk
08:05
Move default_css.txt to default.css, treat it like a builtin file, and remove mkcss, as the recent style.css reorg obviates the need for mkcss. check-in: 0c19cd0a86 user: stephan tags: default.css
2020-05-28
21:39
Initial implementation to show "local (uncommitted) changes" in Fossil's UI. Not yet tested to destruction, but fails no more errors in the test-suite than trunk. Currently there are no links to the new page: manually navigate to "/local" (a variant of the "/ci" page). check-in: ccebe22576 user: graham tags: ui-local-diff
19:52
Merged uuid-to-hash branch down, causing all public interfaces except for those exceptions now documented in www/hashes.md to use something other than "UUID" to mean "artifact hash" or one of its more specific derivative terms. (e.g. Commit ID) check-in: 8ad5e46908 user: wyoung tags: trunk
19:47
Second-pass edit on www/hashes.md: more definite stances on things now that we have a ruling on the debate, and less flagellation all around. check-in: 3d808c4d0c user: wyoung tags: trunk
17:37
Updates to the doc/hashes.md document. check-in: 364307951c user: drh tags: trunk
17:21
The new blob_reserve() now triggers blob_panic() if asked to allocate more than blob_append_full() internally allows for (not quite 2GB), to avoid a corner case that blob_reserve() could be used to accidentally bypass that internal limit. check-in: e714b8427c user: stephan tags: trunk
15:46
Updates the email-sender TCL script so that it appends a "-f" argument to sendmail which is the "From:" email address. check-in: a52499fdc4 user: drh tags: trunk
14:58
Initial infrastructure for a command-line version of the security audit page. Leaf check-in: dba4c4f2c4 user: drh tags: audit-command
14:20
Enhance codecheck1.c to check recently added varargs functions. check-in: b17aba9e20 user: drh tags: trunk
13:44
Per forum discussion, moved the /fileedit ajax dispatching back down below the login check, but have it emit a JSON response if an ajax route was requested, else an HTML response. check-in: 62263b9cb0 user: stephan tags: trunk
13:27
fossil.fetch() now uses onreadystatechange instead of onload because the latter does not handle connection errors and timeouts. Added timeout option to fossil.fetch() with a default of 15s. Corrected non-closing of a failed transaction when fileedit/commit fails. check-in: 6849d9a557 user: stephan tags: trunk
12:16
Moved /fileedit permissions check below the ajax dispatching check, as ajax bootstrapping performs that check itself, along with a CSRF check for write-mode requests, and emits a JSON-format response (as opposed to HTML) if it fails. check-in: 13e26db403 user: stephan tags: trunk
12:05
Add a notification that online file editing is enabled to the security audit. check-in: a80861de03 user: drh tags: trunk
12:02
Removed fileedit-glob from the list of syncable config options. It must be explicitly set on each repo where it is desired. check-in: d6341b3a55 user: stephan tags: trunk
12:01
Fix on Check-in pages to preserve the current "diffType" setting (side-by-side or unified) when toggling the show/ignore whitespace option. check-in: e6ab947e1e user: graham tags: ui-local-diff
11:49
Disable all access to the /fileedit page and its associated AJAX entry points if the user lacks write privilege or if file editing is not enabled. check-in: f231239780 user: drh tags: trunk
11:42
Cosmetic fix for "/file?name=xxxx" where ci defaults to "tip". Title used to be "xxxx at []"; now it is "xxxx at tip" which matches the behaviour of "/file?name=xxxx&ci=tip". check-in: 551676bc28 user: graham tags: ui-local-diff
09:47
Added /fileedit to changes.wiki. check-in: 2c9aa1b939 user: stephan tags: trunk
09:40
Introducing the /fileedit page. check-in: 1243bf3999 user: stephan tags: trunk
09:18
Reworked how style.css is emitted: all default rules first, then page-specific rules (if passed name=PAGENAME and if builtin file style.PAGENAME.css exists), then the skin. This increases the default style.css output by only approx. 800 bytes before compression (approx. 300 after compression). Has no visual impact on existing built-in skins, and none is expected on 3rd-party skin edits. See [https://fossil-scm.org/forum/forumpost/d63ff33063|/forumpost/d63ff33063] for discussion. check-in: 064c1c9588 user: stephan tags: trunk
08:55
Editing forum posts now applies delta compression to the edits. check-in: 5b7888c994 user: stephan tags: trunk
08:48
Add --reset flag to add/rm/addremove commands. check-in: e0fc98caa1 user: stephan tags: trunk
2020-05-27
22:41
The "tags" Makefile target added in [ebb67be4] relied on GNU make conditionals, which causes BSD make to choke. Reworked the feature to do the conditional work entirely on the Autosetup side instead. check-in: 42111658ca user: wyoung tags: trunk
22:14
Updated all user-facing documentation and "fossil help" output (plus select internal comments and function names) to use "hash" rather than "UUID". No functional changes. (Yet?) See forum thread https://www.fossil-scm.org/forum/forumpost/ddc14c6866 for discussion. Closed-Leaf check-in: df5201950e user: wyoung tags: uuid-to-hash
22:05
New document, "Hashes: Fossil Artifact Identification", which attempts to break down the HASH vs VERSION vs commit ID vs NAME vs UUID mess. It also serves to document my current understanding of all the ways "UUID" is currently misused, but because it is only documenting the current state of things, it's safe to put it on trunk. (Changes to cope with that particular slice of the mess will appaar later, on a branch.) check-in: 33bec291b0 user: wyoung tags: trunk
20:45
In www/checkin_names.wiki, documented the date: prefix for timestamps, added fragment IDs for subsections, added a differentiating example of "fossil info" vs "/info/NAME" for special check-in names, and documented the order that Fossil resolves such names. check-in: 74a7309aad user: wyoung tags: trunk
19:45
A few small improvements to embeddeddoc.wiki: added a named anchor so we can refer directly to the section talking about "ckout", referred to checkin_names.wiki only once from the relevant paragraph instead of twice, and added a paragraph explaining why this feature is particularly useful. This is in support of an upcoming commit: we're going to remove some redundant commentary about "ckout" in checkin_names.wiki. check-in: 51511b7205 user: wyoung tags: trunk
19:22
Updated release version number in index.wiki. check-in: c0a91653ab user: stephan tags: trunk
17:56
Added a top-level "tags" Makefile target for updating a Vim tags file using Exuberant Ctags (requires -R feature). It also updates a cscope file if we find cscope at configuration time. One so interested could add etags support to this as well. check-in: ebb67be487 user: wyoung tags: trunk
16:56
The error message Fossil gives on TLS certificate check failure changed in Fossil 2.11, so updated www/ssl.wiki to show the new message. Left the old message in place, since many people will be running versions of Fossil that still use that format, and a big part of the reason why we have this error message in the document is to make it come up in web searches for the error, since we give solutions later in the same doc. check-in: 3c0565ab5e user: wyoung tags: trunk
16:02
Merged trunk changes in check-in: 32f391f655 user: wyoung tags: artifact-view-links
13:28
Demonstrate how the mkindex.c utility could be extended to automatically put a complete web-page construction inside a transaction. Closed-Leaf check-in: 67c420402f user: drh tags: auto-webpage-txn
07:56
s/checkin/check-in/ in the help tab, per forum feedback. Closed-Leaf check-in: 91948d3afa user: stephan tags: fileedit-ajaxify
2020-05-26
18:30
Fix a bug in the "Delete Ad-Unit" button in the setup pages. check-in: 48dca1b4c9 user: drh tags: trunk
18:27
Merge in trunk (version-2.11) check-in: 6819e2ffab user: george tags: wiki-history
15:54
Update the version number to 2.12 as we begin the next release cycle. check-in: ad9295fd59 user: drh tags: trunk
15:54
Attempt to fix markdown rendering so that it correctly ignores table column separators that are contained without "code-span" back-ticks. check-in: d6058989ed user: drh tags: trunk
07:42
Removed a no-longer-true line from the fileedit help tab. check-in: 616333e5ba user: stephan tags: fileedit-ajaxify
07:16
Merged in trunk. Closed-Leaf check-in: 58ee06450c user: stephan tags: unaddremove-command
06:56
merged in trunk Closed-Leaf check-in: a2b0ed37af user: stephan tags: forum-edit-deltify
06:47
merged in trunk. Closed-Leaf check-in: fe018289e3 user: stephan tags: style-css-revamp
06:43
Merged in trunk. check-in: 559807ba86 user: stephan tags: fileedit-ajaxify
2020-05-25
23:40
Update the changes log to include a date for 2.11 and to add a place-holder to begin recording 2.12 changes. check-in: 87e3ad3132 user: drh tags: trunk
23:23
Version 2.11 check-in: 4df919803b user: drh tags: trunk, release, version-2.11
17:28
Update the built-in SQLite to version 3.32.1. check-in: bb713f1337 user: drh tags: trunk