Git commit 888ca49868f911e9610ea71a8900b3781b1b27df by T.C. Hollingsworth. Committed on 19/05/2013 at 23:05. Pushed by hollingsworth into branch 'master'.
add a new development chapter A +46 -0 doc/kate/development.docbook M +3 -0 doc/kate/index.docbook http://commits.kde.org/kate/888ca49868f911e9610ea71a8900b3781b1b27df diff --git a/doc/kate/development.docbook b/doc/kate/development.docbook new file mode 100644 index 0000000..fabd96c --- /dev/null +++ b/doc/kate/development.docbook @@ -0,0 +1,46 @@ +<chapter id="dev"> +<chapterinfo> +<authorgroup> +<author>&TC.Hollingsworth; &TC.Hollingsworth.mail;</author> +<!-- TRANS:ROLES_OF_TRANSLATORS --> +</authorgroup> +</chapterinfo> +<title>Extending &kate;</title> + +<sect1 id="dev-intro"> +<title>Introduction</title> + +<para>Like any advanced text editor, &kate; offers a variety of ways to extend +its functionality. You can <link linkend="dev-scripting">write simple scripts +to add functionality with JavaScript</link>, add enhanced functionality to the +editor component with <link linkend="dev-part">Editor Component Plugins</link>, +or add even more functionality to the editor itself with +<link linkend="dev-app">&kate; Application Plugins written in C++</link> or +<link linkend="dev-pate">&pate; Plugins written in Python</link>. Finally, once +you have extended &kate;, you are welcome to +<ulink url="http://kate-editor.org/join-us/">join us</ulink> and share your +enhancements with the world!</para> + +</sect1> + +<sect1 id="dev-scripting"> +<title>Scripting with JavaScript</title> + +</sect1> + +<sect1 id="dev-part"> +<title>Editor Component Plugins</title> + +</sect1> + +<sect1 id="dev-app"> +<title>&kate; Application Plugins</title> + +</sect1> + +<sect1 id="dev-pate"> +<title>&pate; Python Plugins</title> + +</sect1> + +</chapter> diff --git a/doc/kate/index.docbook b/doc/kate/index.docbook index c746ae5..993a022 100644 --- a/doc/kate/index.docbook +++ b/doc/kate/index.docbook @@ -19,6 +19,7 @@ <!ENTITY part-chapter SYSTEM "part.docbook"> <!ENTITY plugins-chapter SYSTEM "plugins.docbook"> <!ENTITY plugins-part-sections SYSTEM "plugins-part.docbook"> + <!ENTITY development-chapter SYSTEM "development.docbook"> <!ENTITY vi-chapter SYSTEM "vi.docbook"> <!ENTITY regexp-appendix SYSTEM "regular-expressions.docbook"> <!ENTITY % addindex "IGNORE"> @@ -124,6 +125,8 @@ configuration files. This document was written in &kate;. &advanced-chapter; +&development-chapter; + &vi-chapter; &menu-chapter;
