Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
Update database dump – now with backend documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
nilshoerrmann committed Aug 15, 2013
1 parent 9777038 commit 3f712a7
Show file tree
Hide file tree
Showing 3 changed files with 113 additions and 101 deletions.
17 changes: 13 additions & 4 deletions install/includes/config_default.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@
'image' => array(
'cache' => '1',
'quality' => '90',
'disable_regular_rules' => 'no',
'disable_upscaling' => 'no',
),
########

Expand All @@ -105,17 +107,24 @@
########


###### DOCUMENTATION ######
'documentation' => array(
'text-formatter' => 'markdown_extra_with_smartypants',
'button-text' => 'Help',
),
########


###### DATETIME ######
'datetime' => array(
'english' => 'en, en_GB.UTF8, en_GB',
),
########


###### DOCUMENTATION ######
'documentation' => array(
'text-formatter' => 'none',
'button-text' => 'Documentation',
###### HTML5_DOCTYPE ######
'html5_doctype' => array(
'exclude_pagetypes' => null,
),
########
);
4 changes: 2 additions & 2 deletions install/includes/install.sql
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ CREATE TABLE`tbl_documentation` (
`content` text COLLATE utf8_unicode_ci,
`content_formatted` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

-- *** STRUCTURE: `sym_entries` ***
DROP TABLE IF EXISTS`tbl_entries`;
Expand Down Expand Up @@ -134,7 +134,7 @@ CREATE TABLE`tbl_fields_date` (
`pre_populate` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'no',
PRIMARY KEY (`id`),
KEY `field_id` (`field_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

-- *** STRUCTURE: `sym_fields_datetime` ***
DROP TABLE IF EXISTS`tbl_fields_datetime`;
Expand Down
Loading

0 comments on commit 3f712a7

Please sign in to comment.