commit:     b925e8fe2fd13bb5ad8abbaa5299d74413a2704b
Author:     Magnus Granberg <zorry <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 14 19:00:04 2015 +0000
Commit:     Magnus Granberg <zorry <AT> gentoo <DOT> org>
CommitDate: Tue Jul 14 19:00:04 2015 +0000
URL:        
https://gitweb.gentoo.org/proj/tinderbox-cluster-www.git/commit/?id=b925e8fe

add sql structur and data

 sql/gentoo-www.sql      | 244 ++++++++++++++++++++++++++++++++++++++++++++++++
 sql/gentoo-www_data.sql | 106 +++++++++++++++++++++
 2 files changed, 350 insertions(+)

diff --git a/sql/gentoo-www.sql b/sql/gentoo-www.sql
new file mode 100644
index 0000000..9c1d758
--- /dev/null
+++ b/sql/gentoo-www.sql
@@ -0,0 +1,244 @@
+-- phpMyAdmin SQL Dump
+-- version 4.2.13
+-- http://www.phpmyadmin.net
+--
+-- Host: localhost
+-- Generation Time: Jul 14, 2015 at 04:57 PM
+-- Server version: 10.0.15-MariaDB-log
+-- PHP Version: 5.6.10-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 `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 AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
+
+-- --------------------------------------------------------
+
+--
+-- 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 AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
+
+-- --------------------------------------------------------
+
+--
+-- 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 AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
+
+-- --------------------------------------------------------
+
+--
+-- 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 AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
+
+-- --------------------------------------------------------
+
+--
+-- 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 AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
+
+-- --------------------------------------------------------
+
+--
+-- 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 AUTO_INCREMENT=25 DEFAULT CHARSET=utf8;
+
+--
+-- Indexes for dumped tables
+--
+
+--
+-- 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 `layout`
+--
+ALTER TABLE `layout`
+MODIFY `layout_id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=8;
+--
+-- AUTO_INCREMENT for table `pages`
+--
+ALTER TABLE `pages`
+MODIFY `page_id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=9;
+--
+-- AUTO_INCREMENT for table `posts`
+--
+ALTER TABLE `posts`
+MODIFY `post_id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3;
+--
+-- AUTO_INCREMENT for table `site_settings`
+--
+ALTER TABLE `site_settings`
+MODIFY `site_id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=2;
+--
+-- AUTO_INCREMENT for table `sponsors`
+--
+ALTER TABLE `sponsors`
+MODIFY `sponsors_id` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=7;
+--
+-- 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,AUTO_INCREMENT=25;
+/*!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 */;

diff --git a/sql/gentoo-www_data.sql b/sql/gentoo-www_data.sql
new file mode 100644
index 0000000..29cf9cd
--- /dev/null
+++ b/sql/gentoo-www_data.sql
@@ -0,0 +1,106 @@
+-- phpMyAdmin SQL Dump
+-- version 4.2.13
+-- http://www.phpmyadmin.net
+--
+-- Host: localhost
+-- Generation Time: Jul 14, 2015 at 04:59 PM
+-- Server version: 10.0.15-MariaDB-log
+-- PHP Version: 5.6.10-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`
+--
+
+--
+-- 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');
+
+--
+-- 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', 'The website of Gentoo, a flexible Linux or BSD 
distribution.', 'home', 1, 1, '<link rel="alternate" 
type="application/atom+xml" title="Gentoo Linux News" href="/feeds/news.xml">', 
'home', '', '', 1, 0),
+(2, 'Downloads', 'Downloads', '', 'downloads', 1, 9, '', 'downloads', 
'$(function() { $(''#other-arches a:first'').tab(''show''); });', '', 1, 1),
+(3, 'Get Started', 'Getting Started with Gentoo Linux', '', 'get-started', 1, 
5, '', 'get-started', '', '', 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);
+
+--
+-- 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://[email protected]/$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://[email protected]/$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');
+
+--
+-- 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', '[email protected]', '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/');
+
+--
+-- 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);
+
+--
+-- 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);
+
+/*!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