Wmap database merged, new wmap_generic module, fix website tree display and docs.

git-svn-id: file:///home/svn/framework3/trunk@5740 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
et
2008-10-12 03:46:49 +00:00
parent b1f3c83f7b
commit c153d1fea0
8 changed files with 375 additions and 225 deletions
+25
View File
@@ -57,3 +57,28 @@ create table notes (
'ntype' VARCHAR(512),
'data' TEXT
);
drop table requests;
create table requests (
'host' VARCHAR(20),
'port' INTEGER,
'ssl' INTEGER,
'meth' VARCHAR(20),
'path' BLOB,
'headers' BLOB,
'query' BLOB,
'body' BLOB,
'respcode' VARCHAR(5),
'resphead' BLOB,
'response' BLOB,
'created' TIMESTAMP
);
drop table targets;
create table targets (
'id' INTEGER PRIMARY KEY NOT NULL,
'host' VARCHAR(20),
'port' INTEGER,
'ssl' INTEGER,
'selected' INTEGER
);