Microsoft Social Bookmarking is still in preview release, but I'm ready to drink the blue kool-aid and give it a shot. Here's how you can add a link to your Graffiti CMS posts (like the one at the bottom of this post). ![]()
I couldn't find details on the url structure, but the browser button script looks like this:
javascript:s=document.selection.createRange().text.replace(/%20{2,}/g,'%20').replace(/^%20|%20$/g,'');d='';if(s!=''){d=encodeURIComponent(s);};window.location('http://social.microsoft.com/bookmarks/en-US/action/Create/s/E/?url='+encodeURIComponent(location.href)+'&ttl='+encodeURIComponent(document.title||'')+'&d='+d+'&bm=true');;
So, with no spaces or special chars, "d", this url should work:
| http://social.microsoft.com/bookmarks/en-US/action/Create/s/E/?url='http://bilinski.org/post/'&ttl='Title'&d=''&bm='true' |
Add lines like this to your post.view file:
| <div id="sbmicrosoft"> |
| <a href="http://social.microsoft.com/bookmarks/en-US/action/Create/s/E/?url=http://bilinski.org$post.Url&ttl=$post.Title&d=&bm=true"> |
| <img src="/files/media/image/spacer.gif" alt="Bookmark on Microsoft" /> |
| </a> |
| </div> |
...and you could add something like this to default.css:
| #sbookmarkbar #sbmicrosoft img { |
| background : url(images/sbmicrosoft.png) no-repeat; |
| border-style : None; |
| height : 24px; |
| width : 24px; |
| } |

