preparing for 1.3
authoroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Tue, 10 Jun 2008 16:37:39 +0000 (16:37 +0000)
committeroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Tue, 10 Jun 2008 16:37:39 +0000 (16:37 +0000)
git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@1427 a5681a0c-68f1-0310-ab6d-d61299d08faa

00README
CONTRIBUTORS
PROJECTS [deleted file]
TODO
configure.ac
rrdtool-1.3-release

index 5f197b3..f0b8713 100644 (file)
--- a/00README
+++ b/00README
@@ -1,5 +1,5 @@
 Title: RRDtool
-Date: 2005-04-04
+Date: 2008-06-11
 Owner: Tobias Oetiker <tobi@oetiker.ch>
 Group: Software
 
index 3a33ebe..847c1d1 100644 (file)
@@ -21,7 +21,7 @@ David Grimes <dgrimes with navisite.com> SQRT/SORT/REV/SHIFT/TREND
 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/PROJECTS b/PROJECTS
deleted file mode 100644 (file)
index 68a5fcf..0000000
--- a/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/TODO b/TODO
index c7a06c9..00ebc24 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,6 +1,8 @@
 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 ...
index d634c05..276125f 100644 (file)
@@ -9,14 +9,14 @@ dnl tell automake the this script is for rrdtool
 
 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 a3d129f..0762c82 100755 (executable)
@@ -29,8 +29,8 @@ cd rrdtool-$VERSION
 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