From cf14b1bd7803760ea4657269aeb424869e0058c6 Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Thu, 6 Feb 2014 17:50:29 -0600 Subject: Reorganize tdeioslave help handbooks, fix related protocol files and issues, update and add handbooks. --- doc/tdeioslave/data/CMakeLists.txt | 9 +++++++ doc/tdeioslave/data/Makefile.am | 2 ++ doc/tdeioslave/data/index.docbook | 53 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 64 insertions(+) create mode 100644 doc/tdeioslave/data/CMakeLists.txt create mode 100644 doc/tdeioslave/data/Makefile.am create mode 100644 doc/tdeioslave/data/index.docbook (limited to 'doc/tdeioslave/data') diff --git a/doc/tdeioslave/data/CMakeLists.txt b/doc/tdeioslave/data/CMakeLists.txt new file mode 100644 index 000000000..60910d4cc --- /dev/null +++ b/doc/tdeioslave/data/CMakeLists.txt @@ -0,0 +1,9 @@ +################################################# +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +tde_create_handbook( DESTINATION tdeioslave/data ) diff --git a/doc/tdeioslave/data/Makefile.am b/doc/tdeioslave/data/Makefile.am new file mode 100644 index 000000000..b542e7870 --- /dev/null +++ b/doc/tdeioslave/data/Makefile.am @@ -0,0 +1,2 @@ +KDE_LANG = en +KDE_DOCS = tdeioslave/data diff --git a/doc/tdeioslave/data/index.docbook b/doc/tdeioslave/data/index.docbook new file mode 100644 index 000000000..68d1b3d0a --- /dev/null +++ b/doc/tdeioslave/data/index.docbook @@ -0,0 +1,53 @@ + + + +]> + +
+Data URLs + + + +LeoSavernik +
l.savernik@aon.at
+
+ +
+ +2003-02-06 + + +
+ +Data URLs allow small document data to be included in the URL itself. +This is useful for very small HTML testcases or other occasions that do not +justify a document of their own. + +data:,foobar +(note the comma after the colon) will deliver a text document that contains +nothing but foobar + + +The last example delivered a text document. For HTML documents one +has to specify the MIME type text/html: +data:text/html,<title>Testcase</title><p>This +is a testcase</p>. This will produce exactly the same +output as if the content had been loaded from a document of its own. + + +Specifying alternate character sets is also possible. Note that 8-Bit +characters have to be escaped by a percentage sign and their two-digit +hexadecimal codes: +data:;charset=iso-8859-1,Gr%FC%DFe aus Schl%E4gl +results in +Grüße aus Schlägl +whereas omitting the charset attribute might lead to something like +Gr??e aus Schl?gl + + +IETF +RFC2397 provides more information. + +
+ -- cgit v1.2.1