mirror of
https://codeberg.org/fediverse/fep.git
synced 2026-08-08 21:45:52 +00:00
Deploying from 7ac728a1d1 [SKIP CI]
This commit is contained in:
+103
-22
@@ -835,10 +835,43 @@
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#462-example" class="md-nav__link">
|
||||
<a href="#462-recommendations" class="md-nav__link">
|
||||
<span class="md-ellipsis">
|
||||
|
||||
4.6.2. Example
|
||||
4.6.2 Recommendations
|
||||
|
||||
</span>
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#463-share-example" class="md-nav__link">
|
||||
<span class="md-ellipsis">
|
||||
|
||||
4.6.3. Share Example
|
||||
|
||||
</span>
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#464-reply-example" class="md-nav__link">
|
||||
<span class="md-ellipsis">
|
||||
|
||||
4.6.4 Reply Example
|
||||
|
||||
</span>
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#465-threaded-discussion-example" class="md-nav__link">
|
||||
<span class="md-ellipsis">
|
||||
|
||||
4.6.5 Threaded Discussion Example
|
||||
|
||||
</span>
|
||||
</a>
|
||||
@@ -1871,10 +1904,21 @@
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#82-clients" class="md-nav__link">
|
||||
<a href="#82-remote-servers" class="md-nav__link">
|
||||
<span class="md-ellipsis">
|
||||
|
||||
8.2 Clients
|
||||
8.2 Remote Servers
|
||||
|
||||
</span>
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#83-libraries" class="md-nav__link">
|
||||
<span class="md-ellipsis">
|
||||
|
||||
8.3 Libraries
|
||||
|
||||
</span>
|
||||
</a>
|
||||
@@ -2118,7 +2162,6 @@ description: ""Activity Intents" extend the capabilities of an ActivityPub serve
|
||||
<h3 id="46-create-intent">4.6. Create Intent<a class="headerlink" href="#46-create-intent" title="Permanent link">¶</a></h3>
|
||||
<p>This intent corresponds to the ActivityStreams <a href="https://www.w3.org/TR/activitystreams-vocabulary/#dfn-create">Create activity</a> and is defined using the link relation <code>https://w3id.org/fep/3b86/Create</code>.</p>
|
||||
<p>The Create intent publishes the API endpoint where the current user can create a new post in their own outbox.</p>
|
||||
<p>This is similar to the existing "share" endpoints supported by several Fediverse apps, where the user can create a new post in their inbox starting with some pre-populated content.</p>
|
||||
<p>This Intent differs slightly from others in that it does not take an object ID as a parameter because it expects a the user's home server to create a new object. Instead, the parameters for this Intent are meant to pre-populate into the new object that the user will create. </p>
|
||||
<h4 id="461-parameters">4.6.1. Parameters<a class="headerlink" href="#461-parameters" title="Permanent link">¶</a></h4>
|
||||
<ul>
|
||||
@@ -2126,21 +2169,49 @@ description: ""Activity Intents" extend the capabilities of an ActivityPub serve
|
||||
<li><code>{name}</code> - (optional) Name to pre-populate into the created object.</li>
|
||||
<li><code>{summary}</code> - (optional) Summary to pre-populate into the created object.</li>
|
||||
<li><code>{content}</code> - (optional) Text content to pre-populate into the created object.</li>
|
||||
<li><code>{inReplyTo}</code> - (optional)The ID of the ActivityStreams Document that the user is replying to.</li>
|
||||
<li><code>{attachment}</code> - (optional) ID of an object (such as a link or an image) that should be included in the created object.</li>
|
||||
<li><code>{tag}</code> - (optional) ID of an object (such as a tag definition) that should be referenced by the created object</li>
|
||||
<li><code>{startTime}</code> - (optional) a <a href="https://www.w3.org/TR/activitystreams-core/#dates">date-time</a> that identifies the actual or expected starting time of the created object. <a href="https://tools.ietf.org/html/rfc3339">RFC3339 format</a> </li>
|
||||
<li><code>{endTime}</code> - (optional) a <a href="https://www.w3.org/TR/activitystreams-core/#dates">date-time</a> that identifies the actual or expected ending time of the created object. <a href="https://tools.ietf.org/html/rfc3339">RFC3339 format</a></li>
|
||||
<li><code>{describes}</code> (optional) the ID of an object to be described, when creating a <a href="https://www.w3.org/TR/activitystreams-vocabulary/#dfn-profile">Profile</a> object.</li>
|
||||
<li><code>{on-success}</code> - (optional) Workflow action to perform after the workflow completes.</li>
|
||||
<li><code>{on-cancel}</code> - (optional) Workflow action to perform if the user aborts the workflow.</li>
|
||||
</ul>
|
||||
<h4 id="462-example">4.6.2. Example<a class="headerlink" href="#462-example" title="Permanent link">¶</a></h4>
|
||||
<p><strong>Discussion and Threading</strong>
|
||||
* <code>{audience}</code> - (optional) The ID of the <a href="https://www.w3.org/TR/activitystreams-vocabulary/#dfn-audience">audience</a> to pre-populate into the created object.
|
||||
* <code>{context}</code> - (optional) The ID of the <a href="https://www.w3.org/TR/activitystreams-vocabulary/#dfn-context">context</a> that this object belongs to.
|
||||
* <code>{inReplyTo}</code> - (optional)The ID of the ActivityStreams Document that this object is <a href="https://www.w3.org/TR/activitystreams-vocabulary/#dfn-inreplyto">inReplyTo</a>.</p>
|
||||
<p><strong>Other Workflow</strong>
|
||||
* <code>{on-success}</code> - (optional) Workflow action to perform after the workflow completes.
|
||||
* <code>{on-cancel}</code> - (optional) Workflow action to perform if the user aborts the workflow.</p>
|
||||
<h4 id="462-recommendations">4.6.2 Recommendations<a class="headerlink" href="#462-recommendations" title="Permanent link">¶</a></h4>
|
||||
<p>In ActivityPub, the <code>Create</code> activity has many uses, such as creating new posts, replying to existing posts, and even sharing external web content back into the Fediverse. All of these actions can all be done using various tokens present in the <code>Create</code> intent template.</p>
|
||||
<p>To maximize compatibility, home servers SHOULD include the following tokens in their <code>Create</code> template strings.</p>
|
||||
<ul>
|
||||
<li>The <code>{content}</code> token is is commonly used as a "share" link, allowing remote servers to pre-populate the content of a post with the URL of the web page being shared.</li>
|
||||
<li>The <code>{inReplyTo}</code> token allows posts to be marked as replies to other Fediverse content.</li>
|
||||
<li>The <code>{audience}</code> and <code>{context}</code> tokens are used by threaded discussions to locate objects correctly within a message board.</li>
|
||||
</ul>
|
||||
<p>Clients (and client libraries) can determine if a home server supports any of these use cases by inspecting the template strings for the corresponding tokens. For instance, a remote server can confirm that the <code>{inReplyTo}</code> token is present in the <code>Create</code> intent template. If it is present, then the remote server can display or activate a "reply to" link on its content page.</p>
|
||||
<h4 id="463-share-example">4.6.3. Share Example<a class="headerlink" href="#463-share-example" title="Permanent link">¶</a></h4>
|
||||
<div class="highlight"><pre><span></span><code><span class="p">{</span>
|
||||
<span class="w"> </span><span class="nt">"rel"</span><span class="p">:</span><span class="w"> </span><span class="s2">"https://w3id.org/fep/3b86/Create"</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"template"</span><span class="p">:</span><span class="w"> </span><span class="s2">"https://mastodon.social/share?text={content}"</span>
|
||||
<span class="p">}</span>
|
||||
</code></pre></div>
|
||||
<p>Several servers implement "share" buttons that let users share web page content back into the Fediverse. To do this, they pre-populate the <code>{content}</code> token of the Activity Intent with the URL of the web page to be shared.</p>
|
||||
<h4 id="464-reply-example">4.6.4 Reply Example<a class="headerlink" href="#464-reply-example" title="Permanent link">¶</a></h4>
|
||||
<div class="highlight"><pre><span></span><code><span class="p">{</span>
|
||||
<span class="w"> </span><span class="nt">"rel"</span><span class="p">:</span><span class="w"> </span><span class="s2">"https://w3id.org/fep/3b86/Create"</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"template"</span><span class="p">:</span><span class="w"> </span><span class="s2">"https://server.social/@me/create?inReplyTo={inReplyTo}"</span>
|
||||
<span class="p">}</span>
|
||||
</code></pre></div>
|
||||
<p>Remote servers can inspect the template string to determine if replies are supported or not. If the template string includes an {inReplyTo} token, then the home server can accept posts that are direct replies to other ActivityPub objects.</p>
|
||||
<h4 id="465-threaded-discussion-example">4.6.5 Threaded Discussion Example<a class="headerlink" href="#465-threaded-discussion-example" title="Permanent link">¶</a></h4>
|
||||
<div class="highlight"><pre><span></span><code><span class="p">{</span>
|
||||
<span class="w"> </span><span class="nt">"rel"</span><span class="p">:</span><span class="w"> </span><span class="s2">"https://w3id.org/fep/3b86/Create"</span><span class="p">,</span>
|
||||
<span class="w"> </span><span class="nt">"template"</span><span class="p">:</span><span class="w"> </span><span class="s2">"https://server.social/@me/create?audience={audience}&context={context}"</span>
|
||||
<span class="p">}</span>
|
||||
</code></pre></div>
|
||||
<p>Threaded discussions such as forums and bulletin boards typically use <code>{audience}</code> and <code>{context}</code> tokens to place content into the correct part of a discussion. Home servers that want their users to participate in threaded discussions SHOULD publish these tokens in the template string. Endpoints can then pre-populate the values into the resulting activity.</p>
|
||||
<h3 id="47-delete-intent">4.7. Delete Intent<a class="headerlink" href="#47-delete-intent" title="Permanent link">¶</a></h3>
|
||||
<p>This intent corresponds to the ActivityStreams <a href="https://www.w3.org/TR/activitystreams-vocabulary/#dfn-delete">Delete activity</a> and is defined using the link relation <code>https://w3id.org/fep/3b86/Delete</code>.</p>
|
||||
<p>The Delete intent publishes the API endpoint where the current user can initiate a "delete" request.</p>
|
||||
@@ -2532,26 +2603,36 @@ description: ""Activity Intents" extend the capabilities of an ActivityPub serve
|
||||
<p>Remote servers MAY also account for applications that do not publish Activity Intents, but whose endpoints are still well known. In this case, remote servers SHOULD use Activity Intents links if they are present, then fall back to older links (such as the oStatus <code>/authorize_interaction</code> endpoint) if they are present, then fall back to hard-coded values (such as the Mastodon <code>/share</code> endpoint) if no other values exist.</p>
|
||||
<h2 id="80-implementations">8.0. Implementations<a class="headerlink" href="#80-implementations" title="Permanent link">¶</a></h2>
|
||||
<h3 id="81-home-servers">8.1 Home Servers<a class="headerlink" href="#81-home-servers" title="Permanent link">¶</a></h3>
|
||||
<p>This is a list of "home servers" that publish Activity Intent endpoints.</p>
|
||||
<p>This is a list of "home servers" that publish Activity Intent endpoints for users' profiles.</p>
|
||||
<ul>
|
||||
<li><a href="https://joinmastodon.org">Mastodon</a> publishes <code>Create</code> and <code>Object</code> intents.</li>
|
||||
<li><a href="https://wordpress.org/plugins/activitypub/">WordPress</a> publishes <code>Create</code> and <code>Follow</code> intents</li>
|
||||
<li><a href="https://joinloops.org">Loops</a> publishes <code>Follow</code> intents.</li>
|
||||
<li><a href="https://friendi.ca">Friendica</a> publishes <code>Create</code> and <code>Follow</code> intents</li>
|
||||
<li><a href="https://emissary.dev">Emissary</a> publishes <code>Create</code>, <code>Follow</code>, and <code>Like</code> intents.</li>
|
||||
<li><a href="https://codeberg.org/fortified/forte">Forte</a> publishes <code>Create</code> intents.</li>
|
||||
<li><a href="https://friendi.ca">Friendica</a> publishes <code>Create</code> and <code>Follow</code> intents</li>
|
||||
<li><a href="https://joinloops.org">Loops</a> publishes <code>Follow</code> intents.</li>
|
||||
<li><a href="https://joinmastodon.org">Mastodon</a> publishes <code>Create</code> and <code>Object</code> intents.</li>
|
||||
<li><a href="https://codeberg.org/silverpill/mitra">Mitra</a> publishes <code>Object</code> intents.</li>
|
||||
<li><a href="https://nodebb.org">NodeBB</a> publishes <code>Object</code>, <code>Create</code>, <code>Like</code>, <code>Dislike</code>, and <code>Follow</code> intents.</li>
|
||||
<li><a href="https://piefed.social">PieFed</a> publishes <code>Create</code> intents.</li>
|
||||
<li><a href="https://codeberg.org/streams/streams">the "streams" repository</a> publishes <code>Create</code> intents.</li>
|
||||
<li>Add your name to this list and win a cookie 🍪</li>
|
||||
<li><a href="https://codeberg.org/streams/streams">(streams)</a> publishes <code>Create</code> intents.</li>
|
||||
<li>
|
||||
<p><a href="https://wordpress.org/plugins/activitypub/">WordPress</a> publishes <code>Create</code> and <code>Follow</code> intents</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Add your name to this list and win a cookie 🍪</p>
|
||||
</li>
|
||||
</ul>
|
||||
<h3 id="82-clients">8.2 Clients<a class="headerlink" href="#82-clients" title="Permanent link">¶</a></h3>
|
||||
<p>This is a list of client tools that allow end-users to use Activity Intents on remote websites.</p>
|
||||
<h3 id="82-remote-servers">8.2 Remote Servers<a class="headerlink" href="#82-remote-servers" title="Permanent link">¶</a></h3>
|
||||
<p>Applications that use Activity Intents to create interactive links and buttons that pull users from remote websites back to their home servers.</p>
|
||||
<ul>
|
||||
<li><a href="https://joinmastodon.org">Mastodon</a> publishes remote interaction buttons that listen to <code>Follow</code>, <code>Announce</code>, <code>Like</code>, and <code>Object</code> intents</li>
|
||||
<li><a href="https://wordpress.org/plugins/activitypub/">WordPress</a> publishes "like" and "announce" buttons (<a href="https://github.com/Automattic/wordpress-activitypub/pull/2988">PR #2988</a>, <a href="https://github.com/Automattic/wordpress-activitypub/pull/2256">PR #2256</a>)</li>
|
||||
<li><a href="https://emissary.dev">Emissary</a> publishes "share" and "like" buttons</li>
|
||||
<li><a href="https://codeberg.org/fortified/forte">Forte</a> and also <a href="https://codeberg.org/streams/streams">the "streams" repository</a> publish "wall-to-wall" post/reply buttons, as an alternative to carrying out these same operations directly on the home server using OpenWebAuth (FEP-61cf). Other interactions in progress. </li>
|
||||
<li><a href="https://emissary.dev">Emissary</a> publishes <code>Follow</code>, <code>Create</code> and <code>Like</code> buttons</li>
|
||||
<li><a href="https://codeberg.org/fortified/forte">Forte</a> and also <a href="https://codeberg.org/streams/streams">(streams)</a> publish "wall-to-wall" post/reply buttons, as an alternative to carrying out these same operations directly on the home server using OpenWebAuth (FEP-61cf). Other interactions in progress. </li>
|
||||
<li><a href="https://joinmastodon.org">Mastodon</a> publishes remote interaction buttons that use to <code>Follow</code>, <code>Announce</code>, <code>Like</code>, and <code>Object</code> intents</li>
|
||||
<li><a href="https://nodebb.org">NodeBB</a> publishes buttons for <code>Create</code> (topic creation and reply), <code>Like</code>/<code>Dislike</code> (upvote and downvote), and <code>Follow</code>.</li>
|
||||
<li><a href="https://wordpress.org/plugins/activitypub/">WordPress</a> publishes <code>Like</code> and <code>Announce</code> buttons (<a href="https://github.com/Automattic/wordpress-activitypub/pull/2988">PR #2988</a>, <a href="https://github.com/Automattic/wordpress-activitypub/pull/2256">PR #2256</a>)</li>
|
||||
</ul>
|
||||
<h3 id="83-libraries">8.3 Libraries<a class="headerlink" href="#83-libraries" title="Permanent link">¶</a></h3>
|
||||
<ul>
|
||||
<li><a href="https://github.com/EmissarySocial/camperjs">CamperJS</a> (in progress)</li>
|
||||
<li><a href="https://webintents.net">Web Intents library</a> (in progress)</li>
|
||||
</ul>
|
||||
<h2 id="references">References<a class="headerlink" href="#references" title="Permanent link">¶</a></h2>
|
||||
|
||||
File diff suppressed because one or more lines are too long
+170
-170
@@ -2,682 +2,682 @@
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/draft/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/final/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/withdrawn/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/0151/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/0391/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/0391/contextProof/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/0391/inReplyToProof/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/0391/relationshipProof/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/03c1/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/044f/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/0499/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/0499/multibox/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/07d7/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/0837/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/0ea0/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/1042/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/11dd/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/1311/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/1580/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/171b/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/1970/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/1985/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/1985/ForwardChronological/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/1985/OrderingClass/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/1985/ReverseChronological/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/1985/orderType/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/19b3/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/1a11/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/1b12/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/2100/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/2277/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/22b6/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/2677/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/268d/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/2931/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/2c59/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/2e40/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/2e40/namespace/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/3264/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/34c1/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/34ec/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/35b7/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/37f2/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/3ab2/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/3b86/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/400e/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/4adb/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/4ccd/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/4f05/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/521a/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/521a/fep-521a-test-case/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/5624/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/5711/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/5bf0/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/5e53/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/5feb/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/612d/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/61cf/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/6481/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/6606/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/67ff/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/6fcd/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/73cd/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/7458/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/7502/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/7628/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/76ea/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/7888/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/7952/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/7b29/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/7d8c/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/82f6/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/844e/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/888d/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/888d/SomeType/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/888d/exampleA/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/888d/exampleB/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/888d/exampleC/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8967/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8a8e/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8a8e/AttendeesCollection/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8a8e/EventCancelled/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8a8e/EventMovedOnline/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8a8e/EventPostponed/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8a8e/EventRescheduled/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8a8e/EventScheduled/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8a8e/EventStatusType/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8a8e/EventTentative/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8a8e/OrganizersCollection/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8a8e/attendees/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8a8e/category/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8a8e/displayEndTime/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8a8e/eventStatus/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8a8e/externalParticipationUrl/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8a8e/isBannerImage/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8a8e/joinMode/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8a8e/organizers/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8a8e/previousStartTime/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8a8e/requiredJoinVisibility/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8a8e/timezone/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8a8e/upcomingEvents/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8b32/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8c3f/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/8fcf/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/9091/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/9098/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/96ff/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/9967/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/9f9f/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/9fde/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/a070/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/a1d1/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/a427/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/a4ed/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/a5c5/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/a974/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/ae0c/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/ae49/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/ae97/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/b06c/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/b2b8/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/bad1/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/c07e/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/c0e0/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/c118/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/c16b/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/c180/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/c195/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/c390/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/c4ad/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/c551/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/c551/tests/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/c5a1/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/c648/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/c7d3/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/c81b/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/c893/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/cb76/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/cd47/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/d36d/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/d556/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/d767/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/d8c2/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/d8c8/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/d8c8/implementation/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/d9ad/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/db0e/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/db70/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/dc88/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/dd4b/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/e229/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/e232/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/e3e9/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/e965/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/e965/fep-e965-test-case/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/eb22/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/eb48/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/ee3a/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/ef61/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/efda/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/f011/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/f06f/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/f15d/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/f1d5/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/f228/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/fb2a/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/fc48/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/fe34/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
<url>
|
||||
<loc>https://helge.codeberg.page/fep/fep/fffd/</loc>
|
||||
<lastmod>2026-05-06</lastmod>
|
||||
<lastmod>2026-05-17</lastmod>
|
||||
</url>
|
||||
</urlset>
|
||||
Binary file not shown.
Reference in New Issue
Block a user