To download LyxBlogger, go to http://code.google.com/p/lyxblogger/
Please submit any issues or suggestions to the author at
<jackdesert556@gmail.com>

Documentation: (copied from source file version 0.31)

#####################      A U T H O R        ##########################
#   Copyright (C) 2010 Jack Desert                                     #
#   jackdesert556@gmail.com                                            #
#   http://www.LetsEATalready.com                                      #
#                                                                      #
######################     L I C E N S E      ##########################
#   This program is free software; you can redistribute it and/or      #
#   modify it under the terms of the GNU General Public License        #
#   as published by the Free Software Foundation; either version 2     #
#   of the License, or any later version.                              #
#                                                                      #
#   This program is distributed in the hope that it will be useful,    #
#   but WITHOUT ANY WARRANTY; without even the implied warranty of     #
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the      #
#   GNU General Public License for more details.                       #
#                                                                      #
#   You should have received a copy of the GNU General Public License  #
#   along with this program; if not, write to                          #
#                                                                      #
#   the Free Software Foundation, Inc.,                                #
#   59 Temple Place - Suite 330,                                       #
#   Boston, MA   02111-1307, USA.                                      #
#                                                                      #
#######################  D E S C R I P T I O N  ########################
#   This program allows you to post to your WordPress blog right from  #
#   LyX. The input to this script is the LyXHTML output from LyX 2.0.  #
#   This script will connect using xml-rpc.                            #
#                                                                      #
####################  I N S T A LL A T I O N   #########################
#   Python is required. Tested with versin 2.6.4                       #
#   Required library: wordpresslib.py (included in .tar.gz file)       #
#   To install the wordpresslib.py library, enter the command          #
#   $ python setup.py install                                          #
#   To install LyxBlogger, enter the command                           #
#   $ sudo cp lyxblogger /usr/bin/.                                    #
#                                                                      #
#########################  R U N N I N G   #############################
#   To invoke LyxBlogger, first generate (x)html by previewing LyXHTML #
#   from LyX 2.0, or by either previewing or manually invoking eLyXer. #
#   Then cd to the directory where the (x)html files and images reside #
#   The location is shown in your browser window when you preview.     #
#   Invoke LyxBlogger as                                               #
#   $ lyxblogger input_file.(x)html                                    #
#                                                                      #
###############    C O N V E R T E R    S E T U P  #####################
#   LyxBlogger can be run from command line or as a converter from     #
#   within LyX. To set up LyxBlogger as a converter in LyX, do the     #
#   following:                                                         #
#   -------------------------------------------------------------------#
#   --------------  LyX 2.0 (internal) LyXHTML Setup   ----------------#
#   To install this script to convert from the LyX 2.0 internal xhtml  #
#   format known as LyXHTML, open LyX 2.0 and  go to                   #
#   Tools-> Preferences-> File Handling-> File Formats.                #
#   Create a file format. Name it something descriptive like           #
#   'LyxBlogger Publish LyXHTML to WordPress'                          #
#   Make sure you check 'Document Format'                              #
#   Give it a unique 'Short name' and 'Extension'                      #
#   Then click on Converters and define a new converter as follows:    #
#   From_Format: LyXHTML                                               #
#   To_Format: 'LyxBlogger Publish LyXHTML to WordPress'               #
#   Converter: lyxblogger $$i                                          #
#   Now you can invoke this converter from within LyX 2.0 by clicking  #
#   File-> Export-> 'LyxBlogger Publish LyXHTML to WordPress'          #
#   -------------------------------------------------------------------#
#   ----------        e L y X e r   S e t u p        ------------------#
#   To install this script to convert from the eLyXer html format,     #
#   open LyX (Tested with version 2.0, but should work 1.6 as well),   #
#   First install eLyXer (tested with versions 0.41 and 0.42) and      #
#   set it up as a converter in LyX. For help installing eLyXer,       #
#   see  http://www.nongnu.org/elyxer/                                 #
#   Find out what the format is called in LyX. I named mine            #
#   eLyXer_HTML to avoid confusion.                                    #
#   Now go to Tools-> Preferences-> File Handling-> File Formats.      #
#   Create a new file format. Name it something descriptive like       #
#   'LyxBlogger Publish eLyXer_HTML to WordPress'                      #
#   Make sure you check 'Document Format'                              #
#   Give it a unique 'Short name' and 'Extension'                      #
#   Then click on Converters and define a new converter as follows:    #
#   From_Format: eLyXer_HTML                                           #
#   To_Format: 'LyxBlogger Publish eLyXer_HTML to WordPress'           #
#   Converter: lyxblogger $$i                                          #
#   Now you can invoke this converter from within LyX 2.0 by clicking  #
#   File-> Export-> 'LyxBlogger Publish eLyXHTML to WordPress'         #
#                                                                      #
##################   A U T O    L O G     I N   ########################
#   To facilitate easier logging in, consider putting your             #
#   credentials in the USER DEFINED VARIABLES section  and setting     #
#   AUTO_LOGIN to True. For example, I have a blog  at                 #
#   http://zippermania.wordpress.com just for the purpose of testing   #
#   this code.                                                         #
#                                                                      #
#   AUTO_URL = 'http://zippermania.wordpress.com/xmlrpc.php'           #
#   AUTO_USER = 'lyxbloggertest'                                       #
#   AUTO_PASSWORD = 'lyxblogger'                                       #
#   AUTO_LOGIN = True                                                  #
#                                                                      #
#   Note that the AUTO_URL must end in in '/xmlrpc.php'                #
#   I invite you to test this script first with the                    #
#   credentials as given. Once you can post to zippermania, then       #
#   change the base URL to your own url.                               #
#   Alternatively, set                                                 #
#   AUTO_LOGIN = False                                                 #
#   To be prompted for your base url, username, and password.          #
#                                                                      #
########################################################################
