No description
Find a file
2010-08-09 09:48:40 -07:00
app I can't get no satisfaction from get satisfaction 2010-08-08 20:54:50 -07:00
autotest
config the required file permission change for the private key now happens 2010-08-09 03:28:55 +00:00
db IZ, RS; Moved every instance of hardcoded backer info out to yml file config/deploy_config.yml 2010-08-05 14:39:48 -07:00
doc
lib RS, IZ; Rolling back special casing of friend-request 2010-08-05 11:14:40 -07:00
public Made comments a little easier to see, especially on photo show page 2010-08-04 18:12:12 -07:00
script rechmoded build 2010-07-06 19:24:50 -07:00
spec DG MS; PeopleController#index now accepts query string for search (only looks at first_name and last_name) 2010-08-06 16:35:02 -07:00
test Fixed the one selenium test 2010-08-04 15:30:27 -07:00
vendor/plugins
.gitignore added correct path to ignore for uploads 2010-07-21 14:31:08 -07:00
.rspec
Capfile
config.ru
Gemfile Removed gemcutter from gemfile 2010-08-05 16:08:53 -07:00
Rakefile replaced the functionality with openssl, didn't do the encryption spec 2010-08-04 20:32:15 -07:00
README MS notes and GEMFILE formatting 2010-07-17 14:04:43 -07:00

bronenate



max's airplane notes:

refractor possibility:

/receive should be part of the pubsubhubbub multiplexed endpoint... posts should contain some of the information in the params as they "publish". currently, we receieve a post of xml in a very genearic :xml params.  the poster could supply more of this known information to make parsing much less complex, rather than inferring information from the parser.

the pubsub, public convention 

(this is for a client)
to a single, arbitrary multiplexed endpoint (PUBSUBHUBBUB spec)
params['hub.mode'] = "subscribe" = subscription request (could be interpreted as a friend req)
params['hub.mode'] = "unsubscribe" = unsubscribe request= could be interpreted as a unfriend. sends to user
params['hub.mode'] = "" = this is an update from something you are subscribed to

possible diaspora additions:

params['seed.friend'] (or do we want to upgrade subscriptions if they contain a valid public key...?)
params['seed.unfriend']

params['hub.mode'] = update = this is an update of a current type. sends to store_posts_from_xml (this is overkill i think)


params['seed.content_type'] = could be the data-type of the collection or message, could help to parse
(could be in a format where it is "twitter:activitystream-update:status_message"), where the first is the most specific to the most generic to help with inference.

params['seed.fingerprint'] = the key fingerprint of the friend sending the request.  could be a connivence, (or perhaps the signature) so the user can verify the post without having to invoke the parser.