? files
? misc/topimages
? modules/devel
? modules/flexinode
? modules/htmltidy
? modules/i18n
? modules/legal
? modules/localegettext
? themes/phptemplate
Index: update.php
===================================================================
RCS file: /cvs/drupal/drupal/update.php,v
retrieving revision 1.140
diff -u -r1.140 update.php
--- update.php 11 Aug 2004 11:26:14 -0000 1.140
+++ update.php 14 Aug 2004 19:15:50 -0000
@@ -13,7 +13,7 @@
*/
// Disable access checking?
-$access_check = 1;
+$access_check = 0;
if (!ini_get("safe_mode")) {
set_time_limit(180);
Index: database/database.mysql
===================================================================
RCS file: /cvs/drupal/drupal/database/database.mysql,v
retrieving revision 1.142
diff -u -r1.142 database.mysql
--- database/database.mysql 11 Aug 2004 11:26:14 -0000 1.142
+++ database/database.mysql 14 Aug 2004 19:15:58 -0000
@@ -1,3 +1,1423 @@
+<<<<<<< database.mysql
+# phpMyAdmin SQL Dump
+# version 2.5.6
+# http://www.phpmyadmin.net
+#
+# Host: localhost
+# Generation Time: Jun 30, 2004 at 10:59 PM
+# Server version: 4.0.18
+# PHP Version: 4.3.4
+#
+# Database : `ddc`
+#
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `access`
+#
+
+DROP TABLE IF EXISTS `access`;
+CREATE TABLE `access` (
+ `aid` tinyint(10) NOT NULL auto_increment,
+ `mask` varchar(255) NOT NULL default '',
+ `type` varchar(255) NOT NULL default '',
+ `status` tinyint(2) NOT NULL default '0',
+ PRIMARY KEY (`aid`),
+ UNIQUE KEY `mask` (`mask`)
+) TYPE=MyISAM AUTO_INCREMENT=1 ;
+
+#
+# Dumping data for table `access`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `accesslog`
+#
+
+DROP TABLE IF EXISTS `accesslog`;
+CREATE TABLE `accesslog` (
+ `nid` int(11) unsigned default '0',
+ `url` varchar(255) default NULL,
+ `hostname` varchar(128) default NULL,
+ `uid` int(10) unsigned default '0',
+ `timestamp` int(11) unsigned NOT NULL default '0',
+ KEY `accesslog_timestamp` (`timestamp`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `accesslog`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `aggregator_category`
+#
+
+DROP TABLE IF EXISTS `aggregator_category`;
+CREATE TABLE `aggregator_category` (
+ `cid` int(10) NOT NULL auto_increment,
+ `title` varchar(255) NOT NULL default '',
+ `description` longtext NOT NULL,
+ `block` tinyint(2) NOT NULL default '0',
+ PRIMARY KEY (`cid`),
+ UNIQUE KEY `title` (`title`)
+) TYPE=MyISAM AUTO_INCREMENT=1 ;
+
+#
+# Dumping data for table `aggregator_category`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `aggregator_category_feed`
+#
+
+DROP TABLE IF EXISTS `aggregator_category_feed`;
+CREATE TABLE `aggregator_category_feed` (
+ `fid` int(10) NOT NULL default '0',
+ `cid` int(10) NOT NULL default '0',
+ PRIMARY KEY (`fid`,`cid`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `aggregator_category_feed`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `aggregator_category_item`
+#
+
+DROP TABLE IF EXISTS `aggregator_category_item`;
+CREATE TABLE `aggregator_category_item` (
+ `iid` int(10) NOT NULL default '0',
+ `cid` int(10) NOT NULL default '0',
+ PRIMARY KEY (`iid`,`cid`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `aggregator_category_item`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `aggregator_feed`
+#
+
+DROP TABLE IF EXISTS `aggregator_feed`;
+CREATE TABLE `aggregator_feed` (
+ `fid` int(10) NOT NULL auto_increment,
+ `title` varchar(255) NOT NULL default '',
+ `url` varchar(255) NOT NULL default '',
+ `refresh` int(10) NOT NULL default '0',
+ `checked` int(10) NOT NULL default '0',
+ `link` varchar(255) NOT NULL default '',
+ `description` longtext NOT NULL,
+ `image` longtext NOT NULL,
+ `etag` varchar(255) NOT NULL default '',
+ `modified` int(10) NOT NULL default '0',
+ `block` tinyint(2) NOT NULL default '0',
+ PRIMARY KEY (`fid`),
+ UNIQUE KEY `link` (`url`),
+ UNIQUE KEY `title` (`title`)
+) TYPE=MyISAM AUTO_INCREMENT=1 ;
+
+#
+# Dumping data for table `aggregator_feed`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `aggregator_item`
+#
+
+DROP TABLE IF EXISTS `aggregator_item`;
+CREATE TABLE `aggregator_item` (
+ `iid` int(10) NOT NULL auto_increment,
+ `fid` int(10) NOT NULL default '0',
+ `title` varchar(255) NOT NULL default '',
+ `link` varchar(255) NOT NULL default '',
+ `author` varchar(255) NOT NULL default '',
+ `description` longtext NOT NULL,
+ `timestamp` int(11) default NULL,
+ PRIMARY KEY (`iid`)
+) TYPE=MyISAM AUTO_INCREMENT=1 ;
+
+#
+# Dumping data for table `aggregator_item`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `authmap`
+#
+
+DROP TABLE IF EXISTS `authmap`;
+CREATE TABLE `authmap` (
+ `aid` int(10) unsigned NOT NULL auto_increment,
+ `uid` int(10) NOT NULL default '0',
+ `authname` varchar(128) NOT NULL default '',
+ `module` varchar(128) NOT NULL default '',
+ PRIMARY KEY (`aid`),
+ UNIQUE KEY `authname` (`authname`)
+) TYPE=MyISAM AUTO_INCREMENT=1 ;
+
+#
+# Dumping data for table `authmap`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `blocks`
+#
+
+DROP TABLE IF EXISTS `blocks`;
+CREATE TABLE `blocks` (
+ `module` varchar(64) NOT NULL default '',
+ `delta` varchar(32) NOT NULL default '0',
+ `status` tinyint(2) NOT NULL default '0',
+ `weight` tinyint(1) NOT NULL default '0',
+ `region` tinyint(1) NOT NULL default '0',
+ `path` varchar(255) NOT NULL default '',
+ `custom` tinyint(2) NOT NULL default '0',
+ `throttle` tinyint(1) NOT NULL default '0'
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `blocks`
+#
+
+INSERT INTO `blocks` VALUES ('i18n', '0', 0, 0, 0, '', 0, 0);
+INSERT INTO `blocks` VALUES ('menu', '50', 1, 0, 1, '', 0, 0);
+INSERT INTO `blocks` VALUES ('node', '0', 0, 0, 0, '', 0, 0);
+INSERT INTO `blocks` VALUES ('queue', '0', 0, 0, 0, '', 0, 0);
+INSERT INTO `blocks` VALUES ('throttle', '0', 0, 0, 0, '', 0, 0);
+INSERT INTO `blocks` VALUES ('user', '0', 1, 0, 0, '', 0, 0);
+INSERT INTO `blocks` VALUES ('user', '1', 1, 0, 0, '', 0, 0);
+INSERT INTO `blocks` VALUES ('user', '2', 0, 0, 0, '', 0, 0);
+INSERT INTO `blocks` VALUES ('user', '3', 0, 0, 0, '', 0, 0);
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `book`
+#
+
+DROP TABLE IF EXISTS `book`;
+CREATE TABLE `book` (
+ `nid` int(10) unsigned NOT NULL default '0',
+ `parent` int(10) NOT NULL default '0',
+ `weight` tinyint(3) NOT NULL default '0',
+ `format` tinyint(2) default '0',
+ `log` longtext,
+ PRIMARY KEY (`nid`),
+ KEY `parent` (`parent`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `book`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `boxes`
+#
+
+DROP TABLE IF EXISTS `boxes`;
+CREATE TABLE `boxes` (
+ `bid` tinyint(4) NOT NULL auto_increment,
+ `title` varchar(64) NOT NULL default '',
+ `body` longtext,
+ `info` varchar(128) NOT NULL default '',
+ `type` tinyint(2) NOT NULL default '0',
+ PRIMARY KEY (`bid`),
+ UNIQUE KEY `title` (`title`),
+ UNIQUE KEY `info` (`info`)
+) TYPE=MyISAM AUTO_INCREMENT=1 ;
+
+#
+# Dumping data for table `boxes`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `cache`
+#
+
+DROP TABLE IF EXISTS `cache`;
+CREATE TABLE `cache` (
+ `cid` varchar(255) NOT NULL default '',
+ `data` longtext,
+ `expire` int(11) NOT NULL default '0',
+ `created` int(11) NOT NULL default '0',
+ `headers` text,
+ PRIMARY KEY (`cid`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `cache`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `comments`
+#
+
+DROP TABLE IF EXISTS `comments`;
+CREATE TABLE `comments` (
+ `cid` int(10) NOT NULL auto_increment,
+ `pid` int(10) NOT NULL default '0',
+ `nid` int(10) NOT NULL default '0',
+ `uid` int(10) NOT NULL default '0',
+ `subject` varchar(64) NOT NULL default '',
+ `comment` longtext NOT NULL,
+ `hostname` varchar(128) NOT NULL default '',
+ `timestamp` int(11) NOT NULL default '0',
+ `score` mediumint(9) NOT NULL default '0',
+ `status` tinyint(3) unsigned NOT NULL default '0',
+ `thread` varchar(255) NOT NULL default '',
+ `users` longtext,
+ `name` varchar(60) default NULL,
+ `mail` varchar(64) default NULL,
+ `homepage` varchar(255) default NULL,
+ PRIMARY KEY (`cid`),
+ KEY `lid` (`nid`)
+) TYPE=MyISAM AUTO_INCREMENT=1 ;
+
+#
+# Dumping data for table `comments`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `directory`
+#
+
+DROP TABLE IF EXISTS `directory`;
+CREATE TABLE `directory` (
+ `link` varchar(255) NOT NULL default '',
+ `name` varchar(128) NOT NULL default '',
+ `mail` varchar(128) NOT NULL default '',
+ `slogan` longtext NOT NULL,
+ `mission` longtext NOT NULL,
+ `timestamp` int(11) NOT NULL default '0',
+ PRIMARY KEY (`link`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `directory`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `filters`
+#
+
+DROP TABLE IF EXISTS `filters`;
+CREATE TABLE `filters` (
+ `module` varchar(64) NOT NULL default '',
+ `weight` tinyint(2) NOT NULL default '0',
+ KEY `module` (`module`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `filters`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `flexinode_data`
+#
+
+DROP TABLE IF EXISTS `flexinode_data`;
+CREATE TABLE `flexinode_data` (
+ `nid` int(10) unsigned NOT NULL default '0',
+ `field_id` int(10) unsigned NOT NULL default '0',
+ `textual_data` mediumtext NOT NULL,
+ `numeric_data` int(10) unsigned NOT NULL default '0',
+ `serialized_data` mediumtext NOT NULL,
+ PRIMARY KEY (`nid`,`field_id`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `flexinode_data`
+#
+
+INSERT INTO `flexinode_data` VALUES (1, 10, 'type here your long article about the company here', 0, '');
+INSERT INTO `flexinode_data` VALUES (1, 6, '', 0, '');
+INSERT INTO `flexinode_data` VALUES (1, 9, 'type your short article about the company here', 0, '');
+INSERT INTO `flexinode_data` VALUES (2, 4, 'The first release of outr nes site is online', 0, '');
+INSERT INTO `flexinode_data` VALUES (2, 5, 'As you can see, we are working very hard on improving our communication with you. The new site is powered by a content management system called Drupal . The usage of this new system will improve your overall surfing pleasure on our site. ', 0, '');
+INSERT INTO `flexinode_data` VALUES (2, 1, '', 0, '');
+INSERT INTO `flexinode_data` VALUES (1, 7, '', 0, '');
+INSERT INTO `flexinode_data` VALUES (1, 8, '', 0, '');
+INSERT INTO `flexinode_data` VALUES (3, 9, 'Type some informative text about how to get to the company', 0, '');
+INSERT INTO `flexinode_data` VALUES (3, 6, '', 0, '');
+INSERT INTO `flexinode_data` VALUES (3, 10, 'Type the actual description about how to get to the company here', 0, '');
+INSERT INTO `flexinode_data` VALUES (3, 7, '', 0, '');
+INSERT INTO `flexinode_data` VALUES (3, 8, '', 0, '');
+INSERT INTO `flexinode_data` VALUES (4, 9, 'Type the address here', 0, '');
+INSERT INTO `flexinode_data` VALUES (4, 6, '', 0, '');
+INSERT INTO `flexinode_data` VALUES (4, 10, 'Here you can add some additional information that goes with the address', 0, '');
+INSERT INTO `flexinode_data` VALUES (4, 7, '', 0, '');
+INSERT INTO `flexinode_data` VALUES (4, 8, '', 0, '');
+INSERT INTO `flexinode_data` VALUES (5, 13, 'Ber kessels', 0, '');
+INSERT INTO `flexinode_data` VALUES (5, 15, '', 1, '');
+INSERT INTO `flexinode_data` VALUES (5, 14, 'I wnat to test the feedback', 0, '');
+INSERT INTO `flexinode_data` VALUES (6, 13, 'Ber kessels', 0, '');
+INSERT INTO `flexinode_data` VALUES (6, 15, '', 1, '');
+INSERT INTO `flexinode_data` VALUES (6, 14, 'I wnat to test the feedback', 0, '');
+INSERT INTO `flexinode_data` VALUES (7, 13, 'Ber kessels', 0, '');
+INSERT INTO `flexinode_data` VALUES (7, 15, '', 1, '');
+INSERT INTO `flexinode_data` VALUES (7, 14, 'I wnat to test the feedback', 0, '');
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `flexinode_field`
+#
+
+DROP TABLE IF EXISTS `flexinode_field`;
+CREATE TABLE `flexinode_field` (
+ `field_id` int(10) unsigned NOT NULL default '0',
+ `ctype_id` int(10) unsigned NOT NULL default '0',
+ `label` varchar(255) NOT NULL default '',
+ `default_value` mediumtext NOT NULL,
+ `weight` int(10) NOT NULL default '0',
+ `required` int(1) NOT NULL default '0',
+ `show_teaser` int(1) NOT NULL default '0',
+ `show_table` int(1) NOT NULL default '0',
+ `rows` int(10) unsigned NOT NULL default '0',
+ `field_type` varchar(255) NOT NULL default '',
+ `options` text NOT NULL,
+ `description` varchar(255) NOT NULL default '',
+ PRIMARY KEY (`field_id`),
+ KEY `ctype_id` (`ctype_id`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `flexinode_field`
+#
+
+INSERT INTO `flexinode_field` VALUES (1, 1, 'Image', '', 6, 0, 1, 1, 0, 'image', 'a:2:{i:1;s:7:"400x300";i:2;s:3:"100";}', 'You can upload an image if you wish');
+INSERT INTO `flexinode_field` VALUES (6, 2, 'Image 1', '', 3, 0, 1, 0, 0, 'image', 'a:2:{i:1;s:7:"400x300";i:2;s:3:"100";}', 'Here you can upload an image if you wish. This image will appear with the short text');
+INSERT INTO `flexinode_field` VALUES (4, 1, 'Short Text', '', 1, 1, 1, 1, 5, 'textarea', 'a:0:{}', 'A short introduction');
+INSERT INTO `flexinode_field` VALUES (5, 1, 'Long text', '', 2, 1, 0, 1, 7, 'textarea', 'a:0:{}', 'The body of the article');
+INSERT INTO `flexinode_field` VALUES (7, 2, 'Image 2', '', 7, 0, 0, 0, 0, 'image', 'a:2:{i:1;s:7:"400x300";i:2;s:3:"100";}', 'Here you can upload an image if you wish.');
+INSERT INTO `flexinode_field` VALUES (8, 2, 'Image 3', '', 7, 0, 0, 0, 0, 'image', 'a:2:{i:1;s:7:"400x300";i:2;s:3:"100";}', 'Here you can upload an image if you wish.');
+INSERT INTO `flexinode_field` VALUES (9, 2, 'Short Text', '', 1, 0, 1, 1, 5, 'textarea', 'a:0:{}', 'Here you can give your short text');
+INSERT INTO `flexinode_field` VALUES (10, 2, 'Long text', '', 4, 0, 0, 1, 7, 'textarea', 'a:0:{}', 'Here you can give your long text');
+INSERT INTO `flexinode_field` VALUES (11, 3, 'File', '', 0, 1, 1, 1, 0, 'file', 'a:0:{}', 'Choose a file to add to the article');
+INSERT INTO `flexinode_field` VALUES (12, 3, 'Text', '', 0, 0, 1, 1, 5, 'textarea', 'a:0:{}', 'A text that goes with the downloadable file');
+INSERT INTO `flexinode_field` VALUES (13, 4, 'Name', '', 0, 1, 0, 1, 0, 'textfield', 'a:0:{}', 'Please give us your name');
+INSERT INTO `flexinode_field` VALUES (14, 4, 'Your feedback', '', 3, 1, 1, 1, 5, 'textarea', 'a:0:{}', 'Please give us your feedback');
+INSERT INTO `flexinode_field` VALUES (15, 4, 'Your Gender', '', 2, 1, 1, 1, 0, 'select', 'a:2:{i:1;s:4:"Male";i:2;s:6:"Female";}', '');
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `flexinode_type`
+#
+
+DROP TABLE IF EXISTS `flexinode_type`;
+CREATE TABLE `flexinode_type` (
+ `ctype_id` int(10) unsigned NOT NULL default '0',
+ `name` varchar(255) NOT NULL default '',
+ `description` varchar(255) NOT NULL default '',
+ `help` text NOT NULL,
+ PRIMARY KEY (`ctype_id`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `flexinode_type`
+#
+
+INSERT INTO `flexinode_type` VALUES (1, 'News Item', 'News about the organisation', 'Here you can add newsitems about your organisation or about your industry.');
+INSERT INTO `flexinode_type` VALUES (2, 'Article', 'A long article', 'Here you can Add long static articles such as the comaany profile');
+INSERT INTO `flexinode_type` VALUES (3, 'Download', 'A downloadable article', 'This is a file that can be added as documentation. For example a brcure in pdf format.');
+INSERT INTO `flexinode_type` VALUES (4, 'Feedback', 'Give us some feedback', '');
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `forum`
+#
+
+DROP TABLE IF EXISTS `forum`;
+CREATE TABLE `forum` (
+ `nid` int(10) unsigned NOT NULL default '0',
+ `tid` int(10) unsigned NOT NULL default '0',
+ `shadow` int(10) unsigned NOT NULL default '0',
+ PRIMARY KEY (`nid`),
+ KEY `tid` (`tid`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `forum`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `history`
+#
+
+DROP TABLE IF EXISTS `history`;
+CREATE TABLE `history` (
+ `uid` int(10) NOT NULL default '0',
+ `nid` int(10) NOT NULL default '0',
+ `timestamp` int(11) NOT NULL default '0',
+ PRIMARY KEY (`uid`,`nid`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `history`
+#
+
+INSERT INTO `history` VALUES (1, 1, 1088629034);
+INSERT INTO `history` VALUES (1, 2, 1088628075);
+INSERT INTO `history` VALUES (1, 3, 1088622712);
+INSERT INTO `history` VALUES (1, 4, 1088622709);
+INSERT INTO `history` VALUES (1, 7, 1088628885);
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `locales`
+#
+
+DROP TABLE IF EXISTS `locales`;
+CREATE TABLE `locales` (
+ `lid` int(10) NOT NULL auto_increment,
+ `location` varchar(128) NOT NULL default '',
+ `string` blob NOT NULL,
+ `da` blob NOT NULL,
+ `fi` blob NOT NULL,
+ `fr` blob NOT NULL,
+ `en` blob NOT NULL,
+ `es` blob NOT NULL,
+ `nl` blob NOT NULL,
+ `no` blob NOT NULL,
+ `sw` blob NOT NULL,
+ PRIMARY KEY (`lid`)
+) TYPE=MyISAM AUTO_INCREMENT=716 ;
+# --------------------------------------------------------
+
+#
+# Table structure for table `menu`
+#
+
+DROP TABLE IF EXISTS `menu`;
+CREATE TABLE `menu` (
+ `mid` int(10) unsigned NOT NULL default '0',
+ `pid` int(10) unsigned NOT NULL default '0',
+ `path` varchar(255) NOT NULL default '',
+ `title` varchar(255) NOT NULL default '',
+ `weight` tinyint(4) NOT NULL default '0',
+ `type` int(2) unsigned NOT NULL default '0',
+ PRIMARY KEY (`mid`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `menu`
+#
+
+INSERT INTO `menu` VALUES (2, 1, 'admin', 'administer', 9, 22);
+INSERT INTO `menu` VALUES (3, 2, 'admin/block', 'blocks', 0, 22);
+INSERT INTO `menu` VALUES (4, 2, 'admin/filters', 'filters', 0, 22);
+INSERT INTO `menu` VALUES (5, 1, 'filter/tips', 'compose tips', 0, 16);
+INSERT INTO `menu` VALUES (6, 14, 'admin/node/types', 'content types', 0, 22);
+INSERT INTO `menu` VALUES (7, 8, 'admin/help/glossary', 'glossary', 0, 22);
+INSERT INTO `menu` VALUES (8, 2, 'admin/help', 'help', 9, 22);
+INSERT INTO `menu` VALUES (9, 2, 'admin/locale', 'localization', 0, 22);
+INSERT INTO `menu` VALUES (10, 9, 'admin/locale/en', 'english', 0, 22);
+INSERT INTO `menu` VALUES (11, 10, 'admin/locale/en/translated', 'translated strings', 0, 22);
+INSERT INTO `menu` VALUES (12, 10, 'admin/locale/en/untranslated', 'untranslated strings', 0, 22);
+INSERT INTO `menu` VALUES (13, 2, 'admin/menu', 'menus', 0, 22);
+INSERT INTO `menu` VALUES (14, 2, 'admin/node', 'content', 0, 22);
+INSERT INTO `menu` VALUES (15, 1, 'node', 'content', 0, 48);
+INSERT INTO `menu` VALUES (16, 15, 'node/add', 'create content', 1, 28);
+INSERT INTO `menu` VALUES (17, 2, 'admin/path', 'url aliases', 0, 22);
+INSERT INTO `menu` VALUES (18, 16, 'node/add/poll', 'poll', 0, 22);
+INSERT INTO `menu` VALUES (19, 1, 'poll', 'polls', 0, 16);
+INSERT INTO `menu` VALUES (20, 1, 'profile', 'browse', -6, 48);
+INSERT INTO `menu` VALUES (21, 1, 'queue', 'submission queue', 1, 22);
+INSERT INTO `menu` VALUES (22, 1, 'search', 'search', 0, 16);
+INSERT INTO `menu` VALUES (23, 22, 'search/help', 'search help', 0, 16);
+INSERT INTO `menu` VALUES (24, 1, 'statistics', 'most popular content', 0, 16);
+INSERT INTO `menu` VALUES (25, 48, 'admin/logs/topnodes', 'top nodes', 1, 22);
+INSERT INTO `menu` VALUES (26, 48, 'admin/logs/referrer', 'referrer', 2, 22);
+INSERT INTO `menu` VALUES (27, 26, 'admin/logs/referrer/internal', 'internal referrers only', 0, 22);
+INSERT INTO `menu` VALUES (28, 26, 'admin/logs/referrer/external', 'external referrers only', 0, 22);
+INSERT INTO `menu` VALUES (29, 48, 'admin/logs/access', 'access', 3, 22);
+INSERT INTO `menu` VALUES (30, 2, 'admin/themes', 'themes', 0, 22);
+INSERT INTO `menu` VALUES (31, 30, 'admin/themes/phptemplate', 'phptemplate', 0, 22);
+INSERT INTO `menu` VALUES (32, 30, 'admin/themes/xtemplate', 'xtemplate', 0, 22);
+INSERT INTO `menu` VALUES (33, 2, 'admin/settings', 'settings', 0, 22);
+INSERT INTO `menu` VALUES (34, 33, 'admin/settings/feedback', 'feedback', 0, 22);
+INSERT INTO `menu` VALUES (35, 33, 'admin/settings/htmltidy', 'htmltidy', 0, 22);
+INSERT INTO `menu` VALUES (36, 33, 'admin/settings/i18n', 'i18n', 0, 22);
+INSERT INTO `menu` VALUES (37, 33, 'admin/settings/legal', 'legal', 0, 22);
+INSERT INTO `menu` VALUES (38, 33, 'admin/settings/queue', 'queue', 0, 22);
+INSERT INTO `menu` VALUES (39, 33, 'admin/settings/refer', 'refer', 0, 22);
+INSERT INTO `menu` VALUES (40, 33, 'admin/settings/statistics', 'statistics', 0, 22);
+INSERT INTO `menu` VALUES (41, 33, 'admin/settings/throttle', 'throttle', 0, 22);
+INSERT INTO `menu` VALUES (42, 2, 'admin/modules', 'modules', 0, 22);
+INSERT INTO `menu` VALUES (43, 2, 'admin/taxonomy', 'categories', 0, 22);
+INSERT INTO `menu` VALUES (44, 1, 'tracker', 'recent posts', 1, 22);
+INSERT INTO `menu` VALUES (45, 0, '', 'my account', 0, 54);
+INSERT INTO `menu` VALUES (46, 1, 'logout', 'log out', 10, 22);
+INSERT INTO `menu` VALUES (47, 2, 'admin/user', 'users', 0, 22);
+INSERT INTO `menu` VALUES (48, 2, 'admin/logs', 'logs', 0, 22);
+INSERT INTO `menu` VALUES (49, 0, '', 'Browse', 0, 118);
+INSERT INTO `menu` VALUES (50, 0, '', 'Information', 0, 118);
+INSERT INTO `menu` VALUES (51, 20, 'aboutus', 'About Us', -1, 118);
+INSERT INTO `menu` VALUES (52, 50, 'route', 'Route', 0, 118);
+INSERT INTO `menu` VALUES (53, 50, 'address', 'address', 0, 118);
+INSERT INTO `menu` VALUES (54, 20, 'projects', 'Projects', 0, 118);
+INSERT INTO `menu` VALUES (55, 20, 'products', 'Products', 1, 118);
+INSERT INTO `menu` VALUES (56, 20, 'jobs', 'Jobs', 3, 118);
+INSERT INTO `menu` VALUES (57, 0, 'user/1', 'my account', 0, 22);
+INSERT INTO `menu` VALUES (58, 16, 'node/add/flexinode-1', 'News Item', 0, 22);
+INSERT INTO `menu` VALUES (59, 16, 'node/add/flexinode-2', 'Article', 0, 22);
+INSERT INTO `menu` VALUES (60, 20, 'feedback', 'Feedback', 5, 118);
+INSERT INTO `menu` VALUES (61, 16, 'node/add/flexinode-3', 'Download', 0, 22);
+INSERT INTO `menu` VALUES (62, 20, 'downloads', 'Downloads', 5, 118);
+INSERT INTO `menu` VALUES (63, 16, 'node/add/flexinode-4', 'Feedback', 0, 22);
+INSERT INTO `menu` VALUES (64, 1, 'subscriptions', 'my subscriptions', 0, 22);
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `moderation_filters`
+#
+
+DROP TABLE IF EXISTS `moderation_filters`;
+CREATE TABLE `moderation_filters` (
+ `fid` int(10) unsigned NOT NULL auto_increment,
+ `filter` varchar(255) NOT NULL default '',
+ `minimum` smallint(6) NOT NULL default '0',
+ PRIMARY KEY (`fid`)
+) TYPE=MyISAM AUTO_INCREMENT=1 ;
+
+#
+# Dumping data for table `moderation_filters`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `moderation_roles`
+#
+
+DROP TABLE IF EXISTS `moderation_roles`;
+CREATE TABLE `moderation_roles` (
+ `rid` int(10) unsigned NOT NULL default '0',
+ `mid` int(10) unsigned NOT NULL default '0',
+ `value` tinyint(4) NOT NULL default '0',
+ KEY `idx_rid` (`rid`),
+ KEY `idx_mid` (`mid`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `moderation_roles`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `moderation_votes`
+#
+
+DROP TABLE IF EXISTS `moderation_votes`;
+CREATE TABLE `moderation_votes` (
+ `mid` int(10) unsigned NOT NULL auto_increment,
+ `vote` varchar(255) default NULL,
+ `weight` tinyint(4) NOT NULL default '0',
+ PRIMARY KEY (`mid`)
+) TYPE=MyISAM AUTO_INCREMENT=1 ;
+
+#
+# Dumping data for table `moderation_votes`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `node`
+#
+
+DROP TABLE IF EXISTS `node`;
+CREATE TABLE `node` (
+ `nid` int(10) unsigned NOT NULL auto_increment,
+ `type` varchar(16) NOT NULL default '',
+ `title` varchar(128) NOT NULL default '',
+ `score` int(11) NOT NULL default '0',
+ `votes` int(11) NOT NULL default '0',
+ `uid` int(10) NOT NULL default '0',
+ `status` int(4) NOT NULL default '1',
+ `created` int(11) NOT NULL default '0',
+ `changed` int(11) NOT NULL default '0',
+ `comment` int(2) NOT NULL default '0',
+ `promote` int(2) NOT NULL default '0',
+ `moderate` int(2) NOT NULL default '0',
+ `users` longtext NOT NULL,
+ `teaser` longtext NOT NULL,
+ `body` longtext NOT NULL,
+ `revisions` longtext NOT NULL,
+ `sticky` int(2) NOT NULL default '0',
+ PRIMARY KEY (`nid`),
+ KEY `node_type` (`type`(4)),
+ KEY `node_title_type` (`title`,`type`(4)),
+ KEY `status` (`status`),
+ KEY `uid` (`uid`),
+ KEY `node_moderate` (`moderate`),
+ KEY `node_promote_status` (`promote`,`status`),
+ KEY `node_created` (`created`),
+ KEY `node_changed` (`changed`)
+) TYPE=MyISAM AUTO_INCREMENT=8 ;
+
+#
+# Dumping data for table `node`
+#
+
+INSERT INTO `node` VALUES (1, 'flexinode-2', 'About Us', 0, 0, 1, 1, 1088621044, 1088621404, 0, 1, 0, '', '
\n Short Text: \n type your short article about the company here\n
\n
', '\n Short Text: \n type your short article about the company here\n
\n
\n Long text: \n type here your long article about the company here\n
\n
', '', 1);
+INSERT INTO `node` VALUES (2, 'flexinode-1', 'New Site online', 0, 0, 1, 1, 1088621174, 1088621354, 0, 1, 0, '', '\n Short Text: \n The first release of outr nes site is online\n
\n
', '\n Short Text: \n The first release of outr nes site is online\n
\n
', '', 0);
+INSERT INTO `node` VALUES (3, 'flexinode-2', 'Route', 0, 0, 1, 1, 1088622557, 1088622617, 0, 0, 0, '', '\n Short Text: \n Type some informative text about how to get to the company\n
\n
', '\n Short Text: \n Type some informative text about how to get to the company\n
\n
\n Long text: \n Type the actual description about how to get to the company here\n
\n
', '', 0);
+INSERT INTO `node` VALUES (4, 'flexinode-2', 'address', 0, 0, 1, 1, 1088622614, 1088622674, 0, 0, 0, '', '\n Short Text: \n Type the address here\n
\n
', '\n Short Text: \n Type the address here\n
\n
\n Long text: \n Here you can add some additional information that goes with the address\n
\n
', '', 0);
+INSERT INTO `node` VALUES (5, 'flexinode-4', 'hello', 0, 0, 0, 0, 1088628679, 1088628679, 0, 0, 1, '', '\n Your Gender: \n Male\n
\n
\n Your feedback: \n I wnat to test the feedback\n
\n
', '\n Name: \n Ber kessels\n
\n
\n Your Gender: \n Male\n
\n
\n Your feedback: \n I wnat to test the feedback\n
\n
', '', 0);
+INSERT INTO `node` VALUES (6, 'flexinode-4', 'hello', 0, 0, 0, 0, 1088628731, 1088628731, 0, 0, 1, '', '\n Your Gender: \n Male\n
\n
\n Your feedback: \n I wnat to test the feedback\n
\n
', '\n Name: \n Ber kessels\n
\n
\n Your Gender: \n Male\n
\n
\n Your feedback: \n I wnat to test the feedback\n
\n
', '', 0);
+INSERT INTO `node` VALUES (7, 'flexinode-4', 'hello', 0, 0, 0, 0, 1088628848, 1088628848, 0, 0, 1, '', '\n Your Gender: \n Male\n
\n
\n Your feedback: \n I wnat to test the feedback\n
\n
', '\n Name: \n Ber kessels\n
\n
\n Your Gender: \n Male\n
\n
\n Your feedback: \n I wnat to test the feedback\n
\n
', '', 0);
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `node_counter`
+#
+
+DROP TABLE IF EXISTS `node_counter`;
+CREATE TABLE `node_counter` (
+ `nid` int(11) NOT NULL default '0',
+ `totalcount` bigint(20) unsigned NOT NULL default '0',
+ `daycount` mediumint(8) unsigned NOT NULL default '0',
+ `timestamp` int(11) unsigned NOT NULL default '0',
+ PRIMARY KEY (`nid`),
+ KEY `totalcount` (`totalcount`),
+ KEY `daycount` (`daycount`),
+ KEY `timestamp` (`timestamp`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `node_counter`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `page`
+#
+
+DROP TABLE IF EXISTS `page`;
+CREATE TABLE `page` (
+ `nid` int(10) unsigned NOT NULL default '0',
+ `link` varchar(128) NOT NULL default '',
+ `format` tinyint(2) NOT NULL default '0',
+ `description` varchar(128) NOT NULL default '',
+ PRIMARY KEY (`nid`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `page`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `permission`
+#
+
+DROP TABLE IF EXISTS `permission`;
+CREATE TABLE `permission` (
+ `rid` int(10) unsigned NOT NULL default '0',
+ `perm` longtext,
+ `tid` int(10) unsigned NOT NULL default '0',
+ KEY `rid` (`rid`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `permission`
+#
+
+INSERT INTO `permission` VALUES (4, 'access administration pages, access content, access statistics, access submission queue, access throttle block, access user list, administer blocks, administer content types, administer htmltidy, administer locales, administer menu, administer nodes, administer search, administer site configuration, administer statistics, administer statistics module, administer taxonomy, administer url aliases, administer users, administer watchdog, bypass input data check, create Article content, create Download content, create Feedback content, create News Item content, create php content, create url aliases, edit own Article content, edit own Download content, edit own Feedback content, edit own News Item content, maintain subscriptions, search content, use htmltidy debug mode, use htmltidy on output', 0);
+INSERT INTO `permission` VALUES (1, 'access content, create Feedback content, search content, use htmltidy on output', 0);
+INSERT INTO `permission` VALUES (2, 'access content, create Feedback content, edit own Feedback content, search content, use htmltidy on output', 0);
+INSERT INTO `permission` VALUES (3, 'access content, create Feedback content, edit own Feedback content, search content, use htmltidy on output', 0);
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `poll`
+#
+
+DROP TABLE IF EXISTS `poll`;
+CREATE TABLE `poll` (
+ `nid` int(10) unsigned NOT NULL default '0',
+ `runtime` int(10) NOT NULL default '0',
+ `voters` longtext NOT NULL,
+ `active` int(2) unsigned NOT NULL default '0',
+ PRIMARY KEY (`nid`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `poll`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `poll_choices`
+#
+
+DROP TABLE IF EXISTS `poll_choices`;
+CREATE TABLE `poll_choices` (
+ `chid` int(10) unsigned NOT NULL auto_increment,
+ `nid` int(10) unsigned NOT NULL default '0',
+ `chtext` varchar(128) NOT NULL default '',
+ `chvotes` int(6) NOT NULL default '0',
+ `chorder` int(2) NOT NULL default '0',
+ PRIMARY KEY (`chid`),
+ KEY `nid` (`nid`)
+) TYPE=MyISAM AUTO_INCREMENT=1 ;
+
+#
+# Dumping data for table `poll_choices`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `profile_fields`
+#
+
+DROP TABLE IF EXISTS `profile_fields`;
+CREATE TABLE `profile_fields` (
+ `fid` int(10) NOT NULL auto_increment,
+ `title` varchar(255) default NULL,
+ `name` varchar(128) default NULL,
+ `explanation` text,
+ `category` varchar(255) default NULL,
+ `page` varchar(255) default NULL,
+ `type` varchar(128) default NULL,
+ `weight` tinyint(1) NOT NULL default '0',
+ `required` tinyint(1) NOT NULL default '0',
+ `visibility` tinyint(1) NOT NULL default '0',
+ `options` text,
+ PRIMARY KEY (`fid`),
+ UNIQUE KEY `name` (`name`),
+ KEY `category` (`category`)
+) TYPE=MyISAM AUTO_INCREMENT=1 ;
+
+#
+# Dumping data for table `profile_fields`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `profile_values`
+#
+
+DROP TABLE IF EXISTS `profile_values`;
+CREATE TABLE `profile_values` (
+ `fid` int(11) unsigned default '0',
+ `uid` int(11) unsigned default '0',
+ `value` text,
+ KEY `uid` (`uid`),
+ KEY `fid` (`fid`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `profile_values`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `refer`
+#
+
+DROP TABLE IF EXISTS `refer`;
+CREATE TABLE `refer` (
+ `nid` int(11) default '0',
+ `sender` varchar(128) NOT NULL default '',
+ `message` text,
+ `timestamp` int(11) NOT NULL default '0'
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `refer`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `role`
+#
+
+DROP TABLE IF EXISTS `role`;
+CREATE TABLE `role` (
+ `rid` int(10) unsigned NOT NULL auto_increment,
+ `name` varchar(32) NOT NULL default '',
+ PRIMARY KEY (`rid`),
+ UNIQUE KEY `name` (`name`)
+) TYPE=MyISAM AUTO_INCREMENT=5 ;
+
+#
+# Dumping data for table `role`
+#
+
+INSERT INTO `role` VALUES (1, 'anonymous user');
+INSERT INTO `role` VALUES (2, 'authenticated user');
+INSERT INTO `role` VALUES (3, 'client');
+INSERT INTO `role` VALUES (4, 'administrator');
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `search_index`
+#
+
+DROP TABLE IF EXISTS `search_index`;
+CREATE TABLE `search_index` (
+ `word` varchar(50) NOT NULL default '',
+ `lno` int(10) unsigned NOT NULL default '0',
+ `type` varchar(16) default NULL,
+ `count` int(10) unsigned default NULL,
+ KEY `lno` (`lno`),
+ KEY `word` (`word`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `search_index`
+#
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `sequences`
+#
+
+DROP TABLE IF EXISTS `sequences`;
+CREATE TABLE `sequences` (
+ `name` varchar(255) NOT NULL default '',
+ `id` int(10) unsigned NOT NULL default '0',
+ PRIMARY KEY (`name`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `sequences`
+#
+
+INSERT INTO `sequences` VALUES ('menu_mid', 64);
+INSERT INTO `sequences` VALUES ('flexinode_ctype', 4);
+INSERT INTO `sequences` VALUES ('flexinode_field', 15);
+INSERT INTO `sequences` VALUES ('vocabulary_vid', 2);
+INSERT INTO `sequences` VALUES ('term_data_tid', 7);
+INSERT INTO `sequences` VALUES ('node_nid', 7);
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `sessions`
+#
+
+DROP TABLE IF EXISTS `sessions`;
+CREATE TABLE `sessions` (
+ `uid` int(10) unsigned NOT NULL default '0',
+ `sid` varchar(32) NOT NULL default '',
+ `hostname` varchar(128) NOT NULL default '',
+ `timestamp` int(11) NOT NULL default '0',
+ `session` longtext,
+ KEY `uid` (`uid`),
+ KEY `sid` (`sid`(4)),
+ KEY `timestamp` (`timestamp`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `sessions`
+#
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `subscriptions`
+#
+
+DROP TABLE IF EXISTS `subscriptions`;
+CREATE TABLE `subscriptions` (
+ `sid` int(10) unsigned NOT NULL default '0',
+ `uid` int(10) unsigned NOT NULL default '0',
+ `stype` varchar(4) NOT NULL default ''
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `subscriptions`
+#
+
+INSERT INTO `subscriptions` VALUES (6, 1, 'taxa');
+INSERT INTO `subscriptions` VALUES (5, 1, 'taxa');
+INSERT INTO `subscriptions` VALUES (7, 1, 'taxa');
+INSERT INTO `subscriptions` VALUES (5, 0, 'node');
+INSERT INTO `subscriptions` VALUES (6, 0, 'node');
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `system`
+#
+
+DROP TABLE IF EXISTS `system`;
+CREATE TABLE `system` (
+ `filename` varchar(255) NOT NULL default '',
+ `name` varchar(255) NOT NULL default '',
+ `type` varchar(255) NOT NULL default '',
+ `description` varchar(255) NOT NULL default '',
+ `status` int(2) NOT NULL default '0',
+ `throttle` tinyint(1) NOT NULL default '0',
+ `bootstrap` int(2) NOT NULL default '0',
+ PRIMARY KEY (`filename`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `system`
+#
+
+INSERT INTO `system` VALUES ('modules/comment.module', 'comment', 'module', 'Enables user to comment on content (nodes).', 0, 0, 0);
+INSERT INTO `system` VALUES ('modules/page.module', 'page', 'module', '', 0, 0, 0);
+INSERT INTO `system` VALUES ('modules/story.module', 'story', 'module', '', 0, 0, 0);
+INSERT INTO `system` VALUES ('themes/xtemplate/xtemplate.theme', 'xtemplate', 'theme', 'A template driven theme', 1, 0, 0);
+INSERT INTO `system` VALUES ('themes/phptemplate/phptemplate.theme', 'phptemplate', 'theme', '', 1, 0, 0);
+INSERT INTO `system` VALUES ('modules/admin.module', 'admin', 'module', 'Handles the administration pages.', 1, 0, 0);
+INSERT INTO `system` VALUES ('modules/aggregator.module', 'aggregator', 'module', 'Used to aggregate syndicated content (RSS and RDF).', 0, 0, 0);
+INSERT INTO `system` VALUES ('modules/block.module', 'block', 'module', 'Controls the boxes that are displayed around the main content.', 1, 0, 0);
+INSERT INTO `system` VALUES ('modules/blogapi.module', 'blogapi', 'module', 'Enable users to post using applications that support XML-RPC blog APIs', 0, 0, 0);
+INSERT INTO `system` VALUES ('modules/help.module', 'help', 'module', 'Manages displaying online help.', 1, 0, 0);
+INSERT INTO `system` VALUES ('modules/node.module', 'node', 'module', 'The core that allows content to be submitted to the site.', 1, 0, 0);
+INSERT INTO `system` VALUES ('modules/poll.module', 'poll', 'module', 'Enables your site to capture votes on different topics in the form of multiple choice questions.', 0, 0, 0);
+INSERT INTO `system` VALUES ('modules/taxonomy.module', 'taxonomy', 'module', 'Enables the organization of content into categories.', 1, 0, 0);
+INSERT INTO `system` VALUES ('modules/watchdog.module', 'watchdog', 'module', 'Logs and records system events.', 1, 0, 0);
+INSERT INTO `system` VALUES ('modules/filter.module', 'filter', 'module', 'Framework for handling filtering of content.', 1, 0, 0);
+INSERT INTO `system` VALUES ('modules/flexinode/flexinode.module', 'flexinode', 'module', 'Allows administrators to define their own content types.', 1, 0, 0);
+INSERT INTO `system` VALUES ('modules/htmltidy/htmltidy.module', 'htmltidy', 'module', '', 1, 0, 1);
+INSERT INTO `system` VALUES ('modules/i18n/i18n.module', 'i18n', 'module', '', 1, 0, 1);
+INSERT INTO `system` VALUES ('modules/legal/legal.module', 'legal', 'module', '', 1, 0, 0);
+INSERT INTO `system` VALUES ('modules/locale.module', 'locale', 'module', 'Enables the translation of the user interface to languages other than English.', 1, 0, 1);
+INSERT INTO `system` VALUES ('modules/menu.module', 'menu', 'module', 'Allows administrators to customize the site navigation menu.', 1, 0, 0);
+INSERT INTO `system` VALUES ('modules/path.module', 'path', 'module', 'Enables users to create custom URLs.', 1, 0, 0);
+INSERT INTO `system` VALUES ('modules/ping.module', 'ping', 'module', 'Alerts other sites that your site has been updated.', 1, 0, 0);
+INSERT INTO `system` VALUES ('modules/profile.module', 'profile', 'module', 'Support for configurable user profiles.', 1, 0, 0);
+INSERT INTO `system` VALUES ('modules/queue.module', 'queue', 'module', 'Enables content to be moderated by the community.', 1, 0, 0);
+INSERT INTO `system` VALUES ('modules/refer/refer.module', 'refer', 'module', 'Enables visitors to refer pages to others.', 1, 0, 0);
+INSERT INTO `system` VALUES ('modules/feedback/feedback.module', 'feedback', 'module', '', 0, 0, 0);
+INSERT INTO `system` VALUES ('modules/notify/notify.module', 'notify', 'module', '', 0, 0, 0);
+INSERT INTO `system` VALUES ('modules/search.module', 'search', 'module', 'Enables site-wide keyword searching.', 1, 0, 0);
+INSERT INTO `system` VALUES ('modules/statistics.module', 'statistics', 'module', 'Logs access statistics for your site.', 1, 0, 1);
+INSERT INTO `system` VALUES ('modules/system.module', 'system', 'module', 'Configuration system that lets administrators modify the workings of the site.', 1, 0, 0);
+INSERT INTO `system` VALUES ('modules/throttle.module', 'throttle', 'module', 'Allows configuration of congestion control auto-throttle mechanism.', 1, 0, 1);
+INSERT INTO `system` VALUES ('modules/title.module', 'title', 'module', 'Enables users to link to stories, articles or similar content by title.', 1, 0, 0);
+INSERT INTO `system` VALUES ('modules/tracker.module', 'tracker', 'module', 'Enables tracking of recent posts for users.', 1, 0, 0);
+INSERT INTO `system` VALUES ('modules/user.module', 'user', 'module', 'Enables the user registration and login system.', 1, 0, 0);
+INSERT INTO `system` VALUES ('modules/subscriptions/subscriptions.module', 'subscriptions', 'module', '', 1, 0, 0);
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `term_data`
+#
+
+DROP TABLE IF EXISTS `term_data`;
+CREATE TABLE `term_data` (
+ `tid` int(10) unsigned NOT NULL auto_increment,
+ `vid` int(10) unsigned NOT NULL default '0',
+ `name` varchar(255) NOT NULL default '',
+ `description` longtext,
+ `weight` tinyint(4) NOT NULL default '0',
+ PRIMARY KEY (`tid`),
+ KEY `vid` (`vid`)
+) TYPE=MyISAM AUTO_INCREMENT=8 ;
+
+#
+# Dumping data for table `term_data`
+#
+
+INSERT INTO `term_data` VALUES (1, 1, 'Corporate profile', '', 0);
+INSERT INTO `term_data` VALUES (2, 1, 'Jobs', '', 0);
+INSERT INTO `term_data` VALUES (3, 1, 'Projects', '', 0);
+INSERT INTO `term_data` VALUES (4, 1, 'Products', '', 0);
+INSERT INTO `term_data` VALUES (5, 2, 'Please send me more information', 'PLease give me more information', 0);
+INSERT INTO `term_data` VALUES (6, 2, 'Please email me more information', '', 0);
+INSERT INTO `term_data` VALUES (7, 2, 'Feedback about the website', '', 4);
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `term_hierarchy`
+#
+
+DROP TABLE IF EXISTS `term_hierarchy`;
+CREATE TABLE `term_hierarchy` (
+ `tid` int(10) unsigned NOT NULL default '0',
+ `parent` int(10) unsigned NOT NULL default '0',
+ KEY `tid` (`tid`),
+ KEY `parent` (`parent`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `term_hierarchy`
+#
+
+INSERT INTO `term_hierarchy` VALUES (1, 0);
+INSERT INTO `term_hierarchy` VALUES (2, 0);
+INSERT INTO `term_hierarchy` VALUES (3, 0);
+INSERT INTO `term_hierarchy` VALUES (4, 0);
+INSERT INTO `term_hierarchy` VALUES (5, 0);
+INSERT INTO `term_hierarchy` VALUES (6, 0);
+INSERT INTO `term_hierarchy` VALUES (7, 0);
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `term_node`
+#
+
+DROP TABLE IF EXISTS `term_node`;
+CREATE TABLE `term_node` (
+ `nid` int(10) unsigned NOT NULL default '0',
+ `tid` int(10) unsigned NOT NULL default '0',
+ KEY `nid` (`nid`),
+ KEY `tid` (`tid`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `term_node`
+#
+
+INSERT INTO `term_node` VALUES (1, 1);
+INSERT INTO `term_node` VALUES (3, 1);
+INSERT INTO `term_node` VALUES (4, 1);
+INSERT INTO `term_node` VALUES (5, 6);
+INSERT INTO `term_node` VALUES (6, 6);
+INSERT INTO `term_node` VALUES (7, 6);
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `term_relation`
+#
+
+DROP TABLE IF EXISTS `term_relation`;
+CREATE TABLE `term_relation` (
+ `tid1` int(10) unsigned NOT NULL default '0',
+ `tid2` int(10) unsigned NOT NULL default '0',
+ KEY `tid1` (`tid1`),
+ KEY `tid2` (`tid2`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `term_relation`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `term_synonym`
+#
+
+DROP TABLE IF EXISTS `term_synonym`;
+CREATE TABLE `term_synonym` (
+ `tid` int(10) unsigned NOT NULL default '0',
+ `name` varchar(255) NOT NULL default '',
+ KEY `tid` (`tid`),
+ KEY `name` (`name`(3))
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `term_synonym`
+#
+
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `url_alias`
+#
+
+DROP TABLE IF EXISTS `url_alias`;
+CREATE TABLE `url_alias` (
+ `pid` int(10) unsigned NOT NULL auto_increment,
+ `src` varchar(128) NOT NULL default '',
+ `dst` varchar(128) NOT NULL default '',
+ PRIMARY KEY (`pid`),
+ UNIQUE KEY `dst` (`dst`),
+ UNIQUE KEY `src` (`src`)
+) TYPE=MyISAM AUTO_INCREMENT=9 ;
+
+#
+# Dumping data for table `url_alias`
+#
+
+INSERT INTO `url_alias` VALUES (2, 'node/1', 'aboutus');
+INSERT INTO `url_alias` VALUES (3, 'taxonomy/page/or/2', 'jobs');
+INSERT INTO `url_alias` VALUES (4, 'taxonomy/page/or/3', 'projects');
+INSERT INTO `url_alias` VALUES (5, 'taxonomy/page/or/4', 'products');
+INSERT INTO `url_alias` VALUES (6, 'node/3', 'route');
+INSERT INTO `url_alias` VALUES (7, 'node/4', 'address');
+INSERT INTO `url_alias` VALUES (8, 'node/add/flexinode-4', 'feedback');
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `users`
+#
+
+DROP TABLE IF EXISTS `users`;
+CREATE TABLE `users` (
+ `uid` int(10) unsigned NOT NULL default '0',
+ `name` varchar(60) NOT NULL default '',
+ `pass` varchar(32) NOT NULL default '',
+ `mail` varchar(64) default '',
+ `mode` tinyint(1) NOT NULL default '0',
+ `sort` tinyint(1) default '0',
+ `threshold` tinyint(1) default '0',
+ `theme` varchar(255) NOT NULL default '',
+ `signature` varchar(255) NOT NULL default '',
+ `created` int(11) NOT NULL default '0',
+ `changed` int(11) NOT NULL default '0',
+ `status` tinyint(4) NOT NULL default '0',
+ `timezone` varchar(8) default NULL,
+ `language` char(2) NOT NULL default '',
+ `picture` varchar(255) NOT NULL default '',
+ `init` varchar(64) default '',
+ `data` longtext,
+ PRIMARY KEY (`uid`),
+ UNIQUE KEY `name` (`name`),
+ KEY `changed` (`changed`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `users`
+#
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `users_roles`
+#
+
+DROP TABLE IF EXISTS `users_roles`;
+CREATE TABLE `users_roles` (
+ `uid` int(10) unsigned NOT NULL default '0',
+ `rid` int(10) unsigned NOT NULL default '0',
+ PRIMARY KEY (`uid`,`rid`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `users_roles`
+#
+
+INSERT INTO `users_roles` VALUES (0, 1);
+INSERT INTO `users_roles` VALUES (1, 2);
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `variable`
+#
+
+DROP TABLE IF EXISTS `variable`;
+CREATE TABLE `variable` (
+ `name` varchar(48) NOT NULL default '',
+ `value` longtext NOT NULL,
+ PRIMARY KEY (`name`)
+) TYPE=MyISAM;
+
+#
+# Dumping data for table `variable`
+#
+
+INSERT INTO `variable` VALUES ('update_start', 's:10:"2004-02-21;"');
+INSERT INTO `variable` VALUES ('theme_default', 's:9:"xtemplate";');
+INSERT INTO `variable` VALUES ('phptemplate_template', 's:9:"marvin_2k";');
+INSERT INTO `variable` VALUES ('phptemplate_logo', 's:1:"0";');
+INSERT INTO `variable` VALUES ('phptemplate_site_name', 's:1:"1";');
+INSERT INTO `variable` VALUES ('phptemplate_site_slogan', 's:1:"1";');
+INSERT INTO `variable` VALUES ('phptemplate_display_links', 's:1:"1";');
+INSERT INTO `variable` VALUES ('phptemplate_display_mission', 's:1:"1";');
+INSERT INTO `variable` VALUES ('phptemplate_search_box', 's:1:"1";');
+INSERT INTO `variable` VALUES ('phptemplate_avatar_node', 's:1:"0";');
+INSERT INTO `variable` VALUES ('phptemplate_avatar_comment', 's:1:"0";');
+INSERT INTO `variable` VALUES ('phptemplate_custom_logo', 's:0:"";');
+INSERT INTO `variable` VALUES ('phptemplate_avatar_default', 's:0:"";');
+INSERT INTO `variable` VALUES ('phptemplate_links', 's:0:"";');
+INSERT INTO `variable` VALUES ('phptemplate_message', 's:0:"";');
+INSERT INTO `variable` VALUES ('htmltidy_apppath', 's:13:"/usr/bin/tidy";');
+INSERT INTO `variable` VALUES ('htmltidy_wordwrap', 's:1:"0";');
+INSERT INTO `variable` VALUES ('htmltidy_indent', 's:1:"1";');
+INSERT INTO `variable` VALUES ('htmltidy_wrapphp', 's:1:"1";');
+INSERT INTO `variable` VALUES ('htmltidy_tidymark', 's:1:"1";');
+INSERT INTO `variable` VALUES ('htmltidy_clean', 's:1:"1";');
+INSERT INTO `variable` VALUES ('htmltidy_xhtml', 's:1:"1";');
+INSERT INTO `variable` VALUES ('htmltidy_doctype', 's:4:"auto";');
+INSERT INTO `variable` VALUES ('htmltidy_enclosetext', 's:1:"0";');
+INSERT INTO `variable` VALUES ('htmltidy_encloseblocktext', 's:1:"0";');
+INSERT INTO `variable` VALUES ('htmltidy_warnings', 's:1:"1";');
+INSERT INTO `variable` VALUES ('htmltidy_verbose', 's:1:"1";');
+INSERT INTO `variable` VALUES ('htmltidy_runtwice', 's:1:"0";');
+INSERT INTO `variable` VALUES ('i18n_interface', 's:1:"1";');
+INSERT INTO `variable` VALUES ('i18n_content', 's:1:"1";');
+INSERT INTO `variable` VALUES ('i18n_sync_nodes', 's:1:"1";');
+INSERT INTO `variable` VALUES ('i18n_sync_taxonomy', 's:1:"1";');
+INSERT INTO `variable` VALUES ('i18n_front_page', 's:1:"0";');
+INSERT INTO `variable` VALUES ('i18n_keep', 's:3:"url";');
+INSERT INTO `variable` VALUES ('i18n_browser', 's:1:"0";');
+INSERT INTO `variable` VALUES ('i18n_flags', 's:24:"modules/i18n/flags/*.gif";');
+INSERT INTO `variable` VALUES ('node_status_flexinode-1', 's:1:"1";');
+INSERT INTO `variable` VALUES ('node_promote_flexinode-1', 's:1:"1";');
+INSERT INTO `variable` VALUES ('node_moderate_flexinode-1', 's:1:"0";');
+INSERT INTO `variable` VALUES ('node_sticky_flexinode-1', 's:1:"0";');
+INSERT INTO `variable` VALUES ('node_revision_flexinode-1', 's:1:"0";');
+INSERT INTO `variable` VALUES ('node_status_flexinode-2', 's:1:"1";');
+INSERT INTO `variable` VALUES ('node_promote_flexinode-2', 's:1:"0";');
+INSERT INTO `variable` VALUES ('node_moderate_flexinode-2', 's:1:"0";');
+INSERT INTO `variable` VALUES ('node_sticky_flexinode-2', 's:1:"0";');
+INSERT INTO `variable` VALUES ('node_revision_flexinode-2', 's:1:"1";');
+INSERT INTO `variable` VALUES ('feedback_help', 's:0:"";');
+INSERT INTO `variable` VALUES ('minimum_feedback_size', 's:1:"0";');
+INSERT INTO `variable` VALUES ('feedback_email', 's:16:"me@localhost.com";');
+INSERT INTO `variable` VALUES ('feedback_private_fields', 'a:17:{i:0;s:1:"0";i:1;s:7:"address";i:2;s:1:"0";i:3;s:4:"city";i:4;s:1:"0";i:5;s:5:"state";i:6;s:1:"0";i:7;s:3:"zip";i:8;s:1:"0";i:9;s:7:"country";i:10;s:1:"0";i:11;s:6:"gender";i:12;s:1:"0";i:13;s:3:"job";i:14;s:1:"0";i:15;s:1:"0";i:16;s:1:"0";}');
+INSERT INTO `variable` VALUES ('feedback_required_fields', 'a:14:{i:0;s:1:"0";i:1;s:7:"address";i:2;s:1:"0";i:3;s:4:"city";i:4;s:1:"0";i:5;s:1:"0";i:6;s:3:"zip";i:7;s:1:"0";i:8;s:7:"country";i:9;s:1:"0";i:10;s:1:"0";i:11;s:1:"0";i:12;s:1:"0";i:13;s:1:"0";}');
+INSERT INTO `variable` VALUES ('user_register', 's:1:"2";');
+INSERT INTO `variable` VALUES ('user_registration_help', 's:0:"";');
+INSERT INTO `variable` VALUES ('user_mail_welcome_subject', 's:38:"Account details for %username at %site";');
+INSERT INTO `variable` VALUES ('user_mail_welcome_body', 's:503:"%username,\r\n\r\nThank you for registering at %site. You may now log in to %login_uri using the following username and password:\r\n\r\nusername: %username\r\npassword: %password\r\n\r\nAfter logging in, you may wish to change your password at %edit_uri\r\n\r\nYour new %site membership also enables to you to login to other Drupal powered websites (e.g. http://www.drop.org/) without registering. Just use the following Drupal ID and password:\r\n\r\nDrupal ID: %username@%uri_brief\r\npassword: %password\r\n\r\n\r\n-- %site team";');
+INSERT INTO `variable` VALUES ('user_mail_approval_subject', 's:63:"Account details for %username at %site (pending admin approval)";');
+INSERT INTO `variable` VALUES ('user_mail_approval_body', 's:588:"%username,\r\n\r\nThank you for registering at %site. Your application for an account is currently pending approval. Once it has been granted, you may log in to %login_uri using the following username and password:\r\n\r\nusername: %username\r\npassword: %password\r\n\r\nAfter logging in, you may wish to change your password at %edit_uri\r\n\r\nYour new %site membership also enables to you to login to other Drupal powered websites (e.g. http://www.drop.org/) without registering. Just use the following Drupal ID and password:\r\n\r\nDrupal ID: %username@%uri_brief\r\npassword: %password\r\n\r\n\r\n-- %site team";');
+INSERT INTO `variable` VALUES ('user_mail_pass_subject', 's:52:"Replacement login information for %username at %site";');
+INSERT INTO `variable` VALUES ('user_mail_pass_body', 's:240:"%username,\r\n\r\nHere is your new password for %site. You may now login to %login_uri using the following username and password:\r\n\r\nusername: %username\r\npassword: %password\r\n\r\nAfter logging in, you may wish to change your password at %edit_uri";');
+INSERT INTO `variable` VALUES ('user_pictures', 's:1:"0";');
+INSERT INTO `variable` VALUES ('user_picture_path', 's:8:"pictures";');
+INSERT INTO `variable` VALUES ('user_picture_default', 's:0:"";');
+INSERT INTO `variable` VALUES ('user_picture_dimensions', 's:5:"85x85";');
+INSERT INTO `variable` VALUES ('user_picture_file_size', 's:2:"30";');
+INSERT INTO `variable` VALUES ('user_picture_guidelines', 's:0:"";');
+INSERT INTO `variable` VALUES ('user_block_seconds_online', 's:3:"900";');
+INSERT INTO `variable` VALUES ('user_block_max_list_count', 's:2:"10";');
+INSERT INTO `variable` VALUES ('node_status_flexinode-3', 's:1:"1";');
+INSERT INTO `variable` VALUES ('node_promote_flexinode-3', 's:1:"1";');
+INSERT INTO `variable` VALUES ('node_moderate_flexinode-3', 's:1:"0";');
+INSERT INTO `variable` VALUES ('node_sticky_flexinode-3', 's:1:"0";');
+INSERT INTO `variable` VALUES ('node_revision_flexinode-3', 's:1:"0";');
+INSERT INTO `variable` VALUES ('node_status_flexinode-4', 's:1:"0";');
+INSERT INTO `variable` VALUES ('node_promote_flexinode-4', 's:1:"0";');
+INSERT INTO `variable` VALUES ('node_moderate_flexinode-4', 's:1:"1";');
+INSERT INTO `variable` VALUES ('node_sticky_flexinode-4', 's:1:"0";');
+INSERT INTO `variable` VALUES ('node_revision_flexinode-4', 's:1:"1";');
+INSERT INTO `variable` VALUES ('node_cron_last', 'i:1088628727;');
+INSERT INTO `variable` VALUES ('statistics_day_timestamp', 'i:1088628727;');
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `vocabulary`
+#
+
+DROP TABLE IF EXISTS `vocabulary`;
+CREATE TABLE `vocabulary` (
+ `vid` int(10) unsigned NOT NULL auto_increment,
+ `name` varchar(255) NOT NULL default '',
+ `description` longtext,
+ `help` varchar(255) NOT NULL default '',
+ `relations` tinyint(3) unsigned NOT NULL default '0',
+ `hierarchy` tinyint(3) unsigned NOT NULL default '0',
+ `multiple` tinyint(3) unsigned NOT NULL default '0',
+ `required` tinyint(3) unsigned NOT NULL default '0',
+ `nodes` longtext,
+ `weight` tinyint(4) NOT NULL default '0',
+ PRIMARY KEY (`vid`)
+) TYPE=MyISAM AUTO_INCREMENT=3 ;
+
+#
+# Dumping data for table `vocabulary`
+#
+
+INSERT INTO `vocabulary` VALUES (1, 'Site Structure', 'This classification tree contains the site structure', 'Choosing one of these items will make the article show up in one of the six places on the site', 0, 2, 0, 1, 'flexinode-2', 0);
+INSERT INTO `vocabulary` VALUES (2, 'Feedback', 'Defines the type of feedback', 'Please define the type of feedback', 0, 0, 0, 1, 'flexinode-4', 0);
+
+# --------------------------------------------------------
+
+#
+# Table structure for table `watchdog`
+#
+
+DROP TABLE IF EXISTS `watchdog`;
+CREATE TABLE `watchdog` (
+ `wid` int(5) NOT NULL auto_increment,
+ `uid` int(10) NOT NULL default '0',
+ `type` varchar(16) NOT NULL default '',
+ `message` longtext NOT NULL,
+ `link` varchar(255) NOT NULL default '',
+ `location` varchar(128) NOT NULL default '',
+ `hostname` varchar(128) NOT NULL default '',
+ `timestamp` int(11) NOT NULL default '0',
+ PRIMARY KEY (`wid`)
+) TYPE=MyISAM AUTO_INCREMENT=126 ;
+
+#
+# Dumping data for table `watchdog`
+#
+=======
-- MySQL dump 8.22
--
-- Host: localhost Database: drupal_devel
@@ -734,6 +2154,9 @@
REPLACE blocks SET module = 'user', delta = '1', status = '1';
INSERT INTO sequences (name, id) VALUES ('menu_mid', 1);
+<<<<<<< database.mysql
+>>>>>>> 1.135
+=======
INSERT INTO node_access VALUES (0, 0, 'all', 1, 0, 0);
@@ -747,3 +2170,4 @@
INSERT INTO variable (name,value) VALUES ('filter_html_1','i:1;');
INSERT INTO locales_meta (locale, name, enabled, isdefault) VALUES ('en', 'English', '1', '1');
+>>>>>>> 1.142
Index: includes/conf.php
===================================================================
RCS file: /cvs/drupal/drupal/includes/conf.php,v
retrieving revision 1.30
diff -u -r1.30 conf.php
--- includes/conf.php 11 Aug 2004 11:26:14 -0000 1.30
+++ includes/conf.php 14 Aug 2004 19:15:58 -0000
@@ -19,7 +19,8 @@
# $db_url = "mysql://user:password@hostname/database";
# $db_url = "pgsql://user:password@hostname/database";
-$db_url = "mysql://drupal:drupal@localhost/drupal";
+$db_url = "mysql://drupal:drupal@localhost/dalsem";
+#$db_url = "mysql://dalsem:drupal@localhost/dalsem";
# If $db_prefix is specified all database table names will be
# prepended with this string. Be sure to use valid database
@@ -33,8 +34,8 @@
# The URL of your website's main page. It is not allowed to have
# a trailing slash; Drupal will add it for you.
#
-$base_url = "http://localhost";
-
+#$base_url = "http://dalsem.webschuur.com/";
+$base_url = "http://localhost/DMP_dalsemmushrooms";
#
# PHP settings:
#
@@ -43,18 +44,21 @@
# unexcepted warnings or errors, double-check your PHP settings.
# If required, update PHP's include path to include your PEAR directory:
-// ini_set("include_path", ".:/path/to/pear");
+# Languages / translation / internationalization:
#
-# Custom navigation links:
-#
-# Custom navigation links override the standard page links offered
-# by most Drupal modules. Administrators may add/remove/reorder all
-# links here. These links are typically displayed in a row near the
-# top of every page.
-// $custom_links = array(
-// "home ",
-// "journal ",
-// "articles ");
+# The first language listed in this associative array will
+# automatically become the default language. You can add a language
+# but make sure your SQL table, called locales is updated
+# appropriately.
+#$languages = array("en" => "english", "nl" => "nederlands", "es"=>"español");
+
+$db_prefix_i18n = array (
+ // '**' will be replaced by language code at runtime.
+ 'node' => '**_',
+ 'flexinode_data' => '**_',
+ 'menu'=> '**_',
+);
+include 'modules/i18n/i18n.inc';
?>