summaryrefslogtreecommitdiff
path: root/classes
AgeCommit message (Collapse)Author
2010-10-13better deletion of related objects in User_group::delete()Evan Prodromou
2010-10-12Improve cache-friendliness of user_group->delete().Brion Vibber
Doesn't clear all possible cached entries, but this should get the ones that matter most: lookups by id, nickname, and alias. This should ensure that if a group name gets reused as a new group or alias, it should work properly. There are some user-visible areas that aren't clear such as the 'top groups' lists on the GroupsAction sidebar; if a deleted group appears in those lists it'll go away within an hour when the cached query expires.
2010-10-12Cascading deletion for user_group; doesn't yet work properly with caching.Brion Vibber
2010-10-12Add a basic group deletion for moderator users.Brion Vibber
2010-10-11Ticket #2811 use more consistent max limit for OAuth application ↵Brion Vibber
registration descriptions; now using the field max of 255 rather than $config['site']['textlimit'] as fallback if $config['application']['desclimit'] is unset or out of bounds.
2010-10-04Fix unescaped dollar signs in double-quoted strings due to localization ↵Brion Vibber
updates (%1$s etc)
2010-09-30ForceGroup plugin: optionally force new users to join a particular group or ↵Brion Vibber
set of groups on registration; and/or to force posts by members of particular groups to be posted into those groups even if not explicitly mentioned. The posting feature requires a couple quick hook additions in core.
2010-09-29Move blowFavesCache() to ProfileZach Copley
2010-09-29Move hasFave() to ProfileZach Copley
2010-09-28* i18n/L10n and translator documentation updates.Siebrand Mazeland
* whitespace and indentation updates
2010-09-28* i18n/L10n and translator documentation updates.Siebrand Mazeland
* whitespace and indentation updates
2010-09-22save a URI with the userEvan Prodromou
2010-09-22Merge branch '0.9.x' into activityexportEvan Prodromou
Conflicts: plugins/OStatus/OStatusPlugin.php
2010-09-21Merge branch 'master' into 0.9.xBrion Vibber
2010-09-21use Profile::getUri() to get a profile's URIEvan Prodromou
2010-09-20Fix for #2227: 'view profile designs' and other default-on options are ↵Brion Vibber
initially mis-set to off due to caching at account creation
2010-09-20Ticket #2327: fixing block to remove the blocking user's subscription to the ↵Brion Vibber
blockee if present; also cleaning up inbox delivery to apply the block checks more consistently, instead of just to group posts.
2010-09-17Status_network::encache() doesn't existJames Walker
2010-09-15better output for group membership as activityEvan Prodromou
2010-09-14Add Group_member::asActivity() to record group joinsEvan Prodromou
2010-09-13bugs in function calls in Notice::asActivityEvan Prodromou
2010-09-13bug in time and object handling in Subscription::asActivityEvan Prodromou
2010-09-13bug in time and object handling in Fave::asActivityEvan Prodromou
2010-09-13Notice::asActivityEvan Prodromou
2010-09-13move code for making activities from OStatus plugin to Subscription and Fave ↵Evan Prodromou
classes
2010-09-08Merge branch 'master' into testingBrion Vibber
2010-09-02Don't explode if we fail to load a listed attachment id in Notice::attachments()Brion Vibber
2010-09-02Merge branch 'swat0' into 0.9.xEvan Prodromou
2010-09-01bug in Profile::fromURI() wasn't returning profileEvan Prodromou
2010-09-01Notice::saveReplies() uses Profile::fromURI() to handle remote profiles tooEvan Prodromou
2010-09-01Static method to get a profile based on an URIEvan Prodromou
2010-09-01Merge branch 'master' into 0.9.xEvan Prodromou
2010-08-26Fix for failover error in status_network_tag caching; when no tags present ↵Brion Vibber
in table we would return an array with one empty element instead of no elements when getting the cached data.
2010-08-25Use Status_network's caching settings when loading Status_network_tag ↵Brion Vibber
entries; cache entries are batched per site and will be cleared when tags are inserted/deleted using the main interface. (with fixes from tagcache branch)
2010-08-14Merge branch 'noticetitle' into 0.9.xEvan Prodromou
2010-08-14on deleting a noticeEvan Prodromou
2010-08-12Fix for ticket 2513: "Can't linkify" error when some links are shortenedBrion Vibber
When bogus SSL sites etc were hit through a shortening redirect, sometimes link resolution kinda blew up and the user would get a "Can't linkify" error, aborting their post. Now catching this case and just passing through the URL without attempting to resolve it. Could benefit from an overall scrubbing of the freaky link/attachment code though...! :) http://status.net/open-source/issues/2513
2010-08-12Fix for ticket 2513: "Can't linkify" error when some links are shortenedBrion Vibber
When bogus SSL sites etc were hit through a shortening redirect, sometimes link resolution kinda blew up and the user would get a "Can't linkify" error, aborting their post. Now catching this case and just passing through the URL without attempting to resolve it. Could benefit from an overall scrubbing of the freaky link/attachment code though...! :) http://status.net/open-source/issues/2513
2010-08-12Fix PHP notice spew when Notice::saveNew() called without passing any ↵Brion Vibber
options; default empty vars weren't being set.
2010-08-10Fix for regression with OStatus mention processing (duplicated new and old ↵Brion Vibber
style lead to trying to save a reply entry twice).
2010-08-06OStatus/FeedSub: tweaked PuSH feed garbage collection so other plugins can ↵Brion Vibber
declare usage of a low-level feed or an OStatus profile besides profile subscriptions & group memberships. SubMirror: redid add-mirror frontend to accept a feed URL, then pass that on to OStatus, instead of pulling from your subscriptions. Profile: tweaked subscriberCount() so it doesn't subtract 1 for foreign profiles who aren't subscribed to themselves; instead excludes the self-subscription in the count query. Memcached_DataObject: tweak to avoid extra error spew in the DB error raising Work in progress: tweaking feedsub garbage collection so we can count other uses
2010-08-03re-add mentioned link lost in last mergeEvan Prodromou
2010-08-03Merge branch 'activityhooks' into 0.9.xEvan Prodromou
Conflicts: classes/Notice.php
2010-08-03output Atom dates in UTCEvan Prodromou
2010-08-03correctly show <source> for atom feedsEvan Prodromou
2010-08-02correct output for EndActivityInReplyTo eventEvan Prodromou
2010-08-02add some activity hooksEvan Prodromou
2010-08-02add support for Salmon's new "mentioned" rel valueJames Walker
2010-07-30Fixes for messages after review by Brion.Siebrand Mazeland
2010-07-30* Address i18n related FIXMEs after talk with Brion.Siebrand Mazeland
* Tweak message