summaryrefslogtreecommitdiffstats
path: root/tde-i18n-en_GB/docs/tdebase/kioslave/data.docbook
blob: fe7f3908dda640161d2d84de8c5d24115fd77984 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<article lang="&language;" id="data">
<title
>Data URLs</title>

<articleinfo>
<authorgroup>
<author
><personname
><firstname
>Leo</firstname
><surname
>Savernik</surname
></personname
> <address
><email
>l.savernik@aon.at</email
></address
> </author>
<othercredit role="translator"
><firstname
>Malcolm</firstname
><surname
>Hunter</surname
><affiliation
><address
><email
>malcolm.hunter@gmx.co.uk</email
></address
></affiliation
><contrib
>Conversion to British English</contrib
></othercredit
> 
</authorgroup>

<date
>2003-02-06</date>
<!--releaseinfo
>2.20.00</releaseinfo-->

</articleinfo>

<para
>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.</para>

<para
><userinput
>data:,foobar</userinput
> (note the comma after the colon) will deliver a text document that contains nothing but <literal
>foobar</literal
> </para>

<para
>The last example delivered a text document. For HTML documents one has to specify the MIME type <literal
>text/html</literal
>: <userinput
>data:text/html,&lt;title&gt;Testcase&lt;/title&gt;&lt;p&gt;This is a testcase&lt;/p&gt;</userinput
>. This will produce exactly the same output as if the content had been loaded from a document of its own. </para>

<para
>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: <userinput
>data:;charset=iso-8859-1,Gr%FC%DFe aus Schl%E4gl</userinput
> results in <literal
>Gr&uuml;&szlig;e aus Schl&auml;gl</literal
> whereas omitting the charset attribute might lead to something like <literal
>Gr??e aus Schl?gl</literal
> </para>

<para
><ulink url="http://www.ietf.org/rfc/rfc2397.txt"
>IETF RFC2397</ulink
> provides more information.</para>

</article>