Git commit f8aad83546c6e0c125132beccfe5d4292be57c1b by Elvis Angelaccio. Committed on 04/08/2015 at 17:04. Pushed by elvisangelaccio into branch 'frameworks'.
Add docbook manpage This manpage was created through the following pipeline: plain text -> txt2man -> doclifter. M +5 -1 doc/CMakeLists.txt A +73 -0 doc/man-kronometer.1.docbook http://commits.kde.org/kronometer/f8aad83546c6e0c125132beccfe5d4292be57c1b diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index c6e29e3..2c02fa9 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -1,5 +1,9 @@ -# Create and install documentation (handbook) +# Create and install documentation files kdoctools_create_handbook(index.docbook INSTALL_DESTINATION ${HTML_INSTALL_DIR}/en SUBDIR kronometer) +kdoctools_create_manpage(man-kronometer.1.docbook + 1 + INSTALL_DESTINATION + ${MAN_INSTALL_DIR}) diff --git a/doc/man-kronometer.1.docbook b/doc/man-kronometer.1.docbook new file mode 100644 index 0000000..8a7524c --- /dev/null +++ b/doc/man-kronometer.1.docbook @@ -0,0 +1,73 @@ +<?xml version="1.0" ?> +<!DOCTYPE refentry PUBLIC "-//KDE//DTD DocBook XML V4.5-Based Variant V1.1//EN" "dtd/kdedbx45.dtd" [ +<!ENTITY % English "INCLUDE"> +]> +<!-- lifted from man+troff by doclifter --> +<refentry id='kronometer1'> +<refmeta> +<refentrytitle>kronometer</refentrytitle> +<manvolnum>1</manvolnum> +<refmiscinfo class='source'>August 2015</refmiscinfo> +<refmiscinfo class='manual'>KRONOMETER 2.0.0</refmiscinfo> +</refmeta> +<refnamediv> +<refname>kronometer</refname> +<refpurpose>stopwatch application</refpurpose> +</refnamediv> +<!-- body begins here --> +<refsynopsisdiv id='synopsis'> +<cmdsynopsis> + <command>kronometer</command> +</cmdsynopsis> +</refsynopsisdiv> + +<refsect1 id='description'><title>DESCRIPTION</title> +<para>Kronometer is a stopwatch (timer/chronometer) application.</para> + +<para>Kronometer’s main features are the following:</para> + <blockquote> + <itemizedlist> + <listitem override='bullet'> +<para>Start/pause/resume the stopwatch widget;</para> + </listitem> + <listitem override='bullet'> +<para>Laps recording: you can capture the stopwatch time when you want;</para> + </listitem> + <listitem override='bullet'> +<para>Lap times sorting: you can easily find the shortest lap time or the +longest one;</para> + </listitem> + <listitem override='bullet'> +<para>Reset the stopwatch widget and the lap times;</para> + </listitem> + <listitem override='bullet'> +<para>Time format settings: you can choose the stopwatch granularity;</para> + </listitem> + <listitem override='bullet'> +<para>Times saving and resuming: you can save the stopwatch status and +resume it later;</para> + </listitem> + <listitem override='bullet'> +<para>Font customization: you can choose the fonts for each of the stopwatch +digits;</para> + </listitem> + <listitem override='bullet'> +<para>Color customization: you can choose the color for the stopwatch digits +and the stopwatch background;</para> + </listitem> + <listitem override='bullet'> +<para>Lap times export: you can export the lap times on a file using the JSON +or CSV format.</para> + </listitem> + </itemizedlist> + </blockquote> +</refsect1> + +<refsect1 id='author'><title>AUTHOR</title> +<para>The KRONOMETER was written by Elvis Angelaccio <[email protected]>.</para> + +<para>This manual page was written by Joao Eriberto Mota Filho <[email protected]> +for the Debian project (but may be used by others).</para> +</refsect1> +</refentry> + _______________________________________________ kde-doc-english mailing list [email protected] https://mail.kde.org/mailman/listinfo/kde-doc-english
