Page 1 of 1

WebHelp debugging

Posted: Tue Aug 30, 2016 10:32 pm
by rdelong
I'm migrating our WebHelp plugin (and license) to our new CCMS provider. As I'm troubleshooting the transition problems, the batch file simply hangs on the "%JVM_INSTALL_DIR%\bin\java"^ ... command. I can't "see" what's going on under the covers so to speak.

Does the OT or WebHelp have any means to show me what's going on? And yes, I set the Echo to On in my batch file.

Thanks.

Re: WebHelp debugging

Posted: Wed Aug 31, 2016 2:44 pm
by radu_pisoi
Hi,

First of all, I think it would be great if you to put a similar question to the support team of the CCMS you are using. Maybe they could give you more details about the instalattion procedure for a DITA-OT plugin.

However, could you tell us which is the command and batch file that you are executing?

Re: WebHelp debugging

Posted: Thu Sep 01, 2016 3:10 am
by rdelong
I'm using an adaptation of the /plugins/com.oxygenxml.webhelp/dita.bat script:
Here's a snippet (sans the SET commands) - I've asked about the debug techniques that the SDL admin might provide.

Code: Select all


"%JVM_INSTALL_DIR%\bin\java"^
-Xmx512m^
-classpath^
"%DITA_OT_INSTALL_DIR%\tools\ant\lib\ant-launcher.jar"^
"-Dant.home=%DITA_OT_INSTALL_DIR%\tools\ant" org.apache.tools.ant.launch.Launcher^
-lib "%DITA_OT_INSTALL_DIR%\plugins\com.oxygenxml.webhelp\lib\xercesImpl.jar"^
-lib "%DITA_OT_INSTALL_DIR%\plugins\com.oxygenxml.webhelp\lib\xml-apis.jar"^
-lib "%DITA_OT_INSTALL_DIR%\plugins\com.oxygenxml.webhelp\lib\xml-apis-ext.jar"^
-lib "%DITA_OT_INSTALL_DIR%\plugins\com.oxygenxml.webhelp\lib\dost-patches.jar"^
-lib "%DITA_OT_INSTALL_DIR%"^
-lib "%DITA_OT_INSTALL_DIR%\lib"^
-lib "%SAXON_9_DIR%\saxon9.jar"^
-lib "%SAXON_9_DIR%\saxon9-dom.jar"^
-lib "%DITA_OT_INSTALL_DIR%\plugins\com.oxygenxml.webhelp\lib\license.jar"^
-lib "%DITA_OT_INSTALL_DIR%\plugins\com.oxygenxml.webhelp\lib\log4j.jar"^
-lib "%DITA_OT_INSTALL_DIR%\plugins\com.oxygenxml.webhelp\lib\resolver.jar"^
-lib "%DITA_OT_INSTALL_DIR%\plugins\com.oxygenxml.webhelp\lib\ant-contrib-1.0b3.jar"^
-lib "%DITA_OT_INSTALL_DIR%\plugins\com.oxygenxml.webhelp\lib\lucene-analyzers-common-4.0.0.jar"^
-lib "%DITA_OT_INSTALL_DIR%\plugins\com.oxygenxml.webhelp\lib\lucene-core-4.0.0.jar"^
-lib "%DITA_OT_INSTALL_DIR%\plugins\com.oxygenxml.webhelp\lib\xhtml-indexer.jar"^
-lib "%DITA_OT_INSTALL_DIR%\plugins\com.oxygenxml.highlight\lib\xslthl-2.1.0.jar"^
-lib "%DITA_OT_INSTALL_DIR%\plugins\com.oxygenxml.webhelp\lib\webhelpXsltExtensions.jar"^
-f "%DITA_OT_INSTALL_DIR%\build.xml"^
"-Dtranstype=%TRANSTYPE%"^
"-Dbasedir=%DITA_MAP_BASE_DIR%"^
"-Doutput.dir=%DITA_MAP_BASE_DIR%\out\%TRANSTYPE%"^
"-Ddita.temp.dir=%DITA_MAP_BASE_DIR%\temp\%TRANSTYPE%"^
"-Dargs.hide.parent.link=no"^
"-Ddita.dir=%DITA_OT_INSTALL_DIR%"^
"-Dargs.xhtml.classattr=yes"^
"-Dargs.input=%DITA_MAP_BASE_DIR%\%DITAMAP_FILE%"^
"-Dwebhelp.skin.css=%DITA_OT_INSTALL_DIR%\plugins\com.oxygenxml.webhelp\predefined-skins\dita\oxygen\skin.css"^
"-DbaseJVMArgLine=-Xmx384m"

Re: WebHelp debugging

Posted: Thu Sep 01, 2016 10:46 am
by alin
Hi,

I've tested your script with DITA-OT 2.2.3. The only problem that I saw is the path to the ANT Java library. It should be:

Code: Select all

"%DITA_OT_INSTALL_DIR%\tools\ant\lib\ant-launcher.jar;%DITA_OT_INSTALL_DIR%\lib\ant-launcher.jar"^
instead of

Code: Select all

"%DITA_OT_INSTALL_DIR%\tools\ant\lib\ant-launcher.jar"^
In my case, the script run successfully:

Code: Select all


C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp>REM  Oxygen WebHelp Plugin

C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp>REM Copyright (c) 1998-2016 Syncro Soft SRL, Romania. All rights reserved.

C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp>REM The path of the Java Virtual Machine install directory

C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp>rem set JVM_INSTALL_DIR=C:\Program Files\Java\jdk1.6.0_45

C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp>set JVM_INSTALL_DIR=C:\Program Files\Java\jdk1.8.0_66

C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp>REM The path of the DITA Open Toolkit install directory

C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp>set DITA_OT_INSTALL_DIR=C:\Users\alin_balasa\Desktop\dita-ot-2.2.3

C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp>REM One of the following three values:

C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp>REM webhelp

C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp>REM webhelp-responsive

C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp>REM webhelp-feedback

C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp>REM webhelp-mobile

C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp>set TRANSTYPE=webhelp

C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp>REM The path of the directory of the input DITA map file

C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp>set DITA_MAP_BASE_DIR=D:\projects\trunk\eXml\samples\dita\flowers

C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp>REM The name of the input DITA map file

C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp>set DITAMAP_FILE=flowers.ditamap

C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp>REM The name of the DITAVAL input filter file

C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp>REM set DITAVAL_FILE=my_ditaval.ditaval

C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp>REM The path of the directory of the DITAVAL input filter file

C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp>REM set DITAVAL_DIR=E:\test\OxygenXMLEditor\samples\dita

C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp>REM IMPORTANT NOTE: If you use DITA-OT version 1.7.x you must replace

C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp>REM dost-patches-DITA-1.8.jar with dost-patches-DITA-1.7.jar in the following

C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp>REM java command.

C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp>"C:\Program Files\Java\jdk1.8.0_66\bin\java" -Xmx512m -classpath "C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\tools\ant\lib\ant-launcher.jar;C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\lib\ant-launcher.jar" "-Dant.home=C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\tools\ant" org.apache.tools.ant.launch.Launcher -lib "C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp\lib\xercesImpl.jar" -lib "C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp\lib\xml-apis.jar" -lib "C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp\lib\xml-apis-ext.jar" -lib "C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp\lib\dost-patches.jar" -lib "C:\Users\alin_balasa\Desktop\dita-ot-2.2.3" -lib "C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\lib" -lib "\saxon9.jar" -lib "\saxon9-dom.jar" -lib "C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp\lib\license.jar" -lib "C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp\lib\log4j.jar" -lib "C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp\lib\resolver.jar" -lib "C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp\lib\ant-contrib-1.0b3.jar" -lib "C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp\lib\lucene-analyzers-common-4.0.0.jar" -lib "C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp\lib\lucene-core-4.0.0.jar" -lib "C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp\lib\xhtml-indexer.jar" -lib "C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.highlight\lib\xslthl-2.1.0.jar" -lib "C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp\lib\webhelpXsltExtensions.jar" -f "C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\build.xml" "-Dargs.debug=yes" "-Dtranstype=webhelp" "-Dbasedir=D:\projects\trunk\eXml\samples\dita\flowers" "-Doutput.dir=D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp" "-Ddita.temp.dir=D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp" "-Dargs.hide.parent.link=no" "-Ddita.dir=C:\Users\alin_balasa\Desktop\dita-ot-2.2.3" "-Dargs.xhtml.classattr=yes" "-Dargs.input=D:\projects\trunk\eXml\samples\dita\flowers\flowers.ditamap" "-Dwebhelp.skin.css=C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp\predefined-skins\dita\oxygen\skin.css" "-DbaseJVMArgLine=-Xmx384m"
Buildfile: C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\build.xml

init:

check-arg:
[mkdir] Created dir: D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp

log-arg:
[echo] *****************************************************************
[echo] * basedir = D:\projects\trunk\eXml\samples\dita\flowers
[echo] * dita.dir = C:\Users\alin_balasa\Desktop\dita-ot-2.2.3
[echo] * transtype = webhelp
[echo] * tempdir = D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp
[echo] * outputdir = D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp
[echo] * clean.temp = true
[echo] * DITA-OT version = 2.2.3
[echo] * XML parser = Xerces
[echo] * XSLT processor = Saxon
[echo] * collator = ICU
[echo] *****************************************************************
[echo] #Ant properties
[echo] #Thu Sep 01 10:39:48 EEST 2016
[echo] args.debug=yes
[echo] args.default.language=en-US
[echo] args.grammar.cache=yes
[echo] args.hide.parent.link=no
[echo] args.input=D\:\\projects\\trunk\\eXml\\samples\\dita\\flowers\\flowers.ditamap
[echo] args.logdir=D\:\\projects\\trunk\\eXml\\samples\\dita\\flowers\\out\\webhelp
[echo] args.outext=.html
[echo] args.xhtml.classattr=yes
[echo] args.xml.systemid.set=yes
[echo] dita.dir=C\:\\Users\\alin_balasa\\Desktop\\dita-ot-2.2.3
[echo] dita.plugin.com.oxygenxml.dita-ot.plugin.webhelp.dir=C\:\\Users\\alin_balasa\\Desktop\\dita-ot-2.2.3\\plugins\\com.oxygenxml.webhelp
[echo] dita.plugin.com.oxygenxml.highlight.dir=C\:\\Users\\alin_balasa\\Desktop\\dita-ot-2.2.3\\plugins\\com.oxygenxml.highlight
[echo] dita.plugin.com.sophos.tocjs.dir=C\:\\Users\\alin_balasa\\Desktop\\dita-ot-2.2.3\\plugins\\com.sophos.tocjs
[echo] dita.plugin.org.dita.base.dir=C\:\\Users\\alin_balasa\\Desktop\\dita-ot-2.2.3
[echo] dita.plugin.org.dita.docbook.dir=C\:\\Users\\alin_balasa\\Desktop\\dita-ot-2.2.3\\plugins\\org.dita.docbook
[echo] dita.plugin.org.dita.eclipsecontent.dir=C\:\\Users\\alin_balasa\\Desktop\\dita-ot-2.2.3\\plugins\\org.dita.eclipsecontent
[echo] dita.plugin.org.dita.eclipsehelp.dir=C\:\\Users\\alin_balasa\\Desktop\\dita-ot-2.2.3\\plugins\\org.dita.eclipsehelp
[echo] dita.plugin.org.dita.html5.dir=C\:\\Users\\alin_balasa\\Desktop\\dita-ot-2.2.3\\plugins\\org.dita.html5
[echo] dita.plugin.org.dita.htmlhelp.dir=C\:\\Users\\alin_balasa\\Desktop\\dita-ot-2.2.3\\plugins\\org.dita.htmlhelp
[echo] dita.plugin.org.dita.javahelp.dir=C\:\\Users\\alin_balasa\\Desktop\\dita-ot-2.2.3\\plugins\\org.dita.javahelp
[echo] dita.plugin.org.dita.odt.dir=C\:\\Users\\alin_balasa\\Desktop\\dita-ot-2.2.3\\plugins\\org.dita.odt
[echo] dita.plugin.org.dita.pdf2.axf.dir=C\:\\Users\\alin_balasa\\Desktop\\dita-ot-2.2.3\\plugins\\org.dita.pdf2.axf
[echo] dita.plugin.org.dita.pdf2.dir=C\:\\Users\\alin_balasa\\Desktop\\dita-ot-2.2.3\\plugins\\org.dita.pdf2
[echo] dita.plugin.org.dita.pdf2.fop.dir=C\:\\Users\\alin_balasa\\Desktop\\dita-ot-2.2.3\\plugins\\org.dita.pdf2.fop
[echo] dita.plugin.org.dita.pdf2.xep.dir=C\:\\Users\\alin_balasa\\Desktop\\dita-ot-2.2.3\\plugins\\org.dita.pdf2.xep
[echo] dita.plugin.org.dita.specialization.dita11.dir=C\:\\Users\\alin_balasa\\Desktop\\dita-ot-2.2.3\\plugins\\org.dita.specialization.dita11
[echo] dita.plugin.org.dita.specialization.eclipsemap.dir=C\:\\Users\\alin_balasa\\Desktop\\dita-ot-2.2.3\\plugins\\org.dita.specialization.eclipsemap
[echo] dita.plugin.org.dita.troff.dir=C\:\\Users\\alin_balasa\\Desktop\\dita-ot-2.2.3\\plugins\\org.dita.troff
[echo] dita.plugin.org.dita.wordrtf.dir=C\:\\Users\\alin_balasa\\Desktop\\dita-ot-2.2.3\\plugins\\org.dita.wordrtf
[echo] dita.plugin.org.dita.xhtml.dir=C\:\\Users\\alin_balasa\\Desktop\\dita-ot-2.2.3\\plugins\\org.dita.xhtml
[echo] dita.plugin.org.oasis-open.dita.v1_2.dir=C\:\\Users\\alin_balasa\\Desktop\\dita-ot-2.2.3\\plugins\\org.oasis-open.dita.v1_2
[echo] dita.plugin.org.oasis-open.dita.v1_3.dir=C\:\\Users\\alin_balasa\\Desktop\\dita-ot-2.2.3\\plugins\\org.oasis-open.dita.v1_3
[echo] dita.temp.dir=D\:\\projects\\trunk\\eXml\\samples\\dita\\flowers\\temp\\webhelp
[echo] *****************************************************************

build-init:

check-license:
[echo] Using directory C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp/lib
[java]
[java] Oxygen Webhelp version 18.0, build number 2016081012
[java]
[java] Oxygen Webhelp license valid, licensed to: Syncro Soft Test License, start date: Aug 31, 2016, license version: 18

create-props-file:

check-webhelp-feedback-parameters:

dita.map.webhelp.init:

preprocess.init:
[echo] *****************************************************************
[echo] * input = D:\projects\trunk\eXml\samples\dita\flowers\flowers.ditamap
[echo] *****************************************************************

gen-list:
[gen-list] Using Xerces grammar pool for DTD and schema caching.
[gen-list] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/flowers.ditamap
[gen-list] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/topics/introduction.dita
[gen-list] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/topics/care.dita
[gen-list] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/tasks/pruning.dita
[gen-list] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/tasks/gardenPreparation.dita
[gen-list] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/concepts/glossaryGenus.dita
[gen-list] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/concepts/glossaryPollination.dita
[gen-list] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/concepts/glossarySepal.dita
[gen-list] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/concepts/glossaryRhizome.dita
[gen-list] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/concepts/glossaryBulb.dita
[gen-list] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/concepts/glossaryCultivar.dita
[gen-list] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/concepts/glossaryPerennial.dita
[gen-list] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/concepts/glossaryPanicle.dita
[gen-list] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/topics/copyright.dita
[gen-list] Serializing job specification

debug-filter:
[filter] Using Xerces grammar pool for DTD and schema caching.
[filter] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/flowers.ditamap
[filter] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/concepts/glossaryPerennial.dita
[filter] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/topics/care.dita
[filter] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/concepts/glossaryCultivar.dita
[filter] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/tasks/gardenPreparation.dita
[filter] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/concepts/glossaryPollination.dita
[filter] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/concepts/glossaryPanicle.dita
[filter] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/concepts/glossaryRhizome.dita
[filter] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/tasks/pruning.dita
[filter] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/topics/copyright.dita
[filter] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/concepts/glossaryGenus.dita
[filter] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/concepts/glossaryBulb.dita
[filter] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/topics/introduction.dita
[filter] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/concepts/glossarySepal.dita
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\outditafiles.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\fullditamapandtopic.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\fullditatopic.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\fullditamap.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\hrefditatopic.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\conref.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\image.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\flagimage.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\html.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\canditopics.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\subjectscheme.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\conreftargets.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\copytosource.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\subtargets.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\resourceonly.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\user.input.file.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\hreftargets.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\conref.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\hrefditatopic.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\fullditatopic.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\fullditamapandtopic.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\conreftargets.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\canditopics.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\resourceonly.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl

mapref-check:

mapref:
[mapref] Transforming into D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp
[mapref] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\preprocess\mapref.xsl
[mapref] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\flowers.ditamap

branch-filter:
[branch-filter] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/temp/webhelp/flowers.ditamap

copy-image:

copy-html:

copy-flag-check:

copy-flag:

copy-files:

keyref:
[keyref] Reading file:/D:/projects/trunk/eXml/samples/dita/flowers/temp/webhelp/flowers.ditamap
[keyref] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/temp/webhelp/topics/introduction.dita
[mapref] Transforming into D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp
[mapref] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\preprocess\mapref.xsl
[mapref] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\flowers.ditamap

conrefpush:
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\conref.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl

conref-check:

conref:

profile-check:

profile:

topic-fragment:
[topic-fragment] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/temp/webhelp/concepts/glossaryPerennial.dita
[topic-fragment] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/temp/webhelp/topics/care.dita
[topic-fragment] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/temp/webhelp/concepts/glossaryCultivar.dita
[topic-fragment] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/temp/webhelp/tasks/gardenPreparation.dita
[topic-fragment] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/temp/webhelp/concepts/glossaryPollination.dita
[topic-fragment] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/temp/webhelp/concepts/glossaryPanicle.dita
[topic-fragment] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/temp/webhelp/concepts/glossaryRhizome.dita
[topic-fragment] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/temp/webhelp/tasks/pruning.dita
[topic-fragment] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/temp/webhelp/topics/copyright.dita
[topic-fragment] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/temp/webhelp/concepts/glossaryGenus.dita
[topic-fragment] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/temp/webhelp/concepts/glossaryBulb.dita
[topic-fragment] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/temp/webhelp/topics/introduction.dita
[topic-fragment] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/temp/webhelp/concepts/glossarySepal.dita

coderef:

add-links:

move-meta-entries:
[move-meta] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/temp/webhelp/flowers.ditamap
[move-meta] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/temp/webhelp/flowers.ditamap
[move-meta] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/temp/webhelp/topics/copyright.dita
[move-meta] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/temp/webhelp/topics/copyright.dita
[move-meta] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/temp/webhelp/topics/introduction.dita
[move-meta] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/temp/webhelp/topics/introduction.dita
[move-meta] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/temp/webhelp/flowers.ditamap
[move-meta] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\preprocess\mappull.xsl

chunk-check:

chunk:
[chunk] Processing file:/D:/projects/trunk/eXml/samples/dita/flowers/temp/webhelp/flowers.ditamap
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\fullditatopic.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\fullditamap.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\fullditamapandtopic.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\resourceonly.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\copytosource.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl
[job-helper] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\.job.xml to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\copytotarget2sourcemap.list
[job-helper] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\job-helper.xsl

maplink-check:

maplink:
[maplink] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\topics\care.dita
[maplink] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\tasks\pruning.dita
[maplink] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\tasks\gardenPreparation.dita

topicpull-check:

topicpull:
[topicpull] Transforming into D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp
[topicpull] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\preprocess\topicpull.xsl
[topicpull] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryGenus.dita
[topicpull] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\topics\care.dita
[topicpull] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryRhizome.dita
[topicpull] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossarySepal.dita
[topicpull] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryPerennial.dita
[topicpull] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\topics\introduction.dita
[topicpull] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryPanicle.dita
[topicpull] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\tasks\gardenPreparation.dita
[topicpull] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryPollination.dita
[topicpull] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\topics\copyright.dita
[topicpull] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\tasks\pruning.dita
[topicpull] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryCultivar.dita
[topicpull] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryBulb.dita

flag-module-check:

flag-module:

clean-map-check:

clean-map:
[mapref] Transforming into D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp
[mapref] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\xsl\preprocess\clean-map.xsl
[mapref] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\flowers.ditamap

preprocess:

xhtml.init:

output-css-warn-message:

xhtml.image-metadata-check:

xhtml.image-metadata:

detectIndexerLang:
[echo] Indexer language=en

dita.out.map.webhelp.toc:
[xslt] Transforming into D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\flowers.ditamap to D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\toc.html
[xslt] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp\xsl\dita\map2xhtmtoc.xsl
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\flowers.ditamap to D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\toc.xml
[xslt] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp\xsl\dita\tocDita.xsl
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\flowers.ditamap to D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\context-help-map.xml
[xslt] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp\xsl\dita\contextHelpMapDita.xsl
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\context-help-map.xml to D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\context-help-map.js
[xslt] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp\xsl\dita\contextHelpMapDitaJS.xsl

dita.webhelp.sitemap.xml:

copy-template-resources:

copy-template-resources-custom:

copy-webhelp-responsive-resources:

webhelp-skin-copy-condition:

copy-skin:
[copy] Copying 1 file to D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\oxygen-webhelp\resources\skins

webhelp-favicon-copy-condition:

copy-favicon:

webhelp-custom-resources-copy-condition:

copy-custom-resources:

copy-webhelp-resources:
[copy] Copying 52 files to D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\oxygen-webhelp
[copy] Copying 42 files to D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\oxygen-webhelp\resources\img
[copy] Copying 4 files to D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\oxygen-webhelp\resources\skins

copy-css:

copy-css-user:

dita.topics.html.common:

webhelp-indexterms:
[xslt] Transforming into D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryBulb.dita to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryBulb.dita.indexterms
[xslt] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp\xsl\dita\indexterms\extractIndexterms.xsl
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryCultivar.dita to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryCultivar.dita.indexterms
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryGenus.dita to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryGenus.dita.indexterms
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryPanicle.dita to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryPanicle.dita.indexterms
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryPerennial.dita to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryPerennial.dita.indexterms
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryPollination.dita to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryPollination.dita.indexterms
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryRhizome.dita to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryRhizome.dita.indexterms
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossarySepal.dita to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossarySepal.dita.indexterms
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\tasks\gardenPreparation.dita to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\tasks\gardenPreparation.dita.indexterms
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\tasks\pruning.dita to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\tasks\pruning.dita.indexterms
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\topics\care.dita to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\topics\care.dita.indexterms
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\topics\copyright.dita to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\topics\copyright.dita.indexterms
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\topics\introduction.dita to D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\topics\introduction.dita.indexterms
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\flowers.ditamap to D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\index.xml
[xslt] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp\xsl\dita\indexterms\collectIndexterms.xsl

dita.inner.topics.webhelp:

process.reviews:
[xslt] Transforming into D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryBulb.dita to D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\concepts\glossaryBulb.html
[xslt] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp\xsl\dita\desktop\dita2webhelp.xsl
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryCultivar.dita to D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\concepts\glossaryCultivar.html
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryGenus.dita to D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\concepts\glossaryGenus.html
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryPanicle.dita to D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\concepts\glossaryPanicle.html
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryPerennial.dita to D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\concepts\glossaryPerennial.html
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryPollination.dita to D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\concepts\glossaryPollination.html
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossaryRhizome.dita to D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\concepts\glossaryRhizome.html
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\concepts\glossarySepal.dita to D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\concepts\glossarySepal.html
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\tasks\gardenPreparation.dita to D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\tasks\gardenPreparation.html
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\tasks\pruning.dita to D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\tasks\pruning.html
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\topics\care.dita to D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\topics\care.html
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\topics\copyright.dita to D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\topics\copyright.html
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\topics\introduction.dita to D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\topics\introduction.html

check-image-file-exist:

create-main-files:
[echo] Stylesheet: C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp/xsl/dita/createMainFiles.xsl
[xslt] Processing D:\projects\trunk\eXml\samples\dita\flowers\temp\webhelp\flowers.ditamap to D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\dummy.html
[xslt] Loading stylesheet C:\Users\alin_balasa\Desktop\dita-ot-2.2.3\plugins\com.oxygenxml.webhelp\xsl\dita\createMainFiles.xsl
[xslt] Write indexterm in file: oxygen-webhelp/indexterms.js
[xslt] write index frames in: index_frames.html

check-list:
[copy] Copying 1 file to D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\oxygen-webhelp

webhelp-index:
[echo] Indexing html files in D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp, indexer language is: en
[indexertask] D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp
[indexertask] D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\concepts
[indexertask] D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\images
[indexertask] D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\tasks
[indexertask] D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\topics
[indexertask] D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\topics\flowers
[indexertask] Loaded scores from: indexer/scoring.properties
[indexertask] Generated index files are located in D:\projects\trunk\eXml\samples\dita\flowers\out\webhelp\oxygen-webhelp\search

dita2webhelp-feedback-localization:

dita2webhelp-common:

dita2webhelp:

clean-temp:

BUILD SUCCESSFUL
Total time: 5 seconds
About the debugging possibilities, I think you can use the args.debug=yes DITA-OT debug flag. See: http://www.dita-ot.org/dev/user-guide/e ... -mode.html.