aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS12
-rw-r--r--README-alpha66
-rw-r--r--TODO44
-rw-r--r--configure.ac4
4 files changed, 121 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index 07ed6b8..a18ffb6 100644
--- a/NEWS
+++ b/NEWS
@@ -1,14 +1,16 @@
1tagr NEWS - User visible changes. 1Tagr NEWS -- history of user-visible changes. 2009-04-27
2Copyright (C) 2000, 2005, 2009 Max Bouglacoff, Sergey Poznyakoff 2Copyright (C) 2000, 2005, 2009 Max Bouglacoff, Sergey Poznyakoff
3See the end for copying conditions. 3See the end of file for copying conditions.
4 4
5Please send tagr bug reports to <gray@gnu.org.ua> 5Please send tagr bug reports to <gray@gnu.org.ua>
6 6
7Version 1.9.90 (Git) 7Version 1.9.90 (Git)
8 8
9Major rewrite.
10
9^L 11^L
10Version 1.0 12Version 1.0
11 13
12Initial release. See `README' for details. 14Initial release. See `README' for details.
13 15
14 16
@@ -31,11 +33,15 @@ along with tagr; see the file COPYING. If not, write to
31the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 33the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
32Boston, MA 02111-1307, USA. 34Boston, MA 02111-1307, USA.
33 35
34 36
35Local variables: 37Local variables:
36mode: outline 38mode: outline
37paragraph-separate: "[ ]*$" 39paragraph-separate: "[ ]*$"
40eval: (add-hook 'write-file-hooks 'time-stamp)
41time-stamp-start: "changes. "
42time-stamp-format: "%:y-%02m-%02d"
43time-stamp-end: "\n"
38end: 44end:
39 45
40 46
41 47
diff --git a/README-alpha b/README-alpha
new file mode 100644
index 0000000..3c3d054
--- /dev/null
+++ b/README-alpha
@@ -0,0 +1,66 @@
1This file is part of Tagr.
2See end of file for copying conditions.
3
4* Introduction
5
6This is a *pre-release* version, and not ready for production use yet.
7If you are taking source from Git, you will need to have several
8special tools to help contribute. See the file README-hacking for more
9information. See chapter `Building' for the detailed instructions on
10how to build the package.
11
12Please, note that the accompanying documentation may be inaccurate
13or incomplete. The Git logs are the authoritative documentation of
14all recent changes.
15
16Please, send comments and problem reports to <gray@gnu.org.ua>.
17
18* Checking Out the Sources
19
20The following instructions apply if you wish to obtain sources from
21the Git repository:
22
23To clone the Tagr repository, issue the following command:
24
25 git clone git://git.gnu.org.ua/tagr.git
26
27or
28
29 git clone http://git.gnu.org.ua/repo/tagr.git
30
31This will create a directory named `tagr' and populate it with the
32sources.
33
34For more information about Git access, visit
35http://puszcza.gnu.org.ua/git/?group=tagr
36
37* Building
38
39Usual procedures apply:
40
41 ./configure
42 make
43 make install
44
45See the files INSTALL and README for the detailed instructions.
46
47* Copyright information:
48
49Copyright (C) 2009 Sergey Poznyakoff
50
51 Permission is granted to anyone to make or distribute verbatim copies
52 of this document as received, in any medium, provided that the
53 copyright notice and this permission notice are preserved,
54 thus giving the recipient permission to redistribute in turn.
55
56 Permission is granted to distribute modified versions
57 of this document, or of portions of it,
58 under the above conditions, provided also that they
59 carry prominent notices stating who last changed them.
60
61
62Local Variables:
63mode: outline
64paragraph-separate: "[ ]*$"
65version-control: never
66End:
diff --git a/TODO b/TODO
new file mode 100644
index 0000000..0871b7e
--- /dev/null
+++ b/TODO
@@ -0,0 +1,44 @@
1Tagr TODO list. 2009-04-27
2Copyright (C) 2009 Sergey Poznyakoff
3
4* Zero-unknown option and interrupted data feeds
5
6Decide what to do if a data feed gets interrupted.
7
8* Synchronous updates
9
10Provide an option to schedule graph updates after finishing
11processing of a feed.
12
13* Percentage graphs
14
15* Filled graphs
16
17Figure out how to properly fill a graph.
18
19* Improve symbol tables
20
21There should be two numeric data types: integer and double. Provide
22a way to define symbols from the configuration file, in the
23topmost level as well as within a monitor. This will also require
24changing of the way tables are stored on disk.
25
26* Accept symbolic color names in `color-*' statements
27
28* Growright option
29
30Decide what to do with the `growright' argument to draw_graph.
31
32* Separate graphs
33
34It could be desirable to split graphs into separate ones.
35
36
37Local variables:
38mode: outline
39paragraph-separate: "[ ]*$"
40eval: (add-hook 'write-file-hooks 'time-stamp)
41time-stamp-start: "list. "
42time-stamp-format: "%:y-%02m-%02d"
43time-stamp-end: "\n"
44end:
diff --git a/configure.ac b/configure.ac
index 70e0c79..91dd85c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -12,18 +12,18 @@
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details. 13# GNU General Public License for more details.
14# 14#
15# You should have received a copy of the GNU General Public License 15# You should have received a copy of the GNU General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>. 16# along with this program. If not, see <http://www.gnu.org/licenses/>.
17 17
18AC_PREREQ(2.59) 18AC_PREREQ(2.61)
19AC_INIT([tagr], 1.9.90, [gray@gnu.org.ua]) 19AC_INIT([tagr], 1.9.90, [gray@gnu.org.ua])
20AC_CONFIG_SRCDIR([src/main.c]) 20AC_CONFIG_SRCDIR([src/main.c])
21AC_CONFIG_AUX_DIR([build-aux]) 21AC_CONFIG_AUX_DIR([build-aux])
22AC_CONFIG_HEADER([config.h]) 22AC_CONFIG_HEADER([config.h])
23AM_INIT_AUTOMAKE([1.8 gnits]) 23AM_INIT_AUTOMAKE([1.10 gnits tar-ustar std-options])
24 24
25# Checks for programs. 25# Checks for programs.
26AC_PROG_CC 26AC_PROG_CC
27gl_EARLY 27gl_EARLY
28AM_PROG_LEX 28AM_PROG_LEX
29AC_PROG_YACC 29AC_PROG_YACC

Return to:

Send suggestions and report system problems to the System administrator.