kde-workspace/libs/konq/favicons/org.kde.FavIcon.xml
Ivailo Monev d811882f97 libs: favicons KDED module rewrite
saves a lot of I/O and network trafic if there are multiple bookmarks to
the same host and multiple queries are made (which essentially will end up
being many jobs for the same icon). also implemented fallback to
alternative http://foo.bar/favicon.png and added tests for more cases,
bonus points?

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2023-06-07 20:57:44 +03:00

19 lines
691 B
XML

<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
<node>
<interface name="org.kde.FavIcon">
<signal name="iconChanged">
<arg name="url" type="s" direction="out"/>
<arg name="iconName" type="s" direction="out"/>
</signal>
<method name="iconForUrl">
<arg type="s" direction="out"/>
<arg name="url" type="s" direction="in"/>
</method>
<method name="downloadUrlIcon">
<arg name="url" type="s" direction="in"/>
</method>
<method name="forceDownloadUrlIcon">
<arg name="url" type="s" direction="in"/>
</method>
</interface>
</node>