"))))
(switch-to-buffer buffer)
(search-backward "")
(insert
(format "
"
label))))
;;}}}
;;{{{ Reset auth handle:
;;;###autoload
(defun gblogger-sign-out()
"Resets client so you can start with a different userid."
(interactive)
(declare (special gblogger-auth-handle
gblogger-user-email gblogger-user-password))
(message "Signing out %s from blogger"
(g-auth-email gblogger-auth-handle))
(setq gblogger-user-email nil
gblogger-user-password nil)
(setq gblogger-auth-handle (make-gblogger-auth)))
;;;###autoload
(defun gblogger-sign-in()
"Resets client so you can start with a different userid."
(interactive)
(declare (special gblogger-auth-handle gblogger-user-email ))
(setq gblogger-user-email
(read-from-minibuffer "User Email:"))
(setq gblogger-auth-handle (make-gblogger-auth))
(g-authenticate gblogger-auth-handle))
;;}}}
(provide 'gblogger)
;;{{{ end of file
;;; local variables:
;;; folded-file: t
;;; byte-compile-dynamic: nil
;;; end:
;;}}}