diff --git a/README.md b/README.md index 8f15f3d9c16220aa11272b63486484408ce47d17..7641070f0994bde4fc83850b5ac5c4a57db5f084 100644 --- a/README.md +++ b/README.md @@ -2,23 +2,27 @@ ## Another BJCP styleguide translation project -This is a new approach to achieve two goals: +The BJCP has put a great deal of hard voluntery work from many contributors into the 2015 beer style guidelines. Besides other derived formats, the primary resulting document is availabe as a PDF and as a Microsoft Word docx file from the "[BJCP web pages](https://www.bjcp.org/stylecenter.php)". -- tranlating BJCP documents (so far, we care only about the 2015 beer styleguide) to the German language (in a way that easily allows to add further languages), -- establishing an XML form of the styleguide in order to support a flexible transformation architecture for a variety of destination formats. +In this project we want to achieve the following goals: -## Concept & Roadmap +- establish a XML form of the styleguide derived from the original BJCP Word document, +- tranlate the styleguide to the German language (in a way that easily allows to add further languages), +- transform the XML data to various target formats (HTML, PDF) using XSL and FO techniques. -- Create a consistent XML representation from the original BJCP styleguide docx document. This will require some hacks, since the original document is hand-crafted and thus shows some inconsistencies. -- Continuously add and update translated content. -- Develop a XSL tranformation to rebuild a (partially) translated XML styleguide. -- Develop XSL / XSL-FO (maybe LaTeX) backends to create PDF, HTML and potentially other destination documents. +To derive a consistent XML representation, we rely on the XML format of Word DOCX documents. However, since the original document is handcrafted by humans, we have to use some hacks in situations where the original document is less consistent. This means that our XSL code will not work for future releases of the styleguide. -## Procedure +In some rare cases, it may seem reasonable to apply slight adjustments to the original data. E.g., there is just one style, where the "Vital Statistics" section contains a form of further "subcategorization". We decided to explain this by words in the "Entry Instructions" and keep simple min-max ranges in all specs sections. Note that this "fixing" mechanisms should remain a rare exception. -- If you are just curious about the current state of this project's results, you may take a look at the so called "[artifacts](https://gitlab.ibr.cs.tu-bs.de/steinb/bjcp-2015-styleguide/-/jobs/artifacts/master/download?job=build)" of the GitLab repository which get automatically rebuilt after each commit. +For a gradual translation process we use a split representation where each category and subcategory is stored in a single file, this allows to edit them in small pieces and independently by multiple authors. -- MacOS systems should have the required tools when the XCode App is installed. On Linux you should install some packages, e.g. on Ubuntu: +Finally, XSL stylesheets get applied to create resulting XML and XHTML documents with content in the original english language or translated into German. Other formats (and maybe other target languages) may follow in the future. + +## Translation Procedure + +- If you are just curious about the current state of this project's results, you may take a look at the so called "[artifacts](https://gitlab.ibr.cs.tu-bs.de/steinb/bjcp-2015-styleguide/-/jobs/artifacts/master/download?job=build)" of the GitLab repository which get automatically rebuilt after each commit and push to the repository server. + +- MacOS systems should have the required tools once the XCode App is installed. On Linux you should install some packages, e.g. on Ubuntu: ``` apt install make curl libxml2-utils xsltproc ``` @@ -41,15 +45,22 @@ This is a new approach to achieve two goals: - A (partially) translated XML styleguide: `bjcp-2015-styleguide-de.xml` - An HTML form of the original styleguide: `bjcp-2015-styleguide-orig.html` - An HTML form of the translated styleguide: `bjcp-2015-styleguide-de.html` -- Now, you can gradually add and update translated content: - - Do this only in the directory `de`. - - The structure should match `orig`. - - XML elements not present in the translated files will be copied from the `orig` data, when the translated styleguide will be generated. You will probably want to make use of this for the lists of "Commercial Examples", which are plain names of beer brands. - - Never modify XML element names or the XML structure, just edit the texts within the XML elements. - - Never change `id` attributes. - - Never add `tags` or `specs` ("Vital Statistics") to the translated files, they will always be taken from the original data. -- To supply your work back upstream to the repository, ...[TBD] +- Now, you can gradually add and update translated content, see translation guidelines below. + +## Translation guidelines + +- Only add and edit files in the target language directory `de`. Never touch any other files (except by running `make`). +- To start a new translated category or subcategory, copy it from `orig` to `de` and translate its content. (Be sure not to overwrite already present translated files in `de`.) +- If you want to translate only some elements within a file, please remove the non-translated elements comletely (the whole XML element, not just the text bewteen the opening and closing tags). Missing elements will be copied from the english original. This helps to keep track of non-translated elements. +- In this sense, you probably do not want to translate <commercial-examples> sections. +- You may also add newly translated elements to already partially translated files or rephrase details, but be sure to always retain the XML structure of the `orig` file. +- Never translate XML element names, just edit the pure texts within the XML elements. +- The only valid text decoration elements are <b>bold</b>, <i>italic</i> and <u>underline</u>. Do not nest these elements. Use them just guided by the `orig` data. +- All elements within category and subcategory files contain just one text paragraph, do not try to any formatting elements you may know from HTML. - To see the results of your translation work, you can re-run `make` at any time. +- Note: We aim for a real translation. Even if you are convinced that adding details or rephrasing sections, please don't do that! (Maybe, we should establish a way to take such notes. Let's discuss this, if you feel a real need for this.) +- Take care for a consistent wording. +- To supply your work back upstream to the repository, ...[TBD] ## Contact @@ -67,5 +78,6 @@ Contact: - Implement links. - Move to real public repo server und update text above. - "make status" to display potentially missing translation snippets. -- Intro chapters: color table, tags table +- Improved tags handling (links, grouped lists, translated meaning, ...) - Appendices +- XML Schema Definition diff --git a/xsl/bjcp-2015-styleguide-doc-to-xml.xsl b/xsl/bjcp-2015-styleguide-doc-to-xml.xsl index cc3babd122c2620a4fce89459b9168cc84533556..661a2d20a8c51f32fe3ae4686de4f8cf787d4056 100644 --- a/xsl/bjcp-2015-styleguide-doc-to-xml.xsl +++ b/xsl/bjcp-2015-styleguide-doc-to-xml.xsl @@ -688,64 +688,42 @@ <xsl:apply-templates select="following-sibling::w:p[1]" mode="style-intro-recur"/> </xsl:if> </xsl:template> + -<!-- - <xsl:template match="w:p" mode="in-chapter"> - <xsl:param name="in-list"></xsl:param> + <xsl:template match="w:p | w:tbl" mode="in-chapter"> <xsl:if test="not(w:pPr/w:pStyle/@w:val='Heading1')"> <xsl:choose> - <xsl:when test="not($in-list)"> - <xsl:if test="w:pPr/w:pStyle/@w:val='ProseIntro'"> - <xsl:element name="p"> - <xsl:attribute name="class">intro</xsl:attribute> - <xsl:apply-templates select="w:r"/> - </xsl:element> - </xsl:if> - <xsl:if test="w:pPr/w:pStyle/@w:val='ProseBody'"> - <xsl:element name="p"> - <xsl:attribute name="class">body</xsl:attribute> - <xsl:apply-templates select="w:r"/> - </xsl:element> - </xsl:if> - <xsl:if test="w:pPr/w:pStyle/@w:val='Heading2first' or w:pPr/w:pStyle/@w:val='Heading2'"> - <xsl:element name="h3"> - <xsl:apply-templates select="w:r"/> - </xsl:element> - </xsl:if> - <xsl:apply-templates select="following-sibling::w:p[1]" mode="in-chapter"/> + <xsl:when test="local-name(.) = 'tbl'"> + <xsl:element name="table"> + <xsl:for-each select="w:tr"> + <xsl:element name="tr"> + <xsl:for-each select="w:tc"> + <xsl:element name="td"> + <xsl:value-of select="w:p/w:r/w:t"/> + </xsl:element> + </xsl:for-each> + </xsl:element> + </xsl:for-each> + </xsl:element> + <xsl:apply-templates select="following-sibling::*[1]" mode="in-chapter"/> + </xsl:when> + <!-- Hack to match Color Reference table --> + <xsl:when test="w:r[1]/w:t='Straw'"> + <xsl:element name="table"> + <xsl:for-each select="w:r[not(w:tab)]"> + <xsl:element name="tr"> + <xsl:element name="td"> + <xsl:value-of select="w:t"/> + </xsl:element> + <xsl:element name="td"> + <xsl:value-of select="following-sibling::w:r[1]/w:t"/> + </xsl:element> + </xsl:element> + </xsl:for-each> + </xsl:element> + <xsl:apply-templates select="following-sibling::*[1]" mode="in-chapter"/> </xsl:when> - <xsl:otherwise> - <xsl:if test="not(w:pPr/w:pStyle/@w:val='ProseListNumbered)'"> - <xsl:apply-templates select="." mode="in-chapter"/> - </xsl:if> - </xsl:otherwise> - </xsl:choose> - <xsl:if test="w:pPr/w:pStyle/@w:val='ProseListNumbered'"> - <xsl:choose> - <xsl:when test="not($in-list)"> - <xsl:element name="ol"> - <xsl:apply-templates select="." mode="in-chapter"> - <xsl:with-param name="in-list">yes</xsl:with-param> - </xsl:apply-templates> - </xsl:element> - </xsl:when> - <xsl:otherwise> - <xsl:element name="li"> - <xsl:apply-templates select="w:r"/> - </xsl:element> - <xsl:apply-templates select="following-sibling::w:p[1]" mode="in-chapter"> - <xsl:with-param name="in-list">yes</xsl:with-param> - </xsl:apply-templates> - </xsl:otherwise> - </xsl:choose> - </xsl:if> - </xsl:if> - </xsl:template> ---> - <xsl:template match="w:p" mode="in-chapter"> - <xsl:if test="not(w:pPr/w:pStyle/@w:val='Heading1')"> - <xsl:choose> <xsl:when test="w:pPr/w:pStyle/@w:val='ProseListNumbered'"> <xsl:element name="ol"> <xsl:element name="li"> @@ -753,7 +731,7 @@ </xsl:element> <xsl:apply-templates select="following-sibling::w:p[1]" mode="in-chapter-list"/> </xsl:element> - <xsl:apply-templates select="following-sibling::w:p[not(w:pPr/w:pStyle/@w:val='ProseListNumbered')][1]" mode="in-chapter"/> + <xsl:apply-templates select="following-sibling::*[not(w:pPr/w:pStyle/@w:val='ProseListNumbered')][1]" mode="in-chapter"/> </xsl:when> <xsl:when test="w:pPr/w:pStyle/@w:val='ProseList'"> <xsl:element name="ul"> @@ -762,36 +740,36 @@ </xsl:element> <xsl:apply-templates select="following-sibling::w:p[1]" mode="in-chapter-list"/> </xsl:element> - <xsl:apply-templates select="following-sibling::w:p[not(w:pPr/w:pStyle/@w:val='ProseList')][1]" mode="in-chapter"/> + <xsl:apply-templates select="following-sibling::*[not(w:pPr/w:pStyle/@w:val='ProseList')][1]" mode="in-chapter"/> </xsl:when> <xsl:when test="w:pPr/w:pStyle/@w:val='ProseIntro'"> <xsl:element name="p"> <xsl:attribute name="class">intro</xsl:attribute> <xsl:apply-templates select="w:r"/> </xsl:element> - <xsl:apply-templates select="following-sibling::w:p[1]" mode="in-chapter"/> + <xsl:apply-templates select="following-sibling::*[1]" mode="in-chapter"/> </xsl:when> <xsl:when test="w:pPr/w:pStyle/@w:val='ProseBody'"> <xsl:element name="p"> <xsl:attribute name="class">body</xsl:attribute> <xsl:apply-templates select="w:r"/> </xsl:element> - <xsl:apply-templates select="following-sibling::w:p[1]" mode="in-chapter"/> + <xsl:apply-templates select="following-sibling::*[1]" mode="in-chapter"/> </xsl:when> <xsl:when test="w:pPr/w:pStyle/@w:val='Heading2first' or w:pPr/w:pStyle/@w:val='Heading2'"> <xsl:element name="h3"> <xsl:apply-templates select="w:r"/> </xsl:element> - <xsl:apply-templates select="following-sibling::w:p[1]" mode="in-chapter"/> + <xsl:apply-templates select="following-sibling::*[1]" mode="in-chapter"/> </xsl:when> <xsl:when test="w:pPr/w:pStyle/@w:val='Heading3first' or w:pPr/w:pStyle/@w:val='Heading3'"> <xsl:element name="h4"> <xsl:apply-templates select="w:r"/> </xsl:element> - <xsl:apply-templates select="following-sibling::w:p[1]" mode="in-chapter"/> + <xsl:apply-templates select="following-sibling::*[1]" mode="in-chapter"/> </xsl:when> <xsl:otherwise> - <xsl:apply-templates select="following-sibling::w:p[1]" mode="in-chapter"/> + <xsl:apply-templates select="following-sibling::*[1]" mode="in-chapter"/> </xsl:otherwise> </xsl:choose> </xsl:if> diff --git a/xsl/bjcp-2015-styleguide-html.xsl b/xsl/bjcp-2015-styleguide-html.xsl index bc98198382e05c0b9e41b3fa5d7fd927944bb7d8..0afe4c83a625bcb7595ff5b77413224426ca9f01 100644 --- a/xsl/bjcp-2015-styleguide-html.xsl +++ b/xsl/bjcp-2015-styleguide-html.xsl @@ -20,9 +20,10 @@ styleguide { font-family: Helvetica, Arial, Geneva, sans-serif; + font-size: 8pt; } -styleguide chapter { +styleguide chapter table { font-size: 8pt; }