Mikael Nordfeldth 
							
						 
					 
					
						
						
							
						
						6afa091dca 
					 
					
						
						
							
							Change some Salmon events and similar  
						
						... 
						
						
						
						Use Profile instead of User and (if we know it) send along the target
profile, so a Diaspora plugin can encrypt to the receiver. 
						
						
					 
					
						2015-10-04 17:26:23 +02:00 
						 
				 
			
				
					
						
							
							
								Mikael Nordfeldth 
							
						 
					 
					
						
						
							
						
						2aed59a02a 
					 
					
						
						
							
							Diaspora plugin is almost there (for remote salmon slaps at least)  
						
						
						
						
					 
					
						2015-10-04 12:06:48 +02:00 
						 
				 
			
				
					
						
							
							
								Mikael Nordfeldth 
							
						 
					 
					
						
						
							
						
						184293c634 
					 
					
						
						
							
							Break out MagicEnvelope->toXML() functionality to allow for plugin flexibility  
						
						
						
						
					 
					
						2015-10-04 00:17:07 +02:00 
						 
				 
			
				
					
						
							
							
								Mikael Nordfeldth 
							
						 
					 
					
						
						
							
						
						30a4393afa 
					 
					
						
						
							
							Move around some code related to Magic_envelope and signing  
						
						
						
						
					 
					
						2015-10-03 23:35:46 +02:00 
						 
				 
			
				
					
						
							
							
								Mikael Nordfeldth 
							
						 
					 
					
						
						
							
						
						faf14197cd 
					 
					
						
						
							
							Diaspora doesn't understand our Salmon POST, so send again  
						
						
						
						
					 
					
						2015-06-06 16:57:29 +02:00 
						 
				 
			
				
					
						
							
							
								Mikael Nordfeldth 
							
						 
					 
					
						
						
							
						
						975ce6d83e 
					 
					
						
						
							
							Documentation update (clarifying need for php5-gmp in comment)  
						
						
						
						
					 
					
						2015-01-24 12:22:29 +01:00 
						 
				 
			
				
					
						
							
							
								Mikael Nordfeldth 
							
						 
					 
					
						
						
							
						
						537dff7987 
					 
					
						
						
							
							Salmon posts can only be made for local users. More typing!  
						
						... 
						
						
						
						Since we of course don't have the remote party's private keys anyway.
I made some small fixes in Magicsig class too, removing unnecessary code. 
						
						
					 
					
						2014-06-02 19:46:42 +02:00 
						 
				 
			
				
					
						
							
							
								Mikael Nordfeldth 
							
						 
					 
					
						
						
							
						
						9e6599b9fb 
					 
					
						
						
							
							Salmon log message tidying up  
						
						
						
						
					 
					
						2014-05-28 14:07:47 +02:00 
						 
				 
			
				
					
						
							
							
								Mikael Nordfeldth 
							
						 
					 
					
						
						
							
						
						03fc02c26f 
					 
					
						
						
							
							Bad variable names (fixes last commit)  
						
						
						
						
					 
					
						2014-05-27 13:02:26 +02:00 
						 
				 
			
				
					
						
							
							
								Mikael Nordfeldth 
							
						 
					 
					
						
						
							
						
						41773d3f67 
					 
					
						
						
							
							MagicEnvelope object orientation (no passing arrays)  
						
						... 
						
						
						
						MagicEnvelope now uses object properties instead of passing arrays
around everywhere. 
						
						
					 
					
						2014-05-27 12:01:12 +02:00 
						 
				 
			
				
					
						
							
							
								Mikael Nordfeldth 
							
						 
					 
					
						
						
							
						
						54ae0ed3cc 
					 
					
						
						
							
							Removed MagicEnvelopeCompat, legacy from SN <0.9.7  
						
						
						
						
					 
					
						2014-05-26 23:54:22 +02:00 
						 
				 
			
				
					
						
							
							
								Mikael Nordfeldth 
							
						 
					 
					
						
						
							
						
						7c7426b473 
					 
					
						
						
							
							Minor changes in Salmon lib for Magicsig retrieval.  
						
						
						
						
					 
					
						2014-05-26 20:06:45 +02:00 
						 
				 
			
				
					
						
							
							
								Mikael Nordfeldth 
							
						 
					 
					
						
						
							
						
						cdefeda659 
					 
					
						
						
							
							More debugging for Salmon activities  
						
						
						
						
					 
					
						2014-05-05 19:10:44 +02:00 
						 
				 
			
				
					
						
							
							
								Mikael Nordfeldth 
							
						 
					 
					
						
						
							
						
						bbada781b7 
					 
					
						
						
							
							Stronger typing and function access control in OStatus  
						
						
						
						
					 
					
						2014-05-05 19:06:22 +02:00 
						 
				 
			
				
					
						
							
							
								Mikael Nordfeldth 
							
						 
					 
					
						
						
							
						
						2a4dc77a63 
					 
					
						
						
							
							The overloaded DB_DataObject function staticGet is now called getKV  
						
						... 
						
						
						
						I used this hacky sed-command (run it from your GNU Social root, or change the first grep's path to where it actually lies) to do a rough fix on all ::staticGet calls and rename them to ::getKV
   sed -i -s -e '/DataObject::staticGet/I!s/::staticGet/::getKV/Ig' $(grep -R ::staticGet `pwd`/* | grep -v -e '^extlib' | grep -v DataObject:: |grep -v "function staticGet"|cut -d: -f1 |sort |uniq)
If you're applying this, remember to change the Managed_DataObject and Memcached_DataObject function definitions of staticGet to getKV!
This might of course take some getting used to, or modification fo StatusNet plugins, but the result is that all the static calls (to staticGet) are now properly made without breaking PHP Strict Standards. Standards are there to be followed (and they caused some very bad confusion when used with get_called_class)
Reasonably any plugin or code that tests for the definition of 'GNUSOCIAL' or similar will take this change into consideration. 
						
						
					 
					
						2013-08-18 13:13:56 +02:00 
						 
				 
			
				
					
						
							
							
								Siebrand Mazeland 
							
						 
					 
					
						
						
							
						
						4651c9d94a 
					 
					
						
						
							
							Fix L10n/i18n.  
						
						... 
						
						
						
						Some remaining people tag -> list.
Favor -> like
Update translator documentation.
Whitespace updates. 
						
						
					 
					
						2011-04-29 18:59:47 +02:00 
						 
				 
			
				
					
						
							
							
								Brion Vibber 
							
						 
					 
					
						
						
							
						
						1d15145993 
					 
					
						
						
							
							Salmon signature checks on incoming slaps now check both old and new signature formats.  
						
						
						
						
					 
					
						2011-01-06 00:01:42 +00:00 
						 
				 
			
				
					
						
							
							
								Brion Vibber 
							
						 
					 
					
						
						
							
						
						437ac120b0 
					 
					
						
						
							
							Outgoing Salmon slaps now use the corrected signature format; if the first hit is rejected with an HTTP error, we try again with the old format.  
						
						... 
						
						
						
						(This is not 100% ideal; possibly should try to distinguish between server errors and rejections, etc.) 
						
						
					 
					
						2011-01-05 23:54:16 +00:00 
						 
				 
			
				
					
						
							
							
								Brion Vibber 
							
						 
					 
					
						
						
							
						
						51d1535f15 
					 
					
						
						
							
							Added doc comments on Salmon magicsig-related stuff to help in figuring out what's going on  
						
						
						
						
					 
					
						2011-01-05 14:05:59 -08:00 
						 
				 
			
				
					
						
							
							
								Siebrand Mazeland 
							
						 
					 
					
						
						
							
						
						5a6f616206 
					 
					
						
						
							
							* i18n/L10n update  
						
						... 
						
						
						
						* translator comments added
* remove superfluous whitespace 
						
						
					 
					
						2010-09-19 15:17:36 +02:00 
						 
				 
			
				
					
						
							
							
								Siebrand Mazeland 
							
						 
					 
					
						
						
							
						
						1bfbe9badf 
					 
					
						
						
							
							* i18n/L10n updates and FIXMEs added  
						
						... 
						
						
						
						* whitespace fixes 
						
						
					 
					
						2010-09-03 01:35:04 +02:00 
						 
				 
			
				
					
						
							
							
								James Walker 
							
						 
					 
					
						
						
							
						
						517c7483d1 
					 
					
						
						
							
							move to rel="salmon" (per latest spec)  
						
						
						
						
					 
					
						2010-08-02 13:24:38 -04:00 
						 
				 
			
				
					
						
							
							
								James Walker 
							
						 
					 
					
						
						
							
						
						c82cee1876 
					 
					
						
						
							
							removing some extraneous debug logging  
						
						
						
						
					 
					
						2010-02-26 16:26:04 -05:00 
						 
				 
			
				
					
						
							
							
								James Walker 
							
						 
					 
					
						
						
							
						
						e4c462570f 
					 
					
						
						
							
							move salmon posting to send application/magic-envelope+xml per  http://salmon-protocol.googlecode.com/svn/trunk/draft-panzer-salmon-00.html#RPF  
						
						
						
						
					 
					
						2010-02-26 15:39:58 -05:00 
						 
				 
			
				
					
						
							
							
								James Walker 
							
						 
					 
					
						
						
							
						
						223ebc765c 
					 
					
						
						
							
							move signing to take a local actor profile and use local keys  
						
						
						
						
					 
					
						2010-02-26 14:22:49 -05:00 
						 
				 
			
				
					
						
							
							
								James Walker 
							
						 
					 
					
						
						
							
						
						bbb0a7d5bc 
					 
					
						
						
							
							updating to use latest salmon NS definitions  
						
						
						
						
					 
					
						2010-02-26 14:22:49 -05:00 
						 
				 
			
				
					
						
							
							
								James Walker 
							
						 
					 
					
						
						
							
						
						e62e49ed3b 
					 
					
						
						
							
							adding some exception handling for magicenv parsing  
						
						
						
						
					 
					
						2010-02-25 17:09:54 -05:00 
						 
				 
			
				
					
						
							
							
								Brion Vibber 
							
						 
					 
					
						
						
							
						
						06f155c02d 
					 
					
						
						
							
							OStatus: initial hookup of remote group membership (notice delivery not yet working quite right)  
						
						... 
						
						
						
						- added a temp config var to disable salmon magic signatures until they're working consistently 
						
						
					 
					
						2010-02-22 12:13:57 -08:00 
						 
				 
			
				
					
						
							
							
								James Walker 
							
						 
					 
					
						
						
							
						
						2f65fa646a 
					 
					
						
						
							
							wiring in magicsig  
						
						
						
						
					 
					
						2010-02-22 09:05:52 -05:00 
						 
				 
			
				
					
						
							
							
								Brion Vibber 
							
						 
					 
					
						
						
							
						
						557df3d3f7 
					 
					
						
						
							
							OStatus: sub/unsub notifications working again. Fixed up autodetection of feed info at profile setup time  
						
						
						
						
					 
					
						2010-02-19 16:21:17 -08:00 
						 
				 
			
				
					
						
							
							
								Brion Vibber 
							
						 
					 
					
						
						
							
						
						f37063cd63 
					 
					
						
						
							
							Filename case fix  
						
						
						
						
					 
					
						2010-02-10 10:18:47 -08:00