Ticket #69 (accepted defect)

Opened 13 years ago

Last modified 13 years ago

DockBook warnings

Reported by: sml Owned by: jerome
Priority: trivial Milestone: 1.27 final
Component: pykota Version: development
Keywords: Cc:

Description

Trying to build HTML documentation for pykota 1.27 (SVN rev. 3554) with docbook2html from docbook-utils 0.6.14 caused docbook to spit some warnings. Attached patch makes docbook happy.

Another problem is that HTML docs don't get installed into /usr/share/doc/pykota/html/ as intended. Fix for that isn't included into the patch, because I didn't know where it fits best. Either change setup.py to search for HTML files in docs/*.html instead of docs/pykota/*.html

-docfiles = glob.glob(os.sep.join(["docs", "pykota", "*.html"]))
+docfiles = glob.glob(os.sep.join(["docs", "*.html"])) 

or change debian/Makefile.docs to let it build HTML docs in subdirectory docs/pykota/ instead of docs/

-        docbook2html pykota.sgml
+        docbook2html -o pykota pykota.sgml

Attachments

pykota-docs-sgml-fixes.patch (1.7 kB) - added by sml 13 years ago.

Change History

Changed 13 years ago by sml

Changed 13 years ago by jerome

  • status changed from new to accepted
Note: See TracTickets for help on using tickets.