diff options
Diffstat (limited to 'quanta/data/templates/pages')
| -rw-r--r-- | quanta/data/templates/pages/CMakeLists.txt | 1 | ||||
| -rw-r--r-- | quanta/data/templates/pages/Makefile.am | 2 | ||||
| -rw-r--r-- | quanta/data/templates/pages/docbook/tde-doc-template.docbook | 25 | ||||
| -rw-r--r-- | quanta/data/templates/pages/html5/CMakeLists.txt | 14 | ||||
| -rw-r--r-- | quanta/data/templates/pages/html5/Makefile.am | 2 | ||||
| -rw-r--r-- | quanta/data/templates/pages/html5/base.html | 9 |
6 files changed, 31 insertions, 22 deletions
diff --git a/quanta/data/templates/pages/CMakeLists.txt b/quanta/data/templates/pages/CMakeLists.txt index 965a9475..9aca96f7 100644 --- a/quanta/data/templates/pages/CMakeLists.txt +++ b/quanta/data/templates/pages/CMakeLists.txt @@ -11,6 +11,7 @@ add_subdirectory( php ) add_subdirectory( html ) +add_subdirectory( html5 ) add_subdirectory( docbook ) install( FILES dirinfo diff --git a/quanta/data/templates/pages/Makefile.am b/quanta/data/templates/pages/Makefile.am index 6eaaa6a8..f7b47129 100644 --- a/quanta/data/templates/pages/Makefile.am +++ b/quanta/data/templates/pages/Makefile.am @@ -1,4 +1,4 @@ -SUBDIRS = php html docbook +SUBDIRS = php html html5 docbook templatespagesdir = ${quanta_datadir}/templates/pages templatespages_DATA = dirinfo diff --git a/quanta/data/templates/pages/docbook/tde-doc-template.docbook b/quanta/data/templates/pages/docbook/tde-doc-template.docbook index 18870bd7..5f90131d 100644 --- a/quanta/data/templates/pages/docbook/tde-doc-template.docbook +++ b/quanta/data/templates/pages/docbook/tde-doc-template.docbook @@ -138,7 +138,7 @@ any problems or feature requests to the &tde; mailing lists. </para> </chapter> -<chapter id="using-kapp"> +<chapter id="using-tdeApp"> <title>Using &tdemyapplication;</title> <!-- This chapter should tell the user how to use your app. You should use as @@ -167,7 +167,7 @@ patent issues. --> </para> -<sect1 id="kapp-features"> +<sect1 id="tdeApp-features"> <title>More &tdemyapplication; features</title> <para>It slices! It dices! and it comes with a free toaster!</para> @@ -198,7 +198,7 @@ Also include any keys that have a special function but have no equivalent in the menus or toolbars. This may not be necessary for small apps or apps with no tool or menu bars. --> -<sect1 id="kapp-mainwindow"> +<sect1 id="tdeApp-mainwindow"> <title>The main &tdemyapplication; window</title> <sect2> @@ -486,7 +486,7 @@ Documentation Copyright © 1999 George N. Ugnacious <email>gnu@trinitydeskto <appendix id="installation"> <title>Installation</title> -<sect1 id="getting-kapp"> +<sect1 id="getting-tdeApp"> <title>How to obtain &tdemyapplication;</title> <!-- This first entity contains boiler plate for applications that are @@ -518,11 +518,6 @@ about 5 megs of memory to run, but this may vary depending on your platform and configuration. </para> -<para> -All required libraries as well as &tdemyapplication; itself can be found -on <ulink url="ftp://ftp.kapp.org">The &tdemyapplication; home page</ulink>. -</para> - <!-- For a list of updates, you may refer to the application web site or the ChangeLog file, or ... --> <para> @@ -554,15 +549,3 @@ dicer-toaster daemon first, or &tdemyapplication; won't work !</para> &documentation.index; </book> - -<!-- -Local Variables: -mode: xml -sgml-minimize-attributes:nil -sgml-general-insert-case:lower -sgml-indent-step:0 -sgml-indent-data:nil -End: - -vim:tabstop=2:shiftwidth=2:expandtab ---> diff --git a/quanta/data/templates/pages/html5/CMakeLists.txt b/quanta/data/templates/pages/html5/CMakeLists.txt new file mode 100644 index 00000000..0bddf292 --- /dev/null +++ b/quanta/data/templates/pages/html5/CMakeLists.txt @@ -0,0 +1,14 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +install( FILES + base.html + DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/pages/html5 ) diff --git a/quanta/data/templates/pages/html5/Makefile.am b/quanta/data/templates/pages/html5/Makefile.am new file mode 100644 index 00000000..21dded22 --- /dev/null +++ b/quanta/data/templates/pages/html5/Makefile.am @@ -0,0 +1,2 @@ +templatespageshtml401dir = ${quanta_datadir}/templates/pages/html5 +templatespageshtml401_DATA = base.html diff --git a/quanta/data/templates/pages/html5/base.html b/quanta/data/templates/pages/html5/base.html new file mode 100644 index 00000000..d2974677 --- /dev/null +++ b/quanta/data/templates/pages/html5/base.html @@ -0,0 +1,9 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="utf-8"> + <title></title> +</head> +<body> +</body> +</html> |
