diff options
author | Alexis Puente Montiel <miscelaneanatural@yahoo.es> | 2022-02-17 22:17:14 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2022-04-22 00:57:00 +0200 |
commit | 7aac45c2ff3634ea31cf9b1a97889065edf650f7 (patch) | |
tree | e96fdd9f31ced02f068bcbac424fc34ad505432d /quanta/data/templates | |
parent | 669546ae13394c0e9de9070ab344b2cbee336395 (diff) | |
download | tdewebdev-7aac45c2ff3634ea31cf9b1a97889065edf650f7.tar.gz tdewebdev-7aac45c2ff3634ea31cf9b1a97889065edf650f7.zip |
Quanta: Add dtep to support HTML5 mode.r14.0.12
Signed-off-by: Alexis Puente Montiel <miscelaneanatural@yahoo.es>
Minor fixes.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 3b06901a66232c9de174fae3c09bdad401b234c2)
Diffstat (limited to 'quanta/data/templates')
-rw-r--r-- | quanta/data/templates/documents/CMakeLists.txt | 1 | ||||
-rw-r--r-- | quanta/data/templates/documents/Makefile.am | 2 | ||||
-rw-r--r-- | quanta/data/templates/documents/html5/CMakeLists.txt | 14 | ||||
-rw-r--r-- | quanta/data/templates/documents/html5/Makefile.am | 2 | ||||
-rw-r--r-- | quanta/data/templates/documents/html5/demo.html | 9 | ||||
-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/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 |
10 files changed, 54 insertions, 2 deletions
diff --git a/quanta/data/templates/documents/CMakeLists.txt b/quanta/data/templates/documents/CMakeLists.txt index e114aeb6..e37e5927 100644 --- a/quanta/data/templates/documents/CMakeLists.txt +++ b/quanta/data/templates/documents/CMakeLists.txt @@ -10,6 +10,7 @@ ################################################# add_subdirectory( html ) +add_subdirectory( html5 ) add_subdirectory( others ) add_subdirectory( scripts ) diff --git a/quanta/data/templates/documents/Makefile.am b/quanta/data/templates/documents/Makefile.am index eb6533cd..f35b06b6 100644 --- a/quanta/data/templates/documents/Makefile.am +++ b/quanta/data/templates/documents/Makefile.am @@ -1,4 +1,4 @@ -SUBDIRS = html others scripts +SUBDIRS = html html5 others scripts templatesdocumentsdir = ${quanta_datadir}/templates/documents templatesdocuments_DATA = dirinfo diff --git a/quanta/data/templates/documents/html5/CMakeLists.txt b/quanta/data/templates/documents/html5/CMakeLists.txt new file mode 100644 index 00000000..352ba774 --- /dev/null +++ b/quanta/data/templates/documents/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 + demo.html + DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/documents/html5 ) diff --git a/quanta/data/templates/documents/html5/Makefile.am b/quanta/data/templates/documents/html5/Makefile.am new file mode 100644 index 00000000..a4b04fe0 --- /dev/null +++ b/quanta/data/templates/documents/html5/Makefile.am @@ -0,0 +1,2 @@ +templatesdocumentshtmldir = ${quanta_datadir}/templates/documents/html5 +templatesdocumentshtml_DATA = demo.html diff --git a/quanta/data/templates/documents/html5/demo.html b/quanta/data/templates/documents/html5/demo.html new file mode 100644 index 00000000..d2974677 --- /dev/null +++ b/quanta/data/templates/documents/html5/demo.html @@ -0,0 +1,9 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="utf-8"> + <title></title> +</head> +<body> +</body> +</html> 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/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> |