summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-08-12Update Mastofe.lain
2018-08-12Merge branch 'feature/invites' into 'develop'lambda
Invites Closes #108 See merge request pleroma/pleroma!208
2018-08-12Update generate_invite_token.exlambda
2018-08-12Merge branch 'fix/remote-follow-errormessage' into 'develop'lambda
Remote follow: don't show confusing error if already following See merge request pleroma/pleroma!267
2018-08-12Merge branch 'bugfix/gopher-empty-lines' into 'develop'lambda
lib/pleroma/gopher/server.ex: Fix errorneous empty lines See merge request pleroma/pleroma!270
2018-08-12Merge branch 'emoji-in-account-view' into 'develop'lambda
Render emoji in user profiles See merge request pleroma/pleroma!265
2018-08-10lib/pleroma/gopher/server.ex: Fix errorneous empty linesHaelwenn (lanodan) Monnier
2018-08-10Merge branch 'bugfix/fix-gopher-server-i' into 'develop'lambda
fix gopher server informational messages See merge request pleroma/pleroma!268
2018-08-10fix gopher server informational messagestrqx@goat.si
some gopher clients did not accept those lines due to a missing tab
2018-08-09Remote follow: don't show confusing error if already followingeal
2018-08-09HTML-sanitize usernames before emojifying.eal
2018-08-08Add tests for emoji in user profileseal
Also use the correct field in TwitterAPI...
2018-08-08TwitterAPI user view: add screen_name_html and description_html.eal
2018-08-07MastoAPI AccountView: render profile emoji.eal
2018-08-06Merge branch 'bugfix/duplicate-follow-requests' into 'develop'lambda
user: filter out duplicate follow requests Closes #228 See merge request pleroma/pleroma!263
2018-08-06Merge branch 'feature/camelcase-hashtags' into 'develop'lambda
formatter: preserve case of hashtags Closes #165 See merge request pleroma/pleroma!262
2018-08-06test: use private visibility for twitterapi update consistency test, to ↵William Pitcock
ensure that a second activity isn't relayed
2018-08-06user: do not leak virtuals in account searchWilliam Pitcock
2018-08-06user: hide virtual actors from statistics queriesWilliam Pitcock
2018-08-06activitypub: do not show observable effects of non-public boostsWilliam Pitcock
2018-08-06test: nickname is no longer a required fieldWilliam Pitcock
2018-08-06relay: do not relay in test modeWilliam Pitcock
2018-08-06run mix formatWilliam Pitcock
2018-08-06relay: reintroduce @allow_relayWilliam Pitcock
2018-08-06activitypub: relay: fix up AS2 actor objectWilliam Pitcock
2018-08-06relay: move to /relay endpoint from / due to webapp issuesWilliam Pitcock
2018-08-06relay: only relay create activitiesWilliam Pitcock
2018-08-06user: set up a valid followers address to useWilliam Pitcock
2018-08-06activitypub: relay: add relay following/followers collection URLsWilliam Pitcock
2018-08-06federator: actually relay the public activitiesWilliam Pitcock
2018-08-06relay: remove @allow_relay for the momentWilliam Pitcock
2018-08-06relay: fix invoking federator, use a timer to sleep the mix task to force a ↵William Pitcock
context switch
2018-08-06relay: add relay follow/unfollow tasksWilliam Pitcock
2018-08-06user: remote actors can have no nickname if they are virtual servicesWilliam Pitcock
2018-08-06config: allow relaying to be disabledWilliam Pitcock
2018-08-06activitypub: refactor relay concerns into new relay moduleWilliam Pitcock
2018-08-06activitypub: represent relay actor at instance rootWilliam Pitcock
2018-08-06user: support creating an actor which represents the instance itselfWilliam Pitcock
2018-08-05user: filter out duplicate follow requestsWilliam Pitcock
2018-08-05formatter: preserve case of hashtagsWilliam Pitcock
when generating hashtag links, we used the casefolded version that we use in the link URLs, instead of the original version. accordingly, adjust the formatter to use the original text for the links, while keeping the casefolded version for the URLs.
2018-08-02add suggestions/web configHakaba Hitoyo
2018-08-01Merge branch 'bugfix/digest-legacy-compat' into 'develop'lambda
activitypub: actually send digest header when federating See merge request pleroma/pleroma!261
2018-08-01activitypub: actually send digest header when federatingWilliam Pitcock
this is needed for backwards compatibility with non-digest pleroma instances
2018-08-01Merge branch 'security/digest-signature-validation' into 'develop'lambda
digest signature validation See merge request pleroma/pleroma!260
2018-08-01Allow additionnal schemes in the configHaelwenn (lanodan) Monnier
2018-07-31activitypub: verify remote http signature digests by recomputing the digest ↵William Pitcock
and replacing the digest header
2018-07-31activitypub: add digest header to outbound messages and sign itWilliam Pitcock
2018-07-30[Pleroma.FormatterTest] Add test for XMPP linkHaelwenn (lanodan) Monnier
2018-07-30[Pleroma.FormatterTest]: .add_links: Add a space before the dotHaelwenn (lanodan) Monnier
A dot is legal in the url, even at the end, so I moved it for the test
2018-07-30[Pleroma.Formatter]: Add support for non-HTTP schemes in URIsHaelwenn (lanodan) Monnier
The call to the regex in add_links is there just to be sure it’s a legal URI, it can be removed if you want to get more performance. The URI Schemes list is sorted, but with http(s) at the start (in case it might make it faster for common links). Closes: https://git.pleroma.social/pleroma/pleroma/issues/127