]> git.mxchange.org Git - friendica.git/commitdiff
Some more documentation
authorMichael Vogel <icarus@dabo.de>
Mon, 25 Jan 2016 00:15:10 +0000 (01:15 +0100)
committerMichael Vogel <icarus@dabo.de>
Mon, 25 Jan 2016 00:15:10 +0000 (01:15 +0100)
include/dfrn.php

index c6b7f59378506362ad19ce5986d4cfd1f1745900..a6b09242d65b4304f4a3eab78d46efedbc62c89d 100644 (file)
@@ -720,6 +720,8 @@ function dfrn_entry($doc, $type, $item, $owner, $comment = false, $cid = 0) {
        xml_add_element($doc, $entry, "link", "", array("rel" => "alternate", "type" => "text/html",
                                                        "href" => $a->get_baseurl()."/display/".$item["guid"]));
 
+       // "comment-allow" is some old fashioned stuff for old Friendica versions.
+       // It is included in the rewritten code for completeness
        if ($comment)
                xml_add_element($doc, $entry, "dfrn:comment-allow", intval($item['last-child']));
 
@@ -743,6 +745,8 @@ function dfrn_entry($doc, $type, $item, $owner, $comment = false, $cid = 0) {
 
        xml_add_element($doc, $entry, "dfrn:diaspora_guid", $item["guid"]);
 
+       // The signed text contains the content in Markdown, the sender handle and the signatur for the content
+       // It is needed for relayed comments to Diaspora.
        if($item['signed_text']) {
                $sign = base64_encode(json_encode(array('signed_text' => $item['signed_text'],'signature' => $item['signature'],'signer' => $item['signer'])));
                xml_add_element($doc, $entry, "dfrn:diaspora_signature", $sign);