summaryrefslogtreecommitdiff
path: root/plugins
AgeCommit message (Collapse)Author
2010-12-09Merge remote branch 'gitorious/0.9.x' into 0.9.xEvan Prodromou
2010-12-09Additional in-process cache plugin InProcessCacheEvan Prodromou
Some of our caching systems, like the disk cache or memcached, have significant overhead (network connections or disk I/O). This plugin adds an additional layer of in-process cache, so we don't need to reconnect to external cache systems when we've already received a data item from the cache. There are some concurrency issues here, but typically they won't be important at the level of a single web hit.
2010-12-08Merge branch 'master' into 0.9.xBrion Vibber
2010-12-08Tweak to PiwikAnalytics plugin to help browsers to pre-load piwik.js, may ↵Brion Vibber
shave a little off load time. Piwik's current default recommended JS for loading creates a <script> tag via document.write(). In addition to being generally evil, this means the browser doesn't know it's going to need piwik.js until that chunk of script gets executed... which can't happen until all scripts referenced *before* it have been loaded and executed. The only reason for that bit of script though seems to be to pick 'http' or 'https' depending on the current page's scheme. This can be done more simply by using a protocol-relative link (eg "//piwik.status.net/piwik.js"), which the browser will resolve as appropriate. Since it's now sitting in the <script> tag, the browser's lookahead code will now see it and be able to start loading it while earlier things are parsing/executing. May be better still to move to an asynchronous load after DOM-ready, but I'm not sure if that'll screw with the analytics code (eg, not being able to start things on the DOM-ready events since they're past).
2010-12-08Merge branch 'master' into 0.9.xBrion Vibber
2010-12-08Mapstraction plugin: use minified sources for OpenLayersBrion Vibber
The default full build of OpenLayers.js is 943kb as of 2.10; this gzips down to a couple hundred kb but is still rather nasty, plus loading it off a remote host could slow things down. Using a local copy let us cut down the size significantly by discarding unused features, and further minification with yui-compressor shaves a bit more off. Cuts down to about 1/5 the size of the original. Also threw in a bundled & minified copy of the Mapstraction classes plus our usermap.js, which covers the common case of using the default OpenLayers provider. This cuts out three additional script loads, two of which weren't getting launched until after the mxn.js main file got loaded.
2010-12-08Create a bundled & minified JS file for Mapstraction's common case (using ↵Brion Vibber
OpenLayers); this'll avoid waiting on additional script loads for mxn.core.js and mxn.openlayers.core.js, and removes the need to load usermap.js separately as well.
2010-12-08Add stripped and minified local copy of OpenLayers 2.10, about 1/5 the size ↵Brion Vibber
of the full version. Included Makefile will recreate the OpenLayers.js using the statusnet.cfg strip configuration file and yui-compressor to do some extra minification at the end. Requires fetching the OpenLayers source download and dropping it in: http://openlayers.org/download/OpenLayers-2.10.tar.gz
2010-12-07Quick hack to discard twitter broadcast queue items on failure *IF* config ↵Brion Vibber
option 'twitter' 'ignore_errors' is on: $config['twitter']['ignore_errors'] = true; A longer-term solution is to patch up the indirect retry handling to count retries better, or delay for later retry sensibly.
2010-12-06For good measure, don't return autocomplete results when not logged in.Brion Vibber
2010-12-06reindentBrion Vibber
2010-12-06Tweak router target URL for Autocomplete suggestionsBrion Vibber
2010-12-06Update Autocomplete readme: current state seems to work fine on private ↵Brion Vibber
sites, so removing that note.
2010-12-06Ticket #2924: include mini avatars in Autocomplete plugin drop-down listBrion Vibber
Ticket #2923: don't show "(null)" for some profiles with no full name set
2010-12-06Start tweaking Autocomplete jsBrion Vibber
2010-12-06fix breakage in AutocompletePluginBrion Vibber
2010-12-06minify LinkPreview JS codeBrion Vibber
2010-12-06Ticket #2921: cleanup on LinkPreview to make fewer requests while typing. ↵Brion Vibber
Will now wait for each link's preview request to complete (successfully or unsuccessfully) before re-running it)
2010-12-06Use short API-style error responses for LinkPreview's oembed proxyBrion Vibber
2010-12-05updated NoticeTitle plugin to use new activity eventsEvan Prodromou
2010-12-02Fix for tickets #2917, #2262: user URL shortening options not being applied ↵Brion Vibber
in non-web channels common_shorten_links() can only access the web session's logged-in user, so never properly took user options into effect for posting via XMPP, API, mail, etc. Adds an optional $user parameter on common_shorten_links(), and a $user->shortenLinks() as a clearer interface for that. Tweaked some lower-level functions so $user gets passed down -- making the $notice_id param previously there for saving URLs at notice save time generalized a little. Note also ticket #2919: there's a lot of duplicate code calling the shortening, checking the length, and reporting near-identical error messages. These should be consolidated to aid in code and translation maintenance.
2010-12-02* fix typo in parameter notationSiebrand Mazeland
* add FIXME for unused message * remove superfluous whitespace
2010-12-01Fix for ticket #2911: Hitting enter on the "associate with current account" ↵Brion Vibber
in OpenID flow failed due to forms being mixed together Separating the two forms (one to create a local account, the other to attach the OpenID to an existing account) gets them working -- enter activates the appropriate default button.
2010-12-01Fix dumb mistake -- changed function names partway through writing Nickname ↵Brion Vibber
and forgot to update a couple places. :)
2010-12-01add OpenID data to the Webfinger XRD file so you can login with it elsewhereEvan Prodromou
2010-12-01Ticket #2913: Realtime background update marker no longer triggers false ↵Brion Vibber
positives when clearing the marker on switching away from the tab in Firefox 4 We were clearing the counter on the window title in the blur event, which gets fired *after* we switch away, thus triggering Firefox to mark the tab as updated again. Clearing the counter on *focus* instead avoids this, and keeps the counter out of the way as well.
2010-11-30Fix ticket #2914: Realtime no longer tells you it's got a message queued up ↵Brion Vibber
when it's really the one you just sent out and is already visible.
2010-11-30Went through realtimeupdate.js and added documentation comments -- does not ↵Brion Vibber
alter the minified version. :) Identified several bugs and fixmes, and added more thorough labeling of the issues with replicating the entire HTML structure of notices (no i18n, missing new features, maintenance problems, possible other issues)
2010-11-30Merge branch 'master' of gitorious.org:statusnet/mainline into 0.9.xBrion Vibber
Conflicts: lib/router.php
2010-11-30Flush router cache when saving Twitter admin settings: adding/removing keys ↵Brion Vibber
can enable/disable some actions. This avoids having users' Twitter settings unreachable after adding your keys to an installation with TwitterBridge on but not pre-configured.
2010-11-30BitlyPlugin: fix for shortening URLs containing ampersand (&)Brion Vibber
2010-11-30Localisation updates from http://translatewiki.net.Siebrand Mazeland
2010-11-30Localisation updates from http://translatewiki.net.Siebrand Mazeland
2010-11-29Merge branch 'namecase' into 0.9.xBrion Vibber
2010-11-29FacebookBridge:Zach Copley
- Don't try to access Foreign_link if it doesn't exist - Remove noisy debugging statement
2010-11-29Replace a couple plugin usages of NICKNAME_FMT with Nickname::normalize()Brion Vibber
2010-11-29Work in progress on nickname validation changes. lib/nickname.php appears to ↵Brion Vibber
have been destroyed by NetBeans and will be rewritten shortly. Sigh.
2010-11-29Localisation updates from http://translatewiki.net.Siebrand Mazeland
2010-11-26Merge remote branch 'gitorious/0.9.x' into 0.9.xEvan Prodromou
2010-11-26Make OStatusPlugin define push feed relEvan Prodromou
2010-11-26Make userxrd part of the default hostmetaEvan Prodromou
2010-11-26Move user xrd action to core and use hooks to extendEvan Prodromou
Moved the Webfinger user XRD action from the OStatus plugin to core. Added hooks to add OStatus-specific stuff, but kept general stuff in the core.
2010-11-26move xrd and hostmeta out of the OStatus plugin and into coreCraig Andrews
add event for setting up hostmeta, and use them in the OStatus plugin
2010-11-24Add LogFilter plugin: quickie way to filter out/in log output based on ↵Brion Vibber
priority or keyword matches. Should be helpful for folks who can't easily adjust their syslog filtering.
2010-11-23logging tweak for Twitter status ID issueBrion Vibber
2010-11-23Fixes for Twitter bridge breakage on 32-bit servers. New "Snowflake" 64-bit ↵Brion Vibber
IDs have become too big to fit in the integer portion of double-precision floats, so to reliably use these IDs we need to pull the new string form now. Machines with 64-bit PHP installation should have had no problems (except on Windows, where integers are still 32 bits)
2010-11-22FacebookBridge - fail gracefully if the user has already deleted aZach Copley
linked notice on Facebook.
2010-11-22Update doc comment for Awesomeness pluginBrion Vibber
2010-11-22Tweak regex in Awesomeness pluginBrion Vibber
2010-11-20Added Awesomeness extensionJeroen De Dauw