Rath Riordan

Jennifer will eventually have a beautiful web page here, full of interoperable things to delight and amaze you. Unfortunately, it's not done yet.

But! We do have a lot of very pretty pictures for you to look at While You Wait. Behold, there is a gallery full of them, right here.

In the meantime, the management encourages you to imagine such a thing in this space. We'll do better Real Soon Now, promise.

setConfig('setup.password', 'A PASSWORD'); * * Choose something random and enter it in plain text. You don't have to * remember it because you can always refer to this file. You'll only be asked * for this password when you run Gallery's lib/tools code. We don't provide a * default password because we want you to choose one of your own (which * lessens the chance that you'll get hacked). */ $gallery->setConfig('setup.password', 'ncc1701d'); /* * In order for Gallery to manage your data, you must provide it with * a directory that it can write to. Gallery is a webserver application, * so the directory that you create must be writeable by the * webserver, not just by you. * * Create an empty directory anywhere you please. Gallery will fill this * directory with its own files (that you shouldn't mess with). This directory * can be anywhere on your filesystem. For security purposes, it's better * if the directory is not accessible via your webserver (ie, it should * not be in your DocumentRoot). If you *do* make it available via your * web server then you probably won't have any security for your data files. * * Don't make this the same as your gallery directory! */ $gallery->setConfig('data.gallery.base', '/home/apache/sites/rathriordan.org/gallery-data/'); /* * Gallery can store its data in multiple different back ends. Currently we * support MySQL, PostgreSQL and Oracle. Enter the hostname where your * database lives, and the username and password you use to connect to it. * * You must specify the name of a database that already exists. Gallery will * not create the database for you, because it's very difficult to do that in * a reliable, database-neutral fashion. The user that you use should have * the following permissions: * * SELECT, INSERT, UPDATE, DELETE, CREATE, ALTER * * You must specify a table and column prefix. This is a few characters that * is prepended to any table or column name to avoid conflicting with reserved * words in the database or other tables you have in the same database. In * fact, it's fine to let Gallery uses the same database as other applications * (including other instances of Gallery itself); the prefix is enough * to distinguish Gallery's tables from other applications. * * We provide some reasonable default prefixes below. If you modify these * after Gallery has created its various tables, it will stop working until * you modify it back. * * The possible database types are: * mysql Standard MySQL * mysqlt MySQL with transactions (3.23.34a and newer) * postgres PostgreSQL 6.x (not rigorously tested) * postgres7 PostgreSQL 7.x * oci8po Oracle (9i and newer) * db2 (EXPERIMENTAL!) IBM DB2 for Linux/UNIX/Windows, v8.2.2 */ $storeConfig['type'] = 'mysql'; $storeConfig['hostname'] = 'localhost'; $storeConfig['database'] = 'gallery'; $storeConfig['username'] = 'gallery'; $storeConfig['password'] = 'ncc1701d'; $storeConfig['tablePrefix'] = 'rathriordan_'; $storeConfig['columnPrefix'] = 'g_'; $storeConfig['usePersistentConnections'] = false; $gallery->setConfig('storage.config', $storeConfig); /* * Put Gallery into debug mode. Useful for tracking down problems with the * application. Not a good idea to leave it this way, though. Possible debug * choices are: 'buffered', 'logged', 'immediate' or false. Don't forget to * use the quotes for any value but false! * * If you choose 'immediate', you'll see debugging information as soon as * Gallery generates it. This can be useful at times, but it'll screw up some * parts of the application flow. * * If you choose 'buffered', Gallery will display debug information in a table * as part of the application. You won't necessarily get *all* the debug * information but the application should work normally. * * If you choose 'logged', you must also specify: * $gallery->setDebugLogFile('/path/to/writeable/file'); * and all debug output will get printed into that file. You'll get all the * debug output and the application will work normally. * * For best debugging output use this line: * * $gallery->setDebug('buffered'); * */ $gallery->setDebug(false); /* * Profiling mode. You can enable profiling for different parts of G2 to get an * idea of what's fast and slow. Right now the only options are to enable SQL * profiling: * * $gallery->setProfile(array('sql')); * */ $gallery->setProfile(false); /* * Maintenance mode. You can disable access to the site for anyone but * site administrators by setting this this flag. Set value below to: * true (without quotes) - to use a basic notification page; themed * view with admin login link when codebase is up to date, but a * plain unstyled page when codebase has been updated but upgrader * has not yet been run. * url (with quotes) - provide a url where requests are redirected in * either case described above. Example: '/maintenance.html' */ $gallery->setConfig('mode.maintenance', false); /* * Embedded mode. You can disable direct access to main.php (standalone G2) * by setting this this flag to true. */ $gallery->setConfig('mode.embed.only', false); /* * Allow a particular IP address to access the session (it still must know the * session id) even though it doesn't match the address/user agent that created * the session. Put the address of validator.w3.org ('128.30.52.13') here to allow * validation of non-public Gallery pages from the links at the bottom of the page. */ $gallery->setConfig('allowSessionAccess', false); /* * URL of Gallery codebase; required only for multisite install. */ $gallery->setConfig('galleryBaseUrl', 'http://www.snugharbor.com/gallery/'); /* * This setting can be used to override Gallery's auto-detection of the domain-name, * protocol (http/https), URL path, and of the file & query string. * Most users can leave this empty. If the server is misconfigured or for very special * setups, this setting can be quite handy. * Examples (the positions of the slashes ('/') are important): * override the path: $gallery->setConfig('baseUri', '/another/path/'); * override the host + path: $gallery->setConfig('baseUri', 'example.com/gallery2/'); * override the protocol + host + path + file: * $gallery->setConfig('baseUri', 'https://example.com:8080/gallery2/index.php'); */ $gallery->setConfig('baseUri', ''); ?># BEGIN Url Rewrite section # (Automatically generated. Do not edit this section) RewriteEngine On RewriteBase /gallery/ RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d [OR] RewriteCond %{REQUEST_FILENAME} gallery\_remote2\.php RewriteCond %{REQUEST_URI} !/gallery/main\.php$ RewriteRule . - [L] RewriteCond %{THE_REQUEST} /gallery/admin/(\?.|\ .) RewriteCond %{REQUEST_URI} !/gallery/main\.php$ RewriteRule . /gallery/main.php?g2_view=core.SiteAdmin [QSA,L] RewriteCond %{THE_REQUEST} /gallery/d/([0-9]+)-([0-9]+)/([^/?]+)(\?.|\ .) RewriteCond %{REQUEST_URI} !/gallery/main\.php$ RewriteRule . /gallery/main.php?g2_view=core.DownloadItem&g2_itemId=%1&g2_serialNumber=%2&g2_fileName=%3 [QSA,L] RewriteCond %{THE_REQUEST} /gallery/v/([^?]+)/slideshow\.html(\?.|\ .) RewriteCond %{REQUEST_URI} !/gallery/main\.php$ RewriteRule . /gallery/main.php?g2_view=slideshow.Slideshow&g2_path=%1 [QSA,L] RewriteCond %{THE_REQUEST} /gallery/v/([^?]+)(\?.|\ .) RewriteCond %{REQUEST_URI} !/gallery/main\.php$ RewriteRule . /gallery/main.php?g2_path=%1 [QSA,L] RewriteCond %{THE_REQUEST} /gallery/([^?]+)(\?.|\ .) RewriteCond %{REQUEST_URI} !/gallery/main\.php$ RewriteRule . /gallery/main.php?g2_controller=migrate.Redirect&g2_path=%1 [QSA,L] # END Url Rewrite section -- MySQL dump 10.9 -- -- Host: localhost Database: gallery -- ------------------------------------------------------ -- Server version 4.1.11-Debian_4sarge2-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 */; /*!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 `arellanes_AccessMap` -- DROP TABLE IF EXISTS `arellanes_AccessMap`; CREATE TABLE `arellanes_AccessMap` ( `g_accessListId` int(11) NOT NULL default '0', `g_userOrGroupId` int(11) NOT NULL default '0', `g_permission` int(11) NOT NULL default '0', PRIMARY KEY (`g_accessListId`,`g_userOrGroupId`), KEY `arellanes_AccessMap_83732` (`g_accessListId`), KEY `arellanes_AccessMap_48775` (`g_userOrGroupId`), KEY `arellanes_AccessMap_18058` (`g_permission`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `arellanes_AccessMap` -- /*!40000 ALTER TABLE `arellanes_AccessMap` DISABLE KEYS */; LOCK TABLES `arellanes_AccessMap` WRITE; INSERT INTO `arellanes_AccessMap` VALUES (11,3,2147483647),(11,4,28679),(28,3,2147483647),(28,4,2311),(28,12,176),(28,13,2147483647),(28,14,176),(659,3,2147483647),(659,6,2147483647),(659,4,2311); UNLOCK TABLES; /*!40000 ALTER TABLE `arellanes_AccessMap` ENABLE KEYS */; -- -- Table structure for table `arellanes_AccessSubscriberMap` -- DROP TABLE IF EXISTS `arellanes_AccessSubscriberMap`; CREATE TABLE `arellanes_AccessSubscriberMap` ( `g_itemId` int(11) NOT NULL default '0', `g_accessListId` int(11) NOT NULL default '0', PRIMARY KEY (`g_itemId`), KEY `arellanes_AccessSubscriberMap_83732` (`g_accessListId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `arellanes_AccessSubscriberMap` -- /*!40000 ALTER TABLE `arellanes_AccessSubscriberMap` DISABLE KEYS */; LOCK TABLES `arellanes_AccessSubscriberMap` WRITE; INSERT INTO `arellanes_AccessSubscriberMap` VALUES (1,0),(2,0),(3,0),(4,0),(5,0),(6,0),(7,11),(12,0),(13,0),(14,0),(15,28),(29,28),(30,0),(31,0),(32,0),(33,28),(34,0),(35,28),(36,0),(37,28),(38,0),(39,28),(40,0),(41,28),(42,0),(43,28),(44,0),(45,28),(46,0),(47,28),(48,0),(49,28),(50,0),(51,28),(52,0),(53,28),(54,0),(55,28),(56,0),(57,28),(58,0),(59,28),(60,0),(61,28),(62,0),(63,28),(64,0),(65,28),(66,0),(67,28),(68,0),(69,28),(70,0),(71,28),(72,0),(73,28),(74,0),(75,28),(76,0),(77,28),(78,0),(79,28),(80,0),(81,28),(82,0),(83,28),(84,0),(85,28),(86,0),(87,28),(88,0),(89,28),(90,0),(91,28),(92,0),(93,28),(94,0),(95,28),(96,0),(97,28),(98,0),(99,28),(100,0),(101,28),(102,0),(103,28),(104,0),(105,28),(106,0),(107,28),(108,0),(109,28),(110,0),(111,28),(112,0),(113,28),(114,0),(115,28),(116,0),(117,28),(118,0),(119,28),(120,0),(121,28),(122,0),(123,28),(124,0),(125,28),(126,0),(127,28),(128,0),(129,28),(130,0),(131,28),(132,0),(133,659),(141,659),(149,659),(150,0),(151,0),(152,0),(153,0),(154,659),(155,0),(156,0),(157,659),(158,0),(159,0),(160,659),(161,0),(162,0),(163,659),(164,0),(165,0),(166,659),(167,0),(168,0),(169,659),(170,0),(171,0),(172,659),(173,0),(174,0),(175,659),(176,0),(177,0),(178,659),(179,0),(180,0),(181,659),(182,0),(183,0),(184,659),(185,0),(186,0),(187,659),(188,0),(189,0),(190,659),(191,0),(192,0),(193,659),(194,0),(195,0),(196,659),(197,0),(198,0),(199,659),(200,0),(201,0),(202,659),(203,0),(204,0),(205,659),(206,0),(207,0),(208,659),(209,0),(210,0),(211,659),(212,0),(213,0),(214,659),(215,0),(216,0),(217,659),(218,0),(219,0),(220,659),(221,0),(222,0),(223,659),(224,0),(225,0),(226,659),(227,0),(228,0),(229,659),(230,0),(231,0),(232,659),(233,0),(234,0),(235,659),(236,0),(237,0),(238,659),(239,0),(240,0),(241,659),(242,0),(243,0),(244,659),(245,0),(246,0),(247,659),(248,0),(249,0),(250,659),(251,0),(252,0),(253,659),(254,0),(255,0),(256,659),(257,0),(258,0),(259,659),(260,0),(261,0),(262,659),(263,0),(264,0),(265,659),(266,0),(267,0),(268,659),(269,0),(270,0),(271,659),(272,0),(273,0),(274,659),(275,0),(276,0),(277,659),(278,0),(279,0),(280,659),(281,0),(282,0),(283,659),(284,0),(285,0),(286,659),(287,0),(288,0),(289,659),(290,0),(291,0),(292,659),(293,0),(294,0),(295,659),(296,0),(297,0),(298,659),(299,0),(300,0),(301,659),(302,0),(303,0),(304,659),(305,0),(306,0),(307,659),(308,0),(309,0),(310,659),(311,0),(312,0),(313,659),(314,0),(315,0),(316,659),(317,0),(318,0),(319,659),(320,0),(321,0),(322,659),(323,0),(324,0),(325,659),(326,0),(327,0),(328,659),(329,0),(330,0),(331,659),(332,0),(333,0),(334,659),(335,0),(336,0),(337,659),(338,0),(339,0),(340,659),(341,0),(342,0),(343,659),(344,0),(345,0),(346,659),(347,0),(348,0),(349,659),(350,0),(351,0),(352,659),(353,0),(354,0),(355,659),(356,0),(357,0),(358,659),(359,0),(360,0),(361,659),(362,0),(363,0),(364,659),(372,659),(373,0),(374,0),(375,0),(376,659),(377,0),(378,0),(379,659),(380,0),(381,0),(382,659),(383,0),(384,0),(385,659),(386,0),(387,0),(388,659),(389,0),(390,0),(391,659),(392,0),(393,0),(394,659),(395,0),(396,0),(397,659),(398,0),(399,0),(400,659),(401,0),(402,0),(403,659),(404,0),(405,0),(406,659),(407,0),(408,0),(409,659),(410,0),(411,0),(412,659),(413,0),(414,0),(415,659),(416,0),(417,0),(418,659),(419,0),(420,0),(421,659),(422,0),(423,0),(424,659),(425,0),(426,0),(427,659),(428,0),(429,0),(430,659),(431,0),(432,0),(433,659),(434,0),(435,0),(436,659),(437,0),(438,0),(439,659),(440,0),(441,0),(442,659),(443,0),(444,0),(445,659),(446,0),(447,0),(448,659),(449,0),(450,0),(451,659),(452,0),(453,0),(454,659),(455,0),(456,0),(457,659),(458,0),(459,0),(460,659),(461,0),(462,0),(463,659),(464,0),(465,0),(466,659),(467,0),(468,0),(469,659),(470,0),(471,0),(472,659),(473,0),(474,0),(475,659),(476,0),(477,0),(478,659),(479,0),(480,0),(481,659),(482,0),(483,0),(484,659),(485,0),(486,0),(487,659),(488,0),(489,0),(490,659),(491,0),(492,0),(493,659),(494,0),(495,0),(496,659),(497,0),(498,0),(499,659),(500,0),(501,0),(502,659),(503,0),(504,0),(505,659),(506,0),(507,0),(508,659),(509,0),(510,0),(511,659),(512,0),(513,0),(514,659),(515,0),(516,0),(517,659),(518,0),(519,0),(520,659),(521,0),(522,0),(523,659),(524,0),(525,0),(526,659),(527,0),(528,0),(529,659),(530,0),(531,0),(532,659),(533,0),(534,0),(535,659),(536,0),(537,0),(538,659),(539,0),(540,0),(541,659),(542,0),(543,0),(544,659),(545,0),(546,0),(547,659),(548,0),(549,0),(550,659),(551,0),(552,0),(553,659),(554,0),(555,0),(556,659),(557,0),(558,0),(559,659),(560,0),(561,0),(562,659),(563,0),(564,0),(565,659),(566,0),(567,0),(568,659),(569,0),(570,0),(571,659),(572,0),(573,0),(574,659),(575,0),(576,0),(577,659),(578,0),(579,0),(580,659),(581,0),(582,0),(583,659),(584,0),(585,0),(586,659),(587,0),(588,0),(589,659),(590,0),(591,0),(592,659),(593,0),(594,0),(595,659),(596,0),(597,0),(598,659),(599,0),(600,0),(601,659),(602,0),(603,0),(604,659),(605,0),(606,0),(607,659),(608,0),(609,0),(610,659),(611,0),(612,0),(613,659),(614,0),(615,0),(616,659),(617,0),(618,0),(619,659),(620,0),(621,0),(622,659),(623,0),(624,0),(625,659),(626,0),(627,0),(628,659),(629,0),(630,0),(631,659),(632,0),(633,0),(634,659),(635,0),(636,0),(637,659),(638,0),(639,0),(640,659),(641,0),(642,0),(643,659),(644,0),(645,0),(646,659),(647,0),(648,0),(649,659),(650,0),(651,0),(652,659); UNLOCK TABLES; /*!40000 ALTER TABLE `arellanes_AccessSubscriberMap` ENABLE KEYS */; -- -- Table structure for table `arellanes_AlbumItem` -- DROP TABLE IF EXISTS `arellanes_AlbumItem`; CREATE TABLE `arellanes_AlbumItem` ( `g_id` int(11) NOT NULL default '0', `g_theme` varchar(32) default NULL, `g_orderBy` varchar(128) default NULL, `g_orderDirection` varchar(32) default NULL, PRIMARY KEY (`g_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `arellanes_AlbumItem` -- /*!40000 ALTER TABLE `arellanes_AlbumItem` DISABLE KEYS */; LOCK TABLES `arellanes_AlbumItem` WRITE; INSERT INTO `arellanes_AlbumItem` VALUES (7,NULL,NULL,'asc'),(15,NULL,NULL,'asc'),(133,NULL,NULL,'asc'),(141,NULL,NULL,'asc'),(364,NULL,NULL,'asc'),(652,NULL,NULL,'asc'); UNLOCK TABLES; /*!40000 ALTER TABLE `arellanes_AlbumItem` ENABLE KEYS */; -- -- Table structure for table `arellanes_AnimationItem` -- DROP TABLE IF EXISTS `arellanes_AnimationItem`; CREATE TABLE `arellanes_AnimationItem` ( `g_id` int(11) NOT NULL default '0', `g_width` int(11) default NULL, `g_height` int(11) default NULL, PRIMARY KEY (`g_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `arellanes_AnimationItem` -- /*!40000 ALTER TABLE `arellanes_AnimationItem` DISABLE KEYS */; LOCK TABLES `arellanes_AnimationItem` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `arellanes_AnimationItem` ENABLE KEYS */; -- -- Table structure for table `arellanes_CacheMap` -- DROP TABLE IF EXISTS `arellanes_CacheMap`; CREATE TABLE `arellanes_CacheMap` ( `g_key` varchar(32) NOT NULL default '', `g_value` longtext, `g_userId` int(11) NOT NULL default '0', `g_itemId` int(11) NOT NULL default '0', `g_type` varchar(32) NOT NULL default '', `g_timestamp` int(11) NOT NULL default '0', PRIMARY KEY (`g_key`,`g_userId`,`g_itemId`,`g_type`), KEY `arellanes_CacheMap_69068` (`g_userId`), KEY `arellanes_CacheMap_75985` (`g_itemId`), KEY `arellanes_CacheMap_81545` (`g_type`), KEY `arellanes_CacheMap_24286` (`g_timestamp`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `arellanes_CacheMap` -- /*!40000 ALTER TABLE `arellanes_CacheMap` DISABLE KEYS */; LOCK TABLES `arellanes_CacheMap` WRITE; UNLOCK TABLES; /*!40000 ALTER TABLE `arellanes_CacheMap` ENABLE KEYS */; -- -- Table structure for table `arellanes_ChildEntity` -- DROP TABLE IF EXISTS `arellanes_ChildEntity`; CREATE TABLE `arellanes_ChildEntity` ( `g_id` int(11) NOT NULL default '0', `g_parentId` int(11) NOT NULL default '0', PRIMARY KEY (`g_id`), KEY `arellanes_ChildEntity_52718` (`g_parentId`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `arellanes_ChildEntity` -- /*!40000 ALTER TABLE `arellanes_ChildEntity` DISABLE KEYS */; LOCK TABLES `arellanes_ChildEntity` WRITE; INSERT INTO `arellanes_ChildEntity` VALUES (7,0),(15,7),(29,15),(30,29),(31,15),(32,7),(33,15),(34,33),(35,15),(36,35),(37,15),(38,37),(39,15),(40,39),(41,15),(42,41),(43,15),(44,43),(45,15),(46,45),(47,15),(48,47),(49,15),(50,49),(51,15),(52,51),(53,15),(54,53),(55,15),(56,55),(57,15),(58,57),(59,15),(60,59),(61,15),(62,61),(63,15),(64,63),(65,15),(66,65),(67,15),(68,67),(69,15),(70,69),(71,15),(72,71),(73,15),(74,73),(75,15),(76,75),(77,15),(78,77),(79,15),(80,79),(81,15),(82,81),(83,15),(84,83),(85,15),(86,85),(87,15),(88,87),(89,15),(90,89),(91,15),(92,91),(93,15),(94,93),(95,15),(96,95),(97,15),(98,97),(99,15),(100,99),(101,15),(102,101),(103,15),(104,103),(105,15),(106,105),(107,15),(108,107),(109,15),(110,109),(111,15),(112,111),(113,15),(114,113),(115,15),(116,115),(117,15),(118,117),(119,15),(120,119),(121,15),(122,121),(123,15),(124,123),(125,15),(126,125),(127,15),(128,127),(129,15),(130,129),(131,15),(132,131),(133,7),(141,133),(149,141),(150,149),(151,149),(152,141),(153,133),(154,141),(155,154),(156,154),(157,141),(158,157),(159,157),(160,141),(161,160),(162,160),(163,141),(164,163),(165,163),(166,141),(167,166),(168,166),(169,141),(170,169),(171,169),(172,141),(173,172),(174,172),(175,141),(176,175),(177,175),(178,141),(179,178),(180,178),(181,141),(182,181),(183,181),(184,141),(185,184),(186,184),(187,141),(188,187),(189,187),(190,141),(191,190),(192,190),(193,141),(194,193),(195,193),(196,141),(197,196),(198,196),(199,141),(200,199),(201,199),(202,141),(203,202),(204,202),(205,141),(206,205),(207,205),(208,141),(209,208),(210,208),(211,141),(212,211),(213,211),(214,141),(215,214),(216,214),(217,141),(218,217),(219,217),(220,141),(221,220),(222,220),(223,141),(224,223),(225,223),(226,141),(227,226),(228,226),(229,141),(230,229),(231,229),(232,141),(233,232),(234,232),(235,141),(236,235),(237,235),(238,141),(239,238),(240,238),(241,141),(242,241),(243,241),(244,141),(245,244),(246,244),(247,141),(248,247),(249,247),(250,141),(251,250),(252,250),(253,141),(254,253),(255,253),(256,141),(257,256),(258,256),(259,141),(260,259),(261,259),(262,141),(263,262),(264,262),(265,141),(266,265),(267,265),(268,141),(269,268),(270,268),(271,141),(272,271),(273,271),(274,141),(275,274),(276,274),(277,141),(278,277),(279,277),(280,141),(281,280),(282,280),(283,141),(284,283),(285,283),(286,141),(287,286),(288,286),(289,141),(290,289),(291,289),(292,141),(293,292),(294,292),(295,141),(296,295),(297,295),(298,141),(299,298),(300,298),(301,141),(302,301),(303,301),(304,141),(305,304),(306,304),(307,141),(308,307),(309,307),(310,141),(311,310),(312,310),(313,141),(314,313),(315,313),(316,141),(317,316),(318,316),(319,141),(320,319),(321,319),(322,141),(323,322),(324,322),(325,141),(326,325),(327,325),(328,141),(329,328),(330,328),(331,141),(332,331),(333,331),(334,141),(335,334),(336,334),(337,141),(338,337),(339,337),(340,141),(341,340),(342,340),(343,141),(344,343),(345,343),(346,141),(347,346),(348,346),(349,141),(350,349),(351,349),(352,141),(353,352),(354,352),(355,141),(356,355),(357,355),(358,141),(359,358),(360,358),(361,141),(362,361),(363,361),(364,133),(372,364),(373,372),(374,372),(375,364),(376,364),(377,376),(378,376),(379,364),(380,379),(381,379),(382,364),(383,382),(384,382),(385,364),(386,385),(387,385),(388,364),(389,388),(390,388),(391,364),(392,391),(393,391),(394,364),(395,394),(396,394),(397,364),(398,397),(399,397),(400,364),(401,400),(402,400),(403,364),(404,403),(405,403),(406,364),(407,406),(408,406),(409,364),(410,409),(411,409),(412,364),(413,412),(414,412),(415,364),(416,415),(417,415),(418,364),(419,418),(420,418),(421,364),(422,421),(423,421),(424,364),(425,424),(426,424),(427,364),(428,427),(429,427),(430,364),(431,430),(432,430),(433,364),(434,433),(435,433),(436,364),(437,436),(438,436),(439,364),(440,439),(441,439),(442,364),(443,442),(444,442),(445,364),(446,445),(447,445),(448,364),(449,448),(450,448),(451,364),(452,451),(453,451),(454,364),(455,454),(456,454),(457,364),(458,457),(459,457),(460,364),(461,460),(462,460),(463,364),(464,463),(465,463),(466,364),(467,466),(468,466),(469,364),(470,469),(471,469),(472,364),(473,472),(474,472),(475,364),(476,475),(477,475),(478,364),(479,478),(480,478),(481,364),(482,481),(483,481),(484,364),(485,484),(486,484),(487,364),(488,487),(489,487),(490,364),(491,490),(492,490),(493,364),(494,493),(495,493),(496,364),(497,496),(498,496),(499,364),(500,499),(501,499),(502,364),(503,502),(504,502),(505,364),(506,505),(507,505),(508,364),(509,508),(510,508),(511,364),(512,511),(513,511),(514,364),(515,514),(516,514),(517,364),(518,517),(519,517),(520,364),(521,520),(522,520),(523,364),(524,523),(525,523),(526,364),(527,526),(528,526),(529,364),(530,529),(531,529),(532,364),(533,532),(534,532),(535,364),(536,535),(537,535),(538,364),(539,538),(540,538),(541,364),(542,541),(543,541),(544,364),(545,544),(546,544),(547,364),(548,547),(549,547),(550,364),(551,550),(552,550),(553,364),(554,553),(555,553),(556,364),(557,556),(558,556),(559,364),(560,559),(561,559),(562,364),(563,562),(564,562),(565,364),(566,565),(567,565),(568,364),(569,568),(570,568),(571,364),(572,571),(573,571),(574,364),(575,574),(576,574),(577,364),(578,577),(579,577),(580,364),(581,580),(582,580),(583,364),(584,583),(585,583),(586,364),(587,586),(588,586),(589,364),(590,589),(591,589),(592,364),(593,592),(594,592),(595,364),(596,595),(597,595),(598,364),(599,598),(600,598),(601,364),(602,601),(603,601),(604,364),(605,604),(606,604),(607,364),(608,607),(609,607),(610,364),(611,610),(612,610),(613,364),(614,613),(615,613),(616,364),(617,616),(618,616),(619,364),(620,619),(621,619),(622,364),(623,622),(624,622),(625,364),(626,625),(627,625),(628,364),(629,628),(630,628),(631,364),(632,631),(633,631),(634,364),(635,634),(636,634),(637,364),(638,637),(639,637),(640,364),(641,640),(642,640),(643,364),(644,643),(645,643),(646,364),(647,646),(648,646),(649,364),(650,649),(651,649),(652,133); UNLOCK TABLES; /*!40000 ALTER TABLE `arellanes_ChildEntity` ENABLE KEYS */; -- -- Table structure for table `arellanes_Comment` -- DROP TABLE IF EX