Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
67 check-ins using file src/sqlite3.c version 859bc9d7f6
|
2011-10-26
| ||
| 15:07 | Update test cases to work with or without the USE_TCL_EVALOBJV compile-time option enabled. check-in: 7d43a362d0 user: mistachkin tags: tcl-integration | |
| 14:57 | Perform lazy setup of the Tcl integration subsystem when it is actually enabled. check-in: e49581506a user: mistachkin tags: tcl-integration | |
|
2011-10-22
| ||
| 15:42 | Added forceLogout option to json/user/save. check-in: 98debcacc8 user: stephan tags: json-multitag-test, json | |
|
2011-10-21
| ||
| 15:25 | Fixed a minor mem leak. Got /json/user/save mostly working. check-in: 080acb91be user: stephan tags: json-multitag-test, json | |
|
2011-10-20
| ||
| 18:48 | minor code simplifications. check-in: 400fe340c2 user: stephan tags: json-multitag-test, json | |
| 18:28 | fixed a type conversion error caused by last round of refactoring. check-in: f566811477 user: stephan tags: json-multitag-test, json | |
| 07:00 | Moved the user-related JSON handlers into their own file. check-in: 6e18fc2ecc user: stephan tags: json-multitag-test, json | |
| 01:20 | Refactored json_stmt_to_array_of_xxx() to actually take a cson_array argument (not generic cson_value arg), now that the cson API allows that simplification. check-in: 23a35ba1cc user: stephan tags: json-multitag-test, json | |
| 01:12 | Additional makefile changes so the "../$CHECKOUT/configure; make test" works. Closed-Leaf check-in: 6f285b5fa9 user: drh tags: maketest_fixes | |
| 01:04 | added a TODO. check-in: 23d69df6a8 user: stephan tags: json-multitag-test, json | |
| 01:04 | Fix the makefile so that "make test" works from a sibling build directory. check-in: 16d7e4a5c0 user: drh tags: maketest_fixes | |
|
2011-10-19
| ||
| 23:56 | Enhanced /json/artifact/FILE_UUID a bit. Now only includes full content if explicitly told to, but returns more metadata even for binary files. check-in: 2165e77c85 user: stephan tags: json-multitag-test, json | |
| 22:31 | merged in trunk [e161670939b93ec]. check-in: 1d0a7103a3 user: stephan tags: json-multitag-test, json | |
| 22:12 | Added permissions checks to artifact/file and artifact/wiki. Renamed a mysterious mlink property. check-in: 83ba8852a7 user: stephan tags: json-multitag-test, json | |
| 21:53 | refactored json_artifact_file() a bit to re-use other code. check-in: a4f4c62a1a user: stephan tags: json-multitag-test, json | |
| 21:53 | removed a no-longer-true "untested" marker. check-in: 4f196f15fb user: stephan tags: json-multitag-test, json | |
| 21:26 | Re-implemented json_artifact_wiki() to use pre-existing functionality. check-in: f996e6636c user: stephan tags: json-multitag-test, json | |
| 21:13 | s/fossil_is_json/fossil_has_json/g. Moved fossil_has_json() (nee fossil_is_json()) decl/docs to json_detail.h. check-in: d2c1ae23a9 user: stephan tags: json-multitag-test, json | |
| 20:54 | Fixed a C99/C++ism. Added json_new_string_f() (printf-style). check-in: f5cc421dc2 user: stephan tags: json-multitag-test, json | |
| 20:36 | A number of small doc improvements. check-in: fa17e0980c user: stephan tags: json-multitag-test, json | |
| 20:28 | Bringing back the fixes for the 'make test' from [bf480a29a6], [e46be99ff4], [129605856a], for an eventual merge to trunk. check-in: 5692702d50 user: viriketo tags: maketest_fixes | |
| 19:54 | Merge in the annotatecmd_fix branch. check-in: e161670939 user: drh tags: trunk | |
| 18:59 | Fix for ticket [e5999e25eedeb]. Code style fix. check-in: 4a296c0b1c user: jan tags: trunk | |
| 15:47 | fixed json_page_top() and json_cmd_top() to behave as documented when a callback returns non-NULL but does set the error state. check-in: 2f48be58a7 user: stephan tags: json-multitag-test, json | |
| 14:56 | removed a superfluous call to json_set_err() which "overwrote" the previously set error. check-in: 1615544773 user: stephan tags: json-multitag-test, json | |
| 01:49 | Fix a missed class="button" on the info page. check-in: 5f0899bba6 user: drh tags: trunk | |
| 01:44 | Increase the version number to 1.20. Improvements to style sheets. check-in: 91db2ccfa2 user: drh tags: trunk | |
| 01:29 | Merge updates from trunk. check-in: 62d928cb41 user: mistachkin tags: tcl-integration | |
|
2011-10-18
| ||
| 23:37 | When editing the properties of a check-in and comparing the old and new comment text, ignore leading and trailing whitespace and the differences between \r\n and \n. Hopefully this will reduce the number of unwanted comment edits. check-in: 48928829e2 user: drh tags: trunk | |
| 21:20 | Adding a space I forgot in in the html output. Closed-Leaf check-in: 61523cbe67 user: viriketo tags: targets_setting | |
| 20:55 | Adding a boolean setting to choose the use of 'targets' in the anchors href. Default enabled. Related to the thread starting at [http://www.mail-archive.com/fossil-users@lists.fossil-scm.org/msg06588.html] check-in: d29df2f0a2 user: viriketo tags: targets_setting | |
| 19:49 | Bringing the changes I had in [4bae75a08e] to a trunk-derived branch. check-in: ef5d2176f9 user: viriketo tags: annotate_links | |
| 19:45 | Should fix ticket [f0f9aff371f2]. Until now, the annotate_cmd was taking the last (or any?) checkin that had the artifact to be annotated, totally unrelated to what version is checked out. I made annotate_cmd respect the checkout, and annotate only from the past until the checked out version. This makes the command slower, but at least does what I'd like it to do. Maybe someone else can come up with a faster or simpler implementation. I changed the compute_direct_ancestors code so I could call it twice in a single run. Closed-Leaf check-in: c7c4279f13 user: viriketo tags: annotatecmd_fix | |
| 13:06 | add support for fetching text file content and checkin history via /artifact json request check-in: 3d1d139a7a user: zach tags: json-multitag-test, json | |
|
2011-10-17
| ||
| 23:12 | Fix typo in warning message. check-in: c80ee413ab user: drh tags: trunk | |
| 18:03 | Removed some dead code. Experimentally enabled jQuery ajax back-end to test a problem on my 3DS. check-in: ebb0c04749 user: stephan tags: json-multitag-test, json | |
| 16:08 | merged in trunk [fda7c2c63d] for side-by-side diffs. check-in: 571f3aca5b user: stephan tags: json-multitag-test, json | |
| 16:01 | Fixed an incorrect const qualifier (caught by clang). check-in: fda7c2c63d user: stephan tags: trunk | |
| 13:09 | Font size adjustments for side-by-side diff. Use the dp= query parameter of timeline on the info page. check-in: eefb31683b user: drh tags: trunk | |
| 11:37 | Fix the labeling of timelines with the dp=UUID query parameter. check-in: a47fde8eed user: drh tags: trunk | |
| 01:19 | Merge the side-by-side diff code into trunk. check-in: 0bde74ea1e user: drh tags: trunk | |
| 01:18 | Remove unused variables and surplus blank lines from the side-by-side diff code. Closed-Leaf check-in: a92908a6b5 user: drh tags: jan-sbsdiff | |
| 01:12 | Add new warnings for when Fossil overwrites an unmanged file on "update" or "merge". Undo has been and continues to be available to recover the overwritten files. check-in: 39f979b08c user: drh tags: trunk | |
| 00:26 | Rephrasing and fixed a typo. check-in: 8e358aa8c6 user: jan tags: jan-sbsdiff | |
|
2011-10-16
| ||
| 23:24 | Merge the latest trunk changes into the side-by-side diff branch. check-in: 23c3affad4 user: drh tags: jan-sbsdiff | |
| 23:10 | Fix a typo in the timeline EVENT table entries generated by "fossil rebuild" in the previous check-in. check-in: fd486df492 user: drh tags: trunk | |
| 23:00 | Show tag changes on the timeline. A "fossil rebuild" is required to take advantage of this new feature. Also put a • character in front of non-checkin timeline entries to make them stand out more. check-in: 87540ed6e6 user: drh tags: trunk | |
| 21:04 | Renamed 1/2-pane diffs to unified and side-by-side in the ui. check-in: ff9de303e3 user: jan tags: jan-sbsdiff | |
| 17:32 | Fix new and harmless compiler warnings that appeared with the upgrade to GCC 4.6.1. check-in: d8bbe4add6 user: drh tags: trunk | |
| 16:19 | Add sbsdiff options when using show-version-diffs. check-in: adace7586e user: jan tags: jan-sbsdiff | |
| 14:33 | Removed a GNU-make-only construct which broke Jan's build. check-in: 8da8432630 user: stephan tags: json-multitag-test, json | |
| 13:35 | Set explicit background color for sbsdiff table in skins. check-in: f4f5e05571 user: jan tags: jan-sbsdiff | |
| 13:29 | pulled in latest cson for cson_object_merge(). check-in: d3ad893c5b user: stephan tags: json-multitag-test, json | |
| 13:29 | fixed a memleak of parent artifact uuid. long live valgrind. check-in: 3db8bfc5bf user: stephan tags: json-multitag-test, json | |
| 12:56 | Merge latest changes from trunk check-in: 1349e5ed20 user: ashish tags: ashish-ipv6 | |
| 10:04 | merged/resolved trunk [ee723ed98ddb0a]. check-in: a40ac8fdc4 user: stephan tags: json-multitag-test, json | |
| 02:07 | Separate sbsdiff block separator meta-rows a little more from regular rows in built-in skin 4. check-in: 7a47abe17f user: jan tags: jan-sbsdiff | |
| 00:14 | Updated styles/skins. Built-in skin 4 can now wrap lines. check-in: 1c40493cb5 user: jan tags: jan-sbsdiff | |
|
2011-10-15
| ||
| 21:25 | Add sbsdiff link to the /info page. check-in: 286f09508c user: jan tags: jan-sbsdiff | |
| 18:45 | Add button to toggle sbsdiff for /vdiff views. Renamed the button in /fdiff. check-in: d1f63cd823 user: jan tags: jan-sbsdiff | |
| 18:05 | Add button to toggle sbsdiff for /fdiff views. check-in: d0988fb5bb user: jan tags: jan-sbsdiff | |
| 17:36 | Vary the number of columns of displayed files in the File List depending on the length of the longest filename in the list. check-in: ee723ed98d user: drh tags: trunk | |
| 17:18 | Update to the Fossil-v-Git matrix. check-in: a52287876c user: drh tags: trunk | |
| 15:42 | Merge the latest trunk changes into the side-by-side diff branch. check-in: 15de70c21f user: drh tags: jan-sbsdiff | |
| 12:30 | Fix clang static analyzer warnings about deref null pointers and undefined values. There are still lots of dead code warnings, but those are harmless. check-in: 630691456b user: drh tags: trunk | |
| 12:16 | Mark functions that never return (ex: fossil_panic()) as such so that static analyzers can do a better job of pruning paths. check-in: 86d2b4efc8 user: drh tags: trunk | |
| 10:40 | Update the built-in SQLite and the SQL command-line shell to the latest code from the SQLite trunk: version 3.7.9 alpha. This fixes some warnings that started appearing after upgrading to gcc 4.6.1. check-in: 3dd0c15583 user: drh tags: trunk | |