From d127385310960cbcd693f5c568672488d8b70c1b Mon Sep 17 00:00:00 2001 From: alemi Date: Thu, 21 Mar 2024 20:37:16 +0100 Subject: [PATCH] docs: added some readme about ap and as folders --- src/activitypub/README.md | 3 ++ src/activitystream/README.md | 62 ++++++++++++++++++++++++++++++++++++ 2 files changed, 65 insertions(+) create mode 100644 src/activitypub/README.md create mode 100644 src/activitystream/README.md diff --git a/src/activitypub/README.md b/src/activitypub/README.md new file mode 100644 index 0000000..6471579 --- /dev/null +++ b/src/activitypub/README.md @@ -0,0 +1,3 @@ +# activitypub + +here live the core ActvityPub routes for this application, such as views, inboxes and outboxes diff --git a/src/activitystream/README.md b/src/activitystream/README.md new file mode 100644 index 0000000..5b1abd4 --- /dev/null +++ b/src/activitystream/README.md @@ -0,0 +1,62 @@ +# activitystream + +here live all ActivityStreams types + +### structure +``` +├── Link +│ └── Mention +├── Object +│ ├── Activity +│ │ ├── Accept +│ │ │ └── TentativeAccept +│ │ ├── Add +│ │ ├── Announce +│ │ ├── Create +│ │ ├── Delete +│ │ ├── Dislike +│ │ ├── Flag +│ │ ├── Follow +│ │ ├── IntransitiveActivity +│ │ │ ├── Arrive +│ │ │ ├── Question +│ │ │ └── Travel +│ │ ├── Ignore +│ │ │ └── Block +│ │ ├── Join +│ │ ├── Leave +│ │ ├── Like +│ │ ├── Listen +│ │ ├── Move +│ │ ├── Offer +│ │ │ └── Invite +│ │ ├── Read +│ │ ├── Reject +│ │ │ └── TentativeReject +│ │ ├── Remove +│ │ ├── Undo +│ │ ├── Update +│ │ └── View +│ ├── Actor (not technically) +│ │ ├── Application +│ │ ├── Group +│ │ ├── Organization +│ │ └── Person +│ ├── Article +│ ├── Collection +│ │ ├── CollectionPage +│ │ └── OrderedCollection +│ │ └── OrderedCollectionPage +│ ├── Document +│ │ ├── Audio +│ │ ├── Image +│ │ ├── Page +│ │ └── Video +│ ├── Event +│ ├── Note +│ ├── Place +│ ├── Profile +│ ├── Relationship +│ └── Tombstone +└── PublicKey (not in spec) +```