Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-07-20Fix deprecation warnings for rails 6.0Benjamin Neff
2022-07-16Remove markerb dependencyBenjamin Neff
markerb is dead and isn't compatible with rails 6 anymore. Removing it means adding separate templates for text and html, this sadly means some code duplication, but also luckily the templates aren't that complicated, so the duplication is also very minimal.
2021-10-25Remind the username in the reset password e-mailflaburgan
closes #8037
2021-08-16Person.find_or_fetch_by_identifier never return nilThorsten Claus
Person.find_or_fetch_by_identifier raises an exception if person is not found localy and not fetchable. It never returns nil. These code changes take care about this behaviour and changes specs and code to behave equally. Also related to #8253
2019-07-03Cleanup pending photos which were never posted with cronjobBenjamin Neff
Only delete photos older than a day, so we don't delete photos for posts which were uploaded 10 minutes ago and the author is still writing the post for it. closes #8041
2018-10-08Remove facebook integrationBenjamin Neff
Facebook removed the API and facebook integration is broken now, so lets remove it. closes #7874
2018-02-02Retry Contact messages 20 time (about two weeks)Benjamin Neff
closes #7705
2018-01-08Remove old export archives after 2 weeksJanakas
Fixes #5727
2017-12-18Create birthday notification and mailerRete2
closes #7624 fixes #1649
2017-09-29Limit the number of parallel exports that are allowed to runBenjamin Neff
closes #7629
2017-09-17Add `# frozen_string_literal: true` to all filesBenjamin Neff
2017-08-12Replace `Fixnum` with `Integer`Benjamin Neff
2016-11-28Mentions in comments backend changescmrd Senya
2016-11-28Refactor mail workers to use common basecmrd Senya
Introduce Workers::Mail::NotifierBase to be a base for all appropriate mail workers to reduce code duplication
2016-11-27require spec_helper in .rspecJustin Ramos
closes #7223
2016-11-06Schedule a connection-check when receiving a message from an offline podBenjamin Neff
closes #7158
2016-09-04Send notification mails on CSRF failsSteffen van Bergerem
closes #7050
2016-08-13Cleanup legacy invitations from codeBenjamin Neff
Fixes #5116
2016-06-26remove more unused code and cleanupBenjamin Neff
2016-06-26refactoring delete from servicesBenjamin Neff
2016-06-26create ShareVisibilities with batch importBenjamin Neff
and delete old batch worker and receiver
2016-06-26remove HttpMulti and HydraWrapperBenjamin Neff
2016-06-26remove user parameter from subscribers methodBenjamin Neff
2016-06-26remove old Private and Public ReceiverBenjamin Neff
2016-06-26cleanup notifications and fix testsBenjamin Neff
2016-06-26create new receive workersBenjamin Neff
2016-06-26add new send workersBenjamin Neff
2016-03-05add migration for pods-tableBenjamin Neff
* add port to pods * remove url from person and link people with pod-table
2015-08-30fix some issues with pod-checkingFlorian Staudacher
add tooltips in the frontend fix a JS problem with empty hostname use `find_in_batches` correctly add a migration to clean up the pods table + unique index on hostname
2015-08-24Add connection test for pods in the networkFlorian Staudacher
* add a class for checking pod connectivity * extend pod model to handle new functionality * add an admin frontend to list pods and re-trigger checks manually * add a daily worker to run through all the pods * add unit tests for most of the new code
2015-08-21Merge branch 'stable' into developJonne Haß
2015-08-21use discovery from diaspora_federation gemBenjamin Neff
2015-07-18Implement social relay functionalityJason Robinson
* .well-known/social-relay - to serve subscription preferences to relays * Workers.deferred_dispatch relay carbon copy functionality for outbound sending See discussion here: https://www.loomio.org/d/9vpoe0UR/public-post-federation#comment-730911 and spec here: https://wiki.diasporafoundation.org/Relay_servers_for_public_posts
2015-07-05add url_toBenjamin Neff
closes #6168
2015-07-05change public_url to atom_url and profile_urlBenjamin Neff
2015-05-24gracefully handle when a like is already deleted againBenjamin Neff
closes #5983
2015-05-16fetch public posts when someone starts sharing with youBenjamin Neff
closes #5960
2015-05-16Fix inactive user removal not respecting configuration for daily limitsJason Robinson
It seems ActiveRecord ignores .limit() if .find_each() is used to iterate the query (http://stackoverflow.com/a/6680541/1489738). Using .each() instead. Added a test. closes #5953
2015-05-04bump ruby-oembedJonne Haß
2015-04-01Rescue correct constant in Workers::ReceiveLocalBatchJonne Haß
Fixes #5834
2015-03-04Exports user photos as zip fileMarcelo Briones
2015-02-27replace deprecated stub syntax in export user specJonne Haß
2015-02-27deliver needs to be called on the return value of the mailer callJonne Haß
2015-02-27Don't pass a model instance where an id is expectedJonne Haß
2015-02-27ActionMailer deliver -> deliver_nowJonne Haß
2015-01-14Add contacts/posts, and GZipping JSON exporter outputJames Kiesel
2014-12-08Bye opengraph_parser, hi open_graph_readerJonne Haß
opengraph_parser is basically unmainted, issues are ignored or deliberately closed without fixing. It pollutes the global namespace and has no verification of correctness. The opengraph gem has basically the same issues, not really maintained, unreleased patches on master since over a year, not really smart either. So I created my own version and while at it, why not strive try to be complete and robust, although it's still a work in progress. This also improves general URL detection by parsing them from the message after stripping markdown. An additional dependency was added to support fetching sites that require cookies to work at all. For the same reason Faraday's default redirect limit was bumped.
2014-10-16Maintenance feature to remove old usersJason Robinson
Add Sidetiq webview to the Sidekiq monitoring panel Add rake task maintenance:queue_users_for_removal This basically just triggers an immediate run of the normal maintenance remove old users functionality that is normally (if enabled) scheduled to run once a day via sidetiq Add extra safety when checking for user removal due to inactivity. Now also user.last_seen will also be checked to make sure a user will not be removed in the event that the Devise rememember me login functionality has stopped the users remove_after timestamp from being removed. Add initializer for maintenance job. Add warning about mail being disabled if remove_old_users maintenance is enabled.
2014-09-27Merge pull request #5209 from jhass/federation_improvementsFlorian Staudacher
Federation improvements
2014-09-20Handle already deleted photos gracefully in process photo jobJonne Haß