< Starting HelpSetMaker in a development environmentSTML parsing >

Project structure

HelpSetMaker stores each project below its own directory, the so-called project base. There are two locations which are hardcoded:

HelpSetMaker creates output below certain subdirectories within the project's directory structure.

hsm.properties

Before version 0.9.4, HelpSetMaker stored the main project configuration in a file named hsm.properties. That one used the standard properties mechanism to save all the information. While this was expression-wise equal to today's XML-based storing, it had a serious drawback: Properties are neither inheritantly hierarchic nor capable of storing lists of equal elements.

So, the document tree or the image library had to be saved by enumerating the nodes and saving them into the file one after the other. This was no problem until two circumstances met each other:

As the properties files changed between the different workers in unrelated and random places, CVS management produces a huge number of conflicts on merges. It was near to impossible to sort these problems out manually, especially as there was no real problem at all. It was just that the same elements have been stored in different order.

To solve this problem, storing in hierachical XML structures has been introduced into HelpSetMaker.

< Starting HelpSetMaker in a development environmentSTML parsing >