Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
56 check-ins using file src/checkout.c version 7533e7594e
2011-05-31
| ||
12:52 | Always use the alternate-form flag "#" to control the number of input bytes to printf conversions like %t, %h, and %q. Do not use precision in those cases since precision limits the number of output characters, not the number of input characters. Ticket [8967ea1df4f51af]. ... (check-in: e5e6ca4659 user: drh tags: trunk) | |
2011-05-30
| ||
16:46 | Makefile which works under the BSDs and Solaris using their non-GNU make. Resolves [5a96dd5f52]. ... (check-in: 3abab7e177 user: ben tags: trunk) | |
07:14 | Add configure script, which must be run before running make, as it appears there's no cross-platform way to set a make variable to the output of a shell command. ... (Closed-Leaf check-in: 5abe6347c2 user: ben tags: configure-make) | |
07:04 | Create new branch named "configure-make" ... (check-in: 62284df93a user: ben tags: configure-make) | |
2011-05-29
| ||
12:53 | Remove accidentally included line of code. ... (Closed-Leaf check-in: 0bed863b69 user: ben tags: ben-security) | |
12:49 | Support for client side SSL certificates for extra authentication to https servers. Adds --ssl-identity command line option and ssl-identity setting to specify the filename of a identity file containing a PEM encoded certificate and private key. ... (check-in: e06ea26e97 user: ben tags: ben-security) | |
2011-05-28
| ||
18:51 | Release ... (check-in: 0448438c56 user: drh tags: trunk, release) | |
17:56 | Merge the latest changes from the ben-security branch into trunk. ... (check-in: 6d35cde78d user: drh tags: trunk, test-%-&-tag) | |
17:52 | Do not attempt to use fossil_fopen() in place of fopen() in the SQLite shell as doing so causes problems on (some) Macs and does not really help the windows i18n situation. Ticket [034fa7bb2907e96] ... (check-in: e94c1e9068 user: drh tags: trunk) | |
16:23 | Add the X-Frame-Options: DENY header to HTTP responses, and a comment lamenting that two other helpful security headers can't really be used without breaking things. ... (check-in: 95f04bbfbf user: ben tags: ben-security) | |
2011-05-27
| ||
14:37 | Issue a warning if the "push" or "sync" command is issued when "dont-push" is enable. ... (check-in: 21ceccddd8 user: drh tags: trunk) | |
12:56 | Internationalize the opendir() function calls. Ticket [49db5c3993bef2]. ... (check-in: e05fea3852 user: drh tags: trunk) | |
12:16 | Add the test-mimetype command and use it to verify the correct order of entries in the mimetype table. Fix the errors found. ... (check-in: ea2698e9c7 user: drh tags: trunk) | |
12:03 | Do not use strcmp() for comparison since the sort order can vary by locale. Use fossil_strcmp() instead. Ticket [3f0216560679fd41]. ... (check-in: 32ad9a1584 user: drh tags: trunk) | |
2011-05-26
| ||
11:57 | Add the --systemtrace option for debugging calls to fossil_system. ... (check-in: 5a4dc2239b user: drh tags: trunk) | |
11:29 | Make arrangements for the output of "fossil status" to go through the UTF8 to MBCS translation. Ticket [3f0216560679fd] ... (check-in: 02a6aa2d5e user: drh tags: trunk) | |
2011-05-25
| ||
13:54 | Update the Mac icon for the download page. ... (check-in: a2e1c48373 user: drh tags: trunk) | |
2011-05-23
| ||
15:11 | Merge the ben-security branch into the trunk. ... (check-in: 474850cff5 user: drh tags: trunk, release) | |
15:06 | Merge the solaris10 branch into the trunk. ... (check-in: 3e0efc3827 user: drh tags: trunk) | |
2011-05-22
| ||
15:08 | Follow web app best practise by marking cookies as HttpOnly and, if it's over an https connection, as 'secure' so they will only be transmitted over https. Options supported by major browsers, and harmless where not supported. ... (check-in: e4b57a3230 user: ben tags: ben-security) | |
14:53 | When displaying an unknown certificate, also display the certificate fingerprint so the user can verify they're seeing the certificate they expect. Just displaying the textual names in the certificate does not give enough information to be certain someone isn't doing a man in the middle attack. ... (check-in: fc93bfb0f7 user: ben tags: ben-security) | |
14:23 | Create new branch named "ben-security" ... (check-in: 2b4a6a66e1 user: ben tags: ben-security) | |
09:44 | When parsing glob settings, allow splits on newlines as well as commas. Allows versionable glob settings to be written one glob per line for readability. ... (check-in: 7d04803392 user: ben tags: versionable-settings) | |
09:38 | Add db_get_versionable_setting() for implementing 'versionable settings', which is like db_get() except will prefer to read the value from .fossil-settings/NAME in the checked out source, rather than the database. ... (check-in: 09e52f0df7 user: ben tags: versionable-settings) | |
09:11 | Create new branch named "versionable-settings" ... (check-in: 3db75c4803 user: ben tags: versionable-settings) | |
07:53 | Fix for passwords > 8 chars long on Solaris. getpass() silently truncates to 8 chars, use getpassphrase() instead. ... (Closed-Leaf check-in: 3e61ada775 user: ben tags: solaris10) | |
07:49 | In the Makefile, use a more standard syntax for setting a variable to the output of a shell command. Fixes building on Solaris, seems OK on other platforms. ... (check-in: 9ef38b6b6d user: ben tags: solaris10) | |
07:33 | Create new branch named "solaris10" ... (check-in: eb4b5e3beb user: ben tags: solaris10) | |
2011-05-21
| ||
16:57 | If at the tip of the current branch but there are children in other branches, the "fossil up" command should do nothing. ... (check-in: 1343cfad7b user: drh tags: trunk) | |
16:45 | Print an "Internal Error" if the update command is unable to find a version to update to. ... (check-in: 88e9f24aff user: drh tags: trunk) | |
15:39 | Experimental support for Solaris 10 ... (check-in: fd39ef8261 user: ben tags: bens-expr) | |
15:38 | Create new branch named "bens-expr" ... (check-in: d73b1b5042 user: ben tags: bens-expr) | |
2011-05-20
| ||
15:31 | Abstract the getcwd() system library routine into file_getcwd() with appropriate translations on windows. ... (check-in: 4b3425401f user: drh tags: trunk) | |
14:17 | Convert the return value of getcwd() from MBCS into UTF8 before using it. ... (check-in: ef04076777 user: drh tags: trunk) | |
12:29 | Do not short-circuit the update command if the --verbose option is used. ... (check-in: 3b5db9a10e user: drh tags: trunk) | |
11:39 | Update the built-in SQLite to the latest 3.7.7 alpha that includes the fix for disappearing WAL transactions. ... (check-in: c60e143f28 user: drh tags: trunk) | |
11:32 | Merge the windows-i18n branch into the trunk. ... (check-in: d8ec765fac user: drh tags: trunk) | |
11:24 | Merge all the latest trunk changes into the windows-i18n branch. ... (Closed-Leaf check-in: a742d12e8f user: drh tags: windows-i18n) | |
11:22 | Convert some fopen() calls to fossil_fopen(). Missed them previously. ... (check-in: f626fcaab6 user: drh tags: windows-i18n) | |
2011-05-13
| ||
20:30 | Fix memory leaks in "fossil rebuild". ... (check-in: 625226d577 user: drh tags: windows-i18n) | |
17:13 | Ignore short writes when writing to the console. ... (check-in: e7babf5222 user: drh tags: windows-i18n) | |
15:46 | When translating UTF8 text for display on the console, use the codepage obtained from GetConsoleCP(), not the CP_ACP code page that is used for system calls. ... (check-in: 55b32701a5 user: drh tags: windows-i18n) | |
14:20 | Pull the latest changes in trunk over into the windows-i18n branch. ... (check-in: 70743ebae5 user: drh tags: windows-i18n) | |
2011-05-12
| ||
12:14 | Pull the latest changes from trunk into windows-i18n. ... (check-in: f25b6c00c8 user: drh tags: windows-i18n) | |
12:13 | Back out the [ab934c6b09fd1d5] change. Do not change the console output mode using SetConsoleOutputCP(). Go back to converting UTF8 into MBCS upon output. ... (check-in: b33032ae40 user: drh tags: windows-i18n) | |
2011-05-10
| ||
13:38 | Translate check-in comments received from console input from MBCS into UTF8. ... (check-in: 2278ef0ffa user: drh tags: windows-i18n) | |
13:29 | Always write UTF8 to the console. Change the console output mode on windows to UTF8 at startup. ... (check-in: ab934c6b09 user: drh tags: windows-i18n) | |
2011-05-09
| ||
15:50 | Pull the latest trunk changes over into the windows-i18n branch. ... (check-in: bbba160840 user: drh tags: windows-i18n) | |
2011-05-07
| ||
11:42 | Convert the fopen() in blob_write_to_file() into fossil_fopen(). ... (check-in: 4373976553 user: drh tags: windows-i18n) | |
2011-05-06
| ||
16:55 | Merge the latest trunk changes into windows-i18n branch. ... (check-in: 59ddd3c8ae user: drh tags: windows-i18n) | |
2011-05-04
| ||
11:16 | Merge the latest changes from trunk. ... (check-in: 503a0ef555 user: drh tags: windows-i18n) | |
11:13 | Add a wrapper around all calls to access() that translates UTF8 to MBCS. ... (check-in: 850d3df44e user: drh tags: windows-i18n) | |
2011-05-03
| ||
20:25 | Convert the results of getenv() from MBCS into UTF8. ... (check-in: b7df0b9ce6 user: drh tags: windows-i18n) | |
18:32 | Convert filenames from UTF8 to MBCS on windows when checking if a file exists or checking its size, etc. Ticket [336924579dd95e7cceaeeae5]. ... (check-in: 48f5dadafd user: drh tags: windows-i18n) | |
01:12 | Update the fossil_system() function so that it converts the system command form UTF8 into MBCS before calling system(). Speculative fix for ticket [8d916f5fc30be3]. ... (check-in: a65c97afd6 user: drh tags: windows-i18n) | |
2011-05-02
| ||
13:31 | Change calls to unlink() into file_delete(). The file_delete() routine converts filenames to MBCS from UTF if necessary. ... (check-in: eea6449098 user: drh tags: windows-i18n) | |