summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2018-07-25Merge branch 'feature/filter_exif' into 'develop'lambda
Feature/filter exif ( solve #187 ) See merge request pleroma/pleroma!237
2018-07-19Merge remote-tracking branch 'upstream/develop' into feature/filter_exifTristan Mahé
2018-07-19Merge branch 'tests/plume' into 'develop'lambda
Articles/Notes with a actor list outside object See merge request pleroma/pleroma!252
2018-07-19Merge branch 'bugfix/activitystreams-notice-urls' into 'develop'lambda
ostatus: return AS2 objects on /notice and /activities URLs like with /objects. Closes #206 See merge request pleroma/pleroma!251
2018-07-19Merge branch 'feature/fe-configuration' into 'develop'lambda
serverside frontend configuration See merge request pleroma/pleroma!256
2018-07-18Merge branch 'feature/media-description' into 'develop'lambda
Feature/media description Closes #174 See merge request pleroma/pleroma!255
2018-07-18config: formattingWilliam Pitcock
2018-07-17TwitterAPI: present pleroma frontend config in APIWilliam Pitcock
2018-07-17config: make instance description configurableWilliam Pitcock
2018-07-17test: mastodon attachments: update for added description fieldWilliam Pitcock
2018-07-17tests: verify media description api support is workingWilliam Pitcock
2018-07-17mastodon api: support descriptions in media api, add PUT endpoint for ↵William Pitcock
updating metadata about a media upload
2018-07-17mastodon api: use object name as alt textWilliam Pitcock
2018-07-17upload: use generic Document object type instead of Image (mastodon ↵William Pitcock
compatibility) Mastodon does not use the object name as alt text when the object is an Image.
2018-07-13Merge remote-tracking branch 'upstream/develop' into feature/filter_exifTristan Mahé
2018-07-12[Pleroma.Web.ActivityPub.Transmogrifier] Add Person findingHaelwenn (lanodan) Monnier
2018-07-12[Pleroma.Web.ActivityPub.Transmogrifier]: Fix actor key outside of objectHaelwenn (lanodan) Monnier
The code here is copied from feature/peertube by lain. Co-authored-by: lain <lain@soykaf.club>
2018-07-12Add test for Plume ArticlesHaelwenn (lanodan) Monnier
2018-07-12test: ostatus controller: add AS2 fetching testsWilliam Pitcock
2018-07-12ostatus: return AS2 objects on /notice and /activities URLs like with /objects.William Pitcock
2018-07-12Merge branch 'feature/object-normalization' into 'develop'lambda
object normalization See merge request pleroma/pleroma!238
2018-07-12Merge branch 'feature/mediaproxy-nodeinfo' into 'develop'lambda
[Pleroma.Web.Nodeinfo.NodeinfoController]: add mediaProxy metadata Closes #229 See merge request pleroma/pleroma!235
2018-07-12Merge branch 'bugfix/activitypub-object-actor' into 'develop'lambda
activitypub: more robustly handle object-to-actor associations See merge request pleroma/pleroma!250
2018-07-12Merge branch 'feature/message-summary' into 'develop'lambda
message summary See merge request pleroma/pleroma!249
2018-07-12activitypub: more robustly handle object-to-actor associationsWilliam Pitcock
2018-07-12formattingWilliam Pitcock
2018-07-12testsuite: twitter api: add summary where necessaryWilliam Pitcock
2018-07-12twitter api: activity representer: add summary field for testsuiteWilliam Pitcock
2018-07-12twitter api: refactor activity html generation, add support for ArticlesWilliam Pitcock
2018-07-12twitterapi: activity view: expose message summary textWilliam Pitcock
2018-07-12Update nodeinfo_controller.exlambda
2018-07-12Merge branch 'feature/default-scope' into 'develop'lambda
default scope setting See merge request pleroma/pleroma!239
2018-07-12Merge branch 'feature/article-support' into 'develop'lambda
article support (plume, etc) See merge request pleroma/pleroma!240
2018-07-12Merge branch 'feature/auto-shortcodes' into 'develop'lambda
Feature: automatic shortcodes for emoji See merge request pleroma/pleroma!245
2018-07-12Merge branch 'bugfix/status-url-field' into 'develop'lambda
[Pleroma.Web.MastodonAPI.StatusView]: Fill the url field for statuses Closes #231 See merge request pleroma/pleroma!246
2018-07-12Merge branch 'bugfix/x509-public-key' into 'develop'lambda
activitypub: switch to using x509 representation for public keys instead of pkcs#1 See merge request pleroma/pleroma!248
2018-07-12activitypub: switch to using x509 representation for public keys instead of ↵William Pitcock
pkcs#1
2018-07-12[Pleroma.Web.Nodeinfo.NodeinfoController]: add mediaProxy metadataHaelwenn (lanodan) Monnier
Closes: https://git.pleroma.social/pleroma/pleroma/issues/229
2018-07-12[Pleroma.Web.MastodonAPI.StatusView]: Fill the url field for statusesHaelwenn (lanodan) Monnier
Closes: https://git.pleroma.social/pleroma/pleroma/issues/231
2018-06-30Fix auto-shortcode emojiJorty
Emoji were broken due to `Pleroma.Formatter` not knowing about the auto-shortcode emoji. This moves that logic from `Pleroma.Web.TwitterAPI.UtilController` to `Pleroma.Formatter`. Additionally, it's now possible to specify multiple shortcode globs, and the default globs were changed to `["/emoji/custom/**/*.png"]`, since that's in the .gitignore and the files there would have to be shortcode emoji anyway.
2018-06-30Move emoji glob setting to config.exsJorty
Also, a bit of formatting, and the glob includes an "/emoji/" prefix to make it more intuitive to users
2018-06-30Allow emojis to be added automaticallyJorty
2018-06-28CONFIGURATION.md: add doc about upload and strip_exifTristan Mahé
2018-06-27activity interpretation: formattingWilliam Pitcock
2018-06-27twitter api: use ActivityView.render_content() where appropriate instead of ↵William Pitcock
duplicating the logic
2018-06-27mastodon api: add interpreter for Article activity typesWilliam Pitcock
2018-06-27twitter api: refactor activity html generation, add support for ArticlesWilliam Pitcock
2018-06-27utils: make_create_data: add support for Article objectsWilliam Pitcock