]> git.mxchange.org Git - friendica.git/commitdiff
Moved documentation
authorMichael <heluecht@pirati.ca>
Wed, 3 Oct 2018 09:53:12 +0000 (09:53 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 3 Oct 2018 09:53:12 +0000 (09:53 +0000)
src/Protocol/ActivityPub.php
src/Protocol/ActivityPub/Receiver.php
src/Protocol/ActivityPub/Transmitter.php

index c84f5d3ee41082e321cc09e8d588bb0944cde88e..9ccd90eed64c1e4bcaed7ca8ef7768d8bccf0670 100644 (file)
@@ -42,33 +42,7 @@ use Friendica\Core\Config;
  * https://github.com/tootsuite/mastodon/blob/master/app/lib/activitypub/activity.rb#L26
  *
  * To-do:
- *
- * Receiver:
- * - Update (Image, Video, Article, Note)
- * - Event
- * - Undo Announce
- *
- * Check what this is meant to do:
- * - Add
- * - Block
- * - Flag
- * - Remove
- * - Undo Block
- * - Undo Accept (Problem: This could invert a contact accept or an event accept)
- *
- * Transmitter:
- * - Event
- *
- * Complicated:
- * - Announce
- * - Undo Announce
- *
- * General:
- * - Attachments
- * - nsfw (sensitive)
- * - Queueing unsucessful deliveries
  * - Polling the outboxes for missing content?
- * - Possibly using the LD-JSON parser
  */
 class ActivityPub
 {
index 5fc4ecbc4b4f2405e8c15980a40714c2588e342e..6b2e02a2c061a18798bed131bd6509511cf62af8 100644 (file)
@@ -27,7 +27,23 @@ use Friendica\Core\Config;
 use Friendica\Protocol\ActivityPub;
 
 /**
- * @brief ActivityPub Protocol class
+ * @brief ActivityPub Receiver Protocol class
+ *
+ * To-Do:
+ * - Update (Image, Video, Article, Note)
+ * - Event
+ * - Undo Announce
+ *
+ * Check what this is meant to do:
+ * - Add
+ * - Block
+ * - Flag
+ * - Remove
+ * - Undo Block
+ * - Undo Accept (Problem: This could invert a contact accept or an event accept)
+ *
+ * General:
+ * - Possibly using the LD-JSON parser
  */
 class Receiver
 {
index 17ad0d350fa8db0098ad0a20074596ec307098cd..ee4fe20b9adc94588a6461ffd4053af641589e7c 100644 (file)
@@ -24,6 +24,18 @@ use Friendica\Model\Profile;
 
 /**
  * @brief ActivityPub Transmitter Protocol class
+ *
+ * To-Do:
+ * - Event
+ *
+ * Complicated:
+ * - Announce
+ * - Undo Announce
+ *
+ * General:
+ * - Attachments
+ * - nsfw (sensitive)
+ * - Queueing unsucessful deliveries
  */
 class Transmitter
 {