forked from alemi/upub
docs: added some readme about ap and as folders
This commit is contained in:
parent
c2f3224e0e
commit
d127385310
2 changed files with 65 additions and 0 deletions
3
src/activitypub/README.md
Normal file
3
src/activitypub/README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# activitypub
|
||||
|
||||
here live the core ActvityPub routes for this application, such as views, inboxes and outboxes
|
62
src/activitystream/README.md
Normal file
62
src/activitystream/README.md
Normal file
|
@ -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)
|
||||
```
|
Loading…
Reference in a new issue