-
Notifications
You must be signed in to change notification settings - Fork 27
functionality + api updates. #17
base: master
Are you sure you want to change the base?
Conversation
rhaining
commented
Apr 20, 2011
- If user hits 'cancel' in login screen, modal view controller will be dismissed.
- Added ability to send invitation to another user.
- Added ability to logout - clears cookies & request access invalidation from LinkedIn.
- Updated profile request to get more info.
- Modified "updateStatus" to use new API method, "person-activities".
- Modified ResponseParser to better handle XML responses.
…e dismissed. * Added ability to send invitation to another user. * Added ability to logout - clears cookies & request access invalidation from LinkedIn. * Updated profile request to get more info. * Modified "updateStatus" to use new API method, "person-activities". * Modified ResponseParser to better handle XML responses.
Thanks for sending this! Things are a little crazy these days, but we will review these changes some time in the next few weeks. |
@sixten cool thanks! thought some of the updates/modifications i made might be of use to others out there. Let me know if you run into any issues |
if (shouldfree) | ||
[encodedParameters release]; | ||
//if (shouldfree) | ||
// [encodedParameters release]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While I do still intend to merge your changes as soon as I can get out from under for a few days, I'd love to avoid modifying the upstream code, if at all possible. (Especially something folks may already have in their projects.) Can you tell me a little more about this? Is there a path where this string was over- or under-released?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The object wasn't getting over- or under-released, but i think the way in which was coded was confusing - even xcode's static analyzer thought there could be a problem. By making encodedParameters always autoreleased & getting rid of 'shouldfree', i think confusion is reduced. However, i totally get the hesitation to modify upstream.
Obviously you can drop the formatting- my apologies for committing those changes!
Spent most of the day working on this library while waiting on some other things. I haven't added any of the new API methods, but most of the foundational changes from your fork and a couple of others have been integrated. Check out the unstable branch. |
I only see this commit on the unstable branch from my branch:
However, it seems like it's missing part of my code trying to manage self-closing xml elements.. These are still missing from the unstable branch, but it sounds like you're still workin on 'em!
thanks @sixten! |
Yeah, I was able to carve out a day to work on it, but only one.
I really do appreciate the contribution, and I'm sorry again that it's taking me so long to incorporate these changes. |
@sixten, so sorry! i'm a newbie at github - just realized that even if you're on an unstable branch, the '.git' link in the box grabs the stable by default. I pulled down the right branch this time. Looks good! No worries at all on credit - happy to have better/clearer code out there! thanks! -rob |
oops sorry bout the close/reopen! |
No worries. I'm pretty new to Git myself. FWIW, cloning the repository gets you everything: an exact replica of the entire thing with all of its history. By default, it'll only set up one local branch, but the rest are there, and |