mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-13 10:51:03 +00:00
An ActivityPub/Fediverse server
cfe18932b8
Creates filter for REWRITTEN_TAGS that converts them to `p` rather than ripping them out entirely, and formats `ul` as break-separated list Both changes align sanitization to Mastodon's "strict" sanitizer at https://github.com/mastodon/mastodon/blob/main/lib/sanitize_ext/sanitize_config.rb#L73 I don't love the complexity of the Filter, but Bleach doesn't give us great options to work with. The code operates within an iterator without the useful "sibling" methods that Ruby's equivalent has. Also, Bleach runs filters _after_ sanitizing (unlike Ruby's which runs before) so we have to pass all the elements through the sanitizer, then rewrite them after the fact. |
||
---|---|---|
.github/workflows | ||
activities | ||
api | ||
core | ||
docker | ||
docs | ||
mediaproxy | ||
static | ||
stator | ||
takahe | ||
templates | ||
tests | ||
users | ||
.buildpacks | ||
.dockerignore | ||
.gitignore | ||
.pre-commit-config.yaml | ||
.readthedocs.yaml | ||
Aptfile | ||
development.env | ||
LICENSE | ||
Makefile | ||
manage.py | ||
Procfile | ||
README.md | ||
requirements-dev.txt | ||
requirements.txt | ||
runtime.txt | ||
setup.cfg | ||
test.env |
A beta Fediverse server for microblogging/"toots". Not fully functional yet - we're still working towards a 1.0!
Current version: 0.6.1
Key features:
- Multiple domain support
- Multiple identities per user (and can be shared between users)
- Desktop, mobile and PWA-compatible web UI (with minimal JavaScript)
- Mastodon-compatible client API (supports existing apps)
- Easy deployment (web worker, background worker, and one database)
For more background and information, see jointakahe.org.
Deployment
See our deployment documentation.
For changelog and update notes, visit our releases documentation.
Roadmap
Takahē is still under very active development towards a 1.0 release, and not all functionality is supported yet.
For a detailed feature breakdown, see the features page in our docs.
For an idea of what features are currently in flight, see our project board for the next release.
Contributing
If you'd like to contribute, please read our contributing docs.