Re: questions about using Doxygen and Python scripting

2013-07-23 Thread Julien Rioux
On 22/07/2013 4:10 AM, Guenter Milde wrote: On 2013-07-22, Josh Hieronymus wrote: Second, is there a tutorial serves as a gentle introduction to Python scripting for LyX? I've not worked with Python and C++ in the same project before, so I'm not really sure how to get them to work togethe

Re: questions about using Doxygen and Python scripting

2013-07-22 Thread Guenter Milde
On 2013-07-22, Josh Hieronymus wrote: ... > Second, is there a tutorial > serves as a gentle introduction to Python scripting for LyX? I've not > worked with Python and C++ in the same project before, so I'm not really > sure how to get them to work together, especially when you consider issues >

Re: questions about using Doxygen and Python scripting

2013-07-21 Thread Pavel Sanda
Pavel Sanda wrote: > we already have working library for zipping files as a part of LyX and commit > history might even contain much more generic solution written some time back > by > Bo Peng as a part of bundled lyx format feature (and reverted later;). You can check commits around a095d0d785ca

Re: questions about using Doxygen and Python scripting

2013-07-21 Thread Pavel Sanda
Josh Hieronymus wrote: > I was thinking of using the existing C++ routines to generate the XHTML, > and then using Python to generate the additional necessary files, which are > mostly XML files with metadata and manifest info, as well as to pack the > files. My point was just that you shouldn't u

Re: questions about using Doxygen and Python scripting

2013-07-21 Thread Josh Hieronymus
On Sun, Jul 21, 2013 at 10:19 PM, Pavel Sanda wrote: > Josh Hieronymus wrote: > > Since an ePub file is pretty much a zipped file with XHTML and a few > simple > > files, I was thinking that it might be easiest to use Python to create > > them. > > If it comes to packing you might be interested t

Re: questions about using Doxygen and Python scripting

2013-07-21 Thread Pavel Sanda
Josh Hieronymus wrote: > Since an ePub file is pretty much a zipped file with XHTML and a few simple > files, I was thinking that it might be easiest to use Python to create > them. If it comes to packing you might be interested to see our lyxpak.py script. I'm not sure what you mean by 'create';

Re: questions about using Doxygen and Python scripting

2013-07-21 Thread Josh Hieronymus
On Sun, Jul 21, 2013 at 8:58 PM, Pavel Sanda wrote: > Josh Hieronymus wrote: > > I have two questions for everyone. First, is there a simple command to > use > > Doxygen to produce HTML documenting all of (or most of, or at least much > > of) LyX? I think it would really help me have an easier ti

Re: questions about using Doxygen and Python scripting

2013-07-21 Thread Pavel Sanda
Josh Hieronymus wrote: > I have two questions for everyone. First, is there a simple command to use > Doxygen to produce HTML documenting all of (or most of, or at least much > of) LyX? I think it would really help me have an easier time knowing how make doxydoc, if you have graphviz, you will get

questions about using Doxygen and Python scripting

2013-07-21 Thread Josh Hieronymus
Hi everyone, I have two questions for everyone. First, is there a simple command to use Doxygen to produce HTML documenting all of (or most of, or at least much of) LyX? I think it would really help me have an easier time knowing how the different parts of code are all related. Second, is there a

Re: using doxygen

2003-03-13 Thread Angus Leeming
John Levon wrote: > Why do you need to do anything special ? > http://www.stack.nl/~dimitri/doxygen/autolink.html Next question: is there a way to generate the html of a single file so that I can check that I'm on the right track? -- Angus

Re: using doxygen

2003-03-13 Thread Angus Leeming
John Levon wrote: > On Thu, Mar 13, 2003 at 08:04:51PM +, Angus Leeming wrote: > >> What's the doxygen way of saying Dialog::hide? Ie, is there >> an @method identifier or something? >> >> /** Invoked by Dialog::hide, allowing the Controller to >> * clean up its data structures. > > > Why

Re: using doxygen

2003-03-13 Thread John Levon
On Thu, Mar 13, 2003 at 08:04:51PM +, Angus Leeming wrote: > What's the doxygen way of saying Dialog::hide? Ie, is there > an @method identifier or something? > > /** Invoked by Dialog::hide, allowing the Controller to >* clean up its data structures. Why do you need to do a

using doxygen

2003-03-13 Thread Angus Leeming
What's the doxygen way of saying Dialog::hide? Ie, is there an @method identifier or something? /** Invoked by Dialog::hide, allowing the Controller to * clean up its data structures. */ virtual void clearParams() = 0; Angus (attempting to make this stuff compr