Fossil

Timeline
Login

Timeline

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

200 descendants and 200 ancestors of 26fc65f99c035dac7f2f3819d3cdfba4ffc72982

2016-11-19
05:59
Correct issue with open/closed tags by changing the closed column to a quasi-aggregate query, i.e. one which is a function of the argument to GROUP BY and not anything which varies within the group. This gives consistent results with the baseline branch ls command, but it introduces a MAJOR performance regression. Listing closed tags goes from 0.033s in the baseline to 1.882s, i.e. it takes 56 times longer. ... (Closed-Leaf check-in: b302f893 user: andygoth tags: andygoth-branch-list)
2016-11-18
21:45
Remove min() from closed expression. It doesn't solve the problem, and it confuses analysis of the issue. ... (check-in: 4e7d2ce1 user: andygoth tags: andygoth-branch-list)
08:22
Remove some unnecessary spaces. ... (check-in: 467c4269 user: jan.nijtmans tags: trunk)
2016-11-16
21:59
Begin work merging new_brlist_page() into brlist_page().

Annoyance: The new open/closed checkboxes don't quite work the way I want them to work. Deselecting both has the effect of selecting both. This makes sense in that if neither the open nor closed query parameters are given, everything should be displayed, rather than nothing. Yet, the user interface would be nicer if deselecting the only selected checkbox causes the other checkbox to be selected. This can't be done with straight HTML because deselecting the checkbox removes it from the query string, and the server does not know which checkbox was deselected so it cannot force the other one to become selected. As far as I know, JavaScript is required.

Bug: Non-aggregate HAVING clause expressions are evaluated on an arbitrarily chosen row within each group. This breaks closed and open filtering for the command-line branch command and the new checkboxes. But shouldn't this also break non-aggregate result expressions?

Wish: Filter on normal/hidden branches too.

Wish: If a merged-to branch is hidden, don't show it in the resolution column, instead show something else. The latest merged-to? The earliest merged-to?

Wish: Branch name filters, just like on the timeline page. ... (check-in: a6a44820 user: andygoth tags: andygoth-branch-list)

19:29
Enable linenoise multiline editing so long commands and queries may be seen all at once therefore highlighted and copied from xterms ... (check-in: 03b68698 user: andygoth tags: trunk)
19:25
Only #include "linenoise.h" in fshell.c on non-Windows platforms ... (check-in: 9c90682b user: andygoth tags: trunk)
14:47
Change the /test-version webpage into /version. Link it to /stat. ... (check-in: 286effd5 user: drh tags: trunk)
14:37
Fix a typo in the date of the 1.34 release on the download page. ... (check-in: 01d1f519 user: drh tags: trunk)
2016-11-15
23:41
Allow uv delete (or del) as an alias for uv remove or uv rm. See http://www.mail-archive.com/fossil-users@lists.fossil-scm.org/msg24322.html. ... (check-in: b59fa7d0 user: andygoth tags: trunk)
23:29
Fix revert -r option to mark a reverted file as edited if the reverted-to version does not exactly match the checkout version, even if the file size is equal ... (check-in: f9080683 user: andygoth tags: trunk)
23:23
Make changing to a symlink take priority over all other change types. This might also be a solution to the problem fixed by the previous commit, but it also avoids having a file that becomes a symlink (with target string length not equal to former file size) being marked as an ordinary edit. ... (check-in: f10a284a user: andygoth tags: trunk)
23:11
Don't rely on vfile.islink to tell whether or not a file is currently a symlink for the purpose of avoiding calling file_contains_merge_marker(). It is possible for a file to have become a symlink since the last commit. If the link target's string length is not equal to the former file size, vfile_check_signature() will treat it as a normal change and not mark it as chnged==8 (SYMLINK), so execution can fall through to the undesirable call to file_contains_merge_marker(). ... (check-in: 43140feb user: andygoth tags: trunk)
22:49
Avoid listing added files when running "fossil changes -edited" ... (check-in: 0dea016d user: andygoth tags: trunk)
21:47
Change the /test-version webpage into a supported /version webpage. Add a link from /stat. ... (Closed-Leaf check-in: 57fea315 user: drh tags: stat-update)
02:50
Add script to automate updating common command list in man page, and use it to update the man page ... (check-in: 42d6c86f user: andygoth tags: trunk)
00:30
Fix timeline -n 0 to display an unlimited number of lines (rather than zero) to match documentation. Correct timeline -n for negative N documentation to match actual behavior. Limit compute_ancestors() and compute_descendants() on the assumption that there is no more than one entry per line. ... (check-in: def9af43 user: andygoth tags: trunk)
2016-11-12
22:58
Move the revert in test case to the correct sequence to avoid a merge conflict. ... (check-in: 3eeab4a5 user: andybradford tags: trunk)
22:19
Add test case to handle file add and rename before merging to trunk. Make test_setup return the repository path so it can be used in the test. ... (check-in: 6a5f0c5b user: andybradford tags: trunk)
04:21
Make artifact|whatis page use local time to match the timeline. Otherwise clicking on date/time links finds the wrong check-in in the timeline. May wish to convert other calls to datetime() to use local time. ... (check-in: e7192bb9 user: andygoth tags: trunk)
00:01
Fix uninitialized variable that was causing artifact download issues. ... (check-in: 3af5165a user: mistachkin tags: trunk)
2016-11-11
16:47
Add the ci=BRANCH and filename=NAME query parameters to the /raw page. ... (check-in: fc29b081 user: drh tags: trunk)
2016-11-10
19:44
Fix typo in help text for fossil tag ... (check-in: 405a93e4 user: andygoth tags: trunk)
2016-11-09
03:02
Minor tweak to changes help text: move some trivia to the end so the more important material is read first ... (check-in: 5c8bdd00 user: andygoth tags: trunk)
01:44
Minor tweak to branch help text ... (check-in: 596f29fa user: andygoth tags: trunk)
2016-11-08
18:41
The 'ignore-glob' setting should not be used for build output files; otherwise, 'extras' command is unable to see them and 'clean' command is unable to remove then. Also, the 'add' command should already ignore files matching the 'clean-glob', there is no need to duplicate its contents in 'ignore-glob'.

Remark (JN): "fossil clean -x" could be your friend here, it makes life a lot easier. ... (check-in: dc9ac1d7 user: mistachkin tags: trunk)

18:18
Since the 'manifest' setting is no longer a strictly binary option, prevent it from being displayed as such on the settings page. ... (check-in: b73dee98 user: mistachkin tags: trunk)
18:13
Regenerate the MinGW makefile, since it apparently does use XBCC. Also, sync up the custom MinGW makefile with it. ... (check-in: ce698048 user: mistachkin tags: trunk)
18:12
Prevent the DMC and MSVC makefile from using XBCC, which was not defined there. ... (check-in: f366e52f user: mistachkin tags: trunk)
14:22
Add "crnl-glob" (as demonstration for this feature). Also remove some unnecessary spacing. ... (check-in: 7cd98039 user: jan.nijtmans tags: trunk)
14:21
Make "fossil extra" work as expected in fossil repository: not mentioning build-artifacts any more. This makes sure that files resulting from a build cannot be accidently "fossil add"-ed any more. ... (check-in: 6ef3a2a4 user: jan.nijtmans tags: trunk)
00:38
Tweak changes's help text ... (check-in: 9686570a user: andygoth tags: trunk)
2016-11-07
11:26
Fix the sync.wiki documentation to account for recent changes to the sync protocol. ... (check-in: df1205bb user: drh tags: trunk)
08:24
Add option to test-find-pivot to assist in discovering "name pivots" when diagnosing merge failures. ... (check-in: 3dc006c9 user: andybradford tags: trunk)
05:43
Minor correction to example comment in Fossil coding introduction. ... (check-in: 22a9fba4 user: andybradford tags: trunk)
04:45
Correct recent makeheaders.html documentation update to respect the prohibition of multiple global variables per declaration ... (check-in: ba5ab70e user: andygoth tags: trunk)
04:06
Use disjoint timelines when filtering by the chng timeline query parameter ... (check-in: e7bdbbe4 user: andygoth tags: trunk)
02:12
Use rgba(0,0,0,0.5) instead of #888 to implement 50% shadow so that the shadow works even against a colored or dark background ... (check-in: f23ccc89 user: andygoth tags: trunk)
02:00
CSS corrections for checkboxes ... (check-in: 446d438e user: andygoth tags: trunk)
01:48
Add crlf-glob to tester.tcl ... (check-in: e754cad9 user: andygoth tags: trunk)
01:32
Partially backout [bf9669f5]. Leave whitespace alone in test files ... (check-in: 6a3e2ed8 user: andygoth tags: trunk)
01:29
Remove some tabs and end-of-line whitespace ... (check-in: bf9669f5 user: andygoth tags: trunk)
01:18
Further updates to the changelog ... (check-in: 63ed4b00 user: andygoth tags: trunk)
01:13
Move changes to bottom (were placed at top by prior merge) and change verb tense to match other changes ... (check-in: 1d1b5c73 user: andygoth tags: trunk)
01:12
Add item to changes.wiki describing updated changes|status command ... (check-in: c3c348b7 user: andygoth tags: trunk)
01:10
Integrate andygoth-crlf. This renames CRNL to CRLF throughout Fossil. crnl-glob is renamed to crlf-glob, but crnl-glob is retained as a compatibility alias. ... (check-in: 87320cf4 user: andygoth tags: trunk)
00:53
Update for a new instance of crnl-glob that was added since this branch's baseline ... (Closed-Leaf check-in: 46fd89ea user: andygoth tags: andygoth-crlf)
00:50
Merge trunk ... (check-in: 7ea74acf user: andygoth tags: andygoth-crlf)
00:48
Ensure deleted/missing files are not processed as other types of files when C_DELETED and C_MISSING are not specified ... (check-in: e9a43ae0 user: andygoth tags: trunk)
00:35
Integrate andygoth-timeline-ms for broader testing and comment ... (check-in: 5e173697 user: andygoth tags: trunk)
00:34
Merge trunk ... (check-in: 4bf71abd user: jan.nijtmans tags: cleanX)
00:33
Integrate andygoth-changes, try two ... (check-in: e7764947 user: andygoth tags: trunk)
00:20
Correct SELECT to not exclude added files, i.e. files not present in the blob table ... (Closed-Leaf check-in: 45e2e3e9 user: andygoth tags: andygoth-changes)
2016-11-06
23:48
Like I said, it has a problem with showing added files. ... (check-in: d57d357d user: andygoth tags: trunk)
23:47
Immediately backout [7c8cc2adab]. Turns out it has a problem with showing added files. ... (check-in: d87c85c1 user: andygoth tags: trunk)
23:45
Integrate andygoth-changes for broader testing and comment. This change should be fully backward-compatible, unless of course a script depends on the help text never changing or new options never being added. All existing options and defaults should work identically to before. I had planned to update the ls command to use the same backend as changes/status, but that work will have to wait until we decide if the ls options should be redesigned. The SCAN_MTIME, SCAN_SIZE, C_MTIME, and C_SIZE flags are currently unused and can be removed, but their presence harms nothing, and they should be useful for a basis for an updated ls command, though they may need modification to address confusion between commit time, on-disk mtime, checked-in size, and on-disk size. ... (check-in: 7c8cc2ad user: andygoth tags: trunk)
23:40
Correct SQL syntax error on "fossil changes -merge" which is not supposed to display any files yet still tries to run the file query even though it says only "ORDER BY pathname" with no SELECT ... (check-in: 61da7752 user: andygoth tags: andygoth-changes)
23:35
Merge trunk ... (check-in: 74a5873c user: andygoth tags: andygoth-changes)
23:31
Correct internal contradiction in updated ls documentation to match actual behavior. This is too complicated. ... (check-in: bc5a67d1 user: andygoth tags: trunk)
23:25
Document actual behavior of ls command. I'm questioning whether it's worth maintaining backward compatibility with this highly non-orthogonal collection of options whose behaviors all affect each other with varying degrees of nuance. ... (check-in: 0a4310b3 user: andygoth tags: trunk)
22:55
Split SCAN_META to SCAN_MTIME and SCAN_SIZE. None of these are in use at the moment. ... (check-in: 2862f1c2 user: andygoth tags: andygoth-changes)
22:53
Remove hard-coded demo of mtime and size from changes and status commands ... (check-in: 8cd81143 user: andygoth tags: andygoth-changes)
21:28
Remove some excess comments, minor rearrangement ... (check-in: 8b8e7654 user: andygoth tags: andygoth-changes)
20:19
More reliably work around the problem experienced by the previous commit. Not sure if this is the right long-term solution since we seem to have an architectural problem: at least one of Fossil's custom SQL functions can change the schema (in this case, by creating a temporary table), thereby invalidating a prepared statement while it is running. See the comment in checkin.c for a bit more information. Of course, there are rearrangements that avoid the issue, but it is certainly a trap for the unwary. ... (check-in: 5258a43d user: andygoth tags: andygoth-changes)
16:40
Correct commit that had mistake in macro definition in [36e7558a11598]. ... (check-in: 427c34fe user: andybradford tags: trunk)
16:38
Correct incorrect commit in [36e7558a11598] (with incorrectly committed code) ... (Closed-Leaf check-in: ae424dc1 user: andybradford tags: mistake)
16:10
Move macro definition to config.h which is included everywhere to fix build failure reported on mailing list with "configure --json --with-tcl --with-th1-docs". ... (check-in: 36e7558a user: andybradford tags: trunk)
07:57
Begin expanding status_report() to support being the backend for the ls command. The work is not yet complete. First we must debug a mysterious abort in SQLite. Test case: run "./fossil changes -differ" with at least one changed file. ... (check-in: 9d5de8d7 user: andygoth tags: andygoth-changes)
06:39
Rename sfile x column to pathname to match vfile and to make room for new columns I plan to add ... (check-in: ec9480fc user: andygoth tags: andygoth-changes)
05:15
Use clearer method of differentiating between the status and changes commands ... (check-in: 4d33d958 user: andygoth tags: andygoth-changes)
05:09
Add more comments. Replace the changesOnly field with the knowledge that --classify and --no-classify are the only table-driven options specific to the changes command. Correctly ignore --header and -v|verbose when running the status command so their use triggers an error. Add the --differ option which combines the default list of changes (sans --merge) with --extra, i.e. all files that differ from the checked-out baseline version. ... (check-in: d1214f37 user: andygoth tags: andygoth-changes)
04:23
Remove stale TODO comment. May still want to implement ls in terms of status_report() though. ... (check-in: bfb7dd2a user: andygoth tags: andygoth-changes)
04:17
Change -unmodified/UNMODIFIED to -unchanged/UNCHANGED in status_report() for consistency with the ls -v command ... (check-in: 5775d376 user: andygoth tags: andygoth-changes)
04:13
Minor optimization to status_report() to avoid building list of managed files if only unmanaged files are requested. Move unmanaged file reserved name filtering to status_report(). Ensure db_get*() calls happen after db_must_be_within_tree(). Implement extras_cmd() in terms of status_report(). ... (check-in: d52fd185 user: andygoth tags: andygoth-changes)
03:16
Remove unused final argument to locate_unmanaged_files() ... (check-in: c2b3f6b1 user: andygoth tags: andygoth-changes)
03:02
Fix wiki syntax error ... (check-in: 000f2193 user: andygoth tags: trunk)
03:01
Clarify linenoise ... (check-in: 8a310633 user: andygoth tags: trunk)
02:50
Mention linenoise and miniz in makefile.wiki ... (check-in: f6ab9e28 user: andygoth tags: trunk)
02:39
Remove flag debug prints from status_cmd() now that it seems to be stable ... (check-in: 31c6140e user: andygoth tags: andygoth-changes)
02:35
Fold print_changes() into status_cmd() (formerly changes_cmd()). Remove C_SHA1SUM, C_HEADER, and C_VERBOSE flags which are no longer needed for communicating options to print_changes(). Move locate_unmanaged_files() closer to the top of the file so status_cmd() can call it. Implement C_UNMODIFIED and C_EXTRA in status_report(). Document the fact that the changes and status commands take optional path arguments. Let changes and status commands accept --case-sensitive (was already done), --dotfiles, and --ignore for the benefit of --extras. Incorporate search for extra files into status_cmd(). ... (check-in: f15d20e3 user: andygoth tags: andygoth-changes)
2016-11-05
23:11
Merge the status command into the changes command. ... (check-in: 2c3a108c user: andygoth tags: andygoth-changes)
22:41
Add TODO: reimplement ls and extras in terms of status_report() ... (check-in: 442a3cd5 user: andygoth tags: andygoth-changes)
22:40
Adjust the way --changed is implemented. Improve documentation. Avoid saying EDITED for files with other types of changes if those change types were not selected for display. ... (check-in: 2408fd1c user: andygoth tags: andygoth-changes)
22:22
Implement most of the new changes command, still need to do --all, --unmodified, and --extra ... (check-in: 7595bdfb user: andygoth tags: andygoth-changes)
21:35
Correct copy-and-paste error in comment ... (check-in: 426a5e7e user: andygoth tags: trunk)
21:26
Comment tweak ... (check-in: c3f72593 user: andygoth tags: andygoth-changes)
21:25
Implement changes option parser and default logic, still need to implement filtering ... (check-in: cc3baab8 user: andygoth tags: andygoth-changes)
19:58
Update makeheaders.html Summary And Conclusion chapter number ... (check-in: 994ac6fb user: andygoth tags: trunk)
19:51
Add the "History" section to the makeheaders documentation. ... (check-in: 28098136 user: drh tags: trunk)
19:25
Merge trunk ... (check-in: e6787d1e user: andygoth tags: andygoth-changes)
19:24
Have makeheaders ignore completely anonymous enums so they can be used within a single source file, useful for value autoincrementing. Update documentation accordingly. Write more about makeheaders's limitations discovered while researching this issue. Remove unnecessary explicit links to makeheaders.html in said file so it can be renamed without consequence. Ensure href attributes are surrounded by quotes. Add missing </html> to end of makeheaders.html. ... (check-in: 4dcfbc1c user: andygoth tags: trunk)
16:08
Add missing title tags to documents ... (check-in: 26abbe3b user: andygoth tags: trunk)
16:07
Correct title of Principles Of Operation page. Perhaps mkindex.tcl should be taught to extract titles from the documents themselves ... (check-in: 57896771 user: andygoth tags: trunk)
15:58
Remove cmd_.wiki-template which is a relic (avoiding the pun...) from when the commands were documented as individual /doc/cmd_*.wiki files ... (check-in: dac02c3d user: andygoth tags: trunk)
15:53
Merge trunk ... (check-in: a47d79e9 user: andygoth tags: andygoth-changes)
15:49
Expand list of stopwords in permuted index ... (check-in: 95bb5a24 user: andygoth tags: trunk)
15:42
Cherrypick [419a3c3e48] and [805b69772e] which were checked in on the wrong branch ... (check-in: 6311ff76 user: andygoth tags: trunk)
15:40
Update permuted index to show non-permuted items in bold ... (Closed-Leaf check-in: 805b6977 user: andygoth tags: andygoth-timeline-ms)
15:39
Make mkindex.tcl directly executable ... (check-in: 419a3c3e user: andygoth tags: andygoth-timeline-ms)
15:28
Merge trunk ... (check-in: 839eca18 user: andygoth tags: andygoth-timeline-ms)
15:26
Cherrypick one more timeline help text update from [5703ccb2e0] ... (check-in: 40de787d user: andygoth tags: trunk)
15:23
Add BCCFLAGS and XBCC to build system so that programs which run on the build platform (e.g. translate) can have the benefit of CFLAGS, e.g. -ggdb3 for easier debugging in gdb or -std=c89 to flush out C99. Do not update win/* because I don't have the ability to test those changes. ... (check-in: ad110346 user: andygoth tags: trunk)
14:59
Demote the rss command to second-tier because it is infrequently used and falls in the saame general category as the server and cgi commands which are already second-tier ... (check-in: d623a0ad user: andygoth tags: trunk)
14:55
Fix minor typo in comment ... (check-in: 6a6dae15 user: andygoth tags: trunk)
14:31
Change help index command list from seven columns to six to better match the widths of the other lists presented on the page ... (check-in: 2f613574 user: andygoth tags: trunk)
14:30
In help index, display first-tier command names in bold ... (check-in: 37e8c173 user: andygoth tags: trunk)
14:22
Use symbolic name CMDFLAG_WEBPAGE instead of directly saying 0x08 ... (check-in: dfa23f5b user: andygoth tags: trunk)
14:17
Ignore empty command name in help page so that /help/ is treated the same as /help ... (check-in: e237cea4 user: andygoth tags: trunk)
14:15
Include name of command or page in help title ... (check-in: 9b15ec0d user: andygoth tags: trunk)
14:12
Remove "Command-line" from name of help page which documents web pages as well as commands ... (check-in: ccd4ca87 user: andygoth tags: trunk)
14:10
Cherrypick timeline help text updates from [5703ccb2e0] ... (check-in: 9807c1da user: andygoth tags: trunk)
14:07
Remove "Testpage:" from title of all-in-one help text page ... (check-in: d8506df1 user: andygoth tags: trunk)
14:04
Replace Show/Hide Cookies in test_env page with a checkbox ... (check-in: 7814e9b5 user: andygoth tags: trunk)
13:57
Change Files/Folders selection to a Folders Only checkbox ... (check-in: b6a824ec user: andygoth tags: trunk)
06:42
Merge trunk ... (check-in: 4630d9ba user: andygoth tags: andygoth-timeline-ms)
06:38
Rework style.c to use new line continuation feature of translate.c ... (check-in: 9c211011 user: andygoth tags: trunk)
06:37
Enhance translate.c to interpret backslash at the end of a cgi_printf() "@" line as a directive to omit the newline ... (check-in: e193e21b user: andygoth tags: trunk)
05:51
Check regular expressions for errors. Add error reporting mechanism. Leave bad patterns out of filter. Add showid and showsql to timeline help text. ... (check-in: 5703ccb2 user: andygoth tags: andygoth-timeline-ms)
05:46
Merge fork ... (check-in: 3cb9ba4d user: andygoth tags: trunk)
05:45
Add fossil_strndup() function to duplicate a string that is not necessarily NUL-terminated ... (check-in: b9877667 user: andygoth tags: andygoth-timeline-ms)
05:18
Add timeline rel query string and change r=TAG to be an alias for t=TAG&rel so that related can be a checkbox and the tag filter text entry can work whether or not related is checked. This addresses issues (2) and (3). ... (check-in: 90057326 user: andygoth tags: andygoth-timeline-ms)
05:15
Add functions to modify and delete query parameters ... (check-in: 1c511cd9 user: andygoth tags: andygoth-timeline-ms)
04:30
Fix extra empty lines in diff output from non-interactive process on Windows; similar to [f2fc37c0]. ... (check-in: 476fe9e9 user: ashepilko tags: trunk)
04:02
Draw dotted box around entire row of checkout version, not just the check-in comment and descriptive text. In my experience, it's too hard to see the dotted box against a colored background when the checkout version is on a branch. This whole-row behavior matches the version marking option provided by the timeline "m" query string. I considered also increasing the line thickness from 1px to 2px, but I found it to be too distracting. Instead, I added a very faint shadow similar to, but much lighter than, the one used by the "m" version marker. ... (check-in: e5b53f15 user: andygoth tags: trunk)
03:42
Rework [98cc8782e1] to more thoroughly ignore empty match tags and patterns so that the "Related" submenu item does not appear due to an empty tag filter text entry adding "t=" to the query string ... (check-in: 3bcdc077 user: andygoth tags: andygoth-timeline-ms)
03:34
Merge trunk. Some issues identified by [d4a6d3c1ec] are now improved. (1) is fixed, though clicking/tabbing outside the entry field also triggers a submit which may prove annoying. (2) and (3) are still broken. (4) is better because "With/Without Files" is now a checkbox simply labeled "Files". (5) is closer to being feasible, perhaps if "Tag Filter:" is changed to "Filter:". ... (check-in: 74fe9587 user: andygoth tags: andygoth-timeline-ms)
03:24
Use <label> to connect setup checkboxes with their label text so either the checkbox or the label can be clicked on, also makes the checkbox highlight when the mouse hovers on the label ... (check-in: 9036122d user: andygoth tags: trunk)
03:19
Add explicit call to form submit() when changing a text entry so style_submenu_entry() can be used multiple times per page ... (check-in: 2929d5fc user: andygoth tags: trunk)
03:17
Add missing close angle bracket omitted by previous commit ... (check-in: 2dd29534 user: andygoth tags: trunk)
03:14
Cherrypick [2e9ac33a9a] ... (check-in: e32803bb user: andygoth tags: trunk)
03:06
Remove extra class='submenuctrl' from checkbox input because already present in the enclosing <label> ... (check-in: bccaea60 user: andygoth tags: trunk)
03:04
Change branch color option from a binary submenu to a checkbox ... (check-in: 3a98c9b5 user: andygoth tags: trunk)
03:00
Change "v" (files) option from a binary submenu to a checkbox, move to the right of the unhide checkbox so the checkboxes are grouped together ... (check-in: a482549c user: andygoth tags: trunk)
02:48
Correct builtin text capability, broken by typo in [e5b62edb28] ... (check-in: 584546fe user: andygoth tags: trunk)
02:29
Implement style_submenu_checkbox(). Change "unhide" to a checkbox so it can be cancelled without editing the URL by hand. Update skins to support use of <label> tag. Remove redundant "if" check in style.c. Checkbox styling can certainly be improved, but this is a start. ... (check-in: 8d880f0b user: andygoth tags: trunk)
2016-11-04
23:57
Use linenoise for fossil shell. Do not bother with persistent history. ... (check-in: 6327b026 user: andygoth tags: trunk)
23:18
Cherrypick [9b960af129], was supposed to have been checked into trunk in the first place ... (check-in: bbafc013 user: andygoth tags: trunk)
23:13
Fix various typos in makeheaders.html. Use curly quotes instead of classic `` and '' quotes (ref: http://www.dwheeler.com/essays/quotes-in-html.html). Format most such quoted text in monospace print. ... (check-in: 9b960af1 user: andygoth tags: andygoth-timeline-ms)
22:37
Consistently use the count(X) macro in place of sizeof(X)/sizeof(*X) throughout the Fossil core, excluding things that don't use makeheaders. Also use count(X) instead of ArraySize(X) which has the same definition. ... (check-in: e5b62edb user: andygoth tags: trunk)
22:12
Fix crash introduced by merge of andygoth-quote-apostrophe ... (check-in: 10b98c1e user: andygoth tags: andygoth-timeline-ms)
21:55
Merge trunk ... (check-in: 250c12c2 user: andygoth tags: andygoth-timeline-ms)
21:53
Use count(x) instead of sizeof(x)/sizeof(*x) ... (check-in: cda8c14c user: andygoth tags: andygoth-timeline-ms)
21:39
Use timeline_submenu() instead of style_submenu_element() ... (check-in: c1a77615 user: andygoth tags: trunk)
21:32
Remove unused, undocumented zTitle argument to style_submenu_element(). This argument appears to have been unused all the way back to [dbda8d6ce9]. ... (check-in: 187424e8 user: andygoth tags: trunk)
21:12
Improve quoting of match tags and patterns. Ignore empty match tags and patterns. ... (check-in: 98cc8782 user: andygoth tags: andygoth-timeline-ms)
20:49
Integrate andygoth-quote-apostrophe. Needed because single quotes can be used in the tag filter entry, and these single quotes would otherwise be passed through unprotected to the output HTML. ... (check-in: 68bd2e7b user: andygoth tags: andygoth-timeline-ms)
17:35
int/size_t pedantry ... (check-in: 30d96141 user: andygoth tags: trunk)
17:28
Further magic _WIN32_WINNT changes to fix the build for mingw. ... (check-in: 45b76344 user: drh tags: trunk)
17:25
Modify linenoise.c so that it can build with -std=c89. Baseline linenoise.c relied on snprintf(), strdup(), and strcasecmp() which are technically not in C89. Since linenoise.c's only purpose (at present) is to implement the SQLite shell, make use of the SQLite compatibility functions. Following this change, "fossil clean -f && CFLAGS='-std=c89 -Wall' ./configure && make" builds without warnings or errors on gcc 4.4.7 20120313 (Red Hat 4.4.7-3) on CentOS release 6.4 (Final). Unrelated note: discovered during testing that "CFLAGS=-Werror ./configure" fails to add -lm to link step due to conflicting types for built-in function "sin" being regarded as an error. ... (check-in: 8133501e user: andygoth tags: trunk)
16:21
Add timeline web UI to set tag filter and match style. Still not 100%. (1) Now that more than one text entry is on the page, pressing enter does not trigger a submit [Firefox ESR 10.0.12], (2) electing "Related" causes Tag Filter to blank, (3) entering a tag filter while "Related" is selected causes "Related" to be deselected, (4) possibly too much clutter, and (5) definitely too much clutter if combined with any future expansions. (1) is due to the lack of a submit button. (2) and (3) are a bad interaction between the t=/r= dichotomy and the design of style_submenu_entry(). (4) maybe could be addressed by changing "Related"/"Branch Only" and "Without Files"/"With Files" to checkbuttons, but style_submenu_checkbox() was never actually implemented. (Probably also want "Unhide" to be a checkbox.) For (5) I have in mind letting the admin define a project-specific list of preset filters. ... (check-in: d4a6d3c1 user: andygoth tags: andygoth-timeline-ms)
15:52
Change style_submenu_entry() to allow zero and negative iSize. Zero iSize means display size and length limit are not specified, and negative iSize means no length limit is specified but the display size is set to the absolute value of iSize. ... (check-in: 2e9ac33a user: andygoth tags: andygoth-timeline-ms)
15:48
Move GLOB before LIKE in list of possible match styles ... (check-in: fc25a127 user: andygoth tags: andygoth-timeline-ms)
15:12
Revert unintended change that snuck in alongside prior merge ... (check-in: f0b91665 user: andygoth tags: andygoth-timeline-ms)
15:09
Merge trunk ... (check-in: 490daed2 user: andygoth tags: andygoth-timeline-ms)
12:03
typo ... (check-in: e826eadd user: jan.nijtmans tags: trunk)
2016-11-03
18:31
Compilation fix for MinGW: consistently use _WIN32_WINNT when including winsock2.h, etc. ... (check-in: 26a88f1b user: mistachkin tags: trunk)
2016-11-02
19:12
Merge updates from trunk. ... (check-in: 25285f06 user: mistachkin tags: openssl-1.1)
17:47
Fix the build on Windows. ... (check-in: 11e105b3 user: drh tags: trunk)
15:16
Update the built-in SQLite to the latest trunk version that includes a fix to VACUUM to prevent it from running out of memory on very large databases. ... (check-in: 7fa9701b user: drh tags: trunk)
10:22
Collapse two memset's into one. Typo in mkdownload.tcl ... (check-in: 5f889684 user: jan.nijtmans tags: trunk)
10:16
Eliminate unnecessary end-of-line spacing in wiki. No textual changes. ... (check-in: f47b7052 user: jan.nijtmans tags: trunk)
06:41
Fix compilation issue on Unix due to 'mkindex' wrongly attempting to include 'cmd_win32_service' due to its #if processing. ... (check-in: 69f64a8d user: mistachkin tags: trunk)
2016-11-01
23:34
Enhancements to SEE integration on Windows. ... (check-in: 7aeeb302 user: mistachkin tags: trunk)
2016-10-31
18:57
Backout the fusefs change. The correct solution is to run "./configure" followed by "make clean fossil" in order to rebuild when updating from historical sources. ... (check-in: 08f0ac0c user: drh tags: trunk)
16:03
Merge the accidental fork. ... (check-in: d13fc6a6 user: drh tags: trunk)
16:02
Fix to the fusefs.c file so that it builds even without FOSSIL_HAVE_FUSEFS. ... (check-in: 9a4a5dec user: drh tags: trunk)
13:36
Fix harmless "Local declaration of 'rc' hides declaration of the same name in outer scope", reported by Kevin (arnoldemu) on fossil-users list. ... (check-in: 0c3ae89d user: jan.nijtmans tags: trunk)
12:41
Fix harmless memory leaks. ... (check-in: 36babe0c user: drh tags: trunk)
10:55
Omit deleted unversioned files from the /uvlist page unless the showdel=1 query parameter is used. ... (check-in: a3608700 user: drh tags: trunk)
2016-10-29
16:50
Compiler warning (MSVC) in timeline.c, found by Kevin, reported on fossil-users list ... (check-in: fe3d30fc user: jan.nijtmans tags: trunk)
2016-10-28
22:51
merge fork. ... (check-in: cf2adc71 user: mgagnon tags: trunk)
22:45
Fix a C99-ism introduced by check-in [27c8985cc1b75cf5]. ... (check-in: 2bb3a8e1 user: mistachkin tags: trunk)
22:45
Fix a C99-ism. ... (check-in: 61ec7124 user: mgagnon tags: trunk)
05:29
Alternative to check-in [a4bb89ba08], make FuseFS act just like the JSON feature in 'auto.def'. ... (check-in: feb202f5 user: mistachkin tags: trunk)
04:27
Alternative to check-in [a4bb89ba08], make FuseFS act just like the JSON feature in 'auto.def'. ... (Closed-Leaf check-in: 6a80a2f2 user: mistachkin tags: altFuseFsDef)
2016-10-27
15:35
Combine multiple merge lines to the bottomn of the page when they reference the same source check-in. ... (check-in: 95d6ddc3 user: drh tags: trunk)
15:34
Add another entry to the graph-test-1.wiki checklist for this case. ... (Closed-Leaf check-in: 58d4f3c0 user: drh tags: baruch-timeline-fix)
14:57
Merge lines descending to the bottom of the timeline that refer to the same commit ... (check-in: 8ae79062 user: baruch tags: baruch-timeline-fix)
05:28
Now that FuseFS support is conditional, permit config.h to be included so FOSSIL_HAVE_FUSEFS can be correctly included from autoconfig.h to avoid linker failure to find fusefs_cmd. ... (check-in: a4bb89ba user: andybradford tags: trunk)
2016-10-26
23:33
Make the labels on the color submenu of the /brlist page more succinct. ... (check-in: a1b0ec8e user: drh tags: trunk)
21:45
Create a temporary index to speed up incremental Git import. ... (check-in: 0fa60142 user: mistachkin tags: trunk)
21:32
Minor tweaks to the break_into_lines() algorithm. Add tests. ... (check-in: 057e4b0a user: mistachkin tags: trunk)
21:31
Minor security enhancements to the optional SEE integration. ... (check-in: a8484dc3 user: mistachkin tags: trunk)
21:28
Fixes for incremental Git import/export. ... (check-in: 27c8985c user: mistachkin tags: trunk)
21:26
Add the 'project_description' variable to TH1. ... (check-in: cd219d31 user: mistachkin tags: trunk)
21:24
Add the 'unversioned' command to TH1, with the 'content' and 'list' sub-commands. ... (check-in: 1b5b69f3 user: mistachkin tags: trunk)
21:21
Enhance 'brlist' page to make use of branch colors. ... (check-in: 796c9aba user: mistachkin tags: trunk)
2016-10-25
22:06
Merge updates from trunk. ... (Closed-Leaf check-in: 66c5bc56 user: mistachkin tags: experimental)
22:05
Remove the 'fusefs' command from builds that do not have underlying support enabled. ... (check-in: 20b67ab3 user: mistachkin tags: experimental)
2016-10-24
21:54
Merge updates from trunk. ... (check-in: 1375911c user: mistachkin tags: experimental)
2016-10-23
02:16
Fixes for incremental Git import/export. ... (check-in: 9599705c user: mistachkin tags: experimental)
02:14
Minor tweaks to the break_into_lines() algorithm. Add tests. ... (check-in: d3cc6d1d user: mistachkin tags: experimental)
02:07
Minor security enhancements to the optional SEE integration. ... (check-in: 69352027 user: mistachkin tags: experimental)
01:46
Add the 'project_description' variable to TH1. ... (check-in: 345c580d user: mistachkin tags: experimental)
01:45
Add the 'unversioned' command to TH1, with the 'content' and 'list' sub-commands. ... (check-in: a5fd16fe user: mistachkin tags: experimental)
01:42
Enhance 'brlist' page to make use of branch colors. ... (check-in: 435ca5d2 user: mistachkin tags: experimental)
2016-05-17
11:44
tiny cleanup ... (Closed-Leaf check-in: 9340f2fc user: baruch tags: brlist-cleanup)
11:35
Adds option to show branch colors on brlist page ... (check-in: 2fa1a8a9 user: baruch tags: brlist-cleanup)
2016-03-06
06:35
Merge updates from trunk. ... (Closed-Leaf check-in: 4bd2b545 user: mistachkin tags: pending-review)
2016-01-28
22:15
remove submenu items from branch list page that link to old-style list, since all the individual inforation is now available in aggregated and sortable form on the main list ... (Closed-Leaf check-in: 972dc1c6 user: baruch tags: do-not-merge, test-only)
20:51
Test of feature branches, do not merge. ... (check-in: b0f2a0ac user: mistachkin tags: do-not-merge, test-only)
2016-01-24
14:43
Add option to show real branch colors in branch list ... (check-in: 26fc65f9 user: baruch tags: pending-review)
2016-01-21
12:44
fixed condition which caused the "Yearly total" row to not be rendered on the oldest year in the bymonth report in some cases. ... (check-in: ec3dd27f user: stephan tags: trunk)
2016-01-20
18:31
Use a VIEW rather than a TABLE for collecting the data for some piecharts. ... (check-in: 2bd670ac user: drh tags: trunk)
14:42
Upgrade the build-in SQLite to a new 3.11.0 alpha that fixes the LIKE operator bug found in 3.10.0. ... (check-in: 0d757274 user: drh tags: trunk)
10:46
Change piechart table to view since tables have undefined order ... (Closed-Leaf check-in: cdf0d6a3 user: baruch tags: pending-review)
2016-01-19
18:59
Remove superfluous library reference when compiling with MinGW. ... (check-in: 9a091248 user: mistachkin tags: trunk)
18:48
Get configure and make, via autosetup, working on MinGW. ... (check-in: a0061bb2 user: mistachkin tags: trunk)
01:37
Update the built-in SQLite to a newer version that fixes C89-isms in FTS5. ... (check-in: 0d120a61 user: drh tags: trunk)
2016-01-18
23:46
Fix to the test-content-erase command so that it correctly undeltafies. ... (check-in: d0cabcb6 user: drh tags: trunk)
23:25
Run PRAGMA integrity_check on the database at the end of the "test-integrity" command. ... (check-in: 00bfa66e user: drh tags: trunk)
23:19
Improved "help" for the "fossil whatis" command. ... (check-in: 0f9d0f0b user: drh tags: trunk)
23:13
Add the test-erase-content command. ... (check-in: e709bf16 user: drh tags: trunk)
22:34
Improved error message when a received artifact has an incorrect hash. ... (check-in: 4c8e6d91 user: drh tags: trunk)
17:48
Improve some comments. ... (check-in: dda5d11d user: mistachkin tags: trunk)
17:41
Add the 'array exists' and 'array names' sub-commands to TH1. Add tcl_platform(engine) and tcl_platform(platform) to TH1. ... (check-in: ea7813da user: mistachkin tags: trunk)
03:11
Update change log. ... (Closed-Leaf check-in: 853a2285 user: mistachkin tags: mingwConfigure)
03:07
Fix the test-content-undelta command. ... (check-in: 78601789 user: drh tags: trunk)
03:05
Update change log. ... (Closed-Leaf check-in: 042dac53 user: mistachkin tags: tclPlatform)
02:22
Fix comment. ... (check-in: 1a3f326b user: mistachkin tags: tclPlatform)
02:21
Add the 'array exists' and 'array names' sub-commands to TH1. ... (check-in: fd4ada4a user: mistachkin tags: tclPlatform)
01:43
Merge trunk. ... (check-in: 58466e7f user: mistachkin tags: tclPlatform)
01:42
Update TH1 docs. ... (check-in: 2427250b user: mistachkin tags: trunk)
01:42
Update TH1 docs. ... (check-in: d4bdaeab user: mistachkin tags: tclPlatform)
2016-01-17
23:00
Minor naming tweak. ... (check-in: 07324777 user: mistachkin tags: tclPlatform)
22:17
Add support for the tcl_platform(platform) and tcl_platform(engine) array elements to TH1. ... (check-in: 663b722e user: mistachkin tags: tclPlatform)
22:12
Better runtime settings detection by the 'th1' test file. ... (check-in: d8d2222b user: mistachkin tags: trunk)
2016-01-16
22:51
Further refinements to permit OpenSSL in tree to work consistently. ... (check-in: 08918fab user: mistachkin tags: mingwConfigure)
22:25
Fix use of linenoise. Fine-tune check for in-tree OpenSSL. ... (check-in: 54307c4d user: mistachkin tags: mingwConfigure)
21:36
Sync up the 'makemake.tcl' tool. ... (check-in: 2c7eee4c user: mistachkin tags: mingwConfigure)
21:26
More fine-tuning. ... (check-in: c76ea6b4 user: mistachkin tags: mingwConfigure)
21:20
Fix cut and paste error in zlib option description. ... (check-in: 2c24954c user: mistachkin tags: mingwConfigure)
21:18
Get vanilla configure and make, via autosetup, working on Win32. ... (check-in: 75a0abac user: mistachkin tags: mingwConfigure)
2016-01-14
22:33
In the 'merge5' test, use the configured Fossil executable instead of relying on the PATH. ... (check-in: acbee54e user: mistachkin tags: trunk)
20:40
Fix typo that prevented the --no-repository option from working. Correction: It actually worked before and the issue was due to an incorrect assumption by the 'merge5' test, namely that the Fossil executable was present in the PATH. ... (check-in: 0a2eaa5a user: mistachkin tags: trunk)
20:38
Pick up recent autosetup changes from upstream. ... (check-in: b2e6a234 user: mistachkin tags: trunk)
15:35
Use the editor setting in amend test for interactive edits because it has precedence over both VISUAL and EDITOR. ... (check-in: cc265cab user: andybradford tags: trunk)
14:20
Update the built-in SQLite to the latest 3.11.0 alpha version. ... (check-in: c9fad621 user: drh tags: trunk)
05:34
Add the '--no-repository' option to the 'fossil sqlite3' command and make use of it for the merge5 test. ... (check-in: 2e1ccc6a user: mistachkin tags: trunk)
2016-01-13
11:53
Add the ".vfslist" command to "fossil sqlite" ... (check-in: 42c4d8f2 user: jan.nijtmans tags: trunk)
06:19
Simplify the previous check-in. ... (Closed-Leaf check-in: 384482a8 user: mistachkin tags: sqlCmdNoRepo)
01:31
Add the '--no-repository' option to the 'fossil sqlite3' command and make use of it for the merge5 test. ... (check-in: 56f74a12 user: mistachkin tags: sqlCmdNoRepo)
00:38
The test file directory saved by the test suite infrastructure should be normalized. ... (check-in: be81a2fd user: mistachkin tags: trunk)
2016-01-12
22:44
Fix a typo in a comment in cache.c. ... (check-in: ca1e4ed3 user: drh tags: trunk)
18:55
In the MinGW makefile, move included LIBs after the object files. ... (check-in: c7117ab4 user: mistachkin tags: trunk)
03:14
More improvements to the 'th1' test file. ... (check-in: fc14f143 user: mistachkin tags: trunk)
2016-01-11
22:47
By default, use the automatic zlib detection. When --with-zlib=tree is used, use zlib from the source tree. ... (check-in: 8435adc4 user: mistachkin tags: trunk)
22:27
By default, use the automatic zlib detection. When --with-zlib=tree is used, use zlib from the source tree. ... (Closed-Leaf check-in: 260266c1 user: mistachkin tags: useTreeZlib)
22:17
By default, force the zlib in the source tree to be used. ... (check-in: 7b4153ff user: mistachkin tags: useTreeZlib)
22:16
Remove superfluous use of 'file join' from 'auto.def'. ... (check-in: 3728aa62 user: mistachkin tags: trunk)
21:09
Allow the 'th1' test file to fully pass with or without the 'tcl' and 'th1-hooks' settings enabled. ... (check-in: a9dc33d4 user: mistachkin tags: trunk)
21:08
Skip test 'th1-tcl2' if the SQLite package for Tcl is not available. ... (check-in: 2fbbd4f6 user: mistachkin tags: trunk)
19:59
Use absolute path for the Tcl private stubs directory in 'configure'. ... (check-in: 39f53e08 user: mistachkin tags: trunk)
19:46
Prevent the 'array set' commands in the 'utf.test' file from causing problems if there are pre-existing scalar variables. ... (check-in: ad6de638 user: mistachkin tags: trunk)
00:43
Modify 'th1-tcl' test to make it run outside of the Fossil source checkout. ... (check-in: 18d7d266 user: mistachkin tags: trunk)
00:40
Modify 'th1-hooks' test to decouple it from needing to run within a Fossil source checkout. ... (check-in: 9bfdc5c6 user: mistachkin tags: trunk)
00:39
Modify 'th1-docs' test file to enable it to run when the test suite is running outside of the Fossil source checkout. ... (check-in: 8f199fd8 user: mistachkin tags: trunk)
00:29
Correct missing parenthesis typo in timeline query generation logic. ... (check-in: 03fb7bf9 user: mistachkin tags: trunk)
2016-01-10
01:43
More test fixes in the 'th1' test file. ... (check-in: 5d49329f user: mistachkin tags: trunk)
2016-01-09
19:14
Modify 'th1' test file to run most of its tests outside of the Fossil source checkout using a new test suite infrastructure procedure. ... (check-in: 7b9b5807 user: mistachkin tags: trunk)
18:58
Follow up to the previous check-in: save and restore the current directory. ... (check-in: d141b84a user: mistachkin tags: trunk)
18:56
Fix the 'file1' test so that it can (only) run outside of the Fossil checkout. ... (check-in: 19c21639 user: mistachkin tags: trunk)
2016-01-07
18:22
When generating ZIP archives, files with zero bytes are 'Stored', not 'Deflated'. ... (check-in: ecedaf93 user: mistachkin tags: trunk)
2016-01-06
19:49
Do not set the directory permission bit on empty files when creating a ZIP archive. ... (check-in: 3d5cf48b user: mistachkin tags: trunk)
19:44
Do not set the directory permission bit on empty files when creating a ZIP archive. ... (Closed-Leaf check-in: 18607775 user: mistachkin tags: pending-review)
17:18
Add '-quiet' command line option to the test suite. ... (check-in: c2e42166 user: mistachkin tags: trunk)
11:13
Update the built-in SQLite to version 3.10.0 final. ... (check-in: 52ee83c7 user: drh tags: trunk)
04:03
In the 'revert' test, adjust formatting of expected results containing 'DELETE', 'REVERT', and 'UNMANAGE', also to account for recent code changes. ... (check-in: 1338b419 user: mistachkin tags: trunk)
04:01
In the 'mv-rm' test, adjust formatting of expected results containing 'DELETE' and 'REVERT', also to account for recent code changes. ... (check-in: 11444dbe user: mistachkin tags: trunk)
03:53
In the 'clean' test, adjust formatting of expected results containing 'NEW', to account for recent code changes. ... (check-in: 81df0a48 user: mistachkin tags: trunk)
03:49
Adjust two markdown tests so they pass again. ... (check-in: a489aecc user: mistachkin tags: trunk)
03:38
In the test suite, require the configured temporary directory to be valid prior to attempting to run any tests. ... (check-in: e2bd4bfc user: mistachkin tags: trunk)
2016-01-05
04:52
Update the built-in SQLite to the next 3.10.0 beta. ... (check-in: cd58f59a user: drh tags: trunk)
2016-01-01
20:49
Fix a bug in the manifest parser that can cause a read off the end of a buffer when doing a "fossil rebuild" on a repository that contains artifacts that start out looking like a valid special artifact but are not terminated by \n. This fixes a bug introduced by check-in [49b0ff15922674]. ... (check-in: 6013aea0 user: drh tags: trunk)
17:30
Update the built-in SQLite to the second beta for 3.10.0. ... (check-in: 987a80ef user: drh tags: trunk)
2015-12-31
16:10
Fix a harmless compiler warning in an assert() in delta.c. ... (check-in: d891af83 user: drh tags: trunk)
16:06
Add the ability to have attachments on technotes. Add command-line support for technotes in the "fossil wiki" command. ... (check-in: 045deb27 user: drh tags: trunk)
15:46
Add MIME types for C# and VB.NET. ... (check-in: 5e81f4c0 user: drh tags: trunk)
15:45
Use intrinsic byte-swapping functions to boost the performance of delta checksums. ... (check-in: 7338b3a9 user: drh tags: trunk)
15:44
Update the built-in SQLite to 3.10.0 beta for SQLite testing. ... (check-in: ec8394e1 user: drh tags: trunk)
15:18
Use intrinsic functions to boost the performance of the delta checksum. ... (Closed-Leaf check-in: 726ab361 user: drh tags: checksum-intrinsics)
11:31
[c541b6e734] Add attachments to technotes ... (Closed-Leaf check-in: 67288e93 user: dave.vines tags: technoteattach)
11:20
[c541b6e734] Add -technote option to wiki command ... (check-in: 467e493e user: dave.vines tags: technoteattach)
10:58
Create new branch named "technoteattach" ... (check-in: 5906ebc7 user: dave.vines tags: technoteattach)
00:25
Add primary MIME types for C# (.cs) and VB.NET (.vb) source code. ... (Closed-Leaf check-in: 33dd7704 user: mistachkin tags: dotnet-mime)
2015-12-29
21:52
Fix comment typos in main.c - including some comments that are used as on-line help text. ... (check-in: d76a980f user: drh tags: trunk)
20:18
Add the --no-rebuild and --no-vacuum options to the "fossil import" command. ... (check-in: 219f967c user: drh tags: trunk)
05:43
Several documentation wording improvements on the front page. ... (check-in: ebe25922 user: mistachkin tags: trunk)
2015-12-27
21:02
Further performance enhancements on the delta generator. ... (check-in: 09d3e7eb user: drh tags: trunk)
20:05
Performance optimizations for the delta generator. ... (check-in: dbbe3202 user: drh tags: trunk)
18:49
For the "fossil server" command, set the HTTP_SERVER_HAD_REPOSITORY and HTTP_SERVER_HAD_CHECKOUT flags just as they would have been with the "fossil ui" command. ... (check-in: e4e09884 user: drh tags: trunk)
2015-12-25
15:13
Enhance the test-delta-analyze command to show the size of the delta. ... (check-in: 138313df user: drh tags: trunk)
14:46
Performance optimization on the delta generator. ... (check-in: 2dd25909 user: drh tags: trunk)
13:42
Fix the "fossil import --git" command so that it does delta compression on the fly, and hence uses much less temporary disk space. Also show progress information unless --quiet is used. ... (check-in: 063779a1 user: drh tags: trunk)
03:20
Add a configuration option that will truncate the display of check-in comments on timelines at the first blank line. ... (check-in: 96101215 user: drh tags: trunk)
02:25
Add "Related" and "Branch Only" buttons to the t= and r= query parameters for /timeline. ... (check-in: 95335751 user: drh tags: trunk)
00:20
Improvements to the way mlink is computed. Some unnecessary mlink entries are suppressed. Running "fossil rebuild" is recommended. ... (check-in: e2c53534 user: drh tags: trunk)
2015-12-24
20:50
Fix some over-length source code lines. No functional changes. ... (check-in: 9a8d0827 user: drh tags: trunk)
20:25
Enhance the /mlink page to handle the name= query parameter. ... (check-in: a1721621 user: drh tags: trunk)
19:18
Improvements to the /mlink webpage. ... (check-in: fba948a3 user: drh tags: trunk)
14:57
Update the built-in SQLite to the latest trunk version to fix a harmless compiler warning that comes up on newer Macs. ... (check-in: 44c147b0 user: drh tags: trunk)
14:36
Add the /mlink page (accessible only by Admin users) that shows MLINK table content for a check-in for debugging purposes. ... (check-in: 3fdc2c01 user: drh tags: trunk)
13:28
Fix a harmless compiler warning and several over-length source code lines. ... (check-in: d94362b6 user: drh tags: trunk)
2015-12-23
21:37
Fix some outdated comments for clarity. ... (check-in: 6e3fcebc user: mistachkin tags: trunk)
21:35
Restore original definitions of the 'LOOK_*' flags. ... (check-in: 31619684 user: mistachkin tags: trunk)
11:10
Improvements to handling of localtime. The 'utc' and 'localtime' query parameters now work on all web pages. Timestamps can be expressed with a timezone modifier and that works correctly. ... (check-in: ea63a2d1 user: drh tags: trunk)
01:37
Enhancements to the lookslike functions. ... (check-in: 6b292eaa user: drh tags: trunk)
01:36
Improvements to activity reports. ... (check-in: c94dc804 user: drh tags: trunk)
2015-12-22
14:44
Removed unneeded variable ... (Closed-Leaf check-in: 2c5a5e82 user: baruch tags: pending-review)
2015-12-21
20:17
Fix so that when showing stats for single user, that user's name is selected in the box ... (check-in: f6844f3a user: baruch tags: pending-review)
08:49
merge trunk ... (check-in: 255327f0 user: jan.nijtmans tags: pending-review)
2015-12-20
02:02
Make use of the new $ROOT feature in the on-line documentation. ... (check-in: 60486250 user: drh tags: trunk)
2015-12-19
14:39
Update the documentation to take advantage of the new $ROOT capabilities. ... (Closed-Leaf check-in: 8c0eabcb user: drh tags: use-ROOT)
14:38
Add support for expanding $ROOT in href= and action= of HTML output into the top-level directory of the repository. ... (check-in: e57ab295 user: drh tags: trunk)
13:08
Fix a minor typo in the git-import logic. ... (check-in: f7afea94 user: drh tags: trunk)
2015-12-17
15:58
Clean rebuild of SQLite (so the source_id of fts5 matches the one from SQLite itself) ... (check-in: 5b30c544 user: jan.nijtmans tags: trunk)
03:29
Minor corrections in grammar to Fossil vs Git rewrite. ... (check-in: 0b90da30 user: andybradford tags: trunk)
02:02
Remove stale code accidently left in an earlier commit. ... (check-in: 61c8d418 user: drh tags: trunk)
2015-12-16
19:01
Enhancements to the "webpage-ex.md" documentation page: "Webpage Examples". ... (check-in: 03a64a6f user: drh tags: trunk)
18:31
Further edits to the fossil-v-git.wiki page. ... (check-in: 7c32a784 user: drh tags: trunk)
16:13
Rewrite the "fossil versus git" document. ... (check-in: ca891ab6 user: drh tags: trunk)
02:31
Record fewer digits of the SHA1 hashes in the JSON that defines a timeline graph. ... (check-in: eba19952 user: drh tags: trunk)
01:21
Add the unpub query parameter to the /bloblist webpage. ... (check-in: c8b1e81f user: drh tags: trunk)
01:06
Add 'download' parameter to the 'artifact' web page that allows a specific artifact to be downloaded by specifying the file name and check-in. ... (check-in: d10e2cb6 user: drh tags: trunk)
00:59
Add 'download' parameter to the 'artifact' web page that allows a specific artifact to be downloaded by specifying the file name and check-in. ... (Closed-Leaf check-in: 40933474 user: mistachkin tags: artifactDownload)
2015-12-15
20:53
Fix a missing hyperlink in the change log. ... (check-in: 26841243 user: drh tags: trunk)
20:51
Update the version number to 1.35. Begin writing the change log for version 1.35. ... (check-in: f998a1bf user: drh tags: trunk)
20:18
Minor fix to the previous "fossil diff" enhancement to avoid unnecessary warnings about directories not being found if the directory does not contain any files that were changed. ... (check-in: b789df4b user: drh tags: trunk)
20:07
Enhance the "fossil diff" command so that it accepts directories as arguments and shows diffs on all files contained within those directories. ... (check-in: c46f9805 user: drh tags: trunk)
16:12
Add the "bisect" query parameter the /timeline. Add the "fossil bisect ui" command that runs "fossil ui -page 'timeline?bisect'". ... (check-in: cbde2cf7 user: drh tags: trunk)
14:46
Add the --page option to the "fossil ui" command. ... (check-in: f55f64e2 user: drh tags: trunk)
2015-12-14
23:13
Fix the "add" command so that it prints "SKIP" instead of "ADDED" for files that are already under management. Code to do this was already in place, but it did not work correctly due to a logic error. ... (check-in: d252cfd6 user: drh tags: trunk)
2015-12-13
03:13
Fix one error and add an additional note to the article on the annotate algorithm. ... (check-in: 9828493c user: drh tags: trunk)
02:55
Add the /doc/trunk/www/blame.wiki document briefly describing the algorithm used to compute "blame" in Fossil. ... (check-in: 91af24e6 user: drh tags: trunk)
02:11
Enhance the /finfo webpage so that when it is showing the ancestors of a particular check-in, it only shows direct ancestors, the same as the /annotate and /blame pages. ... (check-in: f8db2c74 user: drh tags: trunk)
01:37
Fix typo on the TH1 extension commands page. Also, for now, remove the 'todo' section. ... (check-in: dfa8efc5 user: mistachkin tags: trunk)
01:26
Bring some comments in the "blame" logic up-to-date. No changes to code. ... (check-in: 05f73ffb user: drh tags: trunk)
00:35
Change compute_direct_ancestors() to use a recursive common table expression. ... (check-in: 6599d097 user: drh tags: trunk)
2015-12-12
20:01
Eliminate unused variable $suffix ... (check-in: 6d84c632 user: jan.nijtmans tags: trunk)
2015-12-11
20:52
Enhance the "mkdownload.tcl" script so that it recognizes either tarballs or ZIP archives, with a preference for tarballs. ... (check-in: fb94a70d user: drh tags: trunk)
16:14
Update the built-in SQLite to the latest trunk version (3.10.0 alpha). ... (check-in: 22681034 user: drh tags: trunk)
16:11
Add the nohdr boolean query parameter to the /vdiff page. ... (check-in: 2532f1bc user: drh tags: trunk)
15:53
Remove incorrect documentation regarding cloning via SSH. Fossil does not touch passwords when SSH is used for cloning. ... (check-in: 230fdcf6 user: andybradford tags: trunk)
12:50
Fix 96d3e99ffe59b528: Memory allocation bug. I saw crashes on 32-bit Linux (Ubuntu 14.04), so it's not only win32 which was affected by this bug. ... (check-in: b85b159b user: jan.nijtmans tags: trunk)
2015-12-10
13:11
Improved documentation for cloning, including mentioning the use of %40 for "@" characters in the userid. ... (check-in: b5354f19 user: drh tags: trunk)
2015-12-08
12:45
Add the ".changes ON|OFF" command to the "fossil sqlite" command-line shell ... (check-in: 1e723a12 user: jan.nijtmans tags: trunk)
2015-12-07
18:19
Update the built-in SQLite to fix a harmless but annoying bug in the directory sync logic. ... (check-in: a4889252 user: drh tags: trunk)
2015-12-05
21:28
Get the correct date for clusters when describing artifacts. ... (check-in: 13b68865 user: drh tags: trunk)
21:22
On the /artifact page, provide an improved description of cluster artifacts. Also show the rcvfrom information on all artifacts to Admin and Setup users. ... (check-in: 8b2d32cc user: drh tags: trunk)
20:04
Improvements to the /bigbloblist page. Fix the output_table_sorting_javascript() routine so that the sort is stable even when selecting a field that defaults to sorting in reverse order. ... (check-in: f9826423 user: drh tags: trunk)
19:21
Add the /bigbloblist information page. ... (check-in: 483317fb user: drh tags: trunk)
18:53
Minor tweak to the server.wiki document. ... (check-in: e75f160c user: drh tags: trunk)
2015-12-04
14:57
off-by-24 error in handling of long directory names (>MAX_PATH-12) on Windows ... (check-in: 2900c25d user: jan.nijtmans tags: trunk)
14:36
Update OpenSSL to version 1.0.2e ... (check-in: 1376aa44 user: jan.nijtmans tags: trunk)
00:40
Update the built-in SQLite to the latest 3.10.0 alpha. ... (check-in: 5032c50d user: drh tags: trunk)
2015-12-03
22:53
On Windows, deal with the reserved 12 characters (8.3) always needed for long directory names. ... (check-in: 9571b68a user: drh tags: trunk)
15:41
Improved cross-linking of clusters. ... (check-in: 24606598 user: drh tags: trunk)
15:19
Do not duplicate markdown titles in the title of the page and in the body of the document. ... (check-in: d407c384 user: drh tags: trunk)
15:07
When markdown begins with a <h1> HTML element, consider the content of that element to be the title of the document. ... (check-in: cc7f4df4 user: drh tags: trunk)
08:57
Correct code for style, no change in functionality. ... (Closed-Leaf check-in: 654fb1f4 user: andybradford tags: pending-review)
08:36
Crosslink clusters so that fossil test-clusters and test-describe-artifacts will be able to identify them correctly. ... (check-in: 81bdb687 user: andybradford tags: pending-review)
2015-12-02
20:23
Experimental changes to deal with the reserved 12 characters (e.g. 'FILENAME.EXT') always needed for long directory names on Windows. ... (Closed-Leaf check-in: 6ebef28f user: mistachkin tags: pending-review)
20:18
Fix harmless compiler warning. ... (check-in: a3691d76 user: mistachkin tags: trunk)
09:55
Capitalize "Fossil" in the concepts.wiki document. ... (check-in: b63c4300 user: drh tags: trunk)
09:50
Improved command-line help for push, pull, sync, and clone commands. ... (check-in: 26d0c20a user: drh tags: trunk)
2015-11-30
00:23
Remove extra colon and space in section topics in style guidelines. ... (check-in: 069084af user: andybradford tags: trunk)
2015-11-29
17:33
Fix the backslash-octal escapes on the filename quoting while importing from git. ... (check-in: 09cf1ad8 user: drh tags: trunk)
03:51
Fix incorrect form generation for zip pages from redirected anonymous login. This only happens when the zip permission is only allowed after anonymous login is successful. ... (check-in: 167dec48 user: andybradford tags: trunk)
2015-11-28
19:59
Include the filename in the form action when redirected from login required to avoid needing to use Content-Disposition header to hint the client what the filename is. ... (Closed-Leaf check-in: 5f32bf71 user: andybradford tags: pending-review)
2015-11-24
23:41
Fix compiler warnings seen with MSVC. Add comments. ... (check-in: 52e3d9d8 user: mistachkin tags: trunk)
23:38
Prevent the test command 'test-th-hook' from segfaulting when TH1 hooks are disabled. Also, add and enhance comments. ... (check-in: ddd4cb52 user: mistachkin tags: trunk)
2015-11-23
20:53
fixed typo as suggested on ML ... (check-in: 565d1b0a user: m.ramakers@gmail.com tags: trunk)
2015-11-22
05:30
Restore historical behavior of allowing both pull-only and pullonly in autosync setting. ... (check-in: acc0200a user: andybradford tags: trunk)
2015-11-21
18:37
Revise TH1 proc_command fix from the previous check-in so it more closely matches the original fix from [f2d87242503d7a7d]. ... (check-in: c66083ed user: mistachkin tags: trunk)
17:25
If the proc argument list is an empty list, don't segfault by accessing memory outside the bounds of the array. For example, as used in the footer /artifact/7f36cbf30a82ef3cec30c1917a96415fa7d76eeb?txt=1&ln=3 ... (check-in: 7c3cb470 user: andybradford tags: trunk)
2015-11-19
09:44
Fix uninitialized variable in command-line shell dc2ac024d3 and other shell improvements, cherry-picked from SQLite trunk. ... (check-in: 63256980 user: jan.nijtmans tags: trunk)
2015-11-18
13:50
Check for ENABLE_DBSTAT_VTAB feature in stead of SQLite version number before using the dbstat virtual table: It might be that the SQLite version is OK, but it is compiled without ENABLE_DBSTAT_VTAB. ... (check-in: 1a6892ae user: jan.nijtmans tags: trunk)
2015-11-17
23:22
Show how to enable/disable the access-log and admin-log from their display pages. Add the "Stats" button to the Admin main menu. ... (check-in: 3967d043 user: drh tags: trunk)
19:58
Add the Access-Log submenu button to the User List page. ... (check-in: e60a0211 user: drh tags: trunk)
19:52
Revamp the user list setup page. Show the last change time and expiration date for each login. Make the user list sortable using javascript. ... (check-in: 01b13199 user: drh tags: trunk)
19:51
Change the user list to a sortable table. ... (Closed-Leaf check-in: 72de3100 user: drh tags: user-config-revamp)
17:12
Improved display of the user list on the setup menu. ... (check-in: d3fbf717 user: drh tags: user-config-revamp)
14:29
Move the side-bar documentation for the user-list page onto a separate page accessible from the "Help" submen of the user-list page, for improved readability. ... (check-in: 18df719e user: drh tags: user-config-revamp)
2015-11-14
19:03
Fix a memcmp() that really should be fossil_strcmp(). ... (check-in: 5853fcf1 user: drh tags: trunk)
16:16
Enhanced description of how to set up the /proc filesystem inside of a chroot jail. ... (check-in: 28a1da05 user: drh tags: trunk)
2015-11-13
10:00
pedantic upstream cson -Wall/-Werror fixes (unused static consts) for clang. ... (check-in: f5bed9ce user: stephan tags: trunk)
2015-11-12
16:00
Fedora 23 is latest. Build shared tcl8.6 inside fossil docker container (so it can be left out if desired) ... (check-in: ddca9b07 user: jan.nijtmans tags: trunk)
11:37
Micro-optimization in lookslike* functions, proving that LOOK_CR can be expressed as (LOOK_LONE_CR | LOOK_CRLF) and LOOK_LF as (LOOK_LONE_LF | LOOK_CRLF). This saves 6 assembler-instructions in the loops. Ready to be reviewed. ... (check-in: 13c796a4 user: jan.nijtmans tags: pending-review)
11:32
re-shuffle LOOK_XXX flags such that LOOK_CR and LOOK_LF are last ... (check-in: b29b7fd3 user: jan.nijtmans tags: pending-review)
2015-11-10
16:38
Add the "fossil all config pull" command. ... (check-in: d3b14a8e user: drh tags: trunk)
12:16
Fix a missing comma in the /test_env page. ... (check-in: 5f962bfa user: drh tags: trunk)
2015-11-09
08:58
Cherry-pick part of 138783b5 from SQLite trunk. Harmless compile warning. ... (check-in: 9a11b49e user: jan.nijtmans tags: trunk)
2015-11-06
08:45
Cherry-pick part of 138783b5 from SQLite trunk. Reported by Don Porter here: http://cyqlite.sourceforge.net/cgi-bin/sqlite/tktview?name=d4593fcd90 (If SQLite 3.9.3 is ever released, I hope this harmless warning is fixed in it) ... (check-in: ac377196 user: jan.nijtmans tags: branch-1.34)
08:09
Use the same definition of BINARY in multiple places of fossil. Reported by sky5walk. ... (check-in: b51ba293 user: jan.nijtmans tags: trunk)
2015-11-05
02:38
Add new environment variables to the set that is displayed on the /test_env page. ... (check-in: 690824e9 user: drh tags: trunk)
2015-11-04
17:51
Improved highlighting of changes in the color-coded side-by-side diff. ... (check-in: 81cae7fe user: drh tags: trunk)
00:36
Include the release version number in the footer of all the built-in skins. ... (check-in: 2186f0f0 user: drh tags: trunk)
00:18
Fix issue with [9ecbfb3724] that caused the versioned 'allow-symlinks' setting to be ignored. ... (check-in: 81d7ce30 user: mistachkin tags: trunk)
2015-11-03
22:09
Update the built-in SQLite to version 3.9.2 ... (check-in: aa92270f user: jan.nijtmans tags: trunk)
21:50
Enable symlinks by default on non-Windows platforms and make sure that the 'open' command honors the global 'allow-symlinks' setting in addition to the versioned and per-repository ones. ... (check-in: 9ecbfb37 user: mistachkin tags: trunk)
21:46
Make sure that the 'open' command honors the global 'allow-symlinks' setting in addition to the versioned and per-repository ones. ... (Closed-Leaf check-in: 8aed22a2 user: mistachkin tags: unixSymlinks)
19:51
Enable 'allow-symlinks' setting by default on non-Windows platforms. ... (check-in: 6ee986b1 user: mistachkin tags: unixSymlinks)