# A posting bookmarklet for Vellum
import vellum.hooks
def displayBookmarklet(b):
print '''
Bookmarklet
Drag the link below to your links bar.
''' % (b.id,b.title)
vellum.hooks.register_hook("blog-displayentries-pre",displayBookmarklet)
def doBookmarklet():
print '''
'''
vellum.hooks.register_hook("entry-new-print",doBookmarklet)
__pluginname__ = "Bookmarklet"
__description__ = """Miss your handy "Post to my blog" bookmarklet? Just drop this
plugin into your plugins directory and Vellum will provide you with
one on the blog entries screen."""