Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-11-11 | Fix missing close of comment block | Zach Copley | |
2010-11-11 | Fix missing close of comment block | Zach Copley | |
2010-11-10 | Add error logging for a couple send-fail cases in XMPP out | Brion Vibber | |
2010-11-10 | CSS class tweak for inline attachment thumbnails to avoid things thinking ↵ | Brion Vibber | |
they're content links | |||
2010-11-10 | Fix isHTTPS to work correctly for Cherokee and IIS | Craig Andrews | |
2010-11-10 | Add an action to handle deauthorization callbacks from Facebook | Zach Copley | |
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 | Merge branch '0.9.x' into facebook-upgrade | Zach Copley | |
2010-11-09 | Make a richer StatusNet profile from a user's Facebook profile | Zach Copley | |
2010-11-09 | Missing one close-paren in newgroup.php | Evan Prodromou | |
2010-11-09 | session table was missing from upgrade scripts | Evan Prodromou | |
2010-11-09 | Allow YouTube-style media links to be counted as enclosures for purposes of ↵ | Brion Vibber | |
listing attachments/thumbs | |||
2010-11-09 | Merge branch '0.9.x' into emailsummary | Evan Prodromou | |
2010-11-09 | hook points for the email settings form | Evan Prodromou | |
2010-11-09 | split out InlineAttachmentList from AttachmentList | Brion Vibber | |
2010-11-09 | change width of notices table to display better | Evan Prodromou | |
2010-11-09 | session table was missing from upgrade scripts | Evan Prodromou | |
2010-11-09 | some alignment in the table layout | Evan Prodromou | |
2010-11-09 | set height and width of avatar td in email summary | Evan Prodromou | |
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-09 | - Still send notices to Facebook from existing Facebook app users | Zach Copley | |
- Turns out we don't need the old REST lib to use the old REST API (removed) | |||
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 | change to a table for HTML output | Evan Prodromou | |
2010-11-08 | stylesheet for outgoing email | Evan Prodromou | |
2010-11-08 | Fixup headers for HTML email | Evan Prodromou | |
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 | Complete email summary sending system | Evan 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-08 | Merge branch '0.9.x' into emailsummary | Evan Prodromou | |
2010-11-08 | use subclassing to change notice list output for single notice | Evan Prodromou | |
2010-11-08 | first steps for email summary | 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 | Much more reliable Facebook SSO | Zach Copley | |
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-04 | - Some reorganizing | Zach Copley | |
- Making the Facebook bridging work | |||
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. |