summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-05-07Initial work on API method for updating a group's profile infoZachary Copley
2010-05-06Ignore PEAR errors with code DB_DATAOBJECT_ERROR_NODATACraig Andrews
2010-05-06Enable ClientSideShorten plugin by defaultCraig Andrews
2010-05-06Merge branch '0.9.x' into 1.0.xBrion Vibber
2010-05-06Merge branch 'testing' into 0.9.xBrion Vibber
2010-05-07Allow plugins to load their styles for mobile view; fixes bad realtime ↵Brion Vibber
button layout
2010-05-06Remove errant double HTML entity encoding in API source attributionZach Copley
2010-05-06Allow OStatusPlugin to set the source attribution titleZach Copley
2010-05-06- OStatusPlugin should return true if it doesn't need to handle sourceZach Copley
attribution - Remove stray break statement from NoticeList
2010-05-06HTML entity encode source link URLs in plain XML output and add ↵Zach Copley
rel="nofollow" to them
2010-05-06Add source link attr to statusnet:notice_info element in Atom output for noticesZach Copley
2010-05-06Refactor and centralize notice source link calculationZach Copley
2010-05-06Add xmlns:statusnet and statusnet:notice_info element to Atom entries for ↵Zach Copley
notices
2010-05-06Ticket #2184: recognize Palm Pre / WebOS browsers for MobileProfileBrion Vibber
One-line addition of 'webos' to the keywords list.
2010-05-05Add ?uselang=xx language override option (only valid, locally-enabled ↵Brion Vibber
languages supported, just as with headers and user settings). Great aid for debugging & translation testing
2010-05-05Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 1.0.xBrion Vibber
Conflicts: lib/xmppmanager.php (resolved: code has moved to XmppPlugin.php)
2010-05-05Merge branch 'testing' of gitorious.org:statusnet/mainline into 0.9.xBrion Vibber
Conflicts: locale/ca/LC_MESSAGES/statusnet.po locale/de/LC_MESSAGES/statusnet.po locale/statusnet.pot
2010-05-05Move XMPPHP from core extlibs to Xmpp plugin extlibsBrion Vibber
2010-05-06Localisation updates for !StatusNet from !translatewiki.net !sntransSiebrand Mazeland
Signed-off-by: Siebrand Mazeland <s.mazeland@xs4all.nl>
2010-05-05Implement since_id and max_id param handling for /api/favoritesZach Copley
2010-05-05XMPP debugging: log the message source when discarding empty or unrecognized ↵Brion Vibber
messages.
2010-05-05Quick fix for DirectionDetector: only apply <span class="rtl"> once; if it's ↵Brion Vibber
already there in an incoming message (eg via OStatus), don't reapply it. Modified from patch from Everplays
2010-05-05Clean up reference usage warnings in DirectionDetector pluginBrion Vibber
2010-05-04Handle timeout more gracefully in background pingsBrion Vibber
Added a 2-second default timeout for XMLRPC/extended pings, configurable as [ping,timeout]. No longer repeating the entire ping section if we had an HTTP error during a submission. For now, dropping the bad item and continuing on with others. (Todo: individual retry and cleaner discards of blacklisted broken-for-now sites.)
2010-05-04Avoid spewing giant debug backtrace into exception in certain OStatus ↵Brion Vibber
subscription failure cases. The code pattern 'new XXXException($e)' to chain exceptions doesn't actually work as intended, as exceptions are actually expecting a string message here. This caused an implicit string conversion from HTTP_Request2_Exception, which is a PEAR_Exception, which defines an absurdly detailed __toString() method including a giant HTML table with a backtrace if you happen to be on a web request. Simply passing $e->getMessage() instead clears this up, as we'll get the nice short message like 'Couldn't connect to tcp://blahblah:80'
2010-05-04Add Emacs Identica-mode to notice sourcesZach Copley
2010-05-04Add Emacs Identica-mode to notice sourcesZach Copley
2010-05-04Add Emacs Identica-mode to notice sourcesZach Copley
2010-05-04correct config.php.sample documentation of sendfileCraig Andrews
2010-05-04Merge branch '1.0.x' of gitorious.org:statusnet/mainline into 1.0.xBrion Vibber
2010-05-03When handling incoming mail, skip everything after a blank line if we ↵Craig Andrews
already have content
2010-05-03use the new maxNoticeLength and maxUrlLength functionality introduced in ↵Craig Andrews
commit 14adb7cc41e3d5d4e543c1f13f7a60d3cadb5c71
2010-05-03extlibs updates: PEAR::Mail to 1.2.0, PEAR::Net_SMTP to 1.4.2 (need to go ↵Brion Vibber
together as a pair) PEAR::Mail updated to 1.2.0 from 1.1.4, fixes deprecation warnings on PHP 5.3, as well as: 1.2.0: • QA release - stable. • Updated minimum dependencies (Net_SMTP, PEAR, PHP) • Doc Bug #15620 Licence change to BSD • Bug #13659 Mail parse error in special condition • Bug #16200 - Security hole allow to read/write Arbitrary File _hasUnclosedQuotes() doesn't properly handle a double slash before an end quote (slusarz@curecanti.org, Bug #9137). • Make sure Net_SMTP is defined when calling getSMTPObject() directly (slusarz@curecanti.org, Bug #13772). • Add addServiceExtensionParameter() to the SMTP driver (slusarz@curecanti.org, Bug #13764). • Add a method to obtain the Net_SMTP object from the SMTP driver (slusarz@curecanti.org, Bug #13766). PEAR::Net_SMTP updated to 1.4.2 from 1.3.1, needed to support updated PEAR::Mail: 1.4.2: • Fixing header string quoting in data(). (Bug #17199) 1.4.1: • The auth() method now includes an optional $tls parameter that determines whether or not TLS should be attempted (if supported by the PHP runtime and the remote SMTP server). This parameter defaults to true. (Bug #16349) • Header data can be specified separately from message body data by passing it as the optional second parameter to ``data()``. This is especially useful when an open file resource is being used to supply message data because it allows header fields (like *Subject:*) to be built dynamically at runtime. (Request #17012) 1.4.0: • The data() method now accepts either a string or a file resource containing the message data. (Request #16962) 1.3.4: • All Net_Socket write failures are now recognized. (Bug #16831) 1.3.3: • Added getGreeting(), for retrieving the server's greeting string. (Request #16066) [needed for PEAR::Mail] • We no longer attempt a TLS connection if we're already using a secure socket. (Bug #16254) • You can now specify a debug output handler via setDebug(). (Request #16420) 1.3.2: • TLS connection only gets started if no AUTH methods are sent. (Bug #14944)
2010-05-03Merge branch '0.9.x' into 1.0.xCraig Andrews
2010-05-03Merge branch '0.9.x' into 1.0.xBrion Vibber
2010-05-03Pull localization updates from 0.9.x branch0.9.2Brion Vibber
2010-05-03Merge branch 'testing' into 0.9.xBrion Vibber
2010-05-03Localisation updates for !StatusNet from !translatewiki.net !sntransSiebrand Mazeland
Signed-off-by: Siebrand Mazeland <s.mazeland@xs4all.nl>
2010-05-03Updated README to include one-liner about fixed installer in the noteable ↵Zach Copley
changes section
2010-05-03Update release dateBrion Vibber
2010-05-02Localisation updates for !StatusNet from !translatewiki.net !sntransSiebrand Mazeland
Signed-off-by: Siebrand Mazeland <s.mazeland@xs4all.nl>
2010-05-01Revert "Update PEAR::Mail to 1.2.0 release; fixes deprecation warnings ↵showBrion Vibber
running under PHP 5.3." This reverts commit 9fd02a4f11881b3e0e1b3029c7c9e85a799c5ced. Looks like there's some changes I missed in there and getting this in'll involve updating some other packages. Will poke it after 0.9.2.
2010-04-30IM cleanup on 1.0.x branch:Brion Vibber
* Fake_XMPP back to Queued_XMPP, refactor how we use it and don't create objects and load classes until we need them. * fix fatal error in IM settings while waiting for a Jabber confirmation. * Caching fix for user_im_prefs * fix for saving multiple transport settings * some fixes for AIM & using normalized addresses for lookups
2010-04-30Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 1.0.xBrion Vibber
2010-04-30Merge branch '0.9.x' of git://gitorious.org/statusnet/mainline into 0.9.xSiebrand Mazeland
2010-04-30Merge branch 'testing' into 0.9.xBrion Vibber
2010-04-30Update translator documentation for OpenID plugin.Siebrand Mazeland
2010-04-30Update PEAR::Mail to 1.2.0 release; fixes deprecation warnings running under ↵Brion Vibber
PHP 5.3.
2010-04-30Update XMPPHP to last upstream release (r77), includes an XML quoting fix.Brion Vibber
2010-04-30Merge branch '0.9.x' into 1.0.xBrion Vibber
Conflicts: lib/util.php