[sphinx-dev] EPUB Output improvements

2010-07-28 Thread Kovid
It would be nice to have support for dc:date in the OPF metadata and a cover. Both of these are implemented in the EpubBuilder sub class here: http://bazaar.launchpad.net/~kovid/calibre/trunk/annotate/head:/src/calibre/manual/epub.py Unfortunately I don't have the time to create a patch against

Re: [sphinx-dev] Re: lilypond extension

2010-07-28 Thread Vadim Gubergrits
Hi Federico, It looks like lilypond failed at some stage. Try to run the following commands (Linux or MacOS): $ mkdir out $ echo \relative c'' {c4 a d c} music.ly $ lilypond -dbackend=eps -dno-gs-load-fonts -dinclude-eps-fonts -o out --png music.ly You will have a file

[sphinx-dev] citations / references as numbers

2010-07-28 Thread peo
How to get the citations / references look like [number] ? The number- inside-square-brackets [1], [2], ... is the typical LaTeX look one gets from \cite{LABEL}, and how i think is the common way to typeset citations in scientific articles or technical reports. However, from Sphinx, both the HTML

[sphinx-dev] Creating a custom directive: trials and tribulations

2010-07-28 Thread eegg
I'm attempting to create a custom reST directive, which returns a tree of `containers`, two of which contain a `LiteralInclude` directive. Here's the code for my extension module: class AsmFileDirective(rst.Directive): required_arguments = 1 optional_arguments = 0 has_content = False

[sphinx-dev] Re: Creating a custom directive: trials and tribulations

2010-07-28 Thread James Fisher
To clarify, this is the end result that I want. The following: .. asmfile:: cat will get expanded into the equivalent of: .. container:: sourceandoutput .. container:: source .. container:: header cat.nasm .. literalinclude:: /code/cat/clip.nasm ..

[sphinx-dev] Sphinx doc and sphinxsearch

2010-07-28 Thread slafs
Hi there! Kind of silly question. Does Sphinx - documentation generator has anything to do with Sphinx - free open-source SQL full-text search engine? I'm asking about any possible similarities or any common things/people behind those two. Regards PS. I see quite similar logo ;) -- You

Re: [sphinx-dev] Sphinx doc and sphinxsearch

2010-07-28 Thread DasIch
The only similarity is the name and may be the similar logo as you pointed out. -- You received this message because you are subscribed to the Google Groups sphinx-dev group. To post to this group, send email to sphinx-...@googlegroups.com. To unsubscribe from this group, send email to

[sphinx-dev] Re: citations / references as numbers

2010-07-28 Thread peo
By the way, can the bibliographic fields be used to get citation / reference as number, inside brackets, e.g. [1] etc. ? I m a beginner to Sphinx - i suppose you experienced can give advice. I would be very surprised if i m the only one who would like to see referencing / citations type set as is

[sphinx-dev] How to use intersphinx to link to sphinx or python documentation

2010-07-28 Thread Christoph Neuroth
Hi, I just started using sphinx 1.0 for our documentation and I'm having trouble using the intersphinx extension. I added python and sphinx itself in conf.py: intersphinx_mapping = { 'python': ('http://docs.python.org/', None), 'sphinx': ('http://sphinx.pocoo.org', None) } And now I try

[sphinx-dev] Projects using sphinx: PyTango and tau

2010-07-28 Thread coutinhotiago
Hello, I would like to add PyTango and tau to the list of projects that gladdly use sphinx. The links are respectively: PyTango: http://www.tango-controls.org/static/PyTango/latest/doc/html/index.html tau: http://www.tango-controls.org/static/tau/latest/doc/html/index.html -- You received this

Re: [sphinx-dev] Re: lilypond extension

2010-07-28 Thread Federico Bruni
Il giorno mer, 28/07/2010 alle 00.01 -0400, Vadim Gubergrits ha scritto: Hi Federico, It looks like lilypond failed at some stage. Try to run the following commands (Linux or MacOS): $ mkdir out $ echo \relative c'' {c4 a d c} music.ly $ lilypond -dbackend=eps

[sphinx-dev] Python3 support in Sphinx trunk

2010-07-28 Thread DasIch
Hello Sphinx Users, Developers and Fans, Today we added support for Python 3.x to Sphinx and we would like to invite you to test it, to play around with it and to see if it works with your existing Python 3.x projects. In order to install it locally we recommend using virtualenv3 or virtualenv5

Re: [sphinx-dev] How to use intersphinx to link to sphinx or python documentation

2010-07-28 Thread Kevin Horn
On Wed, Jul 28, 2010 at 5:47 AM, Christoph Neuroth christoph.neur...@googlemail.com wrote: Hi, Howdy! I just started using sphinx 1.0 for our documentation and I'm having trouble using the intersphinx extension. I added python and sphinx itself in conf.py: intersphinx_mapping = {

Re: [sphinx-dev] How to use intersphinx to link to sphinx or python documentation

2010-07-28 Thread DasIch
I'm having trouble using the intersphinx extension. I added python and sphinx itself in conf.py: intersphinx_mapping = { 'python': ('http://docs.python.org/', None), 'sphinx': ('http://sphinx.pocoo.org', None) } Did you also add 'sphinx.extensions.intersphinx' to the `extensions`