<feed xmlns='http://www.w3.org/2005/Atom'>
<title>pluma/help/C, branch 1.22</title>
<subtitle>Official text editor of the MATE desktop environment</subtitle>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/pluma/'/>
<entry>
<title>Help: replace link linkend with xref linkend</title>
<updated>2019-04-09T12:11:47+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-04-06T18:36:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/pluma/commit/?id=fab81ecec5fad07cd2e796f6e8eb936cd87097c4'/>
<id>fab81ecec5fad07cd2e796f6e8eb936cd87097c4</id>
<content type='text'>
Yelp viewer can't open cross-references to other parts of
the manual using link linkend.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Yelp viewer can't open cross-references to other parts of
the manual using link linkend.
</pre>
</div>
</content>
</entry>
<entry>
<title>help: update copyright</title>
<updated>2019-03-10T08:48:55+00:00</updated>
<author>
<name>raveit65</name>
<email>mate@raveit.de</email>
</author>
<published>2019-03-06T13:26:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/pluma/commit/?id=cfe2c64c96f4644cf9e1c066840e6e1f60fe9bf3'/>
<id>cfe2c64c96f4644cf9e1c066840e6e1f60fe9bf3</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-03-10T08:48:43+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-02-09T17:53:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/pluma/commit/?id=396fe5a0f85a4ca0d0179c5f782e0a76b573cb7a'/>
<id>396fe5a0f85a4ca0d0179c5f782e0a76b573cb7a</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; pluma.fo
    fop -fo pluma.fo -pdf pluma.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

It doesn't work: Method III-b: Use docbook-xslt2-2.3.10-app (PDF)
    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 foprint index.docbook &gt; pluma.fo
    fop -fo pluma.fo -pdf pluma.pdf
</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; pluma.fo
    fop -fo pluma.fo -pdf pluma.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

It doesn't work: Method III-b: Use docbook-xslt2-2.3.10-app (PDF)
    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 foprint index.docbook &gt; pluma.fo
    fop -fo pluma.fo -pdf pluma.pdf
</pre>
</div>
</content>
</entry>
<entry>
<title>Upgrade the manual to docbook 5.0</title>
<updated>2019-03-10T08:48:29+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-02-06T23:36:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/pluma/commit/?id=82638e2df5cea0438afa1baa6241ad581ffbabe1'/>
<id>82638e2df5cea0438afa1baa6241ad581ffbabe1</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>remove type &amp; url attr of ulink in translation</title>
<updated>2019-02-04T15:35:36+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-02-03T16:26:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/pluma/commit/?id=8e08ede291bf731fc3f52d6a6bb4732f4bacba2a'/>
<id>8e08ede291bf731fc3f52d6a6bb4732f4bacba2a</id>
<content type='text'>
Closes #395

Example of generated file:

help/pluma.pot before:

msgid "To report a bug or make a suggestion regarding the &lt;application&gt;pluma&lt;/application&gt; application or this manual, follow the directions in the &lt;ulink url=\"help:mate-user-guide/feedback\" type=\"help\"&gt;MATE Feedback Page&lt;/ulink&gt;."
msgstr ""

help/pluma.pot after:

msgid "MATE Feedback Page"
msgstr ""

msgid "To report a bug or make a suggestion regarding the &lt;application&gt;pluma&lt;/application&gt; application or this manual, follow the directions in the &lt;_:ulink-1/&gt;."
msgstr ""
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #395

Example of generated file:

help/pluma.pot before:

msgid "To report a bug or make a suggestion regarding the &lt;application&gt;pluma&lt;/application&gt; application or this manual, follow the directions in the &lt;ulink url=\"help:mate-user-guide/feedback\" type=\"help\"&gt;MATE Feedback Page&lt;/ulink&gt;."
msgstr ""

help/pluma.pot after:

msgid "MATE Feedback Page"
msgstr ""

msgid "To report a bug or make a suggestion regarding the &lt;application&gt;pluma&lt;/application&gt; application or this manual, follow the directions in the &lt;_:ulink-1/&gt;."
msgstr ""
</pre>
</div>
</content>
</entry>
<entry>
<title>remove deprecated help section: Opening a File from a URI</title>
<updated>2019-02-01T13:32:06+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2019-01-29T15:34:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/pluma/commit/?id=f64c03771e2f596ad92a9ee62f311c1ec72aebf1'/>
<id>f64c03771e2f596ad92a9ee62f311c1ec72aebf1</id>
<content type='text'>
Open Location menu item is inaccessible, and mate-vs is deprecated.
To open a remote file you should connect to server first by using
Open File dialog. Next, select Other Locations from left pane, and
Connect to server.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Open Location menu item is inaccessible, and mate-vs is deprecated.
To open a remote file you should connect to server first by using
Open File dialog. Next, select Other Locations from left pane, and
Connect to server.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use the same legal.xml file</title>
<updated>2018-10-08T11:09:41+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2018-10-07T08:21:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/pluma/commit/?id=effba35d65210ce6e07cc9311e9250600da140c8'/>
<id>effba35d65210ce6e07cc9311e9250600da140c8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Refer to the strftime(3) man page for more information...</title>
<updated>2018-10-02T03:59:38+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2018-10-01T16:32:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/pluma/commit/?id=4ba02658fd9f415f79f45d52c6422622ba3485f9'/>
<id>4ba02658fd9f415f79f45d52c6422622ba3485f9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Refer to the pluma(1) man page for more information...</title>
<updated>2018-10-02T03:59:19+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2018-10-01T16:14:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/pluma/commit/?id=c4cec0e65af803a76026b8119e7e36fbaca0458f'/>
<id>c4cec0e65af803a76026b8119e7e36fbaca0458f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove unused screenshots</title>
<updated>2018-09-28T22:49:54+00:00</updated>
<author>
<name>rbuj</name>
<email>robert.buj@gmail.com</email>
</author>
<published>2018-09-27T13:43:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.mate-desktop.org/pluma/commit/?id=2cd75f967e55d4d1c558fd308af059b48f71adfc'/>
<id>2cd75f967e55d4d1c558fd308af059b48f71adfc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
