Re: [sphinx-dev] how to turn off alphabetical ordering ?

2010-04-18 Thread Georg Brandl
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am 13.04.2010 03:01, schrieb Michael Rule: > and .. I do believe that worked. thank you very much. > > now to figure out how to add in links to the source > --mrule You can use the "viewcode" extension (also new in trunk; docs see here: http://s

Re: [sphinx-dev] how to turn off alphabetical ordering ?

2010-04-12 Thread Michael Rule
and .. I do believe that worked. thank you very much. now to figure out how to add in links to the source --mrule On Mon, Apr 12, 2010 at 7:01 PM, TP wrote: > On Mon, Apr 12, 2010 at 11:17 AM, Michael Rule wrote: >> hmm, naively tried installing 1.0 with the following commands hg clon

Re: [sphinx-dev] how to turn off alphabetical ordering ?

2010-04-12 Thread TP
On Mon, Apr 12, 2010 at 11:17 AM, Michael Rule wrote: > hmm, naively tried installing 1.0 with the following commands >>> hg clone http://bitbucket.org/birkenfeld/sphinx >>> sudo python setup.py develop > > With > autodoc_member_order = 'bysource' > at the bottom of the config file. > > Nothing ch

Re: [sphinx-dev] how to turn off alphabetical ordering ?

2010-04-12 Thread Michael Rule
hmm, naively tried installing 1.0 with the following commands >> hg clone http://bitbucket.org/birkenfeld/sphinx >> sudo python setup.py develop With autodoc_member_order = 'bysource' at the bottom of the config file. Nothing changed so I tried re-directing the SPHINXBUILD variable in the makefil

Re: [sphinx-dev] how to turn off alphabetical ordering ?

2010-04-12 Thread DasIch
1.0 is currently in development and far from being released. However the main branch is quite stable so you could just get the tip from the repo. Instead of using the main branch you could also use sphinx-domains which should be just as stable but allows you to document C, C++ and Javascript cod

Re: [sphinx-dev] how to turn off alphabetical ordering ?

2010-04-12 Thread Michael Rule
thanks, so putting autodoc_member_order = 'bysource' at the bottom of conf.py would work, if I had this version ? and I assume there is some way to update to this version ? On Mon, Apr 12, 2010 at 12:15 PM, TP wrote: > On Mon, Apr 12, 2010 at 8:33 AM, Michael Rule wrote: >> I would like to pres

Re: [sphinx-dev] how to turn off alphabetical ordering ?

2010-04-12 Thread TP
On Mon, Apr 12, 2010 at 8:33 AM, Michael Rule wrote: > I would like to preserve source ordering in my documentation. I tried adding > autodoc_member_order = 'groupwise' > to the conf.py file, but this doesn't seem to do anything. What is the > proper way to turn off alphabetical sorting ?? > > --m