Re: [sphinx-dev] Re: How to include bibliography from BibTeX

2012-09-25 Thread sffjunkie
On Thursday, 20 September 2012 19:38:55 UTC+1, Andrea wrote: thanks guys, but I am experiencing a problem with the bibtex package at http://sphinxcontrib-bibtex.readthedocs.org/ What I get is: - acortis02-d:doc acortis$ make html sphinx-build -b html -d

[sphinx-dev] Re: Color table?

2012-09-04 Thread sffjunkie
If you're targeting HTML and your target browser supports CSS3 you can use something like the following html head style /* Specific cell */ tr:nth-child(3) td:nth-child(4) { background-color: black; color: white; } /* Specific row */ tr:nth-child(4) { background-color: green; } /* Specific

[sphinx-dev] Re: alternating background table color row

2011-08-11 Thread sffjunkie
On Aug 2, 1:25 pm, Michael P. Soulier msoul...@digitaltorque.ca wrote: Hi, I want to style my html and latex output such that each table header has a particular background color, and each row alternates between two colors. For the HTML case you can use the CSS3 nth-child selector, if your

[sphinx-dev] automodule output wierdness

2011-04-05 Thread sffjunkie
Does anyone have any idea why, when processing the following class docstring :: class ReconnectingPBClientFactory(PBClientFactory, protocol.ReconnectingClientFactory): Reconnecting client factory for PB brokers. I get the following output :: class

[sphinx-dev] [SOLVED] Re: ReST Formatting Problem.

2010-08-18 Thread sffjunkie
If anyone wants to know the answer is to use non-breakable spaces character code 160 On Aug 17, 10:52 am, sffjunkie sffjun...@gmail.com wrote: I'm not sure where else to ask but does anyone know how to include a literal which ends in a space character? More specifically I want to add 2

[sphinx-dev] Re: including docs with distribution...

2009-10-18 Thread sffjunkie
Thomas, I believe you need to create a ``MANIFEST.in`` file alongside your ``setup.py``, with a line that says:: graft docs Which should add the docs directory to your egg file (assuming you have the docs directory in the root of your project.) It works for a standard distutils project so

[sphinx-dev] Re: images in numbered lists

2009-08-23 Thread sffjunkie
On Aug 21, 12:13 pm, Samuel lykosz...@gmail.com wrote: Hi Guys, I'm adding figures in between some numbered steps like so: --- 4. Ensure that the clips are in position as shown in figure 3. .. ifconfig:: mytest=='cond1'         .. figure:: _static/image022.jpg

Re: class renaming - feedback needed!

2009-05-13 Thread sffjunkie
On May 13, 10:42 am, Doug Hellmann doug.hellm...@gmail.com wrote: classobj is good, but why is it the only one possible? Doug Or the Docbook tag 'ooclass' Simon --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: placeholders not replaced in html_title

2009-02-27 Thread sffjunkie
Well, as ``conf.py`` is just a Python script you should be able to do :: html_title = '%s Dokumentation :: SVN rev. %s' % (project, version) Regards Simon Kennedy On Feb 25, 12:39 am, andreash hilb...@gmail.com wrote: Hi there, I have a problem with html_title in conf.py. When I do