Evan Prodromou 
							
						 
					 
					
						
						
							
						
						2e8d92dbe9 
					 
					
						
						
							
							use the 'top' action for bookmarklet popup  
						
						
						
						
					 
					
						2011-09-30 10:10:15 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						0e439117a7 
					 
					
						
						
							
							replace 'public' in documentation with 'top'  
						
						
						
						
					 
					
						2011-09-30 10:09:41 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						9ba736c032 
					 
					
						
						
							
							Add a dummy 'top' action to take you to the main page of the site  
						
						
						
						
					 
					
						2011-09-30 09:45:17 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						3aad58c37f 
					 
					
						
						
							
							Only show some profiles in events  
						
						
						
						
					 
					
						2011-09-30 09:40:15 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						5df3c8bc4b 
					 
					
						
						
							
							Show the list of repeaters in threaded notice list  
						
						
						
						
					 
					
						2011-09-29 23:41:51 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						fb406a81e2 
					 
					
						
						
							
							allow / at end of group, user page  
						
						
						
						
					 
					
						2011-09-29 22:59:18 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						9dfa406493 
					 
					
						
						
							
							Merge branch '1.0.x' into testing  
						
						
						
						
					 
					
						2011-09-29 22:28:44 -04:00 
						 
				 
			
				
					
						
							
							
								Zach Copley 
							
						 
					 
					
						
						
							
						
						ba4bda9beb 
					 
					
						
						
							
							Fix display of group admin avatars  
						
						
						
						
					 
					
						2011-09-30 00:57:54 +00:00 
						 
				 
			
				
					
						
							
							
								Brion Vibber 
							
						 
					 
					
						
						
							
						
						1d15037d6a 
					 
					
						
						
							
							Further fixes to Managed_DataObject::_allCacheKeys(): now uses self::multicacheKey() to generate the (possibly compound) keys, which makes it match the order of the keys used when calling pkeyGet().  
						
						... 
						
						
						
						This should resolve the issues darkip was reporting with user_im_prefs entries returning null immediately after insertion (seen with memcached off, so it was happening even with the built-in in-process cache in the Cache base class).
What was happening was that the initial pkeyGet() would end up saving a negative cache entry under the form with the fields sorted in the key, as via multicacheKey():
    'statusnet:blaguette:user_im_prefs:screenname,transport:brionv,sms' => 'N;'
then we'd do an insert() on the new entry, saving cache entries for the non-sorted key names returned by _allCacheKeys():
    'statusnet:blaguette:user_im_prefs:transport,screenname:sms,brionv' => 'O...'
    'statusnet:blaguette:user_im_prefs:user_id,transport:1234,sms' => 'O...'
but the next query via pkeyGet() still saw the negative lookup cache from before, and came back with null.
Now, _allCacheKeys() sorts the fields in the keys by using the same key-builder function, and queries pick up the same thing you just inserted. :) 
						
						
					 
					
						2011-09-29 15:21:52 -07:00 
						 
				 
			
				
					
						
							
							
								Zach Copley 
							
						 
					 
					
						
						
							
						
						51b7af41d4 
					 
					
						
						
							
							Show homepage on profile  
						
						
						
						
					 
					
						2011-09-29 20:26:01 +00:00 
						 
				 
			
				
					
						
							
							
								Zach Copley 
							
						 
					 
					
						
						
							
						
						d438a55434 
					 
					
						
						
							
							Fix navigation for SubMirrorPlugin  
						
						
						
						
					 
					
						2011-09-29 20:11:51 +00:00 
						 
				 
			
				
					
						
							
							
								Samantha Doherty 
							
						 
					 
					
						
						
							
						
						d51a93ddb9 
					 
					
						
						
							
							Quick style for event attendee avatar lists.  
						
						
						
						
					 
					
						2011-09-29 16:00:10 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						699a90f11c 
					 
					
						
						
							
							Show Event attendees in mini-list  
						
						
						
						
					 
					
						2011-09-29 15:12:30 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						0316e279d7 
					 
					
						
						
							
							Merge branch 'testing' of gitorious.org:statusnet/mainline into testing  
						
						
						
						
					 
					
						2011-09-29 12:32:09 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						32845a1051 
					 
					
						
						
							
							Make lists work in single-user mode  
						
						... 
						
						
						
						Added routes to the router for list pages in single-user mode.
For each of the actions in those routes, use the global single-user
nickname rather than a nickname URL argument to determine the tagger ID.
In nav, and for Ajax, provide the right nicknames. 
						
						
					 
					
						2011-09-29 12:29:12 -04:00 
						 
				 
			
				
					
						
							
							
								Zach Copley 
							
						 
					 
					
						
						
							
						
						2cbfc8cb8e 
					 
					
						
						
							
							Fix navigation for SubMirrorPlugin  
						
						
						
						
					 
					
						2011-09-29 07:58:52 +00:00 
						 
				 
			
				
					
						
							
							
								Brion Vibber 
							
						 
					 
					
						
						
							
						
						69765a0550 
					 
					
						
						
							
							Fix for caching with compound keys: add Managed_DataObject::_allCacheKeys() to override the one in Memcached_DataObject.  
						
						... 
						
						
						
						Memcached_DataObject doesn't quite fully understand unique indexes, and can't properly build cache keys for compound unique or primary keys.
Managed_DataObject has more information in its schema data, so we can build a proper list. 
						
						
					 
					
						2011-09-28 18:32:43 -07:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						797e187acb 
					 
					
						
						
							
							Merge commit 'refs/merge-requests/174' of git://gitorious.org/statusnet/mainline into merge-requests/174  
						
						
						
						
					 
					
						2011-09-28 16:14:42 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						82770601e2 
					 
					
						
						
							
							Remove config.php.sample  
						
						... 
						
						
						
						This file is really, really out-of-date. We've got admin panels, and
we've got a long document (CONFIGURE) on how to do this. Using
config.php.sample as a starting point is a bad idea. 
						
						
					 
					
						2011-09-28 16:11:12 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						c70c7db1c5 
					 
					
						
						
							
							Remove unique key on file_thumbnail.url  
						
						... 
						
						
						
						We're getting "DB error: already exists" on thumbnails coming from
embed.ly. We don't need this to be unique, so let's avoid that. 
						
						
					 
					
						2011-09-28 15:48:20 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						a18d3facf8 
					 
					
						
						
							
							Merge branch '1.0.x' into 1.1.x  
						
						
						
						
					 
					
						2011-09-28 12:24:39 -04:00 
						 
				 
			
				
					
						
							
							
								Scott Sweeny 
							
						 
					 
					
						
						
							
						
						94b524d6dc 
					 
					
						
						
							
							plugins/MobileProfile/MobileProfilePlugin.php: add 'maemo' to recognized devices  
						
						
						
						
					 
					
						2011-09-27 23:54:42 -04:00 
						 
				 
			
				
					
						
							
							
								Zach Copley 
							
						 
					 
					
						
						
							
						
						8ca9f33f45 
					 
					
						
						
							
							Merge branch 'testing' of gitorious.org:statusnet/mainline into testing  
						
						
						
						
					 
					
						2011-09-27 16:59:43 +00:00 
						 
				 
			
				
					
						
							
							
								Zach Copley 
							
						 
					 
					
						
						
							
						
						cd30c94096 
					 
					
						
						
							
							Move check for valid access token to the right place  
						
						
						
						
					 
					
						2011-09-27 16:59:10 +00:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						baeb84ebb3 
					 
					
						
						
							
							Remove unsupported hcard action from xrd  
						
						
						
						
					 
					
						2011-09-27 11:49:38 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						23e02ea76a 
					 
					
						
						
							
							Merge branch '1.0.x' into testing  
						
						
						
						
					 
					
						2011-09-27 11:45:24 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						9f954eddc5 
					 
					
						
						
							
							remove unsupported hcard action  
						
						
						
						
					 
					
						2011-09-27 11:43:41 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						9143d4f384 
					 
					
						
						
							
							Merge branch '1.0.x' into testing  
						
						
						
						
					 
					
						2011-09-27 11:33:13 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						3a267aa549 
					 
					
						
						
							
							Merge remote-tracking branch 'origin/testing' into testing  
						
						
						
						
					 
					
						2011-09-27 11:33:01 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						3063caea83 
					 
					
						
						
							
							Incorrect constant for theme warning  
						
						
						
						
					 
					
						2011-09-27 11:32:20 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						5ccae1313c 
					 
					
						
						
							
							Query errors in Profile_tag  
						
						
						
						
					 
					
						2011-09-27 11:32:05 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						8b35e69b34 
					 
					
						
						
							
							setup schemaversion first so we don't get errors on upgrade  
						
						
						
						
					 
					
						2011-09-27 11:27:14 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						841c71f37d 
					 
					
						
						
							
							Add profile lists for all tags on upgrade  
						
						
						
						
					 
					
						2011-09-27 11:16:14 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						5eddfd1eab 
					 
					
						
						
							
							remove unlinked publicpeopletagcloud  
						
						
						
						
					 
					
						2011-09-27 10:55:10 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						88c00facc8 
					 
					
						
						
							
							fix getOtherTags() to not use joinAdd()  
						
						
						
						
					 
					
						2011-09-27 10:51:02 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						707f90d012 
					 
					
						
						
							
							missed an AND  
						
						
						
						
					 
					
						2011-09-27 10:47:13 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						ce044c40fb 
					 
					
						
						
							
							rewrite Profile_tag::getTagsArray() so it doesn't use joinAdd()  
						
						
						
						
					 
					
						2011-09-27 09:42:34 -04:00 
						 
				 
			
				
					
						
							
							
								Zach Copley 
							
						 
					 
					
						
						
							
						
						ec53e68cf2 
					 
					
						
						
							
							Merge branch 'testing' of gitorious.org:statusnet/mainline into testing  
						
						
						
						
					 
					
						2011-09-27 04:33:00 +00:00 
						 
				 
			
				
					
						
							
							
								Zach Copley 
							
						 
					 
					
						
						
							
						
						000e5c0c01 
					 
					
						
						
							
							Do a better job of saving the original avatar from Facebook  
						
						
						
						
					 
					
						2011-09-27 04:31:41 +00:00 
						 
				 
			
				
					
						
							
							
								Zach Copley 
							
						 
					 
					
						
						
							
						
						3b28f226c7 
					 
					
						
						
							
							Facebook bridge back in business with new JS-SDK and OAuth 2.0 flow.  
						
						... 
						
						
						
						Might be better to rewrite the login mechanism to use server side flow
now that Facebook provides it. 
						
						
					 
					
						2011-09-27 04:09:47 +00:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						8c710ad2c1 
					 
					
						
						
							
							Merge commit 'refs/merge-requests/158' of git://gitorious.org/statusnet/mainline into merge-requests/158  
						
						... 
						
						
						
						Conflicts:
	classes/Profile_list.php
	lib/peopletagnoticestream.php 
						
						
					 
					
						2011-09-26 17:11:49 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						a9f83008b8 
					 
					
						
						
							
							Merge branch '1.0.x' into testing  
						
						
						
						
					 
					
						2011-09-26 17:06:14 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						540c545399 
					 
					
						
						
							
							Don't replace URLs if 'shortened' version is longer, unless forced  
						
						
						
						
					 
					
						2011-09-26 17:05:35 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						b816d24dcc 
					 
					
						
						
							
							Merge branch '1.0.x' into testing  
						
						
						
						
					 
					
						2011-09-26 16:16:08 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						a1fd6e0fa4 
					 
					
						
						
							
							Merge branch '1.0.x' of gitorious.org:statusnet/mainline into 1.0.x  
						
						
						
						
					 
					
						2011-09-26 16:15:52 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						2678b937b1 
					 
					
						
						
							
							fix problem with missing list subscribers  
						
						
						
						
					 
					
						2011-09-26 16:15:38 -04:00 
						 
				 
			
				
					
						
							
							
								Brion Vibber 
							
						 
					 
					
						
						
							
						
						1b25b75b53 
					 
					
						
						
							
							Use older-style top reply form when replying from old-school conversation tree view (labeled with .old-school class on one of its parent nodes).  
						
						
						
						
					 
					
						2011-09-26 12:54:33 -07:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						7a756f39fd 
					 
					
						
						
							
							Merge branch '1.0.x' into testing  
						
						
						
						
					 
					
						2011-09-26 15:07:09 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						a19b194a31 
					 
					
						
						
							
							Merge branch '1.0.x' of gitorious.org:statusnet/mainline into 1.0.x  
						
						
						
						
					 
					
						2011-09-26 15:06:49 -04:00 
						 
				 
			
				
					
						
							
							
								Evan Prodromou 
							
						 
					 
					
						
						
							
						
						e1ac3ad868 
					 
					
						
						
							
							missing \n in ja translation  
						
						
						
						
					 
					
						2011-09-26 15:04:49 -04:00