Changes between Initial Version and Version 1 of Ticket #6495, comment 102
- Timestamp:
- 06/27/12 20:45:59 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6495, comment 102
initial v1 1 1 Rebased because of #12299. I'll try to work on the warnings. I think it might be best to only suppress the warnings when you run `sage --docbuild all html`, because that is when both passes of the reference manual are actually run, and the first pass is designed to be fast: it just produces the inventory files, not html output. If you run `sage --docbuild reference html`, then it will just do one pass, html format. 2 3 Edit: actually, the warnings are easy to get rid of. Florent intentionally left them there while working on the ticket: see these lines in builder.py: 4 {{{ 5 #!python 6 global ALLSPHINXOPTS 7 # ALLSPHINXOPTS += ' -Q -D multidoc_first_pass=1' 8 ALLSPHINXOPTS += ' -D multidoc_first_pass=1' 9 }}} 10 If we uncomment the second line and remove the third, the warnings will go away. I'll incorporate this change into the 4th patch.