mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-07 22:02:12 +08:00

Automated using the following commands: $ mv src/{dring,jami} $ git grep -l src/dring | xargs sed -i 's,src/dring,src/jami,g' $ git grep -l '#include "dring/' | \ xargs sed -i 's,#include "dring/,#include "jami/,g' $ git grep -l 'dring.h' | xargs sed -i 's,dring.h,jami.h,g' And finally, $ git grep -l 'dring' | xargs sed -i 's,dring,jami,g' $ files=$(find -name '*dring*' | sort) $ for f in $files; do mkdir -p "$(dirname "$f")"; \ mv "$f" "$(echo $f | sed 's/dring/jami/g')"; done To resolve a bad renaming favorably: $ git grep -l -i AlsaCarjami | \ xargs sed -i -E 's/([Aa])lsaCarjami/\1lsaCardRingtone/g' The above renaming command is not perfect, so some hand-tuning was required to complete it. * src/manager.cpp (Manager::ManagerPimpl::retrieveConfigPath): Preserve the dring.yml configuration file name, until we add something to migrate (rename) it to jami.yml. * man/dring.pod: Delete. * bin/dbus/jamid.pod: Move to ... * man/jamid.pod: here. * bin/dbus/meson.build (jamid_targets): Normalize man section to the pre-existing 1 and adjust accordingly. * src/jami/def.h (dring_EXPORTS): Rename to ... (jami_EXPORTS): ... this. change-Id: I9828be6da9c711ab2f22c4d1b9539fea89d7b6fb
65 lines
1.5 KiB
Plaintext
65 lines
1.5 KiB
Plaintext
=head1 NAME
|
|
|
|
jamid - core daemon for Jami: secure and distributed voice, video and chat communication platform.
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
B<jamid> [OPTION]...
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
Jami is meant to be a robust enterprise-class desktop phone. It provides functions like call transfer, call hold, multiple lines, multiple accounts support.
|
|
Jami audio layer is build upon a native ALSA interface and a native PulseAudio interface.
|
|
B<jamid> is the core of Jami; it provides the DBus service "cx.ring.Ring". You need to install a client to use the daemon, for instance GTK+ client, B<jami-gnome>.
|
|
|
|
=head1 OPTIONS
|
|
|
|
=over 8
|
|
|
|
=item B<-c, --console>
|
|
|
|
Output the log to the console instead of syslog.
|
|
|
|
=item B<-d, --debug>
|
|
|
|
Debug mode (more verbose output).
|
|
|
|
=item B<-a, --auto-answer>
|
|
|
|
Force automatic answer to incoming calls.
|
|
|
|
=item B<-p, --persistent>
|
|
|
|
Stay alive after all clients quit.
|
|
|
|
=item B<-h, --help>
|
|
|
|
Print short list of command-line options.
|
|
|
|
=back
|
|
|
|
=head1 BUGS
|
|
|
|
Please report bugs at https://git.jami.net.
|
|
|
|
=head1 AUTHORS
|
|
|
|
B<jamid> is developed in Montreal by Savoir-faire Linux Inc.
|
|
|
|
This manual page was written by Emmanuel Milou <emmanuel.milou@savoirfairelinux.com>.
|
|
|
|
=head1 SEE ALSO
|
|
|
|
B<jami-gnome>(1)
|
|
|
|
=head1 COPYRIGHT
|
|
|
|
This program is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License version 3 as published by the
|
|
Free Software Foundation.
|
|
|
|
On Debian GNU/Linux systems, the complete text of the GNU General
|
|
Public License can be found in `/usr/share/common-licenses/GPL'.
|
|
|
|
=cut
|