Subversion Repositories eFlore/Projets.eflore-projets

Rev

Rev 9 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
9 jpm 1
--
102 jpm 2
-- Structure de la table `coste_meta`
3
--
4
CREATE TABLE IF NOT EXISTS `coste_meta` (
5
  `guid` varchar(255) NOT NULL DEFAULT '',
6
  `langue_meta` varchar(2) NOT NULL DEFAULT '',
7
  `code` varchar(20) DEFAULT NULL,
8
  `version` varchar(20) DEFAULT NULL,
9
  `titre` varchar(255) DEFAULT NULL,
10
  `description` text,
11
  `mots_cles` varchar(510) DEFAULT NULL,
12
  `citation` varchar(255) DEFAULT NULL,
13
  `url_tech` varchar(510) DEFAULT NULL,
14
  `url_projet` varchar(510) DEFAULT NULL,
15
  `source` text,
16
  `createurs` text,
17
  `editeur` text,
18
  `contributeurs` text,
19
  `droits` text,
20
  `url_droits` varchar(510) DEFAULT NULL,
21
  `langue` varchar(255) DEFAULT NULL,
22
  `date_creation` varchar(30) DEFAULT NULL,
23
  `date_validite` varchar(255) DEFAULT NULL,
24
  `couverture_spatiale` varchar(510) DEFAULT NULL,
25
  `couverture_temporelle` varchar(510) DEFAULT NULL,
26
  `web_services` varchar(510) CHARACTER SET utf8 NOT NULL,
27
  PRIMARY KEY (`guid`,`langue_meta`)
28
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
9 jpm 29
 
30
--
102 jpm 31
--Données de la table coste_meta
9 jpm 32
--
102 jpm 33
INSERT INTO `coste_meta` (`guid`, `langue_meta`, `code`, `version`, `titre`, `description`, `mots_cles`, `citation`, `url_tech`, `url_projet`, `source`, `createurs`, `editeur`, `contributeurs`, `droits`, `url_droits`, `langue`, `date_creation`, `date_validite`, `couverture_spatiale`, `couverture_temporelle`, `web_services`) VALUES
34
('urn:lsid:tela-botanica.org:coste:0.1', 'fr', 'coste', '0.1', 'Flore descriptive et illustrée de la France par L''abbé H. COSTE', 'Au 07 février 2011, les documents réunis dans le cadre de le projet de numérisation de la flore de Coste sont :\r\n - l''ensemble des images au format PNG et JPEG des 4354 taxons (Christophe BONNET, Frédéric LEGENS et Jean ZISSLER)\r\n - l''ensemble des descriptions au format HTML et RTF des 4354 taxons (Jean ZISSLER)\r\n - l''ensemble des clés (avec reprise des images et descriptions) du tome 01 au format DOC (Daniel LE QUÉRÉ).\r\n\r\nLe travail restant à réaliser est le suivant :\r\n - compléter la famille des Papilionacées du tome 01\r\n - numériser les descriptions et clés des familles et genres du tome 02\r\n - numériser les descriptions et clés des familles et genres du tome 03\r\n\r\nPour la numérisation des tome 2 et 3, l''idée est de compléter les documents manquant en utilisant ce wiki. Le tome 03 est disponible en PDF image avec OCR sur le site biodiversitylibrary.org.', 'index, flore, image, description, clé', NULL, 'http://www.tela-botanica.org/wikini/eflore/wakka.php?wiki=IntegrationCoste', 'http://www.tela-botanica.org/wikini/florecoste/', NULL, 'p.prenom=Jean-Pascal,p.nom=MILCENT,p.courriel=jpm@tela-botanica.org', 'nom=Tela Botanica,guid=urn:lsid:tela-botanica.or,courriel=accueil@tela-botanica.org,telephone=+334 67 52 41 22,url.info=http://www.tela-botanica.org/page:association_tela_botanica,url.logo=http://www.tela-botanica.org/sites/accueil/generique/images/graphisme/logo_tela_fond_blanc.png,type=organisation,acronyme=TB,adresse=Association Tela Botanica - Institut de Botanique - 167 rue Auguste Broussonnet 34090 MONTPELLIER FRANCE,latitude.wgs84=43.615892,longitude.wgs84=3.871736,contact.prenom=Jean-Pascal,contact.nom=MILCENT,contact.courriel=jpm@tela-botanica.org,contact.role=administrateur des données', NULL, NULL, NULL, 'fr', '2011-06-10', '', 'iso-3166-1.id=FX', NULL, 'metaDonnees:0.1;noms:0.1;taxons:0.1;Textes:0.1;Images:0.1');
9 jpm 35
 
36
--
37
-- Structure de la table `coste_acls`
38
--
39
CREATE TABLE IF NOT EXISTS `coste_acls` (
40
  `page_tag` varchar(50) NOT NULL DEFAULT '',
41
  `privilege` varchar(20) NOT NULL DEFAULT '',
42
  `list` text NOT NULL,
43
  PRIMARY KEY (`page_tag`,`privilege`)
44
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
45
 
46
--
47
-- Structure de la table `coste_correspondance_bdnff`
48
--
49
CREATE TABLE IF NOT EXISTS `coste_correspondance_bdnff` (
50
  `id` varchar(10) NOT NULL,
51
  `num_nom` varchar(11) DEFAULT NULL,
52
  `num_tax` varchar(11) DEFAULT NULL,
53
  `famille` varchar(75) DEFAULT NULL,
54
  `nom_sci` varchar(100) DEFAULT NULL,
55
  PRIMARY KEY (`id`),
56
  KEY `nom_sci` (`nom_sci`),
57
  KEY `num_nom` (`num_nom`)
58
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
59
 
60
--
61
-- Structure de la table `coste_images_auteur_correspondance_bdnff`
62
--
63
CREATE TABLE IF NOT EXISTS `coste_images_auteur_correspondance_bdnff` (
64
  `id_image` varchar(8) DEFAULT NULL,
65
  `num_nom` int(5) DEFAULT NULL,
66
  `num_taxonomique` int(5) DEFAULT NULL,
67
  `nom_sci` varchar(73) DEFAULT NULL,
68
  `auteur` varchar(12) DEFAULT NULL
69
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
70
 
71
--
72
-- Structure de la table `coste_index`
73
--
74
CREATE TABLE IF NOT EXISTS `coste_index` (
75
  `num_nom` int(11) NOT NULL,
76
  `nom_sci` varchar(100) NOT NULL,
77
  PRIMARY KEY (`num_nom`),
78
  KEY `nom_sci` (`nom_sci`)
79
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
80
 
81
--
82
-- Structure de la table `coste_index_general`
83
--
84
CREATE TABLE IF NOT EXISTS `coste_index_general` (
85
  `nom_sci` varchar(16) DEFAULT NULL,
86
  `rang` int(3) DEFAULT NULL,
87
  `nom_coste` varchar(16) DEFAULT NULL,
88
  `num_nom_coste` varchar(4) DEFAULT NULL,
89
  `num_tax_sup_coste` varchar(4) DEFAULT NULL,
90
  `tome` int(1) DEFAULT NULL,
91
  `page` int(4) DEFAULT NULL
92
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
93
 
94
--
95
-- Structure de la table `coste_links`
96
--
97
CREATE TABLE IF NOT EXISTS `coste_links` (
98
  `from_tag` char(50) NOT NULL DEFAULT '',
99
  `to_tag` char(50) NOT NULL DEFAULT '',
100
  UNIQUE KEY `from_tag` (`from_tag`,`to_tag`),
101
  KEY `idx_from` (`from_tag`),
102
  KEY `idx_to` (`to_tag`)
103
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
104
 
105
--
106
-- Structure de la table `coste_pages`
107
--
108
CREATE TABLE IF NOT EXISTS `coste_pages` (
109
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
110
  `tag` varchar(100) NOT NULL DEFAULT '',
111
  `time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
112
  `body` text NOT NULL,
113
  `body_r` text NOT NULL,
114
  `owner` varchar(50) NOT NULL DEFAULT '',
115
  `user` varchar(50) NOT NULL DEFAULT '',
116
  `latest` enum('Y','N') NOT NULL DEFAULT 'N',
117
  `handler` varchar(30) NOT NULL DEFAULT 'page',
118
  `comment_on` varchar(50) NOT NULL DEFAULT '',
119
  PRIMARY KEY (`id`),
120
  KEY `idx_tag` (`tag`),
121
  KEY `idx_time` (`time`),
122
  KEY `idx_latest` (`latest`),
123
  KEY `idx_comment_on` (`comment_on`),
124
  FULLTEXT KEY `tag` (`tag`,`body`)
125
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=10000000 ;
126
 
127
--
128
-- Structure de la table `coste_referrers`
129
--
130
CREATE TABLE IF NOT EXISTS `coste_referrers` (
131
  `page_tag` char(50) NOT NULL DEFAULT '',
132
  `referrer` char(150) NOT NULL DEFAULT '',
133
  `time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
134
  KEY `idx_page_tag` (`page_tag`),
135
  KEY `idx_time` (`time`)
136
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
137
 
138
--
139
-- Structure de la table `coste_triples`
140
--
141
CREATE TABLE IF NOT EXISTS `coste_triples` (
142
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
143
  `resource` varchar(255) NOT NULL DEFAULT '',
144
  `property` varchar(255) NOT NULL DEFAULT '',
145
  `value` text NOT NULL,
146
  PRIMARY KEY (`id`),
147
  KEY `resource` (`resource`),
148
  KEY `property` (`property`)
102 jpm 149
) ENGINE=MyISAM  DEFAULT CHARSET=latin1;
9 jpm 150
 
151
--
152
-- Structure de la table `coste_users`
153
--
154
CREATE TABLE IF NOT EXISTS `coste_users` (
155
  `name` varchar(80) NOT NULL DEFAULT '',
156
  `password` varchar(32) NOT NULL DEFAULT '',
157
  `email` varchar(50) NOT NULL DEFAULT '',
158
  `motto` text NOT NULL,
159
  `revisioncount` int(10) unsigned NOT NULL DEFAULT '20',
160
  `changescount` int(10) unsigned NOT NULL DEFAULT '50',
161
  `doubleclickedit` enum('Y','N') NOT NULL DEFAULT 'Y',
162
  `signuptime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
163
  `show_comments` enum('Y','N') NOT NULL DEFAULT 'N',
164
  PRIMARY KEY (`name`),
165
  KEY `idx_name` (`name`),
166
  KEY `idx_signuptime` (`signuptime`)
167
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
168
 
169
--
170
-- Structure de la table `coste_v0_1`
171
--
172
CREATE TABLE IF NOT EXISTS `coste_v0_1` (
173
  `num_nom` int(9) NOT NULL DEFAULT '0',
174
  `num_nom_retenu` varchar(9) DEFAULT NULL,
175
  `num_tax_sup` varchar(9) DEFAULT NULL,
176
  `rang` int(3) DEFAULT NULL,
177
  `nom_sci` varchar(500) DEFAULT '',
178
  `nom_supra_generique` varchar(500) DEFAULT '',
179
  `genre` varchar(500) DEFAULT '',
180
  `epithete_infra_generique` varchar(500) DEFAULT '',
181
  `epithete_sp` varchar(500) DEFAULT '',
182
  `type_epithete` varchar(500) DEFAULT '',
183
  `epithete_infra_sp` varchar(500) DEFAULT '',
184
  `cultivar_groupe` varchar(500) DEFAULT '',
185
  `cultivar` varchar(500) DEFAULT '',
186
  `nom_commercial` varchar(500) DEFAULT '',
187
  `auteur` varchar(100) DEFAULT '',
188
  `annee` int(4) DEFAULT NULL,
189
  `biblio_origine` varchar(500) NOT NULL DEFAULT '',
190
  `notes` varchar(500) NOT NULL DEFAULT '',
191
  `nom_addendum` varchar(500) NOT NULL DEFAULT '',
192
  `basionyme` varchar(9) NOT NULL DEFAULT '',
193
  `nom_francais` text,
194
  `nom_coste` varchar(500) DEFAULT '',
195
  `num_nom_coste` varchar(9) DEFAULT '',
196
  `tome` int(1) DEFAULT NULL,
197
  `page` int(4) DEFAULT NULL,
198
  `flore_bdnff_num` varchar(9) DEFAULT NULL,
199
  `flore_bdnff_nom_sci` varchar(500) DEFAULT NULL,
200
  `nom_sci_html` varchar(500) DEFAULT NULL,
201
  PRIMARY KEY (`num_nom`)
202
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
203