Fossil

Timeline
Login

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

50 check-ins occurring around a3641b544118fcf6.

2013-12-14
01:54
Improve comments. Style and consistency fixes. (check-in: d1b7c87650 user: mistachkin tags: win32File)
00:16
Fix the build for unix. (check-in: 4f0c38d81d user: drh tags: win32File)
00:03
Work in progress on refactoring the complex Win32-specific file routines into their own subsystem. (check-in: 4f0413381d user: mistachkin tags: win32File)
2013-12-13
21:46
Unify use of the user-agent string. (check-in: 55c91af5ad user: mistachkin tags: tkt-change-hook)
21:29
Given that recovering from incorrect hiding is relatively straightforward, don't prevent access to hidden option on trunk and main-branch. (check-in: d35b1ca05e user: andybradford tags: hidden-tag)
20:36
Prevent the argument that follows -A from being interpreted as a repository and avoid incorrect file already exists errors. (check-in: cc421c006a user: andybradford tags: trunk)
17:50
Prevent sym- tag that matches branch name that sorts prior to branch name from displaying an option to cancel the tag. Also clean up a couple strcmp. (check-in: c36ad48a87 user: andybradford tags: cancel-tag-fix)
15:19
Fix Content-Type/Content-Length for GET/POST requests. (check-in: a60d2976ff user: jan.nijtmans tags: tkt-change-hook)
14:19
Merge trunk and fix typo (missing backslash) (check-in: 847107015b user: jan.nijtmans tags: tkt-change-hook)
13:53
merge trunk (check-in: 46e1d4c812 user: jan.nijtmans tags: win32-longpath)
13:48
Better use GetCurrentDirectoryW in stead of _wgetcwd. (check-in: 4e463bf7ba user: jan.nijtmans tags: trunk)
13:16
Forgot to commit one more change. (check-in: fa71b6ce6d user: jan.nijtmans tags: tkt-change-hook)
13:05
Better implementation of file_access() for win32: The function _waccess cannot handle long paths, and lies too much (e.g. when handling specific smb drives). Implementation borrowed from Tcl 8.6: [http://core.tcl.tk/tcl/artifact/c6b5d4f8d7?ln=1510-1756] (check-in: 0b0eb52c07 user: jan.nijtmans tags: trunk)
12:26
If the "Branching" checkbox is unchecked, the "Branch Closure" label should return to its original branchname. Add a javascript handler doing exactly that. (check-in: 2cb54f3981 user: jan.nijtmans tags: trunk)
11:31
Merge trunk. Fix uninitialized variable. Less copying of complete structure content. (check-in: 85528ef507 user: jan.nijtmans tags: tkt-change-hook)
09:40
Use SetCurrentDirectoryW/GetFileAttributesExW in stead of _wchdir/_wstati64 (which cannot handle long pathnames) (check-in: 3714782631 user: jan.nijtmans tags: trunk)
09:24
merge trunk (check-in: 1d0517c1fa user: jan.nijtmans tags: hidden-tag)
08:40
When branchname in ci_edit page changes, adapt remaining form to the name-change using some javascript. Thanks to Andy Bradford for the idea (adapted/simplified from the "hidden-tag" branch)! (check-in: cf9293ad53 user: jan.nijtmans tags: trunk)
08:31
Cleanup compiler option handling in the MinGW makefiles as well. (check-in: d0a9cda560 user: mistachkin tags: trunk)
08:11
Further reduce confusion by making Makefile.Cygwin actually work. (check-in: 1395315639 user: jan.nijtmans tags: trunk)
07:58
Rename the makefile macro SQLITE3_CFLAGS to SQLITE_CFLAGS in an attempt to reduce future confusion. (check-in: 813d6516aa user: mistachkin tags: trunk)
05:40
Minor comment cleanup. No code change. (check-in: 40c5b3b390 user: andybradford tags: hidden-tag)
02:46
Attempt to prevent hiding of either main-branch or trunk. (check-in: 7a41dd2b06 user: andybradford tags: hidden-tag)
00:49
Fix the build on unix systems. (check-in: 268d495d91 user: drh tags: trunk)
00:11
Fix a C99-style variable declaration. (Closed-Leaf check-in: a3641b5441 user: drh tags: makefile-error)
2013-12-12
23:34
Remove use of SQLITE_WIN32_NO_ANSI option everywhere except for Cygwin. Further cleanup. (check-in: 1c37a90508 user: mistachkin tags: makefile-error)
22:41
Add makefile for Cygwin and move its options there. Refactor makemake tool to modularize use of the common options. (check-in: e474f5f817 user: mistachkin tags: trunk)
16:13
One more: GetFullPathNameW() needs the "\\?\"-prefix as well if the input path is already >MAX_PATH. But we don't want the resulting directory to have this prefix, so strip it off when present. (check-in: e5fef7982d user: jan.nijtmans tags: win32-longpath)
15:01
Final bug-fix: Before prefixing a path with "\\?\", check if it is prefixed already. If so, don't do it again. Everything seems to work fine now! (check-in: c952c773ac user: jan.nijtmans tags: win32-longpath)
14:27
Implement file_access() function such that it accepts paths>MAX_PATH. Implementation copied (with some simplifications) from Tcl 8.6 (check-in: ba4b3ac1d2 user: jan.nijtmans tags: win32-longpath)
13:54
Fix fossil_stat() and fossil_chdir() such that they accept paths>MAX_PATH. For file_access(), implement a workaround that the '\\?\' prefix can be handled. (check-in: 29f023fe53 user: jan.nijtmans tags: win32-longpath)
11:16
Bug-fix: didn't compile on win32, and handle extended UNC paths correctly. (check-in: da8d516fe1 user: jan.nijtmans tags: win32-longpath)
09:46
merge trunk (check-in: 820a599008 user: jan.nijtmans tags: hidden-tag)
09:37
Make "win32-longpath" the default VFS on win32, eliminating all path limitations (up to ~32767 chars). TODO: eliminate use of the the function _wstati64(), that appears to be the only Win32 function left which cannot handle such long paths. Everything else needed is done. (check-in: 1b9893bdc8 user: jan.nijtmans tags: win32-longpath)
08:43
Put back 'win32-longpath' VFS as default for Cygwin: Cygwin doesn't suffer from path limitations (at least, not until 4096 chars), so usage of the 'win32' VFS is not reasonable as default. (check-in: a76039815d user: jan.nijtmans tags: trunk)
2013-12-11
23:20
Remove usage of the 'win32-longpath' VFS as it is unlikely to work correctly with the various MSVCRT functions currently required by Fossil. (check-in: 19de4b5bcd user: mistachkin tags: trunk)
13:00
As it turns out that _wstati64() cannot handled the special "\\?\" prefix, work around that. Otherwise the win32-longpath VFS is quite useless for fossil. Maybe a better solution should be worked out, not using _wstati64() at all. (check-in: bb440899d3 user: jan.nijtmans tags: trunk)
12:06
Update the built-in SQLite to the latest version 3.8.3 alpha. (check-in: faa2e9d5cf user: drh tags: trunk)
2013-12-10
21:15
Avoid attempting to preserve the default VFS if it has not been set. (check-in: fffcf60cbc user: mistachkin tags: trunk)
14:22
Make the default vfs survive after a sqlite3_shutdown (for "fossil sqlite" command). (check-in: aa22b1b462 user: jan.nijtmans tags: trunk)
13:23
Add new command line option "-vfs" which overrides the FOSSIL_VFS environment variable, and which works for all future DB connections. Fix .vfsname output when win32-longpath is chosen explicitly (already in SQLite trunk). (check-in: eb3899ceb2 user: jan.nijtmans tags: trunk)
08:31
Rename variable 'trunk' to 'zTrunk'. Improve comment. (check-in: b75cc0e345 user: jan.nijtmans tags: hidden-tag)
08:23
merge trunk (check-in: 51cd44361e user: jan.nijtmans tags: hidden-tag)
08:22
Make timeline and JSON timeline respect the "hidden" tag. Meant for a new feature developed in the "hidden-tag" branch. No added buttons or configuration options yet (still being discussed). (check-in: 45d69e82eb user: jan.nijtmans tags: trunk)
2013-12-07
21:47
Add missing CSS for verbatim blocks in tickets to avoid wrapping and set a default white background. (check-in: 984735a752 user: andybradford tags: trunk)
2013-12-06
16:06
Added a quote about github to the quotes.wiki document. (check-in: 5b86c3d566 user: drh tags: trunk)
2013-12-05
21:27
slightly simpler/more readable (check-in: 9a8380d2cd user: jan.nijtmans tags: hidden-tag)
15:20
Avoid Javascript errors when editing a leaf and typing in the branch name. (check-in: 328df74bfc user: andybradford tags: hidden-tag)
12:20
merge trunk (check-in: 46a88543ca user: jan.nijtmans tags: hidden-tag)
12:09
When trying to rename a branch into itself, make this a NOP. (check-in: 95a809500a user: jan.nijtmans tags: trunk)