summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3a1f84b)
raw | patch | inline | side by side (parent: 3a1f84b)
author | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Tue, 10 Jun 2008 16:37:39 +0000 (16:37 +0000) | ||
committer | oetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Tue, 10 Jun 2008 16:37:39 +0000 (16:37 +0000) |
program/00README | patch | blob | history | |
program/CONTRIBUTORS | patch | blob | history | |
program/PROJECTS | [deleted file] | patch | blob | history |
program/TODO | patch | blob | history | |
program/configure.ac | patch | blob | history | |
program/rrdtool-1.3-release | patch | blob | history |
diff --git a/program/00README b/program/00README
index 5f197b3fc627b1382b5480a395d47dd2de09730e..f0b87132cfa1570cfb965846a612c56de03adc67 100644 (file)
--- a/program/00README
+++ b/program/00README
Title: RRDtool
-Date: 2005-04-04
+Date: 2008-06-11
Owner: Tobias Oetiker <tobi@oetiker.ch>
Group: Software
diff --git a/program/CONTRIBUTORS b/program/CONTRIBUTORS
index 3a33ebe377e2d1d107ef50ed8c750bfac4e0165c..847c1d149f66aa3f65c18beacba34e884378a7ea 100644 (file)
--- a/program/CONTRIBUTORS
+++ b/program/CONTRIBUTORS
David L. Barker <dave with ncomtech.com> xport function bug fixes
Evan Miller <emiller with imvu.com> Multiplicative HW Enhancements
Frank Strauss <strauss with escape.de> TCL bindings
-Florian octo Forster <rrdtool nospam.verplant.org> rrd_restore libxml2 rewrite
+Florian octo Forster <rrdtool nospam.verplant.org> rrd_restore libxml2 rewrite deprecated function export
Henrik Storner <henrik with hswn.dk> functions for min/max values of data in graph
Hermann Hueni <hueni with glue.ch> (SunOS porting)
Jakob Ilves <jilves with se.oracle.com> HPUX 11
diff --git a/program/PROJECTS b/program/PROJECTS
--- a/program/PROJECTS
+++ /dev/null
@@ -1,43 +0,0 @@
-NEW RRD DATAFORMAT with Accessor Functions
-==========================================
-
-Interested:
-
-Tobias Oetiker <tobi@oetiker.ch>
-Jake Brutlag <jakeb@microsoft.com>
-- updating rrd_update to use accessor fks
-
-Plan:
-
-Encapsulating access to the RRD files through
-special accessor functions which provide
-access to the datastructures within the
-RRDfiles.
-
-pseudo code by Jake
-
-For example, here is a current code block from rrd_update.c:
-
- for (i=0;i<rrd.stat_head->ds_cnt;i++) {
- if(isnan(pdp_new[i]))
- rrd.pdp_prep[i].scratch[PDP_unkn_sec_cnt].u_cnt += interval;
- else
- rrd.pdp_prep[i].scratch[PDP_val].u_val+= pdp_new[i];
- }
-
-This could read:
-
- for (i=0 ; i < getDSCount(&rrd) ;i++) {
- if(isnan(pdp_new[i])) {
- temp = getPDPParam(&rrd, i, PDP_unkn_sec_cnt);
- temp.u_cnt += interval;
- setPDPParam(&rrd, i, PDP_unkn_sec_cnt, temp);
- } else {
- temp = getPDPParam(&rrd, i, PDP_val);
- temp.u_val += pdp_new[i];
- setPDPParam(&rrd, i, PDP_val, temp);
- }
- }
-
-
-
diff --git a/program/TODO b/program/TODO
index c7a06c98d00e841e6f6d2ec2c9a2c5c27f417daa..00ebc24db0d29beea1d2fd124868f31852bb04de 100644 (file)
--- a/program/TODO
+++ b/program/TODO
Random Feature Ideas for RRDtool
--------------------------------
-Updated: 2008-05-26
+Updated: 2008-06-26
+
+add accessor functions for rrd manipulation
reverse order of stacked graph entries prior to plotting ... this is to make
plotting order more naturally fit with the ordering of the legend ...
diff --git a/program/configure.ac b/program/configure.ac
index d634c051657622289c2f43ce56012adba4a98287..276125fedc2968c6432997b553d3f9843c2e228e 100644 (file)
--- a/program/configure.ac
+++ b/program/configure.ac
dnl the official version number is
dnl a.b.c
-AC_INIT([rrdtool],[1.3rc9])
+AC_INIT([rrdtool],[1.4.0])
dnl for testing a numberical version number comes handy
dnl the released version are
dnl a.bccc
dnl the devel versions will be something like
dnl a.b999yymmddhh
-NUMVERS=1.299908060801
+NUMVERS=1.4000
AC_SUBST(NUMVERS)
dnl for the linker to understand which version the library is compatible with
index a3d129fbfd0f59554ccb9058cf874e20add9fe29..0762c823c680464d34ad6f7924e70c28882d0d28 100755 (executable)
make
src/rrdtool
cd ..
-scp CHANGES rrdtool*.tar.gz oposs@james:public_html/rrdtool/pub/beta
-ssh oposs@james "cd public_html/rrdtool/pub/beta/;rm rrdtool.tar.gz;ln -s rrdtool-$VERSION.tar.gz rrdtool.tar.gz"
+scp CHANGES rrdtool*.tar.gz oposs@james:public_html/rrdtool/pub
+ssh oposs@james "cd public_html/rrdtool/pub/;rm rrdtool.tar.gz;ln -s rrdtool-$VERSION.tar.gz rrdtool.tar.gz"
cd ..
rm -rf rrdtool-$$
svn copy -m "tagging version $VERSION" svn://svn.oetiker.ch/rrdtool/trunk/program svn://svn.oetiker.ch/rrdtool/tags/$VERSION