Re: [sphinx-dev] Sphinx 1.0 beta 2 released

2010-06-07 Thread Florian Diesch

Hi!

HTML output for literals following :returns: is wrong:

With

--8<---cut here---start->8---

.. function:: foo()

   :returns: ``True`` or ``False``

--8<---cut here---end--->8---

the HTML for the "Returns" line is


--8<---cut here---start->8---
Returns:True or False
--8<---cut here---end--->8---

causing "``True``" to be rendered as "True" (but
``False`` is fine). It's the same for other literals.






   Florian
-- 
The number of the beef: 48879

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sphinx-dev?hl=en.



Re: [sphinx-dev] Sphinx 1.0 beta 2 released

2010-06-07 Thread Florian Diesch
Georg Brandl  writes:

> Hmm, that is strange -- there is no sphinx/directives/desc.py in Sphinx 1.0
> Are you sure you're running the right code?

Yes, was my fault, a extension I wrote was still using a stray
desc.pyc. Sorry for wasting your time.


>
> Am 31.05.2010 19:32, schrieb Florian Diesch:
>> Georg Brandl  writes:
>> 
>>> I'm happy to announce the release of Sphinx 1.0 beta 2, the second testing
>>> preview of the new and shiny Sphinx 1.0.
>>>
>>>  Please test Sphinx 1.0 with your documentation now! 
>> 
>> Using the version from the repository I get a lot of DeprecationWarnings:
>> 
>> Running Sphinx v1.0b2+
>> /home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:753:
>>  DeprecationWarning: directive_dwim is deprecated and no longer needed
>>   directives.register_directive('describe', directive_dwim(DescDirective))
>> /home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:755:
>>  DeprecationWarning: directive_dwim is deprecated and no longer needed
>>   directives.register_directive('function', directive_dwim(ModulelevelDesc))
>> /home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:756:
>>  DeprecationWarning: directive_dwim is deprecated and no longer needed
>>   directives.register_directive('data', directive_dwim(ModulelevelDesc))
>> /home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:757:
>>  DeprecationWarning: directive_dwim is deprecated and no longer needed
>>   directives.register_directive('class', directive_dwim(ClasslikeDesc))
>> /home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:758:
>>  DeprecationWarning: directive_dwim is deprecated and no longer needed
>>   directives.register_directive('exception', directive_dwim(ClasslikeDesc))
>> /home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:759:
>>  DeprecationWarning: directive_dwim is deprecated and no longer needed
>>   directives.register_directive('method', directive_dwim(ClassmemberDesc))
>> /home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:760:
>>  DeprecationWarning: directive_dwim is deprecated and no longer needed
>>   directives.register_directive('classmethod', 
>> directive_dwim(ClassmemberDesc))
>> /home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:761:
>>  DeprecationWarning: directive_dwim is deprecated and no longer needed
>>   directives.register_directive('staticmethod', 
>> directive_dwim(ClassmemberDesc))
>> /home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:762:
>>  DeprecationWarning: directive_dwim is deprecated and no longer needed
>>   directives.register_directive('attribute', directive_dwim(ClassmemberDesc))
>> /home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:764:
>>  DeprecationWarning: directive_dwim is deprecated and no longer needed
>>   directives.register_directive('cfunction', directive_dwim(CDesc))
>> /home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:765:
>>  DeprecationWarning: directive_dwim is deprecated and no longer needed
>>   directives.register_directive('cmember', directive_dwim(CDesc))
>> /home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:766:
>>  DeprecationWarning: directive_dwim is deprecated and no longer needed
>>   directives.register_directive('cmacro', directive_dwim(CDesc))
>> /home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:767:
>>  DeprecationWarning: directive_dwim is deprecated and no longer needed
>>   directives.register_directive('ctype', directive_dwim(CDesc))
>> /home/diesch/.virtualenvs/

Re: [sphinx-dev] Sphinx 1.0 beta 2 released

2010-05-31 Thread Florian Diesch
Georg Brandl  writes:

> I'm happy to announce the release of Sphinx 1.0 beta 2, the second testing
> preview of the new and shiny Sphinx 1.0.
>
>  Please test Sphinx 1.0 with your documentation now! 

Using the version from the repository I get a lot of DeprecationWarnings:

Running Sphinx v1.0b2+
/home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:753:
 DeprecationWarning: directive_dwim is deprecated and no longer needed
  directives.register_directive('describe', directive_dwim(DescDirective))
/home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:755:
 DeprecationWarning: directive_dwim is deprecated and no longer needed
  directives.register_directive('function', directive_dwim(ModulelevelDesc))
/home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:756:
 DeprecationWarning: directive_dwim is deprecated and no longer needed
  directives.register_directive('data', directive_dwim(ModulelevelDesc))
/home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:757:
 DeprecationWarning: directive_dwim is deprecated and no longer needed
  directives.register_directive('class', directive_dwim(ClasslikeDesc))
/home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:758:
 DeprecationWarning: directive_dwim is deprecated and no longer needed
  directives.register_directive('exception', directive_dwim(ClasslikeDesc))
/home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:759:
 DeprecationWarning: directive_dwim is deprecated and no longer needed
  directives.register_directive('method', directive_dwim(ClassmemberDesc))
/home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:760:
 DeprecationWarning: directive_dwim is deprecated and no longer needed
  directives.register_directive('classmethod', directive_dwim(ClassmemberDesc))
/home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:761:
 DeprecationWarning: directive_dwim is deprecated and no longer needed
  directives.register_directive('staticmethod', directive_dwim(ClassmemberDesc))
/home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:762:
 DeprecationWarning: directive_dwim is deprecated and no longer needed
  directives.register_directive('attribute', directive_dwim(ClassmemberDesc))
/home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:764:
 DeprecationWarning: directive_dwim is deprecated and no longer needed
  directives.register_directive('cfunction', directive_dwim(CDesc))
/home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:765:
 DeprecationWarning: directive_dwim is deprecated and no longer needed
  directives.register_directive('cmember', directive_dwim(CDesc))
/home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:766:
 DeprecationWarning: directive_dwim is deprecated and no longer needed
  directives.register_directive('cmacro', directive_dwim(CDesc))
/home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:767:
 DeprecationWarning: directive_dwim is deprecated and no longer needed
  directives.register_directive('ctype', directive_dwim(CDesc))
/home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:768:
 DeprecationWarning: directive_dwim is deprecated and no longer needed
  directives.register_directive('cvar', directive_dwim(CDesc))
/home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:770:
 DeprecationWarning: directive_dwim is deprecated and no longer needed
  directives.register_directive('cmdoption', directive_dwim(CmdoptionDesc))
/home/diesch/.virtualenvs/sphinx-hg/lib/python2.6/site-packages/Sphinx-1.0b2_2964c2788d22dev_20100531-py2.6.egg/sphinx/directives/desc.py:771:
 DeprecationWarning: directive_dwim is deprecated and no longer needed
  directives.register_directive('envvar', directive_dwim(GenericDesc))
/home/diesch/projects/pygtkdoc/trunk/sphinx/source/gtkdoc.py:126: 
DeprecationWarning: directive_dwim is de

Re: [sphinx-dev] New theme

2010-04-09 Thread Florian Diesch
Georg Brandl  writes:

> Am 16.03.2010 01:01, schrieb Florian Diesch:
>> 
>> Hi!
>> 
>> I'm creating a new theme called "freiburg". You can get it at
>> <http://bitbucket.org/diesch/sphinx-theme-freiburg/>, a small example is
>> at <http://www.florian-diesch.de/software/my-sphinx/freiburg/demo/>
>> 
>> Any feedback is welcome.
>
> Thanks for sharing, looks nice!  If at any time you feel like it's ready
> for merging into trunk, let me know.  You can get writer access then.

Thanks :-) I think it needs some more testing and clean up. Didn't had
much time to spend on it recently...



   Florian
-- 
Any sufficiently advanced bug is indistinguishable from a feature. 
   -- Rich Kulawiec 

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sphinx-dev?hl=en.



Re: [sphinx-dev] add_description_unit - control output?

2010-03-30 Thread Florian Diesch
bob84123  writes:

> I've been using an extension with the following line, in order to
> document and catalog requirements:
>
>app.add_description_unit(directivename = 'requirement', rolename =
> 'req')
>
> Now I'd like to customise the output of the directive, but that's
> where I'm stuck.  The documentation says:
>
>"If you provide parse_node, it must be a function that takes a
> string and a docutils node, and it must populate the node with
> children parsed from the string. It must then return the name of the
> item to be used in cross-referencing and index entries. See the ext.py
> file in the source for this documentation for an example."
>
> Unfortunately I can't seem to find any such ext.py file anywhere, so I
> don't know where to start in figuring out how to use this.  Can anyone
> help?

The code has been moved into the documentation's conf.py file


   Florian
-- 
Simple dict-like Python API for GConf:
 

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sphinx-dev?hl=en.



[sphinx-dev] New theme

2010-03-15 Thread Florian Diesch

Hi!

I'm creating a new theme called "freiburg". You can get it at
, a small example is
at 

Any feedback is welcome.


   Florian
-- 
GUIs programmieren mit Python und Glade:


-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sphinx-dev?hl=en.



Re: [sphinx-dev] class attribute for HTML tags generated by :guilabel: etc.

2010-02-28 Thread Florian Diesch
Georg Brandl  writes:

> Am 27.02.2010 02:09, schrieb Florian Diesch:
>> 
>> Hi!
>> 
>> Is it possible to add a "class" attribute to the HTML tags generated by
>> :guilabel:, :kbd:, ...? I'd like to change their style via CSS and
>> that's not possible as they just have plain tags like 
>
> Now added in Hg:
> http://bitbucket.org/birkenfeld/sphinx-domains/changeset/62fe197cc230/

Thank you. :-)

   Florian
-- 
GUIs programmieren mit Python und Glade:
<http://www.florian-diesch.de/doc/python-und-glade/>

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sphinx-dev?hl=en.



[sphinx-dev] class attribute for HTML tags generated by :guilabel: etc.

2010-02-26 Thread Florian Diesch

Hi!

Is it possible to add a "class" attribute to the HTML tags generated by
:guilabel:, :kbd:, ...? I'd like to change their style via CSS and
that's not possible as they just have plain tags like 


   Florian
-- 


-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sphinx-dev?hl=en.



Re: [sphinx-dev] Re: FYI: different layout example

2010-02-21 Thread Florian Diesch
Georg Brandl  writes:

> Hmm, how much of these changes could/should be folded back into the agogo
> stylesheet?
>> --8<---cut here---start->8---
>> 
>> a {
>>   color: {{ theme_linkcolor }};
>> }
>> 
>> div.sidebar a, div.header a {
>>   text-decoration: none;
>> }
>> 
>> div.sidebar a:hover, div.header a:hover {
>>   text-decoration: underline;
>> }
>> 
>> div.bodywrapper a, div.footer a{
>>   text-decoration: underline;
>> }

Show links in the body underlined and in the sidebar and
header underlined only if the mouse is over them.

Underlined links are easier to spot, especially on low contrast displays
and for the color blind.

>> 
>> div.sidebar li.toctree-l2 a {
>>   background-color: transparent;
>>   border: none;
>>   margin-left: 1.5em; 
>>   border-bottom: 1px solid #dd;
>> }
>> 
>> div.sidebar li.toctree-l3 a {
>>   background-color: transparent;
>>   border: none;
>>   margin-left: 2.5em; 
>>   border-bottom: 1px solid #dd;
>> }

Indent submenu items in the sidebar. In agogo you can't distinguish
between level-2 and level-3 items.

Would be useful to have it in agogo.

>> div.admonition {
>> margin-top: 10px;
>> margin-bottom: 10px;
>> padding: 7px;
>> border-left: 0.2em solid black;
>> }
>> 
>> p.admonition-title {
>> margin: 0px 10px 5px 0px;
>> font-weight: bold;

Basic formatting for admonitions: A black bar on the left and a bold
title. agogo doesn't have any support for admonitions.

Would be nice to have different styles for different kinds of
admonitions.


>> img {
>>border: 0;

I think image borders are ugly in most cases

>> 
>> and changed
>> 
>> --8<---cut here---start->8---
>> div.body {
>>   padding-right: 2em;
>>   text-align: justify;
>> }
>> --8<---cut here---end--->8---
>> 
>> to
>> 
>> --8<---cut here---start->8---
>> div.body {
>>   padding-right: 2em;
>> }
>> --8<---cut here---end--->8---

Justified text tends to look ugly with short lines, especially in
languages with lots of long words like German.

Would be nice to have this as an option.



   Florian
-- 
GUIs programmieren mit Python und Glade:


-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sphinx-dev?hl=en.



Re: [sphinx-dev] Re: FYI: different layout example

2010-02-19 Thread Florian Diesch
Felix Hummel  writes:

>> On 8 Feb., 13:25, Florian Diesch  wrote:
>>> Schollii  writes:
>>> > For those interested in a somewhat different layout than one of the
>>> > two default ones, I have played around with the layout.html and CSS
>>> > and the result can be seen athttp://pubsub.sourceforge.net.
>>>
>>> <http://www.florian-diesch.de/doc/python-und-glade/online> uses a slightly
>>> modified version of the "agogo" theme included with the Sphinx 1.0
>>> development version.
>
> I like yours alot, Florian. What exactly did you modify and would you
> be so kind to share?


I added the following to agogo.css_t

--8<---cut here---start->8---

a {
  color: {{ theme_linkcolor }};
}

div.sidebar a, div.header a {
  text-decoration: none;
}

div.sidebar a:hover, div.header a:hover {
  text-decoration: underline;
}

div.bodywrapper a, div.footer a{
  text-decoration: underline;
}

div.sidebar li.toctree-l2 a {
  background-color: transparent;
  border: none;
  margin-left: 1.5em; 
  border-bottom: 1px solid #dd;
}

div.sidebar li.toctree-l3 a {
  background-color: transparent;
  border: none;
  margin-left: 2.5em; 
  border-bottom: 1px solid #dd;
}

div.admonition {
margin-top: 10px;
margin-bottom: 10px;
padding: 7px;
border-left: 0.2em solid black;
}

p.admonition-title {
margin: 0px 10px 5px 0px;
font-weight: bold;

}

img {
   border: 0;
}
--8<---cut here---end--->8---


and changed


--8<---cut here---start->8---
div.body {
  padding-right: 2em;
  text-align: justify;
}
--8<---cut here---end--->8---

to

--8<---cut here---start->8---
div.body {
  padding-right: 2em;
}
--8<---cut here---end--->8---






   Florian
-- 
<http://www.florian-diesch.de/>

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sphinx-dev?hl=en.



Re: [sphinx-dev] Cross referencing methods

2010-02-19 Thread Florian Diesch
Daniele Varrazzo  writes:

> Hello,
>
> I am writing documentation for Psycopg (yay!) using Sphinx and I have
> a problem with links between methods in the same class.
>
>>From Sphinx documentation [1] I read that i can refer to methods in
> the same class using the :meth: role without specifying the class
> name. I see the feature used e.g. in the Python doc for Thread.join()
> [2], where references :meth:`isAlive` are converted in a link.
>
> I tried to use the feature, but no link is created: for instance in
> [3] I tried to use :meth:`fetchmany` but no link is created, unless I
> use explicitely :meth:`cursor.fetchmany`. :meth:`.fetchmany`doesn't
> work either. No warning is issued either.
>
> Can you explain why is this happening? I'm using Sphinx 0.6.4 with a
> conf script mostly generated by sphinx-quickstart.

It seems the class settings are reset on every headline, including
.. rubric::

As I had similar problems I created "currentclass" directive that works
just like "currentmodule". Would be nice to have it included with future
Sphinx versions.

--8<---cut here---start->8---
from docutils.parsers.rst import directives
from docutils.parsers.rst import roles

from sphinx.util.compat import directive_dwim, Directive
from sphinx.directives.desc import ClassmemberDesc
from sphinx.roles import xfileref_role


class CurrentClass(Directive):
"""
This directive is just to tell Sphinx that we're documenting
stuff in class Foo, but links to class Foo won't lead here.
"""

has_content = False
required_arguments = 1
optional_arguments = 0
final_argument_whitespace = False
option_spec = {}
 
def run(self):
env = self.state.document.settings.env
classname = self.arguments[0].strip()
if classname == 'None':
env.currclass = None
else:
env.currclass = classname
return []


def setup(app):
directives.register_directive('currentclass', directive_dwim(CurrentClass))

--8<---cut here---end--->8---




   Florian
-- 
GUIs programmieren mit Python und Glade:


-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sphinx-dev?hl=en.



Re: [sphinx-dev] FYI: different layout example

2010-02-08 Thread Florian Diesch
Schollii  writes:

> For those interested in a somewhat different layout than one of the
> two default ones, I have played around with the layout.html and CSS
> and the result can be seen at http://pubsub.sourceforge.net. 


 uses a slightly
modified version of the "agogo" theme included with the Sphinx 1.0
development version.



   Florian
-- 


-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sphinx-dev?hl=en.



Re: [sphinx-dev] Re: FYI: different layout example

2010-02-08 Thread Florian Diesch
Roger Binns  writes:

> Schollii wrote:
>> For those interested in a somewhat different layout than one of the
>> two default ones, I have played around with the layout.html and CSS
>> and the result can be seen at http://pubsub.sourceforge.net.
>
> BTW that looks awful on my screen.  Only a small portion of the available
> space is taken up and there is a scrollbar in the content instead of using
> the available window space.  I've attached a screenshot to illustrate (very
> low quality jpg).

That's because of things like

 div.documentwrapper {
float: left;
overflow: auto;
width: 548px;
height: 600px;
border-right: 1px solid #98dbcc;
}



   Florian
-- 
GUIs programmieren mit Python und Glade:


-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sphinx-dev?hl=en.



[sphinx-dev] Another project using Sphinx

2010-01-31 Thread Florian Diesch

Hi!

I'm using the current Sphinx 1.0 development version for
, a German tutorial
for how to create GUIs using Python and Glade.

Maybe you want to include it in the Projects using Sphinx page.



   Florian
-- 
GUIs programmieren mit Python und Glade:


-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sphinx-dev?hl=en.



Re: [sphinx-dev] Re: genshi instead of jinja

2010-01-15 Thread Florian Diesch
Ciantic  writes:

> Oh, forgot to mention that there is Vim syntax highlighting for Jinja,
> I suppose some Emacs mad man has done something similar?

http://dottedmag.net/dotfiles/emacs/code/jinja.el



   Florian
-- 

-- 
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+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sphinx-dev?hl=en.