El Thu, 1 Apr 2010 22:03:55 -0500 Jack Desert <jackdesert...@gmail.com> escribió: > El Thu, 01 Apr 2010 11:59:55 +0200 > Jürgen Spitzmüller <sp...@lyx.org> escribió: > > Jack Desert wrote: > > > > > Here is a patch to configure LyxBlogger in 1.6.x. > > > > > > Jurgen, are you the approval committee for branch patches? > > > > Yes, although "comittee" sound a bit exaggerated ;-) > > > > As to the patch: I am fine with it in general. However, as for 1.6.6, we > > are > > almost finished, and I'd like to stick with critical bug fixes for now. So > > if no one urges me to reconsider, I propose to postpone this to 1.6.7 (and > > put it in as soon as 1.6.6 is released). > > > > Is this OK? > > > > Jürgen > > > > Works for me. That will give me a chance to iron out whether to call it as a > python module, an executable, or both. >
Jurgen, I have decided to go with the modular invocation of LyXBlogger, so i have updated my branch patch accordingly. Go ahead and put it in as soon as 1.6.6 is released. -Jack (attachment) -- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Jack Desert -- Writer, Entrepeneur Author and Spokesman: www.LetsEATalready.com Software Developer: http://GrooveTask.org Email: jackdesert...@gmail.com ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Index: configure.py =================================================================== --- configure.py (revisión: 34132) +++ configure.py (copia de trabajo) @@ -426,6 +426,13 @@ else: addToRC(r'''\copier html "python -tt $$s/scripts/ext_copy.py $$i $$o"''') + # Check if LyxBlogger is installed (Depends on eLyXer) + if elyxerfound: + lyxblogger_found = checkModule('lyxblogger') + if lyxblogger_found: + addToRC(r'\Format blog blog "LyXBlogger" "" "" "" "document"') + addToRC(r'\converter html blog "python -m lyxblogger $$i" ""') + # On SuSE the scripts have a .sh suffix, and on debian they are in /usr/share/tex4ht/ path, htmlconv = checkProg('a LaTeX -> MS Word converter', ["htlatex $$i 'html,word' 'symbol/!' '-cvalidate'", \ "htlatex.sh $$i 'html,word' 'symbol/!' '-cvalidate'", \