Commit Graph

1281 Commits (f651e2cfcab94f97f6a352338e2d4ec109ed854d)
 

Author SHA1 Message Date
Sergey f651e2cfca Update doc/README-ru.md
Co-authored-by: Evgeniy Andreev <gsomix@gmail.com>
4 years ago
Sergey 9d9f99c2d1 Update doc/README-ru.md
Co-authored-by: Evgeniy Andreev <gsomix@gmail.com>
4 years ago
Sergey 9c8dda1f9d Update doc/README-ru.md
Co-authored-by: Evgeniy Andreev <gsomix@gmail.com>
4 years ago
Sergey 89521a5134 Update doc/README-ru.md
Co-authored-by: Evgeniy Andreev <gsomix@gmail.com>
4 years ago
Sergey d11355f985 Update doc/README-ru.md
Co-authored-by: Evgeniy Andreev <gsomix@gmail.com>
4 years ago
Sergey 7ccda6e6e9 Update doc/README-ru.md
Co-authored-by: Evgeniy Andreev <gsomix@gmail.com>
4 years ago
Sergey 1de423c78b Update doc/README-ru.md
Co-authored-by: Evgeniy Andreev <gsomix@gmail.com>
4 years ago
Sergey 3943857087 Update doc/README-ru.md
Co-authored-by: Evgeniy Andreev <gsomix@gmail.com>
4 years ago
Sergey 27bb5c5976 Update doc/README-ru.md
Co-authored-by: Evgeniy Andreev <gsomix@gmail.com>
4 years ago
Sergey 3f614cb274 Update doc/README-ru.md
Co-authored-by: Evgeniy Andreev <gsomix@gmail.com>
4 years ago
Sergey 1e407d972f Update doc/README-ru.md
Co-authored-by: Evgeniy Andreev <gsomix@gmail.com>
4 years ago
Sergey 52b3c5fce4 Update doc/README-ru.md
Co-authored-by: Evgeniy Andreev <gsomix@gmail.com>
4 years ago
Sergey 5d53273ef4 Update doc/README-ru.md
Co-authored-by: Evgeniy Andreev <gsomix@gmail.com>
4 years ago
Sergey bf9faa9c28 Update doc/README-ru.md
Co-authored-by: Evgeniy Andreev <gsomix@gmail.com>
4 years ago
Sergey 0356b7f2c3 Update doc/README-ru.md
Co-authored-by: Evgeniy Andreev <gsomix@gmail.com>
4 years ago
Sergey 19c8558152 Update doc/README-ru.md
Co-authored-by: Evgeniy Andreev <gsomix@gmail.com>
4 years ago
Sergey a137db86a4 Update doc/README-ru.md
Co-authored-by: Evgeniy Andreev <gsomix@gmail.com>
4 years ago
Sergey 2a28f04e09 Update doc/README-ru.md
Co-authored-by: Evgeniy Andreev <gsomix@gmail.com>
4 years ago
Sergey 8dfa69fde4 Update README-ru.md 4 years ago
t-mangoe b09d245dea modify japanese doc. 4 years ago
Guido Cella 44deddbbfe Highlight pacman hooks as ini 4 years ago
Guido Cella aa8a2b1769 Highlight systemd files as ini 4 years ago
Guido Cella 4cdac180d8 Revert "Highlight systemd files and Pacman hooks as .ini files"
This reverts commit cde430a1e7.
4 years ago
Guido Cella d079bf86b1 Highlight systemd files and Pacman hooks as .ini files 4 years ago
gemmaro 62b4452057 fix typo in Japanese readme
* typo
* more natural expression
4 years ago
David Peter c3ec92a13f
Remove outdated Ansible installation method 4 years ago
David Peter c3230a68bb
README layout 4 years ago
Sergey Duck d9f163f466 translation update with commit #6e3e7dafcaa840ed72748f2ca1e99e420769907b 4 years ago
Sergey Duck d0da5af810 fix link to translation 4 years ago
Sergey Duck a2b2ec467a minor fixes 4 years ago
Sergey Duck 83b3009f0f full translated 4 years ago
Sergey Duck 4ea70f8409 customization is translated 4 years ago
Sergey Duck 0d2ef02c9e Installation is translated 4 years ago
Sergey Duck 2d7796284b First part of russian translation 4 years ago
sharkdp 19aa878a08 Remove explicit type annotation 4 years ago
sharkdp 9f52012443 Prevent allocation of additional Strings 4 years ago
sharkdp e57e9b6dbb Use 'or_insert_with' 4 years ago
sharkdp 74e8373e34 Return mappings as a slice 4 years ago
sharkdp ec2722d465 Use 'if let' instead of 'match' 4 years ago
Alex Novak 9e2ea5fdd4 Incorporating feedback 4 years ago
Alex Novak 48b4a6a906 Adds a little logic to main to get other mappings from config 4 years ago
Roy Ivy III 92e93682c6 Revert f8ed8aa7 (add test instrumentation to help understand failing tests) per PR feedback/owner request
- reverts commit f8ed8aa74b
4 years ago
Roy Ivy III 99226b745f Revert 9ed8db22c ('windows' pager process execution fix) based on PR feedback/owner request 4 years ago
Roy Ivy III 4840c7cd78 Tests ~ add predicate normalization for tests using `echo` 4 years ago
Roy Ivy III 71ab4a2058 Tests ~ revert to `echo` (after fixed 'windows' pager process execution) 4 years ago
Roy Ivy III a2c09b41bc Fix pager process execution under 'windows'
## [why]

For 'windows' platforms, directly spawning a process (eg, called PATHNAME) bypasses the
usual windows shell machinery for determining which process to execute. Specifically,
the extensions in PATHEXT will not be used to determine the final executable. So,
`PATHNAME.bat`, `PATHNAME.cmd`, ... will *not* be executed even if on they exist on the
PATH; and this is counter to the usual expectation of a Windows user. Additionally,
built-in commands, such as `echo` and `dir`, will never be accessible as they do not
have a PATH to execute and, so, will never be found.

To use the usual machinery, giving access to PATHNAME.bat and `echo`, execute the PATHNAME
using the windows shell, eg `cmd /d/c PATHNAME`. Note this may expose the constructed
command line to the windows shell quoting vagaries (sadly, that may be part of the price).

Following Windows standards, the ComSpec environment variable is used to determine which
shell to use, with a fallback to the "modern", built-in `cmd` shell.
4 years ago
Roy Ivy III 0ef792ac1e Tests ~ (fix) always check out test fixtures with known LF line endings
- fixes windows test failures
- avoids `git` platform-dependent conversion of line endings for checkout of test fixtures (*tests/examples/...*)
4 years ago
Roy Ivy III 01af28b781 Tests ~ add instrumentation to visualize text differences in failing tests 4 years ago
Roy Ivy III 3a7743ffc5 Tests ~ `echo` has portability issues; for CI, replace with `printf`
- using `echo` on 'windows' platforms requires process execution indirectly via the shell
- `printf` is available on all GHA CI platforms
  - `printf` is *not* available on usual 'windows' platforms; so this is just temporizing, awaiting a true fix
4 years ago
Roy Ivy III 9cc8e52512 Fix compiler warning for 'windows' tests (dead_code) 4 years ago