Skip to content
Brett Terpstra edited this page Sep 2, 2011 · 1 revision

The new autofill feature requires two steps for setup:

  1. If your Apache configuration is non-standard and you run into trouble, a shell variable may be added in Preferences->Advanced for WEB_ROOT, which will override the default setting found in httpd.conf.

    To use the command, web sharing needs to be turned on and your browser needs access to http://localhost. The above variable should point to the root of your local install as defined in httpd.conf. No trailing slash, and you can use ~ for your user folder.

  2. Install the Bookmarklet in Safari (if you're using the Blogsmith beta version) or Firefox.

The code for the bookmarklet address:

Safari

javascript:EN_CLIP_HOST='http://localhost';var%20x=document.createElement('SCRIPT');x.type='text/javascript';x.src=EN_CLIP_HOST+'/autotags/blogsmith.js';document.getElementsByTagName('head')[0].appendChild(x);x.onload=function(){doit();};

Firefox (3.0+)

javascript:(function(){EN_CLIP_HOST='http://localhost';var%20x=document.createElement('SCRIPT');x.type='text/javascript';x.src=EN_CLIP_HOST+'/autotags/blogsmith.js';document.getElementsByTagName('head')[0].appendChild(x);x.onload=function(){doit();};})();
Clone this wiki locally