commit:     674eb6c38dd1b4ed0fabf901173c9cd97afd0919
Author:     Magnus Granberg <zorry <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 15 16:37:01 2016 +0000
Commit:     Magnus Granberg <zorry <AT> gentoo <DOT> org>
CommitDate: Mon Feb 15 16:37:01 2016 +0000
URL:        
https://gitweb.gentoo.org/proj/tinderbox-cluster-www.git/commit/?id=674eb6c3

add full db of the web

 sql/gentoo-www_full.sql | 651 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 651 insertions(+)

diff --git a/sql/gentoo-www_full.sql b/sql/gentoo-www_full.sql
new file mode 100644
index 0000000..b8f7ae0
--- /dev/null
+++ b/sql/gentoo-www_full.sql
@@ -0,0 +1,651 @@
+-- phpMyAdmin SQL Dump
+-- version 4.2.13
+-- http://www.phpmyadmin.net
+--
+-- Host: localhost
+-- Generation Time: Feb 15, 2016 at 03:53 PM
+-- Server version: 10.0.22-MariaDB-log
+-- PHP Version: 5.6.16-pl0-gentoo
+
+SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
+SET time_zone = "+00:00";
+
+
+/*!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 */;
+
+--
+-- Database: `gentoo-www`
+--
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `auth_group`
+--
+
+CREATE TABLE IF NOT EXISTS `auth_group` (
+`id` int(11) NOT NULL,
+  `name` varchar(80) NOT NULL
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `auth_group_permissions`
+--
+
+CREATE TABLE IF NOT EXISTS `auth_group_permissions` (
+`id` int(11) NOT NULL,
+  `group_id` int(11) NOT NULL,
+  `permission_id` int(11) NOT NULL
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `auth_permission`
+--
+
+CREATE TABLE IF NOT EXISTS `auth_permission` (
+`id` int(11) NOT NULL,
+  `name` varchar(255) NOT NULL,
+  `content_type_id` int(11) NOT NULL,
+  `codename` varchar(100) NOT NULL
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+
+--
+-- Dumping data for table `auth_permission`
+--
+
+INSERT INTO `auth_permission` (`id`, `name`, `content_type_id`, `codename`) 
VALUES
+(1, 'Can add permission', 1, 'add_permission'),
+(2, 'Can change permission', 1, 'change_permission'),
+(3, 'Can delete permission', 1, 'delete_permission'),
+(4, 'Can add group', 2, 'add_group'),
+(5, 'Can change group', 2, 'change_group'),
+(6, 'Can delete group', 2, 'delete_group'),
+(7, 'Can add user', 3, 'add_user'),
+(8, 'Can change user', 3, 'change_user'),
+(9, 'Can delete user', 3, 'delete_user'),
+(10, 'Can add content type', 4, 'add_contenttype'),
+(11, 'Can change content type', 4, 'change_contenttype'),
+(12, 'Can delete content type', 4, 'delete_contenttype'),
+(13, 'Can add session', 5, 'add_session'),
+(14, 'Can change session', 5, 'change_session'),
+(15, 'Can delete session', 5, 'delete_session'),
+(16, 'Can add site', 6, 'add_site'),
+(17, 'Can change site', 6, 'change_site'),
+(18, 'Can delete site', 6, 'delete_site');
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `auth_user`
+--
+
+CREATE TABLE IF NOT EXISTS `auth_user` (
+`id` int(11) NOT NULL,
+  `password` varchar(128) NOT NULL,
+  `last_login` datetime DEFAULT NULL,
+  `is_superuser` tinyint(1) NOT NULL,
+  `username` varchar(30) NOT NULL,
+  `first_name` varchar(30) NOT NULL,
+  `last_name` varchar(30) NOT NULL,
+  `email` varchar(254) NOT NULL,
+  `is_staff` tinyint(1) NOT NULL,
+  `is_active` tinyint(1) NOT NULL,
+  `date_joined` datetime NOT NULL
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `auth_user_groups`
+--
+
+CREATE TABLE IF NOT EXISTS `auth_user_groups` (
+`id` int(11) NOT NULL,
+  `user_id` int(11) NOT NULL,
+  `group_id` int(11) NOT NULL
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `auth_user_user_permissions`
+--
+
+CREATE TABLE IF NOT EXISTS `auth_user_user_permissions` (
+`id` int(11) NOT NULL,
+  `user_id` int(11) NOT NULL,
+  `permission_id` int(11) NOT NULL
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `django_content_type`
+--
+
+CREATE TABLE IF NOT EXISTS `django_content_type` (
+`id` int(11) NOT NULL,
+  `app_label` varchar(100) NOT NULL,
+  `model` varchar(100) NOT NULL
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+
+--
+-- Dumping data for table `django_content_type`
+--
+
+INSERT INTO `django_content_type` (`id`, `app_label`, `model`) VALUES
+(2, 'auth', 'group'),
+(1, 'auth', 'permission'),
+(3, 'auth', 'user'),
+(4, 'contenttypes', 'contenttype'),
+(5, 'sessions', 'session'),
+(6, 'sites', 'site');
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `django_migrations`
+--
+
+CREATE TABLE IF NOT EXISTS `django_migrations` (
+`id` int(11) NOT NULL,
+  `app` varchar(255) NOT NULL,
+  `name` varchar(255) NOT NULL,
+  `applied` datetime NOT NULL
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+
+--
+-- Dumping data for table `django_migrations`
+--
+
+INSERT INTO `django_migrations` (`id`, `app`, `name`, `applied`) VALUES
+(1, 'contenttypes', '0001_initial', '2015-06-20 14:35:54'),
+(2, 'contenttypes', '0002_remove_content_type_name', '2015-06-20 14:35:54'),
+(3, 'auth', '0001_initial', '2015-06-20 14:35:54'),
+(4, 'auth', '0002_alter_permission_name_max_length', '2015-06-20 14:35:54'),
+(5, 'auth', '0003_alter_user_email_max_length', '2015-06-20 14:35:54'),
+(6, 'auth', '0004_alter_user_username_opts', '2015-06-20 14:35:54'),
+(7, 'auth', '0005_alter_user_last_login_null', '2015-06-20 14:35:54'),
+(8, 'auth', '0006_require_contenttypes_0002', '2015-06-20 14:35:54'),
+(9, 'sessions', '0001_initial', '2015-06-20 14:35:54'),
+(10, 'sites', '0001_initial', '2015-06-20 14:35:54');
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `django_session`
+--
+
+CREATE TABLE IF NOT EXISTS `django_session` (
+  `session_key` varchar(40) NOT NULL,
+  `session_data` longtext NOT NULL,
+  `expire_date` datetime NOT NULL
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `django_site`
+--
+
+CREATE TABLE IF NOT EXISTS `django_site` (
+`id` int(11) NOT NULL,
+  `domain` varchar(100) NOT NULL,
+  `name` varchar(50) NOT NULL
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+
+--
+-- Dumping data for table `django_site`
+--
+
+INSERT INTO `django_site` (`id`, `domain`, `name`) VALUES
+(1, 'example.com', 'example.com');
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `layout`
+--
+
+CREATE TABLE IF NOT EXISTS `layout` (
+`layout_id` int(11) NOT NULL,
+  `layout` varchar(20) NOT NULL,
+  `layout_file` varchar(20) NOT NULL
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+--
+-- Dumping data for table `layout`
+--
+
+INSERT INTO `layout` (`layout_id`, `layout`, `layout_file`) VALUES
+(1, 'tyrian', 'tyrian.html'),
+(2, 'page', 'page.html'),
+(3, 'box', 'box.html'),
+(4, 'post', 'post.html'),
+(5, 'page-pre', 'page-pre.html'),
+(6, 'page-nav3', 'page-nav3.html');
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `pages`
+--
+
+CREATE TABLE IF NOT EXISTS `pages` (
+`page_id` int(11) NOT NULL,
+  `nav_title` varchar(200) NOT NULL,
+  `title` varchar(200) NOT NULL,
+  `description` varchar(200) NOT NULL,
+  `nav1` varchar(100) NOT NULL,
+  `nav1_show` tinyint(1) NOT NULL,
+  `nav1_weight` int(11) NOT NULL,
+  `meta` varchar(200) NOT NULL,
+  `url` varchar(200) NOT NULL,
+  `inlinejs` varchar(200) NOT NULL,
+  `body_class` varchar(20) NOT NULL,
+  `layout_id` int(11) NOT NULL,
+  `sub_menu` tinyint(1) NOT NULL
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+--
+-- Dumping data for table `pages`
+--
+
+INSERT INTO `pages` (`page_id`, `nav_title`, `title`, `description`, `nav1`, 
`nav1_show`, `nav1_weight`, `meta`, `url`, `inlinejs`, `body_class`, 
`layout_id`, `sub_menu`) VALUES
+(1, 'Home', 'Home', 'Welcome to tinderbox cluster that build and test Gentoo 
packages', 'home', 1, 1, '', 'home', '', '', 1, 0),
+(2, 'Packages', 'Packages', '', 'packages', 1, 5, '', 'packages', '', '', 1, 
1),
+(3, 'New', 'New', '', 'new', 1, 9, '', 'new', '', '', 1, 1),
+(4, 'Inside Gentoo', 'Inside Gentoo', '', 'inside-gentoo', 1, 10, '', 
'inside-gentoo', '', '', 1, 1),
+(5, 'Support', 'Support', '', 'support', 1, 20, '', 'support', '', '', 1, 1),
+(6, 'Get Involved', 'Get Involved', '', 'get-involved', 1, 30, '', 
'get-involved', '', '', 1, 1),
+(7, '', 'Donate', '', 'donate', 1, 0, '', 'donate', '', '', 1, 0);
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `posts`
+--
+
+CREATE TABLE IF NOT EXISTS `posts` (
+`post_id` int(11) NOT NULL,
+  `title` varchar(200) NOT NULL,
+  `url` varchar(200) NOT NULL,
+  `text` text NOT NULL,
+  `time_stamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE 
CURRENT_TIMESTAMP
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+--
+-- Dumping data for table `posts`
+--
+
+INSERT INTO `posts` (`post_id`, `title`, `url`, `text`, `time_stamp`) VALUES
+(1, 'Git changes & impact to Overlays hostnames', 
'/news/2015/04/25/anongit-overlays.html', '<p>As previously announced\r\n<a 
href="https://archives.gentoo.org/gentoo-dev-announce/message/0c0e1e88bf133a070edf7f833a83f8be";>[1]</a>\r\n<a
 
href="https://archives.gentoo.org/gentoo-announce/message/51cd96db6456fe7e540abc4c6dcac2bd";>[2]</a>,\r\nand
 previously in the discussion of merging Overlays with Gentoo’s primary 
SCM\r\nhosting (CVS+Git):\r\nThe old overlays hostnames 
(<code>git.overlays.gentoo.org</code> and\r\n<code>overlays.gentoo.org</code>) 
have now been disabled, as well as non-SSH traffic 
to\r\n<code>git.gentoo.org</code>. This was a deliberate move to seperate 
anonymous versus\r\nauthenticated Git traffic, and ensure that anonymous Git 
traffic can continued\r\nto be scaled when we go ahead with switching away from 
CVS. Anonymous and\r\nauthenticated Git is now served by seperate systems, and 
no anonymous Git\r\ntraffic is permitted to the authenticated Git 
server.</p>\r\n\r\
 n<p>If you have anonymous 
+Git checkouts from any of the affected hostnames, you\r\nshould switch them to 
using one of these new URLs:</p>\r\n\r\n<ul>\r\n  
<li><code>https://anongit.gentoo.org/git/$REPO</code></li>\r\n  
<li><code>http://anongit.gentoo.org/git/$REPO</code></li>\r\n  
<li><code>git://anongit.gentoo.org/$REPO</code></li>\r\n</ul>\r\n\r\n<p>If you 
have authenticated Git checkouts from the same hosts, you should switch\r\nthem 
to this new URL:</p>\r\n\r\n<ul>\r\n  
<li><code>git+ssh://g...@git.gentoo.org/$REPO</code></li>\r\n</ul>\r\n\r\n<p>In 
either case, you can trivially update any existing checkout with:<br 
/>\r\n<code>git remote set-url origin 
git+ssh://g...@git.gentoo.org/$REPO</code><br />\r\n(be sure to adjust the path 
of the repository and the name of the remote as\r\nneeded).</p>', '2015-06-29 
20:15:49'),
+(2, 'Gentoo announces total website makeover (not an April Fool''s)', 
'/news/2015/03/31/website-update.html', '<p><strong>Thank you for participating 
in Gentoo’s 2015 April Fools’ joke!</strong></p>\r\n\r\n<p>Now that April 1 has 
passed, we shed a tear as we say goodbye CGA Web™ but also to our 
website.\r\nOur previous website, that is, that has been with us for more than 
a decade.\r\nUntil all contents are migrated, you can find the previous version 
on <a href="https://wwwold.gentoo.org/";>wwwold.gentoo.org</a>,\r\nplease note 
that the contents found there are not maintained any longer.</p>\r\n\r\n<p>As 
this is indeed a major change, we’re still working out some rough edges\r\nand 
would appreciate your feedback via email to <a 
href="&#109;&#097;&#105;&#108;&#116;&#111;:&#119;&#119;&#119;&#064;&#103;&#101;&#110;&#116;&#111;&#111;&#046;&#111;&#114;&#103;">&#119;&#119;&#119;&#064;&#103;&#101;&#110;&#116;&#111;&#111;&#046;&#111;&#114;&#103;</a>\r\nor
 on IRC in <a href="/get-invo
 lved/irc-channels/all-channels.
+html">#gentoo-www</a>.</p>\r\n\r\n<p>We hope you appreciate the new look and 
had a great time finding out how terrible you are at Pong and are looking 
forward\r\nto seeing your reactions once again when we celebrate the launch of 
the new Gentoo Disk™ set.</p>\r\n\r\n<p>As for <a 
href="&#109;&#097;&#105;&#108;&#116;&#111;:&#097;&#051;&#108;&#105;&#064;&#103;&#101;&#110;&#116;&#111;&#111;&#046;&#111;&#114;&#103;">Alex</a>,
 <a 
href="&#109;&#097;&#105;&#108;&#116;&#111;:&#114;&#111;&#098;&#098;&#097;&#116;&#050;&#064;&#103;&#101;&#110;&#116;&#111;&#111;&#046;&#111;&#114;&#103;">Robin</a>,
 and all co-conspirators, thank you again for your 
participation!</p>\r\n\r\n<p><small>The original April 1 news item is still 
available on the single news display page.</small></p>', '2015-06-26 20:59:58');
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `site_settings`
+--
+
+CREATE TABLE IF NOT EXISTS `site_settings` (
+`site_id` int(11) NOT NULL,
+  `site` varchar(20) NOT NULL,
+  `title` varchar(50) NOT NULL,
+  `email` varchar(50) NOT NULL,
+  `description` varchar(100) NOT NULL,
+  `url` varchar(50) NOT NULL,
+  `contact` varchar(50) NOT NULL,
+  `cdnurl` varchar(100) NOT NULL,
+  `layout_path` varchar(11) NOT NULL,
+  `download_url` varchar(100) NOT NULL
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+--
+-- Dumping data for table `site_settings`
+--
+
+INSERT INTO `site_settings` (`site_id`, `site`, `title`, `email`, 
`description`, `url`, `contact`, `cdnurl`, `layout_path`, `download_url`) VALUES
+(1, 'www.gentoo.org', 'Gentoo Linux', 'w...@gentoo.org', 'News and information 
from Gentoo Linux', 'https://www.gentoo.org', '/inside-gentoo/contact/', 
'https://1b9a50f4f9de4348cd9f-e703bc50ba0aa66772a874f8c7698be7.ssl.cf5.rackcdn.com',
 '', 'http://distfiles.gentoo.org/releases/');
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `sponsors`
+--
+
+CREATE TABLE IF NOT EXISTS `sponsors` (
+`sponsors_id` int(11) NOT NULL,
+  `name` varchar(200) NOT NULL,
+  `ads_name` varchar(100) NOT NULL,
+  `img` varchar(100) NOT NULL,
+  `ads_img` varchar(100) NOT NULL,
+  `link` varchar(100) NOT NULL,
+  `ads_link` varchar(100) NOT NULL,
+  `blurb` text NOT NULL,
+  `ads_blure` varchar(200) NOT NULL,
+  `ads_alt_name` varchar(200) NOT NULL,
+  `weight` int(11) NOT NULL,
+  `active` tinyint(1) NOT NULL,
+  `ads_active` tinyint(1) NOT NULL
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+--
+-- Dumping data for table `sponsors`
+--
+
+INSERT INTO `sponsors` (`sponsors_id`, `name`, `ads_name`, `img`, `ads_img`, 
`link`, `ads_link`, `blurb`, `ads_blure`, `ads_alt_name`, `weight`, `active`, 
`ads_active`) VALUES
+(1, 'Oregon State University: Open Source Lab (OSUOSL)', 'OSL', 'osuosl2.png', 
'osuosl.png', 'http://osuosl.org', 'http://osuosl.org/contribute', 'Located at 
[Oregon State University](http://oregonstate.edu) in beautiful Corvallis, 
Oregon,\r\n      the [Open Source Lab](http://osuosl.org) is a focal point of 
development,\r\n      hosting and other assorted services for the Open Source 
community.\r\n      \r\n      OSU provides several services to the Gentoo 
project.\r\n      In addition to serving as the primary source mirror for 
Gentoo, they also provide colocation space for several Gentoo servers.', '', 
'OSL', 25, 1, 1),
+(2, 'Bytemark Hosting', 'Bytemark', 'bytemark.png', 'bytemark.png', 
'http://www.bytemark.co.uk/r/gentoo-sponsors', 
'http://www.bytemark.co.uk/r/gentoo-home', 'Bytemark Hosting provide Gentoo 
Linux with servers and services which drive our network of global mirrors.\r\n  
    They are a leading Internet Service Provider (ISP) in the United Kingdom 
and provide scalable,\r\n      powerful and affordable hosting with lots of 
"geek friendly" extras as standard.\r\n      They''ve deployed Gentoo Linux 
within their network to provide a flexible solution to difficult problems,\r\n  
    such as providing a network rescue environment for all dedicated hosts.', 
'', 'Bytemark', 20, 1, 1),
+(3, '7L Networks', 'SevenL', 'sevenl.png', 'sevenl.png', 'http://www.7l.com/', 
'https://www.sevenl.net/?utm_source=gentoo-org&utm_medium=sponsored-banner&utm_campaign=gentoo-dedica',
 '[7L](http://www.7l.com/) Networks is a leader in [Cloud 
Hosting](http://www.7l.com/) services, dedicated servers,\r\n      and is a 
leading [Toronto server colocation 
provider](http://www.7l.com/business-hosting-solutions/Toronto-Colocation-Hosting-Provider.html).\r\n
      7L has been proudly donating server hosting services to Gentoo Linux 
since 2004.\r\n      In addition, they donate dedicated servers to CentOS, 
Linux Mint, Arch Linux and a number of other open source communities that rely 
on sponsorship to succeed.', '', 'SevenL', 10, 1, 0),
+(4, 'LeaseWeb', 'LeaseWeb', 'leaseweb.png', 'leaseweb.png', 
'http://www.leaseweb.com/', 'http://www.leaseweb.com/', 
'[LeaseWeb](http://www.leaseweb.com/) is a leading Infrastructure as a Service 
(IaaS) provider serving a worldwide portfolio of over 15,000 customers ranging 
from SMBs to Enterprises.\r\n      Services include Public Cloud, Private 
Cloud, Hybrid Hosting, Colocation, CDN, and Dedicated Hosting supported by 
exceptional customer service and technical support.\r\n      With more than 
60,000 servers under management, LeaseWeb provides infrastructure since 
1997.\r\n      The company operates 6 data centers in the U.S. and Europe, all 
of which are backed by a superior worldwide network with a total capacity of 
more than 3.5 Tbps.', '', 'LeaseWeb', 10, 1, 1),
+(6, 'Numberly', 'Numberly', 'numberly.png', 'numberly.png', 
'http://www.numberly.com/', 'http://www.numberly.com/', 
'[Numberly](http://www.numberly.com/) is a 1000mercis Group brand, a pioneer in 
interactive advertising and marketing, providing innovative solutions\r\n      
for companies willing to optimise their customer acquisition and retention 
through interactive media (Internet, mobile phones and tablets).\r\n      
Numberly helps its clients to design, develop, implement, and maximise the ROI 
of their interactive marketing and advertising campaigns.\r\n\r\n      Numberly 
proudly provides 3 powerful physical servers dedicated to the Gentoo project 
with ipv6 support.', '', 'Numberly', 25, 1, 1);
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `subsub_pages`
+--
+
+CREATE TABLE IF NOT EXISTS `subsub_pages` (
+`subsub_page_id` int(11) NOT NULL,
+  `nav_title` varchar(200) NOT NULL,
+  `title` varchar(200) NOT NULL,
+  `description` varchar(200) NOT NULL,
+  `sub_page_id` int(11) NOT NULL,
+  `nav3` varchar(100) NOT NULL,
+  `nav3_show` tinyint(1) NOT NULL,
+  `nav3_weight` int(11) NOT NULL,
+  `meta` varchar(200) NOT NULL,
+  `url` varchar(200) NOT NULL,
+  `inlinejs` varchar(200) NOT NULL,
+  `layout_id` varchar(100) NOT NULL,
+  `body_class` varchar(20) NOT NULL
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `sub_pages`
+--
+
+CREATE TABLE IF NOT EXISTS `sub_pages` (
+`sub_page_id` int(11) NOT NULL,
+  `nav_title` varchar(200) NOT NULL,
+  `title` varchar(200) NOT NULL,
+  `description` varchar(200) NOT NULL,
+  `page_id` int(11) NOT NULL,
+  `nav2` varchar(100) NOT NULL,
+  `nav2_show` tinyint(1) NOT NULL,
+  `nav2_weight` int(11) NOT NULL,
+  `meta` varchar(200) NOT NULL,
+  `url` varchar(200) NOT NULL,
+  `inlinejs` varchar(200) NOT NULL,
+  `layout_id` int(11) NOT NULL,
+  `body_class` varchar(20) NOT NULL,
+  `sub_menu` tinyint(1) NOT NULL
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+--
+-- Dumping data for table `sub_pages`
+--
+
+INSERT INTO `sub_pages` (`sub_page_id`, `nav_title`, `title`, `description`, 
`page_id`, `nav2`, `nav2_show`, `nav2_weight`, `meta`, `url`, `inlinejs`, 
`layout_id`, `body_class`, `sub_menu`) VALUES
+(1, '', 'About Gentoo', '', 3, 'about', 1, 10, '', 'about', '', 1, '', 0),
+(2, '', 'FAQ', '', 3, 'faq', 1, 40, '', 'https://wiki.gentoo.org/wiki/FAQ', 
'', 1, '', 0),
+(3, 'Philosophy', 'The Philosophy of Gentoo', '', 3, 'philosophy', 1, 20, '', 
'philosophy', '', 1, '', 0),
+(4, 'Screenshots', 'Gentoo Screenshots', '', 3, 'screenshots', 1, 30, '', 
'screenshots', '', 1, '', 0),
+(5, 'Mirrors', 'Gentoo Source Mirrors', '', 2, 'mirrors', 1, 0, '', 'mirrors', 
'', 1, '', 0),
+(6, 'Signatures', 'Release Media Signatures', '', 2, 'signatures', 1, 0, '', 
'signatures', '', 1, '', 0),
+(7, 'Developers', 'Current Gentoo Developers', '', 4, 'developers', 1, 10, '', 
'developers', '', 1, '', 0),
+(8, '', 'Projects', '', 4, 'projects', 1, 20, '', 
'https://wiki.gentoo.org/wiki/Project:Gentoo', '', 1, '', 0),
+(9, 'Artwork', 'Gentoo Artwork', '', 4, 'artwork', 1, 25, '', 'artwork', '', 
1, '', 0),
+(10, 'Gentoo Foundation', 'Gentoo Foundation', '', 4, 'foundation', 1, 30, '', 
'foundation', '', 6, 'nav-align-h2', 0),
+(11, '', 'Sponsors', '', 4, 'sponsors', 1, 40, '', 'sponsors', '', 1, '', 0),
+(12, 'Stores', 'Stores offering Gentoo products', '', 4, 'stores', 1, 50, '', 
'stores', '', 1, '', 0),
+(13, '', 'Contact', '', 4, 'contact', 1, 99, '', 'contact', '', 1, '', 0),
+(14, '', 'Documentation', '', 5, 'documentation', 1, 0, '', 'documentation', 
'', 1, '', 0),
+(15, 'News Items', 'Repository News Items', '', 5, 'news-items', 1, 0, '', 
'news-items', '', 1, '', 0),
+(16, '', 'Package Database', '', 5, 'package-database', 1, 0, '', 
'http://packages.gentoo.org/', '', 1, '', 0),
+(17, 'Security', 'Gentoo Security', '', 5, 'security', 1, 0, '', 'security', 
'', 6, 'nav-align-h2', 0),
+(18, 'rsync Mirrors', 'Gentoo rsync Mirrors', '', 5, 'mirrors', 1, 0, '', 
'mirrors', '', 1, '', 0),
+(19, '', 'IRC Channels', '', 6, 'irc', 1, 10, '', 'irc', '', 1, '', 0),
+(20, 'Forums', 'Discussion Forums', '', 6, 'forums', 1, 20, '', 
'https://forums.gentoo.org/', '', 1, '', 0),
+(21, '', 'Mailing Lists', '', 6, 'ml', 1, 30, '', 'mailings-lists', '', 1, '', 
0),
+(22, 'Contribute', 'Contribute to Gentoo', '', 6, 'contribute', 1, 40, '', 
'contribute', '', 1, '', 0),
+(23, '', 'Become a Developer', '', 6, 'become-dev', 1, 50, '', 
'become-developer', '', 1, '', 0),
+(24, 'News', 'News', '', 1, 'news', 1, 0, '<link rel="alternate" 
type="application/atom+xml" title="Gentoo Linux News" href="/feeds/news.xml">', 
'news', '', 1, '', 0);
+
+--
+-- Indexes for dumped tables
+--
+
+--
+-- Indexes for table `auth_group`
+--
+ALTER TABLE `auth_group`
+ ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `name` (`name`);
+
+--
+-- Indexes for table `auth_group_permissions`
+--
+ALTER TABLE `auth_group_permissions`
+ ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `group_id` 
(`group_id`,`permission_id`), ADD KEY 
`auth_group__permission_id_132567775465881a_fk_auth_permission_id` 
(`permission_id`);
+
+--
+-- Indexes for table `auth_permission`
+--
+ALTER TABLE `auth_permission`
+ ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `content_type_id` 
(`content_type_id`,`codename`);
+
+--
+-- Indexes for table `auth_user`
+--
+ALTER TABLE `auth_user`
+ ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `username` (`username`);
+
+--
+-- Indexes for table `auth_user_groups`
+--
+ALTER TABLE `auth_user_groups`
+ ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `user_id` (`user_id`,`group_id`), ADD 
KEY `auth_user_groups_group_id_85d6be0cf42bb39_fk_auth_group_id` (`group_id`);
+
+--
+-- Indexes for table `auth_user_user_permissions`
+--
+ALTER TABLE `auth_user_user_permissions`
+ ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `user_id` (`user_id`,`permission_id`), 
ADD KEY `auth_user_u_permission_id_7a6c48a75a04bbaa_fk_auth_permission_id` 
(`permission_id`);
+
+--
+-- Indexes for table `django_content_type`
+--
+ALTER TABLE `django_content_type`
+ ADD PRIMARY KEY (`id`), ADD UNIQUE KEY 
`django_content_type_app_label_210e0d78ac54972_uniq` (`app_label`,`model`);
+
+--
+-- Indexes for table `django_migrations`
+--
+ALTER TABLE `django_migrations`
+ ADD PRIMARY KEY (`id`);
+
+--
+-- Indexes for table `django_session`
+--
+ALTER TABLE `django_session`
+ ADD PRIMARY KEY (`session_key`), ADD KEY `django_session_de54fa62` 
(`expire_date`);
+
+--
+-- Indexes for table `django_site`
+--
+ALTER TABLE `django_site`
+ ADD PRIMARY KEY (`id`);
+
+--
+-- Indexes for table `layout`
+--
+ALTER TABLE `layout`
+ ADD PRIMARY KEY (`layout_id`);
+
+--
+-- Indexes for table `pages`
+--
+ALTER TABLE `pages`
+ ADD PRIMARY KEY (`page_id`);
+
+--
+-- Indexes for table `posts`
+--
+ALTER TABLE `posts`
+ ADD PRIMARY KEY (`post_id`);
+
+--
+-- Indexes for table `site_settings`
+--
+ALTER TABLE `site_settings`
+ ADD PRIMARY KEY (`site_id`);
+
+--
+-- Indexes for table `sponsors`
+--
+ALTER TABLE `sponsors`
+ ADD PRIMARY KEY (`sponsors_id`);
+
+--
+-- Indexes for table `subsub_pages`
+--
+ALTER TABLE `subsub_pages`
+ ADD PRIMARY KEY (`subsub_page_id`);
+
+--
+-- Indexes for table `sub_pages`
+--
+ALTER TABLE `sub_pages`
+ ADD PRIMARY KEY (`sub_page_id`);
+
+--
+-- AUTO_INCREMENT for dumped tables
+--
+
+--
+-- AUTO_INCREMENT for table `auth_group`
+--
+ALTER TABLE `auth_group`
+MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
+--
+-- AUTO_INCREMENT for table `auth_group_permissions`
+--
+ALTER TABLE `auth_group_permissions`
+MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
+--
+-- AUTO_INCREMENT for table `auth_permission`
+--
+ALTER TABLE `auth_permission`
+MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
+--
+-- AUTO_INCREMENT for table `auth_user`
+--
+ALTER TABLE `auth_user`
+MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
+--
+-- AUTO_INCREMENT for table `auth_user_groups`
+--
+ALTER TABLE `auth_user_groups`
+MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
+--
+-- AUTO_INCREMENT for table `auth_user_user_permissions`
+--
+ALTER TABLE `auth_user_user_permissions`
+MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
+--
+-- AUTO_INCREMENT for table `django_content_type`
+--
+ALTER TABLE `django_content_type`
+MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
+--
+-- AUTO_INCREMENT for table `django_migrations`
+--
+ALTER TABLE `django_migrations`
+MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
+--
+-- AUTO_INCREMENT for table `django_site`
+--
+ALTER TABLE `django_site`
+MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
+--
+-- AUTO_INCREMENT for table `layout`
+--
+ALTER TABLE `layout`
+MODIFY `layout_id` int(11) NOT NULL AUTO_INCREMENT;
+--
+-- AUTO_INCREMENT for table `pages`
+--
+ALTER TABLE `pages`
+MODIFY `page_id` int(11) NOT NULL AUTO_INCREMENT;
+--
+-- AUTO_INCREMENT for table `posts`
+--
+ALTER TABLE `posts`
+MODIFY `post_id` int(11) NOT NULL AUTO_INCREMENT;
+--
+-- AUTO_INCREMENT for table `site_settings`
+--
+ALTER TABLE `site_settings`
+MODIFY `site_id` int(11) NOT NULL AUTO_INCREMENT;
+--
+-- AUTO_INCREMENT for table `sponsors`
+--
+ALTER TABLE `sponsors`
+MODIFY `sponsors_id` int(11) NOT NULL AUTO_INCREMENT;
+--
+-- AUTO_INCREMENT for table `subsub_pages`
+--
+ALTER TABLE `subsub_pages`
+MODIFY `subsub_page_id` int(11) NOT NULL AUTO_INCREMENT;
+--
+-- AUTO_INCREMENT for table `sub_pages`
+--
+ALTER TABLE `sub_pages`
+MODIFY `sub_page_id` int(11) NOT NULL AUTO_INCREMENT;
+--
+-- Constraints for dumped tables
+--
+
+--
+-- Constraints for table `auth_group_permissions`
+--
+ALTER TABLE `auth_group_permissions`
+ADD CONSTRAINT 
`auth_group__permission_id_132567775465881a_fk_auth_permission_id` FOREIGN KEY 
(`permission_id`) REFERENCES `auth_permission` (`id`),
+ADD CONSTRAINT 
`auth_group_permission_group_id_2bfa217cea5bf405_fk_auth_group_id` FOREIGN KEY 
(`group_id`) REFERENCES `auth_group` (`id`);
+
+--
+-- Constraints for table `auth_permission`
+--
+ALTER TABLE `auth_permission`
+ADD CONSTRAINT 
`auth_p_content_type_id_a9611576c345651_fk_django_content_type_id` FOREIGN KEY 
(`content_type_id`) REFERENCES `django_content_type` (`id`);
+
+--
+-- Constraints for table `auth_user_groups`
+--
+ALTER TABLE `auth_user_groups`
+ADD CONSTRAINT `auth_user_groups_group_id_85d6be0cf42bb39_fk_auth_group_id` 
FOREIGN KEY (`group_id`) REFERENCES `auth_group` (`id`),
+ADD CONSTRAINT `auth_user_groups_user_id_546a8fbd2abda362_fk_auth_user_id` 
FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`);
+
+--
+-- Constraints for table `auth_user_user_permissions`
+--
+ALTER TABLE `auth_user_user_permissions`
+ADD CONSTRAINT 
`auth_user_u_permission_id_7a6c48a75a04bbaa_fk_auth_permission_id` FOREIGN KEY 
(`permission_id`) REFERENCES `auth_permission` (`id`),
+ADD CONSTRAINT 
`auth_user_user_permissio_user_id_6cb016c6baca028_fk_auth_user_id` FOREIGN KEY 
(`user_id`) REFERENCES `auth_user` (`id`);
+
+/*!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 */;

Reply via email to