Bug 967678 - RFE: Ability to make books Maven-buildable
Summary: RFE: Ability to make books Maven-buildable
Keywords:
Status: CLOSED CURRENTRELEASE
Alias: None
Product: PressGang CCMS
Classification: Community
Component: CSProcessor
Version: 1.1
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: ---
: ---
Assignee: Lee Newson
QA Contact: mmurray
URL:
Whiteboard:
Depends On:
Blocks: 1013895
TreeView+ depends on / blocked
 
Reported: 2013-05-28 01:04 UTC by Misty Stanley-Jones
Modified: 2014-06-18 07:05 UTC (History)
3 users (show)

Fixed In Version: 1.0.3
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2013-11-08 02:14:23 UTC
Embargoed:


Attachments (Terms of Use)

Description Misty Stanley-Jones 2013-05-28 01:04:10 UTC
Some projects with with an upstream that requires that the books be buildable using Maven with jDocbook. Is it possible to provide some extra processing instructions which would create the POM files and whatever else is needed so that the exported payload could build this way? This would save some manual work for at least one project (JBDS). The specific processing instructions might be different per product or per book so we would need the ability to specify them.

Comment 1 Lee Newson 2013-05-28 01:55:14 UTC
Definitely looks doable without a great deal of effort, though what needs to be configured will have to be looked at. I assume looking at the PressGang Documentation (https://hudson.jboss.org/jenkins/job/PressGang_Documentation_Guide/lastSuccessfulBuild/artifact/target/docbook/publish/en-US/html_single/index.html) that the pom.xml is the only thing that needs configuration, so as a first step an override might be best until the actual parameters can be incorporated.

Comment 2 Misty Stanley-Jones 2013-05-28 01:59:38 UTC
Michelle, can you update this bug with the changes you have to make to the JBDS docs to make them buildable by jDocbook?

Lee, I need to stress that this would be at least slightly different for different projects or maybe even different books, depending on how the Maven build is set up.

Comment 3 mmurray 2013-05-28 05:05:21 UTC
I do the following with the contents that comes out of Pressgang and csprocessor:
1. Create a pom.xml file in the same directory as publican.cfg. On a per book basis, <docname> and <bookname> need to be configured.
2. Copy a Common_Content directory into en-US to accommodate for Common_Content files only available to Publican.
3. In the Book_Info.xml file, remove the <corpauthor> text (specifically the svg image reference).

Then build with: mvn compile.
And the output can be viewed in target/docbook/publish/en-US/html_single/index.html

Comment 4 Lee Newson 2013-06-07 13:37:17 UTC
I've added an initial preview to 0.33.0 (not released yet)

Notes:

- You can set the following new Content Spec MetaData for jDocbook builds (using examples from Michelle):

  GroupId = org.jboss.tools
  ArtifactId = Red_Hat_JBoss_Developer_Studio_Getting_Started_Guide-en-US

- The defaults for the above values are the escaped "Product" for the groupId and the escaped "Title" for the groupId (along with language). Also note that in the above you can still use maven properties ie: ArtifactId = Red_Hat_JBoss_Developer_Studio_Getting_Started_Guide-${translation}

- The <version> in the POM is populated using the "Version" with "-SNAPSHOT" amended (since we currently don't have a way to publish properly).

- The <docname> and <bookname> properties are set using the book "Title", with <docname> using the escaped "Title". (Note: I've not made these customisable, as they are only used in the pom.xml to set the <artifactId> and <name> elements, the rest of the uses are for build or output parameters.)

- I've added two addition property fields as well, so that they can be used if needed <docproduct> and <bookproduct>, which are set in the same way as <docname> and <bookname> except using the "Product" field.

- The Book_Info.xml also has the <corpauthor> removed (this element causes issues with the build formatting from just trying it quickly).

- The Common Content is copied in the same way as publican, from the publican installation directory and placed inside the book. (That is it will attempt to find the files from the brand directory first, and if they can't be found then they will be loaded from the common brand folder on a per locale basis)

- You can override the default pom.xml in the same way Author_Group.xml or Revision_History.xml can be overridden (ie --override pom.xml=/home/lnewson/pom.xml)

Usage:

  csprocessor build <ID> --format jDocbook

  csprocessor preview <ID> --format jDocbook

New Configuration:

- The following is an example of the configuration to be added to csprocessor.ini (Note: if it isn't added the below defaults will be used):

[jDocbook]
build.parameters=clean compile
preview.format=html_single

Extra Info:

I'll provide a link on Monday where a preview of 0.33.0 can be installed for review.

One thing I did notice in Michelle's examples is that the Common_Content Legal_Notice.xml actually uses a <releaseinfo> element instead of a <legalnotice> element, but in saying that the XML is not valid docbook so I'm assuming this is some other workaround.

Comment 6 Lee Newson 2013-06-28 03:11:31 UTC
0.33.0 has now been released and this has been included as a tech preview.

Comment 7 Misty Stanley-Jones 2013-07-02 02:49:23 UTC
Documented: Add Maven and jDocBook Support [20100]

Comment 8 mmurray 2013-09-18 03:07:08 UTC
Apologies for the delay. Now in a position to test this thoroughly.

Over all it works well.

First tests identified: BZ#1008820 Incorrect ENTITY declaration in Book.xml files

Other thoughts on implementation:
* In pom.xml, <version> is taken from content spec Version parameter (with -SNAPSHOT appended). Instead, I think <version> should be taken from the content spec Edition parameter and when that isn't specified fallback to the Version parameter. For example, some products have the version set to just the major number (e.g., 6) and some to the major and the minor (6.1). Products use Edition to give finer version info (e.g., 6.1.0, 6.1.0.Beta1) and it is this kind of finer detail that is needed in <version> in pom.xml.

* This version might need updating, from 2.3.5 to 2.3.6:
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-jdocbook-plugin</artifactId>
<version>2.3.5</version>
I understand that 2.3.5 has some bugs with injections (not they are used in this pom.xml at this time).

Comment 9 Lee Newson 2013-09-18 03:16:45 UTC
Agreed, with one minor change. It should first use the "Book Version" metadata, then fallback to "Edition" and lastly "Version". We probably also need some form of Meta Data to specify if "-SNAPSHOT" should be appended.

As for the other one that can be changed at anytime by editing the String constant (the ID is 63) via the UI (i've changed it to 2.3.6 now)

Moving it back to MODIFIED until at least the edition part is fixed.

Comment 10 Lee Newson 2013-09-19 05:33:53 UTC
Fixed the edition/version problem in csprocessor 1.0.3. As for the snapshot metadata that will have to be done in another version, as it'll require a server update.

Comment 12 mmurray 2013-09-20 01:27:14 UTC
Maven build failures

maven-jdocbook-plugin version:
* 2.3.5 - didn't include injections (not an issue here as have no injections in pom.xml) but doc builds
* 2.3.6 - throws NPE if don't have at least one (dummy) injection so build fails [https://issues.jboss.org/browse/MPJDOCBOOK-83]
* 2.3.7 - 2.3.6 issue fixed but new ISSUES!! that I haven't had time to investigate, looks like it is trying to use preface text as title of file and then complaining file name is too long?!

So have reverted version back to 2.3.5 in string constant 63.

Comment 13 Lee Newson 2013-09-24 05:47:51 UTC
Thanks for that Michelle.

I've also uploaded version 1.0.3 into the rpm repository now so that it is freely available. This version uses edition over version for the pom version as requested, so I'm going to move this back to ON_QA now.


Note You need to log in before you can comment on or make changes to this bug.