<feed xmlns='http://www.w3.org/2005/Atom'>
<title>eom/help, branch v1.23.0</title>
<subtitle>Eye of MATE (eom) graphics viewer program</subtitle>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/eom/'/>
<entry>
<title>tx: sync with transifex</title>
<updated>2019-07-02T09:51:22+00:00</updated>
<author>
<name>raveit65</name>
<email>mate@raveit.de</email>
</author>
<published>2019-07-02T09:51:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/eom/commit/?id=b10b2b03cc895bac574cde0cab3e569b3c390c9b'/>
<id>b10b2b03cc895bac574cde0cab3e569b3c390c9b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>tx: update resource for transifex</title>
<updated>2019-07-02T09:43:23+00:00</updated>
<author>
<name>raveit65</name>
<email>mate@raveit.de</email>
</author>
<published>2019-07-02T09:43:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/eom/commit/?id=528de2785c566f40f6e2069df27760ebfa3717cd'/>
<id>528de2785c566f40f6e2069df27760ebfa3717cd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>update image of eom_toolbar_editor_window</title>
<updated>2019-05-13T15:25:03+00:00</updated>
<author>
<name>sakib</name>
<email>mabusakib@gmail.com</email>
</author>
<published>2019-05-12T22:34:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/eom/commit/?id=437afccee62a74c32bcf95dce4533105674c3d9e'/>
<id>437afccee62a74c32bcf95dce4533105674c3d9e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use ITS in docbook article info, validate with dbits schemas</title>
<updated>2019-04-14T08:58:52+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-04-07T07:57:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/eom/commit/?id=ad093718532f9716b25eff3ece5f69a600923d41'/>
<id>ad093718532f9716b25eff3ece5f69a600923d41</id>
<content type='text'>
-= Validate =-
  wget https://docbook.org/xml/5.0/rng/dbits.rng
  xmllint --noout --relaxng dbits.rng help/C/index.docbook
  jing dbits.rng help/C/index.docbook

-= View the manual using yelp =-
  yelp file:///path_to_file/index.docbook

-= Tests: Generate pdf and html files from docbook =-

  Method I: Use yelp-build (HTML chunk)
    cd help/C
    mkdir htmlout
    yelp-build html -o htmlout index.docbook

  Method II-a: Use docbook5-style-xsl package on Fedora 29 (PDF)
    sudo dnf install -y docbook5-style-xsl
    cd help/C
    xsltproc /usr/share/sgml/docbook/xsl-ns-stylesheets-1.79.2/fo/docbook.xsl index.docbook &gt; eom.fo
    fop -fo eom.fo -pdf eom.pdf

  Method II-b: Use docbook5-style-xsl package on Fedora 29 (HTML)
    sudo dnf install -y docbook5-style-xsl
    cd help/C
    xsltproc /usr/share/sgml/docbook/xsl-ns-stylesheets-1.79.2/html/docbook.xsl index.docbook &gt; index.html

  Method II-c: Use docbook5-style-xsl package on Fedora 29 (HTML chunk)
    sudo dnf install -y docbook5-style-xsl
    cd help/C
    xsltproc --xinclude \
        --stringparam base.dir htmlout/ \
        --stringparam use.id.as.filename 1 \
        --stringparam chunker.output.encoding UTF-8 \
        /usr/share/sgml/docbook/xsl-ns-stylesheets-1.79.2/html/chunk.xsl index.docbook
or
    xsltproc --xinclude \
        --stringparam base.dir htmlout/ \
        --stringparam use.id.as.filename 1 \
        --stringparam chunker.output.encoding UTF-8 \
        --stringparam chunk.section.depth 2 \
        --stringparam chunk.first.sections 1 \
        /usr/share/sgml/docbook/xsl-ns-stylesheets-1.79.2/html/chunk.xsl index.docbook
    cp -rp figures htmlout

  Method III-a: Use docbook-xslt2-2.3.10-app (XHTML)
    cd help/C
    wget https://github.com/docbook/xslt20-stylesheets/releases/download/2.3.10/docbook-xslt2-2.3.10-app.zip
    unzip docbook-xslt2-2.3.10-app.zip
    java -jar docbook-xslt2-2.3.10-app/docbook-xslt2-2.3.10.jar -f xhtml index.docbook &gt; index.html
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
-= Validate =-
  wget https://docbook.org/xml/5.0/rng/dbits.rng
  xmllint --noout --relaxng dbits.rng help/C/index.docbook
  jing dbits.rng help/C/index.docbook

-= View the manual using yelp =-
  yelp file:///path_to_file/index.docbook

-= Tests: Generate pdf and html files from docbook =-

  Method I: Use yelp-build (HTML chunk)
    cd help/C
    mkdir htmlout
    yelp-build html -o htmlout index.docbook

  Method II-a: Use docbook5-style-xsl package on Fedora 29 (PDF)
    sudo dnf install -y docbook5-style-xsl
    cd help/C
    xsltproc /usr/share/sgml/docbook/xsl-ns-stylesheets-1.79.2/fo/docbook.xsl index.docbook &gt; eom.fo
    fop -fo eom.fo -pdf eom.pdf

  Method II-b: Use docbook5-style-xsl package on Fedora 29 (HTML)
    sudo dnf install -y docbook5-style-xsl
    cd help/C
    xsltproc /usr/share/sgml/docbook/xsl-ns-stylesheets-1.79.2/html/docbook.xsl index.docbook &gt; index.html

  Method II-c: Use docbook5-style-xsl package on Fedora 29 (HTML chunk)
    sudo dnf install -y docbook5-style-xsl
    cd help/C
    xsltproc --xinclude \
        --stringparam base.dir htmlout/ \
        --stringparam use.id.as.filename 1 \
        --stringparam chunker.output.encoding UTF-8 \
        /usr/share/sgml/docbook/xsl-ns-stylesheets-1.79.2/html/chunk.xsl index.docbook
or
    xsltproc --xinclude \
        --stringparam base.dir htmlout/ \
        --stringparam use.id.as.filename 1 \
        --stringparam chunker.output.encoding UTF-8 \
        --stringparam chunk.section.depth 2 \
        --stringparam chunk.first.sections 1 \
        /usr/share/sgml/docbook/xsl-ns-stylesheets-1.79.2/html/chunk.xsl index.docbook
    cp -rp figures htmlout

  Method III-a: Use docbook-xslt2-2.3.10-app (XHTML)
    cd help/C
    wget https://github.com/docbook/xslt20-stylesheets/releases/download/2.3.10/docbook-xslt2-2.3.10-app.zip
    unzip docbook-xslt2-2.3.10-app.zip
    java -jar docbook-xslt2-2.3.10-app/docbook-xslt2-2.3.10.jar -f xhtml index.docbook &gt; index.html
</pre>
</div>
</content>
</entry>
<entry>
<title>Help: Fix version to 1.22 and update pot file</title>
<updated>2019-03-10T08:34:03+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-03-09T22:56:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/eom/commit/?id=368f66b23aaa1d4c232f38c7af755607cbc55b16'/>
<id>368f66b23aaa1d4c232f38c7af755607cbc55b16</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>help: update copyright</title>
<updated>2019-03-10T08:34:03+00:00</updated>
<author>
<name>raveit65</name>
<email>mate@raveit.de</email>
</author>
<published>2019-03-07T11:13:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/eom/commit/?id=15637f11e005a37ade2b68d5dd7909b1db4be261'/>
<id>15637f11e005a37ade2b68d5dd7909b1db4be261</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Upgrade the manual to docbook 5.0</title>
<updated>2019-03-10T08:34:03+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-02-07T08:41:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/eom/commit/?id=ad0d47864e2ea57f3b9efa22969d74fd45d73202'/>
<id>ad0d47864e2ea57f3b9efa22969d74fd45d73202</id>
<content type='text'>
To upgrade the manual:
sudo dnf install -y docbook5-schemas
xsltproc --output index-new.docbook /usr/share/xml/docbook5/stylesheet/upgrade/db4-upgrade.xsl index.docbook
xsltproc --output legal-new.xml /usr/share/xml/docbook5/stylesheet/upgrade/db4-upgrade.xsl legal.xml

To validate the manual:
xmllint --noout --relaxng /usr/share/xml/docbook5/schema/rng/5.0/docbook.rng help/C/index.docbook
jing /usr/share/xml/docbook5/schema/rng/5.0/docbook.rng help/C/index.docbook
yelp-check validate help/C/index.docbook

To view the manual:
yelp file:///full_path/index.docbook

Note: docbook5-schemas should be installed in your system in order to view the manual (DEPENDENCY)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
To upgrade the manual:
sudo dnf install -y docbook5-schemas
xsltproc --output index-new.docbook /usr/share/xml/docbook5/stylesheet/upgrade/db4-upgrade.xsl index.docbook
xsltproc --output legal-new.xml /usr/share/xml/docbook5/stylesheet/upgrade/db4-upgrade.xsl legal.xml

To validate the manual:
xmllint --noout --relaxng /usr/share/xml/docbook5/schema/rng/5.0/docbook.rng help/C/index.docbook
jing /usr/share/xml/docbook5/schema/rng/5.0/docbook.rng help/C/index.docbook
yelp-check validate help/C/index.docbook

To view the manual:
yelp file:///full_path/index.docbook

Note: docbook5-schemas should be installed in your system in order to view the manual (DEPENDENCY)
</pre>
</div>
</content>
</entry>
<entry>
<title>tx: sync with transifex</title>
<updated>2019-02-24T13:52:18+00:00</updated>
<author>
<name>raveit65</name>
<email>mate@raveit.de</email>
</author>
<published>2019-02-24T13:52:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/eom/commit/?id=e1e928c4b1941bee648019cb9f7a8ffa91789804'/>
<id>e1e928c4b1941bee648019cb9f7a8ffa91789804</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>tx: sync with fixed translations from transifex</title>
<updated>2019-02-05T16:49:11+00:00</updated>
<author>
<name>raveit65</name>
<email>mate@raveit.de</email>
</author>
<published>2019-02-05T16:49:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/eom/commit/?id=cc23f6d60a48187e7140c8a6b266b5c25f0c0ee0'/>
<id>cc23f6d60a48187e7140c8a6b266b5c25f0c0ee0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>tx: update resource file for transifex</title>
<updated>2019-02-04T10:57:40+00:00</updated>
<author>
<name>raveit65</name>
<email>mate@raveit.de</email>
</author>
<published>2019-02-04T10:57:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/eom/commit/?id=548d9fe4662d074f4e95e1b5cc73c2db5cf6e57a'/>
<id>548d9fe4662d074f4e95e1b5cc73c2db5cf6e57a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
