2616 lines
2.7 MiB
MySQL
2616 lines
2.7 MiB
MySQL
|
|
-- MySQL dump 10.11
|
||
|
|
--
|
||
|
|
-- Host: localhost Database: matritum_joomla
|
||
|
|
-- ------------------------------------------------------
|
||
|
|
-- Server version 5.0.95-community-log
|
||
|
|
|
||
|
|
/*!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 `mos_banner`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_banner`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_banner` (
|
||
|
|
`bid` int(11) NOT NULL auto_increment,
|
||
|
|
`cid` int(11) NOT NULL default '0',
|
||
|
|
`type` varchar(10) NOT NULL default 'banner',
|
||
|
|
`name` varchar(50) NOT NULL default '',
|
||
|
|
`imptotal` int(11) NOT NULL default '0',
|
||
|
|
`impmade` int(11) NOT NULL default '0',
|
||
|
|
`clicks` int(11) NOT NULL default '0',
|
||
|
|
`imageurl` varchar(100) NOT NULL default '',
|
||
|
|
`clickurl` varchar(200) NOT NULL default '',
|
||
|
|
`date` datetime default NULL,
|
||
|
|
`showBanner` tinyint(1) NOT NULL default '0',
|
||
|
|
`checked_out` tinyint(1) NOT NULL default '0',
|
||
|
|
`checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`editor` varchar(50) default NULL,
|
||
|
|
`custombannercode` text,
|
||
|
|
PRIMARY KEY (`bid`),
|
||
|
|
KEY `viewbanner` (`showBanner`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_banner`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_banner` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_banner` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_banner` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_bannerclient`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_bannerclient`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_bannerclient` (
|
||
|
|
`cid` int(11) NOT NULL auto_increment,
|
||
|
|
`name` varchar(60) NOT NULL default '',
|
||
|
|
`contact` varchar(60) NOT NULL default '',
|
||
|
|
`email` varchar(60) NOT NULL default '',
|
||
|
|
`extrainfo` text NOT NULL,
|
||
|
|
`checked_out` tinyint(1) NOT NULL default '0',
|
||
|
|
`checked_out_time` time default NULL,
|
||
|
|
`editor` varchar(50) default NULL,
|
||
|
|
PRIMARY KEY (`cid`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_bannerclient`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_bannerclient` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_bannerclient` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_bannerclient` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_bannerfinish`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_bannerfinish`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_bannerfinish` (
|
||
|
|
`bid` int(11) NOT NULL auto_increment,
|
||
|
|
`cid` int(11) NOT NULL default '0',
|
||
|
|
`type` varchar(10) NOT NULL default '',
|
||
|
|
`name` varchar(50) NOT NULL default '',
|
||
|
|
`impressions` int(11) NOT NULL default '0',
|
||
|
|
`clicks` int(11) NOT NULL default '0',
|
||
|
|
`imageurl` varchar(50) NOT NULL default '',
|
||
|
|
`datestart` datetime default NULL,
|
||
|
|
`dateend` datetime default NULL,
|
||
|
|
PRIMARY KEY (`bid`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_bannerfinish`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_bannerfinish` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_bannerfinish` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_bannerfinish` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_categories`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_categories`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_categories` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`parent_id` int(11) NOT NULL default '0',
|
||
|
|
`title` varchar(50) NOT NULL default '',
|
||
|
|
`name` varchar(255) NOT NULL default '',
|
||
|
|
`image` varchar(100) NOT NULL default '',
|
||
|
|
`section` varchar(50) NOT NULL default '',
|
||
|
|
`image_position` varchar(10) NOT NULL default '',
|
||
|
|
`description` text NOT NULL,
|
||
|
|
`published` tinyint(1) NOT NULL default '0',
|
||
|
|
`checked_out` int(11) unsigned NOT NULL default '0',
|
||
|
|
`checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`editor` varchar(50) default NULL,
|
||
|
|
`ordering` int(11) NOT NULL default '0',
|
||
|
|
`access` tinyint(3) unsigned NOT NULL default '0',
|
||
|
|
`count` int(11) NOT NULL default '0',
|
||
|
|
`params` text NOT NULL,
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
KEY `cat_idx` (`section`,`published`,`access`),
|
||
|
|
KEY `idx_section` (`section`),
|
||
|
|
KEY `idx_access` (`access`),
|
||
|
|
KEY `idx_checkout` (`checked_out`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=428 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_categories`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_categories` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_categories` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_categories` (`id`, `parent_id`, `title`, `name`, `image`, `section`, `image_position`, `description`, `published`, `checked_out`, `checked_out_time`, `editor`, `ordering`, `access`, `count`, `params`) VALUES (80,0,'Premios y menciones','Premios y menciones','','3','left','<br />\r\n',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(2,0,'Enlaces','Enlaces','','com_weblinks','left','\r\nnlaceA selection of links that are all related to the Mambo project.',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(76,0,'Contacta con nosotros','Contacta con nosotros','','3','left','<br />\r\n',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''),(101,0,'Presidente','Presidente','','com_contact_details','left','<br />\r\n',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(66,0,'Mambo','Mambo','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''),(67,0,'Historia y componentes','Historia y componentes','','3','left','',1,0,'0000-00-00 00:00:00',NULL,3,0,0,''),(68,0,'Contacto','Contacto','','3','left','',1,0,'0000-00-00 00:00:00',NULL,5,0,0,''),(69,0,'Álbum de fotos','Álbum de fotos','','3','left','',1,0,'0000-00-00 00:00:00',NULL,4,0,0,''),(70,0,'Repertorio','Repertorio','','4','left','',1,0,'0000-00-00 00:00:00',NULL,4,0,0,''),(71,0,'Actuaciones','Actuaciones','','4','left','',1,0,'0000-00-00 00:00:00',NULL,3,0,0,''),(114,0,'Comunicados','Comunicados','','12','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(73,0,'Ensayos','Ensayos','','4','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(81,0,'Sopranos','Sopranos','','com_contact_details','left','<br />\r\n',1,0,'0000-00-00 00:00:00',NULL,6,1,0,''),(82,0,'Tenores','Tenores','','com_contact_details','left','<br />\r\n',1,0,'0000-00-00 00:00:00',NULL,5,1,0,''),(83,0,'Bajos','Bajos','','com_contact_details','left','<br />\r\n',1,0,'0000-00-00 00:00:00',NULL,4,1,0,''),(84,0,'Contraaltos','Contraaltos','','com_contact_details','left','<br />\r\n',1,0,'0000-00-00 00:00:00',NULL,3,1,0,''),(95,0,'Página principal privada','Página principal privada','','9','left','<br />\r\n',1,0,'0000-00-00 00:00:00',NULL,1,1,0,''),(96,0,'Director','Director','','com_contact_details','left','<br />\r\n',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''),(97,0,'Concierto','Concierto','','com_events','left','',1,0,'0000-00-00 00:00:00',NULL,1,1,-71,''),(100,0,'Varios','varios','','com_obrens','left','',1,0,'0000-00-00 00:00:00',NULL,19,1,0,''),(99,0,'Año 2003','Año 2003','','10','left','<br />\r\n',1,0,'0000-00-00 00:00:00',NULL,10,0,0,''),(102,0,'Año 2005','Año 2005','','10','left','\r\n<br />\r\n',1,0,'0000-00-00 00:00:00',NULL,9,0,0,''),(103,0,'Lugar de ensayo','Lugar de ensayo','','com_contact_details','left','\r\n<br />\r\n',1,0,'0000-00-00 00:00:00',NULL,1,1,0,''),(104,0,'Misa','Misa','','com_events','left','',1,0,'0000-00-00 00:00:00',NULL,3,0,-40,''),(105,0,'Ensayo','Ensayo','','com_events','left','',1,0,'0000-00-00 00:00:00',NULL,2,0,-19,''),(106,0,'Ingresos','Ingresos','','com_tesoreria','left','Ingresos',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(107,0,'Gastos','Gastos','','com_tesoreria','left','Gastos',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(113,0,'Grabaciones','Grabaciones','','11','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(109,0,'Música de navidad','navidad','','com_obrens','left','',1,0,'0000-00-00 00:00:00',NULL,18,1,0,''),(110,0,'Música Sacra S.XVI','Música Sacra S.XVI','','com_obrens','left','<br />\r\n',1,0,'0000-00-00 00:00:00',NULL,11,1,0,''),(111,0,'Espirituales negros y gospel','espirituales','','com_obrens','left','',1,0,'0000-00-00 00:00:00',NULL,16,1,0,''),(112,0,'Música popular','popular','','com_obrens','left','',1,0,'0000-00-00 00:00:00',NULL,17,1,0,''),(115,0,'Villancicos del S. XVI','Villancicos del S. XVI','','com_obrens','left','',1,0,'0000-00-00 00:00:00',NULL,5,1,0,''),(116,0,'Villancicos Populares Españoles','Villancicos Populares Españoles','','com_obrens','left','',1,0,'0000-00-00 00:00:00',NULL,6,1,0,''),(117,0,'Villancicos Universales','Villancicos Universales','','com_obrens','left','',1,0,'0000-00-00 00:00:00',NULL,7,1,0,''),(118,0,'Villancicos Sudamer
|
||
|
|
/*!40000 ALTER TABLE `mos_categories` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_components`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_components`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_components` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`name` varchar(50) NOT NULL default '',
|
||
|
|
`link` varchar(255) NOT NULL default '',
|
||
|
|
`menuid` int(11) unsigned NOT NULL default '0',
|
||
|
|
`parent` int(11) unsigned NOT NULL default '0',
|
||
|
|
`admin_menu_link` varchar(255) NOT NULL default '',
|
||
|
|
`admin_menu_alt` varchar(255) NOT NULL default '',
|
||
|
|
`option` varchar(50) NOT NULL default '',
|
||
|
|
`ordering` int(11) NOT NULL default '0',
|
||
|
|
`admin_menu_img` varchar(255) NOT NULL default '',
|
||
|
|
`iscore` tinyint(4) NOT NULL default '0',
|
||
|
|
`params` text NOT NULL,
|
||
|
|
PRIMARY KEY (`id`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=133 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_components`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_components` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_components` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_components` (`id`, `name`, `link`, `menuid`, `parent`, `admin_menu_link`, `admin_menu_alt`, `option`, `ordering`, `admin_menu_img`, `iscore`, `params`) VALUES (1,'Banners','',0,0,'','Banner Management','com_banners',0,'js/ThemeOffice/component.png',0,''),(2,'Manage Banners','',0,1,'option=com_banners','Active Banners','com_banners',1,'js/ThemeOffice/edit.png',0,''),(3,'Manage Clients','',0,1,'option=com_banners&task=listclients','Manage Clients','com_banners',2,'js/ThemeOffice/categories.png',0,''),(4,'Web Links','option=com_weblinks',0,0,'','Manage Weblinks','com_weblinks',0,'js/ThemeOffice/globe2.png',0,''),(5,'Weblink Items','',0,4,'option=com_weblinks','View existing weblinks','com_weblinks',1,'js/ThemeOffice/edit.png',0,''),(6,'Weblink Categories','',0,4,'option=categories§ion=com_weblinks','Manage weblink categories','',2,'js/ThemeOffice/categories.png',0,''),(7,'Contacts','option=com_contact',0,0,'','Edit contact details','com_contact',0,'js/ThemeOffice/user.png',1,''),(8,'Manage Contacts','',0,7,'option=com_contact','Edit contact details','com_contact',0,'js/ThemeOffice/edit.png',1,''),(9,'Contact Categories','',0,7,'option=categories§ion=com_contact_details','Manage contact categories','',2,'js/ThemeOffice/categories.png',1,''),(10,'FrontPage','option=com_frontpage',0,0,'','Manage Front Page Items','com_frontpage',0,'js/ThemeOffice/component.png',1,''),(11,'Polls','option=com_poll',0,0,'option=com_poll','Manage Polls','com_poll',0,'js/ThemeOffice/component.png',0,''),(12,'News Feeds','option=com_newsfeeds',0,0,'','News Feeds Management','com_newsfeeds',0,'js/ThemeOffice/component.png',0,''),(13,'Manage News Feeds','',0,12,'option=com_newsfeeds','Manage News Feeds','com_newsfeeds',1,'js/ThemeOffice/edit.png',0,''),(14,'Manage Categories','',0,12,'option=com_categories§ion=com_newsfeeds','Manage Categories','',2,'js/ThemeOffice/categories.png',0,''),(15,'Login','option=com_login',0,0,'','','com_login',0,'',1,''),(16,'Search','option=com_search',0,0,'','','com_search',0,'',1,''),(17,'Syndicate','',0,0,'option=com_syndicate&hidemainmenu=1','Manage Syndication Settings','com_syndicate',0,'js/ThemeOffice/component.png',0,''),(18,'Mass Mail','',0,0,'option=com_massmail&hidemainmenu=1','Send Mass Mail','com_massmail',0,'js/ThemeOffice/mass_email.png',0,''),(19,'zOOm Media Gallery','option=com_zoom',0,0,'option=com_zoom','zOOm Media Gallery','com_zoom',0,'js/ThemeOffice/component.png',0,''),(20,'Community Builder','option=com_comprofiler',0,0,'option=com_comprofiler','Community Builder','com_comprofiler',0,'js/ThemeOffice/component.png',0,''),(21,'User Management','',0,20,'option=com_comprofiler&task=showusers','User Management','com_comprofiler',0,'js/ThemeOffice/users.png',0,''),(22,'Tab Management','',0,20,'option=com_comprofiler&task=showTab','Tab Management','com_comprofiler',1,'js/ThemeOffice/content.png',0,''),(23,'Field Management','',0,20,'option=com_comprofiler&task=showField','Field Management','com_comprofiler',2,'js/ThemeOffice/content.png',0,''),(24,'List Management','',0,20,'option=com_comprofiler&task=showLists','List Management','com_comprofiler',3,'js/ThemeOffice/content.png',0,''),(25,'Tools','',0,20,'option=com_comprofiler&task=tools','Tools','com_comprofiler',4,'js/ThemeOffice/component.png',0,''),(26,'Configuration','',0,20,'option=com_comprofiler&task=showconfig','Configuration','com_comprofiler',5,'js/ThemeOffice/config.png',0,''),(112,'Eventos','option=com_events',0,0,'option=com_events','Eventos','com_events',0,'../administrator/components/com_events/images/events_ico.png',0,''),(113,'Gestionar Eventos','',0,112,'option=com_events','Gestionar Eventos','com_events',0,'../administrator/components/com_events/images/events_ico.png',0,''),(114,'Gestionar Categorias','',0,112,'option=com_events&act=categories','Gestionar Categorias','com_events',1,'js/ThemeOffice/categories.png',0,''),(115,'Configuracion','',0,112,'option=com_events&act=conf','Configuracion','com_events',2,'js/ThemeOffice/config.png',0,''),(38,'Area Ensayo','option=com_obrens',0,0,'option=com_obrens','Are
|
||
|
|
/*!40000 ALTER TABLE `mos_components` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_comprofiler`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_comprofiler`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_comprofiler` (
|
||
|
|
`id` int(11) NOT NULL default '0',
|
||
|
|
`user_id` int(11) NOT NULL default '0',
|
||
|
|
`firstname` varchar(100) default NULL,
|
||
|
|
`middlename` varchar(100) default NULL,
|
||
|
|
`lastname` varchar(100) default NULL,
|
||
|
|
`hits` int(11) NOT NULL default '0',
|
||
|
|
`avatar` varchar(255) default NULL,
|
||
|
|
`avatarapproved` tinyint(4) default '1',
|
||
|
|
`approved` tinyint(4) NOT NULL default '1',
|
||
|
|
`confirmed` tinyint(4) NOT NULL default '1',
|
||
|
|
`lastupdatedate` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`banned` tinyint(4) NOT NULL default '0',
|
||
|
|
`banneddate` datetime default NULL,
|
||
|
|
`bannedby` int(11) default NULL,
|
||
|
|
`bannedreason` mediumtext,
|
||
|
|
`acceptedterms` tinyint(1) NOT NULL default '0',
|
||
|
|
`cuerda` varchar(255) default NULL,
|
||
|
|
`orden` varchar(255) default NULL,
|
||
|
|
`perfil` varchar(255) default NULL,
|
||
|
|
`telefono` varchar(255) default NULL,
|
||
|
|
`jefe` tinyint(4) default NULL,
|
||
|
|
`puestodirectivo` varchar(255) default NULL,
|
||
|
|
PRIMARY KEY (`id`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_comprofiler`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_comprofiler` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_comprofiler` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_comprofiler` (`id`, `user_id`, `firstname`, `middlename`, `lastname`, `hits`, `avatar`, `avatarapproved`, `approved`, `confirmed`, `lastupdatedate`, `banned`, `banneddate`, `bannedby`, `bannedreason`, `acceptedterms`, `cuerda`, `orden`, `perfil`, `telefono`, `jefe`, `puestodirectivo`) VALUES (62,62,'','','',6,NULL,1,1,1,'2010-04-12 10:17:33',0,NULL,NULL,NULL,0,'','','','91 785 02 47',0,NULL),(65,65,'','','',200,'65.jpg',1,1,1,'2011-03-21 12:29:09',0,NULL,NULL,NULL,0,'Bajo','011','directivo','915100875 / 676778167',0,'Presidente'),(66,66,'','','',13,'66.jpg',1,1,1,'2007-02-12 17:03:27',0,NULL,NULL,NULL,0,'Bajo','4','cantante','915763568',0,NULL),(67,67,'','','',15,'67.jpg',1,1,1,'2007-02-12 17:04:26',0,NULL,NULL,NULL,0,'Bajo','4','cantante','915737698 / 607769678',0,NULL),(68,68,'','','',65,'68.jpg',1,1,1,'2005-10-03 09:08:05',0,NULL,NULL,NULL,0,'Contralto','2','cantante','914336797 /618626902',0,NULL),(69,69,'','','',37,'69.jpg',1,1,1,'2010-09-13 10:19:42',0,NULL,NULL,NULL,0,'Contralto','2','cantante','915541195 / 655329064',0,''),(70,70,'','','',42,'70.jpg',1,1,1,'2007-07-05 21:35:29',0,NULL,NULL,NULL,0,'Contralto','2','cantante','915746756 / 659476769',0,NULL),(71,71,'','','',60,'71.jpg',1,1,1,'2007-02-19 11:47:06',0,NULL,NULL,NULL,0,'Contralto','2','tesorero','915552967 / 685173143',0,NULL),(72,72,'','','',28,'72.jpg',1,1,1,'2005-07-21 20:55:06',0,NULL,NULL,NULL,0,'Contralto','2','cantante','915737698 / 655180833',0,NULL),(73,73,'','','',84,'73.jpg',1,1,1,'2012-06-22 10:24:21',0,NULL,NULL,NULL,0,'Soprano','1','cantante','915100875 / 626717955',0,''),(74,74,'','','',6,'74.jpg',1,1,1,'2005-09-19 08:53:28',0,NULL,NULL,NULL,0,'Contralto','2','cantante','915512796 / 649856018',0,NULL),(75,75,'','','',146,'75.jpg',1,1,1,'2009-09-01 21:31:52',0,NULL,NULL,NULL,0,'Contralto','2','cantante',' 630278095',0,''),(77,77,'','','',33,'77.jpg',1,1,1,'2010-04-27 09:28:35',0,NULL,NULL,NULL,0,'Contralto','2','cantante','915769649 / 636485716',0,''),(78,78,'','','',31,'78.jpg',1,1,1,'2006-10-23 14:10:39',0,NULL,NULL,NULL,0,'Contralto','2','cantante','915516248 / 657680210',0,NULL),(79,79,'','','',35,'79.jpg',1,1,1,'2005-07-21 20:49:40',0,NULL,NULL,NULL,0,'Soprano','1','cantante','916325238',0,NULL),(80,80,'','','',103,'80.jpg',1,1,1,'2006-11-08 19:52:48',0,NULL,NULL,NULL,0,'Soprano','1','cantante','913550822 / 616737678',0,NULL),(81,81,'','','',54,'81.jpg',1,1,1,'2008-08-31 16:44:08',0,NULL,NULL,NULL,0,'Soprano','1','cantante','917114076 / 619857102',0,NULL),(82,82,'','','',24,'82.jpg',1,1,1,'2005-07-21 20:27:27',0,NULL,NULL,NULL,0,'Soprano','1','cantante','914159732 / 686357238',0,NULL),(83,83,'','','',55,'83.jpg',1,1,1,'2007-02-14 20:09:32',0,NULL,NULL,NULL,0,'Soprano','1','cantante','914677894 / 659801671',0,NULL),(84,84,'','','',20,'84.jpg',1,1,1,'2005-07-21 20:26:58',0,NULL,NULL,NULL,0,'Soprano','1','cantante','914453899 / 670430645',0,NULL),(85,85,'','','',31,'85.jpg',1,1,1,'2009-09-14 12:25:30',0,NULL,NULL,NULL,0,'Soprano','1','cantante','914090032/669216447',0,''),(86,86,'','','',76,'86.jpg',1,1,1,'2007-02-14 20:20:23',0,NULL,NULL,NULL,0,'Soprano','1','cantante','918129510 / 660322195',0,NULL),(87,87,'','','',19,'87.jpg',1,1,1,'2007-02-01 13:47:27',0,NULL,NULL,NULL,0,'Soprano','1','cantante','913154166 / 610371348',0,NULL),(88,88,'','','',47,'88.jpg',1,1,1,'2009-09-14 12:23:33',0,NULL,NULL,NULL,0,'Soprano','1','cantante','622333617',0,''),(89,89,'','','',8,'89.jpg',1,1,1,'2005-09-19 12:21:33',0,NULL,NULL,NULL,0,'Soprano','1','cantante','616296548',0,NULL),(90,90,'','','',6,'90.jpg',1,1,1,'2005-09-08 10:43:19',0,NULL,NULL,NULL,0,'Soprano','1','cantante','667729136',0,NULL),(91,91,'','','',34,'91.jpg',1,1,1,'2005-07-21 20:46:34',0,NULL,NULL,NULL,0,'Soprano','1','cantante','914507496 / 609915487',0,NULL),(92,92,'','','',27,'92.jpg',1,1,1,'2005-07-21 20:28:33',0,NULL,NULL,NULL,0,'Soprano','1','cantante','637167268',0,NULL),(93,93,'','','',40,'93.jpg',1,1,1,'2007-02-15 19:56:32',0,NULL,NULL,NULL,0,'Tenor','3','cantante','915520076 / 620210017',0,NULL),(94,94,'','','',42,'94.jpg',1,1,1,'2006-01-24 15:08:28',0,NULL,NU
|
||
|
|
/*!40000 ALTER TABLE `mos_comprofiler` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_comprofiler_field_values`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_comprofiler_field_values`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_comprofiler_field_values` (
|
||
|
|
`fieldvalueid` int(11) NOT NULL auto_increment,
|
||
|
|
`fieldid` int(11) NOT NULL default '0',
|
||
|
|
`fieldtitle` varchar(50) NOT NULL default '',
|
||
|
|
`ordering` int(11) NOT NULL default '0',
|
||
|
|
`sys` tinyint(4) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`fieldvalueid`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=41 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_comprofiler_field_values`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_comprofiler_field_values` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_comprofiler_field_values` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_comprofiler_field_values` (`fieldvalueid`, `fieldid`, `fieldtitle`, `ordering`, `sys`) VALUES (40,55,'Director',5,0),(39,55,'Contralto',4,0),(38,55,'Soprano',3,0),(37,55,'Tenor',2,0),(36,55,'Bajo',1,0);
|
||
|
|
/*!40000 ALTER TABLE `mos_comprofiler_field_values` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_comprofiler_fields`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_comprofiler_fields`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_comprofiler_fields` (
|
||
|
|
`fieldid` int(11) NOT NULL auto_increment,
|
||
|
|
`name` varchar(50) NOT NULL default '',
|
||
|
|
`table` varchar(50) NOT NULL default '#__comprofiler',
|
||
|
|
`title` varchar(50) NOT NULL default '',
|
||
|
|
`type` varchar(50) NOT NULL default '',
|
||
|
|
`maxlength` int(11) default NULL,
|
||
|
|
`size` int(11) default NULL,
|
||
|
|
`required` tinyint(4) default '0',
|
||
|
|
`tabid` tinyint(4) default NULL,
|
||
|
|
`ordering` int(11) default NULL,
|
||
|
|
`cols` int(11) default NULL,
|
||
|
|
`rows` int(11) default NULL,
|
||
|
|
`value` varchar(50) default NULL,
|
||
|
|
`default` int(11) default NULL,
|
||
|
|
`published` tinyint(1) NOT NULL default '1',
|
||
|
|
`registration` tinyint(1) NOT NULL default '0',
|
||
|
|
`profile` tinyint(1) NOT NULL default '1',
|
||
|
|
`readonly` tinyint(1) NOT NULL default '0',
|
||
|
|
`calculated` tinyint(1) NOT NULL default '0',
|
||
|
|
`sys` tinyint(4) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`fieldid`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=64 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_comprofiler_fields`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_comprofiler_fields` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_comprofiler_fields` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_comprofiler_fields` (`fieldid`, `name`, `table`, `title`, `type`, `maxlength`, `size`, `required`, `tabid`, `ordering`, `cols`, `rows`, `value`, `default`, `published`, `registration`, `profile`, `readonly`, `calculated`, `sys`) VALUES (41,'name','#__users','_UE_NAME','predefined',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,0,1,1),(26,'NA','#__comprofiler','_UE_ONLINESTATUS','status',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,0,1,1),(27,'lastvisitDate','#__comprofiler','_UE_LASTONLINE','date',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,0,1,1),(28,'registerDate','#__comprofiler','_UE_MEMBERSINCE','date',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,0,1,1),(29,'avatar','#__comprofiler','_UE_IMAGE','image',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,0,1,1),(42,'username','#__users','_UE_UNAME','predefined',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,0,1,1),(45,'NA','#__comprofiler','_UE_FORMATNAME','formatname',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,0,1,1),(46,'firstname','#__comprofiler','_UE_YOUR_FNAME','predefined',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,0,1,1),(47,'middlename','#__comprofiler','_UE_YOUR_MNAME','predefined',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,0,1,1),(48,'lastname','#__comprofiler','_UE_YOUR_LNAME','predefined',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,0,1,1),(49,'lastupdatedate','#__comprofiler','_UE_LASTUPDATEDON','date',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,0,1,1),(60,'telefono','#__comprofiler','Teléfono','text',25,25,0,2,1,0,0,NULL,NULL,1,0,1,0,0,0),(55,'cuerda','#__comprofiler','Cuerda','select',0,0,0,2,2,0,0,NULL,NULL,1,0,1,1,0,0),(61,'jefe','#__comprofiler','Jefe de cuerda','checkbox',0,0,0,2,3,0,0,NULL,NULL,1,0,1,1,0,0),(58,'orden','#__comprofiler','Orden','text',5,5,0,2,4,0,0,NULL,NULL,1,0,0,1,0,0),(59,'perfil','#__comprofiler','Perfil','text',10,10,0,2,5,0,0,NULL,NULL,1,0,0,1,0,0),(63,'puestodirectivo','#__comprofiler','Puesto','text',25,25,0,2,6,0,0,NULL,NULL,1,0,1,0,0,0);
|
||
|
|
/*!40000 ALTER TABLE `mos_comprofiler_fields` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_comprofiler_lists`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_comprofiler_lists`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_comprofiler_lists` (
|
||
|
|
`listid` int(11) NOT NULL auto_increment,
|
||
|
|
`title` varchar(255) NOT NULL default '',
|
||
|
|
`description` mediumtext,
|
||
|
|
`published` tinyint(1) NOT NULL default '0',
|
||
|
|
`default` tinyint(1) NOT NULL default '0',
|
||
|
|
`usergroupids` varchar(255) default NULL,
|
||
|
|
`sortfields` varchar(255) default NULL,
|
||
|
|
`ordering` int(11) NOT NULL default '0',
|
||
|
|
`col1title` varchar(255) default NULL,
|
||
|
|
`col1enabled` tinyint(1) NOT NULL default '0',
|
||
|
|
`col1fields` mediumtext,
|
||
|
|
`col2title` varchar(255) default NULL,
|
||
|
|
`col2enabled` tinyint(1) NOT NULL default '0',
|
||
|
|
`col1captions` tinyint(1) NOT NULL default '0',
|
||
|
|
`col2fields` mediumtext,
|
||
|
|
`col2captions` tinyint(1) NOT NULL default '0',
|
||
|
|
`col3title` varchar(255) default NULL,
|
||
|
|
`col3enabled` tinyint(1) NOT NULL default '0',
|
||
|
|
`col3fields` mediumtext,
|
||
|
|
`col3captions` tinyint(1) NOT NULL default '0',
|
||
|
|
`col4title` varchar(255) default NULL,
|
||
|
|
`col4enabled` tinyint(1) NOT NULL default '0',
|
||
|
|
`col4fields` mediumtext,
|
||
|
|
`col4captions` tinyint(1) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`listid`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_comprofiler_lists`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_comprofiler_lists` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_comprofiler_lists` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_comprofiler_lists` (`listid`, `title`, `description`, `published`, `default`, `usergroupids`, `sortfields`, `ordering`, `col1title`, `col1enabled`, `col1fields`, `col2title`, `col2enabled`, `col1captions`, `col2fields`, `col2captions`, `col3title`, `col3enabled`, `col3fields`, `col3captions`, `col4title`, `col4enabled`, `col4fields`, `col4captions`) VALUES (6,'Todos los miembros del coro','Lista de todos los miembros del coro',1,1,'18, 19, 20, 21','`orden` ASC, `jefe` DESC, `name` ASC, `puestodirectivo` ASC',0,'Foto',1,'29','Datos personales',1,0,'45|*|60',0,'Cuerda',1,'55|*|63',0,'Jefe de cuerda',1,'61',0);
|
||
|
|
/*!40000 ALTER TABLE `mos_comprofiler_lists` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_comprofiler_tabs`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_comprofiler_tabs`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_comprofiler_tabs` (
|
||
|
|
`tabid` int(11) NOT NULL auto_increment,
|
||
|
|
`title` varchar(50) NOT NULL default '',
|
||
|
|
`description` text,
|
||
|
|
`ordering` int(11) NOT NULL default '0',
|
||
|
|
`width` varchar(10) NOT NULL default '.5',
|
||
|
|
`enabled` tinyint(1) NOT NULL default '1',
|
||
|
|
`plugin` varchar(255) default NULL,
|
||
|
|
`sys` tinyint(4) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`tabid`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_comprofiler_tabs`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_comprofiler_tabs` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_comprofiler_tabs` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_comprofiler_tabs` (`tabid`, `title`, `description`, `ordering`, `width`, `enabled`, `plugin`, `sys`) VALUES (2,'Información adicional','',1,'.5',1,NULL,0);
|
||
|
|
/*!40000 ALTER TABLE `mos_comprofiler_tabs` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_comprofiler_userreports`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_comprofiler_userreports`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_comprofiler_userreports` (
|
||
|
|
`reportid` int(11) NOT NULL auto_increment,
|
||
|
|
`reporteduser` int(11) NOT NULL default '0',
|
||
|
|
`reportedbyuser` int(11) NOT NULL default '0',
|
||
|
|
`reportedondate` date NOT NULL default '0000-00-00',
|
||
|
|
`reportexplaination` text NOT NULL,
|
||
|
|
`reportedstatus` tinyint(4) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`reportid`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_comprofiler_userreports`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_comprofiler_userreports` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_comprofiler_userreports` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_comprofiler_userreports` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_contact_details`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_contact_details`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_contact_details` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`name` varchar(100) NOT NULL default '',
|
||
|
|
`con_position` varchar(50) default NULL,
|
||
|
|
`address` text,
|
||
|
|
`suburb` varchar(50) default NULL,
|
||
|
|
`state` varchar(20) default NULL,
|
||
|
|
`country` varchar(50) default NULL,
|
||
|
|
`postcode` varchar(10) default NULL,
|
||
|
|
`telephone` varchar(25) default NULL,
|
||
|
|
`fax` varchar(25) default NULL,
|
||
|
|
`misc` mediumtext,
|
||
|
|
`image` varchar(100) default NULL,
|
||
|
|
`imagepos` varchar(20) default NULL,
|
||
|
|
`email_to` varchar(100) default NULL,
|
||
|
|
`default_con` tinyint(1) unsigned NOT NULL default '0',
|
||
|
|
`published` tinyint(1) unsigned NOT NULL default '0',
|
||
|
|
`checked_out` int(11) unsigned NOT NULL default '0',
|
||
|
|
`checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`ordering` int(11) NOT NULL default '0',
|
||
|
|
`params` text NOT NULL,
|
||
|
|
`user_id` int(11) NOT NULL default '0',
|
||
|
|
`catid` int(11) NOT NULL default '0',
|
||
|
|
`access` tinyint(3) unsigned NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`id`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_contact_details`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_contact_details` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_contact_details` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_contact_details` (`id`, `name`, `con_position`, `address`, `suburb`, `state`, `country`, `postcode`, `telephone`, `fax`, `misc`, `image`, `imagepos`, `email_to`, `default_con`, `published`, `checked_out`, `checked_out_time`, `ordering`, `params`, `user_id`, `catid`, `access`) VALUES (2,'Blas Santamaría Domínguez','Presidente','','','','','','676 77 81 67','','','',NULL,'blasstm@yahoo.com',0,1,0,'0000-00-00 00:00:00',3,'menu_image=-1\npageclass_sfx=-contact\nprint=\nback_button=\nname=1\nposition=1\nemail=1\nstreet_address=1\nsuburb=1\nstate=1\ncountry=0\npostcode=1\ntelephone=1\nfax=0\nmisc=1\nimage=1\nvcard=0\nemail_description=1\nemail_description_text=\nemail_form=0\nemail_copy=0\ndrop_down=0\ncontact_icons=0\nicon_address=\nicon_email=\nicon_telephone=\nicon_fax=\nicon_misc=',65,101,0),(1,'Javier Blanco Rubio','Director','Plaza Mariano de Cavia, 2','Madrid, 28007','91 433 03 03','','','696 34 28 73','','','logomushi.gif',NULL,'jbrcoro@hotmail.com',0,1,0,'0000-00-00 00:00:00',1,'menu_image=-1\npageclass_sfx=-contact\nprint=\nback_button=\nname=1\nposition=1\nemail=1\nstreet_address=1\nsuburb=1\nstate=1\ncountry=0\npostcode=0\ntelephone=1\nfax=1\nmisc=1\nimage=1\nvcard=0\nemail_description=1\nemail_description_text=\nemail_form=0\nemail_copy=0\ndrop_down=0\ncontact_icons=1\nicon_address=\nicon_email=\nicon_telephone=\nicon_fax=\nicon_misc=',100,96,0),(3,'Isabel Santos','Imagen y Protocolo','','','','','','646 04 37 88','','','',NULL,'i.santos@ufv.es',0,0,0,'0000-00-00 00:00:00',4,'menu_image=-1\npageclass_sfx=\nprint=\nback_button=\nname=1\nposition=1\nemail=1\nstreet_address=0\nsuburb=0\nstate=0\ncountry=0\npostcode=0\ntelephone=1\nfax=0\nmisc=0\nimage=0\nemail_description=0\nemail_description_text=\nemail_form=0\nemail_copy=0\ndrop_down=0\ncontact_icons=0\nicon_address=\nicon_email=\nicon_telephone=\nicon_fax=\nicon_misc=',97,84,0),(4,'Academia de Música y Danza Mushi','','Plaza Mariano de Cavia, 2','Madrid','','','28007','91 433 03 03','','<strong>Horario:</strong><br/> Domingos de 18:00h a 21:30h<br/>\r\n<strong>Metro:</strong><br/>\r\n Línea 1 - Menéndez Pelayo<br/>\r\n Línea 6 - Conde de Casal<br/>\r\n<strong>Autobuses:</strong><br/>\r\n C, 10, 14, 26, 32, 63','logomushi.gif',NULL,'',0,1,0,'0000-00-00 00:00:00',2,'menu_image=-1\npageclass_sfx=\nprint=\nback_button=\nname=1\nposition=1\nemail=0\nstreet_address=1\nsuburb=1\nstate=1\ncountry=1\npostcode=1\ntelephone=1\nfax=1\nmisc=1\nimage=1\nemail_description=1\nemail_description_text=\nemail_form=1\nemail_copy=1\ndrop_down=0\ncontact_icons=1\nicon_address=\nicon_email=\nicon_telephone=\nicon_fax=\nicon_misc=',0,103,1);
|
||
|
|
/*!40000 ALTER TABLE `mos_contact_details` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_content`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_content`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_content` (
|
||
|
|
`id` int(11) unsigned NOT NULL auto_increment,
|
||
|
|
`title` varchar(100) NOT NULL,
|
||
|
|
`title_alias` varchar(100) NOT NULL default '',
|
||
|
|
`introtext` mediumtext NOT NULL,
|
||
|
|
`fulltext` mediumtext NOT NULL,
|
||
|
|
`state` tinyint(3) NOT NULL default '0',
|
||
|
|
`sectionid` int(11) unsigned NOT NULL default '0',
|
||
|
|
`mask` int(11) unsigned NOT NULL default '0',
|
||
|
|
`catid` int(11) unsigned NOT NULL default '0',
|
||
|
|
`created` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`created_by` int(11) unsigned NOT NULL default '0',
|
||
|
|
`created_by_alias` varchar(100) NOT NULL default '',
|
||
|
|
`modified` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`modified_by` int(11) unsigned NOT NULL default '0',
|
||
|
|
`checked_out` int(11) unsigned NOT NULL default '0',
|
||
|
|
`checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`publish_up` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`publish_down` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`images` text NOT NULL,
|
||
|
|
`urls` text NOT NULL,
|
||
|
|
`attribs` text NOT NULL,
|
||
|
|
`version` int(11) unsigned NOT NULL default '1',
|
||
|
|
`parentid` int(11) unsigned NOT NULL default '0',
|
||
|
|
`ordering` int(11) NOT NULL default '0',
|
||
|
|
`metakey` text NOT NULL,
|
||
|
|
`metadesc` text NOT NULL,
|
||
|
|
`access` int(11) unsigned NOT NULL default '0',
|
||
|
|
`hits` int(11) unsigned NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
KEY `idx_section` (`sectionid`),
|
||
|
|
KEY `idx_access` (`access`),
|
||
|
|
KEY `idx_checkout` (`checked_out`),
|
||
|
|
KEY `idx_state` (`state`),
|
||
|
|
KEY `idx_catid` (`catid`),
|
||
|
|
KEY `idx_mask` (`mask`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=835 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_content`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_content` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_content` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_content` (`id`, `title`, `title_alias`, `introtext`, `fulltext`, `state`, `sectionid`, `mask`, `catid`, `created`, `created_by`, `created_by_alias`, `modified`, `modified_by`, `checked_out`, `checked_out_time`, `publish_up`, `publish_down`, `images`, `urls`, `attribs`, `version`, `parentid`, `ordering`, `metakey`, `metadesc`, `access`, `hits`) VALUES (12,'Coro Matritum Cantat','Coro Matritum Cantat','<p style=\"text-align: justify\">\r\nEl Coro “Matritum Cantat” está formado por 70 voces mixtas. Bajo la Dirección de Javier Blanco, ha recorrido gran parte de la geografía española, actuando en marcos de gran tradición musical, las más antiguas Iglesias de Madrid, auditorios como el Auditorio Nacional, Monumental, Palacio de Festivales de Santander y distintas Universidades españolas. \r\n</p>\r\n<p>\r\nTambién ha colaborado con orquestas de gran prestigio como La Sinfónica de Madrid, Sinfónica Neotonarte, O. S. Rey Juan Carlos I, Orquesta Matritum Cantat y Orquesta Ars Futura.\r\n</p>\r\n<br />\r\n<p>\r\n{mosimage}\r\n</p>\r\n','<p>\r\n \r\n</p>\r\n<p style=\"text-align: justify\">\r\nPor parte de las autoridades eclesiásticas de la Real Iglesia de San Ginés de Madrid, ha sido elegido como la agrupación coral que reviste de solemnidad musical los actos religiosos que se llevan a cabo en esta iglesia.\r\n</p>\r\n<p style=\"text-align: justify\">\r\nEl Coro “Matritum” participa en distintos ciclos de música coral organizados por la Federación Coral de Madrid, La Comunidad de Madrid y el Ayuntamiento de Madrid.\r\n</p>\r\n<p style=\"text-align: justify\">\r\nEl coro Matritum Cantat, ha participado en distintos festivales, como la Semana Internacional de Música Religiosa de Cuenca, el Festival Internacional de Santander y el Festival de Arte Sacro de la Comunidad de Madrid junto con La Orquesta Sinfónica de Madrid. También actúa de forma periódica en los ciclos de la Red de Teatros de la Comunidad de Madrid. El coro Matritum Cantat ha participado en distintos Concursos Nacionales, obteniendo premios en los concursos de Infiesto (Asturias), Cocentaina (Alicante), Villalkor (Madrid), etc.\r\n</p>\r\n<p style=\"text-align: justify\">\r\nEn el terreno internacional, ha ofrecido una serie de conciertos en Portugal, y ha participado en el Primer Festival Internacional de Coros de la ciudad de Córdoba (Argentina), realizando una gira por las ciudades de Buenos Aires, Santa Fé, Iguazú, Rosario y Misiones.\r\n</p>\r\n<p style=\"text-align: justify\">\r\nMatritum Cantat ha grabado un CD de Música Navideña con la Editorial San Pablo en el que se refleja un recorrido histórico e intercultural de esta Música. Con motivo de la conmemoración del Bicentenario del 2 de Mayo, la Comunidad de Madrid junto con el Gobierno de Aragón, edita un doble CD con la grabación en directo del concierto celebrado el día 5 de Marzo de 2008 en la Colegiata de San Isidro de Madrid, donde Matritum Cantat interpretó, junto con la Orquesta Sinfónica de Madrid, el Oficio y Misa de Difuntos de M. R. de Ledesma.\r\n</p>\r\n<p style=\"text-align: justify\">\r\nPosteriormente interpreta con la misma Orquesta las Lamentaciones de M. R. de Ledesma. Cabe destacar la elección del coro por parte de la O. Sinfónica de Madrid, la Comunidad de Madrid, y el Maestro D. Luís Izquierdo, para la interpretación del Miserere de H. Eslava, en el concierto homenaje a este director con motivo de su despedida en el campo de la dirección\r\n</p>\r\n<p style=\"text-align: justify\">\r\nEn su colaboración con distintos compositores actuales, ha estrenado obras sinfónicas y corales de Pedro Villaroig, José Antonio Galindo y Eddie Mora, entre otros.\r\n</p>\r\n<p style=\"text-align: justify\">\r\nDesde el año 2009, Matritum Cantat cuenta con su propia orque
|
||
|
|
INSERT INTO `mos_content` (`id`, `title`, `title_alias`, `introtext`, `fulltext`, `state`, `sectionid`, `mask`, `catid`, `created`, `created_by`, `created_by_alias`, `modified`, `modified_by`, `checked_out`, `checked_out_time`, `publish_up`, `publish_down`, `images`, `urls`, `attribs`, `version`, `parentid`, `ordering`, `metakey`, `metadesc`, `access`, `hits`) VALUES (730,'PRÓXIMOS CONCIERTOS','Próximos conciertos','<div align=\"center\">\r\n{mosimage}\r\n</div>\r\n<div align=\"center\">\r\nCoro Matritum Cantat \r\n</div>\r\n<div align=\"center\">\r\n \r\n</div>\r\n<div align=\"center\">\r\n{mosimage}\r\n</div>\r\n<div align=\"center\">\r\nOrquesta Matritum Cantat <br />\r\n</div>\r\n<div align=\"center\">\r\n \r\n</div>\r\n<div align=\"center\">\r\n{mosimage}\r\n</div>\r\n<div align=\"center\">\r\nCoro y Orquesta Matritum Cantat <br />\r\n</div>\r\n<div align=\"center\">\r\n \r\n</div>\r\n<p align=\"center\">\r\n<b>PRÓXIMOS CONCIERTOS Matritum Cantat <br />\r\n(Ciclo de Gospel Red de teatros de la Comunidad de Madrid)</b>\r\n</p>\r\n<ul>\r\n <li><b>Día 14 de Enero</b>Auditorio de las Rozas, a las 20:00h.</li>\r\n <li><b>Día 25 de Febrero</b>Auditorio de Villaviciosa de Odón, a las 20:00h.</li>\r\n <li><b>Día 12 de Mayo</b>Auditorio de Collado Mediano, a las 19:30h.</li>\r\n</ul>\r\n<div align=\"center\">\r\n \r\n</div>\r\n<div align=\"center\">\r\n{mosimage}\r\n</div>\r\n','',0,10,0,396,'2011-12-09 10:28:43',62,'','2012-01-18 09:58:59',62,0,'0000-00-00 00:00:00','2011-12-09 10:24:10','0000-00-00 00:00:00','fotos/coro_matritum.jpg\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r
|
||
|
|
/*!40000 ALTER TABLE `mos_content` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_content_frontpage`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_content_frontpage`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_content_frontpage` (
|
||
|
|
`content_id` int(11) NOT NULL default '0',
|
||
|
|
`ordering` int(11) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`content_id`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_content_frontpage`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_content_frontpage` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_content_frontpage` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_content_frontpage` (`content_id`, `ordering`) VALUES (359,3),(829,2),(780,1);
|
||
|
|
/*!40000 ALTER TABLE `mos_content_frontpage` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_content_rating`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_content_rating`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_content_rating` (
|
||
|
|
`content_id` int(11) NOT NULL default '0',
|
||
|
|
`rating_sum` int(11) unsigned NOT NULL default '0',
|
||
|
|
`rating_count` int(11) unsigned NOT NULL default '0',
|
||
|
|
`lastip` varchar(50) NOT NULL default '',
|
||
|
|
PRIMARY KEY (`content_id`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_content_rating`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_content_rating` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_content_rating` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_content_rating` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_core_acl_aro`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_core_acl_aro`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_core_acl_aro` (
|
||
|
|
`aro_id` int(11) NOT NULL auto_increment,
|
||
|
|
`section_value` varchar(240) NOT NULL default '0',
|
||
|
|
`value` varchar(240) NOT NULL default '',
|
||
|
|
`order_value` int(11) NOT NULL default '0',
|
||
|
|
`name` varchar(255) NOT NULL default '',
|
||
|
|
`hidden` int(11) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`aro_id`),
|
||
|
|
UNIQUE KEY `section_value_value_aro` (`section_value`,`value`),
|
||
|
|
UNIQUE KEY `mos_gacl_section_value_value_aro` (`section_value`,`value`),
|
||
|
|
KEY `hidden_aro` (`hidden`),
|
||
|
|
KEY `mos_gacl_hidden_aro` (`hidden`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=166 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_core_acl_aro`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_core_acl_aro` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_core_acl_aro` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_core_acl_aro` (`aro_id`, `section_value`, `value`, `order_value`, `name`, `hidden`) VALUES (10,'users','62',0,'Webmaster Matritum Cantat',0),(13,'users','65',0,'Blas Santamaría Domínguez',0),(14,'users','66',0,'Mariano Escolano López-Montenegro',0),(15,'users','67',0,'Miguel Osorio García de Oteyza',0),(16,'users','68',0,'Adriana Neagu',0),(17,'users','69',0,'Amparo Sánchez Marcos',0),(18,'users','70',0,'Angeles Azpeitia Piñeiro',0),(19,'users','71',0,'Mª del Carmen Cordero Arjona',0),(20,'users','72',0,'Carmen Romero de Ávila Arias',0),(21,'users','73',0,'Carmen Vadillo Gimeno',0),(22,'users','74',0,'Catalina Calvo de Mora Brito',0),(23,'users','75',0,'Helena Torrente Sierra',0),(24,'users','76',0,'Judith Herbes',0),(25,'users','77',0,'Lourdes Rubio González',0),(26,'users','78',0,'Pilar Arconada Rodríguez',0),(27,'users','79',0,'Ana María Sánchez Cabezudo',0),(28,'users','80',0,'Ana Torralbo Estrada',0),(29,'users','81',0,'Carmen Aroca Galera',0),(30,'users','82',0,'Concha Calderón Ortega',0),(31,'users','83',0,'Erika Kuntscher',0),(32,'users','84',0,'Fanny Fruhbeck Moreno',0),(33,'users','85',0,'Mª José Sánchez Fernández',0),(34,'users','86',0,'Mª Carmen Alvarez Moro',0),(152,'users','204',0,'María Mercedes Calderón',0),(36,'users','88',0,'Noelia Francés Alvarez',0),(37,'users','89',0,'Olga Muñoz Aguilar',0),(38,'users','90',0,'Maria Paloma Fiz Pérez',0),(39,'users','91',0,'Piedad Lucas Pareja',0),(40,'users','92',0,'Sabine Pape',0),(41,'users','93',0,'Francisco Jiménez Alonso',0),(42,'users','94',0,'David de la Gala Carrero',0),(43,'users','95',0,'Jesús Lacuey Urio',0),(44,'users','96',0,'prueba',0),(45,'users','97',0,'Isabel Santos',0),(46,'users','98',0,'Rubén Risco López',0),(47,'users','99',0,'José Garrido Moreno',0),(48,'users','100',0,'Javier Blanco Rubio',0),(49,'users','101',0,'david',0),(50,'users','102',0,'david',0),(51,'users','103',0,'Paloma Torrente',0),(52,'users','104',0,'Miguel Antonio Ortega de la Fuente',0),(53,'users','105',0,'Amelia Peña Martín',0),(54,'users','106',0,'Ana Maria Hinojosa Martín',0),(55,'users','107',0,'Antonio Gómez Sánchez',0),(56,'users','108',0,'Carolina Rodríguez Ranera',0),(57,'users','109',0,'Mª Dolores Lorente Álvarez',0),(58,'users','110',0,'Mercedes Bazaga Guijo',0),(59,'users','111',0,'Marcos Fraile Durán',0),(60,'users','112',0,'Gonzalo Ortega García',0),(61,'users','113',0,'Javier Carazo Rivera',0),(62,'users','114',0,'Rosa Maria Moreno Moreno',0),(63,'users','115',0,'Paloma Girona Hernández',0),(64,'users','116',0,'Carlos Sánchez García',0),(65,'users','117',0,'Jesús Torcal Sanz',0),(66,'users','118',0,'Agustín Sánchez-Vizcaíno Valdés',0),(67,'users','119',0,'Marta Martinez Lorente',0),(68,'users','120',0,'Teresa de Cruz Gómez',0),(69,'users','121',0,'Mª Ángeles Linares Cinares',0),(70,'users','122',0,'Miriam Sanchez García',0),(71,'users','123',0,'Lurdes Martínez Lorente',0),(72,'users','124',0,'Begoña Astrain Ontañón',0),(73,'users','125',0,'Francisco José Huete Arroyo',0),(74,'users','126',0,'Maria del Carmen Cano Burgos',0),(75,'users','127',0,'Jesús Torcal Sanz',0),(76,'users','128',0,'Vicente Zamorano Iturralde',0),(77,'users','129',0,'Agustin Sanchez-Vizcaino Valdes',0),(78,'users','130',0,'Julio Albores Lopez',0),(79,'users','131',0,'Carlos Sánchez García',0),(80,'users','132',0,'Juan Manuel López-Alcorocho Sánchez',0),(81,'users','133',0,'Agustín Sánchez-Vizcaíno Valdés',0),(82,'users','134',0,'Luis María Reyero De Asteinza',0),(83,'users','135',0,'Ernesto Vaquero Martinez',0),(84,'users','136',0,'Celia Valentin Rodriguez',0),(85,'users','137',0,'María Tarín Martín',0),(86,'users','138',0,'Merche Garcia Topas',0),(87,'users','139',0,'Juan Alberto Gutierrez Romero',0),(88,'users','140',0,'Carlos García Torres',0),(89,'users','141',0,'Clara Beltrán Sánchez',0),(90,'users','142',0,'Gonzalo Garcia Pulpeiro',0),(91,'users','143',0,'Mª Ascensión García Sánchez de Pedro',0),(92,'users','144',0,'Mª del Carmen Badillo Hernando',0),(93,'users','145',0,'Jose Manuel Chantres Lom
|
||
|
|
/*!40000 ALTER TABLE `mos_core_acl_aro` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_core_acl_aro_groups`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_core_acl_aro_groups`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_core_acl_aro_groups` (
|
||
|
|
`group_id` int(11) NOT NULL auto_increment,
|
||
|
|
`parent_id` int(11) NOT NULL default '0',
|
||
|
|
`name` varchar(255) NOT NULL default '',
|
||
|
|
`lft` int(11) NOT NULL default '0',
|
||
|
|
`rgt` int(11) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`group_id`),
|
||
|
|
KEY `parent_id_aro_groups` (`parent_id`),
|
||
|
|
KEY `mos_gacl_parent_id_aro_groups` (`parent_id`),
|
||
|
|
KEY `mos_gacl_lft_rgt_aro_groups` (`lft`,`rgt`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_core_acl_aro_groups`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_core_acl_aro_groups` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_core_acl_aro_groups` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_core_acl_aro_groups` (`group_id`, `parent_id`, `name`, `lft`, `rgt`) VALUES (17,0,'ROOT',1,22),(28,17,'USERS',2,21),(29,28,'Public Frontend',3,12),(18,29,'Registered',4,11),(19,18,'Author',5,10),(20,19,'Editor',6,9),(21,20,'Publisher',7,8),(30,28,'Public Backend',13,20),(23,30,'Manager',14,19),(24,23,'Administrator',15,18),(25,24,'Super Administrator',16,17);
|
||
|
|
/*!40000 ALTER TABLE `mos_core_acl_aro_groups` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_core_acl_aro_sections`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_core_acl_aro_sections`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_core_acl_aro_sections` (
|
||
|
|
`section_id` int(11) NOT NULL auto_increment,
|
||
|
|
`value` varchar(230) NOT NULL default '',
|
||
|
|
`order_value` int(11) NOT NULL default '0',
|
||
|
|
`name` varchar(230) NOT NULL default '',
|
||
|
|
`hidden` int(11) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`section_id`),
|
||
|
|
UNIQUE KEY `value_aro_sections` (`value`),
|
||
|
|
UNIQUE KEY `mos_gacl_value_aro_sections` (`value`),
|
||
|
|
KEY `hidden_aro_sections` (`hidden`),
|
||
|
|
KEY `mos_gacl_hidden_aro_sections` (`hidden`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_core_acl_aro_sections`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_core_acl_aro_sections` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_core_acl_aro_sections` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_core_acl_aro_sections` (`section_id`, `value`, `order_value`, `name`, `hidden`) VALUES (10,'users',1,'Users',0);
|
||
|
|
/*!40000 ALTER TABLE `mos_core_acl_aro_sections` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_core_acl_groups_aro_map`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_core_acl_groups_aro_map`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_core_acl_groups_aro_map` (
|
||
|
|
`group_id` int(11) NOT NULL default '0',
|
||
|
|
`section_value` varchar(240) NOT NULL default '',
|
||
|
|
`aro_id` int(11) NOT NULL default '0',
|
||
|
|
UNIQUE KEY `group_id_aro_id_groups_aro_map` (`group_id`,`section_value`,`aro_id`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_core_acl_groups_aro_map`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_core_acl_groups_aro_map` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_core_acl_groups_aro_map` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_core_acl_groups_aro_map` (`group_id`, `section_value`, `aro_id`) VALUES (18,'',14),(18,'',15),(18,'',16),(18,'',17),(18,'',18),(18,'',19),(18,'',20),(18,'',21),(18,'',22),(18,'',23),(18,'',24),(18,'',25),(18,'',26),(18,'',27),(18,'',28),(18,'',29),(18,'',30),(18,'',31),(18,'',32),(18,'',33),(18,'',34),(18,'',36),(18,'',37),(18,'',38),(18,'',39),(18,'',40),(18,'',41),(18,'',42),(18,'',43),(18,'',44),(18,'',45),(18,'',46),(18,'',47),(18,'',49),(18,'',50),(18,'',51),(18,'',52),(18,'',53),(18,'',54),(18,'',55),(18,'',56),(18,'',57),(18,'',58),(18,'',59),(18,'',60),(18,'',61),(18,'',62),(18,'',63),(18,'',67),(18,'',68),(18,'',69),(18,'',70),(18,'',71),(18,'',72),(18,'',73),(18,'',74),(18,'',75),(18,'',76),(18,'',77),(18,'',78),(18,'',79),(18,'',80),(18,'',81),(18,'',82),(18,'',83),(18,'',84),(18,'',85),(18,'',86),(18,'',87),(18,'',88),(18,'',89),(18,'',90),(18,'',91),(18,'',92),(18,'',93),(18,'',94),(18,'',95),(18,'',96),(18,'',97),(18,'',98),(18,'',99),(18,'',100),(18,'',101),(18,'',102),(18,'',103),(18,'',104),(18,'',105),(18,'',106),(18,'',107),(18,'',108),(18,'',109),(18,'',110),(18,'',111),(18,'',112),(18,'',113),(18,'',114),(18,'',115),(18,'',116),(18,'',117),(18,'',118),(18,'',119),(18,'',120),(18,'',121),(18,'',122),(18,'',123),(18,'',124),(18,'',125),(18,'',126),(18,'',127),(18,'',128),(18,'',129),(18,'',130),(18,'',131),(18,'',132),(18,'',133),(18,'',134),(18,'',135),(18,'',136),(18,'',137),(18,'',138),(18,'',139),(18,'',140),(18,'',141),(18,'',142),(18,'',143),(18,'',144),(18,'',145),(18,'',146),(18,'',147),(18,'',148),(18,'',149),(18,'',150),(18,'',152),(18,'',153),(18,'',154),(18,'',155),(18,'',156),(18,'',157),(18,'',158),(18,'',159),(18,'',160),(18,'',161),(18,'',162),(18,'',163),(18,'',164),(18,'',165),(21,'',13),(21,'',48),(25,'',10);
|
||
|
|
/*!40000 ALTER TABLE `mos_core_acl_groups_aro_map` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_core_log_items`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_core_log_items`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_core_log_items` (
|
||
|
|
`time_stamp` date NOT NULL default '0000-00-00',
|
||
|
|
`item_table` varchar(50) NOT NULL default '',
|
||
|
|
`item_id` int(11) unsigned NOT NULL default '0',
|
||
|
|
`hits` int(11) unsigned NOT NULL default '0'
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_core_log_items`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_core_log_items` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_core_log_items` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_core_log_items` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_core_log_searches`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_core_log_searches`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_core_log_searches` (
|
||
|
|
`search_term` varchar(128) NOT NULL default '',
|
||
|
|
`hits` int(11) unsigned NOT NULL default '0'
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_core_log_searches`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_core_log_searches` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_core_log_searches` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_core_log_searches` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_cuotas`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_cuotas`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_cuotas` (
|
||
|
|
`id` int(11) unsigned NOT NULL default '0',
|
||
|
|
`ano` varchar(4) NOT NULL default '2005',
|
||
|
|
`mes` tinyint(2) NOT NULL default '1',
|
||
|
|
`cuantia` int(11) NOT NULL default '0',
|
||
|
|
`published` tinyint(1) NOT NULL default '0',
|
||
|
|
`ordering` int(11) NOT NULL default '0',
|
||
|
|
`checked_out` int(11) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`id`,`ano`,`mes`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_cuotas`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_cuotas` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_cuotas` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_cuotas` (`id`, `ano`, `mes`, `cuantia`, `published`, `ordering`, `checked_out`) VALUES (65,'2005',0,1200,0,0,0),(65,'2005',1,1200,0,0,0),(65,'2005',2,1200,0,0,0),(65,'2005',3,1200,0,0,0),(65,'2005',4,1200,0,0,0),(65,'2005',5,1200,0,0,0),(65,'2005',6,1200,0,0,0),(65,'2005',7,1200,0,0,0),(65,'2005',8,0,0,0,0),(65,'2005',9,0,0,0,0),(65,'2005',10,0,0,0,0),(65,'2005',11,0,0,0,0),(66,'2005',0,1200,0,0,0),(66,'2005',1,1200,0,0,0),(66,'2005',2,1200,0,0,0),(66,'2005',3,1200,0,0,0),(66,'2005',4,1200,0,0,0),(66,'2005',5,1200,0,0,0),(66,'2005',6,1200,0,0,0),(66,'2005',7,1200,0,0,0),(66,'2005',8,0,0,0,0),(66,'2005',9,0,0,0,0),(66,'2005',10,0,0,0,0),(66,'2005',11,0,0,0,0),(67,'2005',0,1200,0,0,0),(67,'2005',1,1200,0,0,0),(67,'2005',2,1200,0,0,0),(67,'2005',3,1200,0,0,0),(67,'2005',4,1200,0,0,0),(67,'2005',5,1200,0,0,0),(67,'2005',6,1200,0,0,0),(67,'2005',7,1200,0,0,0),(67,'2005',8,0,0,0,0),(67,'2005',9,0,0,0,0),(67,'2005',10,0,0,0,0),(67,'2005',11,0,0,0,0),(68,'2005',0,1200,0,0,0),(68,'2005',1,1200,0,0,0),(68,'2005',2,1200,0,0,0),(68,'2005',3,1200,0,0,0),(68,'2005',4,1200,0,0,0),(68,'2005',5,1200,0,0,0),(68,'2005',6,1200,0,0,0),(68,'2005',7,1200,0,0,0),(68,'2005',8,0,0,0,0),(68,'2005',9,0,0,0,0),(68,'2005',10,0,0,0,0),(68,'2005',11,0,0,0,0),(69,'2005',0,1200,0,0,0),(69,'2005',1,1200,0,0,0),(69,'2005',2,1200,0,0,0),(69,'2005',3,1200,0,0,0),(69,'2005',4,1200,0,0,0),(69,'2005',5,1200,0,0,0),(69,'2005',6,1200,0,0,0),(69,'2005',7,1200,0,0,0),(69,'2005',8,0,0,0,0),(69,'2005',9,0,0,0,0),(69,'2005',10,0,0,0,0),(69,'2005',11,0,0,0,0),(70,'2005',0,1200,0,0,0),(70,'2005',1,1200,0,0,0),(70,'2005',2,1200,0,0,0),(70,'2005',3,1200,0,0,0),(70,'2005',4,1200,0,0,0),(70,'2005',5,1200,0,0,0),(70,'2005',6,1200,0,0,0),(70,'2005',7,1200,0,0,0),(70,'2005',8,0,0,0,0),(70,'2005',9,0,0,0,0),(70,'2005',10,0,0,0,0),(70,'2005',11,0,0,0,0),(71,'2005',0,1200,0,0,0),(71,'2005',1,1200,0,0,0),(71,'2005',2,1200,0,0,0),(71,'2005',3,1200,0,0,0),(71,'2005',4,1200,0,0,0),(71,'2005',5,1200,0,0,0),(71,'2005',6,1200,0,0,0),(71,'2005',7,1200,0,0,0),(71,'2005',8,0,0,0,0),(71,'2005',9,0,0,0,0),(71,'2005',10,0,0,0,0),(71,'2005',11,0,0,0,0),(72,'2005',0,1200,0,0,0),(72,'2005',1,1200,0,0,0),(72,'2005',2,1200,0,0,0),(72,'2005',3,1200,0,0,0),(72,'2005',4,1200,0,0,0),(72,'2005',5,1200,0,0,0),(72,'2005',6,1200,0,0,0),(72,'2005',7,1200,0,0,0),(72,'2005',8,0,0,0,0),(72,'2005',9,0,0,0,0),(72,'2005',10,0,0,0,0),(72,'2005',11,0,0,0,0),(73,'2005',0,1200,0,0,0),(73,'2005',1,1200,0,0,0),(73,'2005',2,1200,0,0,0),(73,'2005',3,1200,0,0,0),(73,'2005',4,1200,0,0,0),(73,'2005',5,1200,0,0,0),(73,'2005',6,1200,0,0,0),(73,'2005',7,1200,0,0,0),(73,'2005',8,0,0,0,0),(73,'2005',9,0,0,0,0),(73,'2005',10,0,0,0,0),(73,'2005',11,0,0,0,0),(75,'2005',0,1200,0,0,0),(75,'2005',1,1200,0,0,0),(75,'2005',2,1200,0,0,0),(75,'2005',3,1200,0,0,0),(75,'2005',4,1200,0,0,0),(75,'2005',5,1200,0,0,0),(75,'2005',6,1200,0,0,0),(75,'2005',7,1200,0,0,0),(75,'2005',8,0,0,0,0),(75,'2005',9,0,0,0,0),(75,'2005',10,0,0,0,0),(75,'2005',11,0,0,0,0),(77,'2005',0,1200,0,0,0),(77,'2005',1,1200,0,0,0),(77,'2005',2,1200,0,0,0),(77,'2005',3,1200,0,0,0),(77,'2005',4,1200,0,0,0),(77,'2005',5,1200,0,0,0),(77,'2005',6,1200,0,0,0),(77,'2005',7,1200,0,0,0),(77,'2005',8,0,0,0,0),(77,'2005',9,0,0,0,0),(77,'2005',10,0,0,0,0),(77,'2005',11,0,0,0,0),(78,'2005',0,1200,0,0,0),(78,'2005',1,1200,0,0,0),(78,'2005',2,1200,0,0,0),(78,'2005',3,1200,0,0,0),(78,'2005',4,1200,0,0,0),(78,'2005',5,1200,0,0,0),(78,'2005',6,1200,0,0,0),(78,'2005',7,1200,0,0,0),(78,'2005',8,0,0,0,0),(78,'2005',9,0,0,0,0),(78,'2005',10,0,0,0,0),(78,'2005',11,0,0,0,0),(79,'2005',0,1200,0,0,0),(79,'2005',1,1200,0,0,0),(79,'2005',2,1200,0,0,0),(79,'2005',3,1200,0,0,0),(79,'2005',4,1200,0,0,0),(79,'2005',5,1200,0,0,0),(79,'2005',6,1200,0,0,0),(79,'2005',7,1200,0,0,0),(79,'2005',8,0,0,0,0),(79,'2005',9,0,0,0,0),(79,'2005',10,0,0,0,0),(79,'2005',11,0,0,0,0),(80,'2005',0,1200,0,0,0),(80,'2005',1,1200,0,0,0),(80,'2005',2,1200,0,0,0),(80,'2005',3,1200,0,0,0),(80,'2005',4,1200,0,0,0),(80,'2005',5,1200,0,0,0),(80,'2005',6,1200,0,0,0),(80,'2005',7,1200,0,0,0),(80,'2005',8,0,0,0,0)
|
||
|
|
/*!40000 ALTER TABLE `mos_cuotas` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_docman`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_docman`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_docman` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`catid` int(11) NOT NULL default '1',
|
||
|
|
`dmname` text collate latin1_general_ci NOT NULL,
|
||
|
|
`dmdescription` longtext collate latin1_general_ci,
|
||
|
|
`dmdate_published` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`dmowner` int(4) NOT NULL default '-1',
|
||
|
|
`dmfilename` text collate latin1_general_ci NOT NULL,
|
||
|
|
`published` tinyint(1) NOT NULL default '0',
|
||
|
|
`dmurl` text collate latin1_general_ci,
|
||
|
|
`dmcounter` int(11) default '0',
|
||
|
|
`checked_out` int(11) NOT NULL default '0',
|
||
|
|
`checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`approved` tinyint(1) NOT NULL default '0',
|
||
|
|
`dmthumbnail` text collate latin1_general_ci,
|
||
|
|
`dmlastupdateon` datetime default '0000-00-00 00:00:00',
|
||
|
|
`dmlastupdateby` int(5) NOT NULL default '-1',
|
||
|
|
`dmsubmitedby` int(5) NOT NULL default '-1',
|
||
|
|
`dmmantainedby` int(5) default '0',
|
||
|
|
`dmlicense_id` int(5) default '0',
|
||
|
|
`dmlicense_display` tinyint(1) NOT NULL default '0',
|
||
|
|
`access` int(11) unsigned NOT NULL default '0',
|
||
|
|
`attribs` text collate latin1_general_ci NOT NULL,
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
KEY `pub_appr_own_cat_name` (`published`,`approved`,`dmowner`,`catid`,`dmname`(64)),
|
||
|
|
KEY `appr_pub_own_cat_date` (`approved`,`published`,`dmowner`,`catid`,`dmdate_published`),
|
||
|
|
KEY `own_pub_appr_cat_count` (`dmowner`,`published`,`approved`,`catid`,`dmcounter`),
|
||
|
|
KEY `own_pub_appr_cat_id` (`dmowner`,`published`,`approved`,`catid`,`id`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=1741 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_docman`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_docman` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_docman` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_docman` (`id`, `catid`, `dmname`, `dmdescription`, `dmdate_published`, `dmowner`, `dmfilename`, `published`, `dmurl`, `dmcounter`, `checked_out`, `checked_out_time`, `approved`, `dmthumbnail`, `dmlastupdateon`, `dmlastupdateby`, `dmsubmitedby`, `dmmantainedby`, `dmlicense_id`, `dmlicense_display`, `access`, `attribs`) VALUES (3,156,'Duel of the fates','Partitura en formato PDF\r\n','2009-10-24 16:09:07',0,'duel_of_the_fates_john_williams.pdf',1,'',11,0,'0000-00-00 00:00:00',1,'','2009-10-28 17:54:15',62,62,62,0,0,0,'crc_checksum=\nmd5_checksum='),(2,156,'Duel of the fates','Obra en formato MIDI\r\n','2009-10-25 16:08:00',0,'duel_of_the_fates_john_williams.mid',1,'',5,0,'0000-00-00 00:00:00',1,'','2009-10-28 17:52:29',62,62,62,0,0,0,'crc_checksum=\nmd5_checksum='),(10,160,'Aleluia - Viola','','2009-10-25 17:17:56',0,'aleluia-mozart-viola.pdf',1,'',0,0,'0000-00-00 00:00:00',1,'','2009-10-25 17:18:07',62,62,62,0,0,0,'crc_checksum=\nmd5_checksum='),(9,160,'Aleluia - Cello','','2009-10-25 17:16:27',0,'aleluia-mozart-cello.pdf',1,'',0,0,'0000-00-00 00:00:00',1,'','2009-10-25 17:16:47',62,62,62,0,0,0,'crc_checksum=\nmd5_checksum='),(6,160,'Aleluia - general orquesta','','2009-10-25 17:13:19',0,'aleluia-mozart-general-orquesta.pdf',1,'',3,0,'0000-00-00 00:00:00',1,'','2009-10-25 17:13:52',62,62,62,0,0,0,'crc_checksum=\nmd5_checksum='),(7,160,'Aleluia - violín 1','','2009-10-25 17:15:06',0,'aleluia-mozart-violin1.pdf',1,'',1,0,'0000-00-00 00:00:00',1,'','2009-10-25 17:16:00',62,62,62,0,0,0,'crc_checksum=\nmd5_checksum='),(8,160,'Aleluia - violín 2','','2009-10-25 17:15:23',0,'aleluia-mozart-violin2.pdf',1,'',0,0,'0000-00-00 00:00:00',1,'','2009-10-25 17:15:33',62,62,62,0,0,0,'crc_checksum=\nmd5_checksum='),(11,159,'Ave María - General orquesta','','2009-10-25 17:21:09',0,'avemaria-caccini-general-orquesta.pdf',1,'',4,0,'0000-00-00 00:00:00',1,'','2009-10-25 17:21:30',62,62,62,0,0,0,'crc_checksum=\nmd5_checksum='),(12,159,'Ave María - Violín 1','','2009-10-25 17:21:48',0,'avemaria-caccini-violin1.pdf',1,'',4,0,'0000-00-00 00:00:00',1,'','2009-10-25 17:22:05',62,62,62,0,0,0,'crc_checksum=\nmd5_checksum='),(13,159,'Ave María - Violín 2','','2009-10-25 17:22:08',0,'avemaria-caccini-violin2.pdf',1,'',1,0,'0000-00-00 00:00:00',1,'','2009-10-25 17:22:20',62,62,62,0,0,0,'crc_checksum=\nmd5_checksum='),(14,159,'Ave María - Viola','','2009-10-25 17:22:37',0,'avemaria-caccini-viola.pdf',1,'',0,0,'0000-00-00 00:00:00',1,'','2009-10-25 17:22:49',62,62,62,0,0,0,'crc_checksum=\nmd5_checksum='),(15,159,'Ave María - Cello','','2009-10-25 17:22:52',0,'avemaria-caccini-cello.pdf',1,'',2,0,'0000-00-00 00:00:00',1,'','2009-10-25 17:23:05',62,62,62,0,0,0,'crc_checksum=\nmd5_checksum='),(16,158,'Benedicat Vobis - General orquesta','','2009-10-25 17:52:47',0,'benedicatvobis-haendel-general-orquesta.pdf',1,'',3,0,'0000-00-00 00:00:00',1,'','2009-10-25 17:53:05',62,62,62,0,0,0,'crc_checksum=\nmd5_checksum='),(17,158,'Benedicat Vobis - Violín 1','','2009-10-25 17:53:08',0,'benedicatvobis-haendel-violin1.pdf',1,'',7,0,'0000-00-00 00:00:00',1,'','2009-10-25 17:53:24',62,62,62,0,0,0,'crc_checksum=\nmd5_checksum='),(18,158,'Benedicat Vobis - Violín 2','','2009-10-25 17:53:27',0,'benedicatvobis-haendel-violin2.pdf',1,'',3,0,'0000-00-00 00:00:00',1,'','2009-10-25 17:53:37',62,62,62,0,0,0,'crc_checksum=\nmd5_checksum='),(19,158,'Benedicat Vobis - Cello','','2009-10-25 17:53:42',0,'benedicatvobis-haendel-cello.pdf',1,'',6,0,'0000-00-00 00:00:00',1,'','2009-10-25 17:53:52',62,62,62,0,0,0,'crc_checksum=\nmd5_checksum='),(20,158,'Benedicat Vobis - Viola','','2009-10-25 17:54:44',0,'benedicatvobis-haendel-viola.pdf',1,'',2,0,'0000-00-00 00:00:00',1,'','2009-10-25 17:54:59',62,62,62,0,0,0,'crc_checksum=\nmd5_checksum='),(21,157,'Canticorum - General orquesta','','2009-10-25 17:56:02',0,'canticorum-haendel-general-orquesta.pdf',1,'',0,0,'0000-00-00 00:00:00',1,'','2009-10-25 17:56:27',62,62,62,0,0,0,'crc_checksum=\nmd5_checksum='),(22,157,'Canticorum - Violín 1','','2009-10-25 17:56:30',0,'canticorum-haendel-violin1.pdf',1,'',0,0,'0000-00-0
|
||
|
|
/*!40000 ALTER TABLE `mos_docman` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_docman_groups`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_docman_groups`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_docman_groups` (
|
||
|
|
`groups_id` int(11) NOT NULL auto_increment,
|
||
|
|
`groups_name` text collate latin1_general_ci NOT NULL,
|
||
|
|
`groups_description` longtext collate latin1_general_ci,
|
||
|
|
`groups_access` tinyint(4) NOT NULL default '1',
|
||
|
|
`groups_members` text collate latin1_general_ci,
|
||
|
|
PRIMARY KEY (`groups_id`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_docman_groups`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_docman_groups` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_docman_groups` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_docman_groups` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_docman_history`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_docman_history`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_docman_history` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`doc_id` int(11) NOT NULL,
|
||
|
|
`revision` int(5) NOT NULL default '1',
|
||
|
|
`his_date` datetime NOT NULL,
|
||
|
|
`his_who` int(11) NOT NULL,
|
||
|
|
`his_obs` longtext collate latin1_general_ci,
|
||
|
|
PRIMARY KEY (`id`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_docman_history`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_docman_history` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_docman_history` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_docman_history` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_docman_licenses`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_docman_licenses`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_docman_licenses` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`name` text collate latin1_general_ci NOT NULL,
|
||
|
|
`license` text collate latin1_general_ci NOT NULL,
|
||
|
|
PRIMARY KEY (`id`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_docman_licenses`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_docman_licenses` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_docman_licenses` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_docman_licenses` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_docman_log`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_docman_log`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_docman_log` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`log_docid` int(11) NOT NULL,
|
||
|
|
`log_ip` text collate latin1_general_ci NOT NULL,
|
||
|
|
`log_datetime` datetime NOT NULL,
|
||
|
|
`log_user` int(11) NOT NULL default '0',
|
||
|
|
`log_browser` text collate latin1_general_ci,
|
||
|
|
`log_os` text collate latin1_general_ci,
|
||
|
|
PRIMARY KEY (`id`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_docman_log`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_docman_log` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_docman_log` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_docman_log` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_events`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_events`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_events` (
|
||
|
|
`id` int(12) NOT NULL auto_increment,
|
||
|
|
`sid` int(11) NOT NULL default '0',
|
||
|
|
`catid` int(11) NOT NULL default '1',
|
||
|
|
`title` varchar(100) NOT NULL default '',
|
||
|
|
`content` longtext NOT NULL,
|
||
|
|
`adresse_info` varchar(120) NOT NULL default '',
|
||
|
|
`contact_info` varchar(120) NOT NULL default '',
|
||
|
|
`extra_info` varchar(240) NOT NULL default '',
|
||
|
|
`color_bar` varchar(8) NOT NULL default '',
|
||
|
|
`useCatColor` tinyint(1) NOT NULL default '0',
|
||
|
|
`state` tinyint(3) NOT NULL default '0',
|
||
|
|
`mask` int(11) unsigned NOT NULL default '0',
|
||
|
|
`created` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`created_by` int(11) unsigned NOT NULL default '0',
|
||
|
|
`created_by_alias` varchar(100) NOT NULL default '',
|
||
|
|
`modified` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`modified_by` int(11) unsigned NOT NULL default '0',
|
||
|
|
`checked_out` int(11) unsigned NOT NULL default '0',
|
||
|
|
`checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`publish_up` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`publish_down` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`images` text NOT NULL,
|
||
|
|
`reccurtype` tinyint(1) NOT NULL default '0',
|
||
|
|
`reccurday` varchar(4) NOT NULL default '',
|
||
|
|
`reccurweekdays` varchar(20) NOT NULL default '',
|
||
|
|
`reccurweeks` varchar(10) NOT NULL default '',
|
||
|
|
`approved` tinyint(1) NOT NULL default '1',
|
||
|
|
`ordering` int(11) NOT NULL default '0',
|
||
|
|
`archived` tinyint(1) NOT NULL default '0',
|
||
|
|
`access` int(11) unsigned NOT NULL default '0',
|
||
|
|
`hits` int(11) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`id`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=572 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_events`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_events` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_events` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_events` (`id`, `sid`, `catid`, `title`, `content`, `adresse_info`, `contact_info`, `extra_info`, `color_bar`, `useCatColor`, `state`, `mask`, `created`, `created_by`, `created_by_alias`, `modified`, `modified_by`, `checked_out`, `checked_out_time`, `publish_up`, `publish_down`, `images`, `reccurtype`, `reccurday`, `reccurweekdays`, `reccurweeks`, `approved`, `ordering`, `archived`, `access`, `hits`) VALUES (15,0,104,'BODA','BODA\r\n\r\nLUGAR: ERMITA NUESTRA SEÑORA DE LOS REMEDIOS.\r\n( Carretera de Colmenar a Guadalix de la Sierra ).\r\n\r\nHORA: 19.00H.\r\n\r\nCITACIÓN: 18.15 H.\r\n\r\n','','','','',0,1,0,'2005-08-03 01:28:56',100,'jblanco','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2005-09-09 08:00:00','2005-09-09 08:00:00','',0,'','','',1,0,0,0,18),(16,0,104,'BODA','BODA\r\n\r\nLUGAR: IGLESIA DE SAN GINES.\r\n\r\nHORA 19.00 H.\r\n\r\nCITACIÓN 18.30 H.','','','','',0,1,0,'2005-08-03 01:31:18',100,'jblanco','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2005-09-17 08:00:00','2005-09-17 08:00:00','',0,'','','',1,0,0,0,31),(17,0,105,'Comienzo del Curso 18.00 horas','COMENZAMOS EL CURSO CON TRABAJO FUERTE.\"PREPARACION DEL CD DE NAVIDAD\".\r\nHora de comienzo 18.00 HORAS\r\n\r\nTRABAJAREMOS LOS VILLANCICOS , POR FAVOR LLEVAR TODO EL REPERTORIO DE VILLANCICOS AL ENSAYO.','','','','',0,1,0,'2005-08-03 02:19:39',100,'jblanco','2005-08-31 11:39:22',100,0,'0000-00-00 00:00:00','2005-09-04 08:00:00','2005-09-04 08:00:00','',0,'','','',1,0,0,0,13),(18,0,105,'ENSAYO','','','','','',0,1,0,'2005-08-03 02:20:33',100,'jblanco','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2005-09-11 08:00:00','2005-09-11 08:00:00','',0,'','','',1,0,0,0,6),(19,0,105,'ENSAYO','','','','','',0,1,0,'2005-08-03 02:21:26',100,'jblanco','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2005-09-18 08:00:00','2005-09-18 08:00:00','',0,'','','',1,0,0,0,5),(20,0,105,'ENSAYO','','','','','',0,1,0,'2005-08-03 02:22:25',100,'jblanco','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2005-09-25 08:00:00','2005-09-25 08:00:00','',0,'','','',1,0,0,0,3),(21,0,104,'MISA EN SAN GINES','MISA FESTIVIDAD DE SAN GINES.\r\n\r\nLUGAR: IGLESIA DE SAN GINES.\r\n\r\nHORA: 13.00H.\r\n\r\nCITACION: 12.30H.\r\n\r\n\r\n','','','','',0,1,0,'2005-08-03 02:24:18',100,'jblanco','2005-08-03 10:17:08',100,0,'0000-00-00 00:00:00','2005-10-30 08:00:00','2005-10-30 08:00:00','',0,'','','',1,0,0,0,33),(23,0,104,'BODA','\r\nLUGAR : POR CONFIRMAR\r\nHORA : POR CONFIRMAR\r\nCITACION : POR CONFIRMAR\r\nPROGRAMA : POR CONFIRMAR','','','','',0,1,0,'2005-08-03 12:42:13',65,'bsantamaria','2005-08-03 12:43:23',65,0,'0000-00-00 00:00:00','2005-10-22 08:00:00','2005-10-22 08:00:00','',0,'','','',1,0,0,0,32),(24,0,97,'GRABACION "CD"','','','','','',0,1,0,'2005-08-03 12:50:24',100,'jblanco','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2005-10-15 08:00:00','2005-10-15 08:00:00','',0,'','','',1,0,0,0,11),(25,0,97,'GRABACION "CD"','','','','','',0,1,0,'2005-08-03 12:50:57',100,'jblanco','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2005-10-16 08:00:00','2005-10-16 08:00:00','',0,'','','',1,0,0,0,3),(26,0,105,'ENSAYO','','','','','',0,1,0,'2005-08-03 12:53:25',100,'jblanco','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2005-10-02 08:00:00','2005-10-02 08:00:00','',0,'','','',1,0,0,0,2),(27,0,105,'ENSAYO','','','','','',0,1,0,'2005-08-03 12:54:16',100,'jblanco','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2005-10-09 08:00:00','2005-10-09 08:00:00','',0,'','','',1,0,0,0,2),(28,0,105,'ENSAYO','','','','','',0,1,0,'2005-08-03 12:56:32',100,'jblanco','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2005-10-23 08:00:00','2005-10-23 08:00:00','',0,'','','',1,0,0,0,2),(30,0,105,'ENSAYO','','','','','',0,1,0,'2005-08-03 12:57:32',100,'jblanco','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2005-10-30 08:00:00','2005-10-30 08:00:00','',0,'','','',1,0,0,0,4),(43,0,97,'JUNTA MUNICIPAL MONCLOA','<p>Concierto en la Iglesia San Bruno, C/ Beatriz de Bobadilla, s/n.Hora de concierto,20,00. programa Villancicos, citacion en la iglesia a las 19,00 horas.</p><p>Aut
|
||
|
|
/*!40000 ALTER TABLE `mos_events` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_events_categories`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_events_categories`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_events_categories` (
|
||
|
|
`id` int(12) NOT NULL default '0',
|
||
|
|
`color` varchar(8) NOT NULL default '',
|
||
|
|
PRIMARY KEY (`id`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_events_categories`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_events_categories` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_events_categories` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_events_categories` (`id`, `color`) VALUES (97,'#FFFF99'),(104,'#FFCC99'),(105,'#99FF99');
|
||
|
|
/*!40000 ALTER TABLE `mos_events_categories` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_groups`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_groups`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_groups` (
|
||
|
|
`id` tinyint(3) unsigned NOT NULL default '0',
|
||
|
|
`name` varchar(50) NOT NULL default '',
|
||
|
|
PRIMARY KEY (`id`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_groups`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_groups` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_groups` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_groups` (`id`, `name`) VALUES (0,'Public'),(1,'Registered'),(2,'Special');
|
||
|
|
/*!40000 ALTER TABLE `mos_groups` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_jce_langs`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_jce_langs`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_jce_langs` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`Name` varchar(100) collate latin1_general_ci NOT NULL default '',
|
||
|
|
`lang` varchar(100) collate latin1_general_ci NOT NULL default '',
|
||
|
|
`published` tinyint(3) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`id`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_jce_langs`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_jce_langs` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_jce_langs` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_jce_langs` (`id`, `Name`, `lang`, `published`) VALUES (1,'English','en',1);
|
||
|
|
/*!40000 ALTER TABLE `mos_jce_langs` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_jce_plugins`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_jce_plugins`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_jce_plugins` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`name` varchar(100) collate latin1_general_ci NOT NULL default '',
|
||
|
|
`plugin` varchar(100) collate latin1_general_ci NOT NULL default '',
|
||
|
|
`type` varchar(100) collate latin1_general_ci NOT NULL default 'plugin',
|
||
|
|
`icon` varchar(255) collate latin1_general_ci NOT NULL default '',
|
||
|
|
`layout_icon` varchar(255) collate latin1_general_ci NOT NULL default '',
|
||
|
|
`access` tinyint(3) unsigned NOT NULL default '18',
|
||
|
|
`row` int(11) NOT NULL default '0',
|
||
|
|
`ordering` int(11) NOT NULL default '0',
|
||
|
|
`published` tinyint(3) NOT NULL default '0',
|
||
|
|
`editable` tinyint(3) NOT NULL default '0',
|
||
|
|
`elements` varchar(255) collate latin1_general_ci NOT NULL default '',
|
||
|
|
`iscore` tinyint(3) NOT NULL default '0',
|
||
|
|
`client_id` tinyint(3) NOT NULL default '0',
|
||
|
|
`checked_out` int(11) unsigned NOT NULL default '0',
|
||
|
|
`checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`params` text collate latin1_general_ci NOT NULL,
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
UNIQUE KEY `plugin` (`plugin`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=52 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_jce_plugins`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_jce_plugins` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_jce_plugins` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_jce_plugins` (`id`, `name`, `plugin`, `type`, `icon`, `layout_icon`, `access`, `row`, `ordering`, `published`, `editable`, `elements`, `iscore`, `client_id`, `checked_out`, `checked_out_time`, `params`) VALUES (1,'Context Menu','contextmenu','plugin','','',18,0,0,0,0,'',1,0,0,'0000-00-00 00:00:00',''),(2,'Directionality','directionality','plugin','ltr,rtl','directionality',18,3,8,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(3,'Emotions','emotions','plugin','emotions','emotions',18,4,12,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(4,'Fullscreen','fullscreen','plugin','fullscreen','fullscreen',18,4,6,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(5,'Paste','paste','plugin','pasteword,pastetext','paste',18,1,16,1,1,'',1,0,0,'0000-00-00 00:00:00',''),(6,'Preview','preview','plugin','preview','preview',18,4,1,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(7,'Tables','table','plugin','tablecontrols','buttons',18,2,8,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(8,'Print','print','plugin','print','print',18,4,3,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(9,'Search Replace','searchreplace','plugin','search,replace','searchreplace',18,1,17,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(10,'Styles','style','plugin','styleprops','styleprops',18,4,7,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(11,'Non-Breaking','nonbreaking','plugin','nonbreaking','nonbreaking',18,4,8,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(12,'Visual Characters','visualchars','plugin','visualchars','visualchars',18,4,9,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(13,'XHTML Xtras','xhtmlxtras','plugin','cite,abbr,acronym,del,ins,attribs','xhtmlxtras',18,4,10,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(14,'Image Manager','imgmanager','plugin','','imgmanager',18,4,13,1,1,'',1,0,0,'0000-00-00 00:00:00',''),(15,'Advanced Link','advlink','plugin','','advlink',18,4,14,1,1,'',1,0,0,'0000-00-00 00:00:00',''),(16,'Spell Checker','spellchecker','plugin','spellchecker','spellchecker',18,4,15,1,1,'',1,0,0,'0000-00-00 00:00:00',''),(17,'Layers','layer','plugin','insertlayer,moveforward,movebackward,absolute','layer',18,4,11,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(18,'Font ForeColour','forecolor','command','forecolor','forecolor',18,3,4,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(19,'Bold','bold','command','bold','bold',18,1,5,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(20,'Italic','italic','command','italic','italic',18,1,6,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(21,'Underline','underline','command','underline','underline',18,1,7,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(22,'Font BackColour','backcolor','command','backcolor','backcolor',18,3,5,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(23,'Unlink','unlink','command','unlink','unlink',18,2,11,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(24,'Font Select','fontselect','command','fontselect','fontselect',18,3,2,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(25,'Font Size Select','fontsizeselect','command','fontsizeselect','fontsizeselect',18,3,3,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(26,'Style Select','styleselect','command','styleselect','styleselect',18,3,1,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(27,'New Document','newdocument','command','newdocument','newdocument',18,1,4,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(28,'Help','help','command','help','help',18,1,3,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(29,'StrikeThrough','strikethrough','command','strikethrough','strikethrough',18,1,12,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(30,'Indent','indent','command','indent','indent',18,1,11,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(31,'Outdent','outdent','command','outdent','outdent',18,1,10,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(32,'Undo','undo','command','undo','undo',18,1,1,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(33,'Redo','redo','command','redo','redo',18,1,2,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(34,'Horizontal Rule','hr','command','hr','hr',18,2,1,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(35,'HTML','html','command','code','code',18,1,13,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(36,'Numbered List','numlist','command','numlist','numlist',18,1,9,1,0,'',1,0,0,'0000-00-00 00:00:00',''),(37,'Bullet List','bul
|
||
|
|
/*!40000 ALTER TABLE `mos_jce_plugins` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_joomap`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_joomap`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_joomap` (
|
||
|
|
`version` varchar(255) default NULL,
|
||
|
|
`classname` varchar(255) default NULL,
|
||
|
|
`expand_category` int(11) default NULL,
|
||
|
|
`expand_section` int(11) default NULL,
|
||
|
|
`show_menutitle` int(11) default NULL,
|
||
|
|
`columns` int(11) default NULL,
|
||
|
|
`exlinks` int(11) default NULL,
|
||
|
|
`ext_image` varchar(255) default NULL,
|
||
|
|
`menus` text,
|
||
|
|
`exclmenus` varchar(255) default NULL,
|
||
|
|
`includelink` int(11) default NULL
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_joomap`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_joomap` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_joomap` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_joomap` (`version`, `classname`, `expand_category`, `expand_section`, `show_menutitle`, `columns`, `exlinks`, `ext_image`, `menus`, `exclmenus`, `includelink`) VALUES ('2.0','sitemap',1,1,1,1,1,'img_grey.gif','mainmenu,0,0\nothermenu,1,0\nMenu privado,2,0\ntopmenu,3,0\nusermenu,4,0\nQuienes somos,5,1\nQue hacemos,6,1','',1);
|
||
|
|
/*!40000 ALTER TABLE `mos_joomap` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_joomap_backup`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_joomap_backup`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_joomap_backup` (
|
||
|
|
`version` varchar(255) default NULL,
|
||
|
|
`classname` varchar(255) default NULL,
|
||
|
|
`expand_category` int(11) default NULL,
|
||
|
|
`expand_section` int(11) default NULL,
|
||
|
|
`show_menutitle` int(11) default NULL,
|
||
|
|
`columns` int(11) default NULL,
|
||
|
|
`exlinks` int(11) default NULL,
|
||
|
|
`ext_image` varchar(255) default NULL,
|
||
|
|
`menus` text,
|
||
|
|
`exclmenus` varchar(255) default NULL,
|
||
|
|
`includelink` int(11) default NULL
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_joomap_backup`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_joomap_backup` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_joomap_backup` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_joomap_backup` (`version`, `classname`, `expand_category`, `expand_section`, `show_menutitle`, `columns`, `exlinks`, `ext_image`, `menus`, `exclmenus`, `includelink`) VALUES ('2.0','sitemap',1,1,1,1,1,'img_grey.gif','mainmenu,0,1\nothermenu,1,0\nMenu privado,2,0\ntopmenu,3,0\nusermenu,4,0\nQue hacemos,5,1\nQuienes somos,6,1','',1);
|
||
|
|
/*!40000 ALTER TABLE `mos_joomap_backup` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_mambots`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_mambots`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_mambots` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`name` varchar(100) NOT NULL default '',
|
||
|
|
`element` varchar(100) NOT NULL default '',
|
||
|
|
`folder` varchar(100) NOT NULL default '',
|
||
|
|
`access` tinyint(3) unsigned NOT NULL default '0',
|
||
|
|
`ordering` int(11) NOT NULL default '0',
|
||
|
|
`published` tinyint(3) NOT NULL default '0',
|
||
|
|
`iscore` tinyint(3) NOT NULL default '0',
|
||
|
|
`client_id` tinyint(3) NOT NULL default '0',
|
||
|
|
`checked_out` int(11) unsigned NOT NULL default '0',
|
||
|
|
`checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`params` text NOT NULL,
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
KEY `idx_folder` (`published`,`client_id`,`access`,`folder`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=26 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_mambots`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_mambots` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_mambots` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_mambots` (`id`, `name`, `element`, `folder`, `access`, `ordering`, `published`, `iscore`, `client_id`, `checked_out`, `checked_out_time`, `params`) VALUES (1,'MOS Image','mosimage','content',0,-10000,1,1,0,0,'0000-00-00 00:00:00',''),(2,'MOS Pagination','mospaging','content',0,10000,1,1,0,0,'0000-00-00 00:00:00',''),(3,'Legacy Mambot Includer','legacybots','content',0,4,0,1,0,0,'0000-00-00 00:00:00',''),(4,'SEF','mossef','content',0,2,1,0,0,0,'0000-00-00 00:00:00',''),(5,'MOS Rating','mosvote','content',0,6,1,1,0,0,'0000-00-00 00:00:00',''),(6,'Search Content','content.searchbot','search',0,1,1,1,0,0,'0000-00-00 00:00:00',''),(7,'Search Weblinks','weblinks.searchbot','search',0,2,1,1,0,0,'0000-00-00 00:00:00',''),(8,'Code support','moscode','content',0,5,0,0,0,0,'0000-00-00 00:00:00',''),(9,'No WYSIWYG Editor','none','editors',0,3,1,1,0,0,'0000-00-00 00:00:00',''),(10,'TinyMCE WYSIWYG Editor','tinymce','editors',0,4,1,1,0,0,'0000-00-00 00:00:00','theme=simple\ncleanup=1\nautosave=0\ncompressed=0\ntext_direction=ltr\nrelative_urls=0\ninvalid_elements=script,object,applet,iframe\ncontent_css=0\ncontent_css_custom=tinymce_css.css\nnewlines=0\ntoolbar=top\nsmilies=0\ntable=0\nflash=0\nmedia=0\nhr=0\nstyle=0\nlayer=0\nvisualchars=1\nnonbreaking=1\nfullscreen=1\nhtml_height=550\nhtml_width=750\npreview=1\npreview_height=550\npreview_width=750\nsearchreplace=1\ninsertdate=1\nformat_date=%Y-%m-%d\ninserttime=1\nformat_time=%H:%M:%S'),(11,'MOS Image Editor Button','mosimage.btn','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(12,'MOS Pagebreak Editor Button','mospage.btn','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(13,'Search Contacts','contacts.searchbot','search',0,3,1,1,0,0,'0000-00-00 00:00:00',''),(14,'Search Categories','categories.searchbot','search',0,4,1,0,0,0,'0000-00-00 00:00:00',''),(15,'Search Sections','sections.searchbot','search',0,5,1,0,0,0,'0000-00-00 00:00:00',''),(16,'Email Cloaking','mosemailcloak','content',0,7,1,0,0,0,'0000-00-00 00:00:00',''),(17,'GeSHi','geshi','content',0,8,0,0,0,0,'0000-00-00 00:00:00',''),(18,'Search Newsfeeds','newsfeeds.searchbot','search',0,6,1,0,0,0,'0000-00-00 00:00:00',''),(19,'Load Module Positions','mosloadposition','content',0,9,1,0,0,0,'0000-00-00 00:00:00',''),(20,'HTMLArea3 XTD','htmlarea3_xtd','editors',0,2,0,0,0,0,'0000-00-00 00:00:00','insertsmiley=0\ntableoperations=1\nenterparagraphs=1\ncontextmenu=1\ncss=1\ncsspreview=0\nlanguage=en'),(21,'MOS Zoom Thumb','moszoomthumb','content',0,3,1,0,0,0,'0000-00-00 00:00:00','path_zoom=/images/stories/albumes/\ndiv_mother_1=class=\'mosimage\' style=\'float: left; border-width: 0px; margin: px; padding: px;\' align=\'center\'\ndiv_mother_1_descr=Float image to left\ndiv_mother_2=class=\'mosimage\' style=\'float: right; border-width: 0px; margin: px; padding: px;\' align=\'center\'\ndiv_mother_2_descr=Float image to right\ndiv_mother_3=class=\'mosimage\' style=\'border-width: 0px; margin: px; padding: px;\' align=\'center\'\ndiv_mother_3_descr=No float: text under and above image only.\ndiv_mother_4=\ndiv_mother_4_descr=Not used right now\nimage_1=\nimage_1_descr=Not used at this moment\nimage_2=\nimage_2_descr=Not used at this moment\ndiv_caption_1=class=\'mosimage_caption\'\ndiv_caption_1_descr=Not used at this moment\ndiv_caption_2=class=\'mosimage_caption\'\ndiv_caption_2_descr=Not used at this moment\ncaption_show=1\ncaption_length=0\nthumbnails_link=1\nitemid=0\npublish_override=0\ndiv_order=0\ndebug_info=0'),(22,'System - RokBox','rokbox','system',0,1,0,0,0,0,'0000-00-00 00:00:00','theme=light\ncustom-theme=sample\njslib=1\ncustom-legacy=0\nwidth=640\nheight=460\ntransition=Quad.easeOut\nduration=200\nchase=40\neffect=quicksilver\nframe-border=20\ncontent-padding=0\narrows-height=35\ncaptions=1\ncaptionsDelay=800\nscrolling=0\nkeyEvents=1\noverlay_background=#000000\noverlay_opacity=0.85\noverlay_duration=200\noverlay_transition=Quad.easeInOut\nytautoplay=0\nythighquality=0\ncontroller=false\nbgcolor=#f3f3f3\nvimeoColor=00adef\nvimeoPortrait=0\nvimeoTitle=0\nvimeoFullScreen=1\nvimeoByline=0'),
|
||
|
|
/*!40000 ALTER TABLE `mos_mambots` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_menu`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_menu`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_menu` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`menutype` varchar(25) default NULL,
|
||
|
|
`name` varchar(100) default NULL,
|
||
|
|
`link` text,
|
||
|
|
`type` varchar(50) NOT NULL default '',
|
||
|
|
`published` tinyint(1) NOT NULL default '0',
|
||
|
|
`parent` int(11) unsigned NOT NULL default '0',
|
||
|
|
`componentid` int(11) unsigned NOT NULL default '0',
|
||
|
|
`sublevel` int(11) default '0',
|
||
|
|
`ordering` int(11) default '0',
|
||
|
|
`checked_out` int(11) unsigned NOT NULL default '0',
|
||
|
|
`checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`pollid` int(11) NOT NULL default '0',
|
||
|
|
`browserNav` tinyint(4) default '0',
|
||
|
|
`access` tinyint(3) unsigned NOT NULL default '0',
|
||
|
|
`utaccess` tinyint(3) unsigned NOT NULL default '0',
|
||
|
|
`params` text NOT NULL,
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
KEY `componentid` (`componentid`,`menutype`,`published`,`access`),
|
||
|
|
KEY `menutype` (`menutype`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=222 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_menu`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_menu` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_menu` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_menu` (`id`, `menutype`, `name`, `link`, `type`, `published`, `parent`, `componentid`, `sublevel`, `ordering`, `checked_out`, `checked_out_time`, `pollid`, `browserNav`, `access`, `utaccess`, `params`) VALUES (1,'mainmenu','Inicio','index.php?option=com_frontpage','components',1,0,10,0,6,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\npageclass_sfx=\nheader=\npage_title=1\nback_button=0\nleading=1\nintro=10\ncolumns=1\nlink=1\norderby_pri=\norderby_sec=front\npagination=2\npagination_results=1\nimage=1\nsection=0\nsection_link=0\ncategory=0\ncategory_link=0\nitem_title=1\nlink_titles=\nreadmore=\nrating=\nauthor=\ncreatedate=1\nmodifydate=0\npdf=0\nprint=0\nemail=0'),(46,'Quienes somos','Premios y menciones','index.php?option=com_content&task=blogcategory&id=80','content_blog_category',1,0,80,0,9,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npageclass_sfx=\nback_button=\nheader=\npage_title=1\nleading=1\nintro=4\ncolumns=1\nlink=4\norderby_pri=\norderby_sec=\npagination=2\npagination_results=1\nimage=1\ndescription=0\ndescription_image=0\ncategory=0\ncategory_link=0\nitem_title=1\nlink_titles=\nreadmore=\nrating=\nauthor=\ncreatedate=1\nmodifydate=0\npdf=\nprint=\nemail=\ncategoryid=80'),(45,'Quienes somos','Sala de prensa','index.php?option=com_content&task=blogcategory&id=120','content_blog_category',1,0,120,0,8,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npageclass_sfx=\nback_button=\nheader=\npage_title=1\nleading=1\nintro=4\ncolumns=1\nlink=0\norderby_pri=order\norderby_sec=rdate\npagination=2\npagination_results=1\nimage=1\ndescription=0\ndescription_image=0\ncategory=0\ncategory_link=0\nitem_title=1\nlink_titles=\nreadmore=\nrating=\nauthor=\ncreatedate=1\nmodifydate=0\npdf=\nprint=\nemail=\ncategoryid=120'),(42,'Quienes somos','Historia y componentes','index.php?option=com_content&task=blogcategory&id=67','content_blog_category',1,0,67,0,1,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\r\npageclass_sfx=\r\nback_button=\r\nheader=\r\npage_title=1\r\nleading=20\r\nintro=0\r\ncolumns=1\r\nlink=0\r\norderby_pri=\r\norderby_sec=\r\npagination=0\r\npagination_results=0\r\nimage=1\r\ndescription=0\r\ndescription_image=0\r\ncategory=0\r\ncategory_link=1\r\nitem_title=1\r\nlink_titles=\r\nreadmore=\r\nrating=\r\nauthor=\r\ncreatedate=0\r\nmodifydate=0\r\npdf=\r\nprint=\r\nemail=\r\ncategoryid=67'),(47,'Que hacemos','Repertorio','index.php?option=com_content&task=blogcategory&id=70','content_blog_category',1,0,70,0,5,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npageclass_sfx=\nback_button=\nheader=\npage_title=1\nleading=1\nintro=13\ncolumns=1\nlink=0\norderby_pri=order\norderby_sec=order\npagination=2\npagination_results=1\nimage=1\ndescription=0\ndescription_image=0\ncategory=0\ncategory_link=0\nitem_title=1\nlink_titles=\nreadmore=\nrating=\nauthor=\ncreatedate=0\nmodifydate=1\npdf=\nprint=\nemail=\nunpublished=0\ncategoryid=70'),(48,'Que hacemos','Actuaciones','index.php?option=com_content&task=blogcategory&id=71','content_blog_category',-2,0,71,0,4,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npageclass_sfx=\nback_button=\nheader=\npage_title=1\nleading=1\nintro=4\ncolumns=2\nlink=4\norderby_pri=\norderby_sec=\npagination=2\npagination_results=1\nimage=1\ncategory=0\ncategory_link=0\nitem_title=1\nlink_titles=\nreadmore=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\ncategoryid=71'),(49,'Que hacemos','Grabaciones','index.php?option=com_content&task=blogcategory&id=113','content_blog_category',1,0,113,0,7,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npageclass_sfx=\nback_button=\nheader=\npage_title=1\nleading=1\nintro=4\ncolumns=2\nlink=4\norderby_pri=\norderby_sec=\npagination=2\npagination_results=1\nimage=1\ndescription=0\ndescription_image=0\ncategory=0\ncategory_link=0\nitem_title=1\nlink_titles=\nreadmore=\nrating=\nauthor=\ncreatedate=\nmodifydate=\npdf=\nprint=\nemail=\ncategoryid=113'),(50,'Menu privado','Ensayos','index.php?option=com_content&task=blogcategory&id=73','content_blog_category',-2,0,73,0,38,0,'0000-00-00 00:00:00',0,0,1,0,'menu_image=-1\npageclas
|
||
|
|
/*!40000 ALTER TABLE `mos_menu` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_messages`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_messages`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_messages` (
|
||
|
|
`message_id` int(10) unsigned NOT NULL auto_increment,
|
||
|
|
`user_id_from` int(10) unsigned NOT NULL default '0',
|
||
|
|
`user_id_to` int(10) unsigned NOT NULL default '0',
|
||
|
|
`folder_id` int(10) unsigned NOT NULL default '0',
|
||
|
|
`date_time` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`state` int(11) NOT NULL default '0',
|
||
|
|
`priority` int(1) unsigned NOT NULL default '0',
|
||
|
|
`subject` varchar(230) NOT NULL default '',
|
||
|
|
`message` text NOT NULL,
|
||
|
|
PRIMARY KEY (`message_id`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=598 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_messages`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_messages` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_messages` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_messages` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_messages_cfg`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_messages_cfg`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_messages_cfg` (
|
||
|
|
`user_id` int(10) unsigned NOT NULL default '0',
|
||
|
|
`cfg_name` varchar(100) NOT NULL default '',
|
||
|
|
`cfg_value` varchar(255) NOT NULL default '',
|
||
|
|
UNIQUE KEY `idx_user_var_name` (`user_id`,`cfg_name`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_messages_cfg`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_messages_cfg` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_messages_cfg` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_messages_cfg` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_modules`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_modules`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_modules` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`title` text NOT NULL,
|
||
|
|
`content` text NOT NULL,
|
||
|
|
`ordering` int(11) NOT NULL default '0',
|
||
|
|
`position` varchar(10) default NULL,
|
||
|
|
`checked_out` int(11) unsigned NOT NULL default '0',
|
||
|
|
`checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`published` tinyint(1) NOT NULL default '0',
|
||
|
|
`module` varchar(50) default NULL,
|
||
|
|
`numnews` int(11) NOT NULL default '0',
|
||
|
|
`access` tinyint(3) unsigned NOT NULL default '0',
|
||
|
|
`showtitle` tinyint(3) unsigned NOT NULL default '1',
|
||
|
|
`params` text NOT NULL,
|
||
|
|
`iscore` tinyint(4) NOT NULL default '0',
|
||
|
|
`client_id` tinyint(4) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
KEY `published` (`published`,`access`),
|
||
|
|
KEY `newsfeeds` (`module`,`published`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=55 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_modules`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_modules` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_modules` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_modules` (`id`, `title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`) VALUES (1,'Polls','',1,'right',0,'0000-00-00 00:00:00',0,'mod_poll',0,0,1,'',0,0),(2,'User Menu','',5,'left',0,'0000-00-00 00:00:00',0,'mod_mainmenu',0,1,1,'menutype=usermenu',1,0),(3,'Menú principal','',1,'toolbar',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,0,'class_sfx=-top\nmoduleclass_sfx=\nmenutype=mainmenu\nmenu_style=list_flat\ncache=0\nmenu_images=1\nmenu_images_align=0\nexpand_menu=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=',1,0),(5,'Syndicate','',8,'left',0,'0000-00-00 00:00:00',0,'mod_rssfeed',0,0,1,'',1,0),(6,'Latest News','',15,'left',0,'0000-00-00 00:00:00',0,'mod_latestnews',0,0,1,'moduleclass_sfx=\ncache=0\ntype=3\nshow_front=1\ncount=5\ncatid=\nsecid=',1,0),(7,'Statistics','',9,'left',0,'0000-00-00 00:00:00',0,'mod_stats',0,0,1,'serverinfo=1\nsiteinfo=1\ncounter=1\nincrease=0\nmoduleclass_sfx=',0,0),(8,'Who\'s Online','',2,'right',0,'0000-00-00 00:00:00',0,'mod_whosonline',0,0,1,'online=1\nusers=1\nmoduleclass_sfx=',0,0),(9,'Popular','',6,'user2',0,'0000-00-00 00:00:00',0,'mod_mostread',0,0,1,'',0,0),(10,'Template Chooser','',10,'left',0,'0000-00-00 00:00:00',0,'mod_templatechooser',0,0,1,'show_preview=1',0,0),(11,'Archive','',11,'left',0,'0000-00-00 00:00:00',0,'mod_archive',0,0,1,'',1,0),(12,'Sections','',12,'left',0,'0000-00-00 00:00:00',0,'mod_sections',0,0,1,'count=5\nmoduleclass_sfx=',1,0),(13,'Newsflash','',2,'top',0,'0000-00-00 00:00:00',0,'mod_newsflash',0,0,1,'catid=3\r\nstyle=random\r\nitems=\r\nmoduleclass_sfx=',0,0),(14,'Related Items','',13,'left',0,'0000-00-00 00:00:00',0,'mod_related_items',0,0,1,'',0,0),(15,'Buscar','',1,'user1',0,'0000-00-00 00:00:00',1,'mod_search',0,0,0,'moduleclass_sfx=\ncache=0\nwidth=25\ntext=\nbutton=1\nbutton_pos=right\nbutton_text=¡Buscar!',0,0),(16,'Random Image','',3,'right',0,'0000-00-00 00:00:00',0,'mod_random_image',0,0,1,'',0,0),(17,'Top Menu','',2,'user3',0,'0000-00-00 00:00:00',0,'mod_mainmenu',0,0,0,'menutype=topmenu\nmenu_style=list_flat\nmenu_images=n\nmenu_images_align=left\nexpand_menu=n\nclass_sfx=-nav\nmoduleclass_sfx=\nindent_image1=0\nindent_image2=0\nindent_image3=0\nindent_image4=0\nindent_image5=0\nindent_image6=0',1,0),(18,'Banners','',1,'banner',0,'0000-00-00 00:00:00',0,'mod_banners',0,0,0,'banner_cids=\nmoduleclass_sfx=\n',1,0),(19,'Components','',2,'cpanel',0,'0000-00-00 00:00:00',1,'mod_components',0,99,1,'',1,1),(20,'Popular','',3,'cpanel',0,'0000-00-00 00:00:00',1,'mod_popular',0,99,1,'',0,1),(21,'Latest Items','',4,'cpanel',0,'0000-00-00 00:00:00',1,'mod_latest',0,99,1,'',0,1),(22,'Menu Stats','',5,'cpanel',0,'0000-00-00 00:00:00',1,'mod_stats',0,99,1,'',0,1),(23,'Unread Messages','',1,'header',0,'0000-00-00 00:00:00',1,'mod_unread',0,99,1,'',1,1),(24,'Online Users','',2,'header',0,'0000-00-00 00:00:00',1,'mod_online',0,99,1,'',1,1),(25,'Full Menu','',1,'top',0,'0000-00-00 00:00:00',1,'mod_fullmenu',0,99,1,'',1,1),(26,'Pathway','',1,'pathway',0,'0000-00-00 00:00:00',1,'mod_pathway',0,99,1,'',1,1),(27,'Toolbar','',1,'toolbar',0,'0000-00-00 00:00:00',1,'mod_toolbar',0,99,1,'',1,1),(28,'System Message','',1,'inset',0,'0000-00-00 00:00:00',1,'mod_mosmsg',0,99,1,'',1,1),(29,'Quick Icons','',1,'icon',0,'0000-00-00 00:00:00',1,'mod_quickicon',0,99,1,'',1,1),(41,'sh404SEF Custom tags module','',2,'user3',0,'0000-00-00 00:00:00',0,'mod_shCustomTags',0,0,0,'',0,0),(31,'Other Menu','',7,'left',0,'0000-00-00 00:00:00',0,'mod_mainmenu',0,0,1,'class_sfx=\nmoduleclass_sfx=\nmenutype=othermenu\nmenu_style=vert_indent\ncache=0\nmenu_images=0\nmenu_images_align=0\nexpand_menu=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=',0,0),(32,'Wrapper','',14,'left',0,'0000-00-00 00:00:00',0,'mod_wrapper',0,0,1,'',0,0),(33,'Logged','',0,'cpanel',0,'0000-00-00 00:00:00',1,'mod_logge
|
||
|
|
/*!40000 ALTER TABLE `mos_modules` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_modules_menu`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_modules_menu`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_modules_menu` (
|
||
|
|
`moduleid` int(11) NOT NULL default '0',
|
||
|
|
`menuid` int(11) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`moduleid`,`menuid`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_modules_menu`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_modules_menu` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_modules_menu` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_modules_menu` (`moduleid`, `menuid`) VALUES (1,1),(2,0),(3,0),(4,0),(5,1),(6,0),(8,1),(9,1),(9,2),(9,4),(9,27),(9,36),(10,1),(12,0),(13,0),(15,0),(17,0),(18,0),(31,0),(34,0),(35,0),(36,0),(39,0),(41,0),(42,0),(43,0),(46,0),(53,0),(54,0);
|
||
|
|
/*!40000 ALTER TABLE `mos_modules_menu` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_newsfeeds`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_newsfeeds`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_newsfeeds` (
|
||
|
|
`catid` int(11) NOT NULL default '0',
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`name` text NOT NULL,
|
||
|
|
`link` text NOT NULL,
|
||
|
|
`filename` varchar(200) default NULL,
|
||
|
|
`published` tinyint(1) NOT NULL default '0',
|
||
|
|
`numarticles` int(11) unsigned NOT NULL default '1',
|
||
|
|
`cache_time` int(11) unsigned NOT NULL default '3600',
|
||
|
|
`checked_out` tinyint(3) unsigned NOT NULL default '0',
|
||
|
|
`checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`ordering` int(11) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
KEY `published` (`published`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_newsfeeds`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_newsfeeds` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_newsfeeds` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_newsfeeds` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_obrens`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_obrens`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_obrens` (
|
||
|
|
`id` int(11) unsigned NOT NULL auto_increment,
|
||
|
|
`catid` int(11) NOT NULL default '0',
|
||
|
|
`titulo` varchar(255) NOT NULL default '',
|
||
|
|
`autor` varchar(255) NOT NULL default '',
|
||
|
|
`beschreibung` text NOT NULL,
|
||
|
|
`hits` int(11) NOT NULL default '0',
|
||
|
|
`ref_in` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`ref_out` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`published` tinyint(1) NOT NULL default '0',
|
||
|
|
`ordering` int(11) NOT NULL default '0',
|
||
|
|
`checked_out` int(11) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`id`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=214 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_obrens`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_obrens` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_obrens` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_obrens` (`id`, `catid`, `titulo`, `autor`, `beschreibung`, `hits`, `ref_in`, `ref_out`, `published`, `ordering`, `checked_out`) VALUES (24,123,'Marcha nupcial','Wagner, Richard','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,36,0),(23,112,'Zorongo','Vila, F.','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,18,0),(22,123,'Hailig','Schubert, Franz','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,34,0),(21,124,'In monte Oliveti','Prieto, José Ignacio','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,11,0),(20,122,'Ave Verum','Mozart, Wolfgang Amadeus','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,1,0),(19,111,'Joshua fit de battle ob Jerico','Josly','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,16,0),(18,121,'Hallelujah','Haendel, Georg Friedrich','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,9,0),(17,121,'Canticorum iubilo','Haendel, Georg Friedrich','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,8,0),(16,121,'Benedicat vobis','Haendel, Georg Friedrich','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,2,0),(15,115,'Los reyes siguen la estrella','Guerrero, Francisco','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,4,0),(14,124,'Ubi caritas','Duruflé, Maurice','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,17,0),(13,124,'Ave María','Busto, Javier','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,7,0),(12,123,'Locus iste','Bruckner, Anton','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,35,0),(11,123,'Ave María','Bruckner, Anton','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,17,0),(10,117,'White christmas','Berlin, Irving','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,9,0),(9,117,'Adeste Fideles','J. Reading','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,1,0),(8,121,'Jesus bleibet meine Freude','Bach, Johann Sebastian','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,10,0),(7,125,'Veni Creator Spiritus','Anónimo','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,1,0),(6,124,'Gaudeamus igitur','Anónimos','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,10,0),(5,112,'Ay linda amiga','Anónimo','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,8,0),(4,110,'Tenebrae Facte Sunt','Tomás Luis de Victoria','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,9,0),(3,110,'O Jesu Christe','J.van Berchem','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,6,0),(2,124,'Eli Eli','G. Bardos','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,9,0),(1,112,'Ay amante mío','Antonio José','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,7,0),(25,115,'O Magnum Mysterium','Tomás Luis de Victoria','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,6,0),(26,110,'Christe Redemptor Omnium','Tomás Luis de Victoria','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,3,0),(27,115,'Ríu, Ríu, Chíu...','Anónimo','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,7,0),(28,116,'Ator, ator','J. Guridi','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,1,0),(29,115,'Niño Dios D\'Amor Herido','Francisco Guerrero','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,5,0),(30,112,'Madrid','Agustín Lara','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,14,0),(31,117,'La corona de rosas','P.I.Tchaikovsky','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,7,0),(32,116,'Ya viene la vieja (Castilla)','S.Parker','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,8,0),(33,116,'San José al Niño Jesus (Santander)','O.Martorell','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,9,0),(34,118,'Festejo de Navidad','H.Bittrich','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,2,0),(35,115,'Dadme Albricias','Anónimo','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,3,0),(36,116,'En Belén tocan a fuego (Burgos)','C.Geoffray','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,5,0),(37,118,'Pedro cochero','P.Fabani','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,3,0),(38,117,'Canción de cuna','J.Brahms','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,5,0),(39,115,'Ad tantae nativitatis','C.de Morales','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',1,1,0),(40,11
|
||
|
|
/*!40000 ALTER TABLE `mos_obrens` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_obrens_cab_detalles`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_obrens_cab_detalles`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_obrens_cab_detalles` (
|
||
|
|
`idobra` int(11) unsigned NOT NULL default '0',
|
||
|
|
`id` tinyint(2) unsigned NOT NULL default '0',
|
||
|
|
`descripcion` varchar(100) NOT NULL default '',
|
||
|
|
PRIMARY KEY (`idobra`,`id`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_obrens_cab_detalles`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_obrens_cab_detalles` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_obrens_cab_detalles` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_obrens_cab_detalles` (`idobra`, `id`, `descripcion`) VALUES (1,1,'Contralto'),(2,3,'Bajo'),(2,2,'Tenor'),(3,3,'Bajo'),(3,2,'Tenor'),(3,1,'Contralto'),(3,0,'Soprano'),(4,3,'Bajo'),(4,2,'Tenor'),(5,0,'Soprano'),(5,1,'Contralto'),(6,6,'Bajo2'),(6,5,'Bajo1'),(6,4,'Tenor2'),(6,3,'Tenor1'),(8,3,'Bajo'),(8,2,'Tenor'),(8,1,'Contralto'),(8,0,'Soprano'),(25,0,'Soprano'),(9,3,'Bajo'),(10,4,'Baritono'),(10,3,'Tenor'),(10,2,'Contralto'),(11,0,'Sopra1'),(11,1,'Sopra2'),(11,2,'Mezzo.'),(12,3,'Bajo'),(12,2,'Tenor'),(12,1,'Contralto'),(12,0,'Soprano'),(13,5,'Bajo1'),(13,4,'Tenor2'),(13,3,'Tenor1'),(13,2,'Contra.'),(13,1,'Mezzo.'),(13,0,'Soprano'),(14,0,'Soprano'),(14,1,'Contralto'),(14,2,'Tenor1'),(15,0,'Soprano'),(15,1,'Contralto'),(16,3,'Bajo'),(16,2,'Tenor'),(16,1,'Contralto'),(16,0,'Soprano'),(17,3,'Bajo'),(17,2,'Tenor'),(17,1,'Contralto'),(17,0,'Soprano'),(18,3,'Bajo'),(18,2,'Tenor'),(18,1,'Contralto'),(18,0,'Soprano'),(19,3,'Bajo'),(19,2,'Tenor'),(20,3,'Bajo'),(20,2,'Tenor'),(20,1,'Contralto'),(20,0,'Soprano'),(21,3,'Bajo'),(21,2,'Tenor'),(21,1,'Contralto'),(21,0,'Soprano'),(22,3,'Bajo'),(22,2,'Tenor'),(23,3,'Bajo'),(23,2,'Tenor'),(23,1,'Contralto'),(23,0,'Soprano'),(1,2,'Tenor1'),(182,1,'Contralto'),(182,0,'Soprano'),(24,3,'Bajo'),(30,0,'Soprano'),(1,0,'Soprano'),(25,1,'Contralto'),(26,1,'Soprano2'),(26,2,'Contralto'),(27,0,'Soprano'),(6,2,'Contralto'),(6,1,'Mezzo.'),(6,0,'Soprano'),(11,3,'Contra.'),(9,2,'Tenor'),(26,0,'Soprano1'),(27,1,'Contralto'),(28,3,'Bajo'),(28,2,'Tenor'),(29,3,'Bajo'),(29,2,'Tenor'),(29,1,'Contralto'),(29,0,'Soprano'),(30,1,'Contralto'),(9,1,'Contralto'),(9,0,'Soprano'),(25,2,'Tenor'),(25,3,'Bajo'),(28,1,'Contralto'),(28,0,'Soprano'),(31,3,'Bajo'),(31,2,'Tenor'),(31,1,'Contralto'),(31,0,'Soprano'),(2,1,'Contralto'),(2,0,'Soprano'),(32,0,'Soprano'),(32,1,'Contralto'),(32,2,'Tenor'),(32,3,'Bajo'),(33,3,'Bajo'),(33,2,'Tenor'),(33,1,'Contralto'),(33,0,'Soprano'),(34,0,'Soprano'),(34,1,'Contralto'),(34,2,'Tenor'),(34,3,'Bajo'),(35,0,'Soprano'),(35,1,'Contralto'),(27,2,'Tenor'),(27,3,'Bajo'),(36,3,'Bajo'),(36,2,'Tenor'),(36,1,'Contralto'),(36,0,'Soprano'),(37,0,'Soprano'),(37,1,'Contralto'),(37,2,'Tenor'),(37,3,'Bajo'),(38,0,'Soprano1'),(38,1,'Soprano2'),(38,2,'Contralto'),(38,3,'Tenor1'),(38,4,'Tenor2'),(38,5,'Bajo'),(39,0,'Soprano'),(39,1,'Contralto'),(40,3,'Bajo'),(40,2,'Tenor'),(40,1,'Contralto'),(40,0,'Soprano'),(11,4,'Teno1'),(11,5,'Teno2'),(11,6,'Bari.'),(11,7,'Bajo'),(13,6,'Bajo2'),(26,3,'Tenor'),(26,4,'Bajo'),(24,2,'Tenor'),(24,1,'Contralto'),(24,0,'Soprano'),(7,0,'Soprano'),(7,1,'Contralto'),(7,2,'Tenor'),(7,3,'Bajo'),(41,3,'Bajo'),(41,2,'Tenor'),(41,1,'Contralto'),(41,0,'Soprano'),(42,0,'Soprano'),(42,1,'Contralto'),(43,0,'Soprano'),(43,1,'Contralto'),(44,3,'Bajo'),(44,2,'Tenor'),(44,1,'Contralto'),(44,0,'Soprano'),(45,3,'Bajo'),(45,2,'Tenor'),(45,1,'Contralto'),(45,0,'Soprano'),(46,3,'Bajo'),(46,2,'Tenor'),(47,3,'Bajo'),(47,2,'Tenor'),(48,3,'Bajo'),(48,2,'Tenor'),(49,3,'Bajo'),(49,2,'Tenor'),(49,1,'Contralto'),(49,0,'Soprano'),(50,3,'Bajo'),(50,2,'Tenor'),(50,1,'Contralto'),(50,0,'Soprano'),(51,3,'Bajo'),(51,2,'Tenor'),(52,3,'Bajo'),(52,2,'Tenor'),(52,1,'Contralto'),(52,0,'Soprano'),(53,0,'Soprano'),(53,1,'Contralto'),(47,1,'Contralto'),(47,0,'Soprano'),(48,1,'Contralto'),(48,0,'Soprano'),(10,1,'Soprano2'),(4,1,'Contralto'),(4,0,'Soprano'),(22,1,'Contralto'),(54,0,'Soprano'),(54,1,'Contralto'),(55,0,'Soprano'),(55,1,'Contralto'),(55,2,'Tenor'),(55,3,'Bajo'),(56,0,'Soprano1'),(56,1,'Soprano2'),(56,2,'Contralto1'),(57,3,'Bajo'),(57,2,'Tenor'),(58,0,'Soprano'),(59,3,'Bajo'),(59,2,'Tenor'),(60,7,'Bajo2'),(60,6,'Bajo1'),(60,5,'Tenor2'),(60,4,'Tenor1'),(60,3,'Contralto2'),(60,2,'Contralto1'),(60,1,'Soprano2'),(60,0,'Soprano1'),(61,6,'Bajo2'),(61,5,'Bajo1'),(61,4,'Tenor2'),(61,3,'Tenor1'),(61,2,'Contralto'),(61,1,'Soprano2'),(61,0,'Soprano1'),(62,0,'Soprano1'),(62,1,'Soprano2'),(62,2,'Contralto1'),(62,3,'Contralto2'),(62,4,'Tenor'),(62,5,'Bajo1'),(62,6,'Bajo2'),(63,3,'Bajo'),(63,2,'Tenor'),(63,1,'Contralto'),(63,0,'Soprano'),(64,3,'Bajo'),(65,3,'Bajo'),(65,2,'Tenor'),(65,1,'Contralto'),(65,
|
||
|
|
/*!40000 ALTER TABLE `mos_obrens_cab_detalles` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_opensef_config`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_opensef_config`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_opensef_config` (
|
||
|
|
`scope` varchar(64) NOT NULL,
|
||
|
|
`name` varchar(255) NOT NULL,
|
||
|
|
`value` text NOT NULL,
|
||
|
|
PRIMARY KEY (`scope`,`name`(100))
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_opensef_config`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_opensef_config` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_opensef_config` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_opensef_config` (`scope`, `name`, `value`) VALUES ('com_sef','enabled','1'),('com_sef','enable_sef','1'),('com_sef','debug','0'),('com_sef','debug_for_ip',''),('com_sef','backend_language','spanish'),('com_sef','backend_sidebar','1'),('com_sef','backend_autoupdates','0'),('com_sef','encode_lowercase','1'),('com_sef','encode_page_suffix','.html'),('com_sef','encode_space_char','-'),('com_sef','encode_strip_chars','!,$,%,@,?,#,(,),+,*'),('com_sef','content_path_type','full'),('com_sef','content_title_field','title'),('com_sef','section_title_field','title'),('com_sef','category_title_field','title'),('com_sef','content_page_format','%s_%d'),('com_sef','content_page_name','page'),('com_sef','record_unmapped_urls','1'),('com_sef','record_invalid_urls','1'),('com_sef','record_hits','0'),('com_sef','use_automap','1'),('com_sef','use_automap_redirect','1'),('com_sef','use_multisite','0'),('com_sef','use_sef_ext','1'),('com_sef','use_core_ext','1'),('com_sef','use_canonical_urls','1'),('com_sef','use_absolute_urls','1'),('com_sef','append_itemid','0'),('com_sef','append_date','0'),('com_sef','append_date_format','%Y%m%d'),('com_sef','append_contentid','0'),('com_sef','use_session_fix','1'),('com_sef','validate_level','1'),('com_sef','validate_404_url',''),('com_sef','max_recursion','1'),('com_sef','xhtml_compliance','0'),('com_sef','cache_outgoing','1'),('com_sef','alias_banner','adverse'),('com_sef','alias_links','links'),('com_sef','alias_newsfeeds','news_feeds'),('com_sef','alias_wrapper','external'),('com_sef','use_alias_banner','1'),('com_sef','use_alias_links','1'),('com_sef','use_alias_newsfeeds','1'),('com_sef','use_alias_wrapper','1'),('com_sef','content_blogcategory','blogcategory'),('com_sef','content_blogsection','blogsection'),('com_sef','content_archivecategory','archivecategory'),('com_sef','content_archivesection','archivesection'),('com_sef','spec_chars_d',''),('com_sef','spec_chars',''),('com_sef','google_filename','sitemap'),('com_sef','google_path','components/com_sef'),('com_sef','google_modified','1'),('com_sef','google_frequency','weekly'),('com_sef','google_priority','0.8'),('com_sef','google_ping','1'),('com_sef','google_display','1'),('com_sef','meta_nlist','10'),('com_sef','meta_nsep',','),('com_sef','meta_nsort','SORT_DESC'),('com_sef','meta_kreplace','1'),('com_sef','meta_dreplace','1'),('com_sef','meta_chars','\\\",.,-,?,,,.,:,!,@,#,$,%,^,&,*,(,),_,-,1,2,3,4,5,6,7,8,9,0,.,;,{,},[,],|,/,<,>,+,=,)'),('com_sef','meta_exclude_key','{mosimage}, , '),('com_sef','meta_gdesc','full'),('com_sef','meta_gdesc_opt','1'),('com_sef','meta_gdesc_len','400'),('com_sef','version','2.0.0-RC5_SP2');
|
||
|
|
/*!40000 ALTER TABLE `mos_opensef_config` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_opensef_sef`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_opensef_sef`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_opensef_sef` (
|
||
|
|
`id` int(11) unsigned NOT NULL auto_increment,
|
||
|
|
`site_id` int(11) default NULL,
|
||
|
|
`external` varchar(255) default NULL,
|
||
|
|
`internal` varchar(255) default NULL,
|
||
|
|
`use_internal` char(1) NOT NULL default '1',
|
||
|
|
`direction` char(1) default NULL,
|
||
|
|
`published` char(1) NOT NULL default '1',
|
||
|
|
`valid` char(1) NOT NULL default '1',
|
||
|
|
`stop` char(1) NOT NULL default '0',
|
||
|
|
`created` datetime default NULL,
|
||
|
|
`created_by` int(11) unsigned NOT NULL default '0',
|
||
|
|
`modified` datetime default NULL,
|
||
|
|
`modified_by` int(11) unsigned NOT NULL default '0',
|
||
|
|
`catid` int(11) unsigned NOT NULL default '0',
|
||
|
|
`hits` int(11) unsigned NOT NULL default '0',
|
||
|
|
`notes` varchar(255) default NULL,
|
||
|
|
`locked` char(1) NOT NULL default '0',
|
||
|
|
`link_prio` int(3) default NULL,
|
||
|
|
PRIMARY KEY (`id`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=1201 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_opensef_sef`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_opensef_sef` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_opensef_sef` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_opensef_sef` (`id`, `site_id`, `external`, `internal`, `use_internal`, `direction`, `published`, `valid`, `stop`, `created`, `created_by`, `modified`, `modified_by`, `catid`, `hits`, `notes`, `locked`, `link_prio`) VALUES (1200,-1,'/comunicados/','index.php?option=com_content&task=blogsection&id=12&Itemid=112','1',NULL,'1','1','0','2009-03-11 13:43:05',0,'2009-03-11 13:43:05',0,0,0,NULL,'0',5);
|
||
|
|
/*!40000 ALTER TABLE `mos_opensef_sef` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_opensef_sef_component`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_opensef_sef_component`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_opensef_sef_component` (
|
||
|
|
`id` int(11) unsigned NOT NULL auto_increment,
|
||
|
|
`site_id` int(11) default NULL,
|
||
|
|
`menu_id` int(11) unsigned NOT NULL,
|
||
|
|
`component` varchar(255) NOT NULL,
|
||
|
|
`alias` varchar(255) NOT NULL,
|
||
|
|
`published` char(1) NOT NULL default '1',
|
||
|
|
`block` char(1) NOT NULL default '0',
|
||
|
|
`ordering` int(11) unsigned NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
UNIQUE KEY `site_id` (`site_id`,`menu_id`,`component`(100))
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=410 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_opensef_sef_component`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_opensef_sef_component` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_opensef_sef_component` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_opensef_sef_component` (`id`, `site_id`, `menu_id`, `component`, `alias`, `published`, `block`, `ordering`) VALUES (409,NULL,87,'com_zoom','album_de_fotos','1','0',0),(408,NULL,81,'com_comprofiler','mi_perfil_personal','1','0',0),(407,NULL,140,'com_simpleboard','foro','1','0',0),(404,NULL,96,'com_obrens','area_de_ensayo','1','0',0),(406,NULL,111,'com_tesoreria','tesoreria','1','0',0),(405,NULL,119,'com_cuotas','cuotas_de_miembros','1','0',0),(403,NULL,93,'com_events','calendario_de_eventos','1','0',0),(402,NULL,138,'com_joomap','mapa','1','0',0),(401,NULL,103,'com_login','acceso_privado','1','0',0),(400,NULL,1,'com_frontpage','inicio','1','0',0);
|
||
|
|
/*!40000 ALTER TABLE `mos_opensef_sef_component` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_opensef_sef_site`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_opensef_sef_site`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_opensef_sef_site` (
|
||
|
|
`id` int(6) unsigned NOT NULL auto_increment,
|
||
|
|
`host` varchar(128) default NULL,
|
||
|
|
`base_url` varchar(255) NOT NULL default '',
|
||
|
|
`title` varchar(32) NOT NULL,
|
||
|
|
`published` char(1) NOT NULL default '1',
|
||
|
|
`access` tinyint(1) unsigned NOT NULL default '0',
|
||
|
|
`sitename` varchar(255) default NULL,
|
||
|
|
`lang` varchar(32) default NULL,
|
||
|
|
`locale` char(5) default NULL,
|
||
|
|
`offset` char(3) default NULL,
|
||
|
|
`offline` char(1) default NULL,
|
||
|
|
`debug` char(1) default NULL,
|
||
|
|
`error_reporting` char(1) default NULL,
|
||
|
|
`metadesc` text,
|
||
|
|
`metakeys` text,
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
UNIQUE KEY `host` (`host`(50),`base_url`(100),`lang`(15))
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_opensef_sef_site`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_opensef_sef_site` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_opensef_sef_site` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_opensef_sef_site` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_poll_data`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_poll_data`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_poll_data` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`pollid` int(4) NOT NULL default '0',
|
||
|
|
`text` text NOT NULL,
|
||
|
|
`hits` int(11) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
KEY `pollid` (`pollid`,`text`(1))
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_poll_data`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_poll_data` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_poll_data` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_poll_data` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_poll_date`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_poll_date`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_poll_date` (
|
||
|
|
`id` bigint(20) NOT NULL auto_increment,
|
||
|
|
`date` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`vote_id` int(11) NOT NULL default '0',
|
||
|
|
`poll_id` int(11) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
KEY `poll_id` (`poll_id`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_poll_date`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_poll_date` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_poll_date` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_poll_date` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_poll_menu`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_poll_menu`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_poll_menu` (
|
||
|
|
`pollid` int(11) NOT NULL default '0',
|
||
|
|
`menuid` int(11) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`pollid`,`menuid`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_poll_menu`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_poll_menu` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_poll_menu` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_poll_menu` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_polls`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_polls`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_polls` (
|
||
|
|
`id` int(11) unsigned NOT NULL auto_increment,
|
||
|
|
`title` varchar(100) NOT NULL default '',
|
||
|
|
`voters` int(9) NOT NULL default '0',
|
||
|
|
`checked_out` int(11) NOT NULL default '0',
|
||
|
|
`checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`published` tinyint(1) NOT NULL default '0',
|
||
|
|
`access` int(11) NOT NULL default '0',
|
||
|
|
`lag` int(11) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`id`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_polls`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_polls` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_polls` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_polls` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_redirection`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_redirection`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_redirection` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`cpt` int(11) NOT NULL default '0',
|
||
|
|
`rank` int(11) NOT NULL default '0',
|
||
|
|
`oldurl` varchar(255) NOT NULL default '',
|
||
|
|
`newurl` varchar(255) NOT NULL default '',
|
||
|
|
`dateadd` date NOT NULL default '0000-00-00',
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
KEY `newurl` (`newurl`),
|
||
|
|
KEY `rank` (`rank`),
|
||
|
|
KEY `oldurl` (`oldurl`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=2751 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_redirection`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_redirection` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_redirection` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_redirection` (`id`, `cpt`, `rank`, `oldurl`, `newurl`, `dateadd`) VALUES (1179,13,0,'quienes_somos/sala_de_prensa/agenda_','','2009-03-14'),(1180,3,0,'actuaciones_1/','','2009-03-14'),(1181,954,0,'que_hacemos/repertorio/pag-2.html','index.php?option=com_content&Itemid=47&id=70&lang=es&limit=14&limitstart=14&task=blogcategory','0000-00-00'),(451,15,0,'~matritum/','','2009-03-13'),(1173,22,0,'memorias/memorias/memoria_del_coro_desde_septiembre_2006_hasta_septiembre_2007.html','index.php?option=com_content&Itemid=129&id=166&lang=es&task=view','0000-00-00'),(1174,15,0,'memorias/memorias/memoria_curso_2005/2006.html','index.php?option=com_content&Itemid=129&id=156&lang=es&task=view','0000-00-00'),(1175,7,0,'contacto.html','','2009-03-14'),(1176,23,0,'quienes_somos/sala_de_prensa_1/','','2009-03-14'),(1177,11,0,'historia_y_componentes/coro_matritum_cantat.html','','2009-03-14'),(1178,6163,0,'actuaciones/','index.php?option=com_content&Itemid=97&id=10&lang=es&limit=5&limitstart=0&task=blogsection','0000-00-00'),(907,49,0,'acceso_privado/','','2009-03-13'),(1172,35,0,'memorias/memorias/memoria_coro_octubre_2007_septiembre_2008.html','index.php?option=com_content&Itemid=129&id=297&lang=es&task=view','0000-00-00'),(1166,692,0,'actuaciones/pag-7.html','index.php?option=com_content&Itemid=97&id=10&lang=es&limit=5&limitstart=30&task=blogsection','0000-00-00'),(1167,791,0,'actuaciones/pag-8.html','index.php?option=com_content&Itemid=97&id=10&lang=es&limit=5&limitstart=35&task=blogsection','0000-00-00'),(1168,608,0,'actuaciones/pag-9.html','index.php?option=com_content&Itemid=97&id=10&lang=es&limit=5&limitstart=40&task=blogsection','0000-00-00'),(1169,652,0,'actuaciones/pag-10.html','index.php?option=com_content&Itemid=97&id=10&lang=es&limit=5&limitstart=45&task=blogsection','0000-00-00'),(1170,10,0,'mapa/','','2009-03-14'),(1171,104,0,'memorias/memorias/memoria_coro_octubre_2008_septiembre_2009.html','index.php?option=com_content&Itemid=129&id=335&lang=es&task=view','0000-00-00'),(1165,650,0,'actuaciones/pag-6.html','index.php?option=com_content&Itemid=97&id=10&lang=es&limit=5&limitstart=25&task=blogsection','0000-00-00'),(1159,2541,0,'quienes_somos/sala_de_prensa/','index.php?option=com_content&Itemid=45&id=120&lang=es&limit=5&limitstart=0&task=blogcategory','0000-00-00'),(1036,147,0,'actuaciones_4','','2009-03-13'),(1164,674,0,'actuaciones/pag-5.html','index.php?option=com_content&Itemid=97&id=10&lang=es&limit=5&limitstart=20&task=blogsection','0000-00-00'),(1163,745,0,'actuaciones/pag-4.html','index.php?option=com_content&Itemid=97&id=10&lang=es&limit=5&limitstart=15&task=blogsection','0000-00-00'),(1162,864,0,'actuaciones/pag-3.html','index.php?option=com_content&Itemid=97&id=10&lang=es&limit=5&limitstart=10&task=blogsection','0000-00-00'),(1160,18,0,'actuaciones_2/','','2009-03-14'),(1161,987,0,'actuaciones/pag-2.html','index.php?option=com_content&Itemid=97&id=10&lang=es&limit=5&limitstart=5&task=blogsection','0000-00-00'),(1158,414,0,'quienes_somos/sala_de_prensa/pag-3.html','index.php?option=com_content&Itemid=45&id=120&lang=es&limit=5&limitstart=10&task=blogcategory','0000-00-00'),(1156,4,0,'actuaciones_9/','','2009-03-14'),(1157,454,0,'quienes_somos/sala_de_prensa/pag-2.html','index.php?option=com_content&Itemid=45&id=120&lang=es&limit=5&limitstart=5&task=blogcategory','0000-00-00'),(1155,23,0,'actuaciones/ano_2008/concierto_con_la_orquesta_sinfonica_de_madrid.html','','2009-03-14'),(1064,1079,0,'contrasena_perdida.html','index.php?option=com_registration&Itemid=103&lang=es&task=lostPassword','0000-00-00'),(1053,3416,0,'quienes_somos/contacta_con_nosotros/direccion_de_contacto.html','index.php?option=com_content&Itemid=135&id=13&lang=es&task=view','0000-00-00'),(1054,35765,0,'comunicados/','index.php?option=com_content&Itemid=112&id=12&lang=es&task=blogsection','0000-00-00'),(1055,577,0,'lugar_de_ensayo/academia_de_musica_y_danza_mushi.html','index.php?option=com_contact&Itemid=107&contact_id=4&lang=es&task=view','0000-00-00'),(1056,124,0,'estatutos/','index.php?option=com_content&Itemid=130&id=16&lang=es&t
|
||
|
|
/*!40000 ALTER TABLE `mos_redirection` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_redirection_OLD`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_redirection_OLD`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_redirection_OLD` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`cpt` int(11) NOT NULL default '0',
|
||
|
|
`oldurl` varchar(100) NOT NULL default '',
|
||
|
|
`newurl` varchar(150) NOT NULL default '',
|
||
|
|
`dateadd` date NOT NULL default '0000-00-00',
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
KEY `newurl` (`newurl`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_redirection_OLD`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_redirection_OLD` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_redirection_OLD` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_redirection_OLD` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_sb_attachments`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_sb_attachments`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_sb_attachments` (
|
||
|
|
`mesid` int(11) NOT NULL default '0',
|
||
|
|
`filelocation` text NOT NULL,
|
||
|
|
KEY `mesid` (`mesid`),
|
||
|
|
KEY `mesid_2` (`mesid`),
|
||
|
|
KEY `mesid_3` (`mesid`),
|
||
|
|
KEY `mesid_4` (`mesid`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_sb_attachments`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_sb_attachments` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_sb_attachments` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_sb_attachments` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_sb_categories`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_sb_categories`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_sb_categories` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`parent` int(11) default '0',
|
||
|
|
`name` tinytext,
|
||
|
|
`cat_emoticon` tinyint(4) NOT NULL default '0',
|
||
|
|
`locked` tinyint(4) NOT NULL default '0',
|
||
|
|
`alert_admin` tinyint(4) NOT NULL default '0',
|
||
|
|
`moderated` tinyint(4) NOT NULL default '0',
|
||
|
|
`moderators` varchar(15) default NULL,
|
||
|
|
`pub_access` tinyint(4) default '1',
|
||
|
|
`pub_recurse` tinyint(4) default '1',
|
||
|
|
`admin_access` tinyint(4) default '0',
|
||
|
|
`admin_recurse` tinyint(4) default '1',
|
||
|
|
`ordering` tinyint(4) NOT NULL default '0',
|
||
|
|
`future2` int(11) default '0',
|
||
|
|
`published` tinyint(4) NOT NULL default '0',
|
||
|
|
`checked_out` tinyint(4) NOT NULL default '0',
|
||
|
|
`checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`review` tinyint(4) NOT NULL default '0',
|
||
|
|
`hits` int(11) NOT NULL default '0',
|
||
|
|
`description` text NOT NULL,
|
||
|
|
UNIQUE KEY `catid` (`id`),
|
||
|
|
KEY `catparent` (`parent`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_sb_categories`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_sb_categories` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_sb_categories` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_sb_categories` (`id`, `parent`, `name`, `cat_emoticon`, `locked`, `alert_admin`, `moderated`, `moderators`, `pub_access`, `pub_recurse`, `admin_access`, `admin_recurse`, `ordering`, `future2`, `published`, `checked_out`, `checked_out_time`, `review`, `hits`, `description`) VALUES (3,0,'Foro Matritum',0,0,0,0,NULL,-1,0,30,0,1,0,1,0,'0000-00-00 00:00:00',0,0,''),(4,3,'Foro Matritum',0,0,0,0,NULL,-1,0,30,0,1,0,1,0,'0000-00-00 00:00:00',0,0,'');
|
||
|
|
/*!40000 ALTER TABLE `mos_sb_categories` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_sb_messages`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_sb_messages`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_sb_messages` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`parent` int(11) default '0',
|
||
|
|
`thread` int(11) default '0',
|
||
|
|
`catid` int(11) NOT NULL default '0',
|
||
|
|
`name` tinytext,
|
||
|
|
`userid` int(11) NOT NULL default '0',
|
||
|
|
`email` tinytext,
|
||
|
|
`subject` tinytext,
|
||
|
|
`time` int(11) NOT NULL default '0',
|
||
|
|
`ip` varchar(15) default NULL,
|
||
|
|
`topic_emoticon` int(11) NOT NULL default '0',
|
||
|
|
`locked` tinyint(4) NOT NULL default '0',
|
||
|
|
`hold` tinyint(4) NOT NULL default '0',
|
||
|
|
`ordering` int(11) default '0',
|
||
|
|
`hits` int(11) default '0',
|
||
|
|
`moved` tinyint(4) default '0',
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
KEY `thread` (`thread`),
|
||
|
|
KEY `id` (`id`),
|
||
|
|
KEY `parent` (`parent`),
|
||
|
|
KEY `catid` (`catid`),
|
||
|
|
KEY `ip` (`ip`),
|
||
|
|
KEY `userid` (`userid`),
|
||
|
|
KEY `time` (`time`,`hold`),
|
||
|
|
KEY `time_2` (`time`,`hold`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=313 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_sb_messages`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_sb_messages` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_sb_messages` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_sb_messages` (`id`, `parent`, `thread`, `catid`, `name`, `userid`, `email`, `subject`, `time`, `ip`, `topic_emoticon`, `locked`, `hold`, `ordering`, `hits`, `moved`) VALUES (1,0,1,4,'Webmaster Matritum Cantat',62,'matritumcantat@rodax-software.com','Encuentro de coros',1116357029,'80.58.5.109',0,0,0,0,157,NULL),(2,1,1,4,'Webmaster Matritum Cantat',62,'matritumcantat@rodax-software.com','Re:Encuentro de coros',1117188142,'80.58.5.109',0,0,0,0,0,NULL),(3,2,1,4,'Helena Torrente Sierra',75,'h_torrente@hotmail.com','Re:Encuentro de coros',1117397135,'80.103.204.173',0,0,0,0,0,NULL),(4,3,1,4,'Webmaster Matritum Cantat',62,'matritumcantat@rodax-software.com','Re:Encuentro de coros',1117459498,'80.58.5.109',0,0,0,0,0,NULL),(5,4,1,4,'Helena Torrente Sierra',75,'h_torrente@hotmail.com','Re:Encuentro de coros',1117489116,'80.103.204.124',0,0,0,0,0,NULL),(6,5,1,4,'Webmaster Matritum Cantat',62,'matritumcantat@rodax-software.com','Re:Encuentro de coros',1117525445,'80.58.5.109',0,0,0,0,0,NULL),(7,6,1,4,'Helena Torrente Sierra',75,'h_torrente@hotmail.com','Re:Encuentro de coros',1117660096,'80.103.204.4',0,0,0,0,0,NULL),(8,0,8,4,'Webmaster Matritum Cantat',62,'matritumcantat@rodax-software.com','Final de curso',1118042774,'80.58.5.109',0,0,0,0,112,NULL),(9,8,8,4,'Helena Torrente Sierra',75,'h_torrente@hotmail.com','Re:Final de curso',1120392450,'80.103.204.16',0,0,0,0,0,NULL),(12,9,8,4,'Jesús Lacuey Urio',95,'jlacuey@auna.com','SALUDOS',1122052329,'82.158.54.4',0,0,0,0,0,NULL),(13,0,13,4,'Helena Torrente Sierra',75,'h_torrente@hotmail.com','nuevo curso',1125511136,'80.103.207.39',0,0,0,0,117,NULL),(14,0,14,4,'Webmaster Matritum Cantat',62,'matritumcantat@rodax-software.com','Foro habilitado otra vez',1127382919,'81.39.132.61',7,0,0,0,52,0),(15,14,14,4,'Helena Torrente Sierra',75,'h_torrente@hotmail.com','Re:Foro habilitado otra vez',1127414596,'80.103.200.133',0,0,0,0,0,0),(16,0,16,4,'Helena Torrente Sierra',75,'h_torrente@hotmail.com','para blasillo',1127736719,'80.58.9.42',0,0,0,0,64,0),(17,0,17,4,'Helena Torrente Sierra',75,'h_torrente@hotmail.com','cd',1129661526,'80.103.195.178',0,0,0,0,77,0),(18,17,17,4,'Webmaster Matritum Cantat',62,'matritumcantat@rodax-software.com','Re:cd',1129888115,'81.36.19.76',0,0,0,0,0,0),(19,0,19,4,'Helena Torrente Sierra',75,'h_torrente@hotmail.com','Día de Sta. Cecilia',1132687094,'80.103.202.230',0,0,0,0,50,0),(20,19,19,4,'Webmaster Matritum Cantat',62,'matritumcantat@rodax-software.com','Re:Día de Sta. Cecilia',1133522214,'81.39.135.21',0,0,0,0,0,0),(21,0,21,4,'Francisco Jiménez Alonso',93,'gades_04@hotmail.com','NAVIDAD-2005',1133821442,'81.34.202.91',0,0,0,0,75,0),(22,21,21,4,'Helena Torrente Sierra',75,'h_torrente@hotmail.com','Re:NAVIDAD-2005',1133979078,'80.103.188.111',0,0,0,0,0,0),(23,22,21,4,'Lurdes Martínez Lorente',123,'lurdeslorente97@terra.es','Re:NAVIDAD-2005',1134427508,'81.44.212.97',6,0,0,0,0,0),(24,0,24,4,'Francisco Jiménez Alonso',93,'gades_04@hotmail.com','CUMPLEAÑOS',1135026515,'217.125.200.47',0,0,0,0,56,0),(25,0,25,4,'Amparo Sánchez Marcos',69,'asanchezm@mtas.es','Felicidades',1136219514,'195.53.48.100',0,0,0,0,114,0),(26,25,25,4,'Helena Torrente Sierra',75,'h_torrente@hotmail.com','Re:Felicidades',1136301104,'80.103.181.129',0,0,0,0,0,0),(27,25,25,4,'MaríaTarín Martín',137,'mptarin@hotmail.com','Re:Felicidades',1136316018,'83.40.159.41',0,0,0,0,0,0),(28,0,28,4,'Lurdes Martínez Lorente',123,'lurdeslorente97@terra.es','Felicitación PLAZA DE ORIENTE',1136680581,'83.57.217.217',4,0,0,0,95,0),(29,0,29,4,'Jesús Lacuey Urio',95,'jlacuey@auna.com','Gracias y propuesta',1138051227,'82.158.50.19',7,0,0,0,164,0),(30,29,29,4,'Gonzalo Garcia Pulpeiro',142,'ggarciapulpeiro@ya.com','Re:Gracias y propuesta',1138634467,'83.36.208.216',6,0,0,0,0,0),(31,30,29,4,'Gonzalo Garcia Pulpeiro',142,'ggarciapulpeiro@ya.com','Re:Gracias y propuesta',1138634639,'83.36.208.216',0,0,0,0,0,0),(32,31,29,4,'Helena Torrente Sierra',75,'h_torrente@hotmail.com','Re:Gracias y propuesta',1138702642,'80.35.214.80',0,0,0,0,0,0),(33,30,29,4,'Javier Blanco Rubio',100,'jbrcoro@hotmail.c
|
||
|
|
/*!40000 ALTER TABLE `mos_sb_messages` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_sb_messages_text`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_sb_messages_text`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_sb_messages_text` (
|
||
|
|
`mesid` int(11) NOT NULL default '0',
|
||
|
|
`message` text NOT NULL,
|
||
|
|
UNIQUE KEY `mesid` (`mesid`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_sb_messages_text`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_sb_messages_text` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_sb_messages_text` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_sb_messages_text` (`mesid`, `message`) VALUES (1,'Buenas noches, voy a inagurar el foro con este tema, ya que nos dara que comentar, espero alguien escriba.\r\n\r\nUn saludo'),(2,'Animaros a escribir, puede ser interesante que pongais cosas en común en el foro.\r\n\r\nUn saludo'),(3,'nada majete\r\nque no te hacemos mucho caso.\r\nbesos a todos'),(4,'Una cosa ha quedado clara, Helena es la más enrollá del coro jejejejje, bueno de momento la única enrollá.\r\n\r\nUn saludo'),(5,'lo mismo nos carteamos sólo el webmaster y yo?\r\nvenga ánimo'),(6,'Bueno hoy viene el coro de las Américas no???. Les invitareis a unas empanadillas de esas que manchan no????? ;)\r\n\r\nUn Saludo'),(7,'pues nada, que seguimos aquí mano a mano: torrente y ÉL.\r\nY yo encantada, que queréis que os diga...\r\nNada chicas, nada... que no tengáis prisa¿eh??'),(8,'Pues nada, aquí dejo otra línea de conversación. ¿Te parece bien Helena? ;D'),(9,'podemos tener líneas y líneas, pero nos hacen falta \\"foreros\\" Animaros¡¡¡¡¡\r\n\r\nEnhorabuena a todos los del coro que colaboramos en la zarzuela que organizó y montó mushi. nos salío más que decente.\r\n\r\nen fin después de un fin de curso tan denso, yo por lo menos me voy quedando ploff....'),(12,'Antes de las vacaciones saludos a todas/os y agradeceros vuestro interés y compañerismo (sobre todo cuando estuve con lo del ojo)\r\nEn este año he echado en falta alguna salida fuera de Madrid. Creo que hay que cuidar este aspecto y si no salen conciertos fuera de Madrid, se orfaniza un día de salida y diversión juntos.\r\nUn abrazo.'),(13,'saludos a todos. de nuevo estamos aquí. espero que tengamos un curso denso y que lo disfrutemos. besos y hasta el ensayo próximo.'),(14,'Hola. Ya está puesto en marcha otra vez el foro después de unos \\"problemillas\\" técnicos que había. :blink: \r\nGracias por avisarnos :) \r\n\r\nUn saludo.\r\nDavid.'),(15,'menos mal....\r\nasi podre seguir comunicandome con muxa, muxa gente.......\r\nes broma, animaros\r\ngracias david y roberto\r\nbesos'),(16,'animo y muchos besos,que estos dias de después suelen ser los peores.'),(17,'fué divertido grabarlo a pesar del cable,de los medios y cuartos tonos,de los cuarto y mitad de lo mismo, del frío, de los caramelos de eucalipto, de los tés con limón, de las ganas de pis con tanto té, de los \\"tripis\\" de mi amparo, de las juanolas de mercedes, de los clinex y del respirbien atascao por la nariz.\r\nEn fin que me alegro porque va a salir el primer cd matritunero. besos'),(18,'Espero que tanto sacrificio tenga sus frutos, yo lo pueda oír y así poderos criticar o alabar. ;) \r\n\r\nUn saludo a mi más ferviente escritora del foro.'),(19,'Hoy día 22 es el día de la Música, y hay que celebrarlo un poquito.\r\nA la mayoria de nosotros no nos da de comer, pero nos hace estar unidos y disfrutar al cantar, que es lo que nos gusta. \r\nPodía haberos mandado un mensaje de correo con este recordatorio que me asalta de repente al abrir la página y recordar la fecha de hoy, pero he preferido usar el foro para que os ANIMÉIS a utilizarlo.\r\n\r\nNuestro webmaster quiere ser NUESTRO webmaster y no sólo MI webmaster. Darle una alegria y escribir.\r\n\r\nYo por mi parte le mando un beso.'),(20,'Beso recibido. :laugh: \r\n\r\nP.D: Muchas gracias por pensar en mi.'),(21,'DESPUES DE HABERSE PASADO LOS NERVIOS (LOS MIOS) DEL PRIMER CONCIERTO DE NAVIDAD Y LA PRESENTACION DEL CD. OS DESEO A TODOS LOS COMPAÑEROS/AS (INCLUIDO DIRE)UNAS FELICES FIESTAS.\r\n\r\nQUE EL 2006 NOS DEPARE MUCHA ILUSION Y EXISTOS MUSICALES YA QUE SOMOS UN FORMULA 1 (MODESTIA APARTE) EN LAS MANOS DE NUESTRO \\"FERNANDO ALONSO\\" PARTICULAR.\r\n\r\n¡FELIZ NAVIDAD!'),(22,'feliz navidad y feliz bienvenida al foro\r\n\r\nun abrazo. helena (con H, please. esa h es un
|
||
|
|
/*!40000 ALTER TABLE `mos_sb_messages_text` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_sb_moderation`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_sb_moderation`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_sb_moderation` (
|
||
|
|
`catid` int(11) NOT NULL default '0',
|
||
|
|
`userid` int(11) NOT NULL default '0',
|
||
|
|
`future1` tinyint(4) default '0',
|
||
|
|
`future2` int(11) default '0',
|
||
|
|
PRIMARY KEY (`catid`,`userid`),
|
||
|
|
KEY `catid` (`catid`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_sb_moderation`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_sb_moderation` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_sb_moderation` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_sb_moderation` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_sb_sessions`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_sb_sessions`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_sb_sessions` (
|
||
|
|
`userid` int(11) NOT NULL default '0',
|
||
|
|
`allowed` text,
|
||
|
|
`lasttime` int(11) NOT NULL default '0',
|
||
|
|
`readtopics` text,
|
||
|
|
PRIMARY KEY (`userid`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_sb_sessions`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_sb_sessions` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_sb_sessions` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_sb_sessions` (`userid`, `allowed`, `lasttime`, `readtopics`) VALUES (65,'3,4',1337588499,'305'),(62,'3,4',1279625338,'239,237'),(63,'1,2',1108574354,''),(75,'3,4',1346504746,''),(100,'3,4',1341915506,'310,311'),(70,'3,4',1326802163,'288'),(77,'3,4',1327832036,'290'),(88,'3,4',1341756122,'310,311,305'),(85,'na',1199721413,''),(80,'3,4',1283192364,''),(93,'3,4',1284317869,''),(89,'na',1116802613,'1'),(68,'na',1119098197,''),(116,'na',1122482256,'8'),(73,'3,4',1309773462,'272'),(111,'3,4',1346267635,''),(95,'3,4',1294071265,'254,253'),(115,'na',1157489425,''),(131,'3,4',1274634858,'208'),(127,'na',1152860863,'39,36'),(120,'3,4',1346659155,''),(69,'3,4',1304942397,'271'),(110,'na',1127920831,''),(94,'na',1131619360,''),(112,'na',1200311517,'106,105'),(78,'na',1125921333,''),(123,'3,4',1171464205,'61,70'),(92,'na',1125922241,''),(84,'na',1141633816,''),(132,'na',1193690099,'91,63'),(98,'na',1126121460,'13,8,1'),(135,'na',1135085301,'17,21,24'),(119,'na',1171231581,'66,67,69,70,72'),(134,'3,4',1285259524,'240'),(136,'3,4',1283765280,''),(114,'3,4',1236706290,''),(104,'na',1138200425,'25'),(81,'3,4',1345132938,''),(67,'na',1127736304,''),(108,'na',1167764900,'61,53'),(97,'na',1133552822,''),(99,'3,4',1267192178,'207,205'),(138,'na',1203888441,''),(105,'3,4',1339684693,''),(139,'na',1131040069,'17'),(71,'3,4',1310632867,'272'),(86,'na',1171531536,''),(83,'3,4',1259677390,'193,191,189,194'),(141,'3,4',1330881457,'297,295,293,290,288'),(137,'na',1152952573,'47'),(143,'3,4',1150736357,'40,39'),(142,'3,4',1346704810,''),(144,'3,4',1243234792,''),(148,'na',1142070616,'34,36,29'),(150,'3,4',1339326571,'308'),(149,'3,4',1257873049,'184,173,186'),(152,'na',1213541684,''),(140,'na',1146601651,'40,39,29,34,24'),(147,'3,4',1346766848,''),(158,'na',1189492337,''),(157,'na',1220991974,''),(146,'na',1158599480,''),(156,'na',1170446613,'64'),(154,'3,4',1336464591,'301,303,304,305,300,297'),(151,'3,4',1285449566,''),(153,'3,4',1294006040,'253,254'),(145,'3,4',1341908512,'312'),(109,'na',1193762829,''),(166,'na',1197971565,'105'),(160,'na',1171724731,'72'),(133,'3,4',1346501248,''),(162,'3,4',1243090078,'153,152,150'),(155,'3,4',1346327323,''),(168,'3,4',1291736703,'249,243,240,237,239,235,231,228'),(126,'3,4',1283156802,''),(122,'3,4',1346759255,''),(174,'3,4',1242150493,'153,152,148,16'),(183,'3,4',1338241032,'294,303,301,297,288,286,280,275'),(164,'na',1214680906,''),(177,'3,4',1271767255,'218'),(173,'na',1194181333,''),(175,'na',1226154522,''),(172,'na',1228046090,'130'),(176,'3,4',1295454657,'256'),(167,'3,4',1342470920,''),(191,'3,4',1240338068,'144,150,148,152,153'),(178,'na',1201877799,'102'),(182,'3,4',1340132515,'311'),(165,'3,4',1272387600,'218'),(169,'3,4',1241450710,'148,150'),(185,'3,4',1328700185,'290,292'),(171,'na',1212083372,'115'),(186,'na',1213868175,'121'),(181,'3,4',1340177246,'311,310'),(184,'3,4',1272812267,'207,218'),(195,'3,4',1345316935,'312'),(190,'na',1317591607,'276,277'),(197,'3,4',1346067995,''),(192,'3,4',1236982039,'144,143,141,139,132,129'),(198,'3,4',1258113988,'182'),(170,'3,4',1339331500,'305,308'),(196,'3,4',1271019512,'210'),(91,'3,4',1346756541,''),(189,'3,4',1342780702,''),(200,'3,4',1346583182,''),(209,'3,4',1345728046,''),(194,'3,4',1295792929,'256,254,255'),(202,'3,4',1317228084,'276,277'),(201,'3,4',1295891785,'256,254,253,251,250,243'),(208,'3,4',1298814702,'261'),(206,'3,4',1318502573,'275'),(211,'3,4',1343809731,'312'),(210,'3,4',1346487647,''),(213,'3,4',1341432661,''),(212,'3,4',1342822642,'312,311,310,308,303');
|
||
|
|
/*!40000 ALTER TABLE `mos_sb_sessions` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_sb_smileys`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_sb_smileys`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_sb_smileys` (
|
||
|
|
`id` int(4) NOT NULL auto_increment,
|
||
|
|
`code` varchar(12) NOT NULL default '',
|
||
|
|
`location` varchar(50) NOT NULL default '',
|
||
|
|
`greylocation` varchar(60) NOT NULL default '',
|
||
|
|
`emoticonbar` tinyint(4) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`id`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=38 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_sb_smileys`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_sb_smileys` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_sb_smileys` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_sb_smileys` (`id`, `code`, `location`, `greylocation`, `emoticonbar`) VALUES (1,'B)','cool.png','cool-grey.png',1),(8,';)','wink.png','wink-grey.png',1),(3,':)','smile.png','smile-grey.png',1),(10,':P','tongue.png','tongue-grey.png',1),(6,':laugh:','laughing.png','laughing-grey.png',1),(17,':ohmy:','shocked.png','shocked-grey.png',1),(22,':sick:','sick.png','sick-grey.png',1),(14,':angry:','angry.png','angry-grey.png',1),(25,':blink:','blink.png','blink-grey.png',1),(2,':(','sad.png','sad-grey.png',1),(16,':unsure:','unsure.png','unsure-grey.png',1),(27,':kiss:','kissing.png','kissing-grey.png',1),(29,':woohoo:','w00t.png','w00t-grey.png',1),(21,':lol:','grin.png','grin-grey.png',1),(23,':silly:','silly.png','silly-grey.png',1),(35,':pinch:','pinch.png','pinch-grey.png',1),(30,':side:','sideways.png','sideways-grey.png',1),(34,':whistle:','whistling.png','whistling-grey.png',1),(33,':evil:','devil.png','devil-grey.png',1),(31,':S','dizzy.png','dizzy-grey.png',1),(26,':blush:','blush.png','blush-grey.png',1),(7,':cheer:','cheerful.png','cheerful-grey.png',1),(18,':huh:','wassat.png','wassat-grey.png',1),(19,':dry:','ermm.png','ermm-grey.png',1),(4,':-)','smile.png','smile-grey.png',0),(5,':-(','sad.png','sad-grey.png',0),(9,';-)','wink.png','wink-grey.png',0),(37,':D','laughing.png','laughing-grey.png',0),(12,':X','sick.png','sick-grey.png',0),(13,':x','sick.png','sick-grey.png',0),(15,':mad:','angry.png','angry-grey.png',0),(20,':ermm:','ermm.png','ermm-grey.png',0),(24,':y32b4:','silly.png','silly-grey.png',0),(28,':rolleyes:','blink.png','blink-grey.png',0),(32,':s','dizzy.png','dizzy-grey.png',0),(36,':p','tongue.png','tongue-grey.png',0);
|
||
|
|
/*!40000 ALTER TABLE `mos_sb_smileys` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_sb_subscriptions`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_sb_subscriptions`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_sb_subscriptions` (
|
||
|
|
`thread` int(11) NOT NULL default '0',
|
||
|
|
`userid` int(11) NOT NULL default '0',
|
||
|
|
`future1` int(11) default '0',
|
||
|
|
KEY `thread` (`thread`),
|
||
|
|
KEY `userid` (`userid`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_sb_subscriptions`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_sb_subscriptions` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_sb_subscriptions` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_sb_subscriptions` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_sb_users`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_sb_users`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_sb_users` (
|
||
|
|
`userid` int(11) NOT NULL default '0',
|
||
|
|
`view` varchar(8) NOT NULL default 'flat',
|
||
|
|
`signature` text,
|
||
|
|
`moderator` int(11) default '0',
|
||
|
|
`ordering` int(11) default '0',
|
||
|
|
`posts` int(11) default '0',
|
||
|
|
`avatar` varchar(50) default NULL,
|
||
|
|
`karma` int(11) default '0',
|
||
|
|
`karma_time` int(11) default '0',
|
||
|
|
PRIMARY KEY (`userid`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_sb_users`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_sb_users` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_sb_users` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_sb_users` (`userid`, `view`, `signature`, `moderator`, `ordering`, `posts`, `avatar`, `karma`, `karma_time`) VALUES (65,'flat',NULL,0,0,11,NULL,0,0),(62,'flat',NULL,1,0,11,NULL,0,0),(63,'flat',NULL,0,0,1,'gallery/redflower.gif',0,0),(75,'flat',NULL,0,0,51,NULL,0,0),(100,'flat',NULL,0,0,15,NULL,0,0),(70,'flat',NULL,0,0,0,NULL,0,0),(77,'flat',NULL,0,0,0,NULL,0,0),(88,'flat',NULL,0,0,2,NULL,0,0),(85,'flat',NULL,0,0,0,NULL,0,0),(80,'flat',NULL,0,0,0,NULL,0,0),(93,'flat','',0,0,11,'',0,0),(140,'flat',NULL,0,0,0,NULL,0,0),(152,'flat',NULL,0,0,3,NULL,0,0),(150,'flat',NULL,0,0,0,NULL,0,0),(147,'flat',NULL,0,0,58,NULL,0,0),(146,'flat',NULL,0,0,0,NULL,0,0),(154,'flat',NULL,0,0,1,NULL,0,0),(89,'flat',NULL,0,0,0,NULL,0,0),(68,'flat',NULL,0,0,0,NULL,0,0),(73,'flat',NULL,0,0,0,NULL,0,0),(95,'flat',NULL,0,0,4,NULL,0,0),(116,'flat',NULL,0,0,0,NULL,0,0),(111,'flat','',0,0,2,'',0,0),(162,'flat',NULL,0,0,0,NULL,0,0),(160,'flat',NULL,0,0,0,NULL,0,0),(122,'flat',NULL,0,0,6,NULL,0,0),(126,'flat',NULL,0,0,0,NULL,0,0),(155,'flat','',0,0,31,'',0,0),(166,'flat',NULL,0,0,2,NULL,0,0),(168,'flat',NULL,0,0,0,NULL,0,0),(115,'flat',NULL,0,0,4,NULL,0,0),(131,'flat',NULL,0,0,2,NULL,0,0),(127,'flat',NULL,0,0,0,NULL,0,0),(69,'flat',NULL,0,0,8,NULL,0,0),(94,'flat',NULL,0,0,0,NULL,0,0),(78,'flat',NULL,0,0,0,NULL,0,0),(92,'flat',NULL,0,0,0,NULL,0,0),(84,'flat',NULL,0,0,0,NULL,0,0),(120,'flat',NULL,0,0,0,NULL,0,0),(123,'flat',NULL,0,0,2,NULL,0,0),(132,'flat',NULL,0,0,2,NULL,0,0),(98,'flat',NULL,0,0,0,NULL,0,0),(135,'flat',NULL,0,0,0,NULL,0,0),(119,'flat',NULL,0,0,0,NULL,0,0),(112,'flat',NULL,0,0,0,NULL,0,0),(134,'flat',NULL,0,0,0,NULL,0,0),(110,'flat',NULL,0,0,0,NULL,0,0),(114,'flat',NULL,0,0,0,NULL,0,0),(136,'flat',NULL,0,0,0,NULL,0,0),(104,'flat',NULL,0,0,0,NULL,0,0),(67,'flat',NULL,0,0,0,NULL,0,0),(108,'flat',NULL,0,0,0,NULL,0,0),(81,'flat',NULL,0,0,3,NULL,0,0),(97,'flat',NULL,0,0,0,NULL,0,0),(99,'flat',NULL,0,0,0,NULL,0,0),(138,'flat',NULL,0,0,3,NULL,0,0),(71,'flat',NULL,0,0,0,NULL,0,0),(139,'flat',NULL,0,0,0,NULL,0,0),(141,'flat',NULL,0,0,11,NULL,0,0),(149,'flat',NULL,0,0,2,NULL,0,0),(86,'flat',NULL,0,0,0,NULL,0,0),(137,'flat',NULL,0,0,2,NULL,0,0),(142,'flat',NULL,0,0,4,NULL,0,0),(105,'flat',NULL,0,0,2,NULL,0,0),(83,'flat',NULL,0,0,0,NULL,0,0),(144,'flat',NULL,0,0,0,NULL,0,0),(143,'flat',NULL,0,0,0,NULL,0,0),(148,'flat',NULL,0,0,0,NULL,0,0),(157,'flat',NULL,0,0,1,NULL,0,0),(156,'flat',NULL,0,0,3,NULL,0,0),(158,'flat',NULL,0,0,4,NULL,0,0),(151,'flat',NULL,0,0,0,NULL,0,0),(153,'flat',NULL,0,0,0,NULL,0,0),(133,'flat',NULL,0,0,5,NULL,0,0),(145,'flat',NULL,0,0,0,NULL,0,0),(109,'flat',NULL,0,0,0,NULL,0,0),(164,'flat',NULL,0,0,0,NULL,0,0),(175,'flat',NULL,0,0,1,NULL,0,0),(172,'flat',NULL,0,0,0,NULL,0,0),(173,'flat',NULL,0,0,0,NULL,0,0),(177,'flat',NULL,0,0,0,NULL,0,0),(167,'flat','',0,0,37,'',0,0),(176,'flat',NULL,0,0,0,NULL,0,0),(174,'flat',NULL,0,0,0,NULL,0,0),(169,'flat',NULL,0,0,0,NULL,0,0),(178,'flat',NULL,0,0,0,NULL,0,0),(171,'flat',NULL,0,0,0,NULL,0,0),(182,'flat',NULL,0,0,1,NULL,0,0),(165,'flat',NULL,0,0,0,NULL,0,0),(181,'flat',NULL,0,0,0,NULL,0,0),(184,'flat',NULL,0,0,0,NULL,0,0),(185,'flat',NULL,0,0,0,NULL,0,0),(186,'flat',NULL,0,0,0,NULL,0,0),(183,'flat',NULL,0,0,4,NULL,0,0),(191,'flat',NULL,0,0,0,NULL,0,0),(190,'flat',NULL,0,0,0,NULL,0,0),(195,'flat',NULL,0,0,0,NULL,0,0),(192,'flat',NULL,0,0,0,NULL,0,0),(197,'flat',NULL,0,0,0,NULL,0,0),(196,'flat',NULL,0,0,0,NULL,0,0),(91,'flat',NULL,0,0,0,NULL,0,0),(189,'flat',NULL,0,0,0,NULL,0,0),(198,'flat',NULL,0,0,0,NULL,0,0),(170,'flat',NULL,0,0,4,NULL,0,0),(200,'flat',NULL,0,0,0,NULL,0,0),(202,'flat',NULL,0,0,0,NULL,0,0),(201,'flat',NULL,0,0,0,NULL,0,0),(206,'flat',NULL,0,0,0,NULL,0,0),(209,'flat',NULL,0,0,4,NULL,0,0),(208,'flat',NULL,0,0,0,NULL,0,0),(194,'flat',NULL,0,0,0,NULL,0,0),(211,'flat',NULL,0,0,2,NULL,0,0),(210,'flat',NULL,0,0,0,NULL,0,0),(213,'flat',NULL,0,0,0,NULL,0,0),(212,'flat',NULL,0,0,0,NULL,0,0);
|
||
|
|
/*!40000 ALTER TABLE `mos_sb_users` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_sections`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_sections`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_sections` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`title` varchar(50) NOT NULL default '',
|
||
|
|
`name` varchar(255) NOT NULL default '',
|
||
|
|
`image` varchar(100) NOT NULL default '',
|
||
|
|
`scope` varchar(50) NOT NULL default '',
|
||
|
|
`image_position` varchar(10) NOT NULL default '',
|
||
|
|
`description` text NOT NULL,
|
||
|
|
`published` tinyint(1) NOT NULL default '0',
|
||
|
|
`checked_out` int(11) unsigned NOT NULL default '0',
|
||
|
|
`checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`ordering` int(11) NOT NULL default '0',
|
||
|
|
`access` tinyint(3) unsigned NOT NULL default '0',
|
||
|
|
`count` int(11) NOT NULL default '0',
|
||
|
|
`params` text NOT NULL,
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
KEY `idx_scope` (`scope`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_sections`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_sections` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_sections` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_sections` (`id`, `title`, `name`, `image`, `scope`, `image_position`, `description`, `published`, `checked_out`, `checked_out_time`, `ordering`, `access`, `count`, `params`) VALUES (7,'Actuaciones y eventos privados','Actuaciones y eventos privados','','content','left','<br />\r\n',1,0,'0000-00-00 00:00:00',9,0,0,''),(3,'¿Quiénes somos?','¿Quiénes somos?','','content','left','',1,0,'0000-00-00 00:00:00',12,0,12,''),(4,'¿Qué hacemos?','¿Qué hacemos?','','content','left','',1,0,'0000-00-00 00:00:00',11,0,4,''),(6,'Miembros del coro','Miembros del coro','','content','left','iem\r\n',1,0,'0000-00-00 00:00:00',10,1,0,''),(8,'Tesorería','Tesorería','','content','left','',1,0,'0000-00-00 00:00:00',8,1,0,''),(9,'Página principal privada','Página principal privada','','content','left','<br />\r\n',1,0,'0000-00-00 00:00:00',7,1,1,''),(10,'Actuaciones','Actuaciones','','content','left','\r\n<br />\r\n',1,0,'0000-00-00 00:00:00',6,0,10,''),(11,'Grabaciones','Grabaciones','','content','left','',1,0,'0000-00-00 00:00:00',5,0,2,''),(12,'Comunicados','Comunicados','','content','left','',1,0,'0000-00-00 00:00:00',4,1,1,''),(14,'Comunicados públicos','Comunicados públicos','','content','left','<br />\r\n',1,0,'0000-00-00 00:00:00',3,0,1,''),(15,'Memorias','Memorias','','content','left','',1,0,'0000-00-00 00:00:00',2,1,1,''),(16,'Estatutos','Estatutos','','content','left','',1,0,'0000-00-00 00:00:00',1,0,1,'');
|
||
|
|
/*!40000 ALTER TABLE `mos_sections` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_sef`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_sef`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_sef` (
|
||
|
|
`id` int(11) unsigned NOT NULL auto_increment,
|
||
|
|
`site_id` int(11) default NULL,
|
||
|
|
`external` varchar(255) default NULL,
|
||
|
|
`internal` varchar(255) default NULL,
|
||
|
|
`use_internal` char(1) NOT NULL default '1',
|
||
|
|
`direction` char(1) default NULL,
|
||
|
|
`published` char(1) NOT NULL default '1',
|
||
|
|
`valid` char(1) NOT NULL default '1',
|
||
|
|
`stop` char(1) NOT NULL default '0',
|
||
|
|
`created` datetime default NULL,
|
||
|
|
`created_by` int(11) unsigned NOT NULL default '0',
|
||
|
|
`modified` datetime default NULL,
|
||
|
|
`modified_by` int(11) unsigned NOT NULL default '0',
|
||
|
|
`catid` int(11) unsigned NOT NULL default '0',
|
||
|
|
`hits` int(11) unsigned NOT NULL default '0',
|
||
|
|
`notes` varchar(255) default NULL,
|
||
|
|
`locked` char(1) NOT NULL default '0',
|
||
|
|
`link_prio` int(3) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`id`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=1200 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_sef`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_sef` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_sef` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_sef` (`id`, `site_id`, `external`, `internal`, `use_internal`, `direction`, `published`, `valid`, `stop`, `created`, `created_by`, `modified`, `modified_by`, `catid`, `hits`, `notes`, `locked`, `link_prio`) VALUES (2,NULL,'/quienes_somos/historia_y_componentes/','index.php?option=com_content&task=blogcategory&id=67&Itemid=42','1',NULL,'1','1','0','2005-09-23 18:17:54',0,'2005-09-23 18:17:54',0,0,0,NULL,'0',0),(3,NULL,'/quienes_somos/sala_de_prensa_1/','index.php?option=com_content&task=blogcategory&id=120&Itemid=45','1',NULL,'1','1','0','2005-09-23 18:18:05',0,'2008-09-08 20:29:44',62,0,0,NULL,'0',0),(4,NULL,'/quienes_somos/premios_y_menciones/','index.php?option=com_content&task=blogcategory&id=80&Itemid=46','1',NULL,'1','1','0','2005-09-23 18:18:12',0,'2005-09-23 18:18:12',0,0,0,NULL,'0',0),(37,NULL,'/quienes_somos/premios_y_menciones/i_encuentro_coral_matritum.html','index.php?option=com_content&task=view&id=57&Itemid=46','1',NULL,'1','1','0','2005-09-23 19:04:05',0,'2005-09-23 19:04:05',0,0,0,NULL,'0',0),(6,NULL,'/que_hacemos/repertorio/','index.php?option=com_content&task=blogcategory&id=70&Itemid=47','1',NULL,'1','1','0','2005-09-23 18:19:16',0,'2005-09-23 18:19:16',0,0,0,NULL,'0',0),(78,NULL,'/actuaciones_1/','index.php?option=com_content&task=blogsection&id=10&Itemid=97&limit=5&limitstart=0','1',NULL,'1','1','0','2005-09-23 19:43:39',0,'2005-09-23 19:45:03',62,0,0,NULL,'0',0),(8,NULL,'/actuaciones/ano_2005/encuentro_en_la_universidad_pontificia_de_comillas.html','index.php?option=com_content&task=view&id=34&Itemid=97','1',NULL,'1','1','0','2005-09-23 18:19:24',0,'2005-09-23 18:19:24',0,0,0,NULL,'0',0),(9,NULL,'/actuaciones/ano_2005/i_encuentro_coral_matritum.html','index.php?option=com_content&task=view&id=31&Itemid=97','1',NULL,'1','1','0','2005-09-23 18:19:33',0,'2005-09-23 18:19:33',0,0,0,NULL,'0',0),(10,NULL,'/grabaciones/grabaciones/','index.php?option=com_content&task=blogcategory&id=113&Itemid=49','1',NULL,'1','1','0','2005-09-23 18:20:00',0,'2005-09-23 18:20:00',0,0,0,NULL,'0',0),(11,NULL,'/grabaciones/grabaciones/primer_cd_de_matritum_cantat.html','index.php?option=com_content&task=view&id=32&Itemid=49','1',NULL,'1','1','0','2005-09-23 18:20:02',0,'2005-09-23 18:20:02',0,0,0,NULL,'0',0),(13,NULL,'/contacto.html','index.php?option=com_contact&Itemid=104&task=view','1',NULL,'1','1','0','2005-09-23 18:20:37',62,'2005-09-23 18:30:32',62,0,0,NULL,'0',0),(14,NULL,'/quienes_somos/historia_y_componentes/tecnica_vocal.html','index.php?option=com_content&task=view&id=15&Itemid=42','1',NULL,'1','1','0','2005-09-23 18:21:38',0,'2005-09-23 18:21:38',0,0,0,NULL,'0',0),(17,NULL,'/miembros_del_coro/','index.php?option=com_comprofiler&task=usersList&Itemid=76','1',NULL,'1','1','0','2005-09-23 18:27:04',62,'2005-09-23 18:32:26',62,0,0,NULL,'0',0),(22,NULL,'/index.html','/index.php','1',NULL,'1','1','0','2005-09-23 18:32:02',0,'2005-09-23 18:44:05',62,0,4,NULL,'0',0),(24,NULL,'/repertorio/villancicos_del_s._xvi.html','index.php?option=com_content&task=view&id=58&Itemid=47','1',NULL,'1','1','0','2005-09-23 18:45:52',0,'2005-09-23 18:45:52',0,0,0,NULL,'0',0),(25,NULL,'/historia_y_componentes/coro_matritum_cantat.html','index.php?option=com_content&task=view&id=12&Itemid=42','1',NULL,'1','1','0','2005-09-23 18:46:01',0,'2005-09-23 18:46:01',0,0,0,NULL,'0',0),(26,NULL,'/quienes_somos/historia_y_componentes/direccion.html','index.php?option=com_content&task=view&id=14&Itemid=42','1',NULL,'1','1','0','2005-09-23 18:46:44',0,'2005-09-23 18:46:44',0,0,0,NULL,'0',0),(77,NULL,'/actuaciones_4/','index.php?option=com_content&task=blogsection&id=10&Itemid=97&limit=5&limitstart=15','1',NULL,'1','1','0','2005-09-23 19:43:28',0,'2005-09-23 19:44:29',62,0,0,NULL,'0',0),(31,NULL,'/quienes_somos/sala_de_prensa/apertura_de_festival_de_musica_sacra_de_cuenca.html','index.php?option=com_content&task=view&id=52&Itemid=45','1',NULL,'1','1','0','2005-09-23 18:56:51',0,'2005-09-23 18:56:51',0,0,0,NULL,'0',0),(38,NULL,'/que_hacemos/repertorio/musica_popular.html','index.php?option=com_content&task=view&id=68&Itemid=47','1',NULL,'1'
|
||
|
|
/*!40000 ALTER TABLE `mos_sef` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_sef_component`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_sef_component`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_sef_component` (
|
||
|
|
`id` int(11) unsigned NOT NULL auto_increment,
|
||
|
|
`site_id` int(11) default NULL,
|
||
|
|
`menu_id` int(11) unsigned NOT NULL default '0',
|
||
|
|
`component` varchar(255) NOT NULL default '',
|
||
|
|
`alias` varchar(255) NOT NULL default '',
|
||
|
|
`published` char(1) NOT NULL default '1',
|
||
|
|
`block` char(1) NOT NULL default '0',
|
||
|
|
`ordering` int(11) unsigned NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
UNIQUE KEY `site_id` (`site_id`,`menu_id`,`component`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=352 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_sef_component`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_sef_component` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_sef_component` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_sef_component` (`id`, `site_id`, `menu_id`, `component`, `alias`, `published`, `block`, `ordering`) VALUES (351,NULL,87,'com_zoom','album_de_fotos','1','0',0),(350,NULL,81,'com_comprofiler','mi_perfil_personal','1','0',0),(349,NULL,111,'com_tesoreria','tesoreria','1','0',0),(348,NULL,119,'com_cuotas','cuotas_de_miembros','1','0',0),(347,NULL,96,'com_obrens','area_de_ensayo','1','0',0),(346,NULL,93,'com_events','calendario_de_eventos','1','0',0),(345,NULL,120,'com_mambomap','mapa','1','0',0),(344,NULL,103,'com_login','acceso_privado','1','0',0),(343,NULL,1,'com_frontpage','inicio','1','0',0);
|
||
|
|
/*!40000 ALTER TABLE `mos_sef_component` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_sef_site`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_sef_site`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_sef_site` (
|
||
|
|
`id` int(6) unsigned NOT NULL auto_increment,
|
||
|
|
`host` varchar(128) default NULL,
|
||
|
|
`base_url` varchar(255) NOT NULL default '',
|
||
|
|
`title` varchar(32) NOT NULL default '',
|
||
|
|
`published` char(1) NOT NULL default '1',
|
||
|
|
`access` tinyint(1) unsigned NOT NULL default '0',
|
||
|
|
`sitename` varchar(255) default NULL,
|
||
|
|
`lang` varchar(32) default NULL,
|
||
|
|
`locale` varchar(5) default NULL,
|
||
|
|
`offset` char(3) default NULL,
|
||
|
|
`offline` char(1) default NULL,
|
||
|
|
`debug` char(1) default NULL,
|
||
|
|
`error_reporting` char(1) default NULL,
|
||
|
|
`metadesc` text,
|
||
|
|
`metakeys` text,
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
UNIQUE KEY `host` (`host`,`base_url`,`lang`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_sef_site`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_sef_site` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_sef_site` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_sef_site` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_session`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_session`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_session` (
|
||
|
|
`username` varchar(50) default '',
|
||
|
|
`time` varchar(14) default '',
|
||
|
|
`session_id` varchar(200) NOT NULL default '0',
|
||
|
|
`guest` tinyint(4) default '1',
|
||
|
|
`userid` int(11) default '0',
|
||
|
|
`usertype` varchar(50) default '',
|
||
|
|
`gid` tinyint(3) unsigned NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`session_id`),
|
||
|
|
KEY `whosonline` (`guest`,`usertype`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_session`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_session` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_session` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_session` (`username`, `time`, `session_id`, `guest`, `userid`, `usertype`, `gid`) VALUES ('rmoreno','1346777178','25867e1ecec98ebbb3da268632505d25',0,114,'Registered',1),('mbazaga','1346777131','78802e9f4184ffff25719138d13cfd58',0,110,'Registered',1),('admin','1346777076','9cffa79c7841bb87134ac54fc3013286',0,62,'Super Administrator',2),('admin','1346777430','9b06d828130c9cd937bd2679309d0f3a',1,62,'Super Administrator',0);
|
||
|
|
/*!40000 ALTER TABLE `mos_session` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_sh404SEF_meta`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_sh404SEF_meta`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_sh404SEF_meta` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`newurl` varchar(255) NOT NULL default '',
|
||
|
|
`metadesc` varchar(255) default '',
|
||
|
|
`metakey` varchar(255) default '',
|
||
|
|
`metatitle` varchar(255) default '',
|
||
|
|
`metalang` varchar(30) default '',
|
||
|
|
`metarobots` varchar(30) default '',
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
KEY `newurl` (`newurl`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_sh404SEF_meta`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_sh404SEF_meta` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_sh404SEF_meta` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_sh404SEF_meta` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_sh404sef_aliases`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_sh404sef_aliases`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_sh404sef_aliases` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`newurl` varchar(255) NOT NULL default '',
|
||
|
|
`alias` varchar(255) NOT NULL default '',
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
KEY `newurl` (`newurl`),
|
||
|
|
KEY `alias` (`alias`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_sh404sef_aliases`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_sh404sef_aliases` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_sh404sef_aliases` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_sh404sef_aliases` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_stats_agents`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_stats_agents`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_stats_agents` (
|
||
|
|
`agent` varchar(255) NOT NULL default '',
|
||
|
|
`type` tinyint(1) unsigned NOT NULL default '0',
|
||
|
|
`hits` int(11) unsigned NOT NULL default '1'
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_stats_agents`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_stats_agents` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_stats_agents` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_stats_agents` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_template_positions`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_template_positions`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_template_positions` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`position` varchar(10) NOT NULL default '',
|
||
|
|
`description` varchar(255) NOT NULL default '',
|
||
|
|
PRIMARY KEY (`id`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=29 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_template_positions`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_template_positions` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_template_positions` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_template_positions` (`id`, `position`, `description`) VALUES (1,'left',''),(2,'right',''),(3,'top',''),(4,'bottom',''),(5,'inset',''),(6,'banner',''),(7,'header',''),(8,'footer',''),(9,'newsflash',''),(10,'legals',''),(11,'pathway',''),(12,'toolbar',''),(13,'cpanel',''),(14,'user1',''),(15,'user2',''),(16,'user3',''),(17,'user4',''),(18,'user5',''),(19,'user6',''),(20,'user7',''),(21,'user8',''),(22,'user9',''),(23,'advert1',''),(24,'advert2',''),(25,'advert3',''),(26,'icon',''),(27,'debug',''),(28,'dmcpanel','DOCman');
|
||
|
|
/*!40000 ALTER TABLE `mos_template_positions` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_templates_menu`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_templates_menu`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_templates_menu` (
|
||
|
|
`template` varchar(50) NOT NULL default '',
|
||
|
|
`menuid` int(11) NOT NULL default '0',
|
||
|
|
`client_id` tinyint(4) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`template`,`menuid`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_templates_menu`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_templates_menu` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_templates_menu` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_templates_menu` (`template`, `menuid`, `client_id`) VALUES ('matritum',0,0),('joomla_admin',0,1);
|
||
|
|
/*!40000 ALTER TABLE `mos_templates_menu` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_tesoreria`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_tesoreria`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_tesoreria` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`catid` int(11) NOT NULL default '1',
|
||
|
|
`fecha` date default NULL,
|
||
|
|
`descripcion` varchar(100) NOT NULL default '',
|
||
|
|
`cuantia` float NOT NULL default '0',
|
||
|
|
`published` tinyint(1) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`id`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=983 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_tesoreria`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_tesoreria` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_tesoreria` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_tesoreria` (`id`, `catid`, `fecha`, `descripcion`, `cuantia`, `published`) VALUES (1,106,'2005-01-01','',0,0),(2,106,'2005-04-01','',0,0),(3,106,'2005-07-01','',0,0),(4,106,'2005-10-01','',0,0),(5,107,'2005-01-01','',0,0),(6,107,'2005-04-01','',0,0),(7,107,'2005-07-01','',0,0),(8,107,'2005-10-01','',0,0),(9,106,'2006-01-01','',0,0),(10,106,'2006-04-01','',0,0),(11,106,'2006-07-01','',0,0),(12,106,'2006-10-01','',0,0),(13,107,'2006-01-01','',0,0),(14,107,'2006-04-01','',0,0),(15,107,'2006-07-01','',0,0),(16,107,'2006-10-01','',0,0),(17,107,'2004-10-01','',0,0),(18,107,'2004-07-01','',0,0),(19,107,'2004-04-01','',0,0),(20,107,'2004-01-01','',0,0),(21,106,'2004-10-01','',0,0),(22,106,'2004-07-01','',0,0),(23,106,'2004-04-01','',0,0),(24,106,'2004-01-01','',0,0),(26,106,'2007-01-01','',0,0),(27,106,'2007-04-01','',0,0),(28,106,'2007-07-01','',0,0),(29,106,'2007-10-01','',0,0),(30,107,'2007-01-01','',0,0),(31,107,'2007-04-01','',0,0),(32,107,'2007-07-01','',0,0),(33,107,'2007-10-01','',0,0),(34,106,'2005-08-31','Conciertos primer semestre 2005',3750,1),(35,106,'2005-08-31','Cuotas de enero a marzo 2005',869,1),(36,106,'2005-08-31','Bodas y funerales primer semestre 2005',2350,1),(37,106,'2005-08-31','Varios ingresos pendientes del año anterior',456.5,1),(65,106,'2005-08-31','Conciertos del año 2004 cobrados en enero de 2005',3697.25,1),(39,106,'2005-08-31','Cuotas septiembre a diciembre 2004 cobradas en 2005',320,1),(66,107,'2005-08-31','Comisiones del banco primer semestre 2005',50.73,1),(41,107,'2005-08-31','Sueldo del director de enero a junio 2005',3600,1),(42,107,'2005-08-31','Sueldo profesora de vocal de enero a junio 2005',900,1),(43,107,'2005-08-31','3 actuaciones solistas',300,1),(44,107,'2005-08-31','Contrato de la página web',825,1),(45,107,'2005-08-31','Carpetas del coro',206.5,1),(46,107,'2005-08-31','A cuenta de la tela para los uniformes',542.88,1),(47,107,'2005-08-31','Cuota de la Federación Madrileña de Coroso',100,1),(48,107,'2005-08-31','Varios: papelería, fotocopias, diplomas...',271.3,1),(67,106,'2005-12-12','Misa del 6 nov en San Ginés',600,1),(51,106,'2005-11-02','Bodas y conciertos',3550,1),(52,106,'2005-10-03','Cuotas de marzo a junio',495,1),(53,107,'2005-11-02','Comisiones del banco',137.3,1),(54,107,'2005-10-16','Sueldo director septiembre y octubre 2005',1260,1),(55,107,'2005-10-16','Sueldo profesora vocal',315,1),(56,107,'2005-10-02','Pago tenor profesional boda 9/09',60,1),(57,107,'2005-10-03','Página web',341.6,1),(58,107,'2005-10-02','Cena con el coro de argentinos',595,1),(59,107,'2005-10-16','Comida del coro grabación CD',656.07,1),(60,107,'2005-11-02','Varios (fotocopias, donativo Matabuena, dossiers...)',330.63,1),(61,106,'2005-07-01','Saldo inicial en banco al 1/01/2005',2983.48,1),(120,107,'2006-01-03','Cena de Navidad',1400,1),(68,106,'2005-12-23','Concierto en Torrejón del Rey',900,1),(69,106,'2005-11-16','Cuotas de septiembre a diciembre',800,1),(72,107,'2005-12-06','Sueldo director noviembre y diciembre',1320,1),(80,107,'2005-12-30','Comisiones del banco',34.55,1),(73,107,'2005-12-06','Sueldo profesora de técnica vocal nov y dic',330,1),(74,107,'2005-12-15','Solista bodas',120,1),(75,107,'2005-12-23','Refuerzos tenor (6 actuaciones)',360,1),(122,107,'2004-03-17','Sueldo profesora técnica marzo',165,1),(77,107,'2005-12-20','Compra sillas para el coro',1425.6,1),(78,107,'2005-12-23','Telas y modista para fulares',336,1),(79,107,'2005-12-29','Fotocopias, correo...',58,1),(81,106,'2004-12-17','Cuotas del año 2004',2820,1),(82,106,'2004-12-30','Bodas, funerales y conciertos',13626,1),(83,106,'2004-12-23','Premio concurso Villalkor',600,1),(84,106,'2004-10-28','Pagos de los miembros para el viaje a Argentina',24970,1),(85,107,'2004-12-17','Sueldo director año 2004',4680,1),(86,107,'2004-12-17','Sueldo profesora técnica vocal año 2004',770,1),(87,107,'2004-12-23','Solista 3 bodas',300,1),(88,107,'2004-10-11','Pagos varios viaje Argentina (director, tenor, técnica vocal....)',3907,1),(107,106,'2006-01-20','Pago concierto Navidad Vicálvaro 27/12',750,1),(90
|
||
|
|
/*!40000 ALTER TABLE `mos_tesoreria` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_users`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_users`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_users` (
|
||
|
|
`id` int(11) NOT NULL auto_increment,
|
||
|
|
`name` varchar(50) NOT NULL default '',
|
||
|
|
`username` varchar(25) NOT NULL default '',
|
||
|
|
`email` varchar(100) NOT NULL default '',
|
||
|
|
`password` varchar(100) NOT NULL default '',
|
||
|
|
`usertype` varchar(25) NOT NULL default '',
|
||
|
|
`block` tinyint(4) NOT NULL default '0',
|
||
|
|
`sendEmail` tinyint(4) default '0',
|
||
|
|
`gid` tinyint(3) unsigned NOT NULL default '1',
|
||
|
|
`registerDate` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`lastvisitDate` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`activation` varchar(100) NOT NULL default '',
|
||
|
|
`params` text NOT NULL,
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
KEY `usertype` (`usertype`),
|
||
|
|
KEY `idx_name` (`name`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=218 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_users`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_users` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_users` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_users` (`id`, `name`, `username`, `email`, `password`, `usertype`, `block`, `sendEmail`, `gid`, `registerDate`, `lastvisitDate`, `activation`, `params`) VALUES (62,'Webmaster Matritum Cantat','admin','matritumcantat@rodax-software.com','683c02fa91babd1f1aed0ce76b47952f:SqsMjIDGhB6le2Yo','Super Administrator',0,1,25,'2005-02-17 10:53:20','2012-09-04 18:39:24','','editor=jce\nexpired=\nexpired_time='),(65,'Blas Santamaría Domínguez','bsantamaria','blasstm@yahoo.com','230e0f5055401c0fce6099fd08a8236c:F729uJGiHTnV8QR7','Publisher',0,0,21,'2005-02-16 13:06:43','2012-09-04 13:31:58','','editor=tinymce'),(66,'Mariano Escolano López-Montenegro','mescolano','asanchezm@mtas.es','70405a012940a5648020872ec1e846f2','Registered',1,0,18,'2005-02-16 13:09:15','2005-09-29 20:06:48','',''),(67,'Miguel Osorio García de Oteyza','mosorio','mosorio@iuve.org','de2fd0bb8a7acee8510e38a5e6bd8615','Registered',1,0,18,'2005-02-16 13:13:32','2006-02-26 21:29:53','',''),(68,'Adriana Neagu','aneagu','-@matritum-cantat.org','4939977162af172f640d6c4c3d6d3e83','Registered',1,0,18,'2005-02-16 13:16:05','2005-09-21 16:34:17','',''),(69,'Amparo Sánchez Marcos','asanchez','amparo.sanchez@mepsyd.es','352491f17faeac5f9244abcb4b367d1e:pVz0mP9hLswy9qLu','Registered',1,0,18,'2005-02-16 13:17:03','2011-05-27 11:08:11','',''),(70,'Angeles Azpeitia Piñeiro','aazpeitia','angazp2004@yahoo.es','691877a9a06e38fa2fa736df5e0cd08d:rDQ0BiJoSkxUzXJR','Registered',1,0,18,'2005-02-16 13:18:18','2012-01-17 13:08:04','',''),(71,'Mª del Carmen Cordero Arjona','mcordero','Carmencordero2004@yahoo.es','ed32dd1bbd54d6ab4977ca8fe1609d48:XhIzEWTkUWRynSv1','Registered',0,0,18,'2005-02-16 13:19:51','2012-08-01 11:57:45','',''),(72,'Carmen Romero de Ávila Arias','cromero','carmen_romerodea@hotmail.com','57373e775f8596e8937ccc664b26d17f','Registered',1,0,18,'2005-02-16 13:20:56','2006-01-24 11:17:04','',''),(73,'Carmen Vadillo Gimeno','cvadillo','Carmen_v.cosmeticos@yahoo.es','437b2310276edb28f8a692daba99ab2e:qvFW0va7KTPinCnv','Registered',0,0,18,'2005-02-16 13:23:52','2012-09-02 13:09:40','',''),(74,'Catalina Calvo de Mora Brito','ccalvo','catacm@wanadoo.es','380aede8b660005e0dafb6d3f08b1cf3','Registered',1,0,18,'2005-02-16 13:24:28','2005-05-12 17:04:47','',''),(75,'Helena Torrente Sierra','htorrente','h_torrente@hotmail.com','57b9519fbc8651dd7abd30f78a616402:kKWQHtCckINnG7Rf','Registered',0,0,18,'2005-02-16 13:25:02','2012-09-02 15:11:55','',''),(125,'Francisco José Huete Arroyo','fjose','fjhuete@fcc.es','1d5a19069705ba9d8e5454a6a6566ea2','',1,0,18,'2005-07-21 21:07:05','0000-00-00 00:00:00','',''),(77,'Lourdes Rubio González','lrubio','jmanuelrubio@tiscali.es','a3e18adae9feeafc77d0b1b5b55b09e7:AaRaCbwQW5dzmAFo','Registered',0,0,18,'2005-02-16 13:26:55','2012-09-02 11:12:36','',''),(78,'Pilar Arconada Rodríguez','parconada','Arconadarp@munimadrid.es','dc8249564cfc7f2100f753247c1e0987','Registered',1,0,18,'2005-02-16 13:27:49','2007-09-25 21:26:19','',''),(79,'Ana María Sánchez Cabezudo','amsanchez','anasanchezcabezudo@wanadoo.es','55bc1feaa4e8783cb6010a06161d8e26','Registered',1,0,18,'2005-02-16 14:55:52','2005-02-16 15:40:57','',''),(80,'Ana Torralbo Estrada','ateate','anatorralboestrada@hotmail.com','fdd5d3776689b235668986d65d95947d:IRpkUNOy4uccfawO','Registered',1,0,18,'2005-02-16 14:56:25','2010-09-02 22:57:19','',''),(81,'Carmen Aroca Galera','caroca','bbbravo@ya.com','b07d3bd9a2a9cb00a7e1b399a737f4b5:5sS2dkORvFLTQeBw','Registered',0,0,18,'2005-02-16 14:57:18','2012-09-01 23:33:13','',''),(82,'Concha Calderón Ortega','ccalderon','-@matritum-cantat.org','64ab19be62740c02432c9a321d4ee17b','Registered',1,0,18,'2005-02-16 14:58:14','2005-02-16 15:43:28','',''),(83,'Erika Kuntscher','ekuntscher','erkuntscher@yahoo.es','cfa930811783ecf4725ad9115906bb90:x5nbQgzoGoU4bk42','Registered',0,0,18,'2005-02-16 14:58:59','2012-09-02 14:00:37','',''),(84,'Fanny Fruhbeck Moreno','ffruhbeck','ynnaf222@hotmail.com','774e0b78836994dc9f51fe1cc21d636b','Registered',1,0,18,'2005-02-16 14:59:52','2006-03-06 09:30:09','',''),(85,'Mª José Sánchez Fernández','mjsanchez','ma
|
||
|
|
/*!40000 ALTER TABLE `mos_users` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_usertypes`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_usertypes`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_usertypes` (
|
||
|
|
`id` tinyint(3) unsigned NOT NULL default '0',
|
||
|
|
`name` varchar(50) NOT NULL default '',
|
||
|
|
`mask` varchar(11) NOT NULL default '',
|
||
|
|
PRIMARY KEY (`id`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_usertypes`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_usertypes` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_usertypes` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_usertypes` (`id`, `name`, `mask`) VALUES (0,'superadministrator',''),(1,'administrator',''),(2,'editor',''),(3,'user',''),(4,'author',''),(5,'publisher',''),(6,'manager','');
|
||
|
|
/*!40000 ALTER TABLE `mos_usertypes` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_weblinks`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_weblinks`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_weblinks` (
|
||
|
|
`id` int(11) unsigned NOT NULL auto_increment,
|
||
|
|
`catid` int(11) NOT NULL default '0',
|
||
|
|
`sid` int(11) NOT NULL default '0',
|
||
|
|
`title` varchar(250) NOT NULL default '',
|
||
|
|
`url` varchar(250) NOT NULL default '',
|
||
|
|
`description` varchar(250) NOT NULL default '',
|
||
|
|
`date` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`hits` int(11) NOT NULL default '0',
|
||
|
|
`published` tinyint(1) NOT NULL default '0',
|
||
|
|
`checked_out` int(11) NOT NULL default '0',
|
||
|
|
`checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`ordering` int(11) NOT NULL default '0',
|
||
|
|
`archived` tinyint(1) NOT NULL default '0',
|
||
|
|
`approved` tinyint(1) NOT NULL default '1',
|
||
|
|
`params` text NOT NULL,
|
||
|
|
PRIMARY KEY (`id`),
|
||
|
|
KEY `catid` (`catid`,`published`,`archived`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_weblinks`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_weblinks` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_weblinks` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_weblinks` (`id`, `catid`, `sid`, `title`, `url`, `description`, `date`, `hits`, `published`, `checked_out`, `checked_out_time`, `ordering`, `archived`, `approved`, `params`) VALUES (2,2,0,'Musica Sacra','http://www.musica-sacra.it/','','2005-02-14 13:14:45',0,1,0,'0000-00-00 00:00:00',7,0,1,''),(3,2,0,'Simone Olivieri\'s Music','http://simoneolivieri.altervista.org/','','2005-02-14 13:15:45',0,1,0,'0000-00-00 00:00:00',6,0,1,''),(4,2,0,'Werner Icking Music Archive','http://icking-music-archive.org/','','2005-02-14 13:16:06',0,1,0,'0000-00-00 00:00:00',5,0,1,''),(5,2,0,'Ubi Sunt','http://www.iespana.es/ubisunt/','','2005-02-14 13:18:34',0,1,0,'0000-00-00 00:00:00',4,0,1,''),(6,2,0,'Cor Polifonic Ciutat de Xativa','http://xatired.com/cordexativa','','2005-02-14 13:19:14',0,1,0,'0000-00-00 00:00:00',3,0,1,''),(7,2,0,'Mvsica Tolta Da I Madrigali','http://jpj.dk/coppini.htm','','2005-02-14 13:21:59',0,1,0,'0000-00-00 00:00:00',2,0,1,''),(8,2,0,'Musique renaissance: une découverte!','http://bodley.ox.ac.uk','','2005-02-14 13:23:31',0,1,0,'0000-00-00 00:00:00',1,0,1,'');
|
||
|
|
/*!40000 ALTER TABLE `mos_weblinks` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_xaneon_config`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_xaneon_config`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_xaneon_config` (
|
||
|
|
`scope` varchar(64) NOT NULL default '',
|
||
|
|
`name` varchar(255) NOT NULL default '',
|
||
|
|
`value` text NOT NULL,
|
||
|
|
PRIMARY KEY (`scope`,`name`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_xaneon_config`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_xaneon_config` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_xaneon_config` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_xaneon_config` (`scope`, `name`, `value`) VALUES ('com_sef','enabled','1'),('com_sef','enable_sef','1'),('com_sef','debug','0'),('com_sef','debug_for_ip',''),('com_sef','backend_language','en'),('com_sef','backend_sidebar','1'),('com_sef','backend_autoupdates','1'),('com_sef','encode_lowercase','1'),('com_sef','encode_page_suffix','.html'),('com_sef','encode_space_char','_'),('com_sef','encode_strip_chars','§!$%£@?#&()+*¿¡'),('com_sef','content_path_type','full'),('com_sef','content_title_field','title'),('com_sef','section_title_field','title'),('com_sef','category_title_field','title'),('com_sef','content_page_format','%s_%d'),('com_sef','record_unmapped_urls','0'),('com_sef','record_invalid_urls','0'),('com_sef','record_hits','0'),('com_sef','use_automap','1'),('com_sef','use_automap_redirect','1'),('com_sef','use_multisite','0'),('com_sef','use_sef_ext','1'),('com_sef','use_core_ext','1'),('com_sef','use_canonical_urls','0'),('com_sef','use_absolute_urls','1'),('com_sef','use_session_fix','1'),('com_sef','validate_level','1'),('com_sef','validate_404_url',''),('com_sef','max_recursion','3'),('com_sef','xhtml_compliance','0'),('com_sef','cache_outgoing','1');
|
||
|
|
/*!40000 ALTER TABLE `mos_xaneon_config` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_zoom`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_zoom`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_zoom` (
|
||
|
|
`catid` int(11) NOT NULL auto_increment,
|
||
|
|
`catname` varchar(50) default '0',
|
||
|
|
`catdescr` varchar(255) default NULL,
|
||
|
|
`catdir` varchar(25) default '0',
|
||
|
|
`catimg` int(11) default NULL,
|
||
|
|
`catpassword` varchar(100) NOT NULL default '',
|
||
|
|
`catkeywords` varchar(240) NOT NULL default '',
|
||
|
|
`subcat_id` int(4) NOT NULL default '0',
|
||
|
|
`pos` int(3) NOT NULL default '0',
|
||
|
|
`hideMsg` tinyint(1) NOT NULL default '0',
|
||
|
|
`shared` tinyint(1) NOT NULL default '0',
|
||
|
|
`published` tinyint(1) NOT NULL default '1',
|
||
|
|
`uid` int(11) NOT NULL default '0',
|
||
|
|
`catmembers` varchar(240) NOT NULL default '',
|
||
|
|
KEY `id` (`catid`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=73 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_zoom`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_zoom` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_zoom` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_zoom` (`catid`, `catname`, `catdescr`, `catdir`, `catimg`, `catpassword`, `catkeywords`, `subcat_id`, `pos`, `hideMsg`, `shared`, `published`, `uid`, `catmembers`) VALUES (4,'Ensayos','Fotografías de nuestros ensayos.','CLIJVL',NULL,'','',0,0,1,0,1,62,'2'),(6,'I Encuentro Coral Matritum','San Isidro 2005 - 13/22 de Mayo','IENCUE',NULL,'','',0,0,1,0,1,62,'2'),(5,'Semana Santa 2005','Fotografías de nuestras actuaciones en Semana Santa.','SSANTA',NULL,'','',0,0,1,0,1,62,'2'),(7,'Encuentro Coral Universidad de Comillas','Universidad Pontificia de Comillas.\r\n31 de Mayo de 2005','DCGLQU',NULL,'','',0,0,1,0,1,62,'2'),(8,'Concierto de Navidad','Concierto de Navidad 2004','WQKIRJ',NULL,'','',0,0,1,0,1,62,'2'),(9,'Palacio de Congresos','Cena cuerpo diplomatico, navidad 2004','VVNRDH',NULL,'','',0,0,1,0,1,62,'2'),(10,'Concurso Villalkor','Concurso Villalkor 2004, tercer premio.','SSGCJH',NULL,'','',0,0,1,0,1,62,'2'),(20,'Fotos Varias','','YTFFKU',NULL,'','',0,0,1,0,1,62,'2'),(12,'Galería de fotos privada','','XSCDPM',NULL,'','',6,1,1,0,1,62,'2'),(13,'Gira Argentina','Gira por Argentina 2004','SZMOIE',NULL,'','',0,0,1,0,1,62,'2'),(14,'Galería de fotos privada','','VVASTD',NULL,'','',13,1,1,0,1,62,'2'),(15,'Sala de Prensa','Sala de prensa','QMMPTQ',NULL,'','',0,0,1,0,1,62,'2'),(16,'Grabación de disco','Fotos de la grabación del primer disco Matritum Cantat','WYJZPX',NULL,'','',0,0,1,0,1,62,'2'),(18,'Concierto Semana Santa 2004','','BQAIIK',NULL,'','',0,0,1,0,1,62,'2'),(21,'Concurso Burgos','','SQWMJJ',NULL,'','',0,0,1,0,1,62,'2'),(22,'Magnificat','','HNXBGW',NULL,'','',0,0,1,0,1,62,'2'),(23,'Concierto en Toro 2007','','WJILRO',NULL,'','',0,0,1,0,1,62,'2'),(51,'Conciertos','Conciertos','TAYVKK',NULL,'','',0,0,1,0,1,62,'2'),(57,'Misa San Ginés 28-11-2007','','UEXVSJ',NULL,'','',52,2,1,0,1,62,'2'),(27,'El director','','AFLMDK',NULL,'','',23,1,1,0,1,62,'2'),(28,'El director','','GSQRJW',NULL,'','',0,0,1,0,1,62,'2'),(30,'Certamen coral de la Avellana','','ACRMQX',NULL,'','',0,0,1,0,1,62,'2'),(31,'Ensayos 2003-2006','','BBZKRR',NULL,'','',4,1,1,0,1,62,'2'),(33,'Ensayos 2006-2009','','LWJSXC',NULL,'','',4,1,1,0,1,62,'2'),(35,'Fiesta Miserere','','ZLOJKS',NULL,'','',0,0,1,0,1,62,'2'),(36,'Cenas de Navidad','','QYLHZI',NULL,'','',0,0,1,0,1,62,'2'),(37,'Cena Navidad 2004','','NQLRZO',NULL,'','',36,1,1,0,1,62,'2'),(38,'Cena Navidad 2005','','AGQUIY',NULL,'','',36,1,1,0,1,62,'2'),(39,'Cena Navidad 2006','','FZDGOQ',NULL,'','',36,1,1,0,1,62,'2'),(40,'Cena Navidad 2007','','ZTHIRI',NULL,'','',36,1,1,0,1,62,'2'),(44,'Cena Navidad 2008','Cena Navidad 2008','WODBTK',NULL,'','',36,1,1,0,1,62,'2'),(58,'Conciertos 2010-2012','','ADDFVL',NULL,'','',51,1,1,0,1,62,'2'),(46,'Cena Navidad 2009','Cena Navidad 2009','TYABTU',NULL,'','CenaNavidad2009',36,1,1,0,1,62,'2'),(59,'Orquesta Matritum Cantat y Coro de la Universidad ','Concierto Orquesta Matritum Cantat y Coro de la Universidad Pontificia Comillas (2011)','PYGOQR',NULL,'','',58,2,1,0,1,62,'2'),(48,'Cena Navidad 2010','Cena Navidad 2010','FCIOPI',NULL,'','',36,1,1,0,1,62,'2'),(49,'Torreciudad 2011','Torreciudad 2011','WAGTOI',NULL,'','',0,0,1,0,1,62,'2'),(50,'Ensayos 2010-2012','','XOSKHD',NULL,'','',4,1,1,0,1,62,'2'),(52,'Conciertos 2006-2009','','EJUWLZ',NULL,'','',51,1,1,0,1,62,'2'),(53,'San Bruno (navidad 2006)','','MQVSUC',NULL,'','',52,2,1,0,1,62,'2'),(54,'Concierto en Galería de Arte (2008)','','WSLUDK',NULL,'','',52,2,1,0,1,62,'2'),(55,'Ejea 2009','','FSCSFC',NULL,'','',52,2,1,0,1,62,'2'),(61,'Nuestra Señora de los Ángeles 2011','','BAGZPK',NULL,'','',58,2,1,0,1,62,'2'),(62,'Concierto Parroquia Santa Gema 2011','','ZKUZZI',NULL,'','',58,2,1,0,1,62,'2'),(63,'Concierto Infiesto 2011','','QFDXJW',NULL,'','',58,2,1,0,1,62,'2'),(68,'Concierto Gospel Las Rozas 14/01/2012','','RANJEY',NULL,'','',58,2,0,0,1,62,'2'),(67,'Concierto en Familia 2012','21 de Abril de 2012\r\nTeatro Monumental de Madrid','CHNJID',NULL,'','',0,0,0,0,1,62,'2'),(69,'Concierto Gospel Villaviciosa de Odón 25/02/2012','','WZTTLV',NULL,'','',58,2,0,0,1,62,'2'),(70,'Concierto Stabat Mater (23/03/2012) -
|
||
|
|
/*!40000 ALTER TABLE `mos_zoom` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_zoom_comments`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_zoom_comments`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_zoom_comments` (
|
||
|
|
`cmtid` int(4) NOT NULL auto_increment,
|
||
|
|
`imgid` int(4) NOT NULL default '0',
|
||
|
|
`cmtname` varchar(40) NOT NULL default '',
|
||
|
|
`cmtcontent` text NOT NULL,
|
||
|
|
`cmtdate` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
|
||
|
|
PRIMARY KEY (`cmtid`),
|
||
|
|
KEY `imgid` (`imgid`)
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_zoom_comments`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_zoom_comments` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_zoom_comments` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_zoom_comments` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_zoom_ecards`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_zoom_ecards`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_zoom_ecards` (
|
||
|
|
`ecdid` varchar(25) NOT NULL default '',
|
||
|
|
`imgid` int(11) NOT NULL default '0',
|
||
|
|
`to_name` varchar(50) NOT NULL default '',
|
||
|
|
`from_name` varchar(50) NOT NULL default '',
|
||
|
|
`to_email` varchar(75) NOT NULL default '',
|
||
|
|
`from_email` varchar(75) NOT NULL default '',
|
||
|
|
`message` text NOT NULL,
|
||
|
|
`end_date` date NOT NULL default '0000-00-00',
|
||
|
|
`user_ip` varchar(25) NOT NULL default ''
|
||
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_zoom_ecards`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_zoom_ecards` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_zoom_ecards` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_zoom_ecards` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_zoom_editmon`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_zoom_editmon`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_zoom_editmon` (
|
||
|
|
`edtid` int(11) NOT NULL auto_increment,
|
||
|
|
`user_session` varchar(200) NOT NULL default '0',
|
||
|
|
`vote_time` varchar(14) default NULL,
|
||
|
|
`comment_time` varchar(14) default NULL,
|
||
|
|
`pass_time` varchar(14) default NULL,
|
||
|
|
`lightbox_time` varchar(14) default NULL,
|
||
|
|
`lightbox_file` varchar(40) default NULL,
|
||
|
|
`object_id` int(11) NOT NULL default '0',
|
||
|
|
PRIMARY KEY (`edtid`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_zoom_editmon`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_zoom_editmon` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_zoom_editmon` DISABLE KEYS */;
|
||
|
|
/*!40000 ALTER TABLE `mos_zoom_editmon` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Table structure for table `mos_zoomfiles`
|
||
|
|
--
|
||
|
|
|
||
|
|
DROP TABLE IF EXISTS `mos_zoomfiles`;
|
||
|
|
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||
|
|
/*!40101 SET character_set_client = utf8 */;
|
||
|
|
CREATE TABLE `mos_zoomfiles` (
|
||
|
|
`imgid` int(11) NOT NULL auto_increment,
|
||
|
|
`imgname` varchar(50) NOT NULL default '',
|
||
|
|
`imgfilename` varchar(50) NOT NULL default '',
|
||
|
|
`imgdescr` varchar(255) default NULL,
|
||
|
|
`imgkeywords` varchar(240) default NULL,
|
||
|
|
`imgdate` datetime NOT NULL default '0000-00-00 00:00:00',
|
||
|
|
`imghits` bigint(20) NOT NULL default '0',
|
||
|
|
`votenum` int(11) NOT NULL default '0',
|
||
|
|
`votesum` int(11) NOT NULL default '0',
|
||
|
|
`published` tinyint(1) NOT NULL default '1',
|
||
|
|
`catid` int(11) NOT NULL default '0',
|
||
|
|
`uid` int(11) NOT NULL default '0',
|
||
|
|
`imgmembers` varchar(240) NOT NULL default '',
|
||
|
|
PRIMARY KEY (`imgid`),
|
||
|
|
KEY `catid` (`catid`)
|
||
|
|
) ENGINE=MyISAM AUTO_INCREMENT=1763 DEFAULT CHARSET=latin1;
|
||
|
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping data for table `mos_zoomfiles`
|
||
|
|
--
|
||
|
|
|
||
|
|
LOCK TABLES `mos_zoomfiles` WRITE;
|
||
|
|
/*!40000 ALTER TABLE `mos_zoomfiles` DISABLE KEYS */;
|
||
|
|
INSERT INTO `mos_zoomfiles` (`imgid`, `imgname`, `imgfilename`, `imgdescr`, `imgkeywords`, `imgdate`, `imghits`, `votenum`, `votesum`, `published`, `catid`, `uid`, `imgmembers`) VALUES (790,'ensayo9.JPG','ensayo9.JPG','','','2007-05-01 12:47:36',41,0,0,1,31,62,'1'),(67,'ensayo contra 3.jpg','ensayo_contra_3.jpg','','','2005-02-15 16:48:59',140,0,0,1,31,62,'1'),(68,'ensayo contra 4.jpg','ensayo_contra_4.jpg','','','2005-02-15 16:49:00',101,0,0,1,31,62,'1'),(69,'ensayo javier 1.jpg','ensayo_javier_1.jpg','','','2005-02-15 16:49:01',103,0,0,1,31,62,'1'),(70,'ensayo javier 2.jpg','ensayo_javier_2.jpg','','','2005-02-15 16:49:03',101,0,0,1,31,62,'1'),(71,'ensayo javier 3.jpg','ensayo_javier_3.jpg','','','2005-02-15 16:49:05',109,0,0,1,31,62,'1'),(72,'ensayo panoramica 1.jpg','ensayo_panoramica_1.jpg','','','2005-02-15 16:49:08',116,0,0,1,31,62,'1'),(73,'ensayo sopranos 1.jpg','ensayo_sopranos_1.jpg','','','2005-02-15 16:49:10',115,0,0,1,31,62,'1'),(74,'ensayo sopranos 2.jpg','ensayo_sopranos_2.jpg','','','2005-02-15 16:49:11',111,0,0,1,31,62,'1'),(75,'ensayo sopranos 3.jpg','ensayo_sopranos_3.jpg','','','2005-02-15 16:49:13',105,0,0,1,31,62,'1'),(76,'ensayo sopranos 4.jpg','ensayo_sopranos_4.jpg','','','2005-02-15 16:49:15',97,0,0,1,31,62,'1'),(77,'ensayo tenores 1.jpg','ensayo_tenores_1.jpg','','','2005-02-15 16:49:17',115,0,0,1,31,62,'1'),(78,'ensayo tenores 2.jpg','ensayo_tenores_2.jpg','','','2005-02-15 16:49:21',109,0,0,1,31,62,'1'),(79,'ensayo tenores 3.jpg','ensayo_tenores_3.jpg','','','2005-02-15 16:49:25',118,0,0,1,31,62,'1'),(80,'ensayos bajos 1.jpg','ensayos_bajos_1.jpg','','','2005-02-15 16:49:27',129,0,0,1,31,62,'1'),(81,'ensayos bajos 2.jpg','ensayos_bajos_2.jpg','','','2005-02-15 16:49:29',190,0,0,1,31,62,'1'),(82,'sta_rita_blas_1.jpg','sta_rita_blas_1.jpg','','','2005-03-18 19:50:48',572,0,0,1,5,62,'1'),(83,'sta_rita_carpetas_1.jpg','sta_rita_carpetas_1.jpg','','','2005-03-18 19:51:36',519,0,0,1,5,62,'1'),(84,'sta_rita_coro_1.jpg','sta_rita_coro_1.jpg','','','2005-03-18 19:51:37',525,0,0,1,5,62,'1'),(85,'sta_rita_coro_2.jpg','sta_rita_coro_2.jpg','','','2005-03-18 19:51:38',511,0,0,1,5,62,'1'),(86,'sta_rita_coro_3.jpg','sta_rita_coro_3.jpg','','','2005-03-18 19:51:39',530,0,0,1,5,62,'1'),(87,'sta_rita_coro_4.jpg','sta_rita_coro_4.jpg','','','2005-03-18 19:51:40',553,0,0,1,5,62,'1'),(88,'sta_rita_coro_panoramica_1.jpg','sta_rita_coro_panoramica_1.jpg','','','2005-03-18 19:51:41',558,0,0,1,5,62,'1'),(89,'sta_rita_coro_panoramica_2.jpg','sta_rita_coro_panoramica_2.jpg','','','2005-03-18 19:51:46',578,0,0,1,5,62,'1'),(90,'sta_rita_javier_b_1.jpg','sta_rita_javier_b_1.jpg','','','2005-03-18 19:51:48',594,0,0,1,5,62,'1'),(91,'sta_rita_javier_b_2.jpg','sta_rita_javier_b_2.jpg','','','2005-03-18 19:51:49',649,0,0,1,5,62,'1'),(112,'000.jpg','000.jpg','','','2005-05-24 18:44:36',263,0,0,1,6,62,'1'),(113,'001.jpg','001.jpg','','','2005-05-24 18:44:37',253,0,0,1,6,62,'1'),(114,'002.jpg','002.jpg','','','2005-05-24 18:44:39',217,0,0,1,6,62,'1'),(115,'003.jpg','003.jpg','','','2005-05-24 18:44:40',251,0,0,1,6,62,'1'),(116,'004.jpg','004.jpg','','','2005-05-24 18:44:41',261,0,0,1,6,62,'1'),(117,'005.jpg','005.jpg','','','2005-05-24 18:44:42',239,0,0,1,6,62,'1'),(118,'006.jpg','006.jpg','','','2005-05-24 18:44:43',259,0,0,1,6,62,'1'),(119,'007.jpg','007.jpg','','','2005-05-24 18:44:44',255,0,0,1,6,62,'1'),(120,'008.jpg','008.jpg','','','2005-05-24 18:44:45',264,0,0,1,6,62,'1'),(121,'009.jpg','009.jpg','','','2005-05-24 18:44:46',320,0,0,1,6,62,'1'),(122,'c-americas-12.jpg','c-americas-12.jpg','','','2005-06-07 12:56:18',352,0,0,1,7,62,'1'),(234,'BAConcierto1 (1).JPG','BAConcierto1_(1).JPG','','','2005-08-16 17:22:25',358,0,0,1,13,62,'1'),(235,'BAConcierto1 (2).JPG','BAConcierto1_(2).JPG','','','2005-08-16 17:22:28',330,0,0,1,13,62,'1'),(125,'c-americas-retablo-2.jpg','c-americas-retablo-2.jpg','','','2005-06-07 12:56:20',292,0,0,1,7,62,'1'),(126,'comillas-1.jpg','comillas-1.jpg','','','2005-06-07 12:56:20',276,0,0,1,7,62,'1'),(127,'comillas-2.jpg','comillas-2.jpg','','','2005-06-07 12:56:21',286,0,0,1,7,62,'1'),(128,'comilla
|
||
|
|
/*!40000 ALTER TABLE `mos_zoomfiles` ENABLE KEYS */;
|
||
|
|
UNLOCK TABLES;
|
||
|
|
|
||
|
|
--
|
||
|
|
-- Dumping routines for database 'matritum_joomla'
|
||
|
|
--
|
||
|
|
DELIMITER ;;
|
||
|
|
DELIMITER ;
|
||
|
|
/*!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 2012-09-04 18:54:16
|