id integer not null primary key default nextval('public.documents_id_seq'::text),
41
class text not null,
42
ctime timestamp not null default now(),
43
mtime timestamp not null default now(),
44
status smallint not null default 1,
45
source_id integer not null,
46
source_class text not null,
47
dest_id integer not null,
48
dest_class text not null,
49
data text
50
);
51
create index links_source on links (source_id);
52
create index links_dest on links (dest_id);
53
54
create table users
55
(
56
id integer not null primary key default nextval('public.documents_id_seq'::text),
57
login text not null,
58
class text not null,
59
ctime timestamp not null default now(),
60
mtime timestamp not null default now(),
61
status smallint not null default 1,
62
name text,
63
passwd text not null,
64
groups integer[],
65
data text
66
);
67
create unique index users_login on users(login);
68
69
create table options (
70
id integer not null primary key default nextval('public.documents_id_seq'::text),
71
pid integer,
72
name text,
73
value text,
74
"type" text not null
75
);
76
77
insert into options values (1, NULL, 's_alias', NULL, 'HASH');
78
insert into options values (2, NULL, 'widths', NULL, 'HASH');
79
insert into options values (3, NULL, 'redirects', NULL, 'HASH');
80
insert into options values (4, NULL, 'users', NULL, 'HASH');
81
insert into options values (5, 4, 'Contenido::User::DefaultUser', NULL, 'HASH');
82
insert into options values (6, NULL, 'links', NULL, 'HASH');
83
insert into options values (7, 6, 'Contenido::Link::DefaultLink', NULL, 'HASH');
84
insert into options values (8, NULL, 'sections', NULL, 'HASH');
85
insert into options values (9, 8, 'Contenido::Section::DefaultSection', NULL, 'HASH');
86
insert into options values (10, NULL, 'colors', NULL, 'HASH');
87
insert into options values (11, NULL, 'tabs', NULL, 'HASH');
88
insert into options values (12, 11, 'admin', NULL, 'HASH');
89
insert into options values (13, 12, 'id', 'admin', 'SCALAR');
90
insert into options values (14, 12, 'sections', NULL, 'ARRAY');
91
insert into options values (15, 14, '0', 'Contenido::Section::DefaultSection', 'SCALAR');
92
insert into options values (16, 12, 'lefts', NULL, 'ARRAY');
93
insert into options values (17, 16, '0', 'structure', 'SCALAR');
94
insert into options values (18, 16, '1', 'project', 'SCALAR');
95
insert into options values (19, 12, 'name', '�����������������', 'SCALAR');
96
insert into options values (20, 11, 'rubricator', NULL, 'HASH');
97
insert into options values (21, 20, 'id', 'rubricator', 'SCALAR');
98
insert into options values (22, 20, 'sections', NULL, 'ARRAY');
99
insert into options values (23, 22, '0', 'Contenido::Section::DefaultSection', 'SCALAR');
100
insert into options values (24, 20, 'lefts', NULL, 'ARRAY');
101
insert into options values (25, 24, '0', 'finder', 'SCALAR');
102
insert into options values (26, 20, 'name', '������������ ����������', 'SCALAR');
103
insert into options values (27, NULL, 'documents', NULL, 'HASH');
104
insert into options values (28, 27, 'Contenido::Document::DefaultDocument', NULL, 'HASH');
Небольшая справка по веткам
cnddist – контейнер, в котором хранятся все дистрибутивы всех библиотек и программных пакетов, которые использовались при построении различных версий Contenido. Если какой-то библиотеки в данном хранилище нет, инсталлятор сделает попытку "подтянуть" ее с веба (например, с CPAN). Если библиотека слишком старая, есть очень большая вероятность, что ее там уже нет. Поэтому мы храним весь хлам от всех сборок. Если какой-то дистрибутив вдруг отсутствует в cnddist - напишите нам, мы положим его туда.
koi8 – отмирающая ветка, чей код, выдача и все внутренние библиотеки заточены на кодировку KOI8-R. Вносятся только те дополнения, которые касаются внешнего вида и функционала админки, баги ядра, обязательные обновления портов и мелочи, которые легко скопипастить. В дальнейшем планируется полная остановка поддержки по данной ветке.
utf8 – актуальная ветка, заточенная под UTF-8.
Внутри каждой ветки: core – исходники ядра; install – скрипт установки инсталляции; plugins – плагины; samples – "готовые к употреблению" проекты, которые можно поставить, запустить и посмотреть, как они работают.