Timeline
Not logged in

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

38 events for the month beginning 2013-02-01 by user jan.nijtmans

Following month ↑
2013-02-27
13:51
plug minor memory leak check-in: 52fb2a71ad user: jan.nijtmans tags: trunk
11:30
comment fix check-in: f78a487f43 user: jan.nijtmans tags: use-blob_strip_bom
11:26
merge trunk check-in: d085eb9aca user: jan.nijtmans tags: use-blob_strip_bom
11:13 Edit [cc3976fd30f4ab78|cc3976fd30]: Mark "Closed". artifact: ecdee580b3 user: jan.nijtmans
10:03
merge trunk check-in: dbf96517f2 user: jan.nijtmans tags: improve_commit_warning
09:54
merge trunk check-in: efe9993f2b user: jan.nijtmans tags: ticket-d17d6e5b17
09:46
On Cygwin determine home directory the same as on win32, so cygwin can share "_fossil" with win32. check-in: 26ad1bce49 user: jan.nijtmans tags: trunk
08:49
A few more places where Cygwin should do the same as win32. check-in: 8cc71be05f user: jan.nijtmans tags: trunk
2013-02-26
09:27
Cygwin has same filesystem as Windows, so should be case-insensitive and do '/' <-> '\' conversion the same as win32. fossil_utf8_to_filename should do '/' -> '\' conversion on win32, as not all win32 API functions handle '/' correctly. check-in: d4b3e1d86d user: jan.nijtmans tags: trunk
2013-02-25
10:46
Merge trunk. Restore fossil_utf8_to_filename signature by doing character conversions in utf-8 instead of unicode. check-in: ae1b1f4b5d user: jan.nijtmans tags: ticket-d17d6e5b17
09:34 Edit [8031947e594396ad|8031947e59]: Edit check-in comment. artifact: 2aa496b354 user: jan.nijtmans
09:33
Split WriteConsoleW call into multiple chunks, when necessary. See https://connect.microsoft.com/VisualStudio/feedback/details/635230 Thanks to jeffrimko for noticing this. check-in: 8031947e59 user: jan.nijtmans tags: trunk
2013-02-23
21:45
merge trunk check-in: eeb0231b9b user: jan.nijtmans tags: improve_commit_warning
21:35
merge trunk check-in: f1bb151e6f user: jan.nijtmans tags: ticket-d17d6e5b17
2013-02-21
15:51
merge fork check-in: 32bb8c2819 user: jan.nijtmans tags: trunk
15:50
Make win32 build compile again: - missing headers <io.h> and <fcntl.h> - WCHAR -> wchar_t check-in: e3add2c115 user: jan.nijtmans tags: trunk
11:45
more unused variables check-in: 1a2e1ea0fe user: jan.nijtmans tags: trunk
11:29
Rename fossil_utf8_to_unicode to fossil_utf8_to_filename on UNIX, everywhere where filenames are involved. This enables fossil_utf8_to_unicode/fossil_unicode_to_utf8 to be re-implemented on UNIX to do what the name suggests. check-in: 7eb5e2319f user: jan.nijtmans tags: trunk
08:15
unused variables check-in: 75e483899e user: jan.nijtmans tags: trunk
2013-02-20
08:34 Edit [1e70f211f9b37df4|1e70f211f9]: Mark "Closed". artifact: 864ae0ade0 user: jan.nijtmans
08:33
Simplify/speedup starts_with_utf16_bom and enhance doc for it. check-in: 957be42625 user: jan.nijtmans tags: trunk
2013-02-18
10:03
New function fossil_utf8_to_filename, such that fossil_unicode_to_utf8/fossil_utf8_to_unicode/fossil_unicode_free are not used on UNIX/MAC any more: On UNIX those 3 functions were only no-ops, but this allows to re-implement then for real unicode <-> utf-8 conversions. There is an "#ifdef _WIN32" around those 3 functions and 2 more (fossil_mbcs_to... Closed-Leaf check-in: cc3976fd30 user: jan.nijtmans tags: fossil_utf8_to_filename
08:30
merge trunk check-in: fdd51b617c user: jan.nijtmans tags: ticket-d17d6e5b17
2013-02-17
21:37
merge trunk check-in: fdf9050c4b user: jan.nijtmans tags: improve_commit_warning
17:21 Edit [ac1af2306b70c537|ac1af2306b]: Mark "Closed". artifact: 8a4ffccf1f user: jan.nijtmans
14:47
More simplification in UTF-16 bom detection Closed-Leaf check-in: 1e70f211f9 user: jan.nijtmans tags: utf16Bom
14:43
Remove two unused variables check-in: a98467b661 user: jan.nijtmans tags: trunk
2013-02-13
09:28
"reverse" should mean big-endian on little-endian machines. check-in: cdffec2b63 user: jan.nijtmans tags: utf16Bom
2013-02-12
12:05 Edit [c209105f0fded945|c209105f0f]: Mark "Closed". artifact: 0728a7b473 user: jan.nijtmans
2013-02-08
09:37
Eliminate use of starts_with_utf16(be|le)_bom functions, starts_with_utf16_bom should be enough. External code will typically call "starts_with_utf16_bom" first, and if it returns true call "blob_to_utf8_no_bom" converting it to utf-8. There is no reason any more then for external code to know wheter the BOM was le or be. check-in: fab09a1710 user: jan.nijtmans tags: trunk
08:55
Addendum to previous commit: Allow the user to decide whether the "fossil knows nothing about" warning should abort the commit or not. check-in: c31bbd4084 user: jan.nijtmans tags: trunk
08:21
Change "fossil knows nothing about" fatal into a warning. check-in: 7a8808b220 user: jan.nijtmans tags: trunk
2013-02-07
15:28
Divide blob length check (even number of bytes) and UTF-32 check in the 3 versions of the UTF-16 BOM functions. check-in: be6756e26b user: jan.nijtmans tags: trunk
13:06 Edit [6c417d8bf5f6d2e5|6c417d8bf5]: Move to branch simplify-starts-with. artifact: fe5ea2471c user: jan.nijtmans
09:39
merge trunk check-in: 8994f3680a user: jan.nijtmans tags: improve_commit_warning
09:19
If file starts with UTF-32 BOM, always consider it binary without warning. Closed-Leaf check-in: c209105f0f user: jan.nijtmans tags: simplify-starts-with
08:47
Combine 4 "starts_with_utf??_bom" functions to a single - easier to use - function "starts_with_bom". In addition, it only checks for an UTF-16 BOM if the blob has an even number of bytes. check-in: 6c417d8bf5 user: jan.nijtmans tags: simplify-starts-with
2013-02-01
12:33
Fix out-of-order variable declaration (VC6 cannot handle that). Move MAX_REDIRECTS definition to xfer.c, so it can be converted to a fossil setting later. check-in: fe56e5aa4f user: jan.nijtmans tags: trunk
Previous month ↓