Re: Search problem

2008-12-07 Thread Werner F. Bruhin
George, Georg Brandl wrote: ... >>> >>> >> I am using 0.5 with Python 2.5 on Windows Vista. >> > > This should now also be fixed -- I hope you've set html_copy_source = False > like Mark did :) > Yes, I did. Thanks Werner --~--~-~--~~~---~--~~ Y

Re: Book / Page size settings?

2008-12-07 Thread Yarko Tymciurak
On Sun, Dec 7, 2008 at 3:21 PM, Georg Brandl <[EMAIL PROTECTED]> wrote: > > Yarko Tymciurak schrieb: > > I think I've exhausted this - > > > > I'm trying to set the latex output size to something for a book, > > specifically 7in x 9.25in. > > > You're right, adapting the commands used in sphinx.

Re: Partial word search (was: Re: [Numpy-discussion] checksum on numpy float array)

2008-12-07 Thread Roger Binns
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Georg Brandl wrote: > All approaches to client-side full text search are doomed IMO. Could you fill us in on some of the approaches that have been tried and what their problems were? > The word > index with stemmed words is large enough for project

Re: Search problem

2008-12-07 Thread Georg Brandl
Werner F. Bruhin schrieb: > Georg Brandl wrote: >> Werner F. Bruhin schrieb: >> >> >>> Just installed Firebug as recommended by Gael. >>> >>> So, when I do a search for e.g. "something" I get this error: >>> Access to restricted URI denied" code: "1012 >>> file:///C:/Dev/twcb-doc/en/build/_sta

Re: problem when building

2008-12-07 Thread Georg Brandl
mark schrieb: >> > Access to restricted URI denied" code: "1012 >> > xhr.open(type,s.url,s.async);try{if(s.da...[s.url]=modRes;if(!jsonp) >> > success();}else >> > """ >> >> Does this occur locally? Have you tried it when the docs are served >> via HTTP? (I still can't reproduce it...) > > when

Re: testcase failure in test_config

2008-12-07 Thread mark
> This is a good idea in any case.  I wouldn't want you to do all the work, > but pointers would be appreciated :)  Also, if I wanted to have a Windows > build slave, where would I get one? I have seen a talk lately on Youtube about Amazon elastic computing cloud. Really seems ready for prime tim

Re: problem when building

2008-12-07 Thread mark
> > Access to restricted URI denied" code: "1012 > > xhr.open(type,s.url,s.async);try{if(s.da...[s.url]=modRes;if(!jsonp) > > success();}else > > """ > > Does this occur locally? Have you tried it when the docs are served > via HTTP? (I still can't reproduce it...) when I use apache2 for servin

Re: Book / Page size settings?

2008-12-07 Thread Georg Brandl
Yarko Tymciurak schrieb: > I think I've exhausted this - > > I'm trying to set the latex output size to something for a book, > specifically 7in x 9.25in. > > Looking at config, I see the following blocks to doing this with / in > the document: > > - latex_elements { papersize } takes only

Re: Partial word search (was: Re: [Numpy-discussion] checksum on numpy float array)

2008-12-07 Thread Gael Varoquaux
On Sun, Dec 07, 2008 at 10:08:09PM +0100, Georg Brandl wrote: > All approaches to client-side full text search are doomed IMO. The word > index with stemmed words is large enough for projects as large as the Python > docs for example. That's sad, because that really makes sphinx unique and fant

Re: problem when building

2008-12-07 Thread Georg Brandl
mark schrieb: > sphinx-build works again after I have build and installed > Python2.6.1... > > but the search still has problems. Firebug says: > """ > Access to restricted URI denied" code: "1012 > xhr.open(type,s.url,s.async);try{if(s.da...[s.url]=modRes;if(!jsonp) > success();}else > """ Does

Re: Partial word search (was: Re: [Numpy-discussion] checksum on numpy float array)

2008-12-07 Thread Georg Brandl
All approaches to client-side full text search are doomed IMO. The word index with stemmed words is large enough for projects as large as the Python docs for example. Of course, partial search in the stemmed words would be possible, but gives odd results because you can only partially search in

Re: indentation level of rst files

2008-12-07 Thread Georg Brandl
mark schrieb: > Lets say I have multiple articles with the usual structure: > > > Document TitleA > > > Section 1 TitleB > = > > Chapter 1.1 TitleC > - > > > Is it possible to include this article in a subsection without > modifyi

Re: Qt help system

2008-12-07 Thread Georg Brandl
Antonio Valentino schrieb: > Hi, > I would like to generate Qt4 help files starting form sphinx html > output. > The only thing that is missing at the moment is the "Qt Help Project" > file (.qhp) and the "Qt Help Collection Project" file (.qhcp) > > http://doc.trolltech.com/4.4/qthelp.html > >

Re: autodoc bug

2008-12-07 Thread Georg Brandl
Michael Bayer schrieb: > the issue has a simple workaround, which is to docstring like this: > > def __init__(self): > """ > Begin the description here. > > """ > > I.e., a newline then the indent prevents the concatenation of > "classdoc" + "\n\n" + "initdoc" from screwing up the i

Re: testcase failure in test_config

2008-12-07 Thread Georg Brandl
mark schrieb: > [EMAIL PROTECTED]:~/tools/sphinx-src$ nosetests > .E. > == > ERROR: test_config.test_extension_values > -- > Traceback (mo

Re: autodoc bug

2008-12-07 Thread jason kirtland
On Sat, Dec 6, 2008 at 9:14 PM, Michael Bayer <[EMAIL PROTECTED]> wrote: > > When using autoclass_content="both" in conjunction with :param : > tags, the :param: tags fail to render correctly when present inside > the __init__ method's docstring. This is reproducible with the latest > tip. I've h

Re: Using Sphinx for a Java project

2008-12-07 Thread Georg Brandl
Lars Heuer schrieb: > Hi all, > > Just a short notice that tinyTiM, the tiny Topic Maps engine, uses > Sphinx for the project's documentation: > > > The project uses Sphinx 0.5 with a customized layout template. The > docs are work in progress but we're

Re: autodoc bug

2008-12-07 Thread Michael Bayer
the issue has a simple workaround, which is to docstring like this: def __init__(self): """ Begin the description here. """ I.e., a newline then the indent prevents the concatenation of "classdoc" + "\n\n" + "initdoc" from screwing up the indentation. The usual, "this should be acc

Using Sphinx for a Java project

2008-12-07 Thread Lars Heuer
Hi all, Just a short notice that tinyTiM, the tiny Topic Maps engine, uses Sphinx for the project's documentation: The project uses Sphinx 0.5 with a customized layout template. The docs are work in progress but we're very happy with Sphinx. Thanks :)

testcase failure in test_config

2008-12-07 Thread mark
[EMAIL PROTECTED]:~/tools/sphinx-src$ nosetests .E. == ERROR: test_config.test_extension_values -- Traceback (most recent call last): Fi

Re: problem when building

2008-12-07 Thread mark
sphinx-build works again after I have build and installed Python2.6.1... but the search still has problems. Firebug says: """ Access to restricted URI denied" code: "1012 xhr.open(type,s.url,s.async);try{if(s.da...[s.url]=modRes;if(!jsonp) success();}else """ On 7 Dez., 10:59, Georg Brandl <[EM

Re: problem when building

2008-12-07 Thread Georg Brandl
mark schrieb: >> It was a bug in the JavaScript, but is already fixed in Hg. > > I did a complete update. Then I added Optik-1.5.3. I seems now that > sphinx has problems with the ubuntu 8.04 Python2.5 version. Maybe it > would like some of the other 50+ packages available in the package > manage

Re: problem when building

2008-12-07 Thread mark
> It was a bug in the JavaScript, but is already fixed in Hg. I did a complete update. Then I added Optik-1.5.3. I seems now that sphinx has problems with the ubuntu 8.04 Python2.5 version. Maybe it would like some of the other 50+ packages available in the package manager? Which Python version d

Qt help system

2008-12-07 Thread Antonio Valentino
Hi, I would like to generate Qt4 help files starting form sphinx html output. The only thing that is missing at the moment is the "Qt Help Project" file (.qhp) and the "Qt Help Collection Project" file (.qhcp) http://doc.trolltech.com/4.4/qthelp.html They mainly contain TOC, indices and the list

autodoc bug

2008-12-07 Thread Michael Bayer
When using autoclass_content="both" in conjunction with :param : tags, the :param: tags fail to render correctly when present inside the __init__ method's docstring. This is reproducible with the latest tip. --~--~-~--~~~---~--~~ You received this message because