Git commit cf49d4d423906c780313bc51d9f671d8dd10a39a by T.C. Hollingsworth. Committed on 21/10/2014 at 18:02. Pushed by hollingsworth into branch 'master'.
add stub KWrite doc that points to full KatePart doc M +1 -0 doc/CMakeLists.txt A +3 -0 doc/kwrite/CMakeLists.txt A +151 -0 doc/kwrite/index.docbook http://commits.kde.org/kate/cf49d4d423906c780313bc51d9f671d8dd10a39a diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index 06c471d..7f909fe 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -1,3 +1,4 @@ # docs add_subdirectory( kate ) add_subdirectory( katepart ) +add_subdirectory( kwrite ) diff --git a/doc/kwrite/CMakeLists.txt b/doc/kwrite/CMakeLists.txt new file mode 100644 index 0000000..5f8071f --- /dev/null +++ b/doc/kwrite/CMakeLists.txt @@ -0,0 +1,3 @@ +########### install files ############### + +kdoctools_create_handbook (index.docbook INSTALL_DESTINATION ${HTML_INSTALL_DIR}/en SUBDIR kwrite) diff --git a/doc/kwrite/index.docbook b/doc/kwrite/index.docbook new file mode 100644 index 0000000..d6ecd14 --- /dev/null +++ b/doc/kwrite/index.docbook @@ -0,0 +1,151 @@ +<?xml version="1.0" ?> +<!DOCTYPE article PUBLIC "-//KDE//DTD DocBook XML V4.5-Based Variant V1.1//EN" +"dtd/kdedbx45.dtd" [ +<!ENTITY kappname "&kwrite;"> +<!ENTITY % English "INCLUDE" > <!-- change language only here --> +]> + +<article id="kwrite" lang="&language;"> + +<articleinfo> +<title>The &kwrite; Handbook</title> +<authorgroup> +<author>&TC.Hollingsworth; &TC.Hollingsworth.mail;</author> +<othercredit role="developer"> +&Christoph.Cullmann; &Christoph.Cullmann.mail; +<!-- <contrib>Core Developer and Maintainer</contrib> --> +</othercredit> + +<!-- TRANS:ROLES_OF_TRANSLATORS --> + +</authorgroup> + +<copyright> +<year>2014</year> +<holder>&TC.Hollingsworth; &TC.Hollingsworth.mail;</holder> +</copyright> +<legalnotice>&FDLNotice;</legalnotice> + +<date>2014-10-21</date> +<releaseinfo>5</releaseinfo> + +<abstract> +<para>&kwrite; is a text editor for &kde; allowing you to edit one file at the time per window.</para> +</abstract> + +<keywordset> +<keyword>KDE</keyword> +<keyword>KWrite</keyword> +<keyword>text</keyword> +<keyword>editor</keyword> +</keywordset> + +</articleinfo> + +<sect1 id="introduction"> +<title>Introduction</title> + +<para> +&kwrite; is more than a text editor for the &kde; Desktop. It is meant +to be a programmer's editor, and could be considered as at least a +partial alternative to more powerful editors. It may be best used in +conjunction with &konqueror; or &dolphin; for source file browsing for different +languages. &kwrite; also works very well as a simple text editor. One +of &kwrite;'s main features is the colorized syntax, customized for many +different programming languages such as: C/C++, &Java;, Python, Perl, +Bash, Modula 2, &HTML;, and Ada. &kwrite; has a single document interface +(<acronym>SDI</acronym>) allowing you to edit one file at the time per window. +</para> + +<para> +&kwrite; is a simple interface to the &katepart; component also used by &kate;, +KDevelop, and other applications from &kde; that require advanced text editing. +Therefore, complete documentation for all the features of &kwrite; can be found +in the <ulink url="help:/katepart">&katepart; Handbook</ulink>. +</para> +</sect1> + +<sect1 id="credits"> +<title>Credits and License</title> + +<para>&kwrite; Copyright 2001-2014 by the &kate; team.</para> + +<para> +Based on the original &kwrite;, which was Copyright 2000 by Jochen Wilhelmy +<email>digisnap at cs.tu-berlin.de</email> +</para> + +<para>Contributions:</para> + +<itemizedlist> +<listitem> +<para>&Christoph.Cullmann; &Christoph.Cullmann.mail;</para> +</listitem> + +<listitem> +<para>Michael Bartl <email>michael.bartl1 at chello.at</email></para> +</listitem> + +<listitem> +<para>Phlip <email>phlip_cpp at my-deja.com</email></para> +</listitem> + +<listitem> +<para>&Anders.Lund; &Anders.Lund.mail;</para> +</listitem> + +<listitem> +<para>Matt Newell <email>newellm at proaxis.com</email></para> +</listitem> + +<listitem> +<para>&Joseph.Wenninger; &Joseph.Wenninger.mail;</para> +</listitem> + +<listitem> +<para>Jochen Wilhelmy <email>digisnap at cs.tu-berlin.de</email></para> +</listitem> + +<listitem> +<para>&Michael.Koch; &Michael.Koch.mail;</para> +</listitem> + +<listitem> +<para>&Christian.Gebauer; &Christian.Gebauer.mail;</para> +</listitem> + +<listitem> +<para>&Simon.Hausmann; &Simon.Hausmann.mail;</para> +</listitem> + +<listitem> +<para>Glen Parker <email>glenebob at nwlink.com</email></para> +</listitem> + +<listitem> +<para>Scott Manson <email>sdmanson at altel.net</email></para> +</listitem> + +<listitem> +<para>&John.Firebaugh; &John.Firebaugh.mail;</para> +</listitem> +</itemizedlist> + +<!-- TRANS:CREDIT_FOR_TRANSLATORS --> + +&underFDL; +&underGPL; +</sect1> + +&documentation.index; +</article> +<!-- +Local Variables: +mode: sgml +sgml-namecase-general: t +sgml-namecase-entity: nil +sgml-general-insert-case: lower +sgml-minimize-attributes: nil +sgml-omittag: nil +End: +-->
