Difference between revisions of "Test Documentation in Linux"
(→Tell Development GnuCash Where to Find Docs: several minor improvements) |
(use {{mac}}; fix internal link; /* Testing /) |
||
Line 1: | Line 1: | ||
+ | [[Category:Documentation Development]] | ||
==Test Documentation in Linux== | ==Test Documentation in Linux== | ||
− | For our purposes, “Linux” means any system that’s not Windows or | + | For our purposes, “Linux” means any system that’s not Windows or {{mac}}. GnuCash uses <tt>Yelp</tt>, the GNOME help browser, to display its help — both the User Manual and the Concepts Guide. This documentation gets still installed into the old GNOME 2 standard help directory hierarchy. |
− | Aside from the above limitations you can test the documentation changes with any installed | + | Although not tested, it's very likely that a ''cygwin'' environment on '''Windows''' or a ''fink/homebrew/macports'' environment on '''{{mac}}''' can equally be configured to run these documentation tests. GnuCash as installed from the Windows Installer package or the {{mac}}/Quarz dmg on the other hand can not. |
+ | |||
+ | Aside from the above limitations you can test the documentation changes with any installed GnuCash, version 2.6 or higher. Of course if you have written '''context help''' for a feature that is not present in your installed version of GnuCash, you won't be able to test the direct context help button for that feature. You will however still be able to open the new help or guide in general from your installed (2.6+) version of gnucash. | ||
If you want to test the changes you just made to the documentation without interfering with the already-installed versions, you need to install a development version of GnuCash locally first. | If you want to test the changes you just made to the documentation without interfering with the already-installed versions, you need to install a development version of GnuCash locally first. | ||
Line 11: | Line 14: | ||
# tell your (locally) installed (2.6+) version of gnucash where to find it. | # tell your (locally) installed (2.6+) version of gnucash where to find it. | ||
− | If you don’t want to test interaction with GnuCash, see [[# | + | If you don’t want to test interaction with GnuCash, see [[#Tell Development GnuCash Where to Find Docs|below]] for a way to do that. |
===Install Development GnuCash Locally=== | ===Install Development GnuCash Locally=== | ||
Line 63: | Line 66: | ||
<SyntaxHighlight lang="sh"> | <SyntaxHighlight lang="sh"> | ||
LANG=$GLANG XDG_DATA_DIRS="$GCASHDOCS/share:$XDG_DATA_DIRS" yelp ghelp:gnucash-help#Using-Help & | LANG=$GLANG XDG_DATA_DIRS="$GCASHDOCS/share:$XDG_DATA_DIRS" yelp ghelp:gnucash-help#Using-Help & | ||
− | # 'ghelp:' | + | # 'ghelp:' or 'gnome-help:' is a shortcut to tell yelp to locate the document in its DATA_DIRS |
# '#' separates the topic from the filename | # '#' separates the topic from the filename | ||
</SyntaxHighlight> | </SyntaxHighlight> | ||
− | That should open up your development-version GnuCash docs without first starting GnuCash itself. Handy if you don’t need to test GnuCash along with the docs | + | That should open up your development-version GnuCash docs without first starting GnuCash itself. Handy if you don’t need to test GnuCash along with the docs — i.e., if you’re just updating sections that are already ''in'' the docs. |
− | |||
− | |||
+ | ===Conclusion=== | ||
Now you can update both your local GnuCash and GnuCash docs freely and test their interaction. | Now you can update both your local GnuCash and GnuCash docs freely and test their interaction. | ||
− | + | ==Testing== | |
+ | ===Which tests to run when=== | ||
+ | * After each Edit | ||
+ | *# run <SyntaxHighlight lang="sh" inline>make check</SyntaxHighlight> to detect typos; | ||
+ | *# run <SyntaxHighlight lang="sh" inline>make install && yelp ghelp:$DOCUMENT</SyntaxHighlight> to test in yelp; | ||
+ | *# run <SyntaxHighlight lang="sh" inline>make html</SyntaxHighlight> and test the document in your preferred browser. | ||
+ | * Before committing/pushing your changes | ||
+ | *# run xmlformat over changed files (don't forget to add the changes to git); | ||
+ | *# <SyntaxHighlight lang="sh" inline>make pdf</SyntaxHighlight> as the FOP module used by ''pdf'', ''epub'' and ''mobi'' is stricter than others. | ||
+ | *#: It aborts on ''undefined table columns''. | ||
+ | *#: It warns about ''unresolved links''. | ||
+ | ===Efficient Work Process=== | ||
+ | To work parallel with your computer start 2 bash sessions. After saving your changes: <SyntaxHighlight lang="sh"> | ||
+ | # Session 1 in your BUILDDIR: | ||
+ | make check | ||
+ | make install | ||
+ | make html | ||
+ | #while it is running | ||
+ | # Session 2 where you like: | ||
+ | && yelp ghelp:$DOCUMENT | ||
+ | after testing: | ||
+ | # Session 1 optionally: | ||
+ | make pdf | ||
+ | # (while running,) open or refresh the document in your browser | ||
+ | # finally check the pdf file | ||
+ | </SyntaxHighlight> |
Revision as of 12:51, 21 May 2021
Contents
Test Documentation in Linux
For our purposes, “Linux” means any system that’s not Windows or macOS. GnuCash uses Yelp, the GNOME help browser, to display its help — both the User Manual and the Concepts Guide. This documentation gets still installed into the old GNOME 2 standard help directory hierarchy.
Although not tested, it's very likely that a cygwin environment on Windows or a fink/homebrew/macports environment on macOS can equally be configured to run these documentation tests. GnuCash as installed from the Windows Installer package or the macOS/Quarz dmg on the other hand can not.
Aside from the above limitations you can test the documentation changes with any installed GnuCash, version 2.6 or higher. Of course if you have written context help for a feature that is not present in your installed version of GnuCash, you won't be able to test the direct context help button for that feature. You will however still be able to open the new help or guide in general from your installed (2.6+) version of gnucash.
If you want to test the changes you just made to the documentation without interfering with the already-installed versions, you need to install a development version of GnuCash locally first.
To test the changes,
- install the changed documentation locally, and
- tell your (locally) installed (2.6+) version of gnucash where to find it.
If you don’t want to test interaction with GnuCash, see below for a way to do that.
Install Development GnuCash Locally
Remember this can be skipped if you prefer and have version 2.6+ of gnucash installed. It's only required to run context help tests.
Without any special configuration the default installation directory will be /usr/local/... on Linux based systems. This is usually not a good location during development (or documentation changing), because this would interfere with your stable, running system and that's generally not what you want on a modern system where installing software is usually done via a package manager. So for development purposes we need to tell the build system to use another final location. This is done by running configure with the --prefix option. The installation directory should meet the following requirements:
- it should be a writable location for the user that runs make install
- it should not be in the default paths /usr or /usr/local
Build and install GnuCash locally as per Building. Let's say you've installed GnuCash in
/home/$USER/code/gnucash-install
Install Updated Documentation Locally
Let's say you wish to build your modified documentation in /home/$USER/code/gnucash-docs-install
These are the commands for that using …
- CMake
-
cd /home/$USER/code/gnucash-docs mkdir build cd build cmake -G"Unix Makefiles" -DCMAKE_INSTALL_PREFIX=/home/$USER/code/gnucash-docs-install /home/$USER/code/gnucash-docs # Add any other needed options... make install
- Autotools (deprecated)
-
cd /home/$USER/code/gnucash-docs ./autogen.sh # First time only, when building from repository copy mkdir build cd build ../configure --prefix=/home/$USER/code/gnucash-docs-install # Add any other needed options... make install
Tell Development GnuCash Where to Find Docs
At first verify, what is already set: echo ${XDG_DATA_DIRS}
GCASH=/home/$USER/code/gnucash-install # For convenience if you built gnucash yourself, otherwise:
GCASH=/usr # For convenience if you use a default installed gnucash
GCASHDOCS=/home/$USER/code/gnucash-docs-install # For convenience
GLANG=<your-language> # To choose a language different from your user default, can be any of the supported languages: C, de, it, pt, ja,...
# To start gnucash with your own help files:
# From the following line add only the parts which are not already set:
LANG=$GLANG XDG_DATA_DIRS="$GCASHDOCS/share:$XDG_DATA_DIRS:/usr/local/share:/usr/share" $GCASH/bin/gnucash &
That last line, with XDG_DATA_DIRS, is the crux of it. That environment variable tells GnuCash, among other things, where to look for the documentation. In fact, it tells any tool which follows XDG standards (and Yelp itself) where to look for documentation.
To directly start yelp with a document and optionally a topic, try the following:
LANG=$GLANG XDG_DATA_DIRS="$GCASHDOCS/share:$XDG_DATA_DIRS" yelp ghelp:gnucash-help#Using-Help &
# 'ghelp:' or 'gnome-help:' is a shortcut to tell yelp to locate the document in its DATA_DIRS
# '#' separates the topic from the filename
That should open up your development-version GnuCash docs without first starting GnuCash itself. Handy if you don’t need to test GnuCash along with the docs — i.e., if you’re just updating sections that are already in the docs.
Conclusion
Now you can update both your local GnuCash and GnuCash docs freely and test their interaction.
Testing
Which tests to run when
- After each Edit
- run
make check
to detect typos; - run
make install && yelp ghelp:$DOCUMENT
to test in yelp; - run
make html
and test the document in your preferred browser.
- run
- Before committing/pushing your changes
- run xmlformat over changed files (don't forget to add the changes to git);
-
make pdf
as the FOP module used by pdf, epub and mobi is stricter than others.- It aborts on undefined table columns.
- It warns about unresolved links.
Efficient Work Process
To work parallel with your computer start 2 bash sessions. After saving your changes:# Session 1 in your BUILDDIR:
make check
make install
make html
#while it is running
# Session 2 where you like:
&& yelp ghelp:$DOCUMENT
after testing:
# Session 1 optionally:
make pdf
# (while running,) open or refresh the document in your browser
# finally check the pdf file