Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-06-29 | Add path::combine(string,separator) | Boris Kolpackov | 1 | -0/+19 | |
In particular, this can be used to recombine a path during iteration: dir_path r; for (auto i (d.begin ()); i != d.end (); ++i) r.combine (*i, i.separator ()); | |||||
2020-06-26 | Improve std::optional to better deal with lack of copy/move constructors | Karen Arutyunov | 2 | -0/+49 | |
2020-06-24 | Don't use utime() on Windows | Boris Kolpackov | 1 | -1/+1 | |
It has the seconds precision even if the time is unspecified. | |||||
2020-06-23 | Add note that access time tests may fail with if running on noatime mount | Boris Kolpackov | 2 | -0/+6 | |
For example, this happens on NetBSD. | |||||
2020-06-19 | Adapt mv builtin tests to terminology change | Karen Arutyunov | 1 | -6/+6 | |
2020-06-18 | Complete NetBSD compatibility | Boris Kolpackov | 2 | -1/+12 | |
2020-06-11 | Add date builtin | Karen Arutyunov | 1 | -0/+48 | |
2020-06-11 | Add workaround for MinGW GCC bug so to_stream(timestamp) properly handles %e ↵ | Karen Arutyunov | 1 | -0/+3 | |
specifier | |||||
2020-06-03 | Add builtin weight | Karen Arutyunov | 1 | -3/+9 | |
Also invent the notion of external builtin (builtin_info::function is NULL). | |||||
2020-04-07 | Add ability to print process_env environment | Boris Kolpackov | 1 | -0/+36 | |
2020-04-01 | Add daytime() function | Karen Arutyunov | 1 | -0/+12 | |
2020-03-17 | Fix ln builtin not to complete relative target against working directory | Karen Arutyunov | 4 | -6/+6 | |
Now it preserves the relative path when creates a symlink and completes it against the link directory when creates a hardlink or a copy. | |||||
2020-03-17 | Add readsymlink(), followsymlink(), and try_followsymlink() | Karen Arutyunov | 5 | -19/+203 | |
2020-03-10 | Fix directory symlink tests failing on Windows in Developer Mode | Karen Arutyunov | 3 | -92/+86 | |
2020-03-09 | Add more support for symlinks on Windows | Karen Arutyunov | 8 | -179/+676 | |
See mksymlink() for details of the symlinks support on Windows. | |||||
2020-03-09 | Add workaround for MinGW GCC bug #84583 (produces CRCRLF sequences in ↵ | Karen Arutyunov | 1 | -34/+17 | |
preprocessed files) | |||||
2020-03-03 | Revert previous (erroneously pushed to master) commit | Karen Arutyunov | 4 | -62/+17 | |
2020-03-02 | Backup | Karen Arutyunov | 4 | -17/+62 | |
2020-02-26 | Add notion of validator to char_scanner and make sure manifest is UTF-8 | Karen Arutyunov | 4 | -12/+257 | |
This involves implementing utf8_validator and UTF-8 utility functions and using them during the manifest parsing, serialization, and rewriting. | |||||
2020-02-12 | Fix curl testscript | Karen Arutyunov | 1 | -8/+8 | |
2020-02-12 | Rename fdnull() to fdopen_null() | Karen Arutyunov | 4 | -10/+11 | |
2020-02-06 | Drop copyright notice from source code | Boris Kolpackov | 123 | -123/+0 | |
2020-01-28 | Add utf8() predicate | Karen Arutyunov | 2 | -0/+164 | |
2019-11-14 | Add to_stream(ostream, path, bool) | Karen Arutyunov | 1 | -6/+22 | |
2019-10-29 | Only enable backtrace support on Linux if using glibc | Boris Kolpackov | 1 | -1/+1 | |
Other libc implementations, for example musl, don't support this out of the box. | |||||
2019-10-08 | Fix 'unused variable' warning issued by Clang on Windows | Karen Arutyunov | 1 | -0/+3 | |
2019-10-07 | Adapt tests for building with Clang on Windows | Karen Arutyunov | 1 | -3/+3 | |
2019-10-01 | Move path match to path-pattern.?xx | Karen Arutyunov | 1 | -0/+2 | |
2019-09-28 | Swap entry and pattern parameters in path_match() | Karen Arutyunov | 2 | -165/+168 | |
2019-09-28 | Rename casecmp() function and case_compare_[c_]string structs to icasecmp() ↵ | Karen Arutyunov | 1 | -14/+14 | |
and icase_compare_[c_]string | |||||
2019-09-27 | Add support for bracket expressions in wildcard pattern matching | Karen Arutyunov | 1 | -2/+68 | |
2019-09-27 | Add support for builtin escaping to command running API | Karen Arutyunov | 1 | -0/+10 | |
2019-09-27 | Add builtins support to command running API | Karen Arutyunov | 2 | -2/+37 | |
2019-09-27 | Add builtins support | Karen Arutyunov | 15 | -0/+1992 | |
2019-08-27 | Fix backslash escaping in windows process arguments | Karen Arutyunov | 1 | -8/+64 | |
2019-08-23 | Fix some testscripts failing if project path contain spaces | Karen Arutyunov | 2 | -2/+2 | |
2019-08-22 | Add extra_dir parameter for load_default_options() | Karen Arutyunov | 2 | -11/+105 | |
2019-08-21 | Don't load default options from directories which subdirectory contains ↵ | Karen Arutyunov | 3 | -26/+177 | |
--no-default-options | |||||
2019-08-14 | Add load_default_options() function template overload that accepts tracing ↵ | Karen Arutyunov | 1 | -3/+5 | |
function | |||||
2019-08-12 | Add default options loading and merging API | Karen Arutyunov | 3 | -0/+302 | |
2019-08-12 | Use new fdstream constructor | Boris Kolpackov | 1 | -1/+1 | |
2019-08-12 | Apply previous fix to fdstream::open() | Boris Kolpackov | 1 | -21/+27 | |
2019-08-12 | Add few fdstream constructor overloads | Boris Kolpackov | 2 | -5/+5 | |
2019-08-01 | Combine multiple single-character flags into a single argument for ↵ | Karen Arutyunov | 2 | -10/+10 | |
testscript commands | |||||
2019-06-03 | Fix missing for Windows traits alias renaming | Karen Arutyunov | 1 | -1/+1 | |
2019-06-03 | Rename traits alias to traits_type for basic_path, basic_url, and ↵ | Karen Arutyunov | 2 | -8/+8 | |
string_table class templates | |||||
2019-05-30 | Improve backtrace test | Karen Arutyunov | 2 | -17/+83 | |
Check that setting terminate handler doesn't change the way a process terminates on unhandled exception. | |||||
2019-05-28 | Add backtrace() | Karen Arutyunov | 3 | -0/+129 | |
2019-05-24 | Increase standard and semantic versions major, minor, and patch max values ↵ | Karen Arutyunov | 3 | -148/+70 | |
up to 99999 | |||||
2019-05-12 | Fix the 'possible loss of data' 32-bit VC warning | Karen Arutyunov | 1 | -1/+1 | |