OddMuse Journal Bookmarklet

10/28/2005 20:41:04
tags: OddMuse, web

I wrote a quick boomarklet to make it easy to edit the [[Journal Pages]] for the day if you use OddMuse.

Enter the following on one line as your bookmark (changing the web page of course):

javascript:var thedate=new Date();themonth =
padZero(thedate.getMonth()+1);location.href=
'http://your.host.com/wiki/oddmuse.cgi?action=edit;
id='+thedate.getFullYear()+'-'+themonth+'-'+padZero(thedate.getDate());
function padZero(value){if(value < 10) return '0' + value;return value;}

Similar Pages