Opened 12 years ago

Last modified 12 years ago

#61 closed enhancement

Offer PDF of documentation — at Version 14

Reported by: EliL Owned by: jimk
Priority: major Milestone:
Component: Docs Version: 2.6
Keywords: website, documentation, PDF Cc:

Description (last modified by jimk)

It could be helpful to offer the documentation as a pdf. It is not hard to create that pdf from sphinx for example 2.4 (although I've not examined it in detail for quality):

cd /usr/local/src/geomoose/geomoose2/branches/geomoose-2.4/sphinx-docs/
make latex

cd build/latex/
make all-pdf

Change History (14)

comment:1 by EliL, 12 years ago

Owner: EliL removed
Status: newassigned

comment:2 by EliL, 12 years ago

Owner: set to jimk

comment:3 by theduckylittle, 12 years ago

The main problem with this right now is that the geomoose.org server is running Debian Lenny. We can no longer install from packages and installing tex-live from source does not sound like a good way to spend the weekend.

comment:4 by jimk, 12 years ago

Done. Although we should probably look at the docs and reorganize/tweak them to make more sense on paper as well as the web format.

http://www.geomoose.org/trunk/GeoMOOSE.pdf

comment:5 by jimk, 12 years ago

Status: assignedtesting

comment:6 by EliL, 12 years ago

This is 19 pages and lacks the main part of the documentation. Trunk builds this ways since r575. I'll see if I can find anything in various revisions to find the cause. I'm not exactly sure why 2.4 builds to 79 pages and includes what looks like everything, looks like we might have duplicate references and TOC issues.

comment:7 by EliL, 12 years ago

Actually, trunk builds this way since r498. It built fine (mostly) previously.

comment:8 by EliL, 12 years ago

Status: testingkibbitz

comment:9 by theduckylittle, 12 years ago

Version: 2.6

comment:10 by jimk, 12 years ago

Status: kibbitztesting

r921 r922

Fixed major problems with toc lists and references as well as reorganized overall toc so the documentation also makes sense in a paper format. The PDF version is up from 19 pages to 131 pages.

http://www.geomoose.org/trunk/GeoMOOSE.pdf

comment:11 by EliL, 12 years ago

Reorganization is an improvement for both paper and web. PDF looks good as well. Content-wise, I think that I can close this ticket.

However, when I try and build the docs myself (Ubuntu 10.04), I get an error, specifically I need to revert r922. Normally I would just commit build error fixes but since you specifically did the exact opposite I won't. I will try to ssh in to see how it works on the server and either fix my system or make another suggestion that suits both (obviously successful build on the server is the primary focus). Testing continues.

in reply to:  11 comment:12 by jimk, 12 years ago

Replying to EliL:

However, when I try and build the docs myself (Ubuntu 10.04), I get an error, specifically I need to revert r922. Normally I would just commit build error fixes but since you specifically did the exact opposite I won't. I will try to ssh in to see how it works on the server and either fix my system or make another suggestion that suits both (obviously successful build on the server is the primary focus). Testing continues.

That's odd. I did most of the work on Ubuntu 11.04 and r921 built normally. r922 was needed to build on the server, but I don't remember testing it on my machine. My gut say r921 feels more correct (includes relative to where file that contains the include line is located) and is more consistent with the rest of the code. r921 on the server failed because it was looking for why_abstract.txt in sphinx-docs/source instead of sphinx-docs/source/info

Further testing:
On my Debian 6.0.6 box, with sphinx 0.6.6 r921 works, and r922 fails (produces no output).

source/info/why_text.txt:1: (SEVERE/4) Problems with "include" directive path:
IOError: [Errno 2] No such file or directory: '/info/why_abstract.txt'.

On my Ubuntu 11.04 box, with sphinx 1.0.1 it builds with r921 or r922 (with the same HTML/LaTeX output).

On the server Debian 6.0.? with sphinx 1.1.3 (from easy_install), r921 fails and r922 builds (HTML same, LaTeX missing a paragraph with r921).

source/info/why_text.txt:1: SEVERE: Problems with "include" directive path:
IOError: [Errno 2] No such file or directory: 'source/why_abstract.txt'.

comment:13 by EliL, 12 years ago

I was getting the same error (SEVERE/4) with r922.

More info about 10.04 with sphinx 0.6.4-1: now builds (html and pdf) with the following change:

-.. include:: /info/why_abstract.txt
+.. include:: ./why_abstract.txt

Can you test that on your systems?

in reply to:  13 comment:14 by jimk, 12 years ago

Description: modified (diff)

Replying to EliL:

I was getting the same error (SEVERE/4) with r922.

More info about 10.04 with sphinx 0.6.4-1: now builds (html and pdf) with the following change:

-.. include:: /info/why_abstract.txt
+.. include:: ./why_abstract.txt

Can you test that on your systems?

That works the same as

include:: why_abstract.txt

for me.

BTW: Sphinx 1.1.3 from easy_install (in a virtualenv) behaves the same as the server does for me on my Ubuntu machine.

I think the "problem" is how sphinx is treating nested includes.

HTML:
welcome.txt->info/why_abstract.txt
welcome.txt->info/why.txt->info/why_text.txt->info/why_abstract.txt

LaTeX:
welcome.txt->info/why_text.txt->info/why_abstract.txt

BTW: all this silliness is because for the print version it makes sense to have the full "Why GeoMOOSE" section inline, but for the web version it just has the abstract and links off to the full document.

In old sphinx it seems to be including relative to the previous file. In 1.1.3 it seems to be including relative to the first file. I wonder which one is "correct"?

http://docutils.sourceforge.net/docs/ref/rst/directives.html#include reads to me that the relative to the including document behavior of older sphinx versions is "correct".

Note: See TracTickets for help on using tickets.