Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-11-09 | Allow YouTube-style media links to be counted as enclosures for purposes of ↵ | Brion Vibber | |
listing attachments/thumbs | |||
2010-11-08 | Add attachments 'thumb_width' and 'thumb_height' settings for inline thumbs, ↵ | Brion Vibber | |
defaulting to 100x75. This is used as the max thumb width/height for oEmbed requests (replacing the old default of 500x400 which was more suitable for the lightbox). | |||
2010-11-08 | Pass file attachment thumbnails along with oEmbed data. | Brion Vibber | |
2010-11-08 | Save a thumbnail image when uploading an image file into the file ↵ | Brion Vibber | |
attachments system. Currently hardcoded to 100x75, needs aspect-sensitivity etc. | |||
2010-11-08 | Testing... using photo info for temp thumbnails | Brion Vibber | |
2010-11-08 | Avoid marking files as attachments that are not locally uploaded, unless ↵ | Brion Vibber | |
they're really oembedable. HTML-y things now excluded properly. | |||
2010-11-04 | i18n/L10n updates. | Siebrand Mazeland | |
2010-11-03 | Fix for ticket #2804: bad non-cache fallback code for dupe checks of ↵ | Brion Vibber | |
prolific posters The old code attempted to compare the value of the notice.created field against now() directly, which tends to explode in our current systems. now() comes up as the server/connection local timezone generally, while the created field is currently set as hardcoded UTC from the web servers. This would lead to breakage when we got a difference in seconds that's several hours off in either direction (depending on the local timezone). New code calculates a threshold by subtracting the number of seconds from the current UNIX timestamp and passing that in in correct format for a simple comparison. As a bonus, this should also be more efficient, as it should be able to follow the index on profile_id and created. | |||
2010-11-03 | Fix for ticket #2853: fix for some unknown MIME type error cases by ↵ | Brion Vibber | |
adjusting the PEAR error handling temporarily around MIME_Type_Extension usage. | |||
2010-11-03 | Add getFancyName() to User_group to match the one on Profile: encapsulates ↵ | Brion Vibber | |
the "fullname (nickname)" vs "nickname" logic and allows for localization of the parentheses in a common place. | |||
2010-11-02 | Add context for different uses of "%1$s (%2$s)" | Siebrand Mazeland | |
2010-11-02 | Alternate pretty-title tweaks for #2668 | Brion Vibber | |
2010-10-28 | fall back to siteowner on bad nickname (Bug#2861) | Evan Prodromou | |
2010-10-25 | max_id is inclusive | Evan Prodromou | |
2010-10-25 | change max_id from < to <= | Evan Prodromou | |
2010-10-23 | * translator documentation added. | Siebrand Mazeland | |
* superfluous whitespace removed. | |||
2010-10-22 | New events when granting and revoking roles | Evan Prodromou | |
Four new events for when roles are granted or revoked. | |||
2010-10-21 | Memcache::set() 3rd param should be flags (4th is expire). This throws a "2 ↵ | James Walker | |
lowest bytes reserved" error in Memcache > 3.0.3 | |||
2010-10-21 | i18n/L10n updates, translator docs updated, superfluous whitespace removed. | Siebrand Mazeland | |
2010-10-20 | Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 0.9.x | Zach Copley | |
Conflicts: actions/apioauthauthorize.php lib/apioauthstore.php | |||
2010-10-20 | Use a new table (oauth_token_association) to associate authorized | Zach Copley | |
request tokins with OAuth client applications and profiles. | |||
2010-10-21 | * translator documentation added. | Siebrand Mazeland | |
* moved some translator comments that were not directly above the line with the message to the correct location. * i18n for UI text. * superfluous whitespace removed. | |||
2010-10-20 | Fix for ticket #2845: singleuser nickname configuration was being overridden ↵ | Brion Vibber | |
by site owner in router setup. I've consolidated the checks for which user to use for single-user mode into User::singleUser(), which now uses the configured nickname by preference, falling back to the site owner if it's unset. This is now called consistently from the places that needed to use the primary user's nickname in routing setup. Setting $config['singleuser']['nickname'] should now work again as expected. | |||
2010-10-20 | Revert DB change for OAuth. Change compound key for oauth_application_user | Zach Copley | |
back to (profile_id, application_id). I think we can get away without a DB change by only issuing one anonymous access token per user. | |||
2010-10-19 | Add support for an anonymous OAuth consumer. Note: this requires a | Zach Copley | |
small DB tweak. Oauth_application_user needs to have the primary compound key: (profile_id, application_id, token). http://status.net/open-source/issues/2761 This should also make it possible to have multiple access tokens per application. http://status.net/open-source/issues/2788 | |||
2010-10-14 | Make HTTPS urls in File::url() if necessary | Evan Prodromou | |
2010-10-14 | correctly use sslserver if it is set | Evan Prodromou | |
2010-10-14 | Design::url() will use HTTPS if page is HTTPS | Evan Prodromou | |
2010-10-13 | better deletion of related objects in User_group::delete() | Evan Prodromou | |
2010-10-12 | Improve 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-12 | Cascading deletion for user_group; doesn't yet work properly with caching. | Brion Vibber | |
2010-10-12 | Add a basic group deletion for moderator users. | Brion Vibber | |
2010-10-11 | Ticket #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-04 | Fix unescaped dollar signs in double-quoted strings due to localization ↵ | Brion Vibber | |
updates (%1$s etc) | |||
2010-09-30 | ForceGroup 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-29 | Move blowFavesCache() to Profile | Zach Copley | |
2010-09-29 | Move hasFave() to Profile | Zach 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-22 | save a URI with the user | Evan Prodromou | |
2010-09-22 | Merge branch '0.9.x' into activityexport | Evan Prodromou | |
Conflicts: plugins/OStatus/OStatusPlugin.php | |||
2010-09-21 | Merge branch 'master' into 0.9.x | Brion Vibber | |
2010-09-21 | use Profile::getUri() to get a profile's URI | Evan Prodromou | |
2010-09-20 | Fix 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-20 | Ticket #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-17 | Status_network::encache() doesn't exist | James Walker | |
2010-09-15 | better output for group membership as activity | Evan Prodromou | |
2010-09-14 | Add Group_member::asActivity() to record group joins | Evan Prodromou | |
2010-09-13 | bugs in function calls in Notice::asActivity | Evan Prodromou | |
2010-09-13 | bug in time and object handling in Subscription::asActivity | Evan Prodromou | |