summaryrefslogtreecommitdiff
path: root/src/locale
AgeCommit message (Collapse)AuthorFilesLines
2023-01-31shared: split out polkit stuff from bus-util.c → bus-polkit.cLennart Poettering2-2/+2
It's enough, complex stuff to warrant its own source file. No other changes, just splitting out. (Resolve build error from cherry-pick) In bus-util.c, leave fd-util.h and proc-cmdline.h for code preprocessed by ENABLE_KDBUS macro. +#if ENABLE_KDBUS +#include "fd-util.h" +#include "proc-cmdline.h" +#endif Origin: upstream, https://github.com/systemd/systemd/commit/269e4d2d6b75329ae39a71ebe2c14500e03cda95 Change-Id: I9cc9f51f614bf5f8059422cc1923aa88a5812560 Signed-off-by: Youngjae Cho <y0.cho@samsung.com>
2020-04-02Merge v244 into tizenAdrian Szyndela3-13/+13
systemd v244
2020-03-27Merge v243 into tizenAdrian Szyndela2-9/+8
systemd v243
2020-03-27Merge v242 into tizenAdrian Szyndela4-20/+20
systemd v242
2020-03-26Merge v240 into tizenAdrian Szyndela5-149/+171
systemd 240
2020-03-26Merge v239 into tizenAdrian Szyndela6-551/+504
systemd 239
2020-03-26Merge v238 into tizenAdrian Szyndela2-13/+6
systemd 238
2020-02-26Merge v237 into tizenAdrian Szyndela2-3/+6
systemd 237
2020-02-26Merge v236 into tizensandbox/adrians/upgrade-to-236Adrian Szyndela9-94/+57
Change-Id: Id62f08b8ecf2a909a49e5f93b2f7594b3880ef44
2020-02-26Merge v235 into tizenAdrian Szyndela5-19/+15
Change-Id: Iafcca23df73f2694eda50a97771acac4b7996f30
2020-02-26Merge v234 into tizenAdrian Szyndela4-9/+58
Change-Id: If676fe909a40eadc60ee5ff023abe4ee2c64b44e
2019-11-18tree-wide: clean up --help texts a bitLennart Poettering1-11/+12
This cleans up and unifies the outut of --help texts a bit: 1. Highlight the human friendly description string, not the command line via ANSI sequences. Previously both this description string and the brief command line summary was marked with the same ANSI highlight sequence, but given we auto-page to less and less does not honour multi-line highlights only the command line summary was affectively highlighted. Rationale: for highlighting the description instead of the command line: the command line summary is relatively boring, and mostly the same for out tools, the description on the other hand is pregnant, important and captions the whole thing and hence deserves highlighting. 2. Always suffix "Options" with ":" in the help text 3. Rename "Flags" → "Options" in one case 4. Move commands to the top in a few cases 5. add coloring to many more help pages 6. Unify on COMMAND instead of {COMMAND} in the command line summary. Some tools did it one way, others the other way. I am not sure what precisely {} is supposed to mean, that uppercasing doesn't, hence let's simplify and stick to the {}-less syntax And minor other tweaks.
2019-11-04tree-wide: drop locale.h when locale-util.h is includedYu Watanabe1-1/+0
2019-11-04tree-wide: drop string.h when string-util.h or friends are includedYu Watanabe3-3/+0
2019-10-08Highlight the synopsis and summary in --helpZbigniew Jędrzejewski-Szmek1-2/+5
This doesn't cover all the binaries, but I don't know how to script this, and I run out of steam ;)
2019-07-12tree-wide: get rid of strappend()Lennart Poettering1-2/+2
It's a special case of strjoin(), so no need to keep both. In particular as typing strjoin() is even shoert than strappend().
2019-06-28Rename EXTRACT_QUOTES to EXTRACT_UNQUOTEZbigniew Jędrzejewski-Szmek1-3/+3
Whenever I see EXTRACT_QUOTES, I'm always confused whether it means to leave the quotes in or to take them out. Let's say "unquote", like we say "cunescape".
2019-06-20tree-wide: drop alloca() in loopYu Watanabe1-2/+2
2019-05-08Enable log colors for most of tools in /usr/binZbigniew Jędrzejewski-Szmek1-0/+1
When emitting the calendarspec warning we want to see some color. Follow-up for 04220fda5c. Exceptions: - systemctl, because it has a lot hand-crafted coloring - tmpfiles, sysusers, stdio-bridge, etc, because they are also used in services and I'm not sure if this wouldn't mess up something.
2019-04-12Make fopen_temporary and fopen_temporary_label unlockedZbigniew Jędrzejewski-Szmek1-2/+0
This is partially a refactoring, but also makes many more places use unlocked operations implicitly, i.e. all users of fopen_temporary(). AFAICT, the uses are always for short-lived files which are not shared externally, and are just used within the same context. Locking is not necessary.
2019-04-08basic: add new helper call empty_or_dash_to_null()Lennart Poettering1-12/+8
We have a function like this at two places already. Let's unify it in one generic location and let's port a number of users over.
2019-04-08tree-wide: introduce empty_or_dash() helperLennart Poettering1-1/+1
At quite a few places we check isempty() || streq(…, "-"), let's add a helper to simplify that, and replace that by a single function call.
2019-03-27Voidify more mkdir_p callsZbigniew Jędrzejewski-Szmek1-2/+1
2019-03-27headers: remove unneeded includes from util.hZbigniew Jędrzejewski-Szmek2-0/+4
This means we need to include many more headers in various files that simply included util.h before, but it seems cleaner to do it this way.
2019-03-14util: split out nulstr related stuff to nulstr-util.[ch]Lennart Poettering1-0/+1
2019-03-14util: split out kbd related stuffLennart Poettering2-3/+3
This stuff is neither generic enough to be in def.h, nor really has much to do with locale, hence give it its own .c/.h file pair.
2019-03-13util: split out memcmp()/memset() related calls into memory-util.[ch]Lennart Poettering1-1/+1
Just some source rearranging.
2019-03-04tests: use the test helpers in more placesZbigniew Jędrzejewski-Szmek1-2/+2
This is mostly cosmetic. It makes those test binaries support SYSTEMD_LOG_* environment variables.
2018-12-04Merge pull request #11041 from yuwata/update-missing-v2Lennart Poettering1-0/+1
missing: separate missing.h more
2018-12-04util: drop missing.h from util.hYu Watanabe1-0/+1
2018-12-04tree-wide: add whitespace between type and variable nameYu Watanabe1-1/+1
2018-12-02util-lib: split out env file parsing code into env-file.cLennart Poettering1-0/+2
It's quite complex, let's split this out. No code changes, just some file rearranging.
2018-12-02util-lib: split out all temporary file related calls into tmpfiles-util.cLennart Poettering1-0/+1
This splits out a bunch of functions from fileio.c that have to do with temporary files. Simply to make the header files a bit shorter, and to group things more nicely. No code changes, just some rearranging of source files.
2018-11-23locale: define main through macroYu Watanabe1-22/+15
2018-11-23locale: store polkit_registry in ContextYu Watanabe3-7/+9
2018-11-23locale: rename context_free() to context_clear()Yu Watanabe4-5/+5
2018-11-22coccinelle: make use of SYNTHETIC_ERRNOZbigniew Jędrzejewski-Szmek1-4/+3
Ideally, coccinelle would strip unnecessary braces too. But I do not see any option in coccinelle for this, so instead, I edited the patch text using search&replace to remove the braces. Unfortunately this is not fully automatic, in particular it didn't deal well with if-else-if-else blocks and ifdefs, so there is an increased likelikehood be some bugs in such spots. I also removed part of the patch that coccinelle generated for udev, where we returns -1 for failure. This should be fixed independently.
2018-11-20Split out pretty-print.c and move pager.c and main-func.h to shared/Zbigniew Jędrzejewski-Szmek1-1/+1
This is high-level functionality, and fits better in shared/ (which is for our executables), than in basic/ (which is also for libraries).
2018-11-20locale: make "arg_host" constYu Watanabe1-1/+1
2018-11-20localectl: define main through macroZbigniew Jędrzejewski-Szmek1-16/+9
2018-11-20log: introduce new helper call log_setup_service()Lennart Poettering1-3/+1
Let's reduce the common boilerplate and have a single setup function used by all service code to setup logging.
2018-11-15Merge pull request #10742 from poettering/c-utf8Zbigniew Jędrzejewski-Szmek3-55/+43
default to C.UTF-8 locale, and many improvements to env var file parsing/kernel cmdline parsing
2018-11-14Merge pull request #10753 from keszybz/pager-no-interruptLennart Poettering1-5/+5
Add mode in journalctl where ^C is handled by the pager
2018-11-14locale-util: introduce common helper locale_variables_free() for freeing ↵Lennart Poettering2-17/+7
locale variable arrays
2018-11-14fileio: automatically add NULL sentinel to parse_env_file()Lennart Poettering1-4/+2
Let's modernize things a bit.
2018-11-14localed: be more careful with the used typesLennart Poettering1-1/+2
2018-11-14fileio: drop "newline" parameter for env file parsersLennart Poettering1-3/+3
Now that we don't (mis-)use the env file parser to parse kernel command lines there's no need anymore to override the used newline character set. Let's hence drop the argument and just "\n\r" always. This nicely simplifies our code.
2018-11-14tree-wide: replace all remaining uses of parse_env_file() for parsing ↵Lennart Poettering1-18/+18
/proc/cmdline Let's always go through the proc-cmdline.c APIs.
2018-11-14localed: no need to log twice about reload requestsLennart Poettering1-4/+2
2018-11-14localed: show proper bus error if we can in log messageLennart Poettering1-1/+1