summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-09-23Merge branch '0.8.x' of git@gitorious.org:statusnet/mainline into 0.8.xEvan Prodromou
2009-09-21Initial UI to allow certain timelines to be viewed in a new window inSarven Capadisli
realtime
2009-09-21Escaping internal JavaScriptSarven Capadisli
2009-09-21Added a check for any URL param. If found, strips them out beforeSarven Capadisli
going ahead with realtime timeline update.
2009-09-21Made it slighly more compact with less jQuery selectionSarven Capadisli
2009-09-21Updated todo comment for pushing notices to Personal and RepliesSarven Capadisli
timelines
2009-09-20Fixed indentingSarven Capadisli
2009-09-20Added realtime streams for all and showstream timelinesSarven Capadisli
2009-09-20No need to call farbtastic.go.js because it was moved to userdesign.go.jsSarven Capadisli
2009-09-20Merge branch '0.8.x' of git@gitorious.org:statusnet/mainline into 0.8.xSarven Capadisli
2009-09-19Make the infinite scroll plugin have a non-infinite scroll (button click to ↵Craig Andrews
scroll) mode
2009-09-19Make statuses/home_timeline return the same thing as ↵Zach Copley
statuses/friends_timeline to support apps trying to use the new retweet API method.
2009-09-19handle Godaddy-style PATH_INFO which includes the scriptEvan Prodromou
2009-09-19Additional note in Autocomplete plugin readme about private modeCiaranG
2009-09-18Blacklist all files and directories in the web root (INSTALLDIR). Much more ↵Craig Andrews
elegant than manually keep tracking of these invalid usernames.
2009-09-18Show context link if this notice starts a conversationCraig Andrews
2009-09-18Removed trailing single space in author @titleSarven Capadisli
2009-09-18Correction to path in README of recaptcha pluginCiaranG
2009-09-17Merge remote branch 'cvollick/imDoc' into 0.8.xCraig Andrews
2009-09-17Merge remote branch 'cvollick/userTagPagination' into 0.8.xCraig Andrews
2009-09-16Merge branch 'realtime' into 0.8.xSarven Capadisli
2009-09-16Fixed missing quotesSarven Capadisli
2009-09-16Merge branch '0.8.x' of git@gitorious.org:statusnet/mainline into 0.8.xEvan Prodromou
2009-09-16make PiwikAnalytics work a little nicerEvan Prodromou
2009-09-16Fixed typoSarven Capadisli
2009-09-16Pagination of user/tag was navigating to wrong page.Christopher Vollick
Fixes bug #1736.
2009-09-15Merge branch '0.8.x' of git@gitorious.org:statusnet/mainline into 0.8.xZach Copley
2009-09-15Add Jiminy to notice sourcesZach Copley
2009-09-15304 responses should not have a Content-Length header.Craig Andrews
2009-09-15Merge branch '0.8.x' of gitorious.org:statusnet/mainline into 0.8.xCraig Andrews
2009-09-15Revert "Several fixes to make RabbitMQ a player."Evan Prodromou
This reverts commit c04987018cd6c845c6da7a92d9857d8c651f7022.
2009-09-15Remove unnecessary Profile::pkeyGetCraig Andrews
Thanks for the info, Evan.
2009-09-15Make it impossible to delete self-subscriptions via the APIZach Copley
2009-09-15Updated XHR return markup for Realtime pluginSarven Capadisli
2009-09-14Updated Cloudy themeSarven Capadisli
2009-09-14Fixed Confusing Typo in Documentation.Christopher Vollick
Subscribe != Unsubscribe. Also, my editor added a newline at the end because there wasn't one.
2009-09-13Avoid or suppress E_NOTICE and E_WARNING messages related to the checklibs ↵Brion Vibber
checks. * notice on main installer form checking for $_GET['checklibs'] * notices when seeing which module checks to run * warnings when attempting to load include files
2009-09-13Check that 'dl' function is available and usable before trying to call it ↵Brion Vibber
with error suppression; if it's disabled or unavailable we end up with mysterious failures during installation or loading of libraries. Fixed for StatusNet installer as well as some external libraries that should be fixed upstream if they haven't already been: * PEAR * Auth/OpenID * Auth/Yadis
2009-09-13Make a new REST service for the autocomplete plugin, significantly reducing ↵Craig Andrews
the size of the responses. Also enables caching in the browser.
2009-09-13Add missing pkeyGet override to the Profile classCraig Andrews
2009-09-13Generate ETags for pages which don't specify themselves.Craig Andrews
2009-09-13When viewing a page in https, all links to non-actions (links to CSS, JS, ↵Craig Andrews
etc) should be https. Fixes the mixed content warnings that browsers display. Fixes http://status.net/trac/ticket/1552
2009-09-13Set a Vary header with accept-encoding and cookies.Craig Andrews
Fixes http://status.net/trac/ticket/17
2009-09-13Add ChinaMobile as an email to SMS carrierCraig Andrews
2009-09-13Response for request token doesn't contain omb_versionCraig Andrews
Fixes http://status.net/trac/ticket/681 Sorry it took a year to accept this patch, dho :'-(
2009-09-12Check if the avatar exists before trying to delete it.Craig Andrews
Fixes http://status.net/trac/ticket/1868
2009-09-12NoticeForm's constructor's inreplyto argument should be optional (defaulting ↵Craig Andrews
to null)
2009-09-12Show username in subject of emailsCraig Andrews
Fixes http://status.net/trac/ticket/1862
2009-09-11Add a parameter named 'inreplyto' to the 'notice/new' page, so urls can ↵Craig Andrews
inclue 'inreplyto' id's. Also add 'inreplyto' to the urls sent in emails.
2009-09-11Several fixes to make RabbitMQ a player.Marcel van der Boom
* extlib/Stomp.php -spaces for tabs (we're on PEAR, right?) - send: initialize the $properties parameter as array() instead of null this prevents unsetting $headers if $properties was not set (besides that, it's the proper way to initialize an array) - subscribe: insert FIXME's on ActiveMQ specifics - ack: make sure the content-length header is set *and* is zero. I have seen the header set to '3' there but could not find where it came from, this is at least safe. - disconnect: typo in $headers variable - readFrame: use fgets() instead of gets() so that RabbitQ, which is more protocol strict can also play * extlib/Stomp/Frame.php - spaces for tabs - add note on possibly protocol violating linefeed * extlib/Stomp/Message.php - space for tabs - add content-length header for message * lib/stompqueuemanager.php - use the notice for logging, not the frame