Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
57 check-ins using file src/info.c version 0e9d439b1d
2014-01-24
| ||
12:37 | Check for "clearsign" option in "fossil branch" command. Reported by J. van den Hoff. ... (check-in: d8a588ba76 user: jan.nijtmans tags: trunk) | |
10:04 | Eliminate two unneeded type-casts and a compiler warning (signed<>unsigned compare) ... (check-in: 17f7b650af user: jan.nijtmans tags: trunk) | |
09:54 | Put Th_SubCommand constant tables in constant memory. ... (check-in: dce90fe35e user: jan.nijtmans tags: trunk) | |
2014-01-23
| ||
21:47 | merge trunk ... (check-in: abb2400434 user: jan.nijtmans tags: win32-longpath) | |
10:29 | No longer require that the HOME directory is writable if the fossil configuration file is already there. (With some simplifications) ... (check-in: b4d538f8c6 user: jan.nijtmans tags: trunk) | |
08:51 | Backout [77d37d910b], which puts back the "fossil sqlite3" command when compiled with --disable-internal-sqlite. Take over matching "shell.c" from SQLite, but relax SQLite version check, otherwise "fossil sqlite3" doesn't work (that was the reason for taking out "fossil sqlite3" in the first place, but at least OpenBSD wants to support it). See: [https://www.mail-archive.com/fossil-users@lists.fossil-scm.org/msg14185.html] ... (check-in: d68cd57a9d user: jan.nijtmans tags: trunk) | |
00:51 | Procedure of checking permission of global config is chenged. Now you can share global config in home directory from cgi. SeeAlso: http://www.mail-archive.com/fossil-users@lists.fossil-scm.org/msg14482.html ... (Closed-Leaf check-in: f47298b25c user: kameda tags: config-permission-check) | |
00:45 | Create new branch named "config-permission-check" ... (check-in: e92e2d4d1f user: kameda tags: config-permission-check) | |
2014-01-22
| ||
18:32 | Fix harmless compiler warnings in SQLite. ... (check-in: 64096c7269 user: drh tags: trunk) | |
18:19 | Update the built-in SQLite to a version that supports ORDER BY and LIMIT on WITH RECURSIVE queries (but omits support for the non-standard LEVEL pseudo-column). Rewrite the recursive query that computes ancestors to using ORDER BY and LIMIT and omit the use of LEVEL. ... (check-in: af990795fc user: drh tags: trunk) | |
2014-01-21
| ||
21:42 | Make sure that sqlite3_strglob() is available and use it: Less code duplication ... (check-in: 7829abd893 user: jan.nijtmans tags: trunk) | |
17:43 | merged in rss-cli. ... (check-in: 4d91004271 user: stephan tags: trunk) | |
17:43 | rss-cli: removed the short-form of -url URL arg because it is not working for reasons beyond my comprehension. ... (Closed-Leaf check-in: 02781897b3 user: stephan tags: rss-cli) | |
11:05 | Remove two SQLite version checks which no longer serve any purpose ... (check-in: 2864db3080 user: jan.nijtmans tags: trunk, sqlite3-compat) | |
00:38 | Update the built-in SQLite to the latest 3.8.3 beta that includes support for the LEVEL pseudo-column on recursive queries. Make use of a recursive query capability and the LEVEL column to replace the compute_ancestors() function with a single query. ... (check-in: f2ebd7e52d user: drh tags: trunk) | |
2014-01-20
| ||
23:17 | Fix a typo in HTML text. ... (check-in: 3d5bc3d433 user: drh tags: trunk) | |
15:10 | Don't compile Cygwin using -DSQLITE_OMIT_CTE: Making it work would cause memory leaks. ... (check-in: 5176783c06 user: jan.nijtmans tags: trunk) | |
13:15 | Now really add utf16be.txt. Compile fossil on Cygwin using -DSQLITE_OMIT_CTE (for test purposes only) ... (check-in: 511eecb0e1 user: jan.nijtmans tags: trunk) | |
13:08 | Allow fossil to be used together with SQLite 3.8.2 amalgamation. Add UTF16-be file for test-purposes. Disable (3-way) merge2 tests which use UTF16 files: 3-way merges with UTF16 files is not (yet) implemented. ... (check-in: 7e9633a9b3 user: jan.nijtmans tags: trunk) | |
2014-01-18
| ||
17:01 | Update the built-in SQLite to the 3.8.3 beta that includes support for common table expressions and recursive queries. ... (check-in: 27ef534d48 user: drh tags: trunk) | |
09:35 | Added rss CLI command help text and removed the permissions checks (which are not valid in CLI mode). ... (check-in: e8edc7ca4b user: stephan tags: rss-cli) | |
09:23 | Fixed off-by-one counter in /timeline.rss and rss CLI command. ... (check-in: 90166ffee3 user: stephan tags: rss-cli) | |
09:17 | Added -url URL flag to set the RSS base URL. ... (check-in: 584c682cad user: stephan tags: rss-cli) | |
08:33 | experimental CLI version of rss feed, per ML request. ... (check-in: e28a5765fa user: stephan tags: rss-cli) | |
2014-01-17
| ||
15:22 | No need to do a 'ci'-check when permitHooks is false anyway. ... (check-in: bed113ca3f user: jan.nijtmans tags: trunk) | |
13:35 | Tree-view expand/collapse enhancements. Press "Reload" after upgraded in order to reload CSS. ... (check-in: 0647dd38b8 user: drh tags: trunk) | |
12:47 | unbreak win/Makefile.mingw for modified SRCDIR ... (check-in: 7b30a7c7ef user: jan.nijtmans tags: trunk) | |
09:07 | Call toggleAll() if expandMap['*'] exists, even if its false (for when the expand query string parameter is used). ... (Closed-Leaf check-in: 8489e29731 user: joel tags: tree-view-work) | |
00:07 | Recognize old IE event object to make tree-view expand/collapse work in IE8. This breaks expand/collapse on FF. ... (check-in: 21426d01b4 user: joel tags: tree-view-work) | |
2014-01-16
| ||
23:43 | Set/unset new "collapsed" class on tree-view lists instead of setting display property. This breaks collapse/expand on Chrome. ... (check-in: 75b96a2912 user: joel tags: tree-view-work) | |
22:15 | Avoid superfluous variable assignment. ... (check-in: cdab54ed78 user: mistachkin tags: trunk) | |
22:02 | Fix harmless compiler warning. ... (check-in: 79eac9a126 user: mistachkin tags: trunk) | |
21:59 | Further fixes for tree-view in ancient versions of Firefox. ... (check-in: f69dbc361c user: drh tags: trunk) | |
21:43 | Improve tree-view styling on IE8. ... (check-in: bfe7eeb71a user: joel tags: trunk) | |
20:49 | Cleanup and fix for Firefox 3.6. ... (Closed-Leaf check-in: cffecc776b user: joel tags: tree-view-work) | |
20:10 | merge trunk ... (check-in: fb647963ea user: jan.nijtmans tags: tree-view-work) | |
20:07 | Fix use of window.getComputedStyle() function for IE8. Same fix as done in [5885241f52c6182e] for timeline. ... (check-in: de0ae9271f user: jan.nijtmans tags: trunk) | |
11:18 | one more attempt ... (check-in: e2a5198ca9 user: jan.nijtmans tags: tree-view-work) | |
11:10 | Attempted fix for FireFox 3.6.28 ... (check-in: be31487c70 user: jan.nijtmans tags: tree-view-work) | |
10:54 | Better NULL-protection against browsers which don't have "history" API ... (check-in: 02b607a07a user: jan.nijtmans tags: tree-view-work) | |
07:05 | Fix various corner cases for the TH1 'string first' and 'string last' sub-commands. ... (check-in: f61958b183 user: mistachkin tags: trunk) | |
06:31 | Fix typo in TH1 'string last' error message. ... (check-in: dd8d317670 user: mistachkin tags: trunk) | |
02:15 | Merge from trunk. ... (check-in: eb5a49f835 user: ashish tags: ashish-ipv6) | |
2014-01-15
| ||
21:41 | Since [5a66b6e785] conversions from Unicode (actually: UTF-16) to UTF-8 are possible on UNIX too ... (check-in: d0d7ca17a4 user: jan.nijtmans tags: trunk) | |
11:43 | Avoid unnecessary no-op write transactions on the server during a pull. ... (check-in: b4dffdac5e user: drh tags: trunk) | |
02:54 | Make tree-view expansions and contractions persist on a "Back" in Chrome and IE. (Works without the extra javascript on Firefox and Safari.) ... (check-in: ab00f2b007 user: drh tags: trunk) | |
01:55 | Add missing "var". ... (Closed-Leaf check-in: cdd441f851 user: joel tags: tree-view-enhancements) | |
01:29 | Improve a comment. ... (check-in: 5e368e911d user: mistachkin tags: trunk) | |
01:26 | Add ID attribute to subdirectory lists. ... (check-in: 24fa1e6802 user: joel tags: tree-view-enhancements) | |
01:26 | For the TH1 unset command, simplify removal of variable from the call frame. ... (check-in: 95292a13fa user: mistachkin tags: trunk) | |
00:15 | Use history API instead of sessionStorage. ... (check-in: 434e4538bc user: joel tags: tree-view-enhancements) | |
2014-01-14
| ||
19:46 | Initialize expandMap variable ... (check-in: 3bdbc0408f user: joel tags: tree-view-enhancements) | |
16:08 | Fix several issues with the TH1 unset command, including a memory leak. Add more tests. Keep the original branch open in case further changes are needed. ... (check-in: 1aeb2726b0 user: drh tags: trunk) | |
15:33 | Persist expand/collapse state of tree-view directories in all modern browsers. ... (check-in: cd554eb63c user: joel tags: tree-view-enhancements) | |
13:41 | Make a change to the test/utf16le.txt file as a test case to verify that the diff logic displays utf16 changes correctly. ... (check-in: 6228efbb7c user: drh tags: trunk) | |
13:39 | Handle utf16 text pages in the /doc webpage. ... (check-in: 1c5b51e6bf user: drh tags: trunk) | |
12:44 | Add the ability to display content and diffs for UTF16 text files in the web interface. ... (check-in: 5a66b6e785 user: drh tags: trunk) | |