Advance Wayland and KDE package bring-up

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
2026-04-14 10:51:06 +01:00
parent 51f3c21121
commit cf12defd28
15214 changed files with 20594243 additions and 269 deletions
@@ -0,0 +1,2 @@
########### install files ###############
kdoctools_create_handbook(index.docbook INSTALL_DESTINATION ${KDE_INSTALL_DOCBUNDLEDIR}/en SUBDIR kioworker6/data)
@@ -0,0 +1,54 @@
<?xml version="1.0" ?>
<!DOCTYPE article PUBLIC "-//KDE//DTD DocBook XML V4.5-Based Variant V1.1//EN"
"dtd/kdedbx45.dtd" [
<!ENTITY % addindex "IGNORE">
<!ENTITY % English "INCLUDE" > <!-- change language only here -->
]>
<article lang="&language;" id="data">
<title>Data &URL;s</title>
<articleinfo>
<authorgroup>
<author><personname><firstname>Leo</firstname><surname>Savernik</surname></personname>
<address><email>l.savernik@aon.at</email></address>
</author>
<!-- TRANS:ROLES_OF_TRANSLATORS -->
</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>:
<quote><userinput>data:text/html,&lt;title&gt;Testcase&lt;/title&gt;&lt;p&gt;This
is a testcase&lt;/p&gt;</userinput></quote>. 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:
<quote><userinput>data:;charset=iso-8859-1,Gr%FC%DFe aus Schl%E4gl</userinput></quote>
results in
<quote><literal>Gr&uuml;&szlig;e aus Schl&auml;gl</literal></quote>
whereas omitting the charset attribute might lead to something like
<quote><literal>Gr??e aus Schl?gl</literal></quote>.
</para>
<para><ulink url="https://www.ietf.org/rfc/rfc2397.txt">IETF
RFC2397</ulink> provides more information.</para>
</article>