<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wikisphere.org/w/index.php?action=history&amp;feed=atom&amp;title=Module%3AContactManager%2FFormatReply</id>
	<title>Module:ContactManager/FormatReply - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wikisphere.org/w/index.php?action=history&amp;feed=atom&amp;title=Module%3AContactManager%2FFormatReply"/>
	<link rel="alternate" type="text/html" href="https://wikisphere.org/w/index.php?title=Module:ContactManager/FormatReply&amp;action=history"/>
	<updated>2026-05-02T17:27:30Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>https://wikisphere.org/w/index.php?title=Module:ContactManager/FormatReply&amp;diff=149658&amp;oldid=prev</id>
		<title>Maintenance script at 10:52, 19 October 2025</title>
		<link rel="alternate" type="text/html" href="https://wikisphere.org/w/index.php?title=Module:ContactManager/FormatReply&amp;diff=149658&amp;oldid=prev"/>
		<updated>2025-10-19T10:52:14Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 10:52, 19 October 2025&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;4&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff cache key wiki_wikisphere:diff:1.41:old-149400:rev-149658 --&gt;
&lt;/table&gt;</summary>
		<author><name>Maintenance script</name></author>
	</entry>
	<entry>
		<id>https://wikisphere.org/w/index.php?title=Module:ContactManager/FormatReply&amp;diff=149400&amp;oldid=prev</id>
		<title>Maintenance script at 07:48, 1 September 2025</title>
		<link rel="alternate" type="text/html" href="https://wikisphere.org/w/index.php?title=Module:ContactManager/FormatReply&amp;diff=149400&amp;oldid=prev"/>
		<updated>2025-09-01T07:48:09Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;local p = {}&lt;br /&gt;
&lt;br /&gt;
function p.fn(frame)&lt;br /&gt;
    local origArgs = (type(frame.getParent) == &amp;quot;function&amp;quot;) and frame:getParent().args or frame&lt;br /&gt;
&lt;br /&gt;
    local base64 = require(&amp;quot;Module:ContactManager/Base64&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
    local text = base64.decode(origArgs[1])&lt;br /&gt;
    -- local text = origArgs[1]&lt;br /&gt;
    local replyTo = mw.text.trim(origArgs[2])&lt;br /&gt;
    local date = mw.text.trim(origArgs[3])&lt;br /&gt;
    local format = mw.text.trim(origArgs[4])&lt;br /&gt;
&lt;br /&gt;
    local ret = &amp;quot;&amp;quot;&lt;br /&gt;
    if format == &amp;quot;text&amp;quot; then&lt;br /&gt;
        local list = mw.text.split(&amp;quot;\n&amp;quot; .. text, &amp;quot;\n&amp;quot;)&lt;br /&gt;
        local quoted = table.concat(list, &amp;quot;\n&amp;gt; &amp;quot;)&lt;br /&gt;
        ret = &amp;quot;\n\non &amp;quot; .. date .. &amp;quot; &amp;quot; .. replyTo .. &amp;quot; wrote:\n&amp;quot; .. quoted&lt;br /&gt;
    else&lt;br /&gt;
        local attr = mw.text.tag(&amp;quot;div&amp;quot;, {[&amp;quot;class&amp;quot;] = &amp;quot;contactManager-attr&amp;quot;}, &amp;quot;on &amp;quot; .. date .. &amp;quot; &amp;quot; .. mw.text.encode(replyTo) .. &amp;quot; wrote:&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
        local quote =&lt;br /&gt;
            mw.text.tag(&lt;br /&gt;
            &amp;quot;blockquote&amp;quot;,&lt;br /&gt;
            {&lt;br /&gt;
                [&amp;quot;class&amp;quot;] = &amp;quot;contactManager-quote&amp;quot;,&lt;br /&gt;
                [&amp;quot;style&amp;quot;] = &amp;quot;margin: 0.0px 0.0px 0.0px 0.8ex;border-left: 1.0px solid rgb(204,204,204);padding-left: 1.0ex&amp;quot;&lt;br /&gt;
            },&lt;br /&gt;
            text&lt;br /&gt;
        )&lt;br /&gt;
&lt;br /&gt;
        ret = &amp;quot;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;quot; .. mw.text.tag(&amp;quot;div&amp;quot;, {[&amp;quot;class&amp;quot;] = &amp;quot;contactManager-quote&amp;quot;}, attr .. quote)&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
   ret = base64.encode(ret)&lt;br /&gt;
&lt;br /&gt;
    return ret&lt;br /&gt;
end&lt;br /&gt;
-- =p.fn({&amp;quot;add\ndfdd&amp;quot;,&amp;quot;b&amp;quot;,&amp;quot;c&amp;quot;,&amp;quot;text&amp;quot;})&lt;br /&gt;
return p&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;</summary>
		<author><name>Maintenance script</name></author>
	</entry>
</feed>