From: Zbigniew Jędrzejewski-Szmek Date: Sun, 11 Dec 2016 22:01:07 +0000 (-0500) Subject: man: use unicode ellipsis in more places X-Git-Tag: v233.3~115 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=47f94046d2208b0ca48928df3ac3bce803361f23;hp=f16db355861953739df86de8ed180f71dfb1c402 man: use unicode ellipsis in more places As requested in https://github.com/elogind/elogind/pull/4864#pullrequestreview-12372557. docbook will substitute triple dots for the ellipsis in man output, so this has no effect on the troff output, only on HTML, making it infinitesimally nicer. In some places we show output from programs, which use dots, and those places should not be changed. In some tables, the alignment would change if dots were changed to the ellipsis which is only one character. Since docbook replaces the ellipsis automatically, we should leave those be. This patch changes all other places. --- diff --git a/man/elogind.xml b/man/elogind.xml index 140249fc2..19dbd477e 100644 --- a/man/elogind.xml +++ b/man/elogind.xml @@ -1,4 +1,4 @@ - + diff --git a/man/loginctl.xml b/man/loginctl.xml index 0f638c260..a0087b483 100644 --- a/man/loginctl.xml +++ b/man/loginctl.xml @@ -62,8 +62,8 @@ loginctl may be used to introspect and control the state of the - elogind8 - login manager. + systemd8 + login manager @@ -167,11 +167,12 @@ - session-status ID... + session-status ID… Show terse runtime status information about - one or more sessions. Takes one or more session identifiers as - parameters. If no session identifiers are passed the status of + one or more sessions, followed by the most recent log data + from the journal. Takes one or more session identifiers as + parameters. If no session identifiers are passed, the status of the caller's session is shown. This function is intended to generate human-readable output. If you are looking for computer-parsable output, use show-session @@ -179,7 +180,7 @@ - show-session ID... + show-session ID… Show properties of one or more sessions or the manager itself. If no argument is specified, properties of the @@ -204,8 +205,8 @@ - lock-session ID... - unlock-session ID... + lock-session ID… + unlock-session ID… Activates/deactivates the screen lock on one or more sessions, if the session supports it. Takes one or @@ -223,7 +224,7 @@ - terminate-session ID... + terminate-session ID… Terminates a session. This kills all processes of the session and deallocates all resources attached to the @@ -231,7 +232,7 @@ - kill-session ID... + kill-session ID… Send a signal to one or more processes of the session. Use to select which @@ -249,11 +250,12 @@ - user-status USER... + user-status USER… Show terse runtime status information about - one or more logged in users. Takes one or more user names or numeric - user IDs as parameters. If no parameters are passed the status + one or more logged in users, followed by the most recent log + data from the journal. Takes one or more user names or numeric + user IDs as parameters. If no parameters are passed, the status of the caller's user is shown. This function is intended to generate human-readable output. If you are looking for computer-parsable output, use show-user @@ -262,7 +264,7 @@ - show-user USER... + show-user USER… Show properties of one or more users or the manager itself. If no argument is specified, properties of the @@ -277,8 +279,8 @@ - enable-linger USER... - disable-linger USER... + enable-linger USER… + disable-linger USER… Enable/disable user lingering for one or more users. If enabled for a specific user, a user manager is @@ -294,7 +296,7 @@ - terminate-user USER... + terminate-user USER… Terminates all sessions of a user. This kills all processes of all sessions of the user and deallocates all @@ -302,7 +304,7 @@ - kill-user USER... + kill-user USER… Send a signal to all processes of a user. Use to select the signal to send. @@ -319,7 +321,7 @@ - seat-status NAME... + seat-status NAME… Show terse runtime status information about one or more seats. Takes one or more seat names as parameters. @@ -331,7 +333,7 @@ - show-seat NAME... + show-seat NAME… Show properties of one or more seats or the manager itself. If no argument is specified, properties of the @@ -346,7 +348,7 @@ - attach NAME DEVICE... + attach NAME DEVICE… Persistently attach one or more devices to a seat. The devices should be specified via device paths in the @@ -370,7 +372,7 @@ - terminate-seat NAME... + terminate-seat NAME… Terminates all sessions on a seat. This kills all processes of all sessions on the seat and deallocates all @@ -453,9 +455,9 @@ fatima (1005) Sessions: 5 *3 Unit: user-1005.slice ├─user@1005.service - ... + … ├─session-3.scope - ... + … └─session-5.scope ├─3473 login -- fatima └─3515 -zsh diff --git a/man/sd_notify.xml b/man/sd_notify.xml index f2710b6ab..ae6792dd7 100644 --- a/man/sd_notify.xml +++ b/man/sd_notify.xml @@ -66,7 +66,7 @@ int sd_notifyf int unset_environment const char *format - ... + … @@ -81,7 +81,7 @@ pid_t pid int unset_environment const char *format - ... + … @@ -152,7 +152,7 @@ - STATUS=... + STATUS=… Passes a single-line UTF-8 status string back to the service manager that describes the service state. This @@ -160,11 +160,11 @@ state feedback, fsck-like programs could pass completion percentages and failing programs could pass a human-readable error message. Example: STATUS=Completed 66% of file - system check... + system check… - ERRNO=... + ERRNO=… If a service fails, the errno-style error code, formatted as string. Example: ERRNO=2 @@ -172,7 +172,7 @@ - BUSERROR=... + BUSERROR=… If a service fails, the D-Bus error-style error code. Example: @@ -180,7 +180,7 @@ - MAINPID=... + MAINPID=… The main process ID (PID) of the service, in case the service manager did not fork off the process itself. @@ -227,7 +227,7 @@ - FDNAME=... + FDNAME=… When used in combination with FDSTORE=1, specifies a name for the @@ -248,7 +248,7 @@ - WATCHDOG_USEC=... + WATCHDOG_USEC=… Reset watchdog_usec value during runtime. Notice that this is not available when using sd_event_set_watchdog() @@ -362,7 +362,7 @@ initialization: sd_notifyf(0, "READY=1\n" - "STATUS=Processing requests...\n" + "STATUS=Processing requests…\n" "MAINPID=%lu", (unsigned long) getpid());