aboutsummaryrefslogtreecommitdiffstats
path: root/include/feedutils.php
Commit message (Collapse)AuthorAgeFilesLines
...
* log conversation fetches (also a missed / char in the string replace)zotlabs2017-06-271-1/+3
|
* (untested currently) fetch conversation for GNU-Social and Mastodon when ↵zotlabs2017-06-271-1/+47
| | | | provided a comment with no local copy of the parent.
* support linked media (audio/video) elements in feeds as well as imageszotlabs2017-06-261-4/+17
|
* in gnu-social reshare objects are activities, not posts or commentszotlabs2017-06-261-1/+1
|
* add ostatus attached photos (inline to the post body) even if there's a link ↵zotlabs2017-06-261-1/+1
| | | | to the photo in the post but it isn't wrapped in an img tag.
* mastodon reshares can be either posts or comments; silence warning from ↵zotlabs2017-06-251-1/+1
| | | | guess_image_type when handed a URL to a non-existent resource.
* testing mastodon boosts/reshareszotlabs2017-06-191-14/+35
|
* remove some duplicated codezotlabs2017-06-151-13/+13
|
* always transmit a valid urizotlabs2017-06-151-0/+4
|
* use parent_midzotlabs2017-06-151-2/+2
|
* sigh... x-zot prefix slipped in againMario Vavti2017-06-151-1/+1
|
* typoMario Vavti2017-06-151-1/+1
|
* re-add type since the actual culprit was the X-ZOT prefixMario Vavti2017-06-141-1/+1
|
* thr:in-reply-to seems to must not have a type set. there is no mention of ↵Mario Vavti2017-06-141-1/+1
| | | | this in the spec and replies will be shown as replies in mastodon this way.
* support mastodon content warnings by converting into n-s-f-w tagzotlabs2017-06-141-0/+8
|
* attempt to group gnu-social and mastodon conversations by ↵zotlabs2017-06-141-10/+25
| | | | ostatus:conversation in addition to falling back on thr:in_reply_to
* preserve the ostatus:conversation pointer alsozotlabs2017-06-141-1/+8
|
* ostatus is almost unrecognisable these days from its former self. In this ↵zotlabs2017-06-141-3/+15
| | | | case thr:in-reply-to has almost no meaning since it almost never refers to a top level post; which makes it quite difficult to preserve conversations
* implement feed_get_reshare to extract shared post info from atom feed and ↵zotlabs2017-06-141-91/+170
| | | | convert to bbcode
* fall back on feed logo if an author avatar cannot be foundzotlabs2017-06-081-0/+4
|
* Looks like we need the mastodon feed check in core - grrr. Will do that for ↵zotlabs2017-06-071-0/+3
| | | | now until it can be put back into plugins.
* always add a length to ostatus compat enclosures - even if unknown (0)zotlabs2017-06-071-1/+1
|
* ostatus feeds: extract photo information from posts and convert to ↵zotlabs2017-06-071-3/+42
| | | | enclosures as otherwise OStatus servers will strip them from the HTML in the feed and refuse to render them
* consolidate and simplify the generation of activitystreams persons, add a ↵zotlabs2017-05-111-7/+38
| | | | couple more fields hoping eventually Mastodon will accept legal follow activities without choking on them. Requires an update of plugins also.
* :bulb: correct some Doxygen syntax mistakes.Klaus Weidenbach2017-05-051-2/+5
|
* update feedutils with as:author changes, also update testszotlabs2017-04-271-8/+16
|
* provide a broken feed for services which require a broken feedzotlabs2017-04-261-33/+40
|
* make it easier to hook into feed headers in the futurezotlabs2017-04-261-13/+19
|
* typo - this time the correct repozotlabs2017-04-201-1/+1
|
* Revert "typo" - wrong repozotlabs2017-04-201-1/+1
| | | | This reverts commit d9a48092e690f582585d939f5b193aedd4bcebfb.
* typozotlabs2017-04-201-1/+1
|
* follow_from_feed issue when called from pushzotlabs2017-04-191-1/+1
|
* :arrow_up: Update SimplePie library.Klaus Weidenbach2017-04-151-147/+222
| | | | | | | | | | | As a follow up to issue #699 update SimplePie from 1.2.1-dev (around 6years old) to current git master (1.4.4-dev). We use the master branch until the next release because it contains our patch for enclosure titles already. The other patches in the library from us can be done by configuring the SimplePie object in our code instead. Used composer to manage this library and use class autoloading. Add some unit tests for include/feedutils.php, but the interesting parts are unfortunately not testable with the current code.
* correct the mastodon "boost" (aka 'share') author attribution by checking ↵zotlabs2017-04-121-54/+85
| | | | for share activities and pulling the original author info from the activity:object
* minor feed issuezotlabs2017-03-041-0/+8
|
* normalise feed idzotlabs2017-01-101-9/+16
|
* add enclosures and categories to atom feedzotlabs2017-01-071-19/+50
|
* allow the atom_entry hook to change the resultszotlabs2017-01-071-7/+14
|
* typozotlabs2017-01-071-1/+1
|
* update the atom_entry hookzotlabs2017-01-071-6/+13
|
* more feedutils cleanupzotlabs2017-01-061-5/+2
|
* add the ostatus:conversation element which is now more or less required by ↵zotlabs2017-01-061-0/+3
| | | | GNU-Social to work around some short-comings of the OStatus delivery model when it comes to conversational message grouping. If this element isn't there, message replies will not get grouped with the parent specified in thr:in-reply-to, which exists to group conversations together. The reasoning being that due to the point-to-point delivery model, a reply could arrive on one site which does not have a copy of the parent specified by thr:in-reply-to. Hence further replies arriving on this site are grouped with the first arrived comment as the parent. Since this project doesn't allow comments which don't have top-level parents, we can just set it to the parent-mid and save being forced to create a new database structure for orphan children acting as parents.
* preserve the original message-id coming from feeds - we will have to escape ↵zotlabs2017-01-061-17/+10
| | | | them properly before calling mod_display.
* some gnusoc fixeszotlabs2017-01-041-3/+29
|
* null_date conversion; phase 1redmatrix2016-09-251-2/+2
|
* regression - save bookmarks no longer present in item menuredmatrix2016-07-051-2/+2
|
* the rest of the schema updates - WARNING: some third party plugins may fail; ↵redmatrix2016-06-011-6/+6
| | | | e.g. embedphotos and chess. $item['object'] is now $item['obj'] and $photo['type'] is $photo['mimetype'], $photo['scale'] is $photo['imgscale'] and $photo['data'] is now $photo['content']. There are a number of other changes, but these are the ones noted to cause issues with third-party plugins. The project plugins have been updated. Please note any new issues as this effort touched a lot of code in a lot of files.
* more db column renamesredmatrix2016-05-311-1/+1
|
* renamed include files identity.php (channel.php) and Contact.php ↵redmatrix2016-05-221-1/+0
| | | | (connections.php)
* rework the conversation object stuff at a high level - still needs a bit of ↵redmatrix2016-05-201-2/+2
| | | | refactoring