svn commit: r1395298 [27/42] - in /ofbiz/trunk/applications/content/template/docbook: ./ assembly/ assembly/schema/ common/ doc/ docsrc/ eclipse/ epub/ epub/bin/ epub/bin/lib/ epub/bin/xslt/ epub3/ extensions/ fo/ highlighting/ html/ htmlhelp/ images/ ...

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r1395298 [27/42] - in /ofbiz/trunk/applications/content/template/docbook: ./ assembly/ assembly/schema/ common/ doc/ docsrc/ eclipse/ epub/ epub/bin/ epub/bin/lib/ epub/bin/xslt/ epub3/ extensions/ fo/ highlighting/ html/ htmlhelp/ images/ ...

jleroux@apache.org
Added: ofbiz/trunk/applications/content/template/docbook/tools/make/Makefile.DocBook
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/tools/make/Makefile.DocBook?rev=1395298&view=auto
==============================================================================
--- ofbiz/trunk/applications/content/template/docbook/tools/make/Makefile.DocBook (added)
+++ ofbiz/trunk/applications/content/template/docbook/tools/make/Makefile.DocBook Sun Oct  7 13:31:52 2012
@@ -0,0 +1,698 @@
+# $Source$
+# $Author: xmldoc $
+# $Date: 2008-03-03 09:20:29 +0000 (Mon, 03 Mar 2008) $
+# $Revision: 7787 $
+# vim: number
+#
+# -----------------------------------------------------------------
+#  ** Makefile.DocBook -- generate output from DocBook sources **
+# -----------------------------------------------------------------
+#
+#   This file is part of the DocBook Project XSL Stylesheet
+#   distribution.
+#
+#   See http://docbook.sourceforge.net/release/xsl/current/
+#   for copyright and other information.
+
+# DOCBOOK_OUTPUT_FORMATS is the default set of targets (output
+# formats) that get built when you type "make" without any targets
+# explicitly specified. To generate a different set of output
+# formats, change the value of DOCBOOK_OUTPUT_FORMATS here or set
+# it in your environment; for example:
+#
+#   set DOCBOOK_OUTPUT_FORMATS="html pdf"; export DOCBOOK_OUTPUT_FORMATS
+#
+# Of course by explicitly specifying particular targets when you
+# invoke "make", you can always override generation of the default
+# set of targets; for example:
+#
+#   make html txt
+#
+# That would generate just HTML (unchunked) and plain-text output.
+#
+DOCBOOK_OUTPUT_FORMATS ?= xml man man-pdf chunk txt pdf
+
+# If you want XHTML output instead of HTML, set HTML_OR_XHTML to
+# 'xhtml' or just specify 'xhtml" in DOCBOOK_OUTPUT_FORMATS.
+ifeq ($(findstring xhtml,$(DOCBOOK_OUTPUT_FORMATS)),)
+HTML_OR_XHTML ?= html
+else
+HTML_OR_XHTML ?= xhtml
+endif
+
+# if your source is in asciidoc instead of DocBook, set
+# ASCII_OR_DOCBOOK to "ascii"
+ASCII_OR_DOCBOOK ?= docbook
+
+# -----------------------------------------------------------------
+#                *** TOOLS and other DEPENDENCIES ***
+# -----------------------------------------------------------------
+# we use rmdir(1) to remove dirs we create for chunked HTML output
+RMDIR = rmdir
+# "-p" causes empty parent dirs to be deleted as well
+RMDIR_FLAGS = --ignore-fail-on-non-empty -p
+
+# possible values for PDF_MAKER are:
+#   dblatex|fop|xep|xmlroff|passivetex
+PDF_MAKER = dblatex
+
+# possible values for TXT_MAKER are:
+#   links|lynx|w3m|w3mmee
+TXT_MAKER = links
+TXT_MAKER_FLAGS = -dump
+
+# xsl
+XSLT = xsltproc
+XSLT_FLAGS = --xinclude
+
+# http://dblatex.sourceforge.net/
+DBLATEX = dblatex
+DBLATEX_FLAGS = -b pdftex
+
+FOP = fop
+FOP_FLAGS =
+
+XEP = xep
+XEP_FLAGS =
+
+# http://xmlroff.sourceforge.net/
+XMLROFF = xmlroff
+XMLROFF_FLAGS =
+
+PDFTEX = pdftex
+PDFTEX_FLAGS =
+
+# used by PassiveTeX
+PDFXMLTEX = pdfxmltex
+
+# http://docbook2x.sourceforge.net/
+DB2X_XSLTPROC = db2x_xsltproc
+DB2X_XSLTPROC_FLAGS =
+DB2X_TEXIXML = db2x_texixml
+DB2X_TEXIXML_FLAGS =
+
+# we call the man(1) command to generate "foo.N.pdf" and
+# "foo.N.txt" output (see "man-pdf" & "man-txt" targets)
+MAN = man
+MAN_FLAGS =
+
+# The "ps2pdf" command is part of GhostSript (gs) distro.
+# It is just a wrapper script around gs that does this:
+#
+#   gs -dCompatibilityLevel=1.2 -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite \
+#     "-sOutputFile=$outfile" -dCompatibilityLevel=1.2 -c .setpdfwrite -f "$infile"
+#
+# Where, for example: $outfile = foo.pdf and $infile = foo.1
+PS2PDF = ps2pdf
+PS2PDF_FLAGS =
+
+# asciidoc is used to generate DocBook XML from asciidoc source
+ASCIIDOC=asciidoc
+ASCIIDOCFLAGS=
+
+# asciidoc source seems to have DOS line endings, so we use
+# DOS2UNIX to be able to grep them correctly
+DOS2UNIX=dos2unix
+DOS2UNIXFLAGS=
+
+# The "col" command is needed for stripping backspaces and
+# underscores from man(1) output to get pure plain-text
+COL = col
+COL_FLAGS =
+
+# The "expand" command is needed for expanding tabs from files
+# generated from "man foo.1 | col -b" output
+# output to get pure plain-text
+EXPAND = expand
+EXPAND_FLAGS =
+
+# value of DOCBOOK_XSL should either be the canonical
+# (docbook.sourceforge.net) URL for the DocBook Project XSL
+# stylesheets OR it can be a local system path
+DOCBOOK_XSL = http://docbook.sourceforge.net/release/xsl/current
+
+# -----------------------------------------------------------------
+#       names of some DIRECTORIES and FILES we need
+# -----------------------------------------------------------------
+# We create a tmp directory once per make invocation; it's needed
+# for holding a temporary copy of the custom DBLaTeX stylesheet
+# (because dblatex currently can't read a stylesheet from stdin)
+TMP ?= /tmp
+TMPNUM := $(shell echo $$$$)
+DOCBOOK_TMP := $(TMP)/docbook-make-$(TMPNUM)
+
+# MAN_MANIFEST_EXT is file extension added to individual manifest
+# files
+MAN_MANIFEST_EXT = manifest_man
+
+# HTML_MANIFEST_EXT is file extension added to HTML manifest files
+HTML_MANIFEST_EXT = manifest_html
+
+# BASEDIR_SUFFIX is a what you need to set if you want a suffix
+# added to the end of each "base.dir" we create while generating
+# chunked HTML output
+#BASEDIR_SUFFIX = -html
+#BASEDIR_SUFFIX = _html
+BASEDIR_SUFFIX =
+
+# -----------------------------------------------------------------
+#                        assorted OPTIONS
+# -----------------------------------------------------------------
+# HTML_STYLESHEET -> $html.stylesheet stylesheet param
+# http://docbook.sourceforge.net/snapshots/xsl/doc/html/html.stylesheet.html
+HTML_STYLESHEET = style.css
+# HTML_IMAGES -> $admon.graphics.path
+# http://docbook.sourceforge.net/snapshots/xsl/doc/html/admon.graphics.path.html
+HTML_IMAGES = images/
+# HTML_IMAGES_EXT -> $admon.graphics.extension
+# http://docbook.sourceforge.net/snapshots/xsl/doc/html/admon.graphics.extension.html
+HTML_IMAGES_EXT = .png
+
+# use these to set params on the command-line
+# format is, e.g., HTML_PARAMS="--stringparam variablelist.as.table 1..."
+FO_PARAMS =
+HTML_PARAMS =
+MAN_PARAMS =
+
+# DBX_PARAMS is for dblatex(1); format uses "-p":
+# DBX_PARAMS="-p doc.publisher.show 1 -p term.breakline 1...
+DBX_PARAMS=
+
+# What file extension do you use for DocBook source files?
+DOCBOOK_FILE_EXTENSION = .xml
+
+# -----------------------------------------------------------------
+#       make(1) functions for building file lists
+# -----------------------------------------------------------------
+#
+#    the values of the following are used for determing what needs
+#    to be built and/or cleaned up
+
+ifeq ($(ASCII_OR_DOCBOOK),docbook)
+SOURCE_FILES_DBK = $(wildcard *$(DOCBOOK_FILE_EXTENSION))
+else
+SOURCE_FILES_DBK = $(foreach base,$(basename $(wildcard *.txt)),$(base)$(DOCBOOK_FILE_EXTENSION))
+endif
+
+FILES_FO   = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).fo)
+FILES_TXT  = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).out.txt)
+FILES_PDF  = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).pdf)
+FILES_LOG  = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).log)
+FILES_OUT  = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).out)
+FILES_AUX  = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).aux)
+FILES_HTML = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).html)
+FILES_INFO = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).info)
+DIRS_CHUNK = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base)$(BASEDIR_SUFFIX))
+LISTS_HTML = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).$(HTML_MANIFEST_EXT))
+LISTS_MAN  = $(foreach base,$(basename $(SOURCE_FILES_DBK)),$(base).$(MAN_MANIFEST_EXT))
+FILES_CHNK = $(shell for manifest in $(LISTS_HTML); do if [ -f "$$manifest" ]; then cat $$manifest; fi done)
+FILES_MAN  = $(shell for manifest in $(LISTS_MAN);  do if [ -f "$$manifest" ]; then cat $$manifest; fi done)
+FILES_MANP = $(foreach base,$(FILES_MAN),$(base).man.pdf)
+FILES_MANT = $(foreach base,$(FILES_MAN),$(base).out.txt)
+DIRS_MAN   = $(shell for file in $(FILES_MAN); do dirname $$file; done | uniq)
+
+# -----------------------------------------------------------------
+#   ** stylesheet for testing whether a file has a refentry
+# -----------------------------------------------------------------
+REFENTRY_CHECK := <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" \
+                version="1.0" \
+                xmlns:db="http://docbook.org/ns/docbook" \
+                > \
+  <xsl:output method="text"/> \
+  <xsl:template match="/"> \
+    <xsl:if test="//refentry|//db:refentry"> \
+      <xsl:text>true</xsl:text> \
+    </xsl:if> \
+  </xsl:template> \
+</xsl:stylesheet>
+
+# -----------------------------------------------------------------
+#             ** Stylesheet Customization Layers **
+# -----------------------------------------------------------------
+#
+# for DBLaTeX
+DBX_CUSTOM := <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" \
+                 version="1.0"> \
+  <xsl:param name="co.linkends.show">0</xsl:param> \
+  <xsl:param name="callout.markup.circled">1</xsl:param> \
+  <xsl:param name="callout.linkends.hot">0</xsl:param> \
+  <xsl:param name="doc.publisher.show">1</xsl:param> \
+  <xsl:param name="term.breakline">1</xsl:param> \
+  <xsl:param name="doc.alignment">left</xsl:param> \
+  <xsl:param name="newtbl.use">1</xsl:param> \
+  <xsl:param name="latex.hyperparam"/> \
+  <xsl:param name="latex.style">docbook</xsl:param> \
+  <xsl:param name="latex.biblio.output">all</xsl:param> \
+  <xsl:param name="latex.bibfiles">""</xsl:param> \
+  <xsl:param name="latex.bibwidelabel">WIDELABEL</xsl:param> \
+  <xsl:param name="latex.output.revhistory">0</xsl:param> \
+  <xsl:param name="latex.figure.position">[htbp]</xsl:param> \
+  <xsl:param name="latex.figure.boxed">0</xsl:param> \
+  <xsl:param name="latex.babel.use">1</xsl:param> \
+  <xsl:param name="latex.babel.language"></xsl:param> \
+  <xsl:param name="latex.class.options">twoside</xsl:param> \
+  <xsl:param name="biblioentry.item.separator">, </xsl:param> \
+  <xsl:param name="refentry.xref.manvolnum">1</xsl:param> \
+  <xsl:param name="refsynopsis.title">Synopsis</xsl:param> \
+  <xsl:param name="refnamediv.title"></xsl:param> \
+  <xsl:param name="funcsynopsis.style">ansi</xsl:param> \
+  <xsl:param name="funcsynopsis.decoration">1</xsl:param> \
+  <xsl:param name="function.parens">0</xsl:param> \
+  <xsl:param name="classsynopsis.default.language">java</xsl:param> \
+  <xsl:param name="show.comments">0</xsl:param> \
+</xsl:stylesheet>
+
+# for FO output
+FO_CUSTOM := <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" \
+                xmlns:fo="http://www.w3.org/1999/XSL/Format" \
+                version="1.0"> \
+  <xsl:import href="$(DOCBOOK_XSL)/fo/docbook.xsl"/> \
+  <xsl:param name="$(PDF_MAKER).extensions">1</xsl:param> \
+  <xsl:param name="paper.type">A4</xsl:param> \
+  <xsl:param name="draft.watermark.image"></xsl:param> \
+  <xsl:param name="hyphenation">false</xsl:param> \
+  <xsl:param name="hyphenate.verbatim">1</xsl:param> \
+  <xsl:param name="alignment">left</xsl:param> \
+  <xsl:param name="refentry.generate.name">1</xsl:param> \
+  <xsl:param name="refentry.generate.title">0</xsl:param> \
+  <xsl:param name="refentry.pagebreak">1</xsl:param> \
+  <xsl:param name="shade.verbatim">1</xsl:param> \
+  <xsl:param name="variablelist.as.blocks">1</xsl:param> \
+  <xsl:param name="ulink.show">1</xsl:param> \
+  <xsl:param name="ulink.footnotes">1</xsl:param> \
+  <xsl:param name="index.on.type">1</xsl:param> \
+  <xsl:attribute-set name="xref.properties"> \
+    <xsl:attribute name="color">blue</xsl:attribute> \
+  </xsl:attribute-set> \
+  <xsl:attribute-set name="shade.verbatim.style"> \
+    <xsl:attribute name="background-color">\#E0E0E0</xsl:attribute> \
+    <xsl:attribute name="padding-left">4pt</xsl:attribute> \
+    <xsl:attribute name="padding-right">4pt</xsl:attribute> \
+    <xsl:attribute name="padding-top">4pt</xsl:attribute> \
+    <xsl:attribute name="padding-bottom">4pt</xsl:attribute> \
+  </xsl:attribute-set> \
+  <xsl:attribute-set name="section.title.level1.properties"> \
+    <xsl:attribute name="font-size"> \
+      <xsl:value-of select="$$body.font.master * 1.5"></xsl:value-of> \
+      <xsl:text>pt</xsl:text> \
+    </xsl:attribute> \
+  </xsl:attribute-set> \
+  <xsl:attribute-set name="section.title.level2.properties"> \
+    <xsl:attribute name="font-size"> \
+      <xsl:value-of select="$$body.font.master * 1.3"></xsl:value-of> \
+      <xsl:text>pt</xsl:text> \
+    </xsl:attribute> \
+  </xsl:attribute-set> \
+  <xsl:attribute-set name="section.title.level3.properties"> \
+    <xsl:attribute name="font-size"> \
+      <xsl:value-of select="$$body.font.master * 1.1"></xsl:value-of> \
+      <xsl:text>pt</xsl:text> \
+    </xsl:attribute> \
+  </xsl:attribute-set> \
+  <xsl:attribute-set name="section.title.level4.properties"> \
+    <xsl:attribute name="font-size"> \
+      <xsl:value-of select="$$body.font.master"></xsl:value-of> \
+      <xsl:text>pt</xsl:text> \
+    </xsl:attribute> \
+  </xsl:attribute-set> \
+  <xsl:attribute-set name="component.title.properties"> \
+    <xsl:attribute name="font-size"> \
+      <xsl:value-of select="$$body.font.master * 1.5"></xsl:value-of> \
+      <xsl:text>pt</xsl:text> \
+    </xsl:attribute> \
+  </xsl:attribute-set> \
+  <xsl:attribute-set name="monospace.verbatim.properties"> \
+    <xsl:attribute name="wrap-option">wrap</xsl:attribute> \
+    <xsl:attribute name="hyphenation-character">\</xsl:attribute> \
+    <xsl:attribute name="font-size"> \
+      <xsl:value-of select="$$body.font.master * 0.8"></xsl:value-of> \
+      <xsl:text>pt</xsl:text> \
+    </xsl:attribute> \
+  </xsl:attribute-set> \
+</xsl:stylesheet>
+
+# for single-file (X)HTML outpout
+HTML_CUSTOM := <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" \
+                version="1.0"> \
+  <xsl:import href="$(DOCBOOK_XSL)/$(HTML_OR_XHTML)/docbook.xsl"/> \
+  <xsl:param name="gentext.custom">local.l10n.xml</xsl:param> \
+  <xsl:param name="local.l10n.xml" select="document($$gentext.custom)"/> \
+  <xsl:param name="refentry.generate.name">1</xsl:param> \
+  <xsl:param name="refentry.generate.title">0</xsl:param> \
+  <xsl:param name="root.filename"></xsl:param> \
+  <xsl:param name="variablelist.as.table">0</xsl:param> \
+  <xsl:param name="html.stylesheet">$(HTML_STYLESHEET)</xsl:param> \
+  <xsl:param name="admon.graphics">0</xsl:param> \
+  <xsl:param name="index.on.type">1</xsl:param> \
+</xsl:stylesheet>
+
+# for chunked (X)HTML output
+CHNK_CUSTOM := <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" \
+                version="1.0"> \
+  <xsl:import href="$(DOCBOOK_XSL)/$(HTML_OR_XHTML)/chunk.xsl"/> \
+  <xsl:param name="refentry.generate.name">0</xsl:param> \
+  <xsl:param name="refentry.generate.title">1</xsl:param> \
+  <xsl:param name="variablelist.as.table">0</xsl:param> \
+  <xsl:param name="html.stylesheet">$(HTML_STYLESHEET)</xsl:param> \
+  <xsl:param name="admon.graphics">1</xsl:param> \
+  <xsl:param name="admon.graphics.path">$(HTML_IMAGES)</xsl:param> \
+  <xsl:param name="admon.graphics.extension">$(HTML_IMAGES_EXT)</xsl:param> \
+  <xsl:param name="root.filename"></xsl:param> \
+  <xsl:param name="generate.manifest">1</xsl:param> \
+  <xsl:param name="use.id.as.filename">1</xsl:param> \
+  <xsl:param name="chunker.output.indent">yes</xsl:param> \
+  <xsl:param name="index.on.type">1</xsl:param> \
+</xsl:stylesheet>
+
+# for man-page output
+MAN_CUSTOM := <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" \
+                version="1.0"> \
+  <xsl:import href="$(DOCBOOK_XSL)/manpages/docbook.xsl"/> \
+  <xsl:param name="man.output.manifest.enabled" select="1"/> \
+  <xsl:param name="man.output.in.separate.dir" select="1"/> \
+  <xsl:param name="man.output.base.dir">man/</xsl:param> \
+  <xsl:param name="man.output.subdirs.enabled" select="1"/> \
+</xsl:stylesheet>
+
+# -----------------------------------------------------------------
+#                  ** TARGETS START HERE **
+# -----------------------------------------------------------------
+#  prevents make from deleting, e.g. foo.1, after making foo.1.pdf
+#  and foo.1.txt from it.
+.PRECIOUS: %.1 %.2 %.3 %.4 %.5 %.6 %.7 %.8 %.9
+
+docbook: $(DOCBOOK_OUTPUT_FORMATS)
+
+xml: $(SOURCE_FILES_DBK)
+
+man: $(LISTS_MAN)
+
+# we can generate PDFs from man pages
+man-pdf: man
+ $(MAKE) $(FILES_MANP)
+
+# we can generate plain text from man pages
+man-txt: man
+ $(MAKE) $(FILES_MANT)
+
+html: $(FILES_HTML)
+
+chunk: $(LISTS_HTML)
+
+txt: $(FILES_TXT)
+
+pdf: $(FILES_PDF)
+
+info: $(FILES_INFO)
+
+# use the "debug" target to echo variables, etc., to
+# test/troubleshoot changes you make to this makefile
+debug:
+ echo $(wildcard *$(DOCBOOK_FILE_EXTENSION))
+ echo $(ASCII_OR_DOCBOOK)
+ echo $(SOURCE_FILES_DBK)
+
+# -----------------------------------------------------------------
+#     pattern rule to make DocBook refentry from asciidoc source
+# -----------------------------------------------------------------
+%.1$(DOCBOOK_FILE_EXTENSION): %.1.txt
+ $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $<
+
+%.2$(DOCBOOK_FILE_EXTENSION): %.2.txt
+ $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $<
+
+%.3$(DOCBOOK_FILE_EXTENSION): %.3.txt
+ $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $<
+
+%.4$(DOCBOOK_FILE_EXTENSION): %.4.txt
+ $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $<
+
+%.5$(DOCBOOK_FILE_EXTENSION): %.5.txt
+ $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $<
+
+%.6$(DOCBOOK_FILE_EXTENSION): %.6.txt
+ $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $<
+
+%.7$(DOCBOOK_FILE_EXTENSION): %.7.txt
+ $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $<
+
+%.8$(DOCBOOK_FILE_EXTENSION): %.8.txt
+ $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $<
+
+%.9$(DOCBOOK_FILE_EXTENSION): %.9.txt
+ $(ASCIIDOC) $(ASCIIDOCFLAGS) -d manpage -b docbook $<
+
+# -----------------------------------------------------------------
+#     pattern rule to make DocBook article from asciidoc source
+# -----------------------------------------------------------------
+%$(DOCBOOK_FILE_EXTENSION): %.txt
+ export LINECOUNT1=$$(cat $< | $(DOS2UNIX) $(DOS2UNIXFLAGS) | egrep "^=+$$" | wc -l); \
+ export LINECOUNT2=$$(cat $< | $(DOS2UNIX) $(DOS2UNIXFLAGS) | egrep "^= $$" | wc -l); \
+ if [[ $$LINECOUNT1 > 1 || $$LINECOUNT2 > 1 ]]; then \
+ $(ASCIIDOC) $(ASCIIDOCFLAGS) -d book -b docbook $<; \
+ else \
+ $(ASCIIDOC) $(ASCIIDOCFLAGS) -b docbook $<; \
+ fi
+
+# -----------------------------------------------------------------
+#     pattern rule for making (X)HTML and plain-text output
+# -----------------------------------------------------------------
+%.html: %$(DOCBOOK_FILE_EXTENSION)
+ @echo '$(HTML_CUSTOM)' | $(XSLT) $(XSLT_FLAGS) $(HTML_PARAMS) - $< > $@
+
+%.out.txt: %.html
+ $(TXT_MAKER) $(TXT_MAKER_FLAGS) ./$< \
+  | sed "s/^\(\s\+[0-9]\+\. \)file:\/\/.\+$$/\\1(local)/g" \
+  | egrep -v '^ file:///.+$$' \
+  > $@
+# if DOCBOOK_OUTPUT_FORMATS does not contain "html", then we need
+# to remove the "intermediate" HTML files we used for generating
+# plain-text output
+ifeq ($(findstring html,$(DOCBOOK_OUTPUT_FORMATS)),)
+ $(RM) $<
+endif
+
+# -----------------------------------------------------------------
+#     pattern rule for making chunked (X)HTML pages
+# -----------------------------------------------------------------
+%.$(HTML_MANIFEST_EXT): %$(DOCBOOK_FILE_EXTENSION)
+ @echo '$(CHNK_CUSTOM)' | $(XSLT) $(XSLT_FLAGS) $(HTML_PARAMS) \
+ --stringparam manifest $@  \
+ --stringparam base.dir $(basename $@)$(BASEDIR_SUFFIX)/  \
+ - $<
+
+# -----------------------------------------------------------------
+#     pattern rules for making FO and PDF stuff
+# -----------------------------------------------------------------
+%.fo: %$(DOCBOOK_FILE_EXTENSION)
+ @echo '$(FO_CUSTOM)' \
+  | $(XSLT) $(XSLT_FLAGS) $(FO_PARAMS) - $< > $@
+
+ifeq ($(PDF_MAKER),dblatex)
+%.pdf: %$(DOCBOOK_FILE_EXTENSION)
+ mkdir -p $(DOCBOOK_TMP)
+ echo '$(DBX_CUSTOM)' > $(DOCBOOK_TMP)/dblatex.xsl
+ -$(DBLATEX) $(DBLATEX_FLAGS)\
+  -p $(DOCBOOK_TMP)/dblatex.xsl \
+  -o $@ \
+  $<
+ $(RM) -r $(DOCBOOK_TMP)
+endif
+
+%.pdf: %.fo
+ifeq ($(PDF_MAKER),)
+ $(error No PDF_MAKER specified. Cannot make pdf)
+else
+ifeq ($(PDF_MAKER),xep)
+ $(XEP) $(XEP_FLAGS) $< $@
+else
+ifeq ($(PDF_MAKER),fop)
+ $(FOP) $(FOP_FLAGS) $< $@
+else
+ifeq ($(PDF_MAKER),xmlroff)
+ $(XMLROFF) $(XMLROFF_FLAGS) $< -o $@
+else
+ifeq ($(PDF_MAKER),passivetex)
+ $(PDFTEX) $(PDFTEX_FLAGS) &$(PDFXMLTEX) $<
+ @if [ `egrep Rerun $(basename $@).log | wc -l` -gt 0 ]; then \
+ $(PDFTEX) $(PDFTEX_FLAGS) &$(PDFXMLTEX) $< ; \
+ fi
+ @if [ `egrep Rerun $(basename $@).log | wc -l` -gt 0 ]; then \
+ $(PDFTEX) $(PDFTEX_FLAGS) &$(PDFXMLTEX) $< ; \
+ fi
+ $(RM) $(basename $@).log
+ $(RM) $(basename $@).aux
+ $(RM) $(basename $@).out
+else
+ $(error I do not know how to make a PDF using "$(PDF_MAKER)")
+endif
+endif
+endif
+endif
+endif
+
+# -----------------------------------------------------------------
+#     pattern rules for making TeXinfo stuff
+# -----------------------------------------------------------------
+%.txml: %$(DOCBOOK_FILE_EXTENSION)
+ $(DB2X_XSLTPROC) $(DB2X_XSLTPROC_FLAGS) -s texi -o $@ $<
+
+%.texi: %.txml
+ $(DB2X_TEXIXML) $(DB2X_TEXIXML_FLAGS) $<
+
+# the following is actually a built-in rule, but it's redefined
+# here just for the sake of clarity
+%.info: %.texi
+ $(MAKEINFO) $(MAKEINFO_FLAGS) $< -o $@
+
+# -----------------------------------------------------------------
+#     pattern rule for making man pages
+# -----------------------------------------------------------------
+%.$(MAN_MANIFEST_EXT): %$(DOCBOOK_FILE_EXTENSION)
+ @if [ "$(strip $(shell echo '$(REFENTRY_CHECK)' | $(XSLT) $(XSLT_FLAGS) - $<))" != "true" ]; then \
+  touch $@; \
+ else \
+  echo '$(MAN_CUSTOM)' \
+  | $(XSLT) $(XSLT_FLAGS) $(MAN_PARAMS) \
+    --stringparam man.output.manifest.filename $@ \
+    - $<; \
+ fi
+
+# -----------------------------------------------------------------
+#  pattern rule for enabling direct "make foo.1" to work
+# -----------------------------------------------------------------
+
+%.1 %.2 %.3 %.4 %.5 %.6 %.7: %.xml
+ $(MAKE) $(basename $<).$(MAN_MANIFEST_EXT)
+
+# -----------------------------------------------------------------
+#  pattern rules for making Postscript/PDF output from man pages
+# -----------------------------------------------------------------
+%.1.man.ps: %.1
+ $(MAN) -l $(MAN_FLAGS) -Tps $< > $@
+
+%.2.man.ps: %.2
+ $(MAN) -l $(MAN_FLAGS) -Tps $< > $@
+
+%.3.man.ps: %.3
+ $(MAN) -l $(MAN_FLAGS) -Tps $< > $@
+
+%.4.man.ps: %.4
+ $(MAN) -l $(MAN_FLAGS) -Tps $< > $@
+
+%.5.man.ps: %.5
+ $(MAN) -l $(MAN_FLAGS) -Tps $< > $@
+
+%.6.man.ps: %.6
+ $(MAN) -l $(MAN_FLAGS) -Tps $< > $@
+
+%.7.man.ps: %.7
+ $(MAN) -l $(MAN_FLAGS) -Tps $< > $@
+
+%.8.man.ps: %.8
+ $(MAN) -l $(MAN_FLAGS) -Tps $< > $@
+
+%.9.man.ps: %.9
+ $(MAN) -l $(MAN_FLAGS) -Tps $< > $@
+
+# -----------------------------------------------------------------
+#  pattern rule for converting Postscript to PDF
+# -----------------------------------------------------------------
+%.pdf: %.ps
+ $(PS2PDF) $(PS2PDF_FLAGS) $<
+
+# -----------------------------------------------------------------
+#  pattern rules for making plain-text output from man pages
+# -----------------------------------------------------------------
+%.1.out.txt: %.1
+ $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@
+
+%.2.out.txt: %.2
+ $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@
+
+%.3.out.txt: %.3
+ $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@
+
+%.4.out.txt: %.4
+ $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@
+
+%.5.out.txt: %.5
+ $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@
+
+%.6.out.txt: %.6
+ $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@
+
+%.7.out.txt: %.7
+ $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@
+
+%.8.out.txt: %.8
+ $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@
+
+%.9.out.txt: %.9
+ $(MAN) -l $(MAN_FLAGS) -Tascii $< | $(COL) -b $(COL_FLAGS) | $(EXPAND) $(EXPAND_FLAGS) > $@
+
+# -----------------------------------------------------------------
+#   target(s) for cleaning up the mess
+# -----------------------------------------------------------------
+clean:
+ifneq ($(FILES_TXT),)
+ $(RM) $(FILES_TXT)
+endif
+ifneq ($(FILES_PDF),)
+ $(RM) $(FILES_PDF)
+endif
+ifneq ($(FILES_FO),)
+ $(RM) $(FILES_FO)
+endif
+ifneq ($(FILES_LOG),)
+ $(RM) $(FILES_LOG)
+endif
+ifneq ($(FILES_OUT),)
+ $(RM) $(FILES_OUT)
+endif
+ifneq ($(FILES_AUX),)
+ $(RM) $(FILES_AUX)
+endif
+ifneq ($(FILES_HTML),)
+ $(RM) $(FILES_HTML)
+endif
+ifneq ($(FILES_CHNK),)
+ $(RM) $(FILES_CHNK)
+endif
+ifneq ($(FILES_MAN),)
+ $(RM) $(FILES_MAN)
+endif
+ifneq ($(FILES_MANT),)
+ $(RM) $(FILES_MANT)
+endif
+ifneq ($(FILES_MANP),)
+ $(RM) $(FILES_MANP)
+endif
+ifneq ($(FILES_INFO),)
+ $(RM) $(FILES_INFO)
+endif
+ifneq ($(DIRS_CHUNK),)
+ for dir in $(DIRS_CHUNK); do \
+  if [ -d "$$dir" ]; then \
+    $(RMDIR) $(RMDIR_FLAGS) $$dir; \
+  fi \
+ done
+endif
+ifneq ($(DIRS_MAN),)
+ifneq ($(DIRS_MAN),.)
+ for dir in $(DIRS_MAN); do \
+  if [ -d "$$dir" ]; then \
+    $(RMDIR) $(RMDIR_FLAGS) $$dir; \
+  fi \
+ done
+endif
+endif
+ifneq ($(LISTS_MAN),)
+ $(RM) $(LISTS_MAN)
+endif
+ifneq ($(LISTS_HTML),)
+ $(RM) $(LISTS_HTML)
+endif
+ifneq ($(ASCII_OR_DOCBOOK),docbook)
+ $(RM) -i $(SOURCE_FILES_DBK)
+endif

Added: ofbiz/trunk/applications/content/template/docbook/tools/make/Makefile.combine
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/tools/make/Makefile.combine?rev=1395298&view=auto
==============================================================================
--- ofbiz/trunk/applications/content/template/docbook/tools/make/Makefile.combine (added)
+++ ofbiz/trunk/applications/content/template/docbook/tools/make/Makefile.combine Sun Oct  7 13:31:52 2012
@@ -0,0 +1,182 @@
+# $Source$
+# $Author: xmldoc $
+# $Date: 2007-03-05 06:28:18 +0000 (Mon, 05 Mar 2007) $
+# $Revision: 6666 $
+# vim: number
+#
+# -----------------------------------------------------------------
+#  ** Makefile.combine -- combine source files **
+# -----------------------------------------------------------------
+#
+#   This file is part of the DocBook Project XSL Stylesheet
+#   distribution.
+#
+#   See http://docbook.sourceforge.net/release/xsl/current/
+#   for copyright and other information.
+#
+# This makefile creates "wrapper" files that combine sets of
+# individual DocBook source files. The purpose of combining the
+# files is to speed up processing time. By default it puts 20
+# files into each wrapper. Use CHUNKSIZE to configure the number
+# of files per wrapper.
+#
+# Currently, this makefile has only a "man" target and is mainly
+# intended to speed up processing of large numbers of individual
+# refentry instances.
+
+# What file extension do you use for DocBook source files?
+DOCBOOK_FILE_EXTENSION = .xml
+SOURCE_FILES_DBK = $(wildcard *$(DOCBOOK_FILE_EXTENSION))
+
+MAKEFILE_DOCBOOK = Makefile.DocBook
+
+XSLTPROC=xsltproc
+XSLTPROC_FLAGS=
+
+SED=sed
+SED_FLAGS=-i
+
+CHUNKSIZE ?= 20
+
+WRAPPER_ELEMENT = reference
+WRAPPER_TITLE=Combined contents
+
+COMBINE_XSL = <?xml version="1.0"?> \
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" \
+                xmlns:exsl="http://exslt.org/common" \
+                xmlns:xi="http://www.w3.org/2001/XInclude" \
+                exclude-result-prefixes="exsl xi" \
+                extension-element-prefixes="exsl" \
+                version="1.0"> \
+  <xsl:param name="files"/> \
+  <xsl:param name="chunk.size"/> \
+  <xsl:template match="/"> \
+    <xsl:call-template name="make.file"/> \
+  </xsl:template> \
+ \
+  <xsl:template name="make.file"> \
+    <xsl:param name="count" select="1"/> \
+    <xsl:param name="current.files" select="concat(normalize-space($$files), ^^ ^^)"/> \
+    <xsl:param name="more.files" \
+               select="concat(normalize-space(substring-after($$current.files, ^^ ^^)),^^ ^^)"/> \
+    <xsl:param name="file.number" select="1"/> \
+    <xsl:param name="filename" select="concat(^^./build/^^,$$file.number,^^.xml^^)"/> \
+ \
+    <xsl:choose> \
+      <xsl:when test="$$more.files = ^^ ^^"/> \
+      <xsl:when test="$$count mod $$chunk.size = 0"> \
+        <xsl:variable name="fileset" select="concat($$current.files, ^^ ^^, \
+          substring-before($$more.files, ^^ ^^))"/> \
+        <exsl:document href="{$$filename}" \
+                       method="xml" \
+                       encoding="UTF-8" \
+                       indent="yes" \
+                       omit-xml-declaration="yes" \
+                       media-type="" \
+                       standalone="no"> \
+          <$(WRAPPER_ELEMENT)> \
+            <title>$(WRAPPER_TITLE)</title> \
+            <xsl:call-template name="make.xinclude"> \
+              <xsl:with-param name="file"> \
+                <xsl:choose> \
+                  <xsl:when test="contains($$fileset, ^^ ^^)"> \
+                    <xsl:value-of \
+                        select="normalize-space(substring-before($$fileset, ^^ ^^))"/> \
+                  </xsl:when> \
+                  <xsl:otherwise> \
+                    <xsl:value-of select="$$fileset"/> \
+                  </xsl:otherwise> \
+                </xsl:choose> \
+              </xsl:with-param> \
+              <xsl:with-param \
+                  name="remaining.files" \
+                  select="concat(normalize-space(substring-after($$fileset, ^^ ^^)),^^ ^^)"/> \
+            </xsl:call-template> \
+          </$(WRAPPER_ELEMENT)> \
+        </exsl:document> \
+        <xsl:call-template name="make.file"> \
+          <xsl:with-param name="count" select="1"/> \
+          <xsl:with-param name="current.files"  \
+                          select="$$more.files"/> \
+          <xsl:with-param name="file.number" select="number($$file.number) + 1"/> \
+          <xsl:with-param name="filename" select="concat(^^./build/^^,$$file.number,^^.xml^^)"/> \
+        </xsl:call-template> \
+      </xsl:when> \
+      <xsl:otherwise> \
+        <xsl:call-template name="make.file"> \
+          <xsl:with-param name="count" select="$$count + 1"/> \
+          <xsl:with-param name="current.files"> \
+            <xsl:choose> \
+              <xsl:when test="$$count = 1 and $$file.number = 1"> \
+                <xsl:value-of  \
+                    select="concat(substring-before($$current.files, ^^ ^^), \
+                            ^^ ^^, \
+                            substring-before($$more.files, ^^ ^^))"/> \
+              </xsl:when> \
+              <xsl:when test="$$count = 1"> \
+                <xsl:value-of  \
+                    select="substring-before($$more.files, ^^ ^^)"/> \
+              </xsl:when> \
+              <xsl:otherwise> \
+                <xsl:value-of  \
+                    select="concat($$current.files, ^^ ^^, \
+                            substring-before($$more.files, ^^ ^^))"/> \
+              </xsl:otherwise> \
+            </xsl:choose> \
+          </xsl:with-param> \
+          <xsl:with-param name="more.files" \
+                          select="substring-after($$more.files, ^^ ^^)"/> \
+          <xsl:with-param name="file.number" select="$$file.number"/> \
+        </xsl:call-template> \
+      </xsl:otherwise> \
+    </xsl:choose> \
+  </xsl:template> \
+ \
+  <xsl:template name="make.xinclude"> \
+    <xsl:param name="file"/> \
+    <xsl:param name="remaining.files"/> \
+    <xsl:param name="count" select="1"/> \
+    <xsl:if test="not($$file = ^^^^)"> \
+      <xi:include href="../{$$file}"/> \
+      <xsl:call-template name="make.xinclude"> \
+        <xsl:with-param \
+            name="file" \
+            select="substring-before($$remaining.files, ^^ ^^)"/> \
+        <xsl:with-param \
+            name="remaining.files" \
+            select="substring-after($$remaining.files, ^^ ^^)"/> \
+        <xsl:with-param name="count" select="$$count + 1"/> \
+      </xsl:call-template> \
+    </xsl:if> \
+  </xsl:template> \
+ \
+</xsl:stylesheet>
+
+all: man
+
+man: build/man
+
+build/Makefile:
+ if [ ! -d build ]; then mkdir build; fi
+ cp $(MAKEFILE_DOCBOOK) $@
+
+combine.xsl: Makefile
+ @echo '$(COMBINE_XSL)' > $@
+ $(SED) $(SED_FLAGS) "s/\^\^/'/g" $@
+
+build/1.xml: combine.xsl
+ $(XSLTPROC) $(XSLTPROC_FLAGS) \
+ --stringparam files "$(SOURCE_FILES_DBK)" \
+ --stringparam chunk.size $(CHUNKSIZE) \
+ $< $<
+
+build/man: build/Makefile build/1.xml
+ time $(MAKE) -C build man \
+ MAN_PARAMS="--stringparam man.output.quietly 1 \
+   --stringparam refentry.meta.get.quietly 1 \
+   --stringparam man.charmap.enabled 0"
+
+debug:
+
+clean:
+ $(RM) -r build

Added: ofbiz/trunk/applications/content/template/docbook/tools/make/Makefile.docParam
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/tools/make/Makefile.docParam?rev=1395298&view=auto
==============================================================================
--- ofbiz/trunk/applications/content/template/docbook/tools/make/Makefile.docParam (added)
+++ ofbiz/trunk/applications/content/template/docbook/tools/make/Makefile.docParam Sun Oct  7 13:31:52 2012
@@ -0,0 +1,59 @@
+# $Source$
+# $Author: xmldoc $
+# $Date: 2007-03-23 21:57:22 +0000 (Fri, 23 Mar 2007) $
+# $Revision: 6759 $
+# vim: number
+#
+# ------------------------------------------------------------------
+#  ** Makefile.paramDoc - create param.xsl files w/ embedded doc **
+# ------------------------------------------------------------------
+
+PARAMFILES = $(wildcard ../../*/param.xsl)
+PARAMFILESDOCD = $(foreach base,$(basename $(PARAMFILES)),$(base).docd.xsl)
+
+XSLT=xsltproc
+XSLTFLAGS=
+
+COPYDOC := <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" \
+                xmlns:doc="http://docbook.org/ns/docbook" \
+                version="1.0"> \
+  <xsl:template match="*[local-name() = &apos;param&apos;]"> \
+    <xsl:call-template name="copy-xsl-source"/> \
+  </xsl:template> \
+  <xsl:template match="*[local-name() = &apos;attribute-set&apos;]"> \
+    <xsl:call-template name="copy-xsl-source"/> \
+  </xsl:template> \
+  <xsl:template name="copy-xsl-source"> \
+    <xsl:variable \
+        name="source" \
+        select="concat(&apos;../../params/&apos;,@name,&apos;.xml&apos;)"/> \
+    <xsl:apply-templates select="document($$source)/*[local-name() = &apos;refentry&apos;]"/> \
+    <xsl:copy> \
+      <xsl:apply-templates select="@* | node()"/> \
+    </xsl:copy> \
+  </xsl:template> \
+  <xsl:template match="node() | @*"> \
+    <xsl:copy> \
+      <xsl:apply-templates select="@* | node()"/> \
+    </xsl:copy> \
+  </xsl:template> \
+  <xsl:template match="*[local-name() = &apos;refentry&apos;]"> \
+    <xsl:text>&\#x0a;</xsl:text> \
+    <doc:refentry id="{@*[local-name() = &apos;id&apos;]}"> \
+      <xsl:apply-templates/> \
+    </doc:refentry> \
+    <xsl:text>&\#x0a;</xsl:text> \
+  </xsl:template> \
+  <xsl:template match="*[local-name() = &apos;refsynopsisdiv&apos;]"/> \
+</xsl:stylesheet>
+
+all: $(PARAMFILESDOCD)
+
+%.docd.xsl: %.xsl
+ @echo '$(COPYDOC)' | $(XSLT) $(XSLTFLAGS) - $< > $@
+
+debug:
+ @echo $(PARAMFILESDOCD)
+
+clean:
+ $(RM) $(PARAMFILESDOCD)

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/LICENSE
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/LICENSE?rev=1395298&view=auto
==============================================================================
--- ofbiz/trunk/applications/content/template/docbook/webhelp/LICENSE (added)
+++ ofbiz/trunk/applications/content/template/docbook/webhelp/LICENSE Sun Oct  7 13:31:52 2012
@@ -0,0 +1 @@
+See doc/content/index.html.
\ No newline at end of file

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/LICENSE
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/LICENSE
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/build.properties
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/build.properties?rev=1395298&view=auto
==============================================================================
--- ofbiz/trunk/applications/content/template/docbook/webhelp/build.properties (added)
+++ ofbiz/trunk/applications/content/template/docbook/webhelp/build.properties Sun Oct  7 13:31:52 2012
@@ -0,0 +1,67 @@
+
+# The path (relative to the build.xml file) to your input document.
+# To use your own input document, create a build.xml file of your own
+# and import this build.xml.
+input-xml=docsrc/readme.xml
+
+# The directory in which to put the output files.
+# This directory is created if it does not exist.
+output-dir=docs
+
+# If you are using a customization layer that imports webhelp.xsl, use
+# this property to point to it.
+stylesheet-path=${ant.file.dir}/xsl/webhelp.xsl
+
+# If your document has image directories that need to be copied
+# to the output directory, you can list patterns here.
+# See the Ant documentation for fileset for documentation
+# on patterns.
+input-images-dirs=images/**,figures/**,graphics/**
+
+# By default, the ant script assumes your images are stored
+# in the same directory as the input-xml. If you store your
+# image directories in another directory, specify it here.
+# and uncomment this line.
+#input-images-basedir=/path/to/image/location
+
+# Modify the follosing so that they point to your local
+# copy of the jars indicated:
+# * Saxon 6.5 jar
+# * Xerces 2: xercesImpl.jar
+# * xml-commons: xml-apis.jar
+xslt-processor-classpath=/usr/share/java/saxon-6.5.5.jar
+xercesImpl.jar=/usr/share/java/xercesImpl.jar
+xml-apis.jar=/usr/share/java/xml-apis.jar
+
+# For non-ns version only, this validates the document
+# against a dtd.
+validate-against-dtd=true
+
+# The extension for files to be indexed (html/htm/xhtml etc.)
+html.extension=html
+
+# Set this to false if you don't need a search tab.
+webhelp.include.search.tab=true
+
+# indexer-language is used to tell the search indexer which language
+# the docbook is written.  This will be used to identify the correct
+# stemmer, and punctuations that differs from language to language.
+# see the documentation for details. en=English, fr=French, de=German,
+# zh=Chinese, ja=Japanese etc.  
+webhelp.indexer.language=en
+
+# Enables/Disables stemming
+# Stemming allows better querying for the search
+enable.stemming=true
+
+#Set the table of contents file. This file will not be indexed.
+#toc.file=dummy.html
+
+#Used for adding branding specific contents to the html files.
+#For example, the url docbook.org, Google Analytics id etc.
+branding=docbook
+brandname=DocBook
+
+# Set admon.graphics to 1 to user graphics for note, tip, etc.
+admon.graphics=0
+suppress.footer.navigation=0
\ No newline at end of file

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/build.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/build.properties
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/build.properties
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/build.xml?rev=1395298&view=auto
==============================================================================
--- ofbiz/trunk/applications/content/template/docbook/webhelp/build.xml (added)
+++ ofbiz/trunk/applications/content/template/docbook/webhelp/build.xml Sun Oct  7 13:31:52 2012
@@ -0,0 +1,170 @@
+<project default="help" name="mainbuild">
+
+  <dirname property="ant.file.dir" file="${ant.file.mainbuild}"/>
+  <loadproperties srcFile="${ant.file.dir}/build.properties"/>
+  <property name="webhelp.include.search.tab" value="true"/>
+
+  <property name="extensions.dir" value="${ant.file.dir}/../extensions"/>
+
+    <path id="classpath">
+        <pathelement location="${extensions.dir}/webhelpindexer.jar"/>
+ <pathelement location="${extensions.dir}/lucene-analyzers-3.0.0.jar"/>
+ <pathelement location="${extensions.dir}/lucene-core-3.0.0.jar"/>
+ <pathelement location="${extensions.dir}/tagsoup-1.2.1.jar"/>
+    </path>
+
+  <condition property="perform-validation-dtd">
+ <equals arg1="${validate-against-dtd}" arg2="true"/>
+  </condition>
+  <condition property="do-search-indexing">
+ <equals arg1="${webhelp.include.search.tab}" arg2="true"/>
+  </condition>
+
+  <target name="validate" if="perform-validation-dtd">
+    <xmlvalidate file="${input-xml}" classname="org.apache.xerces.parsers.SAXParser"/>
+  </target>
+
+  <target name="chunk" depends="clean">
+
+ <mkdir dir="${output-dir}"/>
+ <tempfile destdir="${output-dir}" deleteonexit="true" property="xincluded-profiled.xml"/>
+ <tempfile destdir="${output-dir}" deleteonexit="true" property="dummy.html"/>
+ <xslt
+  in="${input-xml}"
+    out="${xincluded-profiled.xml}"
+    style="${ant.file.dir}/../profiling/profile.xsl">
+  <sysproperty key="org.apache.xerces.xni.parser.XMLParserConfiguration"
+       value="org.apache.xerces.parsers.XIncludeParserConfiguration"/>
+  <param name="profile.arch" expression="${profile.arch}" if="profile.arch"/>
+  <param name="profile.audience" expression="${profile.audience}" if="profile.audience"/>
+  <param name="profile.condition" expression="${profile.condition}" if="profile.condition"/>
+  <param name="profile.conformance" expression="${profile.conformance}" if="profile.conformance"/>
+  <param name="profile.lang" expression="${profile.lang}" if="profile.lang"/>
+  <param name="profile.os" expression="${profile.os}" if="profile.os"/>
+  <param name="profile.revision" expression="${profile.revision}" if="profile.revision"/>
+  <param name="profile.revisionflag" expression="${profile.revisionflag}" if="profile.revisionflag"/>
+  <param name="profile.role" expression="${profile.role}" if="profile.role"/>
+  <param name="profile.security" expression="${profile.security}" if="profile.security"/>
+  <param name="profile.status" expression="${profile.status}" if="profile.status"/>
+  <param name="profile.userlevel" expression="${profile.userlevel}" if="profile.userlevel"/>
+  <param name="profile.vendor" expression="${profile.vendor}" if="profile.vendor"/>
+  <param name="profile.wordsize" expression="${profile.wordsize}" if="profile.wordsize"/>
+  <param name="profile.attribute" expression="${profile.attribute}" if="profile.attribute"/>
+  <param name="profile.value" expression="${profile.value}" if="profile.value"/>
+ </xslt>
+
+ <xslt
+  in="${xincluded-profiled.xml}"
+  out="${dummy.html}"
+  style="${stylesheet-path}"
+  scanincludeddirectories="false"
+  classpath="${xslt-processor-classpath}">
+  <param name="webhelp.include.search.tab" expression="${webhelp.include.search.tab}"
+ if="webhelp.include.search.tab"/>
+  <param name="output_file_name" expression="${output_file_name}"/>
+  <param name="webhelp.base.dir" expression="${output-dir}" if="output-dir"/>
+  <param name="webhelp.indexer.language" expression="${webhelp.indexer.language}" if="webhelp.indexer.language"/>
+  <param name="branding" expression="${branding}" if="branding"/>
+  <param name="brandname" expression="${brandname}" if="brandname"/>
+  <param name="admon.graphics" expression="${admon.graphics}" if="admon.graphics"/>
+  <param name="suppress.footer.navigation" expression="${suppress.footer.navigation}" if="suppress.footer.navigation"/>
+ </xslt>
+
+ <!-- Copy common content such as js files of tree, css etc. to template folder. They will be copied to doc folder. They are NOT page specific! -->
+ <copy todir="${output-dir}">
+  <fileset dir="${ant.file.dir}/template">
+ <include name="**/*"/>
+ <exclude name="**/content/search/**"/>
+  </fileset>
+ </copy>
+
+ <!-- Very simple-minded copy to handle the source document's images -->
+ <!-- TODO: Look at html help code that produces a manifest file...list of images -->
+ <!--       Customize webhelp.xsl to produce ant file to copy images actually used? -->
+ <dirname property="input-images-basedir" file="${input-xml}"/>
+ <copy todir="${output-dir}/content" failonerror="false">
+  <fileset dir="${input-images-basedir}" includes="${input-images-dirs}" />
+ </copy>
+  </target>
+
+  <target name="index" if="do-search-indexing">
+
+ <copy todir="${output-dir}">
+  <fileset dir="${ant.file.dir}/template">
+ <include name="**/*"/>
+ <exclude name="**/content/search/*.props"/>
+ <exclude name="**/content/search/stemmers/*"/>
+  </fileset>
+ </copy>
+
+ <!-- We separate this out so we only copy the stopwords list and stemmer for the indexer language -->
+ <copy todir="${output-dir}">
+  <fileset dir="${ant.file.dir}/template">
+ <include name="**/content/search/default.props"/>
+ <include name="**/content/search/punctuation.props"/>
+ <include name="**/content/search/${webhelp.indexer.language}*.props"/>
+ <include name="**/content/search/stemmers/${webhelp.indexer.language}_stemmer.js"/>
+  </fileset>
+ </copy>
+
+ <!--taskdef name="indexertask"
+  classname="com.nexwave.nquindexer.IndexerMain">
+  <classpath refid="classpath"/>
+ </taskdef-->
+
+ <echo>Indexing html files in ${output-dir}/content</echo>
+
+       <java classname="com.nexwave.nquindexer.IndexerMain" fork="true">
+         <sysproperty key="htmlDir" value="${output-dir}/content"/>
+         <sysproperty key="indexerLanguage" value="${webhelp.indexer.language}"/>
+         <sysproperty key="htmlExtension" value="${html.extension}"/>
+         <sysproperty key="doStem" value="${enable.stemming}"/>
+         <sysproperty key="tocFile" value="${toc.file}"/>
+
+ <!--TagSoup SAX Parser for parsing even the bad html contents. see
+      http://sourceforge.net/tracker/?func=detail&aid=3401185&group_id=21935&atid=373750-->
+         <sysproperty key="org.xml.sax.driver" value="org.ccil.cowan.tagsoup.Parser"/>
+         <sysproperty key="javax.xml.parsers.SAXParserFactory" value="org.ccil.cowan.tagsoup.jaxp.SAXFactoryImpl"/>
+
+         <!-- Uncomment the following if Xerces is your preference as the SAX XML Parser. Note that the indexing will fail with Xerces
+      if the html files are not XML-conformance -->
+   <!--sysproperty key="org.xml.sax.driver" value="org.apache.xerces.parsers.SAXParser"/>      
+         <sysproperty key="javax.xml.parsers.SAXParserFactory" value="org.apache.xerces.jaxp.SAXParserFactoryImpl"/-->
+
+         <!-- Debug the indexer on port 5005 via remote-debug -->
+         <!--jvmarg line="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005"/-->
+         <classpath>
+    <path refid="classpath"/>
+    <pathelement location="${xercesImpl.jar}"/>  
+    <pathelement location="${xml-apis.jar}"/>  
+    <!-- <pathelement location="/usr/share/java/xercesImpl.jar"/>   -->
+    <!-- <pathelement location="/usr/share/java/xml-apis.jar"/>    -->
+    <!-- Gentoo Linux friendly default classpath-->
+    <pathelement location="/usr/share/xerces-2/lib/xercesImpl.jar"/>  
+    <pathelement location="/usr/share/xml-commons/lib/xml-apis.jar"/>  
+  </classpath>
+       </java>
+
+ <delete>
+  <fileset dir="${output-dir}/content/search" includes="*.props"/>
+ </delete>
+
+  </target>
+
+  <target name="webhelp" depends="validate,chunk,index"/>
+
+
+  <target name="clean">
+ <delete dir="${output-dir}"/>
+  </target>
+
+  <target name="help">
+ <echo>
+Usage:
+webhelp:       Generates the document in webhelp format and indexes the content.
+clean:         Deletes webhelp output directory.
+index:         Indexes the content.
+ </echo>
+  </target>
+
+</project>

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/build.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/build.xml
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/build.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/browserDetect.js
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/browserDetect.js?rev=1395298&view=auto
==============================================================================
--- ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/browserDetect.js (added)
+++ ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/browserDetect.js Sun Oct  7 13:31:52 2012
@@ -0,0 +1,116 @@
+var BrowserDetect = {
+ init: function () {
+ this.browser = this.searchString(this.dataBrowser) || "An unknown browser";
+ this.version = this.searchVersion(navigator.userAgent)
+ || this.searchVersion(navigator.appVersion)
+ || "an unknown version";
+ this.OS = this.searchString(this.dataOS) || "an unknown OS";
+ },
+ searchString: function (data) {
+ for (var i=0;i<data.length;i++) {
+ var dataString = data[i].string;
+ var dataProp = data[i].prop;
+ this.versionSearchString = data[i].versionSearch || data[i].identity;
+ if (dataString) {
+ if (dataString.indexOf(data[i].subString) != -1)
+ return data[i].identity;
+ }
+ else if (dataProp)
+ return data[i].identity;
+ }
+ },
+ searchVersion: function (dataString) {
+ var index = dataString.indexOf(this.versionSearchString);
+ if (index == -1) return;
+ return parseFloat(dataString.substring(index+this.versionSearchString.length+1));
+ },
+ dataBrowser: [
+ {
+ string: navigator.userAgent,
+ subString: "Chrome",
+ identity: "Chrome"
+ },
+ { string: navigator.userAgent,
+ subString: "OmniWeb",
+ versionSearch: "OmniWeb/",
+ identity: "OmniWeb"
+ },
+ {
+ string: navigator.vendor,
+ subString: "Apple",
+ identity: "Safari",
+ versionSearch: "Version"
+ },
+ {
+ prop: window.opera,
+ identity: "Opera"
+ },
+ {
+ string: navigator.vendor,
+ subString: "iCab",
+ identity: "iCab"
+ },
+ {
+ string: navigator.vendor,
+ subString: "KDE",
+ identity: "Konqueror"
+ },
+ {
+ string: navigator.userAgent,
+ subString: "Firefox",
+ identity: "Firefox"
+ },
+ {
+ string: navigator.vendor,
+ subString: "Camino",
+ identity: "Camino"
+ },
+ { // for newer Netscapes (6+)
+ string: navigator.userAgent,
+ subString: "Netscape",
+ identity: "Netscape"
+ },
+ {
+ string: navigator.userAgent,
+ subString: "MSIE",
+ identity: "Explorer",
+ versionSearch: "MSIE"
+ },
+ {
+ string: navigator.userAgent,
+ subString: "Gecko",
+ identity: "Mozilla",
+ versionSearch: "rv"
+ },
+ { // for older Netscapes (4-)
+ string: navigator.userAgent,
+ subString: "Mozilla",
+ identity: "Netscape",
+ versionSearch: "Mozilla"
+ }
+ ],
+ dataOS : [
+ {
+ string: navigator.platform,
+ subString: "Win",
+ identity: "Windows"
+ },
+ {
+ string: navigator.platform,
+ subString: "Mac",
+ identity: "Mac"
+ },
+ {
+   string: navigator.userAgent,
+   subString: "iPhone",
+   identity: "iPhone/iPod"
+    },
+ {
+ string: navigator.platform,
+ subString: "Linux",
+ identity: "Linux"
+ }
+ ]
+
+};
+BrowserDetect.init();
\ No newline at end of file

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/browserDetect.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/browserDetect.js
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/browserDetect.js
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/css/ie.css
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/css/ie.css?rev=1395298&view=auto
==============================================================================
--- ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/css/ie.css (added)
+++ ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/css/ie.css Sun Oct  7 13:31:52 2012
@@ -0,0 +1,13 @@
+.statustext{
+    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1)
+            progid:DXImageTransform.Microsoft.BasicImage(opacity=.5);  
+    width: 100%;
+    height: 30px;
+    right: -5px;
+    top:105px;
+    /* left: 280px; */ /* change to -12px; when sidebar is collapsed */
+}
+
+body #content{                      
+    padding-top: 136px;
+}

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/css/ie.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/css/ie.css
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/css/ie.css
------------------------------------------------------------------------------
    svn:mime-type = text/css

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/css/positioning.css
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/css/positioning.css?rev=1395298&view=auto
==============================================================================
--- ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/css/positioning.css (added)
+++ ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/css/positioning.css Sun Oct  7 13:31:52 2012
@@ -0,0 +1,369 @@
+tr th .added { color: #E6E6FA; }
+tr th .changed {color: #99ff99; }
+div.added tr, div.added    { background-color: #E6E6FA; }
+div.deleted tr, div.deleted  { text-decoration: line-through;
+               background-color: #FF7F7F; }
+div.changed tr, div.changed  { background-color: #99ff99; }
+div.off      {  }
+
+span.added   { background-color: #E6E6FA; }
+span.deleted { text-decoration: line-through;
+               background-color: #FF7F7F; }
+span.changed { background-color: #99ff99; }
+span.off     {  }
+
+
+body { font: 12px Verdana, Geneva, sans-serif; }
+p, ul, ol, li { font: 10pt Verdana, Geneva, sans-serif; }
+h1 { font: 15pt Arial, Helvetica, geneva;
+     color: black!important!;
+}
+h2 { font: normal 12pt Arial, Helvetica, geneva; }
+
+#header {
+    background: url("../images/header-bg.png") scroll top left repeat-x #4d8c83;
+    position: fixed;
+    width: 100%;
+    height: 99px;
+    top: 0;
+    right: 0;
+    bottom: auto;
+    left: 0;
+    border-bottom: 1px solid #bbc4c5;
+    z-index: 2000;
+}
+
+#header h1 {
+    margin-left: 310px;
+    position: fixed;
+    top: 10px;
+    left: -15px;
+    color: #404040 !important;
+}
+
+/*
+#header h1 {
+ margin-top: 2px;
+}
+*/
+
+p.breadcrumbs {
+    margin-top: 30px;
+    margin-left: 310px;
+}
+
+#header img {
+    float: left;
+    margin-left: 20px;
+    margin-top: 12px;
+}
+
+#header p.breadcrumbs a {
+    color: #bbb;
+}
+
+#leftnavigation {
+    overflow: auto;
+    position: fixed;
+    height: auto;
+    top: 95px;
+    bottom: 0;
+    left: 0;
+    width: 280px;
+    z-index: 1500;
+    border-right:2px solid #bbc4c5;
+    padding: 0px;
+    background-color: #ededed!important;
+}
+
+#treeDiv {
+    overflow: auto;
+    position: fixed;
+    height: auto;
+    top: 136px;
+    bottom: 0;
+    left: 0;
+    width: 243px;
+    z-index: 1500;
+    border-right:2px solid #CCCCCC;
+    background-color: #f0f0f0!important;
+}
+
+#searchDiv {
+    overflow: auto;
+    position: fixed;
+    height: auto;
+    top: 138px;
+    bottom: 0;
+    left: 0;
+    width: 243px;
+    z-index: 1500;
+    border-right:2px solid #CCCCCC;
+    background-color: #f0f0f0!important;
+}
+
+#content {
+    position: relative;
+    top: 90px; /* left: 240px;*/
+    right: auto; /*  bottom: 20px;  */
+    margin: 0px 0px 0px 280px;
+    width: auto;
+    height: inherit;
+    padding-left: 5px;
+    padding-right: 30px;
+    color: #000000;
+    /*border-left: 2px solid #cccccc; overflow :scroll;*/
+    z-index: 1000;
+    min-width:200px;
+}
+
+#navheader {
+    position: fixed;
+    background: #DCDCDC;
+    padding-left: 10px;
+    right: 0px;
+    top: 10px;
+    text-align: right;
+}
+
+#content h1, #content h2 {
+color: #404040 !important;
+font-size: 170%;
+font-weight: normal;
+}
+.navfooter { bottom: 2%; }
+.highlight { background-color: #c5d3c3; }
+.highlightButton{ font-size: 0; }
+
+/*  Show Hide TOC tree */
+.pointLeft {
+    padding-right: 15px;
+    display: block;
+    cursor: pointer;
+}
+.pointRight {
+    padding-right: 15px;
+    display: block;
+    cursor: pointer;
+}
+
+/* Search results Styling */
+.searchExpression {
+    color: #0050A0;
+    background-color: #EBEFF8;
+    font-size: 12pt;
+}
+.searchresult li a {
+    text-decoration: none;
+    color: #0050A0;
+}
+.searchresult li { color: #0050A0; }
+.shortdesclink { color: gray; font-size: 9pt; }
+.searchText { width: 11em }
+.searchButton {
+    margin-left: 3px;
+    background: #F4F4F4;
+    color: #black;
+    border: #ACCEAF solid 1pt;
+    font-weight: bold;
+    font-size: 10pt
+}
+.searchFieldSet { border: 1px solid #BFBAB0; background-color: #F2EFE9;}
+
+.title, div.toc>p{ font-weight: bold; }
+
+p.breadcrumbs {
+        display: inline;
+ margin-bottom: 0px;
+ margin-top: 33px;
+}
+
+p.breadcrumbs a {
+ padding-right: 12px;
+ margin-right: 5px;
+ text-decoration: none;
+ color: #575757;
+ text-transform: uppercase;
+ font-size: 10px;
+}
+
+p.breadcrumbs a:first-child {background: url(../images/breadcrumb-arrow-white.png) no-repeat right center;}
+
+p.breadcrumbs a:hover {text-decoration: underline;}
+
+#star ul.star {
+    LIST-STYLE: none;
+    MARGIN: 0;
+    PADDING: 0;
+    WIDTH: 85px;
+    /* was 100 */
+    HEIGHT: 20px;
+    LEFT: 1px;
+    TOP: -5px;
+    POSITION: relative;
+    FLOAT: right;
+    BACKGROUND: url('../images/starsSmall.png') repeat-x 0 -25px;
+}
+#star li {
+    PADDING: 0;
+    MARGIN: 0;
+    FLOAT: right;
+    DISPLAY: block;
+    WIDTH: 85px;
+    /* was 100 */
+    HEIGHT: 20px;
+    TEXT-DECORATION: none;
+    text-indent: -9000px;
+    Z-INDEX: 20;
+    POSITION: absolute;
+    PADDING: 0;
+}
+#star li.curr {
+    BACKGROUND: url('../images/starsSmall.png') left 25px;
+    FONT-SIZE: 1px;
+}
+
+table.navLinks {margin-right: 20px;}
+
+table.navLinks td a {
+ text-decoration: none;
+ text-transform: uppercase;
+ color: black;
+ font-size: 11px;
+}
+
+a.navLinkPrevious {
+ padding-left: 12px;
+ background: url(../images/previous-arrow.png) no-repeat left center;
+}
+
+a.navLinkNext {
+ padding-right: 12px;
+ background: url(../images/next-arrow.png) no-repeat right center;
+}
+
+a#showHideButton {
+ padding-left: 20px;
+ background: url(../images/sidebar.png) no-repeat left center;
+}
+
+
+.filetree li span a { color: #777; }
+
+#treediv { -webkit-box-shadow: #CCC 0px 1px 2px 0px inset; }
+
+.legal, .legal *{
+ color: #555;
+ text-align: center;
+ padding-bottom: 10px;
+}
+
+.internal { color : #0000CC;}
+
+.writeronly {color : red;}
+
+.remark, .remark .added, .remark .changed, .remark .deleted{ background: yellow;}
+
+tr th, tr th .internal, tr th .added, tr th .changed {
+ background: #00589E;
+ color: white;
+ font-weight: bold;
+ text-align: left;
+}
+
+.statustext{
+    position:fixed;
+    top:105px;
+    width: 0%;
+    height: 0%;
+    opacity: .3;
+    -webkit-transform: rotate(90deg);
+    -moz-transform: rotate(90deg);
+    -o-transform: rotate(90deg);
+    white-space: nowrap;
+    color: red;
+    font-weight: bold;
+    font-size: 2em;
+    margin-top: 30px;
+}
+
+#toolbar {
+ width: 100%;
+ height: 33px;
+ position: fixed;
+ top: 93px;
+ z-index: 99;
+ left: 280px;
+ color: #333;
+ line-height: 28px;
+ padding-left: 10px;
+}
+
+#toolbar-left {
+ position: relative;
+ left: 0px;
+}
+
+body p.breadcrumbs {
+ margin: 0px;
+ padding: 0px;
+ line-height: 28px;
+}
+
+body #content {
+ position: static;
+ margin-top: 126px;
+ top: 0px;
+}
+
+body.sidebar #toolbar{left: 0px;}
+
+body.sidebar #toolbar-left{left: 0px;}
+
+div#toolbar-left img {vertical-align: text-top;}
+
+div.note *, div.caution *, div.important *, div.tip *, div.warning * {
+    background: inherit !important;
+    color: inherit !important;
+    border: inherit  !important;    
+}
+
+#content table thead, #content table th{
+    background: gray;
+    color: white;
+    font-weight: bold;
+}
+
+#content table caption{font-weight: bold;}
+
+#content table td, #content table {border: 1px solid black;}
+
+#content table td, #content table th { padding: 5px;}
+
+#content table {margin-bottom: 20px;}
+
+*[align = 'center']{ text-align: center;}
+
+#content .qandaset>table, #content .qandaset>table td, #content .calloutlist table, #content .calloutlist table td, #content .navfooter table, #content .navfooter table td {
+    border: 0px solid;
+}
+
+@media print {
+
+    body * {
+        visibility: hidden;
+    }
+
+    #content, #content * {
+        visibility: visible;
+    }
+
+   #sidebar, .navfooter {
+       display: none;
+   }
+
+   #content {
+ margin: 0 0 0 0;
+    }
+
+}

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/css/positioning.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/css/positioning.css
------------------------------------------------------------------------------
    svn:keywords = Date Rev Author URL Id

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/css/positioning.css
------------------------------------------------------------------------------
    svn:mime-type = text/css

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/admon/caution.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/admon/caution.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/admon/caution.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/admon/important.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/admon/important.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/admon/important.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/admon/note.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/admon/note.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/admon/note.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/admon/tip.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/admon/tip.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/admon/tip.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/admon/warning.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/admon/warning.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/admon/warning.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/1.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/1.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/1.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/10.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/10.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/10.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/11.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/11.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/11.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/12.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/12.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/12.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/13.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/13.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/13.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/14.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/14.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/14.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/15.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/15.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/15.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/16.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/16.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/16.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/17.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/17.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/17.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/18.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/18.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/18.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/19.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/19.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/19.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/2.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/2.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/2.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/20.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/20.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/20.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/21.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/21.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/21.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/22.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/22.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/22.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/23.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/23.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/23.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/24.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/24.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/24.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/25.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/25.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/25.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/26.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/26.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/26.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/27.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/27.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/27.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/28.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/28.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/28.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/29.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/29.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/29.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/3.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/3.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/3.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/30.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/30.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/30.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/4.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/4.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/4.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/5.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/5.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/5.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/6.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/6.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/6.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/7.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/7.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/7.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/8.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/8.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/8.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/9.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/9.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/callouts/9.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/header-bg.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/header-bg.gif?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/header-bg.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/header-bg.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/header-bg.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/header-bg.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/highlight-blue.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/highlight-blue.gif?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/highlight-blue.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/highlight-yellow.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/highlight-yellow.gif?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/highlight-yellow.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/loading.gif
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/loading.gif?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/loading.gif
------------------------------------------------------------------------------
    svn:mime-type = image/gif

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/logo.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/logo.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/logo.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/next-arrow.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/next-arrow.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/next-arrow.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/previous-arrow.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/previous-arrow.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/previous-arrow.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/search-icon.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/search-icon.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/search-icon.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/showHideTreeIcons.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/showHideTreeIcons.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.

Propchange: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/showHideTreeIcons.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/sidebar.png
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/template/docbook/webhelp/docs/common/images/sidebar.png?rev=1395298&view=auto
==============================================================================
Binary file - no diff available.