diff options
Diffstat (limited to 'doc/man/cervisia')
-rw-r--r-- | doc/man/cervisia/CMakeLists.txt | 7 | ||||
-rw-r--r-- | doc/man/cervisia/cvsaskpass.1 | 63 | ||||
-rw-r--r-- | doc/man/cervisia/cvsservice.1 | 79 |
3 files changed, 149 insertions, 0 deletions
diff --git a/doc/man/cervisia/CMakeLists.txt b/doc/man/cervisia/CMakeLists.txt new file mode 100644 index 00000000..24ccd704 --- /dev/null +++ b/doc/man/cervisia/CMakeLists.txt @@ -0,0 +1,7 @@ +file( GLOB _man_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.1 ) + +INSTALL( + FILES ${_man_files} + DESTINATION ${MAN_INSTALL_DIR}/man1 + COMPONENT doc +) diff --git a/doc/man/cervisia/cvsaskpass.1 b/doc/man/cervisia/cvsaskpass.1 new file mode 100644 index 00000000..d4b7e5df --- /dev/null +++ b/doc/man/cervisia/cvsaskpass.1 @@ -0,0 +1,63 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH CVSASKPASS 1 "March 19, 2005" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp <n> insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +cvsaskpass \- prompt for a password for the CVS DCOP service +.SH SYNOPSIS +.B cvsaskpass +.RI "[ " generic-options " ]" +.I prompt +.SH DESCRIPTION +This utility displays a dialog box prompting the user for the password to +a CVS repository, then writes the password to standard output and exits. +You should not need to run this program directly \- it is designed for +the internal use of +.BR cvsservice (1). +.PP +The prompt should be of the following form: +.RS +.PP +\fIuser\fP@\fIhost\fP's password: +.RE +.PP +This will allow the dialog box to display the details of the CVS +repository to the user. +.PP +This utility is part of the CVS service provided with Cervisia, which in +turn is part of the TDE Software Development Kit. +.SH OPTIONS +For a full summary of options, run \fIcvsaskpass \-\-help\fP. +.SH RETURN VALUE +If a password was succefully obtained, 0 is returned. If no prompt was +supplied on the command-line or if the dialog was cancelled, 1 is returned. +.SH SEE ALSO +.BR cervisia (1), +.BR cvsservice (1), +.BR dcop (1). +.PP +Details of how to use the CVS service from within another script or C++ +program can be found in \fI/usr/share/doc/libcvsservice0/DESIGN\fP. +.SH AUTHOR +The CVS service was written by Christian Loose <[email protected]>. +.br +Cervisia was written by Bernd Gehrmann <[email protected]>, +Christian Loose <[email protected]>, +Andre Woebbeking <[email protected]>, +Carlos Woelz <[email protected]> and others. +.br +This manual page was prepared by Ben Burton <[email protected]> +for the Debian GNU/Linux system (but may be used by others). diff --git a/doc/man/cervisia/cvsservice.1 b/doc/man/cervisia/cvsservice.1 new file mode 100644 index 00000000..9d5c791d --- /dev/null +++ b/doc/man/cervisia/cvsservice.1 @@ -0,0 +1,79 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH CVSSERVICE 1 "March 19, 2005" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp <n> insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +cvsservice \- a DCOP service for accessing CVS repositories +.SH SYNOPSIS +.B cvsservice +.RI "[ " generic-options " ]" +.SH DESCRIPTION +The CVS service is a DCOP service for accessing and working with +remote CVS repositories. Applications may link with this library to +access the DCOP service directly from C++. Alternatively, scripts may +access the service using the standard +.BR dcop (1) +command-line tool. +.PP +DCOP is the Desktop Communication Protocol used throughout TDE. +.PP +The CVS DCOP service consists of the following three parts: +.TP +\fBCvsService\fP +The main interface to the functionality of the +.BR cvs (1) +command line client. There is one method for each CVS command, e.g., add, +checkout, commit, etc. The methods assemble the command line +arguments, create a CvsJob and return a DCOPRef object for it +to the caller. There is one instance of this service for each +application instance. +.TP +\fBRepository\fP +This DCOPObject manages the configuration data of the current +CVS repository. The data is automatically updated when other +service instances change it. +.TP +\fBCvsJob\fP +This class represents a CVS job. You can execute and cancel it, +and you can retrieve the output of the cvs client by either +connecting to the proper DCOP signals or by using the output() +method. There are two types of jobs. First the non-concurrent +job which has to run alone, like cvs update or import. Second +the jobs which can run concurrently like cvs log or annotate. +.PP +The CVS service is provided with Cervisia, which is part of the TDE +Software Development Kit. +.SH OPTIONS +For a full summary of options, run \fIcvsservice \-\-help\fP. +.SH SEE ALSO +.BR cervisia (1), +.BR cvs (1), +.BR cvsaskpass (1), +.BR dcop (1). +.PP +Details of how to use the CVS service from within a shell script, a C++ +program or through the JavaScript bindings can be found in +\fI/usr/share/doc/libcvsservice0/DESIGN\fP. +.SH AUTHOR +The CVS service was written by Christian Loose <[email protected]>. +.br +Cervisia was written by Bernd Gehrmann <[email protected]>, +Christian Loose <[email protected]>, +Andre Woebbeking <[email protected]>, +Carlos Woelz <[email protected]> and others. +.br +This manual page was prepared by Ben Burton <[email protected]> +for the Debian GNU/Linux system (but may be used by others). |