mirror of
https://gitlab.com/octtspacc/OcttKB
synced 2025-04-13 06:51:58 +02:00
OcttKB Cross-Repo Sync (HTML to Raw)
This commit is contained in:
parent
77bd42a7a2
commit
dee5c35156
@ -1,12 +1,15 @@
|
|||||||
created: 20230417102242544
|
created: 20230417102242544
|
||||||
creator: Octt
|
creator: Octt
|
||||||
modified: 20230417102805547
|
modified: 20230417204700055
|
||||||
modifier: Octt
|
modifier: Octt
|
||||||
tags: FTP SFTP HTTP BitTorrent ToDo
|
tags: FTP SFTP HTTP BitTorrent ToDo
|
||||||
title: Aria2
|
title: Aria2
|
||||||
|
|
||||||
|
|
||||||
|
* https://github.com/aria2
|
||||||
|
|
||||||
!!!! ''Wrappers, Frontends''
|
!!!! ''Wrappers, Frontends''
|
||||||
|
|
||||||
* AriaNg
|
* [[AriaNg|https://github.com/mayswind/AriaNg]] - //Modern web frontend making aria2 easier to use//
|
||||||
* aria2p
|
** [[Personal fork|https://github.com/octospacc/AriaNg-Fork/releases]]
|
||||||
|
* [[aria2p|https://github.com/pawamoy/aria2p]] - //Command-line tool and library to interact with an aria2c daemon process//
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
created: 20221105114920520
|
created: 20221105114920520
|
||||||
modified: 20230206111552076
|
creator: Octt
|
||||||
|
modified: 20230417203646278
|
||||||
modifier: Octt
|
modifier: Octt
|
||||||
tags: $:/i18n:en
|
tags: $:/i18n:en
|
||||||
title: Base64:en
|
title: Base64
|
||||||
|
|
||||||
''Base64'' is a 8-bit-binary to text data encoding scheme.
|
''Base64'' is a 8-bit-binary to text data encoding scheme.
|
||||||
|
|
||||||
Due to the format using a character set of 64 characters, representable by 6 bits, a minimal b64 block is ''24 bits'' large (lcm(8,6)), which is 3 binary bytes, or 4 b64 text characters.
|
Due to the format using a character set of 64 characters, representable by 6 bits, a minimal b64 block is ''24 bits'' large (lcm(8,6)), which is 3 binary bytes, or 4 b64 text characters.
|
@ -1,23 +1,37 @@
|
|||||||
created: 20230113105935789
|
created: 20230113105935789
|
||||||
creator: Octt
|
creator: Octt
|
||||||
modified: 20230413072833570
|
modified: 20230417200917567
|
||||||
modifier: Octt
|
modifier: Octt
|
||||||
tags: Fediverse $:/i18n:en
|
tags: Fediverse $:/i18n:en
|
||||||
title: Friendica
|
title: Friendica
|
||||||
|
|
||||||
<<^wikipediaframe Friendica en>>
|
<<^wikipediaframe Friendica en>>
|
||||||
|
|
||||||
|
* https://friendi.ca/ - <<[ "[[Git|https://github.com/friendica/friendica]]">> <<[ "[[Dev Wiki|https://github.com/friendica/friendica/wiki]]">> <<[ "[[User/Admin Wiki|https://wiki.friendi.ca/]]">>
|
||||||
|
|
||||||
!! ''API''
|
!! ''API''
|
||||||
|
|
||||||
The official API documentation is disorganized and possibly lacks some information, so I need to build my own while I build my custom client.
|
~~The official API documentation is disorganized and possibly lacks some information, so~~ Apparently the good API documentation is [[on the GitHub Wiki|https://github.com/friendica/friendica/wiki/Friendica-API]], but I still need to build my own organized while I build my custom client.
|
||||||
|
|
||||||
Login is possible via basic [[HTTP]] authentication.
|
* Login is possible via basic [[HTTP]] authentication.
|
||||||
|
* All routes can be examined from [[routes.config.php|https://github.com/friendica/friendica/blob/2023.03-rc/static/routes.config.php]].
|
||||||
|
|
||||||
!!! ''Endpoints''
|
!!! ''Endpoints''
|
||||||
|
|
||||||
Endpoints are present for clients implementing the Mastodon and Twitter protocols, as well as Friendica's own client-to-server protocol, but we only care about this last one.
|
Endpoints are present for clients implementing the Mastodon and Twitter protocols, as well as Friendica's own client-to-server protocol, but we only care about this last one.
|
||||||
|
|
||||||
All Friendica endpoints are available at the `/api/` namespace, they return [[JSON]] data by default.
|
All Friendica endpoints below are available at the `/api/` namespace.
|
||||||
|
|
||||||
* `/search`
|
* They return [[JSON]] data by default.
|
||||||
** `q=`Query
|
** Support many formats by suffix: `.{json|xml|rss|atom}`
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
* GET `/search`
|
||||||
|
** `q=`Search Query
|
||||||
|
|
||||||
|
!!!! ''Community Timelines''
|
||||||
|
|
||||||
|
* [[#|https://github.com/friendica/friendica/wiki/Friendica-API#statusespublic_timeline--auth]] GET `/statuses/public_timeline` - Local
|
||||||
|
|
||||||
|
* [[#|https://wiki.friendi.ca/docs/api-friendica#get_apistatusesnetworkpublic_timeline]] GET `/statuses/networkpublic_timeline` - Federated
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
created: 20230205142456532
|
created: 20230205142456532
|
||||||
creator: Octt
|
creator: Octt
|
||||||
modified: 20230223220033445
|
modified: 20230417203556283
|
||||||
modifier: Octt
|
modifier: Octt
|
||||||
tags: Protocol Web
|
tags: Protocol Web
|
||||||
title: HTTP
|
title: HTTP
|
||||||
@ -12,3 +12,9 @@ title: HTTP
|
|||||||
* HTTP on... [[MDN|https://developer.mozilla.org/en-US/docs/Web/HTTP]]
|
* HTTP on... [[MDN|https://developer.mozilla.org/en-US/docs/Web/HTTP]]
|
||||||
* HTTP response status codes: [[Wikipedia|https://en.wikipedia.org/wiki/List_of_HTTP_status_codes]]
|
* HTTP response status codes: [[Wikipedia|https://en.wikipedia.org/wiki/List_of_HTTP_status_codes]]
|
||||||
** [[HTTP Cats|https://http.cat/]]
|
** [[HTTP Cats|https://http.cat/]]
|
||||||
|
|
||||||
|
!!! ''Features''
|
||||||
|
|
||||||
|
* ''<<WikipediaLink "Basic access authentication">>''
|
||||||
|
** `Authorization: Basic <Credentials>`
|
||||||
|
*** Credentials: [[Base64]]-encoded string: `<User>:<Password>`
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
created: 20230417120632844
|
created: 20230417205009830
|
||||||
current-tiddler: GettingStarted
|
current-tiddler: GettingStarted
|
||||||
modified: 20230417120632844
|
modified: 20230417205009830
|
||||||
title: $:/HistoryList
|
title: $:/HistoryList
|
||||||
type: application/json
|
type: application/json
|
@ -1,7 +1,7 @@
|
|||||||
Enabled: 1
|
Enabled: 1
|
||||||
created: 20230208220901786
|
created: 20230208220901786
|
||||||
creator: Octt
|
creator: Octt
|
||||||
modified: 20230417115256012
|
modified: 20230417195145154
|
||||||
modifier: Octt
|
modifier: Octt
|
||||||
tags: $:/GlobalOption
|
tags: $:/GlobalOption
|
||||||
title: $:/OcttKB/Config/LargeSidebar.ui
|
title: $:/OcttKB/Config/LargeSidebar.ui
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
created: 19700101000000000
|
created: 19700101000000000
|
||||||
modified: 20230414165118000
|
modified: 20230417120739000
|
||||||
title: $:/OcttKB/Empty
|
title: $:/OcttKB/Empty
|
@ -1,6 +1,6 @@
|
|||||||
created: 20230417115338989
|
created: 20230417175913754
|
||||||
creator: Octt
|
creator: Octt
|
||||||
list: $:/OcttKB/Repo
|
list: $:/OcttKB/Repo
|
||||||
modified: 20230417120451463
|
modified: 20230417204801120
|
||||||
modifier: Octt
|
modifier: Octt
|
||||||
title: $:/StoryList
|
title: $:/StoryList
|
@ -1,6 +1,6 @@
|
|||||||
created: 20220920174307633
|
created: 20220920174307633
|
||||||
creator: Octt
|
creator: Octt
|
||||||
modified: 20230417120514670
|
modified: 20230417204757478
|
||||||
modifier: Octt
|
modifier: Octt
|
||||||
title: $:/state/sidebar
|
title: $:/state/sidebar
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user