summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-11-11Fix missing close of comment blockZach Copley
2010-11-11Fix missing close of comment blockZach Copley
2010-11-10Add error logging for a couple send-fail cases in XMPP outBrion Vibber
2010-11-10CSS class tweak for inline attachment thumbnails to avoid things thinking ↵Brion Vibber
they're content links
2010-11-10Fix isHTTPS to work correctly for Cherokee and IISCraig Andrews
2010-11-10Add an action to handle deauthorization callbacks from FacebookZach Copley
2010-11-09add title attribute on attachment list itemsBrion Vibber
2010-11-09Cleanup 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-09Merge branch '0.9.x' into facebook-upgradeZach Copley
2010-11-09Make a richer StatusNet profile from a user's Facebook profileZach Copley
2010-11-09Missing one close-paren in newgroup.phpEvan Prodromou
2010-11-09session table was missing from upgrade scriptsEvan Prodromou
2010-11-09Allow YouTube-style media links to be counted as enclosures for purposes of ↵Brion Vibber
listing attachments/thumbs
2010-11-09Merge branch '0.9.x' into emailsummaryEvan Prodromou
2010-11-09hook points for the email settings formEvan Prodromou
2010-11-09split out InlineAttachmentList from AttachmentListBrion Vibber
2010-11-09change width of notices table to display betterEvan Prodromou
2010-11-09session table was missing from upgrade scriptsEvan Prodromou
2010-11-09some alignment in the table layoutEvan Prodromou
2010-11-09set height and width of avatar td in email summaryEvan Prodromou
2010-11-08Keep aspect ratio when generating local thumbnailsBrion Vibber
2010-11-08Add 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-08Pass file attachment thumbnails along with oEmbed data.Brion Vibber
2010-11-08Save 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-09- Still send notices to Facebook from existing Facebook app usersZach Copley
- Turns out we don't need the old REST lib to use the old REST API (removed)
2010-11-08Break 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-08Testing... using photo info for temp thumbnailsBrion Vibber
2010-11-08doomy doom doomBrion Vibber
2010-11-08change to a table for HTML outputEvan Prodromou
2010-11-08stylesheet for outgoing emailEvan Prodromou
2010-11-08Fixup headers for HTML emailEvan Prodromou
2010-11-08Some initial testing w/ thumb genBrion Vibber
2010-11-08Avoid marking files as attachments that are not locally uploaded, unless ↵Brion Vibber
they're really oembedable. HTML-y things now excluded properly.
2010-11-08Complete email summary sending systemEvan Prodromou
Added the necessary classes to send email summaries. First, added a script to run on a daily basis. Second, added a queue handler for sending email summaries for users, and another to queue summaries for all users on the site. Fixed up the email_summary_status table to store the last-sent notice id, rather than a datetime (since we don't support 'since' parameters anymore). Finally, made the plugin class load the right modules when needed.
2010-11-08Merge branch '0.9.x' into emailsummaryEvan Prodromou
2010-11-08use subclassing to change notice list output for single noticeEvan Prodromou
2010-11-08first steps for email summaryEvan Prodromou
2010-11-08Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 0.9.xEvan Prodromou
2010-11-08fix documentation for parameters to menu eventsEvan Prodromou
2010-11-07Localisation updates from http://translatewiki.net.Siebrand Mazeland
2010-11-07Update translator documentation.Siebrand Mazeland
2010-11-07screen_name -> nick names. Spotted by The Evil IP address.Siebrand Mazeland
2010-11-07Localisation updates from http://translatewiki.netSiebrand Mazeland
2010-11-06Fix typo. Spotted by EugeneZelenko.Siebrand Mazeland
2010-11-05Much more reliable Facebook SSOZach Copley
2010-11-05Localisation updates from http://translatewiki.net.Siebrand Mazeland
2010-11-04* i18n/L10n updates.Siebrand Mazeland
* translator documentation added. * superfluous whitespace removed.
2010-11-04i18n/L10n updates.Siebrand Mazeland
2010-11-04- Some reorganizingZach Copley
- Making the Facebook bridging work
2010-11-03Fix 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.