Thread: [Doxygen-develop] is it allowed to post an file-attachment over this mailing-list
Brought to you by:
dimitri
From: <Eck...@t-...> - 2006-03-12 09:25:33
|
Dear Admin of the mailing-list for doxygen-developers. =20 As I wrote before I'm working on a program to generate diagrams which = describes the algorithm of c/c++ functions and which can be included in = a doxygen-output. It should be an add-on for doxygen so I should discuss it with other = developers. But therefore I have to offer them some files for example = the program, configuration-files and some documentation. Is it possible = and, if so, is it allowed to post this as an file-attachment over this = mailing-list. I have no own home-page and so I couldn't offer a = download-possibility. =20 Regards, Eckard Klotz. |
From: Erik Z. <ze...@ma...> - 2006-03-12 18:39:23
|
On Sun March 12 2006 04:24, Eck...@t-... wrote: > Dear Admin of the mailing-list for doxygen-developers. > > > > As I wrote before I'm working on a program to generate diagrams which > describes the algorithm of c/c++ functions and which can be included in > a doxygen-output. > > It should be an add-on for doxygen so I should discuss it with other > developers. But therefore I have to offer them some files for example > the program, configuration-files and some documentation. Is it possible > and, if so, is it allowed to post this as an file-attachment over this > mailing-list. I have no own home-page and so I couldn't offer a=20 > download-possibility. > > > > Regards, > > Eckard Klotz. I believe the standard way of doing this is to file a bug report=20 (http://bugzilla.gnome.org/enter_bug.cgi?product=3Ddoxygen) severity=20 "enhancement". Then post a link to the bug asking for discussion of the=20 code. Erik P.S. Please remember that the developers of Doxygen (I'm not one of=20 those.) are volunteers, and it may take them awhile to respond. =2D-=20 ******************************************* Dr. Erik Zeek Postdoctoral Research Associate Department of Physics and Astronomy The University of Georgia Athens, GA 30602-2451 Tel: 706-542-7293 Email: mailto:ze...@ma... Html: http://www.physast.uga.edu/~zeekec ******************************************* Against stupidity the very gods Themselves contend in vain. - Johann Christoph Friedrich von Schiller (1801) ******************************************* |
From: <Eck...@t-...> - 2006-03-13 18:34:18
|
Hello Dr. Zeek. Thank you for your answer. My English is not very good, so may be I didn't wrote what I mean or I misunderstood your answer. The program I'm working on is not an origin part of doxygen. It should be a tool for doxygen like dot. So I wonder, if it is a good idea to report my problems as bugs of doxygen. On the other hand I'm searching for a possibility to offer the developers (and, if they are interested in, the users) the possibility to test my program. I have no own home-page so I'm thinking about posting the program on source-forge as own project. But this means for me to spend some time as project-administrator and time is a scarce good for me too. I know that the developers of doxygen are volunteers which couldn't work on the project around the clock. But how should they respond without the chance to test my tool? Eckard. PS. Please forgive me if my mail sounds a little bit rough. It’s always a little bit difficult for me to find the right words. ----- Original Message ----- From: "Erik Zeek" <ze...@ma...> To: <dox...@li...> Cc: <Eck...@t-...> Sent: Sunday, March 12, 2006 7:39 PM Subject: Re: [Doxygen-develop] is it allowed to post an file-attachment over this mailing-list |
From: Erik Z. <ze...@ma...> - 2006-03-13 19:24:05
|
On Mon March 13 2006 13:33, Eck...@t-... wrote: > Hello Dr. Zeek. > > Thank you for your answer. > > My English is not very good, so may be I didn't wrote what I mean or I > misunderstood your answer. > The program I'm working on is not an origin part of doxygen. It should > be a tool for doxygen like dot. So I wonder, if it is a good idea to > report my problems as bugs of doxygen. > > On the other hand I'm searching for a possibility to offer the > developers (and, if they are interested in, the users) the possibility > to test my program. I have no own home-page so I'm thinking about > posting the program on source-forge as own project. But this means for > me to spend some time as project-administrator and time is a scarce good > for me too. > > I know that the developers of doxygen are volunteers which couldn't work > on the project around the clock. But how should they respond without the > chance to test my tool? > > Eckard. > > PS. Please forgive me if my mail sounds a little bit rough. It=E2=80=99s = always > a little bit difficult for me to find the right words. Eckard, Your English is fine. I just didn't read it well enough. Your best best is SF.net or some similar site. If you can get more that=20 just Doxygen people interested, you're tool stands a much better chance of= =20 being used. As a backup plan you could use a free hosting service to host an archive of= =20 the source and publicize it here. A potential site is:=20 http://www.webfilehost.com/ They claim to host files for free (add=20 supported). Erik =2D-=20 ******************************************* Dr. Erik Zeek Postdoctoral Research Associate Department of Physics and Astronomy The University of Georgia Athens, GA 30602-2451 Tel: 706-542-7293 Email: mailto:ze...@ma... Html: http://www.physast.uga.edu/~zeekec ******************************************* Against stupidity the very gods Themselves contend in vain. - Johann Christoph Friedrich von Schiller (1801) ******************************************* |
From: Michael M. <Mic...@tt...> - 2006-03-16 18:31:51
|
Hi Eckard, Your request sounds similar to something I did, although I'm not entirely sure so tell me if I'm wrong :) I wished to add message sequence charts as diagrams to the documentation, but by adding a textual description of the MSC to the doxygen comments, in the same way that DOT diagrams can be added. To make this easy to integrate into Doxygen, I enhanced doxygen with a \cmd and \endcmd special command that would run a shell command. The format is something like this: \cmd eps{mscgen -T eps -i $in -o $out} png{mscgen -T png -i $in -o $out} ismap{mscgen -T ismap -i $in -o $out} ... \endcmd Doxygen looks at the line and depending on the type of output it requires (eps for LaTeX, png and imagemaps for HTML etc..), then selects the command line to use. $in is replaced by a temporary file that contains any text between the \cmd and \endcmd, and $out is the desired output name. Generally I use ALIASES to make the command friendlier by substituting the full \cmd and \endcmd lines to something easier to use. This change made it easy for me to call sub-programs for rendering any textual data embedded into Doxygen comments. If you are interested, look at http://www.mcternan.co.uk/mscgen/index.html. The doxygen bit is at the bottom, together with the source of course! Regards, Mike > -----Original Message----- > From: dox...@li... [mailto:doxygen-develop- > ad...@li...] On Behalf Of Eck...@t-... > Sent: 13 March 2006 18:34 > Cc: Erik Zeek > Subject: Re: [Doxygen-develop] is it allowed to post an file-attachment > over this mailing-list > > Hello Dr. Zeek. > > Thank you for your answer. > > My English is not very good, so may be I didn't wrote what I mean or I > misunderstood your answer. > The program I'm working on is not an origin part of doxygen. It should be > a > tool for doxygen like dot. So I wonder, if it is a good idea to report my > problems as bugs of doxygen. > > On the other hand I'm searching for a possibility to offer the developers > (and, if they are interested in, the users) the possibility to test my > program. I have no own home-page so I'm thinking about posting the > program > on source-forge as own project. But this means for me to spend some time > as > project-administrator and time is a scarce good for me too. > > I know that the developers of doxygen are volunteers which couldn't work > on > the project around the clock. But how should they respond without the > chance > to test my tool? > > Eckard. > > PS. Please forgive me if my mail sounds a little bit rough. It's always a > little bit difficult for me to find the right words. > > > > > ----- Original Message ----- > From: "Erik Zeek" <ze...@ma...> > To: <dox...@li...> > Cc: <Eck...@t-...> > Sent: Sunday, March 12, 2006 7:39 PM > Subject: Re: [Doxygen-develop] is it allowed to post an file-attachment > over > this mailing-list > > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a groundbreaking scripting > language > that extends applications into web and mobile media. Attend the live > webcast > and join the prime developer group breaking into this new coding > territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ > Doxygen-develop mailing list > Dox...@li... > https://lists.sourceforge.net/lists/listinfo/doxygen-develop |