*.log
*.status
*.sub
+*bak
configure
depcomp
docs/reference/version.xml
-SUBDIRS = src
+SUBDIRS = src docs tests
EXTRA_DIST = \
libaudit.pc.in
libaudit.pc
Makefile
src/Makefile
+ docs/Makefile
+ docs/sql/Makefile
+ tests/Makefile
])
AC_OUTPUT
+++ /dev/null
-CREATE TABLE datasources (
- id integer NOT NULL,
- name character(30) DEFAULT '',
- cnc_string character(255) DEFAULT '',
- status character(1) DEFAULT '',
- CONSTRAINT datasources_pkey PRIMARY KEY (id)
-);
-
-CREATE TABLE tables (
- id integer NOT NULL,
- name character(30) DEFAULT '',
- status character(1) DEFAULT '',
- id_datasources integer NOT NULL,
- CONSTRAINT tables_pkey PRIMARY KEY (id)
-);
-
-CREATE TABLE fields (
- id integer NOT NULL,
- id_tables integer NOT NULL,
- name character(30) DEFAULT '',
- status character(1) DEFAULT '',
- CONSTRAINT campi_pkey PRIMARY KEY (id)
-);
-
-CREATE TABLE actions (
- id bigint NOT NULL,
- type integer,
- dn character(200) DEFAULT '',
- date timestamp without time zone,
- id_tables integer,
- CONSTRAINT actions_pkey PRIMARY KEY (id)
-);
-
-CREATE TABLE values (
- id bigint NOT NULL,
- id_actions bigint NOT NULL,
- id_fields integer NOT NULL,
- value character varying DEFAULT '',
- CONSTRAINT valori_pkey PRIMARY KEY (id)
-);
--- /dev/null
+SUBDIRS = sql
--- /dev/null
+EXTRA_DIST = \
+ audit.sql
--- /dev/null
+CREATE TABLE datasources (
+ id integer NOT NULL,
+ name character(30) DEFAULT '',
+ cnc_string character(255) DEFAULT '',
+ status character(1) DEFAULT '',
+ CONSTRAINT datasources_pkey PRIMARY KEY (id)
+);
+
+CREATE TABLE tables (
+ id integer NOT NULL,
+ name character(30) DEFAULT '',
+ status character(1) DEFAULT '',
+ id_datasources integer NOT NULL,
+ CONSTRAINT tables_pkey PRIMARY KEY (id)
+);
+
+CREATE TABLE fields (
+ id integer NOT NULL,
+ id_tables integer NOT NULL,
+ name character(30) DEFAULT '',
+ status character(1) DEFAULT '',
+ CONSTRAINT campi_pkey PRIMARY KEY (id)
+);
+
+CREATE TABLE actions (
+ id bigint NOT NULL,
+ type integer,
+ dn character(200) DEFAULT '',
+ date timestamp without time zone,
+ id_tables integer,
+ CONSTRAINT actions_pkey PRIMARY KEY (id)
+);
+
+CREATE TABLE values (
+ id bigint NOT NULL,
+ id_actions bigint NOT NULL,
+ id_fields integer NOT NULL,
+ value character varying DEFAULT '',
+ CONSTRAINT valori_pkey PRIMARY KEY (id)
+);
*get_datasource_from_name (Audit *audit,
const char *datasource)
{
- GList *f = g_list_first (audit->datasources);
+ AuditPrivate *priv = AUDIT_GET_PRIVATE (audit);
+
+ GList *f = g_list_first (priv->datasources);
while (f != NULL)
{