Timeline
Not logged in

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

144 check-ins related to "experimental"

2013-01-23
13:24
Add the max-download-time server option that limits the amount of real-time that the server will spend preparing an xfer protocol reply. check-in: 769c90a230 user: drh tags: trunk
12:31
Only check time, if it is set. Closed-Leaf check-in: 970cc4f16f user: joerg tags: experimental
2013-01-18
22:05
Add new option max-download-time to limit the processing time of pull/sync /clone requests. This helps to significantly cut down the number of time outs clients receive on busy server with reverse proxy configuration. It generally provides better response times. check-in: ee6ae580ee user: joerg tags: experimental
21:34
Run "analyze" after a rebuild. For small repositories, the time doesn't matter and for large repositories, the effect on the query plans are huge. Push/pull for example will otherwise do a sequential scan of the blob table and joining that with the unclustered table afterwards, when the other way around is several order of magnitudes more efficient... check-in: 80bf94e0f7 user: joerg tags: trunk
2012-10-09
14:32
An alternative way to get mime-types from attachments for the "raw" page. Leaf check-in: b21df7ecaf user: drh tags: experimental
01:41
Update SQLite from upstream in order to test SQLite. check-in: 51858373cb user: drh tags: trunk
2012-09-06
10:23
Show the number of changes following a "fossil update". check-in: 3db1cf69e5 user: drh tags: trunk
2012-02-09
13:55
Experimental changes to the "update" command to have it report when it makes no changes to the repository. Closed-Leaf check-in: be10939bff user: drh tags: experimental
2012-02-08
03:04
Update the version number to 1.22 and begin entering change log information for the next release. check-in: 9b1d394a71 user: drh tags: trunk
2011-07-28
19:57
Merge Joerg's export command improvements into trunk. check-in: dd74352d2c user: drh tags: trunk
2011-07-23
23:01
Fix logic error: look up mlink entries of the commit, not the parent. Closed-Leaf check-in: 9a67937056 user: joerg tags: experimental
00:24
During the first phase of export, explicitly try to process the commits in order of delta chains to minimize recomputation and cache trashing. check-in: 2cfb415b23 user: joerg tags: experimental
2011-07-22
23:46
If a branch does not have a color set for it, choose a background color for the timeline background based on a hash of the branch name. check-in: c946b573c7 user: drh tags: trunk
2011-04-15
11:57
Merge the refactored "add", "del", and "addremove" commands into trunk. check-in: 8ae917362c user: drh tags: trunk
00:59
Completely forget about files that were added then removed without ever been committed. Closed-Leaf check-in: 97e5ff20d7 user: drh tags: experimental
2011-04-14
22:41
Refactoring the "add", "del", and "addremove" commands. check-in: 2b95102592 user: drh tags: experimental
18:09
Refactoring the directory scanning code used by recursive add, extra, and clean. Seems to work but needs more testing prior to folding into trunk. check-in: f60f56025c user: drh tags: experimental
14:23
Factor the glob-pattern matching logic into a separate module. check-in: 289ea2a9b6 user: drh tags: trunk
2011-02-02
01:09
After a few days of internal use for testing, merge the changes for the new LEAF meta-data table into the trunk. NB: "<b>fossil all rebuild</b>" is required when updating through this change. check-in: 5ac4e15182 user: drh tags: trunk
2011-01-28
21:52
Remove extraneous hyperlinks from the Tags and Branches timelines since the "tag:" hyperlinks now cover that functionality. Closed-Leaf check-in: b6e66cdd08 user: drh tags: experimental
20:56
Add a new meta-data table named LEAF that holds a precomputed set of all leaves in the checkin DAG. Use this precomputed table rather than trying to compute the LEAFs on the fly, as a performance enhancement for repositories with many checkins. A rebuild is required. check-in: 69f43fc077 user: drh tags: experimental
19:09
Add end-tags to the anchors in the [/doc/trunk/src/makeheaders.html] document. check-in: b6a4e8592d user: drh tags: trunk
2011-01-26
20:24
Experimental after_dephantomize() enhancement checks out, so pull it into the trunk. check-in: 62d114ee12 user: drh tags: trunk
16:23
Avoid unnecessary deep recursion in after_dephantomize() when using delta-manifests. Closed-Leaf check-in: 2739272921 user: drh tags: experimental
15:37
Make the definition of "leaf" on the "leaves" page more precise. check-in: 752895d916 user: drh tags: trunk
2011-01-07
16:20
Merge the experimental export speed enhancement into trunk. check-in: 7aaa2aa417 user: drh tags: trunk
2011-01-05
18:55
Experimental change to try to make "export" run faster for massive repositories. Closed-Leaf check-in: c9a903c2bc user: drh tags: experimental
18:41
Add the --ignore option to the "add" command and have "add" honor the "ignore-glob" setting. Ticket [f270321c0f74b354f05] check-in: be3d2154da user: drh tags: trunk
2010-12-21
21:32
Merge into trunk from experimental the lookaside hit and miss stats associated with the --sqltrace option. check-in: b41d0f6120 user: drh tags: trunk
2010-12-20
16:57
Additional lookaside buffer measurements associated with an experimental version of SQLite, enabled only when --sqltrace is used. Closed-Leaf check-in: 9688ec1d00 user: drh tags: experimental
14:52
Update the --sqltrace debugging option so that it outputs memory usage statistics within SQL comments. check-in: cb745cc789 user: drh tags: trunk
2010-12-18
21:26
Bring the "stash" enhancement into the trunk. check-in: 12a2a5eaf2 user: drh tags: trunk
21:22
Add the "stash diff" and "stash gdiff" commands. Closed-Leaf check-in: 987e0ff78d user: drh tags: experimental
20:54
Fix a couple of out-of-order variable declarations. check-in: 4a8b4210f7 user: drh tags: experimental
20:39
Many bug fixes while testing stash: Fix "revert" so that it updates the file status correctly. Fix several cases of "//" being used as a file separator instead of just "/". Fix undo on stash apply. Make "stash drop" undoable. Update documentation for undo and stash. check-in: 8a6aa0a13f user: drh tags: experimental
18:56
The "stash" functionality is now in place. Need to test more prior to merging into trunk. check-in: 22aa74dcdf user: drh tags: experimental
17:24
Begin adding code to implement the "stash" command. The code compiles and runs but is currently incomplete. This is an incremental check-in to preserve state. (Ironically, if "stash" were working, I'd have probably just done a "stash snapshot" to capture this state, rather than an experimental branch.) check-in: b3dadcc4a6 user: drh tags: experimental
14:18
Simplifications to the implementation of undo/redo. Add the --explain option to undo/redo that shows what would be undone or redone without actually doing anything. check-in: 30981b64a4 user: drh tags: trunk
2010-12-14
00:36
Merge in the experimental clone speed enhancement. check-in: 3543ed62bb user: drh tags: trunk
2010-12-09
15:52
New cloning algorithm appears to be much faster at the cost of slightly more network bandwidth. Fully backwards compatible. Need to look at the network bandwidth issue prior to merging with trunk. Perhaps a command-line option for the clone command to select between slow-and-small or fast-and-larger. Closed-Leaf check-in: 8bb8be26ca user: drh tags: experimental
13:56
Use the built-in SQLite caseless string comparison functions instead of the C-library strcasecmp(). Accept mime-type application/x-fossil-uncompressed and avoid decompression when seen. check-in: 0b6c414c6f user: drh tags: trunk
2010-11-11
13:36
a stab at fast-import/export support building on the 'import' branch from drh. Closed-Leaf check-in: 7043db15b8 user: gcw tags: gcw-fast
2010-11-09
11:05
Merge the import/export changes into trunk. Even though they are incomplete, they do not threaten the correctness of other commands and can be developed in trunk. check-in: 0f024d3e30 user: drh tags: trunk
2010-11-08
23:26
Export works for Fossil and SQLite repositories. Does not yet export tags. Also need to add incremental export. Closed-Leaf check-in: e25884d44f user: drh tags: experimental
20:07
Merge in the [696668aa4ec88213c] fix, which is necessary to successfully export the Fossil self-hosting repository. check-in: 95f709cd4f user: drh tags: experimental
19:00
Begin adding "import" and "export" commands for converting repositories from and to the Git format. The "export" command currently generates output but is not quite correct. The "import" command is still a stub. check-in: b3fd32f925 user: drh tags: experimental
15:33
Fix a typo in an error message in the merge logic. check-in: 370a89c832 user: drh tags: trunk
2010-10-28
14:03
New higher-performance clone algorithm merged in from the experimental branch. check-in: fda9b15cfc user: drh tags: trunk
13:25
Less frequent status messages while processing using the sync protocol. Closed-Leaf check-in: 0ca42eb3cc user: drh tags: experimental
13:07
Reduce the amount of processing in between when a server timestamp is generated and when it is evaluated for time skew by the client - to reduce the risk of detecting time skew simply due to a slow disk. check-in: a4cdf8d25b user: drh tags: experimental
03:41
Fix the termination condition for the clone client so that it does not stop transferring before all the artifacts have been sent. check-in: 0bb7d7b8ef user: drh tags: experimental
01:58
Do not attempt to process a delta-manifest if its baseline-manifest is a phantom. Defer processing until the phantom is resolved. check-in: b073039b8c user: drh tags: experimental
2010-10-27
19:17
Do not allow clusters larger than about 900 entries. check-in: 06475b2e61 user: drh tags: experimental
16:06
New higher-performance and backwards-compatible clone logic. check-in: 5ba4439b31 user: drh tags: experimental
11:54
Use delta encoding between baseline manifests separated by delta manifests. check-in: e21ca81e1a user: drh tags: trunk
2010-10-26
12:51
Merge the delta-manifest enhancement into the trunk. check-in: d13054ce84 user: drh tags: trunk
2010-10-25
21:47
Improvements and minor bug fixes in "browse" processing. Closed-Leaf check-in: b27d50b421 user: drh tags: experimental
21:16
The "fossil revert" command now clears merge history. Less frequent status output on rebuild. The FOSSIL_OMIT_DELTA_CKSUM_TEST compile-time option is available. check-in: 6c8ed4e147 user: drh tags: experimental
20:10
Remove an processing-order dependency from the rebuild command. check-in: 3770d89f32 user: drh tags: experimental
17:21
Fix bugs in the handling of deleted and added files on delta manifests. check-in: 05b152aedf user: drh tags: experimental
13:52
Redesign the control-artifact and manifest parser to run faster. check-in: fa0ea2c3fa user: drh tags: experimental
11:12
Bug fix in the manifest parser. check-in: d10f5e9fee user: drh tags: experimental
00:55
Further performance enchancements for browsing. We could still do better, but the current seems fast enough. check-in: ee1cc2bfe4 user: drh tags: experimental
00:33
Performance improvement when browsing repositories with many files. This is an temporary fix - we can do much better. check-in: 4389b36f4f user: drh tags: experimental
2010-10-23
20:24
Create or delete the manifest and manifest.uuid files when turning the manifest setting on and off. check-in: 8175b57923 user: drh tags: experimental
19:43
Transmit the "manifest" setting as part of project configuration. check-in: d57f3c7775 user: drh tags: experimental
14:19
MD5 optimization for x86_64. check-in: df5a8bf0d4 user: drh tags: experimental
12:58
Additional performance enhancements. check-in: 6caba36de5 user: drh tags: experimental
02:51
Simplification to the delta checksum algorithm. Trying to make it run faster. check-in: 4c1bcf6f6a user: drh tags: experimental
02:17
Rework the manifest cache so that it is more effective on repositories with large numbers of delta-manifests. check-in: bcf601a649 user: drh tags: experimental
2010-10-22
14:48
Use a faster tokenizer on manifests to reduce rebuild times by about 5%. check-in: 121ed7c882 user: drh tags: experimental
13:05
Change the "commit" command so that it will not create the first delta-manifest in a repository unless the --delta option is used. check-in: a69356ae1f user: drh tags: experimental
2010-10-21
20:54
Fix the new SHA1 checksum module so that it does not overwrite its input. check-in: fa9dfc34e5 user: drh tags: experimental
20:08
Replace the RFC-3174 reference implementation of SHA1 with the much faster implementation from NetBSD. check-in: f8f175cf22 user: drh tags: experimental
15:42
Clarification of the comment that describes the algorithm used to choose between a baseline manifest and a delta manifest upon checkin. No changes to code. check-in: b08fce49e1 user: drh tags: experimental
14:00
Better algorithm for deciding when to use a delta-manifest on a check-in. check-in: 7c244251b0 user: drh tags: experimental
2010-10-20
12:31
Fix a bug in the Files browsing logic. check-in: 85e1e3d4a1 user: drh tags: experimental
2010-10-19
23:50
Bug fix in the new delta-manifest generator logic. check-in: 068b182358 user: drh tags: experimental
20:27
Automatically generate delta-manifests on check-in if the delta-manifest is smaller than 1/125th of the baseline-manifest. check-in: 9ea47d4953 user: drh tags: experimental
17:57
Fix a typo in the file format documentation. check-in: 0f3086bee7 user: drh tags: experimental
17:54
Two new settings: "manifest" and "repo-cksum". The first enables the output of the manifest and manifest.uuid files on each checkout. This is now off by default. The second enables repository checksums. It defaults on. check-in: 2f3b9bd3c5 user: drh tags: experimental
17:01
Improvements to the file format documentation to better describe the new B-card on manifests. check-in: f56c622b7a user: drh tags: experimental
16:26
Fix the check-out mechanism so that it works with delta-manifests. check-in: 0e326631fe user: drh tags: experimental
2010-10-18
22:34
Rework manifest parsing in order to process delta-manifests correctly. check-in: aa61a65c18 user: drh tags: experimental
2010-10-17
17:25
Add the ability to parse and use manifests with the B-card. Add documentation for the B-card. check-in: ec56d8ff58 user: drh tags: experimental
2010-10-16
16:32
Bring over the latest bug fixes from trunk. check-in: b2175857cc user: drh tags: experimental
16:24
Do not attempt to parse control artifacts that do not end with a '\n' character. Ticket [be56c89def7f86bcbd] check-in: 7954ccba68 user: drh tags: trunk
2010-10-15
20:37
Refactor the control-artifact parser. check-in: da9fcdc95a user: drh tags: experimental
17:13
Replace all malloc() calls with fossil_malloc(). The fossil_malloc() routine panics rather than return a NULL pointer. check-in: 8f41b2fa75 user: drh tags: trunk
2010-10-05
03:32
Merge the experimental "Event" changes into the trunk. check-in: d96c4a42f0 user: drh tags: trunk
2010-10-04
01:21
Updates and corrections to the [/doc/tip/www/fileformat.wiki | file format documentation]. Closed-Leaf check-in: 3e48b683de user: drh tags: experimental
2010-10-03
17:32
corrected HTML-Validator problems check-in: 443dbc676a user: wolfgang tags: experimental
12:18
added event.c to PellesC Makefile check-in: 65a12d56ca user: wolfgang tags: experimental
11:52
corrected some HTML-validation problems check-in: 04b33f77a1 user: wolfgang tags: experimental
00:21
Add support for tags on events, including the ability to display a timeline of all events with a particular tag. check-in: a1fcb97dfa user: drh tags: experimental
2010-10-02
18:31
User interface refinements and some documentation added for events. check-in: e5bcc0c924 user: drh tags: experimental
16:35
Add hyperlinks for creating new events and the ability to browse through this history of changes for an event. Add the ability to show "details" of an event. check-in: ba06d3449b user: drh tags: experimental
12:37
Event background colors are now working. check-in: 6f93ca9418 user: drh tags: experimental
03:28
Add the ability to assign background colors to the timeline entries for events. check-in: a5110365a3 user: drh tags: experimental
00:25
First working code for displaying and editing events. check-in: 419903ebd7 user: drh tags: experimental
2010-10-01
22:17
Add the new "Event" artifact type to be used for project milestones, blog posts, news articles, and so forth. The Event artifact format is still subject to incompatible changes. check-in: ed8738b60a user: drh tags: experimental
18:02
Allow fossil branch new --date-override 'YYYY-MM-DD HH:MM:SS' --user-override user thebranch checkin To aid in importing historic data from other scm's check-in: 2cc6fd9107 user: renez tags: trunk
2010-08-26
13:18
Merge the experimental ssh:// changes into the trunk. check-in: 0a51263a23 user: drh tags: trunk
13:17
Untested implementation of popen2() for windows. Closed-Leaf check-in: 34ea1e4abb user: drh tags: experimental
12:10
Remove dead code from cgi.c. Attempt better error handling. check-in: 79294bb81b user: drh tags: experimental
11:27
Fix buffering issues with ssh://. The ssh:// sync method now works with older, unmodified servers. Added the "?fossil=exe" option to URL processing. check-in: af97726337 user: drh tags: experimental
02:32
A rework of the SSH sync method that does not use TCP port forwarding. It works in some cases but not other. The failure is probably do to I/O buffering issues. Need further work. check-in: 192ceef3ca user: drh tags: experimental
2010-08-25
20:00
Merge the ssh:// sync enhancement into the trunk. check-in: 0e42cc1b77 user: drh tags: trunk
19:55
Change the "ui" and "sshd" commands so that they bind to INADDR_LOOPBACK rather than INADDR_ANY. Disable the "quit" monitoring on "ui" and "server". Add better error messages explaining that ssh:// is not yet supported on windows. check-in: 2f8e4c4b38 user: drh tags: experimental
17:00
The ssh:// sync method appears to work now, for linux-to-linux... check-in: 66cdaee68e user: drh tags: experimental
16:03
Continuing work on the ssh:// sync protocol. check-in: 958f596637 user: drh tags: experimental
14:03
Initial code to implement synchronization via ssh. check-in: b19f25fe87 user: drh tags: experimental
2010-08-24
01:24
Fix a potential sigfault that can occur in the graph generator if the child is older than its parent. check-in: 7503f98779 user: drh tags: trunk
2010-03-18
13:26
Merge recent experimental changes (the attachment enhancement and the ability to delete wiki) into the trunk. check-in: f4a25366a7 user: drh tags: trunk
12:55
Change the timeline comment when a wiki page is deleted. Remove some "#if 0" sections from the code. Closed-Leaf check-in: 49e6670386 user: drh tags: experimental
10:39
Show only non-empty wiki pages in the list of all wiki pages. A rebuild is required after updating in order for this feature to work. check-in: 012d5e4f23 user: drh tags: experimental
02:11
Add the ability to delete attachments and fix issues with timelines. check-in: 01c0180b3f user: drh tags: experimental
01:09
Show attachment in timelines. check-in: 2978e43005 user: drh tags: experimental
2010-03-17
23:49
Show artifact changes in ticket history. check-in: 931f8895c6 user: drh tags: experimental
23:15
Basic functionality of attachments is now in place. check-in: dd2d3177b1 user: drh tags: experimental
19:57
Added screens for adding and listing attachments. check-in: 1fcfa000b4 user: drh tags: experimental
2010-03-16
21:33
Work toward adding support for attachments. Keep this on an experimental branch until it is actually working. check-in: c3d7df650b user: drh tags: experimental
16:52
Change the format of the A-card for attachments again. Add the ATTACHMENT table to the repository. Insert attachment information into the ATTACHMENT table when processing attachment artifacts. check-in: 615a52f0ba user: drh tags: trunk
2010-01-21
20:53
Merge experimental remote-url password handling changes into the trunk. check-in: a3c97c9063 user: drh tags: trunk, release
20:52
Use the saved sync-url password for autosync. Closed-Leaf check-in: f703a2fca2 user: drh tags: experimental
20:28
Cleanup the last-sync-url password handling. Automatically prompt for a new password if a sync login card fails. check-in: 05380c5f60 user: drh tags: experimental
20:14
If a sync login fails, prompt for a new password and repeat the attempt. check-in: 0110b93e0c user: drh tags: experimental
19:51
Better reporting of failed logins by the server back to the client. check-in: b030521c42 user: drh tags: experimental
18:13
Factor the sync password out of the last-sync-url configuration setting. Store the password separately. Prompt the user for the password if it is missing. check-in: 59002d5e35 user: drh tags: experimental
2010-01-20
21:51
Fix a bug in file change detection introduced by check-in [d7a583e697]. Don't use that check-in, nor [30f23e3f5c]. check-in: 1abc8a940e user: drh tags: trunk
2010-01-12
13:55
Merge the experimental password changes into the trunk. check-in: 596f3c10fe user: drh tags: trunk
2010-01-11
16:21
Additional clarification in the Password Management document. Closed-Leaf check-in: 261e55346d user: drh tags: experimental
16:09
Updates to the Password Management document. check-in: 1cba86eabb user: drh tags: experimental
15:07
Add the [/doc/tip/www/password.wiki] document. check-in: cac5675e6c user: drh tags: experimental
2010-01-10
20:56
Change the hash algorithm for passwords so that USER.PW field stores a SHA1 hash of the project-code, user login, and user password, rather than just a hash of the user password. That way, the if two users select the same password, or if the one user selects the same password for multiple projects, the password hashes are still different. check-in: 4b58a7b838 user: drh tags: experimental
00:07
Fixes to the configurable "report list". Load the correct default TH script when no report list script is specified. Send and receive the report list TH script together with other ticket configuration scripts. check-in: cd93f5965b user: drh tags: experimental
2010-01-09
22:34
Remove some debug/test printfs that were mistakenly left in the previous commit. check-in: e8b76a69ae user: drh tags: experimental
22:03
Store passwords in USER.PW as either cleartext (as is done in legacy) or as the SHA1 hash of the password. When changing a password or adding a new user, always use the SHA1 hash password. check-in: cfe33dcf92 user: drh tags: experimental
18:43
Call ticket_init() from the report view so users can have access to all the common ticket code check-in: 6d0b76d01f user: jeremy_c tags: trunk
2009-03-29
11:41
If no userid is specified in the URL then the client omits the login card from its request. Closed-Leaf check-in: 09d6a6eb16 user: drh tags: experimental
2009-03-27
14:32
Infrastructure in place on the client side to encrypt sync traffic. This is mostly untested so far because we do not yet have a server that understands encrypted traffic. check-in: 9a23c348b1 user: drh tags: experimental
2009-03-26
23:26
Completed implementation of utility functions to encrypt and decrypt blobs. check-in: bf16ab9b7b user: drh tags: experimental
15:32
Incremental changes toward encrypting sync traffic. The changes are incomplete, but all legacy functionality appears to still works. check-in: 5468ec7c5e user: drh tags: experimental
2009-03-24
22:03
Improvements to the delta generator algorthm so that it runs much faster on large files with very few similarities. There is no change to the delta format generated, so this is fully backwards and forwards compatible. check-in: 522104c2cd user: drh tags: trunk