<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://wiki.friendi.ca/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://wiki.friendi.ca/feed.php">
        <title>Friendica / Wiki</title>
        <description>A Decentralized Social Network</description>
        <link>https://wiki.friendi.ca/</link>
        <image rdf:resource="https://wiki.friendi.ca/_media/wiki/logo.png" />
       <dc:date>2026-05-24T09:10:02+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://wiki.friendi.ca/docs/developer-how-to-move-classes-to-src?rev=1656078482&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.friendi.ca/docs/themes?rev=1655880862&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.friendi.ca/docs/autoloader?rev=1656078181&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.friendi.ca/docs/addons?rev=1656151801&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.friendi.ca/docs/addonstoragebackend?rev=1656077997&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.friendi.ca/docs/chats?rev=1656140349&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.friendi.ca/docs/fulltext_search?rev=1690432881&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.friendi.ca/docs/github?rev=1656080081&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.friendi.ca/docs/install-ejabberd?rev=1656139189&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.friendi.ca/docs/message-flow?rev=1656082701&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.friendi.ca/docs/text_comment?rev=1656147450&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.friendi.ca/docs/verify_homepage?rev=1669454169&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://wiki.friendi.ca/_media/wiki/logo.png">
        <title>Friendica / Wiki</title>
        <link>https://wiki.friendi.ca/</link>
        <url>https://wiki.friendi.ca/_media/wiki/logo.png</url>
    </image>
    <item rdf:about="https://wiki.friendi.ca/docs/developer-how-to-move-classes-to-src?rev=1656078482&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-06-24T13:48:02+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>How To Move Classes to src</title>
        <link>https://wiki.friendi.ca/docs/developer-how-to-move-classes-to-src?rev=1656078482&amp;do=diff</link>
        <description>How To Move Classes to src

Friendica uses Composer to manage autoloading. This means that all the PHP class files moved to the src folder will be automatically included when the class it defines is first used in the flow. This is an improvement over the current require usage since files will be included on an actual usage basis instead of the presence of a</description>
    </item>
    <item rdf:about="https://wiki.friendi.ca/docs/themes?rev=1655880862&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-06-22T06:54:22+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Themes</title>
        <link>https://wiki.friendi.ca/docs/themes?rev=1655880862&amp;do=diff</link>
        <description>Themes

To change the look of friendica you have to touch the themes.
The current default theme is frio but there are numerous others.
Have a look at the community contributed theme repository for some of the themes (and theme customizations) the community has created.
In case none of them suits your needs, there are several ways to change a theme.</description>
    </item>
    <item rdf:about="https://wiki.friendi.ca/docs/autoloader?rev=1656078181&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-06-24T13:43:01+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Autoloader with Composer</title>
        <link>https://wiki.friendi.ca/docs/autoloader?rev=1656078181&amp;do=diff</link>
        <description>Autoloader with Composer

Friendica uses Composer to manage dependencies libraries and the class autoloader both for libraries and namespaced Friendica classes.

It’s a command-line tool that downloads required libraries into the vendor folder and makes any namespaced class in</description>
    </item>
    <item rdf:about="https://wiki.friendi.ca/docs/addons?rev=1656151801&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-06-25T10:10:01+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Friendica Addon development</title>
        <link>https://wiki.friendi.ca/docs/addons?rev=1656151801&amp;do=diff</link>
        <description>Friendica Addon development

Please see the sample addon ‘randplace’ for a working example of using some of these features. Addons work by intercepting event hooks - which must be registered. Modules work by intercepting specific page requests (by</description>
    </item>
    <item rdf:about="https://wiki.friendi.ca/docs/addonstoragebackend?rev=1656077997&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-06-24T13:39:57+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Friendica Storage Backend Addon development</title>
        <link>https://wiki.friendi.ca/docs/addonstoragebackend?rev=1656077997&amp;do=diff</link>
        <description>Friendica Storage Backend Addon development

Storage backends can be added via addons. A storage backend is implemented as a class, and the plugin register the class to make it available to the system.

The Storage Backend Class

The class must live in</description>
    </item>
    <item rdf:about="https://wiki.friendi.ca/docs/chats?rev=1656140349&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-06-25T06:59:09+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Chats</title>
        <link>https://wiki.friendi.ca/docs/chats?rev=1656140349&amp;do=diff</link>
        <description>Chats

There are two possibilities to use chat on your friendica site

	*  IRC Chat
	*  XMPP/Jabber

IRC-Chat Addon

After activating the addon, you can find the chat at example.com/irc (if your Friendica nodes domain name is example.com). Note: you can use this chat without any login at your site so that everyone could use it.</description>
    </item>
    <item rdf:about="https://wiki.friendi.ca/docs/fulltext_search?rev=1690432881&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2023-07-27T04:41:21+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Search in Friendica</title>
        <link>https://wiki.friendi.ca/docs/fulltext_search?rev=1690432881&amp;do=diff</link>
        <description>Search in Friendica

Depending on the settings users of Friendica can perform searches for various things using the /search page (or the search bar in the upper navigation panel). The search is performed on the Friendica node itself, so only the content known to the Friendica node can be found.</description>
    </item>
    <item rdf:about="https://wiki.friendi.ca/docs/github?rev=1656080081&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-06-24T14:14:41+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Friendica on GitHub</title>
        <link>https://wiki.friendi.ca/docs/github?rev=1656080081&amp;do=diff</link>
        <description>Friendica on GitHub

Here is how you can work on the code with us. If you have any questions please write to the Friendica developers’ forum.

Introduction to the workflow with our GitHub repository

	*  Install git on the system you will be developing on.</description>
    </item>
    <item rdf:about="https://wiki.friendi.ca/docs/install-ejabberd?rev=1656139189&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-06-25T06:39:49+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>ejabberd and prosody XMPP server with synchronized credentials</title>
        <link>https://wiki.friendi.ca/docs/install-ejabberd?rev=1656139189&amp;do=diff</link>
        <description>ejabberd and prosody XMPP server with synchronized credentials

Ejabberd is a chat server that uses XMPP as messaging protocol that you can use with a large amount of clients. In conjunction with the “xmpp” addon it can be used for a web based chat solution for your users.</description>
    </item>
    <item rdf:about="https://wiki.friendi.ca/docs/message-flow?rev=1656082701&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-06-24T14:58:21+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Friendica Message Flow</title>
        <link>https://wiki.friendi.ca/docs/message-flow?rev=1656082701&amp;do=diff</link>
        <description>Friendica Message Flow

This page documents some of the details of how messages get from one person to another in the Friendica network. There are multiple paths, using multiple protocols and message formats.

Those attempting to understand these message flows should become familiar with (at the minimum) the</description>
    </item>
    <item rdf:about="https://wiki.friendi.ca/docs/text_comment?rev=1656147450&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-06-25T08:57:30+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Comment, sort and delete posts</title>
        <link>https://wiki.friendi.ca/docs/text_comment?rev=1656147450&amp;do=diff</link>
        <description>Comment, sort and delete posts

This article will guide you through the basic interaction possibilities you have on a posting in your network stream.

[Screenshot from the interaction possibilities with a postings (in this case an event), taken from the frio theme]

Buttons below the Posting

	*  Like / Dislike: With these buttons you can add a like (or dislike) to the posting as quick reaction. The</description>
    </item>
    <item rdf:about="https://wiki.friendi.ca/docs/verify_homepage?rev=1669454169&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-11-26T09:16:09+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Homepage Verification</title>
        <link>https://wiki.friendi.ca/docs/verify_homepage?rev=1669454169&amp;do=diff</link>
        <description>Homepage Verification

If you want to verify that the website you put into the Homepage field of your Friendica profile really belongs to you, you can do so using the rel-me microformat. Which basically is a machine read-able link to an URL in the internet that is also me</description>
    </item>
</rdf:RDF>
