Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-11-09 | add title attribute on attachment list items | Brion Vibber | |
2010-11-09 | Cleanup on the CSS for inline attachments; removed some unneeded changes ↵ | Brion Vibber | |
since the split of the inline and regular attachment lists. Removing commented-out code that seems to be for some old thumbnailing system where the thumbnails were hidden popups within the core text (wtf!) | |||
2010-11-09 | Allow YouTube-style media links to be counted as enclosures for purposes of ↵ | Brion Vibber | |
listing attachments/thumbs | |||
2010-11-09 | split out InlineAttachmentList from AttachmentList | Brion Vibber | |
2010-11-08 | Keep aspect ratio when generating local thumbnails | Brion Vibber | |
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 | Break out ImageFile->resizeTo() from ImageFile->resize(); allows resizing ↵ | Brion Vibber | |
images to non-square sizes and to arbitrary destinations. Will be used for creating thumbnails as well as the originala use of cropping/sizing avatars. | |||
2010-11-08 | Testing... using photo info for temp thumbnails | Brion Vibber | |
2010-11-08 | doomy doom doom | Brion Vibber | |
2010-11-08 | Some initial testing w/ thumb gen | 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-08 | use subclassing to change notice list output for single notice | Evan Prodromou | |
2010-11-08 | Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 0.9.x | Evan Prodromou | |
2010-11-08 | fix documentation for parameters to menu events | Evan Prodromou | |
2010-11-07 | Localisation updates from http://translatewiki.net. | Siebrand Mazeland | |
2010-11-07 | Update translator documentation. | Siebrand Mazeland | |
2010-11-07 | screen_name -> nick names. Spotted by The Evil IP address. | Siebrand Mazeland | |
2010-11-07 | Localisation updates from http://translatewiki.net | Siebrand Mazeland | |
2010-11-06 | Fix typo. Spotted by EugeneZelenko. | Siebrand Mazeland | |
2010-11-05 | Localisation updates from http://translatewiki.net. | Siebrand Mazeland | |
2010-11-04 | * i18n/L10n updates. | Siebrand Mazeland | |
* translator documentation added. * superfluous whitespace removed. | |||
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 | Fix for ticket #2852: skip sending favorite notification emails if the ↵ | Brion Vibber | |
favoriter is someone you've blocked. | |||
2010-11-03 | Fix ticket #2860: clarify API doc comments for 'source' parameter's ↵ | Brion Vibber | |
interaction with OAuth on api/statuses/update | |||
2010-11-03 | UserFlagPlugin fix for ticket #2118 and ticket #2847: flagged state wasn't ↵ | Brion Vibber | |
reflected in profile lists such as group members page and profile search . Pulled common code for the profile page and profile list cases to give them the same logic on checking. Also fixes the problem that you'd get a flag button for yourself in profile lists, while we explicitly exclude that from the profile page -- it's now skipped in both places. | |||
2010-11-03 | Use Profile->getBestName() in PersonalGroupNav instead of manually picking ↵ | Brion Vibber | |
nickname vs fullname. Logic should still work the same when no nickname is provided, but it doesn't make any sense -- probably needs cleanup. :) | |||
2010-11-03 | Migrate some more code from manually constructing "fullname (nickname)" to ↵ | Brion Vibber | |
using Profile->getFancyName(). Encapsulates common logic and allows for localization of the parens. | |||
2010-11-03 | General cleanup & part of ticket #2864: use User_group->getFancyName() ↵ | Brion Vibber | |
instead of replicating the logic in various places. Encapsulates and allows for localization of parens. | |||
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-03 | Fix for ticket #2168: if we've already flagged a profile from another ↵ | Brion Vibber | |
window, let the 'Flag' form submission gracefully show the updated state instead of throwing an error (error message isn't even exposed properly in AJAX submissions) | |||
2010-11-03 | UserFlag fixes to prevent PHP notices breaking AJAX submissions when ↵ | Brion Vibber | |
display_errors is on. Key & seq defs weren't quite right, which caused accesses to unset array indices in DB_DataObject. | |||
2010-11-02 | Merge branch 'twitstream' into 0.9.x | Brion Vibber | |
2010-11-02 | Pull out the 'tweetctl' queue for now; these should go over control signals, ↵ | Brion Vibber | |
and actual handling isn't implemented yet anyway. | |||
2010-11-02 | fakestream.php can now take --all option to pull the latest messages from ↵ | Brion Vibber | |
multiple locally-authed accounts when generating simulated sitestreams info | |||
2010-11-02 | fakestream.php: script to build an emulated Twitter Site Stream from live ↵ | Brion Vibber | |
Twitter data, for testing. | |||
2010-11-02 | Allow custom apiroot for site streams testing on streamtest | Brion Vibber | |
2010-11-03 | Localisation updates from http://translatewiki.net. | Siebrand Mazeland | |
2010-11-02 | i18n/L10n fixes and translator documentation addded/updated. | Siebrand Mazeland | |
2010-11-02 | Merge branch '0.9.x' into twitstream | Brion Vibber | |
2010-11-02 | Add context for different uses of "%1$s (%2$s)" | Siebrand Mazeland | |
2010-11-02 | i18n/L10n, translator documentation updates. | Siebrand Mazeland | |
2010-11-02 | Merge branch 'pretty-title2' into 0.9.x | Brion Vibber | |
2010-11-02 | Unrolled tagged vs untagged, page 1 vs page N message variants for ↵ | Brion Vibber | |
showstream title. #2668 | |||
2010-11-02 | fix syntax error introduced in i18n tweaks: newgroup action | Brion Vibber | |
2010-11-02 | Alternate pretty-title tweaks for #2668 | Brion Vibber | |
2010-11-02 | Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 0.9.x | Brion Vibber | |