|
SimpleLog wiki
Installing SimpleLog Upgrading Working with themes
How to
Troubleshooting Development & resources |
Howto /
IntegrateDeliciousHaving del.icio.us automatically post links to your SimpleLog website is very simple.
job_name: Can be anything you want
out_name: The email address you use to log into SimpleLog's admin tool
out_pass: The password you use to log into SimpleLog
out_url: The full URL of your site plus /xmlrpc/api (ex: http://mysite.com/xmlrpc/api)
out_time: The hour you want links to be posted each day, in GMT (ex: 21 would be 6PM EST)
out_blog_id: 1
out_cat_id: The tag you want these posts tagged with (ex: links)
That's it! del.icio.us will automatically post your most recent links to your site every day around the time you specified. Custom Del.icio.us Links TitlesYou can also have SimpleLog automatically replace the default del.icio.us links post title with one of your choice. Here's How:
def my_delicious_title(title)
reg = /^links for \d\d\d\d-\d\d-\d\d$/
if reg.match(title)
return "Daily Links"
else
return "#{title}"
end
end
|