MINOR Reverted accidental commits in r71146, r71147, r71148, r71149, r71150, r71151 - thought I was committing to another repository...

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/branches/2.3@71152 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
ischommer 2009-02-01 08:09:39 +00:00 committed by Sam Minnee
parent 10dca7fa20
commit 8ee54ccb4b
71 changed files with 505 additions and 2672 deletions

View File

@ -1,1332 +0,0 @@
-- MySQL dump 10.11
--
-- Host: localhost Database: SS_ssbook_erste_schritte
-- ------------------------------------------------------
-- Server version 5.0.41
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `EditableCheckbox`
--
DROP TABLE IF EXISTS `EditableCheckbox`;
CREATE TABLE `EditableCheckbox` (
`ID` int(11) NOT NULL auto_increment,
`Checked` tinyint(1) unsigned NOT NULL default '0',
PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `EditableCheckbox`
--
LOCK TABLES `EditableCheckbox` WRITE;
/*!40000 ALTER TABLE `EditableCheckbox` DISABLE KEYS */;
/*!40000 ALTER TABLE `EditableCheckbox` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `EditableCheckboxOption`
--
DROP TABLE IF EXISTS `EditableCheckboxOption`;
CREATE TABLE `EditableCheckboxOption` (
`ID` int(11) NOT NULL auto_increment,
`ClassName` enum('EditableCheckboxOption') character set utf8 default 'EditableCheckboxOption',
`Created` datetime default NULL,
`LastEdited` datetime default NULL,
`Name` varchar(50) character set utf8 default NULL,
`Title` varchar(50) character set utf8 default NULL,
`Default` tinyint(1) unsigned NOT NULL default '0',
`Sort` int(11) NOT NULL default '0',
`ParentID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `ParentID` (`ParentID`),
KEY `ClassName` (`ClassName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `EditableCheckboxOption`
--
LOCK TABLES `EditableCheckboxOption` WRITE;
/*!40000 ALTER TABLE `EditableCheckboxOption` DISABLE KEYS */;
/*!40000 ALTER TABLE `EditableCheckboxOption` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `EditableDropdownOption`
--
DROP TABLE IF EXISTS `EditableDropdownOption`;
CREATE TABLE `EditableDropdownOption` (
`ID` int(11) NOT NULL auto_increment,
`ClassName` enum('EditableDropdownOption') character set utf8 default 'EditableDropdownOption',
`Created` datetime default NULL,
`LastEdited` datetime default NULL,
`Name` varchar(50) character set utf8 default NULL,
`Title` varchar(50) character set utf8 default NULL,
`Default` tinyint(1) unsigned NOT NULL default '0',
`Sort` int(11) NOT NULL default '0',
`ParentID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `ParentID` (`ParentID`),
KEY `ClassName` (`ClassName`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `EditableDropdownOption`
--
LOCK TABLES `EditableDropdownOption` WRITE;
/*!40000 ALTER TABLE `EditableDropdownOption` DISABLE KEYS */;
INSERT INTO `EditableDropdownOption` VALUES (1,'EditableDropdownOption','2009-02-01 20:36:50','2009-02-01 20:36:50','option0','Anregung',0,0,3),(2,'EditableDropdownOption','2009-02-01 20:36:50','2009-02-01 20:36:50','option1','Frage',0,1,3),(3,'EditableDropdownOption','2009-02-01 20:36:50','2009-02-01 20:36:50','option2','Kritik',0,2,3);
/*!40000 ALTER TABLE `EditableDropdownOption` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `EditableEmailField`
--
DROP TABLE IF EXISTS `EditableEmailField`;
CREATE TABLE `EditableEmailField` (
`ID` int(11) NOT NULL auto_increment,
`SendCopy` tinyint(1) unsigned NOT NULL default '0',
PRIMARY KEY (`ID`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `EditableEmailField`
--
LOCK TABLES `EditableEmailField` WRITE;
/*!40000 ALTER TABLE `EditableEmailField` DISABLE KEYS */;
INSERT INTO `EditableEmailField` VALUES (2,0);
/*!40000 ALTER TABLE `EditableEmailField` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `EditableFileField`
--
DROP TABLE IF EXISTS `EditableFileField`;
CREATE TABLE `EditableFileField` (
`ID` int(11) NOT NULL auto_increment,
`UploadedFileID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `UploadedFileID` (`UploadedFileID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `EditableFileField`
--
LOCK TABLES `EditableFileField` WRITE;
/*!40000 ALTER TABLE `EditableFileField` DISABLE KEYS */;
/*!40000 ALTER TABLE `EditableFileField` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `EditableFormField`
--
DROP TABLE IF EXISTS `EditableFormField`;
CREATE TABLE `EditableFormField` (
`ID` int(11) NOT NULL auto_increment,
`ClassName` enum('EditableFormField','EditableCheckbox','EditableCheckboxGroupField','EditableDateField','EditableDropdown','EditableEmailField','EditableFileField','EditableFormHeading','EditableMemberListField','EditableRadioField','EditableTextField') character set utf8 default 'EditableFormField',
`Created` datetime default NULL,
`LastEdited` datetime default NULL,
`Name` varchar(50) character set utf8 default NULL,
`Title` varchar(255) character set utf8 default NULL,
`Default` varchar(50) character set utf8 default NULL,
`Sort` int(11) NOT NULL default '0',
`Required` tinyint(1) unsigned NOT NULL default '0',
`CanDelete` tinyint(1) unsigned NOT NULL default '0',
`CustomParameter` varchar(50) character set utf8 default NULL,
`ParentID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `ParentID` (`ParentID`),
KEY `ClassName` (`ClassName`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `EditableFormField`
--
LOCK TABLES `EditableFormField` WRITE;
/*!40000 ALTER TABLE `EditableFormField` DISABLE KEYS */;
INSERT INTO `EditableFormField` VALUES (1,'EditableTextField','2009-02-01 20:34:40','2009-02-01 20:36:50','EditableTextField1','Name',NULL,0,0,1,NULL,3),(2,'EditableEmailField','2009-02-01 20:34:46','2009-02-01 20:36:50','EditableEmailField2','E-Mail Adresse',NULL,1,1,1,NULL,3),(3,'EditableDropdown','2009-02-01 20:34:59','2009-02-01 20:36:50','EditableDropdown3','Art der Nachricht',NULL,2,0,1,NULL,3),(4,'EditableRadioField','2009-02-01 20:35:13','2009-02-01 20:36:50','EditableRadioField4','Bewertung der Webseite','_4',3,0,1,NULL,3),(5,'EditableTextField','2009-02-01 20:35:21','2009-02-01 20:36:50','EditableTextField5','Nachricht',NULL,4,0,1,NULL,3);
/*!40000 ALTER TABLE `EditableFormField` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `EditableMemberListField`
--
DROP TABLE IF EXISTS `EditableMemberListField`;
CREATE TABLE `EditableMemberListField` (
`ID` int(11) NOT NULL auto_increment,
`GroupID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `GroupID` (`GroupID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `EditableMemberListField`
--
LOCK TABLES `EditableMemberListField` WRITE;
/*!40000 ALTER TABLE `EditableMemberListField` DISABLE KEYS */;
/*!40000 ALTER TABLE `EditableMemberListField` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `EditableRadioOption`
--
DROP TABLE IF EXISTS `EditableRadioOption`;
CREATE TABLE `EditableRadioOption` (
`ID` int(11) NOT NULL auto_increment,
`ClassName` enum('EditableRadioOption') character set utf8 default 'EditableRadioOption',
`Created` datetime default NULL,
`LastEdited` datetime default NULL,
`Name` varchar(50) character set utf8 default NULL,
`Title` varchar(50) character set utf8 default NULL,
`Default` tinyint(1) unsigned NOT NULL default '0',
`Value` varchar(50) character set utf8 default NULL,
`Sort` int(11) NOT NULL default '0',
`ParentID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `ParentID` (`ParentID`),
KEY `ClassName` (`ClassName`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `EditableRadioOption`
--
LOCK TABLES `EditableRadioOption` WRITE;
/*!40000 ALTER TABLE `EditableRadioOption` DISABLE KEYS */;
INSERT INTO `EditableRadioOption` VALUES (1,'EditableRadioOption','2009-02-01 20:36:50','2009-02-01 20:36:50','option0','Schlecht',0,NULL,0,4),(2,'EditableRadioOption','2009-02-01 20:36:50','2009-02-01 20:36:50','option0','Durchschnittlich',0,NULL,1,4),(3,'EditableRadioOption','2009-02-01 20:36:50','2009-02-01 20:36:50','option0','Gut',0,NULL,2,4),(4,'EditableRadioOption','2009-02-01 20:36:50','2009-02-01 20:36:50','option0','Sehr gut',1,NULL,3,4);
/*!40000 ALTER TABLE `EditableRadioOption` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `EditableTextField`
--
DROP TABLE IF EXISTS `EditableTextField`;
CREATE TABLE `EditableTextField` (
`ID` int(11) NOT NULL auto_increment,
`Size` int(11) NOT NULL default '0',
`MinLength` int(11) NOT NULL default '0',
`MaxLength` int(11) NOT NULL default '0',
`Rows` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `EditableTextField`
--
LOCK TABLES `EditableTextField` WRITE;
/*!40000 ALTER TABLE `EditableTextField` DISABLE KEYS */;
INSERT INTO `EditableTextField` VALUES (1,32,1,32,1),(5,32,1,32,5);
/*!40000 ALTER TABLE `EditableTextField` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Email_BounceRecord`
--
DROP TABLE IF EXISTS `Email_BounceRecord`;
CREATE TABLE `Email_BounceRecord` (
`ID` int(11) NOT NULL auto_increment,
`ClassName` enum('Email_BounceRecord') character set utf8 default 'Email_BounceRecord',
`Created` datetime default NULL,
`LastEdited` datetime default NULL,
`BounceEmail` varchar(50) character set utf8 default NULL,
`BounceTime` datetime default NULL,
`BounceMessage` varchar(50) character set utf8 default NULL,
`MemberID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `MemberID` (`MemberID`),
KEY `ClassName` (`ClassName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `Email_BounceRecord`
--
LOCK TABLES `Email_BounceRecord` WRITE;
/*!40000 ALTER TABLE `Email_BounceRecord` DISABLE KEYS */;
/*!40000 ALTER TABLE `Email_BounceRecord` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ErrorPage`
--
DROP TABLE IF EXISTS `ErrorPage`;
CREATE TABLE `ErrorPage` (
`ID` int(11) NOT NULL auto_increment,
`ErrorCode` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `ErrorPage`
--
LOCK TABLES `ErrorPage` WRITE;
/*!40000 ALTER TABLE `ErrorPage` DISABLE KEYS */;
INSERT INTO `ErrorPage` VALUES (4,404);
/*!40000 ALTER TABLE `ErrorPage` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ErrorPage_Live`
--
DROP TABLE IF EXISTS `ErrorPage_Live`;
CREATE TABLE `ErrorPage_Live` (
`ID` int(11) NOT NULL auto_increment,
`ErrorCode` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `ErrorPage_Live`
--
LOCK TABLES `ErrorPage_Live` WRITE;
/*!40000 ALTER TABLE `ErrorPage_Live` DISABLE KEYS */;
INSERT INTO `ErrorPage_Live` VALUES (4,404);
/*!40000 ALTER TABLE `ErrorPage_Live` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ErrorPage_versions`
--
DROP TABLE IF EXISTS `ErrorPage_versions`;
CREATE TABLE `ErrorPage_versions` (
`ID` int(11) NOT NULL auto_increment,
`RecordID` int(11) NOT NULL default '0',
`Version` int(11) NOT NULL default '0',
`WasPublished` tinyint(1) unsigned NOT NULL default '0',
`AuthorID` int(11) NOT NULL default '0',
`PublisherID` int(11) NOT NULL default '0',
`ErrorCode` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `RecordID_Version` (`RecordID`,`Version`),
KEY `RecordID` (`RecordID`),
KEY `Version` (`Version`),
KEY `AuthorID` (`AuthorID`),
KEY `PublisherID` (`PublisherID`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `ErrorPage_versions`
--
LOCK TABLES `ErrorPage_versions` WRITE;
/*!40000 ALTER TABLE `ErrorPage_versions` DISABLE KEYS */;
INSERT INTO `ErrorPage_versions` VALUES (1,4,1,0,0,0,404),(2,4,2,0,0,0,404),(3,4,3,0,1,0,404),(4,4,4,0,1,0,404);
/*!40000 ALTER TABLE `ErrorPage_versions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `File`
--
DROP TABLE IF EXISTS `File`;
CREATE TABLE `File` (
`ID` int(11) NOT NULL auto_increment,
`ClassName` enum('File','Image','Folder','Image_Cached') character set utf8 default 'File',
`Created` datetime default NULL,
`LastEdited` datetime default NULL,
`Name` varchar(255) character set utf8 default NULL,
`Title` varchar(255) character set utf8 default NULL,
`Filename` varchar(255) character set utf8 default NULL,
`Content` mediumtext character set utf8,
`Sort` int(11) NOT NULL default '0',
`ParentID` int(11) NOT NULL default '0',
`OwnerID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `ParentID` (`ParentID`),
KEY `OwnerID` (`OwnerID`),
KEY `ClassName` (`ClassName`),
FULLTEXT KEY `SearchFields` (`Filename`,`Title`,`Content`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `File`
--
LOCK TABLES `File` WRITE;
/*!40000 ALTER TABLE `File` DISABLE KEYS */;
INSERT INTO `File` VALUES (1,'Folder','2009-02-01 20:07:05','2009-02-01 20:07:05','Uploads','Uploads','assets/Uploads/',NULL,0,0,0),(2,'Image','2009-02-01 20:07:05','2009-02-01 20:07:05','SilverStripeLogo.png','SilverStripeLogo.png','assets/Uploads/SilverStripeLogo.png',NULL,0,1,0),(3,'Folder','2009-02-01 20:30:47','2009-02-01 20:30:47','Bilder','Bilder','assets/Bilder/',NULL,0,0,1),(4,'Image','2009-02-01 20:30:47','2009-02-01 20:30:47','passt.jpg','passt.jpg','assets/Bilder/passt.jpg',NULL,0,3,1),(5,'File','2009-02-01 20:30:47','2009-02-01 20:30:47','error-404.html','error-404.html','assets/error-404.html',NULL,0,0,1),(6,'File','2009-02-01 20:30:47','2009-02-01 20:30:47','website_text.odt','website_text.odt','assets/website_text.odt',NULL,0,0,1);
/*!40000 ALTER TABLE `File` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `GhostPage`
--
DROP TABLE IF EXISTS `GhostPage`;
CREATE TABLE `GhostPage` (
`ID` int(11) NOT NULL auto_increment,
`LinkedPageID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `LinkedPageID` (`LinkedPageID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `GhostPage`
--
LOCK TABLES `GhostPage` WRITE;
/*!40000 ALTER TABLE `GhostPage` DISABLE KEYS */;
/*!40000 ALTER TABLE `GhostPage` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `GhostPage_Live`
--
DROP TABLE IF EXISTS `GhostPage_Live`;
CREATE TABLE `GhostPage_Live` (
`ID` int(11) NOT NULL auto_increment,
`LinkedPageID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `LinkedPageID` (`LinkedPageID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `GhostPage_Live`
--
LOCK TABLES `GhostPage_Live` WRITE;
/*!40000 ALTER TABLE `GhostPage_Live` DISABLE KEYS */;
/*!40000 ALTER TABLE `GhostPage_Live` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `GhostPage_versions`
--
DROP TABLE IF EXISTS `GhostPage_versions`;
CREATE TABLE `GhostPage_versions` (
`ID` int(11) NOT NULL auto_increment,
`RecordID` int(11) NOT NULL default '0',
`Version` int(11) NOT NULL default '0',
`WasPublished` tinyint(1) unsigned NOT NULL default '0',
`AuthorID` int(11) NOT NULL default '0',
`PublisherID` int(11) NOT NULL default '0',
`LinkedPageID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `RecordID_Version` (`RecordID`,`Version`),
KEY `RecordID` (`RecordID`),
KEY `Version` (`Version`),
KEY `AuthorID` (`AuthorID`),
KEY `PublisherID` (`PublisherID`),
KEY `LinkedPageID` (`LinkedPageID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `GhostPage_versions`
--
LOCK TABLES `GhostPage_versions` WRITE;
/*!40000 ALTER TABLE `GhostPage_versions` DISABLE KEYS */;
/*!40000 ALTER TABLE `GhostPage_versions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Group`
--
DROP TABLE IF EXISTS `Group`;
CREATE TABLE `Group` (
`ID` int(11) NOT NULL auto_increment,
`ClassName` enum('Group') character set utf8 default 'Group',
`Created` datetime default NULL,
`LastEdited` datetime default NULL,
`Title` varchar(50) character set utf8 default NULL,
`Description` mediumtext character set utf8,
`Code` varchar(50) character set utf8 default NULL,
`Locked` tinyint(1) unsigned NOT NULL default '0',
`Sort` int(11) NOT NULL default '0',
`IPRestrictions` mediumtext character set utf8,
`ParentID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `ParentID` (`ParentID`),
KEY `ClassName` (`ClassName`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `Group`
--
LOCK TABLES `Group` WRITE;
/*!40000 ALTER TABLE `Group` DISABLE KEYS */;
INSERT INTO `Group` VALUES (1,'Group','2009-02-01 20:07:05','2009-02-01 20:07:05','Administrators',NULL,'administrators',0,0,NULL,0),(2,'Group','2009-02-01 20:41:24','2009-02-01 20:41:51','Redakteure',NULL,'neue-gruppe',0,0,NULL,0),(3,'Group','2009-02-01 20:41:59','2009-02-01 20:42:06','Chefredakteur',NULL,'neue-gruppe',0,0,NULL,2);
/*!40000 ALTER TABLE `Group` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Group_Members`
--
DROP TABLE IF EXISTS `Group_Members`;
CREATE TABLE `Group_Members` (
`ID` int(11) NOT NULL auto_increment,
`GroupID` int(11) NOT NULL default '0',
`MemberID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `GroupID` (`GroupID`),
KEY `MemberID` (`MemberID`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `Group_Members`
--
LOCK TABLES `Group_Members` WRITE;
/*!40000 ALTER TABLE `Group_Members` DISABLE KEYS */;
INSERT INTO `Group_Members` VALUES (1,1,1),(2,2,2);
/*!40000 ALTER TABLE `Group_Members` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `LoginAttempt`
--
DROP TABLE IF EXISTS `LoginAttempt`;
CREATE TABLE `LoginAttempt` (
`ID` int(11) NOT NULL auto_increment,
`ClassName` enum('LoginAttempt') character set utf8 default 'LoginAttempt',
`Created` datetime default NULL,
`LastEdited` datetime default NULL,
`Email` varchar(255) character set utf8 default NULL,
`Status` enum('Success','Failure') character set utf8 default 'Success',
`IP` varchar(255) character set utf8 default NULL,
`MemberID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `MemberID` (`MemberID`),
KEY `ClassName` (`ClassName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `LoginAttempt`
--
LOCK TABLES `LoginAttempt` WRITE;
/*!40000 ALTER TABLE `LoginAttempt` DISABLE KEYS */;
/*!40000 ALTER TABLE `LoginAttempt` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Member`
--
DROP TABLE IF EXISTS `Member`;
CREATE TABLE `Member` (
`ID` int(11) NOT NULL auto_increment,
`ClassName` enum('Member') character set utf8 default 'Member',
`Created` datetime default NULL,
`LastEdited` datetime default NULL,
`FirstName` varchar(50) character set utf8 default NULL,
`Surname` varchar(50) character set utf8 default NULL,
`Email` varchar(50) character set utf8 default NULL,
`Password` varchar(64) character set utf8 default NULL,
`RememberLoginToken` varchar(50) character set utf8 default NULL,
`NumVisit` int(11) NOT NULL default '0',
`LastVisited` datetime default NULL,
`Bounced` tinyint(1) unsigned NOT NULL default '0',
`AutoLoginHash` varchar(30) character set utf8 default NULL,
`AutoLoginExpired` datetime default NULL,
`PasswordEncryption` enum('none','md2','md4','md5','sha1','sha256','sha384','sha512','ripemd128','ripemd160','ripemd256','ripemd320','whirlpool','snefru','gost','adler32','crc32','crc32b','password','old_password') character set utf8 default 'none',
`Salt` varchar(50) character set utf8 default NULL,
`PasswordExpiry` date default NULL,
`LockedOutUntil` datetime default NULL,
`Locale` varchar(6) character set utf8 default NULL,
PRIMARY KEY (`ID`),
UNIQUE KEY `AutoLoginHash` (`AutoLoginHash`),
KEY `Email` (`Email`),
KEY `ClassName` (`ClassName`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `Member`
--
LOCK TABLES `Member` WRITE;
/*!40000 ALTER TABLE `Member` DISABLE KEYS */;
INSERT INTO `Member` VALUES (1,'Member','2009-02-01 20:07:05','2009-02-01 20:22:49','Admin','Admin','admin','mokjg1jrius8wkg40wss44w0w8s44c8',NULL,1,'2009-02-01 20:43:08',0,NULL,NULL,'sha1','5ae6f85nagkccsss4kswcwok0o408sss0okws8c',NULL,NULL,'de_DE'),(2,'Member','2009-02-01 20:41:37','2009-02-01 20:41:37','Max','Mustermann','max@test.com','pedaxrmrlwggogkkoc8wswkss8g4sks',NULL,0,NULL,0,NULL,NULL,'sha1','6yki69i6nokk4sccks40cockkwgwsw4k40008w8',NULL,NULL,'de_DE');
/*!40000 ALTER TABLE `Member` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `MemberPassword`
--
DROP TABLE IF EXISTS `MemberPassword`;
CREATE TABLE `MemberPassword` (
`ID` int(11) NOT NULL auto_increment,
`ClassName` enum('MemberPassword') character set utf8 default 'MemberPassword',
`Created` datetime default NULL,
`LastEdited` datetime default NULL,
`Password` varchar(50) character set utf8 default NULL,
`Salt` varchar(50) character set utf8 default NULL,
`PasswordEncryption` varchar(50) character set utf8 default NULL,
`MemberID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `MemberID` (`MemberID`),
KEY `ClassName` (`ClassName`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `MemberPassword`
--
LOCK TABLES `MemberPassword` WRITE;
/*!40000 ALTER TABLE `MemberPassword` DISABLE KEYS */;
INSERT INTO `MemberPassword` VALUES (1,'MemberPassword','2009-02-01 20:07:05','2009-02-01 20:07:05','8frc0pd0mgow4g8k4ck08wckowoo444','6zlo9epvu4kkc04k8cg0c88k0so0cs0wo0c0k00','sha1',1),(2,'MemberPassword','2009-02-01 20:22:49','2009-02-01 20:22:49','mokjg1jrius8wkg40wss44w0w8s44c8','5ae6f85nagkccsss4kswcwok0o408sss0okws8c','sha1',1),(3,'MemberPassword','2009-02-01 20:41:37','2009-02-01 20:41:37','pedaxrmrlwggogkkoc8wswkss8g4sks','6yki69i6nokk4sccks40cockkwgwsw4k40008w8','sha1',2);
/*!40000 ALTER TABLE `MemberPassword` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `PageComment`
--
DROP TABLE IF EXISTS `PageComment`;
CREATE TABLE `PageComment` (
`ID` int(11) NOT NULL auto_increment,
`ClassName` enum('PageComment') character set utf8 default 'PageComment',
`Created` datetime default NULL,
`LastEdited` datetime default NULL,
`Name` varchar(200) character set utf8 default NULL,
`Comment` mediumtext character set utf8,
`IsSpam` tinyint(1) unsigned NOT NULL default '0',
`NeedsModeration` tinyint(1) unsigned NOT NULL default '0',
`CommenterURL` varchar(255) character set utf8 default NULL,
`ParentID` int(11) NOT NULL default '0',
`AuthorID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `ParentID` (`ParentID`),
KEY `AuthorID` (`AuthorID`),
KEY `ClassName` (`ClassName`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `PageComment`
--
LOCK TABLES `PageComment` WRITE;
/*!40000 ALTER TABLE `PageComment` DISABLE KEYS */;
INSERT INTO `PageComment` VALUES (1,'PageComment','2009-02-01 20:34:16','2009-02-01 20:34:16','Steven Broschart','Test Eins Zwei',0,0,'http://das ist mein erster kommentar...',1,1);
/*!40000 ALTER TABLE `PageComment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Permission`
--
DROP TABLE IF EXISTS `Permission`;
CREATE TABLE `Permission` (
`ID` int(11) NOT NULL auto_increment,
`ClassName` enum('Permission') character set utf8 default 'Permission',
`Created` datetime default NULL,
`LastEdited` datetime default NULL,
`Code` varchar(50) character set utf8 default NULL,
`Arg` int(11) NOT NULL default '0',
`Type` int(11) NOT NULL default '1',
`GroupID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `GroupID` (`GroupID`),
KEY `Code` (`Code`),
KEY `ClassName` (`ClassName`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `Permission`
--
LOCK TABLES `Permission` WRITE;
/*!40000 ALTER TABLE `Permission` DISABLE KEYS */;
INSERT INTO `Permission` VALUES (1,'Permission','2009-02-01 20:07:05','2009-02-01 20:07:05','ADMIN',0,1,1),(2,'Permission','2009-02-01 20:41:50','2009-02-01 20:41:50','CMS_ACCESS_LeftAndMain',0,1,2);
/*!40000 ALTER TABLE `Permission` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `QueuedEmail`
--
DROP TABLE IF EXISTS `QueuedEmail`;
CREATE TABLE `QueuedEmail` (
`ID` int(11) NOT NULL auto_increment,
`ClassName` enum('QueuedEmail') character set utf8 default 'QueuedEmail',
`Created` datetime default NULL,
`LastEdited` datetime default NULL,
`Send` datetime default NULL,
`Subject` varchar(50) character set utf8 default NULL,
`From` varchar(50) character set utf8 default NULL,
`Content` mediumtext character set utf8,
`ToID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `ToID` (`ToID`),
KEY `ClassName` (`ClassName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `QueuedEmail`
--
LOCK TABLES `QueuedEmail` WRITE;
/*!40000 ALTER TABLE `QueuedEmail` DISABLE KEYS */;
/*!40000 ALTER TABLE `QueuedEmail` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `RedirectorPage`
--
DROP TABLE IF EXISTS `RedirectorPage`;
CREATE TABLE `RedirectorPage` (
`ID` int(11) NOT NULL auto_increment,
`RedirectionType` enum('Internal','External') character set utf8 default 'Internal',
`ExternalURL` varchar(255) character set utf8 default NULL,
`LinkToID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `LinkToID` (`LinkToID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `RedirectorPage`
--
LOCK TABLES `RedirectorPage` WRITE;
/*!40000 ALTER TABLE `RedirectorPage` DISABLE KEYS */;
/*!40000 ALTER TABLE `RedirectorPage` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `RedirectorPage_Live`
--
DROP TABLE IF EXISTS `RedirectorPage_Live`;
CREATE TABLE `RedirectorPage_Live` (
`ID` int(11) NOT NULL auto_increment,
`RedirectionType` enum('Internal','External') character set utf8 default 'Internal',
`ExternalURL` varchar(255) character set utf8 default NULL,
`LinkToID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `LinkToID` (`LinkToID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `RedirectorPage_Live`
--
LOCK TABLES `RedirectorPage_Live` WRITE;
/*!40000 ALTER TABLE `RedirectorPage_Live` DISABLE KEYS */;
/*!40000 ALTER TABLE `RedirectorPage_Live` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `RedirectorPage_versions`
--
DROP TABLE IF EXISTS `RedirectorPage_versions`;
CREATE TABLE `RedirectorPage_versions` (
`ID` int(11) NOT NULL auto_increment,
`RecordID` int(11) NOT NULL default '0',
`Version` int(11) NOT NULL default '0',
`WasPublished` tinyint(1) unsigned NOT NULL default '0',
`AuthorID` int(11) NOT NULL default '0',
`PublisherID` int(11) NOT NULL default '0',
`RedirectionType` enum('Internal','External') character set utf8 default 'Internal',
`ExternalURL` varchar(255) character set utf8 default NULL,
`LinkToID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `RecordID_Version` (`RecordID`,`Version`),
KEY `RecordID` (`RecordID`),
KEY `Version` (`Version`),
KEY `AuthorID` (`AuthorID`),
KEY `PublisherID` (`PublisherID`),
KEY `LinkToID` (`LinkToID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `RedirectorPage_versions`
--
LOCK TABLES `RedirectorPage_versions` WRITE;
/*!40000 ALTER TABLE `RedirectorPage_versions` DISABLE KEYS */;
/*!40000 ALTER TABLE `RedirectorPage_versions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `SiteTree`
--
DROP TABLE IF EXISTS `SiteTree`;
CREATE TABLE `SiteTree` (
`ID` int(11) NOT NULL auto_increment,
`ClassName` enum('SiteTree','Page','GhostPage','ErrorPage','RedirectorPage','VirtualPage','UserDefinedForm') character set utf8 default 'SiteTree',
`Created` datetime default NULL,
`LastEdited` datetime default NULL,
`URLSegment` varchar(255) character set utf8 default NULL,
`Title` varchar(255) character set utf8 default NULL,
`MenuTitle` varchar(100) character set utf8 default NULL,
`Content` mediumtext character set utf8,
`MetaTitle` varchar(255) character set utf8 default NULL,
`MetaDescription` varchar(255) character set utf8 default NULL,
`MetaKeywords` varchar(255) character set utf8 default NULL,
`ExtraMeta` mediumtext character set utf8,
`ShowInMenus` tinyint(1) unsigned NOT NULL default '0',
`ShowInSearch` tinyint(1) unsigned NOT NULL default '0',
`HomepageForDomain` varchar(100) character set utf8 default NULL,
`ProvideComments` tinyint(1) unsigned NOT NULL default '0',
`Sort` int(11) NOT NULL default '0',
`LegacyURL` varchar(255) character set utf8 default NULL,
`HasBrokenFile` tinyint(1) unsigned NOT NULL default '0',
`HasBrokenLink` tinyint(1) unsigned NOT NULL default '0',
`Status` varchar(50) character set utf8 default NULL,
`ReportClass` varchar(50) character set utf8 default NULL,
`CanViewType` enum('Anyone','LoggedInUsers','OnlyTheseUsers','Inherit') character set utf8 default 'Inherit',
`CanEditType` enum('LoggedInUsers','OnlyTheseUsers','Inherit') character set utf8 default 'Inherit',
`ToDo` mediumtext character set utf8,
`ParentID` int(11) NOT NULL default '0',
`Version` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `ParentID` (`ParentID`),
KEY `URLSegment` (`URLSegment`),
KEY `ClassName` (`ClassName`),
FULLTEXT KEY `SearchFields` (`Title`,`MenuTitle`,`Content`,`MetaTitle`,`MetaDescription`,`MetaKeywords`),
FULLTEXT KEY `TitleSearchFields` (`Title`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `SiteTree`
--
LOCK TABLES `SiteTree` WRITE;
/*!40000 ALTER TABLE `SiteTree` DISABLE KEYS */;
INSERT INTO `SiteTree` VALUES (1,'Page','2009-02-01 20:07:05','2009-02-01 20:33:49','home','Home',NULL,'<h1>SilverStripe Usergroup</h1>\n<p>Herzlich Willkommen bei der SilverStripe Usergroup, der kostenlosen Jobvermittlung rund um das Content-Management-System/MVC-Framework SilverStripe.</p>\n<h2>Sie haben die Wahl:</h2>\n<h3>Sie suchen nach interessanten Projekten?</h3>\n<p>Dann <a href=\"entwickler/\">hinterlegen Sie</a> einfach Ihr Kompetenz-Profil bei uns.</p>\n<h3>Sie suchen f&auml;hige Leute?</h3>\n<p>W&auml;hlen Sie einfach die passende Kategorie und platzieren Sie Ihre Stellenausschreibung.</p>\n<h3>Kurz &amp; Gut</h3>\n<ul class=\"unIndentedList\">\n<li> <strong>Was ist SilverStripe?</strong></li>\n<li> SilverStripe ist ein auf PHP basierendes, freies Content-Management-System mit MVC-Framework.</li>\n<li> </li>\n<li> <strong>Was ist ein MVC-Framework?</strong></li>\n<li> MVC steht f&uuml;r Model, View und Controller und beschreibt die drei logischen Schichten, &uuml;ber die eine Anwendung definiert wird. Gerade im Bereich der Webentwicklung spielt das MVC-Konzept seine st&auml;rken voll aus. MVC steht f&uuml;r eine sehr schnelle und saubere Entwicklung.</li>\n<li> </li>\n<li> <strong>Systemanforderungen</strong></li>\n<li> SilverStripe ben&ouml;tigt PHP5.2+, MySQL 4.1+, sowie GDLib und cURL. Als Server werden Apache Lighttpd empfohlen. SilverStripe l&auml;uft damit auch problemlos auf preiswerten Shared-Hosting-Plattformen.</li>\n</ul>\n<p>&nbsp;</p>\n<div class=\"image\" style=\"width: 489px;\"><img src=\"assets/Bilder/passt.jpg\" alt=\"\" width=\"489\" height=\"275\" /></div>\n<p>&nbsp;</p>\n<p>&nbsp;</p>',NULL,NULL,NULL,NULL,1,1,NULL,1,1,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0,11),(2,'Page','2009-02-01 20:07:05','2009-02-01 20:23:29','jobs','Jobs',NULL,'<p></p>','Job',NULL,NULL,NULL,1,1,NULL,0,2,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0,3),(3,'UserDefinedForm','2009-02-01 20:07:05','2009-02-01 20:36:50','kontakt','Kontakt',NULL,'<p></p>','Kontakt',NULL,NULL,NULL,1,1,NULL,0,4,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0,6),(4,'ErrorPage','2009-02-01 20:07:05','2009-02-01 20:24:29','seite-nicht-gefunden','Seite nicht gefunden',NULL,'<p>Die angeforderte Seite existiert nicht.</p>','Seite nicht gefunden',NULL,NULL,NULL,0,0,NULL,0,5,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0,4),(5,'Page','2009-02-01 20:24:35','2009-02-01 20:25:04','entwickler','Entwickler',NULL,'<p></p>','Entwickler',NULL,NULL,NULL,1,1,NULL,0,3,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0,6);
/*!40000 ALTER TABLE `SiteTree` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `SiteTree_EditorGroups`
--
DROP TABLE IF EXISTS `SiteTree_EditorGroups`;
CREATE TABLE `SiteTree_EditorGroups` (
`ID` int(11) NOT NULL auto_increment,
`SiteTreeID` int(11) NOT NULL default '0',
`GroupID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `SiteTreeID` (`SiteTreeID`),
KEY `GroupID` (`GroupID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `SiteTree_EditorGroups`
--
LOCK TABLES `SiteTree_EditorGroups` WRITE;
/*!40000 ALTER TABLE `SiteTree_EditorGroups` DISABLE KEYS */;
/*!40000 ALTER TABLE `SiteTree_EditorGroups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `SiteTree_ImageTracking`
--
DROP TABLE IF EXISTS `SiteTree_ImageTracking`;
CREATE TABLE `SiteTree_ImageTracking` (
`ID` int(11) NOT NULL auto_increment,
`SiteTreeID` int(11) NOT NULL default '0',
`FileID` int(11) NOT NULL default '0',
`FieldName` varchar(50) character set utf8 default NULL,
PRIMARY KEY (`ID`),
KEY `SiteTreeID` (`SiteTreeID`),
KEY `FileID` (`FileID`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `SiteTree_ImageTracking`
--
LOCK TABLES `SiteTree_ImageTracking` WRITE;
/*!40000 ALTER TABLE `SiteTree_ImageTracking` DISABLE KEYS */;
INSERT INTO `SiteTree_ImageTracking` VALUES (3,1,4,'Content');
/*!40000 ALTER TABLE `SiteTree_ImageTracking` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `SiteTree_LinkTracking`
--
DROP TABLE IF EXISTS `SiteTree_LinkTracking`;
CREATE TABLE `SiteTree_LinkTracking` (
`ID` int(11) NOT NULL auto_increment,
`SiteTreeID` int(11) NOT NULL default '0',
`ChildID` int(11) NOT NULL default '0',
`FieldName` varchar(50) character set utf8 default NULL,
PRIMARY KEY (`ID`),
KEY `SiteTreeID` (`SiteTreeID`),
KEY `ChildID` (`ChildID`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `SiteTree_LinkTracking`
--
LOCK TABLES `SiteTree_LinkTracking` WRITE;
/*!40000 ALTER TABLE `SiteTree_LinkTracking` DISABLE KEYS */;
INSERT INTO `SiteTree_LinkTracking` VALUES (4,1,5,'Content');
/*!40000 ALTER TABLE `SiteTree_LinkTracking` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `SiteTree_Live`
--
DROP TABLE IF EXISTS `SiteTree_Live`;
CREATE TABLE `SiteTree_Live` (
`ID` int(11) NOT NULL auto_increment,
`ClassName` enum('SiteTree','Page','GhostPage','ErrorPage','RedirectorPage','VirtualPage','UserDefinedForm') character set utf8 default 'SiteTree',
`Created` datetime default NULL,
`LastEdited` datetime default NULL,
`URLSegment` varchar(255) character set utf8 default NULL,
`Title` varchar(255) character set utf8 default NULL,
`MenuTitle` varchar(100) character set utf8 default NULL,
`Content` mediumtext character set utf8,
`MetaTitle` varchar(255) character set utf8 default NULL,
`MetaDescription` varchar(255) character set utf8 default NULL,
`MetaKeywords` varchar(255) character set utf8 default NULL,
`ExtraMeta` mediumtext character set utf8,
`ShowInMenus` tinyint(1) unsigned NOT NULL default '0',
`ShowInSearch` tinyint(1) unsigned NOT NULL default '0',
`HomepageForDomain` varchar(100) character set utf8 default NULL,
`ProvideComments` tinyint(1) unsigned NOT NULL default '0',
`Sort` int(11) NOT NULL default '0',
`LegacyURL` varchar(255) character set utf8 default NULL,
`HasBrokenFile` tinyint(1) unsigned NOT NULL default '0',
`HasBrokenLink` tinyint(1) unsigned NOT NULL default '0',
`Status` varchar(50) character set utf8 default NULL,
`ReportClass` varchar(50) character set utf8 default NULL,
`CanViewType` enum('Anyone','LoggedInUsers','OnlyTheseUsers','Inherit') character set utf8 default 'Inherit',
`CanEditType` enum('LoggedInUsers','OnlyTheseUsers','Inherit') character set utf8 default 'Inherit',
`ToDo` mediumtext character set utf8,
`ParentID` int(11) NOT NULL default '0',
`Version` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `ParentID` (`ParentID`),
KEY `URLSegment` (`URLSegment`),
KEY `ClassName` (`ClassName`),
FULLTEXT KEY `SearchFields` (`Title`,`MenuTitle`,`Content`,`MetaTitle`,`MetaDescription`,`MetaKeywords`),
FULLTEXT KEY `TitleSearchFields` (`Title`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `SiteTree_Live`
--
LOCK TABLES `SiteTree_Live` WRITE;
/*!40000 ALTER TABLE `SiteTree_Live` DISABLE KEYS */;
INSERT INTO `SiteTree_Live` VALUES (1,'Page','2009-02-01 20:07:05','2009-02-01 20:33:49','home','Home',NULL,'<h1>SilverStripe Usergroup</h1>\n<p>Herzlich Willkommen bei der SilverStripe Usergroup, der kostenlosen Jobvermittlung rund um das Content-Management-System/MVC-Framework SilverStripe.</p>\n<h2>Sie haben die Wahl:</h2>\n<h3>Sie suchen nach interessanten Projekten?</h3>\n<p>Dann <a href=\"entwickler/\">hinterlegen Sie</a> einfach Ihr Kompetenz-Profil bei uns.</p>\n<h3>Sie suchen f&auml;hige Leute?</h3>\n<p>W&auml;hlen Sie einfach die passende Kategorie und platzieren Sie Ihre Stellenausschreibung.</p>\n<h3>Kurz &amp; Gut</h3>\n<ul class=\"unIndentedList\">\n<li> <strong>Was ist SilverStripe?</strong></li>\n<li> SilverStripe ist ein auf PHP basierendes, freies Content-Management-System mit MVC-Framework.</li>\n<li> </li>\n<li> <strong>Was ist ein MVC-Framework?</strong></li>\n<li> MVC steht f&uuml;r Model, View und Controller und beschreibt die drei logischen Schichten, &uuml;ber die eine Anwendung definiert wird. Gerade im Bereich der Webentwicklung spielt das MVC-Konzept seine st&auml;rken voll aus. MVC steht f&uuml;r eine sehr schnelle und saubere Entwicklung.</li>\n<li> </li>\n<li> <strong>Systemanforderungen</strong></li>\n<li> SilverStripe ben&ouml;tigt PHP5.2+, MySQL 4.1+, sowie GDLib und cURL. Als Server werden Apache Lighttpd empfohlen. SilverStripe l&auml;uft damit auch problemlos auf preiswerten Shared-Hosting-Plattformen.</li>\n</ul>\n<p>&nbsp;</p>\n<div class=\"image\" style=\"width: 489px;\"><img src=\"assets/Bilder/passt.jpg\" alt=\"\" width=\"489\" height=\"275\" /></div>\n<p>&nbsp;</p>\n<p>&nbsp;</p>',NULL,NULL,NULL,NULL,1,1,NULL,1,1,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0,11),(2,'Page','2009-02-01 20:07:05','2009-02-01 20:23:29','jobs','Jobs',NULL,'<p></p>','Job',NULL,NULL,NULL,1,1,NULL,0,2,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0,3),(3,'UserDefinedForm','2009-02-01 20:07:05','2009-02-01 20:36:50','kontakt','Kontakt',NULL,'<p></p>','Kontakt',NULL,NULL,NULL,1,1,NULL,0,4,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0,6),(4,'ErrorPage','2009-02-01 20:07:05','2009-02-01 20:24:29','seite-nicht-gefunden','Seite nicht gefunden',NULL,'<p>Die angeforderte Seite existiert nicht.</p>','Seite nicht gefunden',NULL,NULL,NULL,0,0,NULL,0,5,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0,4),(5,'Page','2009-02-01 20:24:35','2009-02-01 20:25:04','entwickler','Entwickler',NULL,'<p></p>','Entwickler',NULL,NULL,NULL,1,1,NULL,0,3,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0,6);
/*!40000 ALTER TABLE `SiteTree_Live` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `SiteTree_ViewerGroups`
--
DROP TABLE IF EXISTS `SiteTree_ViewerGroups`;
CREATE TABLE `SiteTree_ViewerGroups` (
`ID` int(11) NOT NULL auto_increment,
`SiteTreeID` int(11) NOT NULL default '0',
`GroupID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `SiteTreeID` (`SiteTreeID`),
KEY `GroupID` (`GroupID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `SiteTree_ViewerGroups`
--
LOCK TABLES `SiteTree_ViewerGroups` WRITE;
/*!40000 ALTER TABLE `SiteTree_ViewerGroups` DISABLE KEYS */;
/*!40000 ALTER TABLE `SiteTree_ViewerGroups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `SiteTree_versions`
--
DROP TABLE IF EXISTS `SiteTree_versions`;
CREATE TABLE `SiteTree_versions` (
`ID` int(11) NOT NULL auto_increment,
`RecordID` int(11) NOT NULL default '0',
`Version` int(11) NOT NULL default '0',
`WasPublished` tinyint(1) unsigned NOT NULL default '0',
`AuthorID` int(11) NOT NULL default '0',
`PublisherID` int(11) NOT NULL default '0',
`ClassName` enum('SiteTree','Page','GhostPage','ErrorPage','RedirectorPage','VirtualPage','UserDefinedForm') character set utf8 default 'SiteTree',
`Created` datetime default NULL,
`LastEdited` datetime default NULL,
`URLSegment` varchar(255) character set utf8 default NULL,
`Title` varchar(255) character set utf8 default NULL,
`MenuTitle` varchar(100) character set utf8 default NULL,
`Content` mediumtext character set utf8,
`MetaTitle` varchar(255) character set utf8 default NULL,
`MetaDescription` varchar(255) character set utf8 default NULL,
`MetaKeywords` varchar(255) character set utf8 default NULL,
`ExtraMeta` mediumtext character set utf8,
`ShowInMenus` tinyint(1) unsigned NOT NULL default '0',
`ShowInSearch` tinyint(1) unsigned NOT NULL default '0',
`HomepageForDomain` varchar(100) character set utf8 default NULL,
`ProvideComments` tinyint(1) unsigned NOT NULL default '0',
`Sort` int(11) NOT NULL default '0',
`LegacyURL` varchar(255) character set utf8 default NULL,
`HasBrokenFile` tinyint(1) unsigned NOT NULL default '0',
`HasBrokenLink` tinyint(1) unsigned NOT NULL default '0',
`Status` varchar(50) character set utf8 default NULL,
`ReportClass` varchar(50) character set utf8 default NULL,
`CanViewType` enum('Anyone','LoggedInUsers','OnlyTheseUsers','Inherit') character set utf8 default 'Inherit',
`CanEditType` enum('LoggedInUsers','OnlyTheseUsers','Inherit') character set utf8 default 'Inherit',
`ToDo` mediumtext character set utf8,
`ParentID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `RecordID_Version` (`RecordID`,`Version`),
KEY `RecordID` (`RecordID`),
KEY `Version` (`Version`),
KEY `AuthorID` (`AuthorID`),
KEY `PublisherID` (`PublisherID`),
KEY `ParentID` (`ParentID`),
KEY `URLSegment` (`URLSegment`),
KEY `ClassName` (`ClassName`),
FULLTEXT KEY `SearchFields` (`Title`,`MenuTitle`,`Content`,`MetaTitle`,`MetaDescription`,`MetaKeywords`),
FULLTEXT KEY `TitleSearchFields` (`Title`)
) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `SiteTree_versions`
--
LOCK TABLES `SiteTree_versions` WRITE;
/*!40000 ALTER TABLE `SiteTree_versions` DISABLE KEYS */;
INSERT INTO `SiteTree_versions` VALUES (1,1,1,1,0,0,'Page','2009-02-01 20:07:05','2009-02-01 20:07:05','home','Home',NULL,'<p>Welcome to SilverStripe! This is the default homepage. You can edit this page by opening <a href=\"admin/\">the CMS</a>. You can now access the <a href=\"http://doc.silverstripe.com\">developer documentation</a>, or begin <a href=\"http://doc.silverstripe.com/doku.php?id=tutorials\">the tutorials.</a></p>',NULL,NULL,NULL,NULL,1,1,NULL,0,0,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0),(2,2,1,1,0,0,'Page','2009-02-01 20:07:05','2009-02-01 20:07:05','about-us','About Us',NULL,'<p>You can fill this page out with your own content, or delete it and create your own pages.<br /></p>',NULL,NULL,NULL,NULL,1,1,NULL,0,0,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0),(3,3,1,1,0,0,'Page','2009-02-01 20:07:05','2009-02-01 20:07:05','contact-us','Contact Us',NULL,'<p>You can fill this page out with your own content, or delete it and create your own pages.<br /></p>',NULL,NULL,NULL,NULL,1,1,NULL,0,0,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0),(4,4,1,1,0,0,'ErrorPage','2009-02-01 20:07:05','2009-02-01 20:07:05','page-not-found','Page not found',NULL,'<p>Sorry, it seems you were trying to access a page that doesn\'t exist.</p><p>Please check the spelling of the URL you were trying to access and try again.</p>',NULL,NULL,NULL,NULL,0,0,NULL,0,0,NULL,0,0,'New page',NULL,'Inherit','Inherit',NULL,0),(5,4,2,0,0,0,'ErrorPage','2009-02-01 20:07:05','2009-02-01 20:07:09','page-not-found','Page not found',NULL,'<p>Sorry, it seems you were trying to access a page that doesn\'t exist.</p><p>Please check the spelling of the URL you were trying to access and try again.</p>',NULL,NULL,NULL,NULL,0,0,NULL,0,0,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0),(6,2,2,0,1,0,'Page','2009-02-01 20:07:05','2009-02-01 20:23:29','jobs','Jobs',NULL,'<p></p>','Job',NULL,NULL,NULL,1,1,NULL,0,0,NULL,0,0,'Saved (update)',NULL,'Inherit','Inherit',NULL,0),(7,2,3,1,1,1,'Page','2009-02-01 20:07:05','2009-02-01 20:23:29','jobs','Jobs',NULL,'<p></p>','Job',NULL,NULL,NULL,1,1,NULL,0,0,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0),(8,3,2,0,1,0,'Page','2009-02-01 20:07:05','2009-02-01 20:23:51','kontakt','Kontakt',NULL,'<p></p>','Kontakt',NULL,NULL,NULL,1,1,NULL,0,0,NULL,0,0,'Saved (update)',NULL,'Inherit','Inherit',NULL,0),(9,3,3,1,1,1,'Page','2009-02-01 20:07:05','2009-02-01 20:23:51','kontakt','Kontakt',NULL,'<p></p>','Kontakt',NULL,NULL,NULL,1,1,NULL,0,0,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0),(10,3,4,1,1,1,'UserDefinedForm','2009-02-01 20:07:05','2009-02-01 20:23:58','kontakt','Kontakt',NULL,'<p></p>','Kontakt',NULL,NULL,NULL,1,1,NULL,0,0,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0),(11,4,3,0,1,0,'ErrorPage','2009-02-01 20:07:05','2009-02-01 20:24:29','seite-nicht-gefunden','Seite nicht gefunden',NULL,'<p>Die angeforderte Seite existiert nicht.</p>','Seite nicht gefunden',NULL,NULL,NULL,0,0,NULL,0,0,NULL,0,0,'Saved (new)',NULL,'Inherit','Inherit',NULL,0),(12,4,4,1,1,1,'ErrorPage','2009-02-01 20:07:05','2009-02-01 20:24:29','seite-nicht-gefunden','Seite nicht gefunden',NULL,'<p>Die angeforderte Seite existiert nicht.</p>','Seite nicht gefunden',NULL,NULL,NULL,0,0,NULL,0,0,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0),(13,5,1,0,1,0,'Page','2009-02-01 20:24:35','2009-02-01 20:24:35','neupage','NeuPage',NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,0,1,NULL,0,0,'New page',NULL,'Inherit','Inherit',NULL,0),(14,5,2,0,1,0,'Page','2009-02-01 20:24:35','2009-02-01 20:24:51','entwickler','Entwickler',NULL,'<p></p>','Entwickler',NULL,NULL,NULL,1,1,NULL,0,1,NULL,0,0,'Saved (new)',NULL,'Inherit','Inherit',NULL,0),(15,5,3,1,1,1,'Page','2009-02-01 20:24:35','2009-02-01 20:24:51','entwickler','Entwickler',NULL,'<p></p>','Entwickler',NULL,NULL,NULL,1,1,NULL,0,1,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0),(16,5,4,0,1,0,'Page','2009-02-01 20:24:35','2009-02-01 20:25:01','entwickler','Entwickler',NULL,'<p></p>','Entwickler',NULL,NULL,NULL,1,1,NULL,0,3,NULL,0,0,'Saved (update)',NULL,'Inherit','Inherit',NULL,0),(17,5,5,0,1,0,'Page','2009-02-01 20:24:35','2009-02-01 20:25:04','entwickler','Entwickler',NULL,'<p></p>','Entwickler',NULL,NULL,NULL,1,1,NULL,0,3,NULL,0,0,'Saved (update)',NULL,'Inherit','Inherit',NULL,0),(18,5,6,1,1,1,'Page','2009-02-01 20:24:35','2009-02-01 20:25:04','entwickler','Entwickler',NULL,'<p></p>','Entwickler',NULL,NULL,NULL,1,1,NULL,0,3,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0),(19,1,2,0,1,0,'Page','2009-02-01 20:07:05','2009-02-01 20:28:10','home','Home',NULL,'<h1>SilverStripe Usergroup</h1>\n<p>Herzlich Willkommen bei der SilverStripe Usergroup, der kostenlosen Jobvermittlung rund um das Content-Management-System/MVC-Framework SilverStripe.<br /></p>\n<h2>Sie haben die Wahl:</h2>\n<h3>Sie suchen nach interessanten Projekten?</h3>\n<p>Dann hinterlegen Sie einfach Ihr Kompetenz-Profil bei uns.</p>\n<h3>Sie suchen f&auml;hige Leute?</h3>\n<p>W&auml;hlen Sie einfach die passende Kategorie und platzieren Sie Ihre Stellenausschreibung.</p>\n<h3>Kurz &amp; Gut</h3>\n<ul class=\"unIndentedList\">\n<li> <strong>Was ist SilverStripe?</strong></li>\n<li> SilverStripe ist ein auf PHP basierendes, freies Content-Management-System mit MVC-Framework.</li>\n<li> </li>\n<li> <strong>Was ist ein MVC-Framework?</strong></li>\n<li> MVC steht f&uuml;r Model, View und Controller und beschreibt die drei logischen Schichten, &uuml;ber die eine Anwendung definiert wird. Gerade im Bereich der Webentwicklung spielt das MVC-Konzept seine st&auml;rken voll aus. MVC steht f&uuml;r eine sehr schnelle und saubere Entwicklung.</li>\n<li> </li>\n<li> <strong>Systemanforderungen</strong></li>\n<li> SilverStripe ben&ouml;tigt PHP5.2+, MySQL 4.1+, sowie GDLib und cURL. Als Server werden Apache Lighttpd empfohlen. SilverStripe l&auml;uft damit auch problemlos auf preiswerten Shared-Hosting-Plattformen.</li>\n</ul>\n<p><br /></p>\n<p>&nbsp;</p>',NULL,NULL,NULL,NULL,1,1,NULL,0,1,NULL,0,0,'Saved (update)',NULL,'Inherit','Inherit',NULL,0),(20,1,3,1,1,1,'Page','2009-02-01 20:07:05','2009-02-01 20:28:10','home','Home',NULL,'<h1>SilverStripe Usergroup</h1>\n<p>Herzlich Willkommen bei der SilverStripe Usergroup, der kostenlosen Jobvermittlung rund um das Content-Management-System/MVC-Framework SilverStripe.<br /></p>\n<h2>Sie haben die Wahl:</h2>\n<h3>Sie suchen nach interessanten Projekten?</h3>\n<p>Dann hinterlegen Sie einfach Ihr Kompetenz-Profil bei uns.</p>\n<h3>Sie suchen f&auml;hige Leute?</h3>\n<p>W&auml;hlen Sie einfach die passende Kategorie und platzieren Sie Ihre Stellenausschreibung.</p>\n<h3>Kurz &amp; Gut</h3>\n<ul class=\"unIndentedList\">\n<li> <strong>Was ist SilverStripe?</strong></li>\n<li> SilverStripe ist ein auf PHP basierendes, freies Content-Management-System mit MVC-Framework.</li>\n<li> </li>\n<li> <strong>Was ist ein MVC-Framework?</strong></li>\n<li> MVC steht f&uuml;r Model, View und Controller und beschreibt die drei logischen Schichten, &uuml;ber die eine Anwendung definiert wird. Gerade im Bereich der Webentwicklung spielt das MVC-Konzept seine st&auml;rken voll aus. MVC steht f&uuml;r eine sehr schnelle und saubere Entwicklung.</li>\n<li> </li>\n<li> <strong>Systemanforderungen</strong></li>\n<li> SilverStripe ben&ouml;tigt PHP5.2+, MySQL 4.1+, sowie GDLib und cURL. Als Server werden Apache Lighttpd empfohlen. SilverStripe l&auml;uft damit auch problemlos auf preiswerten Shared-Hosting-Plattformen.</li>\n</ul>\n<p><br /></p>\n<p>&nbsp;</p>',NULL,NULL,NULL,NULL,1,1,NULL,0,1,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0),(21,1,4,0,1,0,'Page','2009-02-01 20:07:05','2009-02-01 20:29:15','home','Home',NULL,'<h1>SilverStripe Usergroup</h1>\n<p>Herzlich Willkommen bei der SilverStripe Usergroup, der kostenlosen Jobvermittlung rund um das Content-Management-System/MVC-Framework SilverStripe.<br /></p>\n<h2>Sie haben die Wahl:</h2>\n<h3>Sie suchen nach interessanten Projekten?</h3>\n<p>Dann <a href=\"entwickler/\">hinterlegen Sie</a> einfach Ihr Kompetenz-Profil bei uns.</p>\n<h3>Sie suchen f&auml;hige Leute?</h3>\n<p>W&auml;hlen Sie einfach die passende Kategorie und platzieren Sie Ihre Stellenausschreibung.</p>\n<h3>Kurz &amp; Gut</h3>\n<ul class=\"unIndentedList\">\n<li> <strong>Was ist SilverStripe?</strong></li>\n<li> SilverStripe ist ein auf PHP basierendes, freies Content-Management-System mit MVC-Framework.</li>\n<li> </li>\n<li> <strong>Was ist ein MVC-Framework?</strong></li>\n<li> MVC steht f&uuml;r Model, View und Controller und beschreibt die drei logischen Schichten, &uuml;ber die eine Anwendung definiert wird. Gerade im Bereich der Webentwicklung spielt das MVC-Konzept seine st&auml;rken voll aus. MVC steht f&uuml;r eine sehr schnelle und saubere Entwicklung.</li>\n<li> </li>\n<li> <strong>Systemanforderungen</strong></li>\n<li> SilverStripe ben&ouml;tigt PHP5.2+, MySQL 4.1+, sowie GDLib und cURL. Als Server werden Apache Lighttpd empfohlen. SilverStripe l&auml;uft damit auch problemlos auf preiswerten Shared-Hosting-Plattformen.</li>\n</ul>\n<p><br /></p>\n<p>&nbsp;</p>',NULL,NULL,NULL,NULL,1,1,NULL,0,1,NULL,0,0,'Saved (update)',NULL,'Inherit','Inherit',NULL,0),(22,1,5,1,1,1,'Page','2009-02-01 20:07:05','2009-02-01 20:29:15','home','Home',NULL,'<h1>SilverStripe Usergroup</h1>\n<p>Herzlich Willkommen bei der SilverStripe Usergroup, der kostenlosen Jobvermittlung rund um das Content-Management-System/MVC-Framework SilverStripe.<br /></p>\n<h2>Sie haben die Wahl:</h2>\n<h3>Sie suchen nach interessanten Projekten?</h3>\n<p>Dann <a href=\"entwickler/\">hinterlegen Sie</a> einfach Ihr Kompetenz-Profil bei uns.</p>\n<h3>Sie suchen f&auml;hige Leute?</h3>\n<p>W&auml;hlen Sie einfach die passende Kategorie und platzieren Sie Ihre Stellenausschreibung.</p>\n<h3>Kurz &amp; Gut</h3>\n<ul class=\"unIndentedList\">\n<li> <strong>Was ist SilverStripe?</strong></li>\n<li> SilverStripe ist ein auf PHP basierendes, freies Content-Management-System mit MVC-Framework.</li>\n<li> </li>\n<li> <strong>Was ist ein MVC-Framework?</strong></li>\n<li> MVC steht f&uuml;r Model, View und Controller und beschreibt die drei logischen Schichten, &uuml;ber die eine Anwendung definiert wird. Gerade im Bereich der Webentwicklung spielt das MVC-Konzept seine st&auml;rken voll aus. MVC steht f&uuml;r eine sehr schnelle und saubere Entwicklung.</li>\n<li> </li>\n<li> <strong>Systemanforderungen</strong></li>\n<li> SilverStripe ben&ouml;tigt PHP5.2+, MySQL 4.1+, sowie GDLib und cURL. Als Server werden Apache Lighttpd empfohlen. SilverStripe l&auml;uft damit auch problemlos auf preiswerten Shared-Hosting-Plattformen.</li>\n</ul>\n<p><br /></p>\n<p>&nbsp;</p>',NULL,NULL,NULL,NULL,1,1,NULL,0,1,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0),(23,1,6,0,1,0,'Page','2009-02-01 20:07:05','2009-02-01 20:32:36','home','Home',NULL,'<h1>SilverStripe Usergroup</h1>\n<p>Herzlich Willkommen bei der SilverStripe Usergroup, der kostenlosen Jobvermittlung rund um das Content-Management-System/MVC-Framework SilverStripe.<br /></p>\n<h2>Sie haben die Wahl:</h2>\n<h3>Sie suchen nach interessanten Projekten?</h3>\n<p>Dann <a href=\"entwickler/\">hinterlegen Sie</a> einfach Ihr Kompetenz-Profil bei uns.</p>\n<h3>Sie suchen f&auml;hige Leute?</h3>\n<p>W&auml;hlen Sie einfach die passende Kategorie und platzieren Sie Ihre Stellenausschreibung.</p>\n<h3>Kurz &amp; Gut</h3>\n<ul class=\"unIndentedList\">\n<li> <strong>Was ist SilverStripe?</strong></li>\n<li> SilverStripe ist ein auf PHP basierendes, freies Content-Management-System mit MVC-Framework.</li>\n<li> </li>\n<li> <strong>Was ist ein MVC-Framework?</strong></li>\n<li> MVC steht f&uuml;r Model, View und Controller und beschreibt die drei logischen Schichten, &uuml;ber die eine Anwendung definiert wird. Gerade im Bereich der Webentwicklung spielt das MVC-Konzept seine st&auml;rken voll aus. MVC steht f&uuml;r eine sehr schnelle und saubere Entwicklung.</li>\n<li> </li>\n<li> <strong>Systemanforderungen</strong></li>\n<li> SilverStripe ben&ouml;tigt PHP5.2+, MySQL 4.1+, sowie GDLib und cURL. Als Server werden Apache Lighttpd empfohlen. SilverStripe l&auml;uft damit auch problemlos auf preiswerten Shared-Hosting-Plattformen.</li>\n</ul>\n<p>\n<div class=\"image left\" style=\"width: 489px;\"><img src=\"assets/Bilder/passt.jpg\" alt=\"\" width=\"489\" height=\"275\" /></div>\n</p>\n<p>&nbsp;</p>',NULL,NULL,NULL,NULL,1,1,NULL,0,1,NULL,0,0,'Saved (update)',NULL,'Inherit','Inherit',NULL,0),(24,1,7,1,1,1,'Page','2009-02-01 20:07:05','2009-02-01 20:32:36','home','Home',NULL,'<h1>SilverStripe Usergroup</h1>\n<p>Herzlich Willkommen bei der SilverStripe Usergroup, der kostenlosen Jobvermittlung rund um das Content-Management-System/MVC-Framework SilverStripe.<br /></p>\n<h2>Sie haben die Wahl:</h2>\n<h3>Sie suchen nach interessanten Projekten?</h3>\n<p>Dann <a href=\"entwickler/\">hinterlegen Sie</a> einfach Ihr Kompetenz-Profil bei uns.</p>\n<h3>Sie suchen f&auml;hige Leute?</h3>\n<p>W&auml;hlen Sie einfach die passende Kategorie und platzieren Sie Ihre Stellenausschreibung.</p>\n<h3>Kurz &amp; Gut</h3>\n<ul class=\"unIndentedList\">\n<li> <strong>Was ist SilverStripe?</strong></li>\n<li> SilverStripe ist ein auf PHP basierendes, freies Content-Management-System mit MVC-Framework.</li>\n<li> </li>\n<li> <strong>Was ist ein MVC-Framework?</strong></li>\n<li> MVC steht f&uuml;r Model, View und Controller und beschreibt die drei logischen Schichten, &uuml;ber die eine Anwendung definiert wird. Gerade im Bereich der Webentwicklung spielt das MVC-Konzept seine st&auml;rken voll aus. MVC steht f&uuml;r eine sehr schnelle und saubere Entwicklung.</li>\n<li> </li>\n<li> <strong>Systemanforderungen</strong></li>\n<li> SilverStripe ben&ouml;tigt PHP5.2+, MySQL 4.1+, sowie GDLib und cURL. Als Server werden Apache Lighttpd empfohlen. SilverStripe l&auml;uft damit auch problemlos auf preiswerten Shared-Hosting-Plattformen.</li>\n</ul>\n<p>\n<div class=\"image left\" style=\"width: 489px;\"><img src=\"assets/Bilder/passt.jpg\" alt=\"\" width=\"489\" height=\"275\" /></div>\n</p>\n<p>&nbsp;</p>',NULL,NULL,NULL,NULL,1,1,NULL,0,1,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0),(25,1,8,0,1,0,'Page','2009-02-01 20:07:05','2009-02-01 20:33:02','home','Home',NULL,'<h1>SilverStripe Usergroup</h1>\n<p>Herzlich Willkommen bei der SilverStripe Usergroup, der kostenlosen Jobvermittlung rund um das Content-Management-System/MVC-Framework SilverStripe.<br /></p>\n<h2>Sie haben die Wahl:</h2>\n<h3>Sie suchen nach interessanten Projekten?</h3>\n<p>Dann <a href=\"entwickler/\">hinterlegen Sie</a> einfach Ihr Kompetenz-Profil bei uns.</p>\n<h3>Sie suchen f&auml;hige Leute?</h3>\n<p>W&auml;hlen Sie einfach die passende Kategorie und platzieren Sie Ihre Stellenausschreibung.</p>\n<h3>Kurz &amp; Gut</h3>\n<ul class=\"unIndentedList\">\n<li> <strong>Was ist SilverStripe?</strong></li>\n<li> SilverStripe ist ein auf PHP basierendes, freies Content-Management-System mit MVC-Framework.</li>\n<li> </li>\n<li> <strong>Was ist ein MVC-Framework?</strong></li>\n<li> MVC steht f&uuml;r Model, View und Controller und beschreibt die drei logischen Schichten, &uuml;ber die eine Anwendung definiert wird. Gerade im Bereich der Webentwicklung spielt das MVC-Konzept seine st&auml;rken voll aus. MVC steht f&uuml;r eine sehr schnelle und saubere Entwicklung.</li>\n<li> </li>\n<li> <strong>Systemanforderungen</strong></li>\n<li> SilverStripe ben&ouml;tigt PHP5.2+, MySQL 4.1+, sowie GDLib und cURL. Als Server werden Apache Lighttpd empfohlen. SilverStripe l&auml;uft damit auch problemlos auf preiswerten Shared-Hosting-Plattformen.</li>\n</ul>\n<p>\n<div class=\"image left\" style=\"width: 489px;\"><img src=\"assets/Bilder/passt.jpg\" alt=\"\" width=\"489\" height=\"275\" /></div>\n</p>\n<p>&nbsp;</p>',NULL,NULL,NULL,NULL,1,1,NULL,1,1,NULL,0,0,'Saved (update)',NULL,'Inherit','Inherit',NULL,0),(26,1,9,1,1,1,'Page','2009-02-01 20:07:05','2009-02-01 20:33:02','home','Home',NULL,'<h1>SilverStripe Usergroup</h1>\n<p>Herzlich Willkommen bei der SilverStripe Usergroup, der kostenlosen Jobvermittlung rund um das Content-Management-System/MVC-Framework SilverStripe.<br /></p>\n<h2>Sie haben die Wahl:</h2>\n<h3>Sie suchen nach interessanten Projekten?</h3>\n<p>Dann <a href=\"entwickler/\">hinterlegen Sie</a> einfach Ihr Kompetenz-Profil bei uns.</p>\n<h3>Sie suchen f&auml;hige Leute?</h3>\n<p>W&auml;hlen Sie einfach die passende Kategorie und platzieren Sie Ihre Stellenausschreibung.</p>\n<h3>Kurz &amp; Gut</h3>\n<ul class=\"unIndentedList\">\n<li> <strong>Was ist SilverStripe?</strong></li>\n<li> SilverStripe ist ein auf PHP basierendes, freies Content-Management-System mit MVC-Framework.</li>\n<li> </li>\n<li> <strong>Was ist ein MVC-Framework?</strong></li>\n<li> MVC steht f&uuml;r Model, View und Controller und beschreibt die drei logischen Schichten, &uuml;ber die eine Anwendung definiert wird. Gerade im Bereich der Webentwicklung spielt das MVC-Konzept seine st&auml;rken voll aus. MVC steht f&uuml;r eine sehr schnelle und saubere Entwicklung.</li>\n<li> </li>\n<li> <strong>Systemanforderungen</strong></li>\n<li> SilverStripe ben&ouml;tigt PHP5.2+, MySQL 4.1+, sowie GDLib und cURL. Als Server werden Apache Lighttpd empfohlen. SilverStripe l&auml;uft damit auch problemlos auf preiswerten Shared-Hosting-Plattformen.</li>\n</ul>\n<p>\n<div class=\"image left\" style=\"width: 489px;\"><img src=\"assets/Bilder/passt.jpg\" alt=\"\" width=\"489\" height=\"275\" /></div>\n</p>\n<p>&nbsp;</p>',NULL,NULL,NULL,NULL,1,1,NULL,1,1,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0),(27,1,10,0,1,0,'Page','2009-02-01 20:07:05','2009-02-01 20:33:49','home','Home',NULL,'<h1>SilverStripe Usergroup</h1>\n<p>Herzlich Willkommen bei der SilverStripe Usergroup, der kostenlosen Jobvermittlung rund um das Content-Management-System/MVC-Framework SilverStripe.</p>\n<h2>Sie haben die Wahl:</h2>\n<h3>Sie suchen nach interessanten Projekten?</h3>\n<p>Dann <a href=\"entwickler/\">hinterlegen Sie</a> einfach Ihr Kompetenz-Profil bei uns.</p>\n<h3>Sie suchen f&auml;hige Leute?</h3>\n<p>W&auml;hlen Sie einfach die passende Kategorie und platzieren Sie Ihre Stellenausschreibung.</p>\n<h3>Kurz &amp; Gut</h3>\n<ul class=\"unIndentedList\">\n<li> <strong>Was ist SilverStripe?</strong></li>\n<li> SilverStripe ist ein auf PHP basierendes, freies Content-Management-System mit MVC-Framework.</li>\n<li> </li>\n<li> <strong>Was ist ein MVC-Framework?</strong></li>\n<li> MVC steht f&uuml;r Model, View und Controller und beschreibt die drei logischen Schichten, &uuml;ber die eine Anwendung definiert wird. Gerade im Bereich der Webentwicklung spielt das MVC-Konzept seine st&auml;rken voll aus. MVC steht f&uuml;r eine sehr schnelle und saubere Entwicklung.</li>\n<li> </li>\n<li> <strong>Systemanforderungen</strong></li>\n<li> SilverStripe ben&ouml;tigt PHP5.2+, MySQL 4.1+, sowie GDLib und cURL. Als Server werden Apache Lighttpd empfohlen. SilverStripe l&auml;uft damit auch problemlos auf preiswerten Shared-Hosting-Plattformen.</li>\n</ul>\n<p>&nbsp;</p>\n<div class=\"image\" style=\"width: 489px;\"><img src=\"assets/Bilder/passt.jpg\" alt=\"\" width=\"489\" height=\"275\" /></div>\n<p>&nbsp;</p>\n<p>&nbsp;</p>',NULL,NULL,NULL,NULL,1,1,NULL,1,1,NULL,0,0,'Saved (update)',NULL,'Inherit','Inherit',NULL,0),(28,1,11,1,1,1,'Page','2009-02-01 20:07:05','2009-02-01 20:33:49','home','Home',NULL,'<h1>SilverStripe Usergroup</h1>\n<p>Herzlich Willkommen bei der SilverStripe Usergroup, der kostenlosen Jobvermittlung rund um das Content-Management-System/MVC-Framework SilverStripe.</p>\n<h2>Sie haben die Wahl:</h2>\n<h3>Sie suchen nach interessanten Projekten?</h3>\n<p>Dann <a href=\"entwickler/\">hinterlegen Sie</a> einfach Ihr Kompetenz-Profil bei uns.</p>\n<h3>Sie suchen f&auml;hige Leute?</h3>\n<p>W&auml;hlen Sie einfach die passende Kategorie und platzieren Sie Ihre Stellenausschreibung.</p>\n<h3>Kurz &amp; Gut</h3>\n<ul class=\"unIndentedList\">\n<li> <strong>Was ist SilverStripe?</strong></li>\n<li> SilverStripe ist ein auf PHP basierendes, freies Content-Management-System mit MVC-Framework.</li>\n<li> </li>\n<li> <strong>Was ist ein MVC-Framework?</strong></li>\n<li> MVC steht f&uuml;r Model, View und Controller und beschreibt die drei logischen Schichten, &uuml;ber die eine Anwendung definiert wird. Gerade im Bereich der Webentwicklung spielt das MVC-Konzept seine st&auml;rken voll aus. MVC steht f&uuml;r eine sehr schnelle und saubere Entwicklung.</li>\n<li> </li>\n<li> <strong>Systemanforderungen</strong></li>\n<li> SilverStripe ben&ouml;tigt PHP5.2+, MySQL 4.1+, sowie GDLib und cURL. Als Server werden Apache Lighttpd empfohlen. SilverStripe l&auml;uft damit auch problemlos auf preiswerten Shared-Hosting-Plattformen.</li>\n</ul>\n<p>&nbsp;</p>\n<div class=\"image\" style=\"width: 489px;\"><img src=\"assets/Bilder/passt.jpg\" alt=\"\" width=\"489\" height=\"275\" /></div>\n<p>&nbsp;</p>\n<p>&nbsp;</p>',NULL,NULL,NULL,NULL,1,1,NULL,1,1,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0),(29,3,5,0,1,0,'UserDefinedForm','2009-02-01 20:07:05','2009-02-01 20:36:50','kontakt','Kontakt',NULL,'<p></p>','Kontakt',NULL,NULL,NULL,1,1,NULL,0,4,NULL,0,0,'Saved (update)',NULL,'Inherit','Inherit',NULL,0),(30,3,6,1,1,1,'UserDefinedForm','2009-02-01 20:07:05','2009-02-01 20:36:50','kontakt','Kontakt',NULL,'<p></p>','Kontakt',NULL,NULL,NULL,1,1,NULL,0,4,NULL,0,0,'Published',NULL,'Inherit','Inherit',NULL,0);
/*!40000 ALTER TABLE `SiteTree_versions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `SubmittedFileField`
--
DROP TABLE IF EXISTS `SubmittedFileField`;
CREATE TABLE `SubmittedFileField` (
`ID` int(11) NOT NULL auto_increment,
`UploadedFileID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `UploadedFileID` (`UploadedFileID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `SubmittedFileField`
--
LOCK TABLES `SubmittedFileField` WRITE;
/*!40000 ALTER TABLE `SubmittedFileField` DISABLE KEYS */;
/*!40000 ALTER TABLE `SubmittedFileField` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `SubmittedForm`
--
DROP TABLE IF EXISTS `SubmittedForm`;
CREATE TABLE `SubmittedForm` (
`ID` int(11) NOT NULL auto_increment,
`ClassName` enum('SubmittedForm') character set utf8 default 'SubmittedForm',
`Created` datetime default NULL,
`LastEdited` datetime default NULL,
`Recipient` varchar(50) character set utf8 default NULL,
`SubmittedByID` int(11) NOT NULL default '0',
`ParentID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `SubmittedByID` (`SubmittedByID`),
KEY `ParentID` (`ParentID`),
KEY `ClassName` (`ClassName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `SubmittedForm`
--
LOCK TABLES `SubmittedForm` WRITE;
/*!40000 ALTER TABLE `SubmittedForm` DISABLE KEYS */;
/*!40000 ALTER TABLE `SubmittedForm` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `SubmittedFormField`
--
DROP TABLE IF EXISTS `SubmittedFormField`;
CREATE TABLE `SubmittedFormField` (
`ID` int(11) NOT NULL auto_increment,
`ClassName` enum('SubmittedFormField','SubmittedFileField') character set utf8 default 'SubmittedFormField',
`Created` datetime default NULL,
`LastEdited` datetime default NULL,
`Name` varchar(50) character set utf8 default NULL,
`Value` mediumtext character set utf8,
`Title` varchar(50) character set utf8 default NULL,
`ParentID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `ParentID` (`ParentID`),
KEY `ClassName` (`ClassName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `SubmittedFormField`
--
LOCK TABLES `SubmittedFormField` WRITE;
/*!40000 ALTER TABLE `SubmittedFormField` DISABLE KEYS */;
/*!40000 ALTER TABLE `SubmittedFormField` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `UserDefinedForm`
--
DROP TABLE IF EXISTS `UserDefinedForm`;
CREATE TABLE `UserDefinedForm` (
`ID` int(11) NOT NULL auto_increment,
`EmailTo` varchar(50) character set utf8 default NULL,
`EmailOnSubmit` tinyint(1) unsigned NOT NULL default '0',
`SubmitButtonText` varchar(50) character set utf8 default NULL,
`OnCompleteMessage` mediumtext character set utf8,
PRIMARY KEY (`ID`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `UserDefinedForm`
--
LOCK TABLES `UserDefinedForm` WRITE;
/*!40000 ALTER TABLE `UserDefinedForm` DISABLE KEYS */;
INSERT INTO `UserDefinedForm` VALUES (3,NULL,0,NULL,'<p></p>');
/*!40000 ALTER TABLE `UserDefinedForm` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `UserDefinedForm_Live`
--
DROP TABLE IF EXISTS `UserDefinedForm_Live`;
CREATE TABLE `UserDefinedForm_Live` (
`ID` int(11) NOT NULL auto_increment,
`EmailTo` varchar(50) character set utf8 default NULL,
`EmailOnSubmit` tinyint(1) unsigned NOT NULL default '0',
`SubmitButtonText` varchar(50) character set utf8 default NULL,
`OnCompleteMessage` mediumtext character set utf8,
PRIMARY KEY (`ID`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `UserDefinedForm_Live`
--
LOCK TABLES `UserDefinedForm_Live` WRITE;
/*!40000 ALTER TABLE `UserDefinedForm_Live` DISABLE KEYS */;
INSERT INTO `UserDefinedForm_Live` VALUES (3,NULL,0,NULL,'<p></p>');
/*!40000 ALTER TABLE `UserDefinedForm_Live` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `UserDefinedForm_versions`
--
DROP TABLE IF EXISTS `UserDefinedForm_versions`;
CREATE TABLE `UserDefinedForm_versions` (
`ID` int(11) NOT NULL auto_increment,
`RecordID` int(11) NOT NULL default '0',
`Version` int(11) NOT NULL default '0',
`WasPublished` tinyint(1) unsigned NOT NULL default '0',
`AuthorID` int(11) NOT NULL default '0',
`PublisherID` int(11) NOT NULL default '0',
`EmailTo` varchar(50) character set utf8 default NULL,
`EmailOnSubmit` tinyint(1) unsigned NOT NULL default '0',
`SubmitButtonText` varchar(50) character set utf8 default NULL,
`OnCompleteMessage` mediumtext character set utf8,
PRIMARY KEY (`ID`),
KEY `RecordID_Version` (`RecordID`,`Version`),
KEY `RecordID` (`RecordID`),
KEY `Version` (`Version`),
KEY `AuthorID` (`AuthorID`),
KEY `PublisherID` (`PublisherID`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `UserDefinedForm_versions`
--
LOCK TABLES `UserDefinedForm_versions` WRITE;
/*!40000 ALTER TABLE `UserDefinedForm_versions` DISABLE KEYS */;
INSERT INTO `UserDefinedForm_versions` VALUES (1,3,1,0,1,0,NULL,0,NULL,NULL),(2,3,2,0,1,0,NULL,0,NULL,'<p></p>'),(3,3,3,0,1,0,NULL,0,NULL,'<p></p>');
/*!40000 ALTER TABLE `UserDefinedForm_versions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `VirtualPage`
--
DROP TABLE IF EXISTS `VirtualPage`;
CREATE TABLE `VirtualPage` (
`ID` int(11) NOT NULL auto_increment,
`VersionID` int(11) NOT NULL default '0',
`CopyContentFromID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `CopyContentFromID` (`CopyContentFromID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `VirtualPage`
--
LOCK TABLES `VirtualPage` WRITE;
/*!40000 ALTER TABLE `VirtualPage` DISABLE KEYS */;
/*!40000 ALTER TABLE `VirtualPage` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `VirtualPage_Live`
--
DROP TABLE IF EXISTS `VirtualPage_Live`;
CREATE TABLE `VirtualPage_Live` (
`ID` int(11) NOT NULL auto_increment,
`VersionID` int(11) NOT NULL default '0',
`CopyContentFromID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `CopyContentFromID` (`CopyContentFromID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `VirtualPage_Live`
--
LOCK TABLES `VirtualPage_Live` WRITE;
/*!40000 ALTER TABLE `VirtualPage_Live` DISABLE KEYS */;
/*!40000 ALTER TABLE `VirtualPage_Live` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `VirtualPage_versions`
--
DROP TABLE IF EXISTS `VirtualPage_versions`;
CREATE TABLE `VirtualPage_versions` (
`ID` int(11) NOT NULL auto_increment,
`RecordID` int(11) NOT NULL default '0',
`Version` int(11) NOT NULL default '0',
`WasPublished` tinyint(1) unsigned NOT NULL default '0',
`AuthorID` int(11) NOT NULL default '0',
`PublisherID` int(11) NOT NULL default '0',
`VersionID` int(11) NOT NULL default '0',
`CopyContentFromID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `RecordID_Version` (`RecordID`,`Version`),
KEY `RecordID` (`RecordID`),
KEY `Version` (`Version`),
KEY `AuthorID` (`AuthorID`),
KEY `PublisherID` (`PublisherID`),
KEY `CopyContentFromID` (`CopyContentFromID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `VirtualPage_versions`
--
LOCK TABLES `VirtualPage_versions` WRITE;
/*!40000 ALTER TABLE `VirtualPage_versions` DISABLE KEYS */;
/*!40000 ALTER TABLE `VirtualPage_versions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `Widget`
--
DROP TABLE IF EXISTS `Widget`;
CREATE TABLE `Widget` (
`ID` int(11) NOT NULL auto_increment,
`ClassName` enum('Widget') character set utf8 default 'Widget',
`Created` datetime default NULL,
`LastEdited` datetime default NULL,
`Sort` int(11) NOT NULL default '0',
`ParentID` int(11) NOT NULL default '0',
PRIMARY KEY (`ID`),
KEY `ParentID` (`ParentID`),
KEY `ClassName` (`ClassName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `Widget`
--
LOCK TABLES `Widget` WRITE;
/*!40000 ALTER TABLE `Widget` DISABLE KEYS */;
/*!40000 ALTER TABLE `Widget` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `WidgetArea`
--
DROP TABLE IF EXISTS `WidgetArea`;
CREATE TABLE `WidgetArea` (
`ID` int(11) NOT NULL auto_increment,
`ClassName` enum('WidgetArea') character set utf8 default 'WidgetArea',
`Created` datetime default NULL,
`LastEdited` datetime default NULL,
PRIMARY KEY (`ID`),
KEY `ClassName` (`ClassName`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `WidgetArea`
--
LOCK TABLES `WidgetArea` WRITE;
/*!40000 ALTER TABLE `WidgetArea` DISABLE KEYS */;
/*!40000 ALTER TABLE `WidgetArea` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2009-02-01 7:43:49

View File

@ -1,30 +0,0 @@
<?php
global $project;
$project = 'mysite';
global $databaseConfig;
$databaseConfig = array(
"type" => "MySQLDatabase",
"server" => "localhost",
"username" => "root",
"password" => "",
"database" => "SS_mysite",
);
// Sites running on the following servers will be
// run in development mode. See
// http://doc.silverstripe.com/doku.php?id=devmode
// for a description of what dev mode does.
Director::set_dev_servers(array(
'localhost',
'127.0.0.1',
));
// This line set's the current theme. More themes can be
// downloaded from http://www.silverstripe.com/themes/
SSViewer::set_theme('mysite');
Security::setDefaultAdmin('admin', 'password');
?>

View File

@ -1,120 +0,0 @@
/**
* SilverStripe Black Candy Theme
* http://www.silverstripe.com
*
* Form Styling
*/
/* FIELDSETS
---------------------------------------- */
fieldset {
border: 0;
font-size: 1.2em;
}
/* ACTION BUTTONS
---------------------------------------- */
input.action {
padding: 2px;
font-size: 1em;
font-family: Verdana, Tahoma, Sans-serif;
}
input.action:hover,
input.action:focus {
cursor: pointer;
}
/* FIELD FORMATING
---------------------------------------- */
form ul {
list-style: none;
}
.middleColumn {
display: block;
margin: 15px 10px 10px 0;
background: #E9E9E9;
padding: 4px;
width: 306px;
clear: left;
}
#Sidebar .middleColumn {
margin: 0 0 0 8px;
display: inline;
}
div.tab .field .middleColumn {
clear: none !important;
margin: 0 !important;
width: auto;
}
.middleColumn .middleColumn {
margin-left: 0;
margin-right: 0;
padding: 0;
}
.middleColumn .message {
margin: 0;
}
/* INPUT BOXS
---------------------------------------- */
input.text, textarea, select {
padding: 2px;
border: 1px solid #A7A7A7;
color: #000;
font-size: 1.1em;
font-weight: bold;
width: 300px;
}
textarea {
font-family: Verdana, Tahoma, sans-serif;
font-size: 1.2em;
}
input:focus span, textarea:focus span {
border: 3px solid #000;
}
/* SELECT DROPDOWN
---------------------------------------- */
select {
width: auto;
}
/* LABELS
---------------------------------------- */
.typography label {
display: block;
margin: 10px 0 -10px 0;
color: #777;
font-size: 1em;
}
.typography .optionset label {
display: inline;
}
label.right {
display:inline;
}
/* SEARCH BOX
---------------------------------------- */
#Search {
width: 105px;
}
input#Search_Form_SearchForm_Search {
width: 110px;
padding: 3px;
margin-left: -4px;
font-size: 1.2em;
}
#Sidebar input.action {
font-size: 1.2em;
float: right;
padding: 1px;
margin: -22px 10px 0 0;
}

View File

@ -1,66 +0,0 @@
/**
SilverStripe Black Candy Theme
http://www.silverstripe.com
IE6 Hacks Stylesheet.
*/
#Sidebar ul#Menu2 li a {
width: 185px; /* 196 - 4 - 2 - some random ie bug = 185 */
}
#Sidebar ul#Menu2 li li a {
width: 183px;
}
#Sidebar ul#Menu2 li a:hover,
#Sidebar ul#Menu2 li a.current,
#Sidebar ul#Menu2 li a.current:hover {
background-image: none;
background: #DCDCDC;
}
#Sidebar ul#Menu2 li li a.levelb:hover {
background: #BCBCBC;
}
#Sidebar ul#Menu2 li li a.current {
background: #BCBCBC;
}
/* Again IE does not like Margins and padding around my nice forms **/
label {
margin-bottom: -10px;
}
/**
* Hack to get the member login form (with tabs) looking good in IE6.
* Otherwise, it looks really bad.
*/
div.tab .field {
clear: none !important;
padding: 0 !important;
margin: 0 !important;
}
div.tab .field label {
margin: 0 !important;
}
input.action {
padding: 2px !important;
}
#Sidebar input.action {
width: 50px;
margin-top: -27px;
}
#Sidebar .middleColumn {
width: 112px;
}
span.middleColumn {
display: inline-block;
}
/* SEARCH FORM
-----------------------------------------------*/
html body #SearchForm_SearchForm {
width: 240px;
margin-top: -5px;
}
html body #SearchForm_SearchForm #SearchForm_SearchForm_action_results {
float: right;
margin-top: -25px;
}

View File

@ -1,36 +0,0 @@
/**
SilverStripe Black Candy Theme
http://www.silverstripe.com
IE7 Hacks Stylesheet.
*/
label {
margin-bottom: -10px;
}
/** The fonts are soo ugly. **/
#Sidebar li li {
font-size: 0.8em;
}
#Sidebar li li li a {
font-size: 0.8em;
}
#Sidebar ul#Menu2 li a.levelb {
width: 180px;
}
#Sidebar ul#Menu2 li a.levelb:hover {
width: 188px;
}
/* SEARCH FORM
-----------------------------------------------*/
html body #SearchForm_SearchForm {
width: 240px;
margin-top: -5px;
}
html body #SearchForm_SearchForm #SearchForm_SearchForm_action_results {
float: right;
margin-top: -25px;
}

View File

@ -1,527 +0,0 @@
/**
* SilverStripe Black Candy Theme
* http://www.silverstripe.com
*
* Main Layout File
*/
/* Misc Styles and defaults
-------------------------------------------- */
* {
margin: 0;
padding: 0;
}
body {
color: #333;
font-size: 62.5%;
margin-bottom: 40px;
font-family: Verdana, Lucida, sans-serif;
}
html {
background: #626467 url(../images/bg.gif) repeat;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
caption, th, td {
text-align: left;
font-weight: normal;
}
.clear{
clear:both;
}
/* CONTAINER
----------------------------------------- */
#BgContainer {
width: 800px;
margin: 0 auto;
}
#Container {
width: 800px;
padding-bottom: 15px;
background: #fff url(../images/containerbg.gif) repeat-y;
}
#Layout {
width: 760px;
clear: both;
overflow: hidden;
margin: 15px auto;
}
#Content {
width: 538px;
float: right;
margin: 0;
text-align: left;
}
/* HEADER
----------------------------------------- */
#Header {
width: 768px;
margin: 0 auto;
overflow: hidden;
background: #58ade1 url(../images/header.gif) repeat-x left center;
}
#Header h1 {
color: #fff;
font-size: 3.2em;
font-family: Tahoma, Verdana, sans-serif;
font-weight: 300;
padding: 20px 0 0 30px;
}
#Header p {
font-size: 1.4em;
color: #fff;
clear: left;
margin: 0 0 0 100px;
}
/* MAIN NAVIGATION - TABS
----------------------------------------- */
#Navigation {
width: 768px;
margin: 0 auto;
padding-top: 5px;
overflow: hidden;
background: #4ea3d7 url(../images/headerRounded.gif) no-repeat center bottom;
}
#Navigation ul {
float: right;
margin-right: 10px;
}
#Navigation ul li {
list-style: none;
margin: 0 2px;
float: left;
line-height: 2.8em;
display: block;
}
#Navigation ul li a {
float: left;
text-decoration: none;
display: block;
height: 2.3em;
font-size: 1.2em;
padding: 0 0 0 10px;
color: #fff;
}
#Navigation ul li a span {
text-align: center;
float: left;
padding-right: 10px;
height: 2.3em;
}
#Navigation ul li a:hover {
background: #93C7E7 url(../images/hoverTabLeft.gif) no-repeat left top;
color: #fff;
cursor: pointer;
}
#Navigation ul li a:hover span {
background: #93C7E7 url(../images/hoverTabRight.gif) no-repeat right top;
cursor: pointer;
}
#Navigation ul li a.current,
#Navigation ul li a.section,
#Navigation ul li a.section:hover,
#Navigation ul li a.current:hover {
background: #fff url(../images/activeTabLeft.png) no-repeat left top;
color: #444;
}
#Navigation ul li a.current span,
#Navigation ul li a.section span,
#Navigation ul li a.section:hover span,
#Navigation ul li a.current:hover span {
background: #fff url(../images/activeTabRight.png) no-repeat right top;
color: #444;
}
/* BREADCRUMBS
-------------------------------------------- */
#Breadcrumbs {
color: #B7C0C5;
text-align: left;
font-size: 0.9em;
margin: 0px 5px 10px 0;
}
#Breadcrumbs p {
margin: 0;
}
/* SIDEBAR
-------------------------------------- */
#Sidebar {
width: 200px;
float: left;
margin: 10px 0 0 0;
padding: 0;
}
#Sidebar .sidebarBox {
margin: 0 0 5px 0;
padding-bottom: 2px;
background: #EFEFEF url(../images/sidebarHeader.gif) no-repeat left top;
}
#Sidebar ul {
margin: 2px 0 5px 3px;
}
#Sidebar li {
margin: 8px 2px;
list-style: none;
}
#Sidebar h3 {
clear: both;
text-transform: lowercase;
color: #fff;
font-weight: 700;
font-size: 1.4em;
margin: 0 0 10px 0;
line-height: 1.8;
padding: 1px 0 0 10px;
background: transparent url(../images/sidebarHeaderSub.gif) repeat-x center left;
}
#Sidebar .sidebarBottom {
height: 15px;
display: block;
width: 200px;
margin: -5px 0 0 0;
background: #EFEFEF url(../images/sidebarBottomBg.gif) no-repeat center bottom;
}
#Sidebar a em {
font-style: normal;
}
#Sidebar p {
font-size: 11px;
clear: both;
margin: 10px 10px 0 10px;
}
/* MENU2 */
ul#Menu2 li {
font-size: 0.9em;
margin: 1px 0 5px 4px;
list-style: none;
}
ul#Menu2 li a {
display: block;
width: 196px;
font-size: 1.2em;
height: 1.8em;
line-height: 1.8em;
color: #898989;
}
ul#Menu2 li em {
padding-left: 8px;
display: block;
}
ul#Menu2 li li em {
padding-left: 0;
}
/* Level 1
- We use 3 elements for the nav to get 3 background images applied.
* span - topleft rounded corner
* em - bottomleft rounded corner
* a - arrow on the right
<a><span><em></em></span></a>
*/
ul#Menu2 li a:hover,
ul#Menu2 li a.current,
ul#Menu2 li a.current:hover {
background: #DCDCDC url(../images/sidebarSideArrow.gif) no-repeat right center;
color: #666;
cursor: pointer;
text-decoration: none;
}
ul#Menu2 li a.current {
font-weight: 700;
}
ul#Menu2 li a.section,
ul#Menu2 li a.section:hover {
background: #DCDCDC;
font-weight: 700;
width: 193px;
}
ul#Menu2 li a.levela:hover span,
ul#Menu2 li a.current span,
ul#Menu2 li a.section span,
ul#Menu2 li a.section:hover span,
ul#Menu2 li a.current:hover span {
background: transparent url(../images/sidebarTopLeftHover.gif) no-repeat left top;
display: block;
width: 100%;
height: 100%;
}
ul#Menu2 li a.levela:hover em,
ul#Menu2 li a.current em,
ul#Menu2 li a.section em,
ul#Menu2 li a.section:hover em,
ul#Menu2 li a.current:hover em {
background: transparent url(../images/sidebarBottomLeftHover.gif) no-repeat left bottom;
display: block;
width: 100%;
height: 100%;
}
ul#Menu2 li ul {
height: 100%;
position: relative;
margin: -4px 0 0 0;
width: 193px;
padding: 4px 0 10px 0;
background: #DCDCDC url(../images/sidebarSectionBottom.png) no-repeat bottom left;
}
ul#Menu2 li ul li {
width: 160px;
background: #DCDCDC;
padding: 0;
font-size: 0.8em;
display: inline;
margin: 0;
}
ul#Menu2 li ul li ul {
background: #DCDCDC;
margin-left: 0;
}
ul#Menu2 li li a.current,
ul#Menu2 li li a.section,
ul#Menu2 li li a.section:hover,
ul#Menu2 li li a.current:hover {
color: #555;
font-weight: 700;
background: #DCDCDC;
}
ul#Menu2 li li ul {
margin: 0 0 0 10px;
padding: 0;
width: 175px;
}
ul#Menu2 li li ul .roundWhite {
margin-bottom: -10px;
}
/* Sub Menu */
ul#Menu2 li a.levelb {
font-size: 1.7em;
text-indent: 8px;
width: 188px;
background: transparent;
margin-left: 10px;
}
ul#Menu2 li a.levelb:hover,
ul#Menu2 li li a.current,
ul#Menu2 li li a.current:hover,
ul#Menu2 li li a.section,
ul#Menu2 li li a.section:hover {
background: #BCBCBC url(../images/sidebarSideArrow2.gif) no-repeat right center;
text-decoration: none;
display: block;
color: #fff;
}
ul#Menu2 li a.levelb:hover span,
ul#Menu2 li li a.current span,
ul#Menu2 li li a.current:hover span,
ul#Menu2 li li a.section span,
ul#Menu2 li li a.section:hover span {
background: transparent url(../images/sidebarTopLeftHover2.gif) no-repeat left top;
display: block;
width: 100%;
height: 100%;
}
ul#Menu2 li a.levelb:hover em,
ul#Menu2 li li a.current em,
ul#Menu2 li li a.current:hover em,
ul#Menu2 li li a.section em,
ul#Menu2 li li a.section:hover em {
background: transparent url(../images/sidebarBottomLeftHover2.gif) no-repeat left bottom;
display: block;
width: 100%;
height: 100%;
}
/* COMMENTS
---------------------------------------- */
#CommentHolder ul {
list-style: none;
margin: 20px 0;
}
#PageComments li {
margin: 5px 0;
padding: 1px;
width: 88%;
}
#PageComments li.odd {
background: #E8F6FF url(../images/commentBg.png) no-repeat 1% 10%;
padding-left: 40px;
padding-right: 10px;
border-bottom: 2px solid #BCE4FE;
}
#PageComments li.even {
background: #fff url(../images/commentBgAlt.png) no-repeat 99% 10%;
padding-right: 40px;
padding-left: 10px;
}
#PageComments li.odd p.info {
color: #3AA0C3;
}
.actionLinks li {
display: inline;
border-right: 1px solid;
}
.actionLinks li a {
padding-right: 3px;
font-size: 10px;
}
.actionLinks li.last {
border-right: none;
}
.commentrss {
background: transparent url(../images/feed-icon-14x14.png) no-repeat;
padding-left: 20px;
font-size: 1.1em;
line-height: 1.6em;
}
#PageCommentsPagination p {
text-align: center;
font-size: 1.2em;
}
#PageComments p {
font-size: 1em;
}
#PageComments p.info {
color: #999;
margin: 0px;
padding: 0;
line-height: 1em;
font-size: 0.9em;
}
/* SEARCH RESULTS STYLES
------------------------------------------------ */
ul#SearchResults {
margin: 10px 0;
}
ul#SearchResults li {
list-style: none;
margin: 5px 0;
font-size: 1em;
}
/* SEARCH FORM
-----------------------------------------------*/
html #SearchForm_SearchForm {
float: right;
width: 240px;
margin: 5px;
}
html #SearchForm_SearchForm .middleColumn {
float: left;
width: 164px;
margin: 0 5px 0 0;
padding: 2px;
background-color: #51a9df;
}
html #SearchForm_SearchForm .middleColumn input.text {
width: 160px;
border: none;
color: #666;
}
html #SearchForm_SearchForm #SearchForm_SearchForm_action_results {
float: left;
margin-top: 2px;
}
/* MESSAGEBOXS
--------------------------------------------- */
.message {
margin: 15px;
padding: 5px;
width: 92%;
color: #979908;
border: 4px solid #F7F8B4;
background: #FFFFEA;
}
span.middleColumn .message {
margin: 4px 0 0 3px;
}
.required {
margin: 4px 0 0 3px;
padding: 5px;
width: 92%;
color: #DC1313;
border: 4px solid #FF7373;
background: #FED0D0;
}
p#Remember label {
margin: -24px 0 0 20px;
text-align: left;
}
.entry {
border-bottom: 1px solid #eee;
}
.typography #Content p.authorDate {
color: #444;
margin-top: -15px;
}
/* UNSUBSCRIBE NEWSLETTER
------------------------------------------------ */
#Unsubscribe_MailingListForm_MailingListForm{
min-height:100px;
}
#Unsubscribe_MailingListForm_MailingListForm p{
margin:0 !important;
padding:10px;
}
#Unsubscribe_MailingListForm_MailingListForm p label{
display: inline;
}
#Unsubscribe_MailingListForm_MailingListForm label{
margin:0;
}
/* FOOTER
----------------------------------------------- */
#Footer {
clear: both;
width: 800px;
height: 5em;
background: transparent url(../images/footerBottom.gif) no-repeat bottom left;
text-align: center;
}
#Footer .footerTop {
width: 100%;
background: transparent url(../images/footerTop.gif) no-repeat top left;
display: block;
height: 2em;
}
#Footer p {
color: #fff;
font-size: 1.1em;
text-align: center;
margin-top: -0.6em;
}
#Footer a {
color: #fff;
text-decoration: none;
}
#Footer a:hover {
color: #fff;
text-decoration: underline;
}

View File

@ -1,232 +0,0 @@
/**
* SilverStripe Black Candy Theme
* http://www.silverstripe.com
*
* This typography file is included in the WYSIWYG editor and the front end. It provides
* a place to add link styles and font styles you would like in the CMS and the Front End.
*/
/* GENERIC STYLES
-------------------------------------------- */
.typography * {
font-family: Verdana, Lucida, Arial, sans-serif;
}
/* PARAGRAPHS
-------------------------------------------- */
.typography p {
color: #666;
line-height: 18px;
font-size: 11px;
margin: 0 0 18px 0;
}
/* QUOTES
-------------------------------------------- */
.typography blockquote {
margin: 10px;
font-size: 1.4em;
color: #777;
font-style: italic;
}
.typography q {
display:block;
font-size: 0.8em;
margin: 1em 1em;
padding: 0.5em;
border: 1px #ccc solid;
}
/* LINKS
-------------------------------------------- */
.typography a {
text-decoration: none;
color: #3E91C4;
}
.typography a:hover {
text-decoration: underline;
}
/* LINK ICONS - shows type of file
------------------------------------ */
.typography a[href$=".pdf"],
.typography a[href$=".PDF"],
.typography a.pdf {
padding: 2px;
padding-left: 20px;
background: url(../images/icons/page_white_acrobat.png) no-repeat left center;
}
.typography a[href$=".doc"],
.typography a[href$=".DOC"],
.typography a.doc {
padding: 2px;
padding-left: 20px;
background: url(../images/icons/page_word.png) no-repeat left center;
}
.typography a[href$=".xls"],
.typography a[href$=".XLS"],
.typography a.xls {
padding: 2px;
padding-left: 20px;
background: url(../images/icons/page_excel.png) no-repeat left center;
}
.typography a[href$=".gz"],
.typography a[href$=".GZ"],
.typography a[href$=".gzip"],
.typography a[href$=".GZIP"],
.typography a[href$=".zip"],
.typography a[href$=".ZIP"],
.typography a.archive {
padding: 2px;
padding-left: 20px;
background: url(../images/icons/page_white_zip.png) no-repeat left center;
}
.typography a[href$=".exe"],
.typography a[href$=".EXE"],
.typography a.application {
padding: 2px;
padding-left: 20px;
background: url(../images/icons/application.png) no-repeat left center;
}
/* LIST STYLES
-------------------------------------------- */
.typography ul,
.typography ol {
margin: 0 0 18px 24px;
color: #666;
}
.typography li {
margin: 5px 10px;
font-size: 11px;
}
.typography li li {
font-size: 10px;
}
/* HEADER STYLES
-------------------------------------------- */
.typography h1,
.typography h2 {
color: #4EA3D7;
margin: 0 0 18px 0;
font-weight: 300;
font-family: Tahoma, Verdana, sans-serif;
}
.typography h1 {
font-size: 24px;
}
.typography h2 {
font-size: 20px;
}
.typography h3 {
color: #222;
margin: 0 0 18px 0;
font-weight: 300;
clear: both;
font-size: 18px;
}
.typography h4 {
font-size: 16px;
color: #222;
width: 95%;
font-weight: 300;
line-height: 18px;
border-bottom: 1px solid #ccc;
margin: 0 0 16px 0;
}
.typography h5 {
font-size: 14px;
color: #222;
font-weight: 700;
margin: 0 0 12px 0;
}
.typography h6 {
font-size: 13px;
color: #555;
line-height: 1.4em;
margin: 0 0 12px 0;
}
/* PRE STYLES
-------------------------------------------- */
.typography pre {
font-family:"Courier New",Courier;
display:block;
font-size:1.2em;
margin:2em 5em;
padding:0.5em;
border:1px #ccc solid;
background:#eee;;
}
/* TABLE STYLING
-------------------------------------------- */
.typography table {
margin: 0 0 18px 0;
font-size: 11px;
color: #666;
border-collapse:collapse;
}
.typography tr {}
.typography td {
border:1px solid #999;
padding:5px;
}
/* WYSIWYG EDITOR ALIGNMENT CLASSES
-------------------------------------------- */
.typography .left {
text-align: left;
}
.typography .center {
text-align: center;
}
.typography .right {
text-align: right;
}
/* IMAGES
-------------------------------------------- */
.typography img {
border: none;
}
.typography div.image.right,
.typography div.captionImage.right {
float: right;
margin-left: 20px;
}
.typography .captionImage {
border: 1px solid #aaa;
padding: 5px;
}
.typography div.image.left,
.typography div.captionImage.left {
float: left;
}
.typography div.image.leftAlone,
.typography div.captionImage.leftAlone {
float: left;
margin-right: 100%;
}
.typography div.image.center,
.typography div.captionImage.center {
float: none;
margin-left: auto;
margin-right: auto;
display: block;
}
.typography .caption {
font-weight: bold;
text-align: center;
color: #666;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 442 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 190 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 689 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 204 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 304 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 96 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 96 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 464 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 817 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 591 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 386 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 777 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 174 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 97 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 64 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 748 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 255 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 82 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 317 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 205 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 99 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 98 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 89 B

View File

@ -1,5 +0,0 @@
<% if Level(2) %>
<div id="Breadcrumbs">
<p>$Breadcrumbs</p>
</div>
<% end_if %>

View File

@ -1,4 +0,0 @@
<div class="footerTop">
<!-- -->
</div>
<p>Copyright &copy; 2007-2008 | Powered by <a href="http://www.silverstripe.com" title="This site runs on the SilverStripe CMS">SilverStripe Open Source CMS</a></p>

View File

@ -1,5 +0,0 @@
<ul>
<% control Menu(1) %>
<li><a href="$Link" title="Go to the $Title.XML page" class="$LinkingMode"><span>$MenuTitle.XML</span></a></li>
<% end_control %>
</ul>

View File

@ -1,37 +0,0 @@
<div id="Sidebar" class="typography">
<div class="sidebarBox">
<h3>
<% control Level(1) %>
$Title
<% end_control %>
</h3>
<ul id="Menu2">
<% control Menu(2) %>
<% if Children %>
<li class="$LinkingMode"><a href="$Link" title="Go to the $Title.XML page" class="$LinkingMode levela"><span><em>$MenuTitle.XML</em></span></a>
<% else %>
<li><a href="$Link" title="Go to the $Title.XML page" class="$LinkingMode levela"><span><em>$MenuTitle.XML</em></span></a>
<% end_if %>
<% if LinkOrSection = section %>
<% if Children %>
<ul class="sub">
<li>
<ul class="roundWhite">
<% control Children %>
<li><a href="$Link" title="Go to the $Title.XML page" class="$LinkingMode levelb"><span><em>$MenuTitle.XML</em></span></a></li>
<% end_control %>
</ul>
</li>
</ul>
<% end_if %>
<% end_if %>
</li>
<% end_control %>
</ul>
<div class="clear"></div>
</div>
<div class="sidebarBottom"></div>
</div>

View File

@ -1,23 +0,0 @@
<div class="typography">
<% if Menu(2) %>
<% include SideBar %>
<div id="Content">
<% end_if %>
<% if Level(2) %>
<% include BreadCrumbs %>
<% end_if %>
<h2>$Title</h2>
$Content
$Form
$PageComments
<% if Menu(2) %>
</div>
<% end_if %>
</div>

View File

@ -1,42 +0,0 @@
<div class="typography">
<% if Results %>
<ul id="SearchResults">
<% control Results %>
<li>
<% if MenuTitle %>
<h3><a class="searchResultHeader" href="$Link">$MenuTitle</a></h3>
<% else %>
<h3><a class="searchResultHeader" href="$Link">$Title</a></h3>
<% end_if %>
<% if Content %>
$Content.FirstParagraph(html)
<% end_if %>
<a class="readMoreLink" href="$Link" title="Read more about &quot;{$Title}&quot;">Read more about &quot;{$Title}&quot;...</a>
</li>
<% end_control %>
</ul>
<% else %>
<p>Sorry, your search query did not return any results.</p>
<% end_if %>
<% if Results.MoreThanOnePage %>
<div id="PageNumbers">
<% if Results.NotLastPage %>
<a class="next" href="$Results.NextLink" title="View the next page">Next</a>
<% end_if %>
<% if Results.NotFirstPage %>
<a class="prev" href="$Results.PrevLink" title="View the previous page">Prev</a>
<% end_if %>
<span>
<% control Results.SummaryPagination(5) %>
<% if CurrentBool %>
$PageNum
<% else %>
<a href="$Link" title="View page number $PageNum">$PageNum</a>
<% end_if %>
<% end_control %>
</span>
</div>
<% end_if %>
</div>

View File

@ -1,53 +0,0 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
<head>
<% base_tag %>
<title>$Title &raquo; Your Site Name</title>
$MetaTags(false)
<link rel="shortcut icon" href="/favicon.ico" />
<% require themedCSS(layout) %>
<% require themedCSS(typography) %>
<% require themedCSS(form) %>
<!--[if IE 6]>
<style type="text/css">
@import url(themes/blackcandy/css/ie6.css);
</style>
<![endif]-->
<!--[if IE 7]>
<style type="text/css">
@import url(themes/blackcandy/css/ie7.css);
</style>
<![endif]-->
</head>
<body>
<div id="BgContainer">
<div id="Container">
<div id="Header">
$SearchForm
<h1>Your Site Name</h1>
<p>your site&#39;s tagline here</p>
</div>
<div id="Navigation">
<% include Navigation %>
</div>
<div class="clear"><!-- --></div>
<div id="Layout">
$Layout
</div>
<div class="clear"><!-- --></div>
</div>
<div id="Footer">
<% include Footer %>
</div>
</div>
</body>
</html>

View File

@ -1,57 +0,0 @@
/*
This stylesheet is used for styling the BBCode hints
*/
#BBTagsHolder.hide {
display: none;
}
#BBTagsHolder.show {
display: block;
}
/* These are for the BBCode example tags at the top of the start topic/reply to topic/edit post forms */
#BBTagsHolder h2{
margin: 0;
padding: 0;
font-size:1.2em;
}
ul.bbcodeExamples li {
list-style-type:square;
font-size: 1em;
}
ul.bbcodeExamples li.last {
border: none;
}
ul.bbcodeExamples li span.example {
}
#BBTagsHolder{
float:right;
padding: 5px;
width: 270px;
background-color: #fff;
border: 1px solid #777;
font-size:0.8em;
}
.bbcodeExamples{
margin: 0 !important;
padding: 0;
}
#BBTagsHolder ul{
list-style-image:none;
list-style-position:outside;
list-style-type:none;
}
#BlogEntry_Form_BlogEntryForm #tagsnote{
float:left:
margin: 0;
margin-top: -10px;
margin-bottom: 10px;
}

View File

@ -1,80 +0,0 @@
#BlogContent {
width: 538px;
float: right;
margin: 0;
text-align: left;
}
.BlogError {
text-align: center;
}
/* IE cuts the bottom of the tags off */
* html #Sidebar p.tagcloud {
padding-bottom: 10px;
}
.BlogError p {
color: #fff;
display: inline;
background-color: #f77;
padding: 7px;
font-weight:bold;
}
#BlogEntry_Form_BlogEntryForm #ContentLabel{
display:inline;
}
#BlogEntry_Form_BlogEntryForm .CompositeField {
position: relative;
width: 100%;
}
#BlogEntry_Form_BlogEntryForm #BBCodeHint {
cursor: pointer;
font-size:0.8em;
position: absolute;
left: 240px;
top: 3px;
}
#BlogEntry_Form_BlogEntryForm #BBTagsHolder{
display: block;
position: absolute;
top: 30px;
left: 325px;
}
.blogSummary {
border-bottom: 1px solid #ddd;
padding-bottom: 8px;
}
#Content label{
margin-top: 0px;
}
#Layout p.authorDate,
#Layout p.tags {
font-size: 0.9em;
color: #777;
margin: -15px 0 12px 0;
}
p.blogVitals {
text-align: right;
margin: 0;
color: #999;
}
a.comments {
background: url(../images/comments.gif) no-repeat left center;
padding: 3px 0 3px 25px;
}
a.readmore {
background: url(../images/readmore.gif) no-repeat left center;
padding: 3px 0 3px 25px;
}
a#editpost{
background: url(../images/edit.gif) no-repeat left center;
padding: 3px 0 3px 25px;
}
a#unpublishpost{
background: url(../images/delete.gif) no-repeat left center;
padding: 3px 0 3px 25px;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 356 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,6 +0,0 @@
<div class="sidebarBox">
<h3>$Title</h3>
$Content
<div class="clear"><!-- --></div>
</div>
<div class="sidebarBottom"><!-- --></div>

View File

@ -1,17 +1,14 @@
/**
* This support file is used to style the WYSIWYG editor in the CMS
*/
@import "typography.css";
body.mceContentBody {
min-height: 200px;
font-size: 62.5%;
}
body.mceContentBody a.broken {
background-color: #FF7B71;
border: 1px red solid;
color: #fff;
padding: 1px;
text-decoration: underline;
}
/**
* This support file is used to style the WYSIWYG editor in the CMS
*/
@import "typography.css";
body.mceContentBody {
min-height: 200px;
font-size: 62.5%;
}
body.mceContentBody a.broken {
background-color: #FF7B71;
border: 1px red solid;
}

View File

@ -0,0 +1,64 @@
/* GENERIC FORM STYLING */
#Content form {
width:378px;
}
#Content form fieldset {
border:0;
padding:12px;
}
#Content .message {
color:red;
background:#ddd;
border:1px solid #ccc;
padding:5px;
margin:5px;
}
#Content span.message {
width: 300px;
}
#Content form div {
margin-top:10px;
width:100%;
}
#Content form label {
font-size:1.1em;
color:#333;
}
#Content form label.left {
float:left;
width:12em;
}
#Content form label.FormHeading {
font-size:1.3em;
color:#ff7200;
font-weight:bold;
}
#Content form input.text,
#Content form textarea,
#Content form select {
width:200px;
color:#000;
background:#f8f8f8;
border:1px solid #aaa;
padding:3px;
}
#Content form input.numeric {
width:20px;
background:#f0f0f0;
border:1px solid #aaa;
padding:3px;
color:#000;
margin-right:4px;
}
#Content form input.year {
width:35px;
}
#Content form p.Actions {
text-align:right;
padding:0 22px 15px 0;
}
#Content form p.Actions input {
padding:2px;
}

View File

@ -0,0 +1,287 @@
/* Global Resetting */
html{
width: 100%;
height: 100%;
background:url(../images/body_bg.gif) repeat;
}
body {
width: 100%;
height: 100%;
font-size: 62.5%;
/* reset font-sizes to 1em == 10px */
}
* {
font-size: 1em;
/* reset font-sizes to 1em == 10px */
padding: 0;
margin: 0;
font-family:Verdana,Helvetica,sans-serif;
list-style:none;
}
a img{
border:0;
}
.clear{
clear:both;
}
/* Layout CSS */
#Main {
margin:20px auto;
width:900px;
}
#Header {
background:url(../images/blueback.gif) bottom left repeat-x;
border-left:1px solid #ccc;
border-right:1px solid #ccc;
clear:left;
}
#Header h1 {
color:#fff;
font-size:1.5em;
line-height:4.5em;
padding-left:20px;
}
#Menu1 {
padding:10px 50px 0;
}
#Menu1 li {
float:left;
margin-left:2px;
background:url(../images/menu1_right.gif) no-repeat right top;
}
#Menu1 li.current,
#Menu1 li.section {
background:url(../images/menu1_right_on.gif) no-repeat right top;
}
#Menu1 li a {
display:block;
color:#fff;
font-weight:bold;
font-size:1.1em;
text-decoration:none;
padding:5px 15px;
background:url(../images/menu1_left.gif) no-repeat left top;
}
#Menu1 li a:hover {
color:#d2ebff;
}
#Menu1 li.current a,
#Menu1 li.section a {
background:url(../images/menu1_left_on.gif) no-repeat left top;
color:#d2ebff;
}
#ContentContainer {
background:#f5f5f5 url(../images/ss_watermark.gif) bottom left no-repeat;
padding-top:20px;
padding-bottom:20px;
overflow: auto;
}
#Banner {
text-align: center;
}
#Menu2 {
margin-left: 20px;
width: 17em;
float:left;
background:#f0f0f0;
border:1px solid #ddd;
padding:10px 10px 10px 10px;
}
#Menu2 li {
padding-left:15px;
background:url(../images/menu2_arrow.gif) no-repeat left center;
}
#Menu2 a {
color:#333;
font-weight:bold;
font-size:1.1em;
line-height:1.6em;
text-decoration:none;
}
#Menu2 a:hover {
text-decoration:underline;
}
#Menu2 li.current a,
#Menu2 li.section a {
color:#0083C8;
}
#Content {
float: left;
margin: 0px 20px;
width:70%;
}
div.breadcrumbs {
margin-bottom:10px;
font-size:1em;
color:#666;
}
div.breadcrumbs a {
text-decoration:none;
}
#Footer {
background:#015581;
clear:both;
text-align:right;
padding-right:20px;
border:1px solid #ccc;
border-top:0;
}
#Footer span {
color:#ccc;
font-size:1.1em;
line-height:2em;
font-weight:bold;
padding-left:20px;
background:url(../images/ss_logo.gif) no-repeat;
}
#Footer a {
color:#fff;
}
#Footer a:hover {
text-decoration:none;
}
/* The rest of this file is for the second tutorial */
#NewsList,
#StaffList {
background:#f0f0f0;
border:1px dotted #ccc;
padding:10px;
}
#NewsList li,
#StaffList li {
margin: 0;
list-style-type: none;
}
#NewsList li.newsDateTitle span {
color:#666;
line-height:2em;
}
#NewsList li.newsDateTitle a {
font-size:1.3em;
font-weight:bold;
color:#0083C8;
text-decoration:none;
padding-left:20px;
background:url(../images/treeicons/news-file.gif) no-repeat left center;
}
#NewsList li.newsDateTitle a:hover {
border-bottom:1px dotted #0083C8;
}
#NewsList li.newsSummary {
margin-bottom:20px;
}
#NewsList li.newsSummary span {
font-size:1.1em;
line-height:1.5em;
color:#333;
}
#NewsList li.newsSummary a.readMoreLink {
color:#0083C8;
text-decoration:none;
}
#NewsList li.newsSummary a.readMoreLink:hover {
border-bottom:1px dotted #0083C8;
}
div.newsDetails {
margin-bottom:10px;
}
div.newsDetails p {
color:#666;
margin:0;
font-size:1em;
}
div.pageComments {
background:#f0f0f0;
border:1px dotted #ccc;
padding:10px;
}
#StaffList .staffname {
clear: both;
padding-left: 60px;
height: 1.2em;
}
#StaffList .staffphoto {
float: left;
margin-left: 3px;
margin-top: -1.2em;
}
#StaffList .staffphoto img {
border:1px solid #AAA;
}
#StaffList .staffdescription {
margin-left: 60px;
margin-bottom:30px;
}
#StaffPhoto {
float: left;
margin-right: 10px;
}
#StaffPhoto img {
border:1px solid #AAA;
}
#PageComments {
list-style:none;
background:#e9e9e9;
border:1px solid #ccc;
border-bottom:0;
padding:0;
margin:0;
}
#PageComments li {
list-style:none;
padding:5px;
margin:0;
font-size:1em;
border-bottom:1px dotted #bbb;
}
#PageComments li p span {
font-style:italic;
}
#PageComments a.deletelink {
font-weight:bold;
}
#PageNumbers {
font-weight:bold;
color:#333;
font-size:1.1em;
text-align:center;
padding:5px;
border:1px solid #ddd;
background:#e9e9e9;
}
#PageNumbers * {
padding:0 5px;
line-height:1.5em;
}
#PageNumbers a {
color:#0083C8;
text-decoration:none;
}
#PageNumbers a:hover {
text-decoration:underline;
}

View File

@ -0,0 +1,113 @@
/**
* This typography file is included in the WYSIWYG editor
*/
.typography * {
font-family:Verdana,Arial,sans-serif;
font-size:1em;
}
.typography blockquote {
margin-left:20px;
}
.typography hr {
padding:5px;
}
.typography p,
.typography ul li,
.typography ol li,
.typography a {
color:#333;
line-height:1.5em;
font-size:1.1em;
}
.typography p {
margin-bottom:20px;
}
/** CMS LIST STYLES **/
.typography ul,
.typography ol {
margin-left:10px;
margin-bottom:20px;
}
.typography ul li,
.typography ol li {
margin:4px 10px;
line-height:1.4em;
}
.typography ul li {
list-style-type:disc;
}
.typography ol li {
list-style-type:decimal;
}
/* HEADER STYLES */
.typography h1,
.typography h2,
.typography h3,
.typography h4 {
margin-bottom:14px;
color:#0083C8;
}
.typography h1,
.typography h4 {
font-weight:bold;
}
.typography h2,
.typography h3 {
font-weight:normal;
}
.typography h1 {
font-size:2.2em;
}
.typography h2 {
font-size:2.2em;
}
.typography h3 {
font-size:1.6em;
}
.typography h4 {
font-size:1.4em;
}
/* LINK STYLES */
.typography a {
color:#0083C8;
font-size:1em;
text-decoration:none;
}
.typography a:hover {
text-decoration:underline;
}
.typography table {
font-size:1.1em;
}
.typography table tr td {
padding:3px 5px;
}
/* WYSIWYG EDITOR ALIGNMENT CLASSES */
.typography .left {
text-align:left;
}
.typography .center {
text-align:center;
}
.typography .right {
text-align:right;
}
.typography img.right {
float:right;
}
.typography img.left {
float:left;
}
.typography p.MsoNormal, .typography p.MsoBodyText {
margin: 0;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 285 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 312 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 446 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 117 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 556 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 173 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 176 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
<head>
<% base_tag %>
<link rel="stylesheet" type="text/css" href="tutorial/css/layout.css" />
<link rel="stylesheet" type="text/css" href="tutorial/css/typography.css" />
<link rel="stylesheet" type="text/css" href="tutorial/css/form.css" />
</head>
<body>
<div id="Main">
<div id="Header">
<h1>&nbsp;</h1>
</div>
<div id="ContentContainer">
<div id="Content" class="typography">
$Content
$Form
</div>
</div>
<div id="Footer">
<span>Visit <a href="http://www.silverstripe.com" title="Visit www.silverstripe.com">www.silverstripe.com</a> to download the CMS</span>
</div>
</div>
$SilverStripeNavigator
</body>
</html>