|
From: Alan W. I. <ai...@us...> - 2004-01-01 17:08:03
|
Update of /cvsroot/plplot/plplot/src In directory sc8-pr-cvs1:/tmp/cvs-serv31941 Modified Files: plshade.c Log Message: Change the logic of the previous bug fix so the test for what to do with the plcont case is now identical to the test (pltr && pltr_data) done inside plshade. |
|
From: Rafael L. <rla...@us...> - 2004-01-01 21:33:44
|
Update of /cvsroot/plplot/plplot/src In directory sc8-pr-cvs1:/tmp/cvs-serv14915/src Modified Files: plctrl.c Log Message: In src/plctrl.c, implemented plsabort, that does for plabort the same as plsexit does for plexit (i.e., set a user abort handler). The API sections for plsexit, plabort, and plsabort have been added to doc/docbook/src/api-c.xml. The plexit section was updated, since the description of plsexit was not accurate. |
|
From: Rafael L. <rla...@us...> - 2004-01-17 16:41:43
|
Update of /cvsroot/plplot/plplot/src
In directory sc8-pr-cvs1:/tmp/cvs-serv5024/src
Modified Files:
Makefile.am pdfutils.c plargs.c plbox.c plbuf.c plcont.c
plcore.c plctrl.c plcvt.c pldtik.c plfill.c plfreetype.c
plgridd.c plhist.c plimage.c plline.c plmap.c plot3d.c
plpage.c plsdef.c plshade.c plstripc.c plsym.c pltick.c
plvpor.c plwind.c
Log Message:
This jumbo cvs commit is the result of a herculean task to update the
copyright notices of most of the source files of PLplot.
I hope that I did not introduce any serious breakage. This seems plausible,
because I did changes only at the beginning of the files and only in
commented lines. However, I used a semi-automatic procedure for doing that
and some bugs may have slipped into the files. The sources still build okay
(at least the Debian packages) and I can install the libraries, and compile
and run some C examples. That is not enough, so PLEASE TEST!
This is what I did in more detail:
1) From the CVS ChangeLog, I considered all the files that changed since the
last release (5.2.1). I then added the line:
Copyright (C) 2004 Joe C. V. S. Committer
where the name of the developper who did the CVS commit is included.
2) Notice that the year in the line above should read 2004, even if the
changes were done last year, since Copyright years refer to when the
software is released.
3) For the same reason, I did not bother adding missing Copyright entries
for previous authors of each file. One copyright holder is enough for
our purposes.
4) I also reformatted and reworded the License Conditions text. This
included changing things like "This file is free software" to "PLplot is
free sofware" and so on.
5) Finally, some files were lacking License notices, especially the src/*.c.
I added them and put in the Copyright holder line the name of the
developer who did the last cvs commit for the file.
If you wish to know where your name appears, you can run from the
$(top_builddir):
grep -ri "copyright.*2004".
|
|
From: Joao C. <jc...@us...> - 2004-01-19 19:14:26
|
Update of /cvsroot/plplot/plplot/src In directory sc8-pr-cvs1:/tmp/cvs-serv23301/src Modified Files: plmap.c Log Message: plmap(): Close map file after use, as per Andrew Ross patch |
|
From: Alan W. I. <ai...@us...> - 2004-01-19 19:17:48
|
Update of /cvsroot/plplot/plplot/src In directory sc8-pr-cvs1:/tmp/cvs-serv22647 Modified Files: plcore.c Log Message: AWI for Andrew Ross memory management cleanup. Change plInitDispatchTable() to properly initialize driver counts, Change plend() so that it properly frees dispatch table memory, and allows the PLplot library to be reinitialized if you want to start over without exiting your application. |
|
From: Rafael L. <rla...@us...> - 2004-01-19 20:00:31
|
Update of /cvsroot/plplot/plplot/src
In directory sc8-pr-cvs1:/tmp/cvs-serv5617
Modified Files:
Tag: v5_3_0
Makefile.am
Log Message:
Include $(LIBLTDL) in libplplot@LIB_TAG@_la_LIBADD conditionally on the
Automake conditional enable_dyndrivers. This fixes the problem of libltdl
being looked for when compiling libplplot under configure --disable-shared.
|
|
From: Rafael L. <rla...@us...> - 2004-01-19 23:10:29
|
Update of /cvsroot/plplot/plplot/src In directory sc8-pr-cvs1:/tmp/cvs-serv30523/src Modified Files: Makefile.am Log Message: Merged recent changes in the v5_3_0 branch into HEAD |
|
From: Alan W. I. <ai...@us...> - 2004-01-20 02:03:04
|
Update of /cvsroot/plplot/plplot/src In directory sc8-pr-cvs1:/tmp/cvs-serv1877 Modified Files: plot3d.c Log Message: Plot a contour only if the number of points in the contour is greater than zero. This fix takes care of some memory management issues (use of uninitialized values) turned up by valgrind for example 21. |