Advertisement
M0m0x01d

www.thevine.cambs.sch.uk Dump

Feb 12th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 195.22 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 3.1.1
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Host: localhost
  6. -- Generation Time: Jul 02, 2009 at 11:11 AM
  7. -- Server version: 5.1.30
  8. -- PHP Version: 5.2.8
  9.  
  10.  
  11. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  12. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  13. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  14. /*!40101 SET NAMES utf8 */;
  15.  
  16. --
  17. -- Database: `yoo_phoenix_pack`
  18. --
  19.  
  20. -- --------------------------------------------------------
  21.  
  22. --
  23. -- Table structure for table `#__banner`
  24. --
  25.  
  26. DROP TABLE IF EXISTS `#__banner`;
  27. CREATE TABLE IF NOT EXISTS `#__banner` (
  28. `bid` int(11) NOT NULL AUTO_INCREMENT,
  29. `cid` int(11) NOT NULL DEFAULT '0',
  30. `type` varchar(90) NOT NULL DEFAULT 'banner',
  31. `name` text NOT NULL,
  32. `alias` varchar(255) NOT NULL DEFAULT '',
  33. `imptotal` int(11) NOT NULL DEFAULT '0',
  34. `impmade` int(11) NOT NULL DEFAULT '0',
  35. `clicks` int(11) NOT NULL DEFAULT '0',
  36. `imageurl` varchar(100) NOT NULL DEFAULT '',
  37. `clickurl` varchar(200) NOT NULL DEFAULT '',
  38. `date` datetime DEFAULT NULL,
  39. `showBanner` tinyint(1) NOT NULL DEFAULT '0',
  40. `checked_out` tinyint(1) NOT NULL DEFAULT '0',
  41. `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  42. `editor` varchar(150) DEFAULT NULL,
  43. `custombannercode` text,
  44. `catid` int(10) unsigned NOT NULL DEFAULT '0',
  45. `description` text NOT NULL,
  46. `sticky` tinyint(1) unsigned NOT NULL DEFAULT '0',
  47. `ordering` int(11) NOT NULL DEFAULT '0',
  48. `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  49. `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  50. `tags` text NOT NULL,
  51. `params` text NOT NULL,
  52. PRIMARY KEY (`bid`),
  53. KEY `viewbanner` (`showBanner`),
  54. KEY `idx_banner_catid` (`catid`)
  55. ) TYPE=MyISAM AUTO_INCREMENT=3 ;
  56.  
  57. --
  58. -- Dumping data for table `#__banner`
  59. --
  60.  
  61. INSERT INTO `#__banner` (`bid`, `cid`, `type`, `name`, `alias`, `imptotal`, `impmade`, `clicks`, `imageurl`, `clickurl`, `date`, `showBanner`, `checked_out`, `checked_out_time`, `editor`, `custombannercode`, `catid`, `description`, `sticky`, `ordering`, `publish_up`, `publish_down`, `tags`, `params`) VALUES
  62. (1, 1, 'banner', 'OSM 1', 'osm-1', 0, 43, 0, 'osmbanner1.png', 'http://www.opensourcematters.org', '2004-07-07 15:31:29', 1, 0, '0000-00-00 00:00:00', '', '', 13, '', 0, 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '', ''),
  63. (2, 1, 'banner', 'OSM 2', 'osm-2', 0, 49, 0, 'osmbanner2.png', 'http://www.opensourcematters.org', '2004-07-07 15:31:29', 1, 0, '0000-00-00 00:00:00', '', '', 13, '', 0, 2, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '', '');
  64.  
  65. -- --------------------------------------------------------
  66.  
  67. --
  68. -- Table structure for table `#__bannerclient`
  69. --
  70.  
  71. DROP TABLE IF EXISTS `#__bannerclient`;
  72. CREATE TABLE IF NOT EXISTS `#__bannerclient` (
  73. `cid` int(11) NOT NULL AUTO_INCREMENT,
  74. `name` text NOT NULL,
  75. `contact` text NOT NULL,
  76. `email` varchar(255) NOT NULL DEFAULT '',
  77. `extrainfo` text NOT NULL,
  78. `checked_out` tinyint(1) NOT NULL DEFAULT '0',
  79. `checked_out_time` time DEFAULT NULL,
  80. `editor` varchar(150) DEFAULT NULL,
  81. PRIMARY KEY (`cid`)
  82. ) TYPE=MyISAM AUTO_INCREMENT=2 ;
  83.  
  84. --
  85. -- Dumping data for table `#__bannerclient`
  86. --
  87.  
  88. INSERT INTO `#__bannerclient` (`cid`, `name`, `contact`, `email`, `extrainfo`, `checked_out`, `checked_out_time`, `editor`) VALUES
  89. (1, 'Open Source Matters', 'Administrator', 'admin@opensourcematters.org', '', 0, '00:00:00', NULL);
  90.  
  91. -- --------------------------------------------------------
  92.  
  93. --
  94. -- Table structure for table `#__bannertrack`
  95. --
  96.  
  97. DROP TABLE IF EXISTS `#__bannertrack`;
  98. CREATE TABLE IF NOT EXISTS `#__bannertrack` (
  99. `track_date` date NOT NULL,
  100. `track_type` int(10) unsigned NOT NULL,
  101. `banner_id` int(10) unsigned NOT NULL
  102. ) TYPE=MyISAM;
  103.  
  104. --
  105. -- Dumping data for table `#__bannertrack`
  106. --
  107.  
  108.  
  109. -- --------------------------------------------------------
  110.  
  111. --
  112. -- Table structure for table `#__categories`
  113. --
  114.  
  115. DROP TABLE IF EXISTS `#__categories`;
  116. CREATE TABLE IF NOT EXISTS `#__categories` (
  117. `id` int(11) NOT NULL AUTO_INCREMENT,
  118. `parent_id` int(11) NOT NULL DEFAULT '0',
  119. `title` text NOT NULL,
  120. `name` text NOT NULL,
  121. `alias` varchar(255) NOT NULL DEFAULT '',
  122. `image` varchar(255) NOT NULL DEFAULT '',
  123. `section` varchar(150) NOT NULL DEFAULT '',
  124. `image_position` varchar(90) NOT NULL DEFAULT '',
  125. `description` text NOT NULL,
  126. `published` tinyint(1) NOT NULL DEFAULT '0',
  127. `checked_out` int(11) unsigned NOT NULL DEFAULT '0',
  128. `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  129. `editor` varchar(150) DEFAULT NULL,
  130. `ordering` int(11) NOT NULL DEFAULT '0',
  131. `access` tinyint(3) unsigned NOT NULL DEFAULT '0',
  132. `count` int(11) NOT NULL DEFAULT '0',
  133. `params` text NOT NULL,
  134. PRIMARY KEY (`id`),
  135. KEY `cat_idx` (`section`,`published`,`access`),
  136. KEY `idx_access` (`access`),
  137. KEY `idx_checkout` (`checked_out`)
  138. ) TYPE=MyISAM AUTO_INCREMENT=35 ;
  139.  
  140. --
  141. -- Dumping data for table `#__categories`
  142. --
  143.  
  144. INSERT INTO `#__categories` (`id`, `parent_id`, `title`, `name`, `alias`, `image`, `section`, `image_position`, `description`, `published`, `checked_out`, `checked_out_time`, `editor`, `ordering`, `access`, `count`, `params`) VALUES
  145. (2, 0, 'Joomla! Specific Links', '', 'joomla-specific-links', 'clock.jpg', 'com_weblinks', 'left', 'A selection of links that are all related to the Joomla! Project.', 1, 0, '0000-00-00 00:00:00', NULL, 1, 0, 0, ''),
  146. (4, 0, 'Joomla!', '', 'joomla', '', 'com_newsfeeds', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 2, 0, 0, ''),
  147. (5, 0, 'General', '', 'general', '', 'com_newsfeeds', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 6, 0, 0, ''),
  148. (6, 0, 'Linux', '', 'linux', '', 'com_newsfeeds', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 1, 0, 0, ''),
  149. (12, 0, 'Contacts', '', 'contacts', '', 'com_contact_details', 'left', 'Contact Details for this Web site', 1, 0, '0000-00-00 00:00:00', NULL, 0, 0, 0, ''),
  150. (13, 0, 'Joomla', '', 'joomla', '', 'com_banner', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 0, 0, 0, ''),
  151. (15, 0, 'Features', '', 'features', '', 'com_content', 'left', '', 0, 0, '0000-00-00 00:00:00', NULL, 6, 0, 0, ''),
  152. (17, 0, 'Benefits', '', 'benefits', '', 'com_content', 'left', '', 0, 0, '0000-00-00 00:00:00', NULL, 4, 0, 0, ''),
  153. (18, 0, 'Platforms', '', 'platforms', '', 'com_content', 'left', '', 0, 0, '0000-00-00 00:00:00', NULL, 3, 0, 0, ''),
  154. (19, 0, 'Other Resources', '', 'other-resources', '', 'com_weblinks', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 2, 0, 0, ''),
  155. (29, 0, 'The CMS', '', 'the-cms', 'powered_by.png', '4', 'right', 'Joomla! provides plenty of flexibility when displaying your Web content. Whether you are using Joomla! for a blog site, news or a Web site for a company, you''ll find one or more content styles to showcase your information. You can also change the style of content dynamically depending on your preferences. Joomla! calls how a page is laid out a layout. Use the guide below to understand which layouts are available and how you might use them.', 1, 0, '0000-00-00 00:00:00', NULL, 2, 0, 0, ''),
  156. (34, 0, 'YOOtheme', '', 'yootheme', '', '5', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 1, 0, 0, '');
  157.  
  158. -- --------------------------------------------------------
  159.  
  160. --
  161. -- Table structure for table `#__components`
  162. --
  163.  
  164. DROP TABLE IF EXISTS `#__components`;
  165. CREATE TABLE IF NOT EXISTS `#__components` (
  166. `id` int(11) NOT NULL AUTO_INCREMENT,
  167. `name` varchar(150) NOT NULL DEFAULT '',
  168. `link` varchar(255) NOT NULL DEFAULT '',
  169. `menuid` int(11) unsigned NOT NULL DEFAULT '0',
  170. `parent` int(11) unsigned NOT NULL DEFAULT '0',
  171. `admin_menu_link` varchar(255) NOT NULL DEFAULT '',
  172. `admin_menu_alt` text NOT NULL,
  173. `option` varchar(50) NOT NULL DEFAULT '',
  174. `ordering` int(11) NOT NULL DEFAULT '0',
  175. `admin_menu_img` varchar(255) NOT NULL DEFAULT '',
  176. `iscore` tinyint(4) NOT NULL DEFAULT '0',
  177. `params` text NOT NULL,
  178. `enabled` tinyint(4) NOT NULL DEFAULT '1',
  179. PRIMARY KEY (`id`),
  180. KEY `parent_option` (`parent`,`option`(32))
  181. ) TYPE=MyISAM AUTO_INCREMENT=35 ;
  182.  
  183. --
  184. -- Dumping data for table `#__components`
  185. --
  186.  
  187. INSERT INTO `#__components` (`id`, `name`, `link`, `menuid`, `parent`, `admin_menu_link`, `admin_menu_alt`, `option`, `ordering`, `admin_menu_img`, `iscore`, `params`, `enabled`) VALUES
  188. (1, 'Banners', '', 0, 0, '', 'Banner Management', 'com_banners', 0, 'js/ThemeOffice/component.png', 0, 'track_impressions=0\ntrack_clicks=0\ntag_prefix=\n\n', 1),
  189. (2, 'Banners', '', 0, 1, 'option=com_banners', 'Active Banners', 'com_banners', 1, 'js/ThemeOffice/edit.png', 0, '', 1),
  190. (3, 'Clients', '', 0, 1, 'option=com_banners&c=client', 'Manage Clients', 'com_banners', 2, 'js/ThemeOffice/categories.png', 0, '', 1),
  191. (4, 'Web Links', 'option=com_weblinks', 0, 0, '', 'Manage Weblinks', 'com_weblinks', 0, 'js/ThemeOffice/component.png', 0, 'show_comp_description=1\ncomp_description=\nshow_link_hits=1\nshow_link_description=1\nshow_other_cats=1\nshow_headings=1\nshow_page_title=1\nlink_target=0\nlink_icons=\n\n', 1),
  192. (5, 'Links', '', 0, 4, 'option=com_weblinks', 'View existing weblinks', 'com_weblinks', 1, 'js/ThemeOffice/edit.png', 0, '', 1),
  193. (6, 'Categories', '', 0, 4, 'option=com_categories&section=com_weblinks', 'Manage weblink categories', '', 2, 'js/ThemeOffice/categories.png', 0, '', 1),
  194. (7, 'Contacts', 'option=com_contact', 0, 0, '', 'Edit contact details', 'com_contact', 0, 'js/ThemeOffice/component.png', 1, 'contact_icons=0\nicon_address=\nicon_email=\nicon_telephone=\nicon_fax=\nicon_misc=\nshow_headings=1\nshow_position=1\nshow_email=0\nshow_telephone=1\nshow_mobile=1\nshow_fax=1\nbannedEmail=\nbannedSubject=\nbannedText=\nsession=1\ncustomReply=0\n\n', 1),
  195. (8, 'Contacts', '', 0, 7, 'option=com_contact', 'Edit contact details', 'com_contact', 0, 'js/ThemeOffice/edit.png', 1, '', 1),
  196. (9, 'Categories', '', 0, 7, 'option=com_categories&section=com_contact_details', 'Manage contact categories', '', 2, 'js/ThemeOffice/categories.png', 1, '', 1),
  197. (10, 'Polls', 'option=com_poll', 0, 0, 'option=com_poll', 'Manage Polls', 'com_poll', 0, 'js/ThemeOffice/component.png', 0, '', 1),
  198. (11, 'News Feeds', 'option=com_newsfeeds', 0, 0, '', 'News Feeds Management', 'com_newsfeeds', 0, 'js/ThemeOffice/component.png', 0, '', 1),
  199. (12, 'Feeds', '', 0, 11, 'option=com_newsfeeds', 'Manage News Feeds', 'com_newsfeeds', 1, 'js/ThemeOffice/edit.png', 0, '', 1),
  200. (13, 'Categories', '', 0, 11, 'option=com_categories&section=com_newsfeeds', 'Manage Categories', '', 2, 'js/ThemeOffice/categories.png', 0, '', 1),
  201. (14, 'User', 'option=com_user', 0, 0, '', '', 'com_user', 0, '', 1, '', 1),
  202. (15, 'Search', 'option=com_search', 0, 0, 'option=com_search', 'Search Statistics', 'com_search', 0, 'js/ThemeOffice/component.png', 1, 'enabled=0\n\n', 1),
  203. (16, 'Categories', '', 0, 1, 'option=com_categories&section=com_banner', 'Categories', '', 3, '', 1, '', 1),
  204. (17, 'Wrapper', 'option=com_wrapper', 0, 0, '', 'Wrapper', 'com_wrapper', 0, '', 1, '', 1),
  205. (18, 'Mail To', '', 0, 0, '', '', 'com_mailto', 0, '', 1, '', 1),
  206. (19, 'Media Manager', '', 0, 0, 'option=com_media', 'Media Manager', 'com_media', 0, '', 1, 'upload_extensions=bmp,csv,doc,epg,gif,ico,jpg,odg,odp,ods,odt,pdf,png,ppt,swf,txt,xcf,xls,BMP,CSV,DOC,EPG,GIF,ICO,JPG,ODG,ODP,ODS,ODT,PDF,PNG,PPT,SWF,TXT,XCF,XLS\nupload_maxsize=10000000\nfile_path=images\nimage_path=images/stories\nrestrict_uploads=1\ncheck_mime=1\nimage_extensions=bmp,gif,jpg,png\nignore_extensions=\nupload_mime=image/jpeg,image/gif,image/png,image/bmp,application/x-shockwave-flash,application/msword,application/excel,application/pdf,application/powerpoint,text/plain,application/x-zip\nupload_mime_illegal=text/html\nenable_flash=1\n\n', 1),
  207. (20, 'Articles', 'option=com_content', 0, 0, '', '', 'com_content', 0, '', 1, 'show_noauth=0\nshow_title=1\nlink_titles=1\nshow_intro=1\nshow_section=0\nlink_section=1\nshow_category=0\nlink_category=1\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\nfeed_summary=0\nfilter_groups=29|18|19|20|21|30|23|24\nfilter_type=BL\nfilter_tags=\nfilter_attritbutes=\n\n', 1),
  208. (21, 'Configuration Manager', '', 0, 0, '', 'Configuration', 'com_config', 0, '', 1, '', 1),
  209. (22, 'Installation Manager', '', 0, 0, '', 'Installer', 'com_installer', 0, '', 1, '', 1),
  210. (23, 'Language Manager', '', 0, 0, '', 'Languages', 'com_languages', 0, '', 1, '', 1),
  211. (24, 'Mass mail', '', 0, 0, '', 'Mass Mail', 'com_massmail', 0, '', 1, 'mailSubjectPrefix=\nmailBodySuffix=\n\n', 1),
  212. (25, 'Menu Editor', '', 0, 0, '', 'Menu Editor', 'com_menus', 0, '', 1, '', 1),
  213. (27, 'Messaging', '', 0, 0, '', 'Messages', 'com_messages', 0, '', 1, '', 1),
  214. (28, 'Modules Manager', '', 0, 0, '', 'Modules', 'com_modules', 0, '', 1, '', 1),
  215. (29, 'Plugin Manager', '', 0, 0, '', 'Plugins', 'com_plugins', 0, '', 1, '', 1),
  216. (30, 'Template Manager', '', 0, 0, '', 'Templates', 'com_templates', 0, '', 1, '', 1),
  217. (31, 'User Manager', '', 0, 0, '', 'Users', 'com_users', 0, '', 1, 'allowUserRegistration=1\nnew_usertype=Registered\nuseractivation=1\nfrontend_userparams=1\n\n', 1),
  218. (32, 'Cache Manager', '', 0, 0, '', 'Cache', 'com_cache', 0, '', 1, '', 1),
  219. (33, 'Control Panel', '', 0, 0, '', 'Control Panel', 'com_cpanel', 0, '', 1, '', 1);
  220.  
  221. -- --------------------------------------------------------
  222.  
  223. --
  224. -- Table structure for table `#__contact_details`
  225. --
  226.  
  227. DROP TABLE IF EXISTS `#__contact_details`;
  228. CREATE TABLE IF NOT EXISTS `#__contact_details` (
  229. `id` int(11) NOT NULL AUTO_INCREMENT,
  230. `name` text NOT NULL,
  231. `alias` varchar(255) NOT NULL DEFAULT '',
  232. `con_position` text,
  233. `address` text,
  234. `suburb` text,
  235. `state` text,
  236. `country` text,
  237. `postcode` varchar(255) DEFAULT NULL,
  238. `telephone` varchar(255) DEFAULT NULL,
  239. `fax` varchar(255) DEFAULT NULL,
  240. `misc` mediumtext,
  241. `image` varchar(255) DEFAULT NULL,
  242. `imagepos` varchar(60) DEFAULT NULL,
  243. `email_to` varchar(255) DEFAULT NULL,
  244. `default_con` tinyint(1) unsigned NOT NULL DEFAULT '0',
  245. `published` tinyint(1) unsigned NOT NULL DEFAULT '0',
  246. `checked_out` int(11) unsigned NOT NULL DEFAULT '0',
  247. `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  248. `ordering` int(11) NOT NULL DEFAULT '0',
  249. `params` text NOT NULL,
  250. `user_id` int(11) NOT NULL DEFAULT '0',
  251. `catid` int(11) NOT NULL DEFAULT '0',
  252. `access` tinyint(3) unsigned NOT NULL DEFAULT '0',
  253. `mobile` varchar(255) NOT NULL DEFAULT '',
  254. `webpage` varchar(255) NOT NULL DEFAULT '',
  255. PRIMARY KEY (`id`),
  256. KEY `catid` (`catid`)
  257. ) TYPE=MyISAM AUTO_INCREMENT=3 ;
  258.  
  259. --
  260. -- Dumping data for table `#__contact_details`
  261. --
  262.  
  263. INSERT INTO `#__contact_details` (`id`, `name`, `alias`, `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`, `mobile`, `webpage`) VALUES
  264. (1, 'Name 1', 'name-1', 'Position', 'Street', 'Suburb', 'State', 'Country', 'Zip Code', 'Telephone', 'Fax', 'Miscellanous info', 'articles.jpg', 'top', 'email@email.com', 0, 1, 62, '2008-12-15 15:46:45', 1, 'show_name=1\nshow_position=1\nshow_email=1\nshow_street_address=1\nshow_suburb=1\nshow_state=1\nshow_postcode=1\nshow_country=1\nshow_telephone=1\nshow_mobile=1\nshow_fax=1\nshow_webpage=1\nshow_misc=1\nshow_image=1\nallow_vcard=1\ncontact_icons=0\nicon_address=\nicon_email=\nicon_telephone=\nicon_mobile=\nicon_fax=\nicon_misc=\nshow_email_form=1\nemail_description=1\nshow_email_copy=1\nbanned_email=\nbanned_subject=\nbanned_text=', 0, 12, 0, '', ''),
  265. (2, 'Name 2', 'name-2', '', 'Street Address', 'Town', 'State', 'Country', 'Postal Code', 'Telephone', 'Fax', 'Informations', 'clock.jpg', NULL, '', 0, 1, 0, '0000-00-00 00:00:00', 2, 'show_name=1\nshow_position=1\nshow_email=1\nshow_street_address=1\nshow_suburb=1\nshow_state=1\nshow_postcode=1\nshow_country=1\nshow_telephone=1\nshow_mobile=1\nshow_fax=1\nshow_webpage=1\nshow_misc=1\nshow_image=1\nallow_vcard=1\ncontact_icons=0\nicon_address=\nicon_email=\nicon_telephone=\nicon_mobile=\nicon_fax=\nicon_misc=\nshow_email_form=1\nemail_description=\nshow_email_copy=1\nbanned_email=\nbanned_subject=\nbanned_text=', 0, 12, 0, 'Mobile Phone', 'http://Web URL');
  266.  
  267. -- --------------------------------------------------------
  268.  
  269. --
  270. -- Table structure for table `#__content`
  271. --
  272.  
  273. DROP TABLE IF EXISTS `#__content`;
  274. CREATE TABLE IF NOT EXISTS `#__content` (
  275. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  276. `title` text NOT NULL,
  277. `alias` varchar(255) NOT NULL DEFAULT '',
  278. `title_alias` text NOT NULL,
  279. `introtext` mediumtext NOT NULL,
  280. `fulltext` mediumtext NOT NULL,
  281. `state` tinyint(3) NOT NULL DEFAULT '0',
  282. `sectionid` int(11) unsigned NOT NULL DEFAULT '0',
  283. `mask` int(11) unsigned NOT NULL DEFAULT '0',
  284. `catid` int(11) unsigned NOT NULL DEFAULT '0',
  285. `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  286. `created_by` int(11) unsigned NOT NULL DEFAULT '0',
  287. `created_by_alias` text NOT NULL,
  288. `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  289. `modified_by` int(11) unsigned NOT NULL DEFAULT '0',
  290. `checked_out` int(11) unsigned NOT NULL DEFAULT '0',
  291. `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  292. `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  293. `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  294. `images` text NOT NULL,
  295. `urls` text NOT NULL,
  296. `attribs` text NOT NULL,
  297. `version` int(11) unsigned NOT NULL DEFAULT '1',
  298. `parentid` int(11) unsigned NOT NULL DEFAULT '0',
  299. `ordering` int(11) NOT NULL DEFAULT '0',
  300. `metakey` text NOT NULL,
  301. `metadesc` text NOT NULL,
  302. `access` int(11) unsigned NOT NULL DEFAULT '0',
  303. `hits` int(11) unsigned NOT NULL DEFAULT '0',
  304. `metadata` text NOT NULL,
  305. PRIMARY KEY (`id`),
  306. KEY `idx_section` (`sectionid`),
  307. KEY `idx_access` (`access`),
  308. KEY `idx_checkout` (`checked_out`),
  309. KEY `idx_state` (`state`),
  310. KEY `idx_catid` (`catid`),
  311. KEY `idx_createdby` (`created_by`)
  312. ) TYPE=MyISAM AUTO_INCREMENT=60 ;
  313.  
  314. --
  315. -- Dumping data for table `#__content`
  316. --
  317.  
  318. INSERT INTO `#__content` (`id`, `title`, `alias`, `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`, `metadata`) VALUES
  319. (1, 'Welcome to Joomla!', 'welcome-to-joomla', '', '<strong>Joomla! is a free open source framework and content publishing system designed for quickly creating highly interactive multi-language Web sites, online communities, media portals, blogs and eCommerce applications.</strong>\r\n\r\n<p>Joomla! provides an easy-to-use graphical user interface that simplifies the management and publishing of large volumes of content including HTML, documents, and rich media. Joomla! is used by organisations of all sizes for Public Web sites, Intranets, and Extranets and is supported by a community of thousands of users.</p>\r\n', '\r\nWith a fully documented library of developer resources, Joomla! allows the customisation of every aspect of a Web site including presentation, layout, administration, and the rapid integration with third-party applications.\r\n\r\n<p>Joomla! has a rich heritage and has been crowned CMS king many times over. Now with more power under the hood, Joomla! is shifting gear and provides developer power while making the user experience all the more friendly. For those who always wanted increased extensibility, Joomla! 1.5 can make this happen.</p>\r\n\r\n<p>A new framework, ground-up refactoring, and a highly-active development team brings the excitement of ''the next generation CMS'' to your fingertips. Whether you are a systems architect or a complete ''noob'' Joomla! can take you to the next level of content delivery. ''More than a CMS'' is something we have been playing with as a catchcry because the new Joomla! API has such incredible power and flexibility, you are free to take whatever direction your creative mind takes you and Joomla! can help you get there so much more easily than ever before.</p>\r\n\r\n<p>Thinking Web publishing? Think Joomla!</p>', 1, 4, 0, 29, '2006-10-13 10:00:00', 62, '', '2008-12-16 15:36:38', 62, 0, '0000-00-00 00:00:00', '2006-01-03 01:00:00', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 40, 0, 1, '', '', 0, 107, 'robots=\nauthor='),
  320. (5, 'Joomla! License Guidelines', 'joomla-license-guidelines', 'joomla-license-guidelines', '<p>This Web site is powered by <a href="http://www.joomla.org/">Joomla!</a> The software and default templates on which it runs are Copyright 2005-2007 <a href="http://www.opensourcematters.org/">Open Source Matters</a>. All other content and data, including data entered into this Web site and templates added after installation, are copyrighted by their respective copyright owners.</p>\r\n\r\n<p>If you want to distribute, copy, or modify Joomla!, you are welcome to do so under the terms of the <a href="http://www.gnu.org/licenses/old-licenses/gpl-2.0.html#SEC1">GNU General Public License</a>. If you are unfamiliar with this license, you might want to read <a href="http://www.gnu.org/licenses/old-licenses/gpl-2.0.html#SEC4">''How To Apply These Terms To Your Program''</a> and the <a href="http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html">''GNU General Public License FAQ''</a>.</p>\r\n', '\r\n<p>Joomla! documentation is released under the terms of the <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/" title="Creative Commons ">Creative Commons Attribution-Non-Commercial-Share-Alike License 2.5</a> or by the specific license of their respective copyright owners.</p>\r\n\r\n<p>The Joomla! licence has always been GPL.</p>', 1, 4, 0, 29, '2004-08-20 10:11:07', 62, '', '2008-12-16 15:45:30', 62, 0, '0000-00-00 00:00:00', '2004-08-19 06:00:00', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 9, 0, 5, '', '', 0, 120, 'robots=\nauthor='),
  321. (18, 'Joomla! Features', 'joomla-features', '', '<h4>Joomla! features:</h4>\r\n<ul>\r\n <li>Completely database driven site engines </li>\r\n <li>News, products, or services sections fully editable and manageable</li>\r\n <li>Topics sections can be added to by contributing Authors </li>\r\n <li>Fully customisable layouts including <em>left</em>, <em>center</em>, and <em>right </em>Menu boxes </li>\r\n <li>Browser upload of images to your own library for use anywhere in the site </li>\r\n <li>Dynamic Forum/Poll/Voting booth for on-the-spot results </li>\r\n <li>Runs on Linux, FreeBSD, MacOSX server, Solaris, and AIX</li>\r\n</ul>\r\n', '\r\n<h4>Extensive Administration:</h4>\r\n<ul>\r\n <li>Change order of objects including news, FAQs, Articles etc. </li>\r\n <li>Random Newsflash generator </li>\r\n <li>Remote Author submission Module for News, Articles, FAQs, and Links </li>\r\n <li>Object hierarchy - as many Sections, departments, divisions, and pages as you want </li>\r\n <li>Image library - store all your PNGs, PDFs, DOCs, XLSs, GIFs, and JPEGs online for easy use </li>\r\n <li>Automatic Path-Finder. Place a picture and let Joomla! fix the link </li>\r\n <li>News Feed Manager. Choose from over 360 News Feeds from around the world </li>\r\n <li>E-mail a friend and Print format available for every story and Article </li>\r\n <li>In-line Text editor similar to any basic word processor software </li>\r\n <li>User editable look and feel </li>\r\n <li>Polls/Surveys - Now put a different one on each page </li>\r\n <li>Custom Page Modules. Download custom page Modules to spice up your site </li>\r\n <li>Template Manager. Download Templates and implement them in seconds </li>\r\n <li>Layout preview. See how it looks before going live </li>\r\n <li>Banner Manager. Make money out of your site</li>\r\n</ul>', 1, 4, 0, 29, '2006-10-08 23:32:45', 62, '', '2008-12-16 15:41:08', 62, 0, '0000-00-00 00:00:00', '2006-10-07 06:00:00', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 15, 0, 3, '', '', 0, 70, 'robots=\nauthor='),
  322. (19, 'Joomla! Overview', 'joomla-overview', '', '<p>If you''re new to Web publishing systems, you''ll find that Joomla! delivers sophisticated solutions to your online needs. It can deliver a robust enterprise-level Web site, empowered by endless extensibility for your bespoke publishing needs. Moreover, it is often the system of choice for small business or home users who want a professional looking site that''s simple to deploy and use. <em>We do content right</em>.<br />\r\n</p>\r\n\r\n<p><strong>So what''s the catch? How much does this system cost?</strong></p>\r\n\r\n<p> Well, there''s good news ... and more good news! Joomla! 1.5 is free, it is released under an Open Source license - the GNU/General Public License v 2.0. Had you invested in a mainstream, commercial alternative, there''d be nothing but moths left in your wallet and to add new functionality would probably mean taking out a second mortgage each time you wanted something adding!</p>\r\n\r\n', '\r\n\r\n<p>Joomla! changes all that ... <br />\r\n Joomla! is different from the normal models for content management software. For a start, it''s not complicated. Joomla! has been developed for everybody, and anybody can develop it further. It is designed to work (primarily) with other Open Source, free, software such as PHP, MySQL, and Apache. </p>\r\n \r\n<p>It is easy to install and administer, and is reliable. </p>\r\n\r\n<p>Joomla! doesn''t even require the user or administrator of the system to know HTML to operate it once it''s up and running.</p>\r\n\r\n<p>To get the perfect Web site with all the functionality that you require for your particular application may take additional time and effort, but with the Joomla! Community support that is available and the many Third Party Developers actively creating and releasing new Extensions for the 1.5 platform on an almost daily basis, there is likely to be something out there to meet your needs. Or you could develop your own Extensions and make these available to the rest of the community. </p>', 1, 4, 0, 29, '2006-10-13 07:49:20', 62, '', '2008-12-16 15:47:44', 62, 0, '0000-00-00 00:00:00', '2006-10-07 10:00:00', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 22, 0, 2, '', '', 0, 218, 'robots=\nauthor='),
  323. (20, 'Support and Documentation', 'support-and-documentation', '', '<h3>Support</h3>\r\n\r\n<p>Support for the Joomla! CMS can be found on several places. The best place to start would be the official <a href="http://help.joomla.org/" target="_blank">Help Site</a>. Here you can help yourself to the information that is regularly published and updated as Joomla! develops. There is much more to come too! </p>\r\n<p>Of course you should not forget the Help System of the CMS itself. On the <em>topmenu </em>in the Back-end Control panel you find the Help button which will provide you with lots of explanation on features. </p>\r\n\r\n<p>Another great place would of course be the <a href="http://forum.joomla.org/" target="_blank">Forum</a> . On the Joomla! Forum you can find help and support from Community members as well as from Joomla! Core members and Working Group members. The forum contains a lot of information, FAQ''s, just about anything you are looking for in terms of support.</p>\r\n', '\r\n<p>Two other resources for Support are the <a href="http://dev.joomla.org/" target="_blank">Joomla! Developer Network</a> (JDN) and the <a href="http://extensions.joomla.org/" target="_blank">Joomla! Extensions Directory</a> (JED). The Developer Network for example provides lots of technical information for the experienced Developer as well as those new to Joomla! and development work in general. The JED whilst not a support site in the strictest sense has many of the Extensions that you will need as you develop your own Web site. </p>\r\n\r\n<p>The Joomla! Core members are regularly posting their blog reports about several topics such as programming techniques used in Joomla!, Security, Events and more. You can even subscribe to get notified by e-mail when a new blog post is made! </p>\r\n\r\n<h3>Documentation </h3>\r\n\r\n<p>Joomla! Documentation can of course be found on the <a href="http://help.joomla.org/" target="_blank">Help Site</a>. You can find information such as an Installation Guide, User and Administrator manuals, Frequently Asked Questions and a lot more. The User Documentation Team are the guardians of the documentation relating to the practical use of Joomla!. The Developer Documentation Team are the stalwarts behind detailing how Joomla! works from the ground up and how you can develop your own Extensions and Templates and much more.</p>\r\n\r\n<p>Other than the documentation provided by the Joomla! Documentation Work Groups there are also books written about Joomla! You can find a listing of these books in the <a href="http://help.joomla.org/content/section/44/254/" target="_blank">Joomla! Bookshelf</a> .</p>\r\n\r\n<h1>Want to help? </h1>\r\n\r\n<p>If you want to help in the documentation project for Joomla! then please post your details on the <a href="http://forum.joomla.org/index.php/board,62.0.html" title="The Joomla! User Documentation Forums">User Documentation Forum</a> or the <a href="http://forum.joomla.org/index.php/board,60.0.html" title="The Joomla! Developer Documentation Forum">Developer Documentation Forum</a> </p>\r\n\r\n<p><a class="urlextern" href="http://forum.joomla.org/index.php/board,391.0.html" target="_blank" title="http://forum.joomla.org/index.php/board,59.0.html" onclick="return svchk()"><br />\r\n </a></p>', 1, 4, 0, 29, '2006-10-09 08:33:57', 62, '', '2008-12-22 19:39:55', 62, 0, '0000-00-00 00:00:00', '2006-10-07 10:00:00', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 16, 0, 7, '', '', 0, 9, 'robots=\nauthor='),
  324. (23, 'Platforms and Open Standards', 'platforms-and-open-standards', '', '<p>Joomla! runs on any platform including Windows, most flavours of Linux, several Unix versions, and the Apple OS/X platform. Joomla! depends on PHP and the MySQL database to deliver dynamic content. </p>\r\n<p>The minimum requirements are:</p>\r\n<ul>\r\n <li>Apache 1.x, 2.x and higher</li>\r\n <li>PHP 4.3 and higher</li>\r\n <li>MySQL 3.23 and higher</li>\r\n</ul>\r\nIt will also run on alternative server platforms such as Windows IIS - provided they support PHP and MySQL - but these require additional configuration in order for the Joomla! core package to be successful installed and operated.', '', 1, 4, 0, 29, '2006-10-11 04:22:14', 62, '', '2008-12-16 15:34:16', 62, 0, '0000-00-00 00:00:00', '2006-10-10 08:00:00', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 8, 0, 6, '', '', 0, 17, 'robots=\nauthor='),
  325. (27, 'The Joomla! Community', 'the-joomla-community', '', '<p><strong>Got a question? </strong>With more than 140,000 members, the online forums at <a href="http://forum.joomla.org/" target="_blank">forum.joomla.org</a> are a great resource for both new and experienced users. Go ahead, ask your toughest questions, the community is waiting to see what you''re going to do with your Joomla! site.</p>\r\n\r\n<p><strong>Do you want to show off your new Joomla! Web site?</strong> Go ahead, we have a section dedicated to that on our forum. </p>\r\n', '\r\n<p><strong>Do you want to join in?</strong></p>\r\n\r\n<p>If you think working with Joomla! is fun, wait until you start working on it. We''re passionate about helping Joomla! Users make the jump to becoming contributing members of the community, so there are many ways you can help Joomla!''s development:</p>\r\n\r\n<ul>\r\n <li>Submit news about Joomla!. We syndicate all Joomla! related news on our <a href="http://news.joomla.org" title="Joomla! News Portal">news portal</a>. If you have some Joomla! news that you would like to share with the community, please submit your short story, article, announcement or review <a href="http://www.joomla.org/component/option,com_submissions/Itemid,75" title="Submit News">here</a>.</li>\r\n <li>Report bugs and request features in our <a href="http://joomlacode.org/gf/project/joomla/tracker/" title="Joomla! developement trackers">trackers</a>. Please read <a href="http://dev.joomla.org/content/view/1450/89/">Reporting Bugs</a>, for details on how we like our bug reports served up</li>\r\n <li>Submit patches for new and/or fixed behaviour. Please read <a href="http://dev.joomla.org/content/view/14/55/">Submitting Patches</a>, for details on how to submit a patch.</li>\r\n <li>Join the <a href="http://forum.joomla.org/index.php/board,126.0.html" title="Joomla! development forums">developer forums</a> and share your ideas for how to improve Joomla!. We''re always open to suggestions, although we''re likely to be sceptical of large-scale suggestions without some code to back it up.</li>\r\n <li>Join any of the <a href="http://dev.joomla.org/content/view/13/53/" title="Joomla! working groups">Joomla! Working Groups</a> and bring your personal expertise to the Joomla! community. More info about the different working groups can be found <a href="http://dev.joomla.org/content/view/13/53/" title="Joomla! working groups">on the Working Group Roll Call</a>. </li>\r\n</ul>\r\n\r\n<p> That''s all you need to know if you''d like to join the Joomla! development community. </p>', 1, 4, 0, 29, '2006-10-12 16:50:48', 62, '', '2008-12-16 15:44:55', 62, 0, '0000-00-00 00:00:00', '2006-10-11 02:00:00', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 13, 0, 4, '', '', 0, 53, 'robots=\nauthor='),
  326. (44, 'Phoenix', 'phoenix', '', '<p class="dropcap">We are happy to announce that with our new template Phoenix we are introducing a new era in YOOtheme templating: our shiny new <a href="index.php?option=com_content&view=article&id=56&Itemid=152">Warp framework</a>.</p>\r\n\r\n<blockquote class="inset-right width25" style="margin-top: 0px;">"The new Warp template framework is amazing!"</blockquote>\r\n\r\n<p>Warp is what''s under the hood of a YOOtheme template. With Phoenix, you get a wide range of awesome new features. First of all, there is our amazing new multi-column dropdown menu, which is a true novelty for the Joomla world: You can set as many columns as you want, set the column width in the backend, display big icons for second level items ... you gotta check it out yourself, it looks so cool!</p>\r\n\r\n<p>Phoenix also comes with lots of modules, some of them with color variations. Now you can also show icons in your module headers. Phoenix provides an endless supply of combinations of module styles, colors, badges and icons. The new 2-1-3 column ordering makes Phoenix super search engine friendly. The two nested 3-column-layouts makes your website amazingly flexible. And also, this is our fastest template ever, sporting a new way of CSS/JS compression and background image sprites.</p>\r\n\r\n<p><a href="http://www.yootheme.com/signup">Join the YOOtheme club today</a>.</p>', '', 1, 5, 0, 34, '2007-12-30 13:00:00', 62, '', '2009-07-01 15:28:50', 62, 0, '0000-00-00 00:00:00', '2007-12-30 13:00:00', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 104, 0, 5, '', '', 0, 14553, 'robots=\nauthor='),
  327. (45, 'Template', 'template', '', '<h2>Warp5 Framework</h2>\r\n<p>This template is based on the Warp5 framework. Warp5 is a slick and powerful template framework for Joomla that lets you create sophisticated Joomla templates in no time. It provides a hybrid fluid-pixel grid and all the elaborate functionalities that make our templates easy to edit, nice to look at and super fast, in every browser. <a href="index.php?option=com_content&view=article&id=56&Itemid=152">Take a look at all the features...</a></p>\r\n\r\n<div class="floatbox">\r\n\r\n <div class="float-left width50">\r\n <div class="correct-png" style="margin-right: 15px; padding-left: 60px; background: transparent url(images/yootheme/icon_menusystem.png) no-repeat scroll 0 0;">\r\n <h3 style="padding-top: 5px; margin-top: 0px;">Menu System</h3>\r\n <p>The menu system enhances Joomla''s menu functions to create clearly arranged interfaces even for comprehensive sites. <a href="index.php?option=com_content&view=article&id=57&Itemid=153">Learn more...</a></p>\r\n </div>\r\n </div>\r\n \r\n <div class="float-left width50">\r\n <div class="correct-png" style="padding-left: 60px; background: transparent url(images/yootheme/icon_modulesystem.png) no-repeat scroll 0 0;">\r\n <h3 style="padding-top: 5px; margin-top: 0px;">Module System</h3>\r\n <p>The module system provides a clear grid for Joomla modules and a wide diversity of templates for module variations. <a href="index.php?option=com_content&view=article&id=47&Itemid=154">Learn more...</a></p>\r\n </div>\r\n </div>\r\n \r\n</div>\r\n\r\n<hr class="dotted" />\r\n\r\n<h2>Design and Styles</h2>\r\n<p>We included a lot of different module and typography styles. So you can give your site a unique look and it will also ease your work when setting up your content.</p>\r\n\r\n<div class="floatbox">\r\n\r\n <div class="float-left width50">\r\n <div class="correct-png" style="margin-right: 15px; padding-left: 60px; background: transparent url(images/yootheme/icon_modulevariations.png) no-repeat scroll 0 0;">\r\n <h3 style="padding-top: 5px; margin-top: 0px;">Module Variations</h3>\r\n <p>This template comes with a wide variety of module stylings in many different shapes and colours. Take a look at all the different <a href="index.php?option=com_content&view=article&id=48&Itemid=58">module variations.</a></p>\r\n </div>\r\n </div>\r\n \r\n <div class="float-left width50">\r\n <div class="correct-png" style="padding-left: 60px; background: transparent url(images/yootheme/icon_typography.png) no-repeat scroll 0 0;">\r\n <h3 style="padding-top: 5px; margin-top: 0px;">Typography</h3>\r\n <p>This templates delivers you sophisticated typography and various stylings. Take a look at the <a href="index.php?option=com_content&view=article&id=46&Itemid=55">style guide</a> about all possible HTML tag styles.</p>\r\n </div>\r\n </div>\r\n \r\n</div>\r\n\r\n<hr class="dotted" />\r\n\r\n<h2>Installation and Customization</h2>\r\n<p>New to YOOtheme? Don''t worry! We provide a lot help to install and cutomize our tempaltes to get you started right away with your web project.</p>\r\n\r\n<div class="floatbox">\r\n\r\n <div class="float-left width50">\r\n <div class="correct-png" style="margin-right: 15px; padding-left: 60px; background: transparent url(images/yootheme/icon_installation.png) no-repeat scroll 0 0;">\r\n <h3 style="padding-top: 5px; margin-top: 0px;">Installation Package</h3>\r\n <p>We provide a full Joomla installation package with the demo content of the website for this template. So you can take a look at how everything is set up in the Joomla backend.</p>\r\n <div class="info">Make sure you click "Install Sample Data" during the installation process.</div>\r\n </div>\r\n </div>\r\n \r\n <div class="float-left width50">\r\n <div class="correct-png" style="padding-left: 60px; background: transparent url(images/yootheme/icon_fireworks.png) no-repeat scroll 0 0;">\r\n <h3 style="padding-top: 5px; margin-top: 0px;">Sliced Image Source Files</h3>\r\n <p>The editable fully sliced image source files of this template are available as download. With them you can completely customise your template''s look to match your or your client''s corporate identity.</p>\r\n <div class="info">Adobe Fireworks CS3 or higher is required to edit the image source files.</div>\r\n </div>\r\n </div>\r\n \r\n</div>\r\n\r\n<hr class="dotted" />\r\n\r\n<h2>Compatibility</h2>\r\n\r\n<p>This template is fully compatible with all YOOtheme products like the <a target="_blank" href="http://tools.yootheme.com/">YOOtools</a>, the <a target="_blank" href="http://zoo.yootheme.com/">ZOO</a> and the <a target="_blank" href="http://teamlog.yootheme.com/">Teamlog extension</a>.</p>\r\n\r\n<div class="tip ie6-zoom" style="overflow: hidden;">\r\n All YOOtools extensions are working right out of the box. Take a look at the demo pages and watch the video tutorials.\r\n \r\n <div class="float-left width50">\r\n <ul class="checkbox">\r\n <li style="margin-bottom: 4px; overflow: hidden;">\r\n <a style="display: block; float: left; width: 100px;" target="_blank" href="http://tools.yootheme.com/extensions/yooaccordion" title="YOOaccordion">YOOaccordion</a>\r\n <a target="_blank" href="http://tools.yootheme.com/extensions/yooaccordion" title="YOOaccordion">\r\n <img class="correct-png" style="margin: 0px 0px 0px 5px" src="images/yootheme/features_demo.png" alt="See the live demo" title="See the live demo" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n <a href="http://tutorials.yootheme.com/index.php?option=com_mtree&task=viewlink&link_id=129&Itemid=2" target="_blank">\r\n <img class="correct-png" style="margin: 0px 0px 0px 3px" src="images/yootheme/features_tutorial.png" alt="Watch the video tutorial" title="Watch the video tutorial" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n </li>\r\n <li style="margin-bottom: 4px; overflow: hidden;">\r\n <a style="display: block; float: left; width: 100px;" target="_blank" href="http://tools.yootheme.com/extensions/yoocarousel" title="YOOcarousel">YOOcarousel</a>\r\n <a target="_blank" href="http://tools.yootheme.com/extensions/yoocarousel" title="YOOcarousel">\r\n <img class="correct-png" style="margin: 0px 0px 0px 5px" src="images/yootheme/features_demo.png" alt="See the live demo" title="See the live demo" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n <a href="http://tutorials.yootheme.com/index.php?option=com_mtree&task=viewlink&link_id=126&Itemid=2" target="_blank">\r\n <img class="correct-png" style="margin: 0px 0px 0px 3px" src="images/yootheme/features_tutorial.png" alt="Watch the video tutorial" title="Watch the video tutorial" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n </li>\r\n <li style="margin-bottom: 4px; overflow: hidden;">\r\n <a style="display: block; float: left; width: 100px;" target="_blank" href="http://tools.yootheme.com/extensions/yoodrawer" title="YOOdrawer">YOOdrawer</a>\r\n <a target="_blank" href="http://tools.yootheme.com/extensions/yoodrawer" title="YOOdrawer">\r\n <img class="correct-png" style="margin: 0px 0px 0px 5px" src="images/yootheme/features_demo.png" alt="See the live demo" title="See the live demo" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n <a href="http://tutorials.yootheme.com/index.php?option=com_mtree&task=viewlink&link_id=127&Itemid=2" target="_blank">\r\n <img class="correct-png" style="margin: 0px 0px 0px 3px" src="images/yootheme/features_tutorial.png" alt="Watch the video tutorial" title="Watch the video tutorial" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n </li>\r\n <li style="margin-bottom: 4px; overflow: hidden;">\r\n <a style="display: block; float: left; width: 100px;" target="_blank" href="http://tools.yootheme.com/extensions/yooslider" title="YOOslider">YOOslider</a>\r\n <a target="_blank" href="http://tools.yootheme.com/extensions/yooslider" title="YOOslider">\r\n <img class="correct-png" style="margin: 0px 0px 0px 5px" src="images/yootheme/features_demo.png" alt="See the live demo" title="See the live demo" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n <a href="http://tutorials.yootheme.com/index.php?option=com_mtree&task=viewlink&link_id=128&Itemid=2" target="_blank">\r\n <img class="correct-png" style="margin: 0px 0px 0px 3px" src="images/yootheme/features_tutorial.png" alt="Watch the video tutorial" title="Watch the video tutorial" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n </li>\r\n <li style="margin-bottom: 4px; overflow: hidden;">\r\n <a style="display: block; float: left; width: 100px;" target="_blank" href="http://tools.yootheme.com/extensions/yooscroller" title="YOOscroller">YOOscroller</a>\r\n <a target="_blank" href="http://tools.yootheme.com/extensions/yooscroller" title="YOOscroller">\r\n <img class="correct-png" style="margin: 0px 0px 0px 5px" src="images/yootheme/features_demo.png" alt="See the live demo" title="See the live demo" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n <a href="http://tutorials.yootheme.com/index.php?option=com_mtree&task=viewlink&link_id=130&Itemid=2" target="_blank">\r\n <img class="correct-png" style="margin: 0px 0px 0px 3px" src="images/yootheme/features_tutorial.png" alt="Watch the video tutorial" title="Watch the video tutorial" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n </li>\r\n <li style="margin-bottom: 4px; overflow: hidden;">\r\n <a style="display: block; float: left; width: 100px;" target="_blank" href="http://tools.yootheme.com/extensions/yoosearch" title="YOOsearch">YOOsearch</a>\r\n <a target="_blank" href="http://tools.yootheme.com/extensions/yoosearch" title="YOOsearch">\r\n <img class="correct-png" style="margin: 0px 0px 0px 5px" src="images/yootheme/features_demo.png" alt="See the live demo" title="See the live demo" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n <a href="http://tutorials.yootheme.com/index.php?option=com_mtree&task=viewlink&link_id=134&Itemid=2" target="_blank">\r\n <img class="correct-png" style="margin: 0px 0px 0px 3px" src="images/yootheme/features_tutorial.png" alt="Watch the video tutorial" title="Watch the video tutorial" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n </li>\r\n <li style="margin-bottom: 4px; overflow: hidden;">\r\n <a style="display: block; float: left; width: 100px;" target="_blank" href="http://tools.yootheme.com/extensions/yoogallery" title="YOOgallery">YOOgallery</a>\r\n <a target="_blank" href="http://tools.yootheme.com/extensions/yoogallery" title="YOOgallery">\r\n <img class="correct-png" style="margin: 0px 0px 0px 5px" src="images/yootheme/features_demo.png" alt="See the live demo" title="See the live demo" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n <a href="http://tutorials.yootheme.com/index.php?option=com_mtree&task=viewlink&link_id=144&Itemid=2" target="_blank">\r\n <img class="correct-png" style="margin: 0px 0px 0px 3px" src="images/yootheme/features_tutorial.png" alt="Watch the video tutorial" title="Watch the video tutorial" width="17" height="17" align="absmiddle"/></a></li>\r\n <li style="margin-bottom: 4px; overflow: hidden;">\r\n <a style="display: block; float: left; width: 100px;" target="_blank" href="http://tools.yootheme.com/extensions/yoomaps" title="YOOmaps">YOOmaps</a>\r\n <a target="_blank" href="http://tools.yootheme.com/extensions/yoomaps" title="YOOmaps">\r\n <img class="correct-png" style="margin: 0px 0px 0px 5px" src="images/yootheme/features_demo.png" alt="See the live demo" title="See the live demo" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n <a href="http://tutorials.yootheme.com/index.php?option=com_mtree&task=viewlink&link_id=132&Itemid=2" target="_blank">\r\n <img class="correct-png" style="margin: 0px 0px 0px 3px" src="images/yootheme/features_tutorial.png" alt="Watch the video tutorial" title="Watch the video tutorial" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n </li>\r\n </ul>\r\n </div>\r\n <div class="float-left width50">\r\n <ul class="checkbox">\r\n <li style="margin-bottom: 4px; overflow: hidden;">\r\n <a style="display: block; float: left; width: 100px;" target="_blank" href="http://tools.yootheme.com/extensions/yootweet" title="YOOtweet">YOOtweet</a>\r\n <a target="_blank" href="http://tools.yootheme.com/extensions/yootweet" title="YOOtweet">\r\n <img class="correct-png" style="margin: 0px 0px 0px 5px" src="images/yootheme/features_demo.png" alt="See the live demo" title="See the live demo" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n </li>\r\n <li style="margin-bottom: 4px; overflow: hidden;">\r\n <a style="display: block; float: left; width: 100px;" target="_blank" href="http://tools.yootheme.com/extensions/yootooltip" title="YOOtooltip">YOOtooltip</a>\r\n <a target="_blank" href="http://tools.yootheme.com/extensions/yootooltip" title="YOOtooltip">\r\n <img class="correct-png" style="margin: 0px 0px 0px 5px" src="images/yootheme/features_demo.png" alt="See the live demo" title="See the live demo" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n <a href="http://tutorials.yootheme.com/index.php?option=com_mtree&task=viewlink&link_id=137&Itemid=2" target="_blank">\r\n <img class="correct-png" style="margin: 0px 0px 0px 3px" src="images/yootheme/features_tutorial.png" alt="Watch the video tutorial" title="Watch the video tutorial" width="17" height="17" align="absmiddle"/>\r\n </a></li>\r\n <li style="margin-bottom: 4px; overflow: hidden;">\r\n <a style="display: block; float: left; width: 100px;" target="_blank" href="http://tools.yootheme.com/extensions/yootoppanel" title="YOOtoppanel">YOOtoppanel</a>\r\n <a target="_blank" href="http://tools.yootheme.com/extensions/yootoppanel" title="YOOtoppanel">\r\n <img class="correct-png" style="margin: 0px 0px 0px 5px" src="images/yootheme/features_demo.png" alt="See the live demo" title="See the live demo" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n <a href="http://tutorials.yootheme.com/index.php?option=com_mtree&task=viewlink&link_id=135&Itemid=2" target="_blank">\r\n <img class="correct-png" style="margin: 0px 0px 0px 3px" src="images/yootheme/features_tutorial.png" alt="Watch the video tutorial" title="Watch the video tutorial" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n </li>\r\n <li style="margin-bottom: 4px; overflow: hidden;">\r\n <a style="display: block; float: left; width: 100px;" target="_blank" href="http://tools.yootheme.com/free-stuff/yooeffects" title="YOOeffects">YOOeffects</a>\r\n <a target="_blank" href="http://tools.yootheme.com/free-stuff/yooeffects" title="YOOeffects">\r\n <img class="correct-png" style="margin: 0px 0px 0px 5px" src="images/yootheme/features_demo.png" alt="See the live demo" title="See the live demo" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n </li>\r\n <li style="margin-bottom: 4px; overflow: hidden;">\r\n <a style="display: block; float: left; width: 100px;" target="_blank" href="http://tools.yootheme.com/free-stuff/yoologin" title="YOOlogin">YOOlogin</a>\r\n <a target="_blank" href="http://tools.yootheme.com/free-stuff/yoologin" title="YOOlogin">\r\n <img class="correct-png" style="margin: 0px 0px 0px 5px" src="images/yootheme/features_demo.png" alt="See the live demo" title="See the live demo" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n <a href="http://tutorials.yootheme.com/index.php?option=com_mtree&task=viewlink&link_id=131&Itemid=2" target="_blank">\r\n <img class="correct-png" style="margin: 0px 0px 0px 3px" src="images/yootheme/features_tutorial.png" alt="Watch the video tutorial" title="Watch the video tutorial" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n </li>\r\n <li style="margin-bottom: 4px; overflow: hidden;">\r\n <a style="display: block; float: left; width: 100px;" target="_blank" href="http://tools.yootheme.com/free-stuff/yooholidays" title="YOOholidays">YOOholidays</a>\r\n <a target="_blank" href="http://tools.yootheme.com/extensions/free-stuff" title="YOOholidays">\r\n <img class="correct-png" style="margin: 0px 0px 0px 5px" src="images/yootheme/features_demo.png" alt="See the live demo" title="See the live demo" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n </li>\r\n <li style="margin-bottom: 4px; overflow: hidden;">\r\n <a style="display: block; float: left; width: 100px;" target="_blank" href="http://tools.yootheme.com/free-stuff/yooiecheck" title="YOOiecheck">YOOiecheck</a>\r\n <a target="_blank" href="http://tools.yootheme.com/free-stuff/yooiecheck" title="YOOiecheck">\r\n <img class="correct-png" style="margin: 0px 0px 0px 5px" src="images/yootheme/features_demo.png" alt="See the live demo" title="See the live demo" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n </li>\r\n <li style="margin-bottom: 4px; overflow: hidden;">\r\n <a style="display: block; float: left; width: 100px;" target="_blank" href="http://tools.yootheme.com/free-stuff/yoosnapshots" title="YOOsnapshots">YOOsnapshots</a>\r\n <a target="_blank" href="http://tools.yootheme.com/free-stuff/yoosnapshots" title="YOOsnapshots">\r\n <img class="correct-png" style="margin: 0px 0px 0px 5px" src="images/yootheme/features_demo.png" alt="See the live demo" title="See the live demo" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n <a href="http://tutorials.yootheme.com/index.php?option=com_mtree&task=viewlink&link_id=133&Itemid=2" target="_blank">\r\n <img class="correct-png" style="margin: 0px 0px 0px 3px" src="images/yootheme/features_tutorial.png" alt="Watch the video tutorial" title="Watch the video tutorial" width="17" height="17" align="absmiddle"/>\r\n </a>\r\n </li>\r\n </ul>\r\n </div>\r\n</div>\r\n\r\n<h2>Basic Help</h2>\r\n<p>Learn more about how to install and set up a YOOtheme template and watch <a href="http://tutorials.yootheme.com/index.php?option=com_mtree&task=viewlink&link_id=88&Itemid=2" target="_blank" title="How to install and set up a YOOtheme template">this video tutorial.</a></p>', '', 1, 5, 0, 34, '2007-12-19 03:00:00', 62, '', '2009-06-29 15:16:32', 62, 0, '0000-00-00 00:00:00', '2007-12-19 03:00:00', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 107, 0, 6, '', '', 0, 1661, 'robots=\nauthor=');
  328. INSERT INTO `#__content` (`id`, `title`, `alias`, `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`, `metadata`) VALUES
  329. (46, 'Typography', 'typography', '', '<div class="note">Typography is a key element in web design. This templates delivers you sophisticated typography and various stylings. The style guide gives you an overview about all possible HTML tag stylings provided by the template. It also helps you to set up the available classes for special stylings.</div>\r\n\r\n<h1>This is an H1 Header</h1>\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n\r\n<h2>This is an H2 Header</h2>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n\r\n<h3>This is an H3 Header</h3>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n\r\n<h4>This is an H4 Header</h4>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n\r\n<h5>This is an H5 Header</h5>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n\r\n<h6>This is an H6 Header</h6>\r\n<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n\r\n<p class="dropcap"><strong>Dropcap: use &lt;p class="dropcap"&gt;</strong>. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\r\n\r\n<hr class="dotted" />\r\n\r\n<strong>Horizontal Rule:</strong> &lt;hr&gt; tag with class="dotted"\r\n\r\n<hr class="dotted" />\r\n\r\n<div class="floatbox">\r\n <div class="float-left width33">\r\n \r\n <h4>Inline Styles</h4>\r\n <p>\r\n <a href="#">Default &lt;a&gt; tag</a>\r\n <br /><a href="#" class="icon-folder">&lt;a&gt; with class="icon-folder"</a>\r\n <br /><a href="#" class="icon-file">&lt;a&gt; with class="icon-file"</a>\r\n <br /><a href="#" class="icon-download">&lt;a&gt; with class="icon-download"</a>\r\n <br /><a href="#" class="icon-external">&lt;a&gt; with class="icon-external"</a>\r\n <br /><a href="#" class="icon-pdf">&lt;a&gt; with class="icon-pdf"</a>\r\n <br /><br /><em>Default &lt;em&gt;</em>\r\n <br /><em class="box">&lt;em&gt; with class="box"</em>\r\n <br /><br /><acronym title="By marking up acronyms you can give useful information to browsers, spell checkers, translation systems and search-engine indexers.">Default &lt;acronym&gt;</acronym>\r\n <br /><abbr title="By marking up abbreviations you can give useful information to browsers, spell checkers, translation systems and search-engine indexers.">Default &lt;abbr&gt;</abbr>\r\n \r\n </p>\r\n \r\n </div>\r\n <div class="float-left width33">\r\n\r\n <h4>Unordered List Styles</h4>\r\n\r\n <ul>\r\n <li>Default &lt;ul&gt; tag</li>\r\n <li>Lorem ipsum dolor</li>\r\n <li>Lorem ipsum dolor</li>\r\n </ul>\r\n\r\n <ul class="checkbox">\r\n <li>&lt;ul&gt; with class="checkbox"</li>\r\n </ul>\r\n \r\n <ul class="arrow">\r\n <li>&lt;ul&gt; with class="arrow"</li>\r\n </ul>\r\n \r\n <ul class="star">\r\n <li>&lt;ul&gt; with class="star"</li>\r\n </ul>\r\n \r\n <ul class="check">\r\n <li>&lt;ul&gt; with class="check"</li>\r\n </ul>\r\n\r\n </div>\r\n <div class="float-left width33">\r\n \r\n <h4>Ordered List Styles</h4>\r\n\r\n <ol>\r\n <li>Default &lt;ol&gt; tag</li>\r\n <li>Lorem ipsum dolor</li>\r\n <li>Lorem ipsum dolor</li>\r\n </ol>\r\n\r\n <ol class="disc">\r\n <li>&lt;ol&gt; tag with class="disc"</li>\r\n <li>Item 2</li>\r\n <li>Item 3</li>\r\n <li>Item 4</li>\r\n </ol>\r\n\r\n </div>\r\n</div>\r\n\r\n<hr class="dotted" />\r\n\r\n<h4>Div and Span Styles</h4>\r\n<div class="note"><strong>&lt;div&gt; or &lt;span&gt; tag with class="note"</strong> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi.<br />\r\n</div>\r\n<div class="info"><strong>&lt;div&gt; or &lt;span&gt; tag with class="info"</strong> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi.<br />\r\n</div>\r\n<div class="alert"><strong>&lt;div&gt; or &lt;span&gt; tag with class="alert"</strong> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi.<br />\r\n</div>\r\n<div class="download"><strong>&lt;div&gt; or &lt;span&gt; tag with class="download"</strong> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi.<br />\r\n</div>\r\n<div class="tip"><strong>&lt;div&gt; or &lt;span&gt; tag with class="tip"</strong> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi.<br />\r\n</div>\r\n\r\n<hr class="dotted" />\r\n\r\n<h4>Blockquote and Q Styles</h4>\r\n<strong>Default &lt;q&gt; tag:</strong> <q>This is a quote!</q>\r\n\r\n<br /><br /><strong>Default &lt;blockquote&gt; tag with block element as child:</strong>\r\n\r\n<blockquote><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p></blockquote>\r\n\r\n<strong>&lt;blockquote&gt; tag with class="quotation" and an an additional &lt;p&gt; tag.</strong>\r\n<br />(use &lt;blockquote&gt;&lt;p&gt;....&lt;/p&gt;&lt;/blockquote&gt;)\r\n<blockquote class="quotation">\r\n <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n </p>\r\n</blockquote>\r\n\r\n<hr class="dotted" />\r\n\r\n<h4>Combine Styles</h4>\r\n<div class="floatbox">\r\n\r\n <p class="dropcap" style="margin-top: 5px;">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation <span class="info inset-right width25"><strong>Combine Tags</strong> with class "inset-right" or "inset-left". Example: &lt;span class=" info inset-right width25"&gt;.</span> ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n </p>\r\n \r\n <p>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <q class="blockquote inset-left width25"><strong>Combine Tags</strong> with class "inset-right" or "inset-left". Example: &lt;q class=" blockquote inset-right width25"&gt;.</q> Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n </p>\r\n \r\n <p class="dropcap">Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <span class="tip inset-right width25"><strong>Possible Width Classes</strong> .width15, .width18, .width20, .width23, .width25, .width33, .width35, .width40, .width45, .width50</span> Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\r\n </p>\r\n \r\n <p>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n </p>\r\n \r\n</div>\r\n\r\n<hr class="dotted" />\r\n\r\n<div class="floatbox">\r\n <div class="float-left width50">\r\n \r\n <h4>Form Styles</h4>\r\n \r\n <form action="#">\r\n <fieldset style="margin-right: 20px;">\r\n <legend>Form legend</legend>\r\n <div><label for="f1">Text input:</label> <input type="text" value="input text" id="f1"/></div>\r\n <div><label for="f2">Radio input:</label> <input type="radio" id="f2"/></div>\r\n <div><label for="f3">Checkbox input:</label> <input type="checkbox" id="f3"/></div>\r\n <div><label for="f4">Select field:</label> <select id="f4"><option>Option 01</option><option>Option 02</option></select></div>\r\n <div><label for="f5">Textarea:</label><br/><textarea rows="5" cols="30" id="f5">Textarea text</textarea></div>\r\n <div><label for="f6">Button:</label> <input type="button" value="button text" id="f6"/></div>\r\n </fieldset>\r\n </form>\r\n\r\n </div>\r\n <div class="float-left width50">\r\n \r\n <h4>Preformatted Text Style</h4>\r\n <pre>\r\npre {\r\n margin: 10px 0 10px 0px;\r\n padding: 5px 0 5px 10px;\r\n border: 1px dotted #aab4be;\r\n border-left: 20px solid #b4b4b4;\r\n background: #fafafa;\r\n font-size: 90%;\r\n color: #2E8B57;\r\n font-family: "Courier New", Courier, monospace;\r\n \r\n /* Browser specific (not valid) styles */\r\n /* to make preformatted text wrap */\r\n \r\n white-space: pre-wrap; /* css-3 */\r\n white-space: -moz-pre-wrap; /* Mozilla */\r\n}\r\n </pre>\r\n \r\n </div>\r\n</div>', '', 1, 5, 0, 34, '2007-12-19 05:00:00', 62, '', '2009-05-08 14:29:54', 62, 62, '2009-05-08 14:29:54', '2007-12-19 05:00:00', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 137, 0, 7, '', '', 0, 1726, 'robots=\nauthor='),
  330. (47, 'Module System', 'module-system', '', '<p>The Warp framework provides a flexible module system that handles module types with different templates and styles, letting you display your content anywhere on your site. Of course, the whole 3-column-layout and the fluid module grids are built without using any tables. Almost any column and module layout can be achieved with the Warp framework. Read the following descriptions carefully to learn all about the possibilities offered by the Warp framework.</p>\r\n\r\n<h2>Module Variations</h2>\r\nThis template comes with many different module types. They are completely independent of the background of the container they''re displayed in, no matter if the background is light or dark. For each module you can choose the style and color, displayed badges and header icons and the YOOtools color. To enable the specific styles, color, etc. for a module you have to set the specific module class suffix in the module parameters. The Warp framework will analyze the module class suffixes and pass parameters. For example: style-rounded, color-black, badge-new, icon-download and yootools-black.\r\n<div class="info">Learn more and take a look at all the different module styles of this template at the <a href="index.php?option=com_content&amp;view=article&amp;id=48&amp;Itemid=58">Module Variations Page</a>.</div>\r\n\r\n<h2>Module Positions</h2>\r\n<p>The Warp framework offers nearly unlimited combinations of module positions. The layout is based on two 3 column layouts, one nested into the other. This provides a wide range of column-based layout combinations, so you can achieve any kind of 1-Column, 2-Column or 3 Column layout and many more possible combinations.</p>\r\n\r\n<p>In nearly all module positions you can publish as many modules as possible for your current layout. Surely, you are familiar with this for the vertical module positions like "left" and "right"; but the Warp framework also supports this feature for module positions where the modules are displayed in a horizontal row. The heights of all published modules in a horizontal row get adjusted to match each other.</p>\r\n\r\n<p>All module positions are fully collapsible. If there is no module published in a certain position, this module position will contract and disappear.</p>\r\n\r\n<div class="floatbox">\r\n <div class="float-left width50" style="text-align: center;">\r\n <h4>Positions</h4>\r\n <img style="margin: 0px 0px 10px 0px" src="images/yootheme/modulesystem_positions.png" alt="Module Positions" title="Module Positions" width="270" height="400" />\r\n </div>\r\n <div class="float-left width50" style="text-align: center;">\r\n <h4>Vertical Positions</h4>\r\n <img class="correct-png" style="margin: 0px 0px 10px 0px" src="images/yootheme/modulesystem_positions_vertical.png" alt="More Details" title="More Details" width="270" height="175" />\r\n <h4 style="margin-top: 0px;">Horizontal Positions</h4>\r\n <img class="correct-png" style="margin: 0px 0px 10px 0px" src="images/yootheme/modulesystem_positions_horizontal.png" alt="More Details" title="More Details" width="270" height="190" />\r\n </div>\r\n</div>\r\n\r\n<hr class="dotted" />\r\n\r\n<h2>Module Proportions</h2>\r\n\r\n<p>One outstanding feature of the Warp framework is the possibility to choose between different module proportions for each module position. By default, the module proportions are set to equal. This means that all published modules in a horizontal module position have the same width. But you can also set the module proportions to golden ratio for a specif module position on a specific page. To do that, you have to add MODULENAME-PROPORTION to the page class suffix in the menu item parameters.</p>\r\n\r\n<div class="info"><strong>Example:</strong> Publish two modules in the "top" position on your "Home" menu item. The width of each module will be 50% by default. To have the golden ratio proportions go to the menu manager and set the page class suffix to "top-goldenratio" in the parameters of the "Home" menu item. Now the width of the first module will be 65% and of the second module 35% on the page "Home".</div>\r\n\r\n<p>The following figures show the different proportions depending on the numbers of published modules.</p>\r\n\r\n<div class="floatbox">\r\n <div class="float-left width50" style="text-align: center;">\r\n <h4>Default</h4>\r\n <img class="correct-png" style="margin: 0px 0px 10px 0px" src="images/yootheme/modulesystem_proportions_default.png" alt="Equal Proportions" title="Equal Proportions" width="270" height="390" />\r\n </div>\r\n <div class="float-left width50" style="text-align: center;">\r\n <h4>Golden Ratio</h4>\r\n <img class="correct-png" style="margin: 0px 0px 10px 0px" src="images/yootheme/modulesystem_proportions_goldenratio.png" alt="Golden Ratio Proportions" title="Golden Ratio Proportions" width="270" height="390" />\r\n </div>\r\n</div>\r\n\r\n<div class="tip">If you want add your own custom proportion or learn more technical details, take a look at this tutorial: <a href="http://tutorials.yootheme.com/index.php?option=com_mtree&amp;task=viewlink&amp;link_id=143&amp;Itemid=2" target="_blank">How to add custom proportions for module positions?</a></div>\r\n\r\n<h2>Header Subtitles</h2>\r\n<p>Module headers can have subtitles to provide a more detailed explanation of the module content. Just use the pipe character twice in the module name. For example "My title || My Subtitle".</p>', '', 1, 5, 0, 34, '2007-12-19 05:00:00', 62, '', '2009-07-01 16:47:30', 62, 0, '0000-00-00 00:00:00', '2007-12-19 05:00:00', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 78, 0, 8, '', '', 0, 778, 'robots=\nauthor='),
  331. (48, 'Dummy Content', 'dummy-content', '', 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.', '', 1, 5, 0, 34, '2007-12-19 05:00:00', 62, '', '2008-10-02 11:28:25', 62, 0, '0000-00-00 00:00:00', '2007-12-19 05:00:00', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 9, 0, 9, '', '', 0, 5746, 'robots=\nauthor='),
  332. (56, 'Warp5 Framework', 'warp5-framework', '', '<p>Warp is mainly a CSS/HTML framework for Joomla that provides a toolbox of functionalities using PHP and JavaScript. We created it to provide web developers and designers with a set of tools to take off their shoulders what has to be done for every project over and over again, so they can focus on the unique tasks that come with their specific web development project.</p>\r\n\r\n<p>Below you find all the CSS, PHP and JavaScript features provided by the Warp framework. Also, learn more about the menu system and the module system.</p>\r\n\r\n<div class="note" style="text-align: center;"><a href="#css">CSS &amp; HTML Framework</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="#php">PHP Toolbox</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="#javascript">JavaScript Toolbox</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="index.php?option=com_content&amp;view=article&amp;id=57&amp;Itemid=153">Menu System</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="index.php?option=com_content&amp;view=article&amp;id=47&amp;Itemid=154">Module System</a></div>\r\n\r\n<h2 id="css">CSS/HTML Framework</h2>\r\n<p>Our CSS/HTML Framework creates a very robust and flexible layout based on web standards. It is easy-to-use, search engine friendly and cross browser compatible.</p>\r\n\r\n<table cellspacing="0" cellpadding="0" border="0" class="listing">\r\n <thead>\r\n <tr>\r\n <th align="left" width="25%">Feature</th>\r\n <th align="left" width="65%">Description</th>\r\n <th width="10%"></th>\r\n </tr>\r\n </thead>\r\n <tbody>\r\n <tr class="odd">\r\n <td class="bold">3 Column Layout</td>\r\n <td>The CSS framework uses two 3-column-layouts, one nested into the other. This provides a wide range of column-based layout combinations.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="even">\r\n <td class="bold">Search Engine Friendly</td>\r\n <td>The 3-column-layout is optimized for search engines and comes with a 2-1-3 column ordering. In the markup, the main content comes first before the left and right column.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="odd">\r\n <td class="bold">Tableless Layout</td>\r\n <td>Of course, the whole 3-column-layout and the fluid module grids are built without using any tables, as it is the standard for any modern CSS/HTML framework.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="even">\r\n <td class="bold">Joomla Overrides</td>\r\n <td>The Warp framework comes with overrides for Joomla''s core output to also render the content area with meaningful HTML markup instead of tables.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="odd">\r\n <td class="bold">Modules Types</td>\r\n <td>The different module types are completely independent of the background of the container they''re displayed in, no matter if the background is light or dark.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="even">\r\n <td class="bold">Menu Modules</td>\r\n <td>You can mix the drop down menu with any Joomla module, for example, the login module. The module will drop down and look like it is part of the menu.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="odd">\r\n <td class="bold">CSS Reset</td>\r\n <td>A CSS reset removes the inconsistent styling of HTML elements provided by browsers and sets suitable default values. Form styles are also especially improved.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="even">\r\n <td class="bold">Cross-browser Support</td>\r\n <td>The framework is designed to be fully compatible with Firefox 3+, Internet Explorer 6+, Safari 3.2+, Opera 9.5+, Chrome 1+, Camino and Konqueror.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="odd">\r\n <td class="bold">Validation</td>\r\n <td>A basis for our framework to provide cross-browser support is that it validates to XHTML and CSS web standards.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="even">\r\n <td class="bold">Minimum of IE6/IE7 Hacks</td>\r\n <td>Our framework reduces the need to fix CSS for the Internet Explorer to an absolute minimum. However, of course it provides the CSS fixes necessary to make your site look good in IE6 and IE7.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="odd">\r\n <td class="bold">Image Sprites</td>\r\n <td>We take advantage of image sprites to the fullest. Means: We put as many image slices as possible into a single image file to minimize the loading time of your website.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="even">\r\n <td class="bold">Accessibility</td>\r\n <td>The layout structure provides good accessibility. And of course the template stays fully functional if JavaScript is disabled.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="odd">\r\n <td class="bold">Template Parameters</td>\r\n <td>To keep template customizations as easy as possible many important widths can be set in the template configuration. For example, for the main page, all layout columns and for the drop down menu.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="even">\r\n <td class="bold">Mobile Devices</td>\r\n <td>Our templates are fully compatible with mobile devices like iPhone and iPod Touch.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="odd">\r\n <td class="bold">iPhone/iPod Touch Favicon</td>\r\n <td>They also support the iPhone and iPod Touch favicon which you can find in a template''s root folder.</td>\r\n <td align="center"></td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<h2 id="php">PHP Toolbox</h2>\r\n<p>Our PHP code base for the Warp framework adds a lot of awesome features that aren''t possible with standard Joomla templates. It takes your template customizations to the next level.</p>\r\n\r\n<table cellspacing="0" cellpadding="0" border="0" class="listing">\r\n <thead>\r\n <tr>\r\n <th align="left" width="25%">Feature</th>\r\n <th align="left" width="65%">Description</th>\r\n <th width="10%"></th>\r\n </tr>\r\n </thead>\r\n <tbody>\r\n <tr class="odd">\r\n <td class="bold">Powerful Menu System</td>\r\n <td>The Warp framework provides a powerful menu system to handle menu types with different templates and styles, letting you create any interface you have in mind.</td>\r\n <td align="center"><a href="index.php?option=com_content&amp;view=article&amp;id=57&amp;Itemid=153">View</a></td>\r\n </tr>\r\n <tr class="even">\r\n <td class="bold">Menu Types</td>\r\n <td>In addition to our default menu rendering we provide two different menu types: the accordion and drop down menu. Both can be loaded by using the menu class suffix.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="odd">\r\n <td class="bold">Drop Down Menu</td>\r\n <td>The number of columns in the drop down area can be set individually for each menu item to suit any of your needs.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="even">\r\n <td class="bold">Flexible Module System</td>\r\n <td>The flexible module system handles module types with different templates and styles, letting you display your content anywhere on your site.</td>\r\n <td align="center"><a href="index.php?option=com_content&amp;view=article&amp;id=47&amp;Itemid=154">View</a></td>\r\n </tr>\r\n <tr class="odd">\r\n <td class="bold">Module Templates</td>\r\n <td>The Warp framework provides a rich set of module templates to build any kind of module type. This way, every module variation only has the necessary amount of DIV containers.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="even">\r\n <td class="bold">Module Proportions</td>\r\n <td>Different proportions can be set for each module position, for example, an equal width ratio for the top position and a golden ratio for the bottom position.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="odd">\r\n <td class="bold">Module Parameters</td>\r\n <td>The module class suffix allows you to set different module parameters like the style, color, badge, icon and the YOOtools color.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="even">\r\n <td class="bold">Menu and Module Subtitles</td>\r\n <td>Menu items and module headers can have subtitles to provide a more detailed explanation on what information a user will find.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="odd">\r\n <td class="bold">Joomla suffixes</td>\r\n <td>The Warp framework makes full use of Joomla''s page, menu and module suffixes to pass parameters. You can easily create your own parameters.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="even">\r\n <td class="bold">Single configuration file</td>\r\n <td>All configurational parameter settings necessary for a template to work can be found in a single configuration file called config.php.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="odd">\r\n <td class="bold">Gzip compression</td>\r\n <td>A template''s entire CSS and JavaScript can be compressed in a single file. You can also add gzip compression for ultra fast loading.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="even">\r\n <td class="bold">Ajax-based search results</td>\r\n <td>The framework provides support to pass Joomla search results to Ajax calls. For example, the <a href="http://tools.yootheme.com/extensions/yoosearch" target="_blank">YOOsearch module</a> uses this feature.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="odd">\r\n <td class="bold">Page colors</td>\r\n <td>A page color can be set individually for each menu item. That way you can style every page linked to from a menu item independently.</td>\r\n <td align="center"></td>\r\n </tr>\r\n\r\n </tbody>\r\n</table>\r\n\r\n<h2 id="javascript">JavaScript Toolbox</h2>\r\n<p>Here is a list of the JavaScript key features provided by the Warp framework. You can customize this template by using a lot of smooth animations and fancy effects.</p>\r\n\r\n<table cellspacing="0" cellpadding="0" border="0" class="listing">\r\n <thead>\r\n <tr>\r\n <th align="left" width="25%">Feature</th>\r\n <th align="left" width="65%">Description</th>\r\n <th width="10%"></th>\r\n </tr>\r\n </thead>\r\n <tbody>\r\n <tr class="odd">\r\n <td class="bold">Dropdown Menu</td>\r\n <td>Moves the drop down area out with a smooth transition. The drop down area also remains visible for some milliseconds when the mouse leaves it unintendedly.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="even">\r\n <td class="bold">Fancy Menu</td>\r\n <td>The Fancy Menu is a real eye-catcher. It adds smooth moving or fading background effects to the main menu bar.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="odd">\r\n <td class="bold">Accordion Menu</td>\r\n <td>A smooth accordion effect can be applied to sub menu when using a menu item "separator". Closed/Opened state and two different sliding modes are supported.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="even">\r\n <td class="bold">Slider Menu</td>\r\n <td>When hovering the main menu items, a smooth horizontal sliding effect is added. It is the same effect as the famous <a href="http://tools.yootheme.com/extensions/yooslider" target="_blank">YOOslider.</a></td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="odd">\r\n <td class="bold">Smooth Scroll</td>\r\n <td>Users are often disoriented when clicking on a link which immediately jumps somewhere else in the same document. This JavaScript smoothly scrolls to the new link rather than jumping there directly.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="even">\r\n <td class="bold">Match Heights</td>\r\n <td>We provide an easy-to-use JavaScript to match the height of different HTML elements like the modules on the top and bottom positions.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="odd">\r\n <td class="bold">Morphing Effects</td>\r\n <td>With this script you can add transitions between CSS properties to create smooth animations. For example, an animated tab menu can easily be created.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="even">\r\n <td class="bold">Background Animations</td>\r\n <td>This script allows you to create a periodical animation between unlimited background-colors.</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="odd">\r\n\r\n <td class="bold">IE6 Alpha Transparency</td>\r\n <td>Two IE6 PNG fixes are provided. One to fix inline images by adding the CSS class "correct-png" and one to fix CSS background images. Highlight: background-position and background-repeat are supported!</td>\r\n <td align="center"></td>\r\n </tr>\r\n <tr class="even">\r\n <td class="bold">IE6 :hover and :focus</td>\r\n <td>This script fixes the :hover and :focus quirks of IE6 for any HTML element. A CSS class is applied when the HTML element is "moused over" and removed when "moused out".</td>\r\n <td align="center"></td>\r\n </tr>\r\n </tbody>\r\n</table>', '', 1, 5, 0, 34, '2007-12-19 03:00:00', 62, '', '2009-07-01 17:03:48', 62, 0, '0000-00-00 00:00:00', '2007-12-19 03:00:00', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 39, 0, 4, '', '', 0, 124, 'robots=\nauthor='),
  333. (57, 'Menu System', 'menu-system', '', '<img style="margin: 0px 0px 10px 10px; float: right;" src="images/yootheme/menusystem.png" alt="Menu System Overview" title="Menu System Overview" width="270" height="257" />\r\n\r\n<p>The Warp framework provides a powerful menu system to handle menu types with different templates and styles, letting you create any interface you have in mind. Learn more about setting up the menu by reading this <a href="http://tutorials.yootheme.com/index.php?option=com_mtree&amp;task=viewlink&amp;link_id=99&amp;Itemid=2" target="_blank" title="Read how to set up the YOOmenu system">tutorial</a>.</p>\r\n\r\n<h4>Menu Types</h4>\r\n<p>In addition to our default menu rendering we provide two different menu types: the accordion and drop down menu. Both can be loaded by using the menu class suffix. For example, use "dropdown" or "accordion" as the menu class suffix to render the specific menu type.</p>\r\n\r\n<h4>Subtitles</h4>\r\n<p>Menu items can have subtitles to provide a more detailed explanation on what information a user will find. Just use the pipe character twice in your menu item name. For example, "My title || My Subtitle". Don''t worry about the Joomla search. The pipe characters are removed in the Joomla search results. Read the <a href="http://tutorials.yootheme.com/index.php?option=com_mtree&amp;task=viewlink&amp;link_id=141&amp;Itemid=2" target="_blank" title="See how to set subtitles for the menu items">tutorial</a>.</p>\r\n\r\n<h4>JavaScript Effects</h4>\r\n<p>Most YOOtheme menus come with lots of fancy effects like smooth transitions and fading colors. Take a look at the <a href="index.php?option=com_content&amp;view=article&amp;id=56&amp;Itemid=152#javascript">JavaScript based menus</a> provided by the Warp Framework to learn more.</p>\r\n\r\n<h4>Background Images</h4>\r\n<p>The menu item you set in the Joomla menu administration for each menu item will appear as the item''s background image. It is also possible to load a different image for the same menu item, depending on the menu type. For example, if you have set an image "item1.jpg" for the sub menu and you need a larger image in the drop down menu, just place an image called "item1_dropdown.jpg" in the same folder. <a href="http://tutorials.yootheme.com/index.php?option=com_mtree&amp;task=viewlink&amp;link_id=102&amp;Itemid=2" target="_blank" title="Read how to set a menu item background image">Learn more...</a></p>\r\n\r\n<h4>Page Color</h4>\r\n<p>A page color can be set individually for each menu item. That way, you can style every page linked to from a menu item independently. For example, use "itemcolor-black" as the page class suffix and the CSS class black will appear in the body tag of that page. <a href="http://tutorials.yootheme.com/index.php?option=com_mtree&amp;task=viewlink&amp;link_id=101&amp;Itemid=2" target="_blank" title="Learn how to change the site color for each menu item.">video tutorial</a>.</p>\r\n\r\n<hr class="dotted" />\r\n\r\n<h2>Drop Down Menu</h2>\r\n<p>Use "dropdown" as the menu class suffix and publish the menu in the "menu" position to load the drop down menu.</p>\r\n\r\n<div class="floatbox">\r\n\r\n <div class="float-left width50">\r\n <div style="margin-right: 15px;">\r\n <h3>Multi columns</h3>\r\n <p>The number of columns in the drop down area can be set individually for each menu item to suit any of your needs. For example, use "columns-2" in the page class suffix and the drop down menu of this menu item will have two columns. This way you can define different drop down columns for each menu item.</p>\r\n </div>\r\n </div>\r\n \r\n <div class="float-left width50">\r\n <h3>Flexible drop down width</h3>\r\n <p>To keep CSS modification as simple as possible, we provide a template parameter for the column width of the drop down menu. You can set the column width in the template configuration.</p>\r\n </div>\r\n \r\n</div>\r\n\r\n<div class="floatbox">\r\n\r\n <div class="float-left width50">\r\n <div style="margin-right: 15px;">\r\n <h3>JavaScript</h3>\r\n <p>Moves the drop down area out with a smooth transition. The drop down area also remains visible for some milliseconds when the mouse leaves it unintendedly. And of course, the menu keeps fully functional if JavaScript is disabled.</p>\r\n </div>\r\n </div>\r\n \r\n <div class="float-left width50">\r\n <h3>Drop Down Module Position</h3>\r\n <p>You can mix the drop down menu with any Joomla module by publishing it in the "menu" position. The login module, for example. The module will drop down and look like it is part of the menu.</p>\r\n </div>\r\n \r\n</div>\r\n\r\n<hr class="dotted" />\r\n\r\n<h2>Accordion Menu</h2>\r\n<p>Use "accordion" as the menu class suffix and publish the menu (for example, in the "left" or "right" position) to load the accordion menu.</p>\r\n\r\n<p>A smooth accordion effect can be applied to the sub menu when using a menu item "separator". Closed/Opened state and two different sliding modes are supported. <a href="http://tutorials.yootheme.com/index.php?option=com_mtree&amp;task=viewlink&amp;link_id=108&amp;Itemid=2" target="_blank" title="Get to know how to set up the accordion menu">Learn more</a>.</p>', '', 1, 5, 0, 34, '2007-12-19 05:00:00', 62, '', '2009-07-01 16:40:56', 62, 0, '0000-00-00 00:00:00', '2007-12-19 05:00:00', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 15, 0, 3, '', '', 0, 70, 'robots=\nauthor='),
  334. (58, 'Module Variations', 'module-variations', '', '<p>This template''s module system comes with a wide range of module styles, color variations, badges and icons. Below you can see which module styles come with color variations and with which badges and icons you can combine them.</p>\r\n\r\n<table cellspacing="0" cellpadding="0" border="0" class="listing">\r\n <thead>\r\n <tr>\r\n <th align="left" width="30%">Styles</th>\r\n <th align="left" width="40%">Colors</th>\r\n <th align="center" width="30%">Combinable</th>\r\n </tr>\r\n </thead>\r\n <tbody>\r\n <tr class="odd">\r\n <td class="bold">rounded</td>\r\n <td>white (default), grey</td>\r\n <td align="center">Badges/Icons</td>\r\n </tr>\r\n <tr class="even">\r\n <td class="bold">header</td>\r\n <td>white (default), grey</td>\r\n <td align="center">Badges/Icons</td>\r\n </tr>\r\n <tr class="odd">\r\n <td class="bold">chrome</td>\r\n <td>white (default), black, blue, green, orange</td>\r\n <td align="center">Badges/Icons</td>\r\n </tr>\r\n <tr class="even">\r\n <td class="bold">tab</td>\r\n <td>-</td>\r\n <td align="center">Icons</td>\r\n </tr>\r\n <tr class="odd">\r\n <td class="bold">polaroid, postit, line</td>\r\n <td>-</td>\r\n <td align="center">-</td>\r\n </tr>\r\n </tbody>\r\n</table>\r\n\r\n<table cellspacing="0" cellpadding="0" border="0" class="listing">\r\n <thead>\r\n <tr>\r\n <th align="left" width="25%">Extras</th>\r\n <th align="left" width="75%">Variations</th>\r\n </tr>\r\n </thead>\r\n <tbody>\r\n <tr class="odd">\r\n <td class="bold">Badges</td>\r\n <td>hot, new, top, pick</td>\r\n </tr>\r\n <tr class="even">\r\n <td class="bold">Icons</td>\r\n <td>download, users, feed, twitter, mail, message, shopping, lock</td>\r\n </tr>\r\n </tbody>\r\n</table>', '', 1, 5, 0, 34, '2007-12-19 05:00:00', 62, '', '2009-07-01 13:40:10', 62, 0, '0000-00-00 00:00:00', '2007-12-19 05:00:00', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 25, 0, 2, '', '', 0, 61, 'robots=\nauthor='),
  335. (59, 'ZOO', 'zoo', '', '<p>\r\n<a rel="shadowbox;width=872;height=480" href="http://zoo.yootheme.com/images/stories/videos/zoo_video_tour.flv" style="float: right; display: block; margin-left: 10px;">\r\n<img height="100" width="220" alt="Take the video tour on the ZOO!" title="Take the video tour on the ZOO!" src="images/yootheme/zoo_video_tour.png"/>\r\n</a>The ZOO extension is a very versatile catalog system for Joomla which allows you to create different catalogs for all purposes. It comes with a comprehensive content construction kit (CCK) which gives you the ability to create your very own custom content types.\r\n</p>\r\n\r\n<p class="readmore"><a href="http://zoo.yootheme.com/" class="readmore" target="_blank">Read more...</a></p>\r\n\r\n<h2>Catalog Templates</h2>\r\n\r\n<p>The Pro Edition of the ZOO comes with additional templates for different kinds of catalogs. In this context catalogs can also mean applications: Most common Joomla components are at the bottom catalogs with a specific item type. For example a blog is a catalog with articles and a download archive is a catalog with downloadable items.</p>\r\n\r\n<p>With the ZOO you can achieve the same functionality as of many Joomla extensions and even more. To get you started right away we created additional templates with pre-built types for the ZOO Pro Edition. They are designed for specific puposes like a personal blog or a download archive. All these templates are ready to use. That means, with the ZOO Pro Edition you are only a few clicks away from getting your new catalog online without worrying too much about technical details.</p>\r\n\r\n<p class="readmore"><a href="http://zoo.yootheme.com/catalog-templates" class="readmore" target="_blank">Read more...</a></p>\r\n\r\n<h2>Content Construction Kit</h2>\r\n\r\n<p>One of the ZOO''s key features is a Content Construction Kit (CCK) that gives you the ability to create your very own custom content types. For each custom content type you create you can select the exact elements the type should consist of, like text, images or a file download. In one type you can use any kind of element as often as you want, in any combination. You can also add and remove elements from a custom type at any time, even if you already created items of that type. The elements are completely pluggable and YOOtheme will continually extend the current set of elements.</p>\r\n\r\n<p class="readmore"><a href="http://zoo.yootheme.com/cck" class="readmore" target="_blank">Read more...</a></p>', '', 1, 5, 0, 34, '2009-07-01 18:40:31', 62, '', '2009-07-01 19:32:13', 62, 0, '0000-00-00 00:00:00', '2009-07-01 18:40:31', '0000-00-00 00:00:00', '', '', 'show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 6, 0, 1, '', '', 0, 25, 'robots=\nauthor=');
  336.  
  337. -- --------------------------------------------------------
  338.  
  339. --
  340. -- Table structure for table `#__content_frontpage`
  341. --
  342.  
  343. DROP TABLE IF EXISTS `#__content_frontpage`;
  344. CREATE TABLE IF NOT EXISTS `#__content_frontpage` (
  345. `content_id` int(11) NOT NULL DEFAULT '0',
  346. `ordering` int(11) NOT NULL DEFAULT '0',
  347. PRIMARY KEY (`content_id`)
  348. ) TYPE=MyISAM;
  349.  
  350. --
  351. -- Dumping data for table `#__content_frontpage`
  352. --
  353.  
  354. INSERT INTO `#__content_frontpage` (`content_id`, `ordering`) VALUES
  355. (23, 6),
  356. (5, 5),
  357. (1, 1),
  358. (27, 4),
  359. (19, 2),
  360. (18, 3);
  361.  
  362. -- --------------------------------------------------------
  363.  
  364. --
  365. -- Table structure for table `#__content_rating`
  366. --
  367.  
  368. DROP TABLE IF EXISTS `#__content_rating`;
  369. CREATE TABLE IF NOT EXISTS `#__content_rating` (
  370. `content_id` int(11) NOT NULL DEFAULT '0',
  371. `rating_sum` int(11) unsigned NOT NULL DEFAULT '0',
  372. `rating_count` int(11) unsigned NOT NULL DEFAULT '0',
  373. `lastip` varchar(150) NOT NULL DEFAULT '',
  374. PRIMARY KEY (`content_id`)
  375. ) TYPE=MyISAM;
  376.  
  377. --
  378. -- Dumping data for table `#__content_rating`
  379. --
  380.  
  381.  
  382. -- --------------------------------------------------------
  383.  
  384. --
  385. -- Table structure for table `#__core_acl_aro`
  386. --
  387.  
  388. DROP TABLE IF EXISTS `#__core_acl_aro`;
  389. CREATE TABLE IF NOT EXISTS `#__core_acl_aro` (
  390. `id` int(11) NOT NULL AUTO_INCREMENT,
  391. `section_value` varchar(240) NOT NULL DEFAULT '0',
  392. `value` varchar(240) NOT NULL DEFAULT '',
  393. `order_value` int(11) NOT NULL DEFAULT '0',
  394. `name` varchar(255) NOT NULL DEFAULT '',
  395. `hidden` int(11) NOT NULL DEFAULT '0',
  396. PRIMARY KEY (`id`),
  397. UNIQUE KEY `__section_value_value_aro` (`section_value`(100),`value`(100)),
  398. KEY `#__gacl_hidden_aro` (`hidden`)
  399. ) TYPE=MyISAM AUTO_INCREMENT=11 ;
  400.  
  401.  
  402. -- --------------------------------------------------------
  403.  
  404. --
  405. -- Table structure for table `#__core_acl_aro_groups`
  406. --
  407.  
  408. DROP TABLE IF EXISTS `#__core_acl_aro_groups`;
  409. CREATE TABLE IF NOT EXISTS `#__core_acl_aro_groups` (
  410. `id` int(11) NOT NULL AUTO_INCREMENT,
  411. `parent_id` int(11) NOT NULL DEFAULT '0',
  412. `name` varchar(255) NOT NULL DEFAULT '',
  413. `lft` int(11) NOT NULL DEFAULT '0',
  414. `rgt` int(11) NOT NULL DEFAULT '0',
  415. `value` varchar(255) NOT NULL DEFAULT '',
  416. PRIMARY KEY (`id`),
  417. KEY `#__gacl_parent_id_aro_groups` (`parent_id`),
  418. KEY `#__gacl_lft_rgt_aro_groups` (`lft`,`rgt`)
  419. ) TYPE=MyISAM AUTO_INCREMENT=31 ;
  420.  
  421. --
  422. -- Dumping data for table `#__core_acl_aro_groups`
  423. --
  424.  
  425. INSERT INTO `#__core_acl_aro_groups` (`id`, `parent_id`, `name`, `lft`, `rgt`, `value`) VALUES
  426. (17, 0, 'ROOT', 1, 22, 'ROOT'),
  427. (28, 17, 'USERS', 2, 21, 'USERS'),
  428. (29, 28, 'Public Frontend', 3, 12, 'Public Frontend'),
  429. (18, 29, 'Registered', 4, 11, 'Registered'),
  430. (19, 18, 'Author', 5, 10, 'Author'),
  431. (20, 19, 'Editor', 6, 9, 'Editor'),
  432. (21, 20, 'Publisher', 7, 8, 'Publisher'),
  433. (30, 28, 'Public Backend', 13, 20, 'Public Backend'),
  434. (23, 30, 'Manager', 14, 19, 'Manager'),
  435. (24, 23, 'Administrator', 15, 18, 'Administrator'),
  436. (25, 24, 'Super Administrator', 16, 17, 'Super Administrator');
  437.  
  438. -- --------------------------------------------------------
  439.  
  440. --
  441. -- Table structure for table `#__core_acl_aro_map`
  442. --
  443.  
  444. DROP TABLE IF EXISTS `#__core_acl_aro_map`;
  445. CREATE TABLE IF NOT EXISTS `#__core_acl_aro_map` (
  446. `acl_id` int(11) NOT NULL DEFAULT '0',
  447. `section_value` varchar(230) NOT NULL DEFAULT '0',
  448. `value` varchar(100) NOT NULL,
  449. PRIMARY KEY (`acl_id`,`section_value`,`value`)
  450. ) TYPE=MyISAM;
  451.  
  452. --
  453. -- Dumping data for table `#__core_acl_aro_map`
  454. --
  455.  
  456.  
  457. -- --------------------------------------------------------
  458.  
  459. --
  460. -- Table structure for table `#__core_acl_aro_sections`
  461. --
  462.  
  463. DROP TABLE IF EXISTS `#__core_acl_aro_sections`;
  464. CREATE TABLE IF NOT EXISTS `#__core_acl_aro_sections` (
  465. `section_id` int(11) NOT NULL AUTO_INCREMENT,
  466. `value` varchar(230) NOT NULL DEFAULT '',
  467. `order_value` int(11) NOT NULL DEFAULT '0',
  468. `name` varchar(230) NOT NULL DEFAULT '',
  469. `hidden` int(11) NOT NULL DEFAULT '0',
  470. PRIMARY KEY (`section_id`),
  471. UNIQUE KEY `#__gacl_value_aro_sections` (`value`),
  472. KEY `#__gacl_hidden_aro_sections` (`hidden`)
  473. ) TYPE=MyISAM AUTO_INCREMENT=11 ;
  474.  
  475. --
  476. -- Dumping data for table `#__core_acl_aro_sections`
  477. --
  478.  
  479. INSERT INTO `#__core_acl_aro_sections` (`section_id`, `value`, `order_value`, `name`, `hidden`) VALUES
  480. (10, 'users', 1, 'Users', 0);
  481.  
  482. -- --------------------------------------------------------
  483.  
  484. --
  485. -- Table structure for table `#__core_acl_groups_aro_map`
  486. --
  487.  
  488. DROP TABLE IF EXISTS `#__core_acl_groups_aro_map`;
  489. CREATE TABLE IF NOT EXISTS `#__core_acl_groups_aro_map` (
  490. `group_id` int(11) NOT NULL DEFAULT '0',
  491. `section_value` varchar(240) NOT NULL DEFAULT '',
  492. `aro_id` int(11) NOT NULL DEFAULT '0',
  493. UNIQUE KEY `group_id_aro_id_groups_aro_map` (`group_id`,`section_value`,`aro_id`)
  494. ) TYPE=MyISAM;
  495.  
  496.  
  497. -- --------------------------------------------------------
  498.  
  499. --
  500. -- Table structure for table `#__core_log_items`
  501. --
  502.  
  503. DROP TABLE IF EXISTS `#__core_log_items`;
  504. CREATE TABLE IF NOT EXISTS `#__core_log_items` (
  505. `time_stamp` date NOT NULL DEFAULT '0000-00-00',
  506. `item_table` varchar(50) NOT NULL DEFAULT '',
  507. `item_id` int(11) unsigned NOT NULL DEFAULT '0',
  508. `hits` int(11) unsigned NOT NULL DEFAULT '0'
  509. ) TYPE=MyISAM;
  510.  
  511. --
  512. -- Dumping data for table `#__core_log_items`
  513. --
  514.  
  515.  
  516. -- --------------------------------------------------------
  517.  
  518. --
  519. -- Table structure for table `#__core_log_searches`
  520. --
  521.  
  522. DROP TABLE IF EXISTS `#__core_log_searches`;
  523. CREATE TABLE IF NOT EXISTS `#__core_log_searches` (
  524. `search_term` text NOT NULL,
  525. `hits` int(11) unsigned NOT NULL DEFAULT '0'
  526. ) TYPE=MyISAM;
  527.  
  528. --
  529. -- Dumping data for table `#__core_log_searches`
  530. --
  531.  
  532.  
  533. -- --------------------------------------------------------
  534.  
  535. --
  536. -- Table structure for table `#__groups`
  537. --
  538.  
  539. DROP TABLE IF EXISTS `#__groups`;
  540. CREATE TABLE IF NOT EXISTS `#__groups` (
  541. `id` tinyint(3) unsigned NOT NULL DEFAULT '0',
  542. `name` varchar(150) NOT NULL DEFAULT '',
  543. PRIMARY KEY (`id`)
  544. ) TYPE=MyISAM;
  545.  
  546. --
  547. -- Dumping data for table `#__groups`
  548. --
  549.  
  550. INSERT INTO `#__groups` (`id`, `name`) VALUES
  551. (0, 'Public'),
  552. (1, 'Registered'),
  553. (2, 'Special');
  554.  
  555. -- --------------------------------------------------------
  556.  
  557. --
  558. -- Table structure for table `#__menu`
  559. --
  560.  
  561. DROP TABLE IF EXISTS `#__menu`;
  562. CREATE TABLE IF NOT EXISTS `#__menu` (
  563. `id` int(11) NOT NULL AUTO_INCREMENT,
  564. `menutype` varchar(225) DEFAULT NULL,
  565. `name` text,
  566. `alias` varchar(255) NOT NULL DEFAULT '',
  567. `link` text,
  568. `type` varchar(150) NOT NULL DEFAULT '',
  569. `published` tinyint(1) NOT NULL DEFAULT '0',
  570. `parent` int(11) unsigned NOT NULL DEFAULT '0',
  571. `componentid` int(11) unsigned NOT NULL DEFAULT '0',
  572. `sublevel` int(11) DEFAULT '0',
  573. `ordering` int(11) DEFAULT '0',
  574. `checked_out` int(11) unsigned NOT NULL DEFAULT '0',
  575. `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  576. `pollid` int(11) NOT NULL DEFAULT '0',
  577. `browserNav` tinyint(4) DEFAULT '0',
  578. `access` tinyint(3) unsigned NOT NULL DEFAULT '0',
  579. `utaccess` tinyint(3) unsigned NOT NULL DEFAULT '0',
  580. `params` text NOT NULL,
  581. `lft` int(11) unsigned NOT NULL DEFAULT '0',
  582. `rgt` int(11) unsigned NOT NULL DEFAULT '0',
  583. `home` int(1) unsigned NOT NULL DEFAULT '0',
  584. PRIMARY KEY (`id`),
  585. KEY `componentid` (`componentid`,`menutype`,`published`,`access`),
  586. KEY `menutype` (`menutype`)
  587. ) TYPE=MyISAM AUTO_INCREMENT=175 ;
  588.  
  589. --
  590. -- Dumping data for table `#__menu`
  591. --
  592.  
  593. INSERT INTO `#__menu` (`id`, `menutype`, `name`, `alias`, `link`, `type`, `published`, `parent`, `componentid`, `sublevel`, `ordering`, `checked_out`, `checked_out_time`, `pollid`, `browserNav`, `access`, `utaccess`, `params`, `lft`, `rgt`, `home`) VALUES
  594. (1, 'mainmenu', 'Joomla || subline possible', 'joomla', 'index.php?option=com_content&view=frontpage', 'component', 1, 0, 20, 0, 4, 0, '0000-00-00 00:00:00', 0, 0, 0, 3, 'num_leading_articles=1\nnum_intro_articles=6\nnum_columns=1\nnum_links=4\norderby_pri=\norderby_sec=front\nmulti_column_order=1\nshow_pagination=2\nshow_pagination_results=1\nshow_feed_link=1\nshow_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=Welcome to the Frontpage\nshow_page_title=0\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  595. (135, 'mainmenu', 'Category List', 'category-list', 'index.php?option=com_content&view=category&id=29', 'component', 1, 156, 20, 2, 4, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'display_num=10\nshow_headings=1\nshow_date=1\ndate_format=\nfilter=1\nfilter_type=title\norderby_sec=\nshow_pagination=1\nshow_pagination_limit=1\nshow_feed_link=1\nshow_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  596. (136, 'mainmenu', 'Section List', 'section-list', 'index.php?option=com_content&view=section&id=4', 'component', 1, 156, 20, 2, 3, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_description=1\nshow_description_image=1\nshow_categories=1\nshow_empty_categories=0\nshow_cat_num_articles=1\nshow_category_description=1\norderby=\norderby_sec=\nshow_feed_link=1\nshow_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  597. (11, 'othermenu', 'Joomla! Home', 'joomla-home', 'http://www.joomla.org', 'url', 0, 0, 0, 0, 1, 0, '0000-00-00 00:00:00', 0, 0, 0, 3, 'menu_image=-1\n\n', 0, 0, 0),
  598. (12, 'othermenu', 'Joomla! Forums', 'joomla-forums', 'http://forum.joomla.org', 'url', 0, 0, 0, 0, 2, 0, '0000-00-00 00:00:00', 0, 0, 0, 3, 'menu_image=-1\n\n', 0, 0, 0),
  599. (13, 'othermenu', 'Joomla! Help', 'joomla-help', 'http://help.joomla.org', 'url', 0, 0, 0, 0, 3, 0, '0000-00-00 00:00:00', 0, 0, 0, 3, 'menu_image=-1\n\n', 0, 0, 0),
  600. (20, 'usermenu', 'Your Details', 'your-details', 'index.php?option=com_user&view=user&task=edit', 'component', 1, 0, 14, 0, 1, 0, '0000-00-00 00:00:00', 0, 0, 1, 3, '', 0, 0, 0),
  601. (24, 'usermenu', 'Logout', 'logout', 'index.php?option=com_user&view=login', 'component', 1, 0, 14, 0, 4, 0, '0000-00-00 00:00:00', 0, 0, 1, 3, '', 0, 0, 0),
  602. (90, 'othermenu', 'Level 2', 'level-2', 'index.php?option=com_content&view=article&id=48', 'component', 0, 89, 20, 1, 1, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  603. (134, 'mainmenu', 'Section Blog', 'section-blog', 'index.php?option=com_content&view=section&layout=blog&id=4', 'component', 1, 156, 20, 2, 1, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_description=1\nshow_description_image=1\nnum_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\norderby_pri=\norderby_sec=order\nmulti_column_order=1\nshow_pagination=2\nshow_pagination_results=1\nshow_feed_link=1\nshow_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=1\nlink_section=\nshow_category=1\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  604. (174, 'mainmenu', 'Blog || Personal Blog for Joomla', 'blog-personal-blog-for-joomla', 'index.php?option=com_zoo&view=category&layout=category', 'component', -2, 0, 34, 1, 0, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'catalog_category=2:0\ntemplate=blog_classic\nsub_categories=1\nalpha_index=2\nitem_count=2\ncategory_cols=1\nitem_cols=1\nitems_per_page=5\nitem_order=rdate\nshow_feed_link=1\nfeed_title=\nalternate_feed_link=\npage_title=\nshow_page_title=1\npageclass_sfx=template_width-820\nmenu_image=icon__zoo_blog.png\nsecure=0\n\n', 0, 0, 0),
  605. (148, 'mainmenu', 'Combs Black', 'combs-black', 'index.php?option=com_content&view=article&id=44&Itemid=53&yt_color=combsblack', 'url', 1, 53, 0, 1, 6, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=icon_combsblack.png\n\n', 0, 0, 0),
  606. (171, 'mainmenu', 'ZOO', 'zoo', 'index.php?option=com_content&view=article&id=59', 'component', 1, 0, 20, 0, 3, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  607. (86, 'mainmenu', 'Separator || separator', 'separator', '', 'separator', 0, 0, 0, 0, 5, 62, '2008-07-08 10:39:29', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
  608. (87, 'mainmenu', 'Level 2', 'level-2', 'index.php?option=com_content&view=article&id=48', 'component', 1, 86, 20, 1, 1, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=0\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  609. (88, 'mainmenu', 'Level 2', 'level-2', 'index.php?option=com_content&view=article&id=48', 'component', 1, 86, 20, 1, 2, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=0\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  610. (89, 'othermenu', 'Sample Levels', 'deeper-levels-examples', 'index.php?option=com_content&view=article&id=48', 'component', 0, 0, 20, 0, 4, 62, '2007-12-21 16:40:26', 0, 0, 0, 0, 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  611. (48, 'mainmenu', 'Web Links', 'web-links', 'index.php?option=com_weblinks&view=categories', 'component', 1, 158, 4, 2, 1, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'image=-1\nimage_align=right\nshow_feed_link=1\nshow_comp_description=1\ncomp_description=\nshow_link_hits=1\nshow_link_description=1\nshow_other_cats=1\nshow_headings=1\ntarget=\nlink_icons=\npage_title=Weblinks\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  612. (49, 'mainmenu', 'News Feeds', 'news-feeds', 'index.php?option=com_newsfeeds&view=categories', 'component', 1, 158, 11, 2, 3, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_limit=1\nshow_comp_description=1\ncomp_description=\nimage=-1\nimage_align=right\nshow_headings=1\nshow_name=1\nshow_articles=1\nshow_link=1\nshow_cat_description=1\nshow_cat_items=1\nshow_feed_image=1\nshow_feed_description=1\nshow_item_description=1\nfeed_word_count=0\npage_title=Newsfeeds\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  613. (145, 'mainmenu', 'Category Blog', 'category-blog', 'index.php?option=com_content&view=category&layout=blog&id=29', 'component', 1, 156, 20, 2, 2, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_description=1\nshow_description_image=1\nnum_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\norderby_pri=\norderby_sec=order\nmulti_column_order=1\nshow_pagination=2\nshow_pagination_results=1\nshow_feed_link=1\nshow_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=1\nlink_section=\nshow_category=1\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  614. (51, 'usermenu', 'Submit an Article', 'submit-an-article', 'index.php?option=com_content&view=article&layout=form', 'component', 1, 0, 20, 0, 2, 0, '0000-00-00 00:00:00', 0, 0, 1, 0, '', 0, 0, 0),
  615. (52, 'usermenu', 'Submit a Web Link', 'submit-a-web-link', 'index.php?option=com_weblinks&view=weblink&layout=form', 'component', 1, 0, 4, 0, 3, 0, '0000-00-00 00:00:00', 0, 0, 1, 0, '', 0, 0, 0),
  616. (53, 'mainmenu', 'Home', 'home', 'index.php?option=com_content&view=article&id=44', 'component', 1, 0, 20, 0, 1, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=0\npageclass_sfx=columns-2\nmenu_image=-1\nsecure=0\n\n', 0, 0, 1),
  617. (54, 'mainmenu', 'Template', 'template', 'index.php?option=com_content&view=article&id=45', 'component', 1, 0, 20, 0, 2, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=0\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  618. (55, 'mainmenu', 'Typography', 'typography', 'index.php?option=com_content&view=article&id=46', 'component', 1, 56, 20, 2, 2, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=0\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  619. (56, 'mainmenu', 'Design || Style and Module Guide', 'design-style-and-module-guide', '', 'separator', 1, 54, 0, 1, 2, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
  620. (156, 'mainmenu', 'Content || All com_content views', 'content--all-comcontent-views', '', 'separator', 1, 1, 0, 1, 1, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
  621. (157, 'mainmenu', 'Contact || All com_contact views', 'contact--all-comcontact-views', '', 'separator', 1, 1, 0, 1, 2, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
  622. (158, 'mainmenu', 'Other Components || Remaining component views', 'other-components-remaining-component-views', '', 'separator', 1, 1, 0, 1, 3, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
  623. (58, 'mainmenu', 'Module Variations', 'module-variations', 'index.php?option=com_content&view=article&id=58', 'component', 1, 56, 20, 2, 1, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=0\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  624. (172, 'mainmenu', 'Product || Product Catalog for Joomla', 'product-product-catalog-for-joomla', 'index.php?option=com_zoo&view=category&layout=category', 'component', -2, 0, 34, 1, 0, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'catalog_category=1:0\ntemplate=product\nsub_categories=1\nalpha_index=2\nitem_count=2\ncategory_cols=4\nitem_cols=2\nitems_per_page=10\nitem_order=alpha\nshow_feed_link=1\nfeed_title=\nalternate_feed_link=\npage_title=\nshow_page_title=1\npageclass_sfx=template_width-820\nmenu_image=icon__zoo_product.png\nsecure=0\n\n', 0, 0, 0),
  625. (173, 'mainmenu', 'Download || Download Archive for Joomla', 'download-download-archive-for-joomla', 'index.php?option=com_zoo&view=category&layout=category', 'component', -2, 0, 34, 1, 0, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'catalog_category=3:0\ntemplate=download\nsub_categories=1\nalpha_index=2\nitem_count=2\ncategory_cols=4\nitem_cols=2\nitems_per_page=15\nitem_order=alpha\nshow_feed_link=1\nfeed_title=\nalternate_feed_link=\npage_title=\nshow_page_title=1\npageclass_sfx=template_width-820\nmenu_image=icon__zoo_download.png\nsecure=0\n\n', 0, 0, 0),
  626. (164, 'mainmenu', 'Bar Orange', 'bar-orange', 'index.php?option=com_content&view=article&id=44&Itemid=53&yt_color=barorange', 'url', 1, 53, 0, 1, 9, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=icon_barorange.png\n\n', 0, 0, 0),
  627. (165, 'mainmenu', 'Bar Green', 'bar-green', 'index.php?option=com_content&view=article&id=44&Itemid=53&yt_color=bargreen', 'url', 1, 53, 0, 1, 10, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=icon_bargreen.png\n\n', 0, 0, 0),
  628. (91, 'othermenu', 'Level 2', 'level-2', 'index.php?option=com_content&view=article&id=48', 'component', 0, 89, 20, 1, 2, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  629. (92, 'othermenu', 'Level 3', 'level-3', 'index.php?option=com_content&view=article&id=48', 'component', 0, 91, 20, 2, 1, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  630. (93, 'othermenu', 'Level 4', 'level-4', 'index.php?option=com_content&view=article&id=48', 'component', 0, 92, 20, 3, 1, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  631. (94, 'othermenu', 'Level 2', 'level-2', 'index.php?option=com_content&view=article&id=48', 'component', 0, 89, 20, 1, 3, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  632. (95, 'othermenu', 'Accordion A', 'accordion-a', '', 'separator', 1, 0, 0, 0, 5, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
  633. (96, 'othermenu', 'Level 2', 'level-2', 'index.php?option=com_content&view=article&id=48', 'component', 1, 95, 20, 1, 1, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  634. (97, 'othermenu', 'Level 2', 'level-2', 'index.php?option=com_content&view=article&id=48', 'component', 1, 95, 20, 1, 2, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  635. (98, 'othermenu', 'Level 2', 'level-2', 'index.php?option=com_content&view=article&id=48', 'component', 1, 95, 20, 1, 3, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  636. (99, 'othermenu', 'Accordion B', 'accordion-b', '', 'separator', 1, 0, 0, 0, 6, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
  637. (100, 'othermenu', 'Level 2', 'level-2', 'index.php?option=com_content&view=article&id=48', 'component', 1, 99, 20, 1, 1, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  638. (101, 'othermenu', 'Level 2', 'level-2', 'index.php?option=com_content&view=article&id=48', 'component', 1, 99, 20, 1, 2, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  639. (107, 'mainmenu', 'Level 2', 'level-2', '', 'separator', 1, 86, 0, 1, 3, 62, '2008-07-10 15:21:21', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
  640. (108, 'mainmenu', 'Level 3', 'level-3', 'index.php?option=com_content&view=article&id=48', 'component', 1, 107, 20, 2, 1, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=0\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  641. (114, 'mainmenu', 'Wave Blue', 'wave-blue', 'index.php?option=com_content&view=article&id=44&Itemid=53&yt_color=waveblue', 'url', 1, 53, 0, 1, 2, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=icon_waveblue.png\n\n', 0, 0, 0),
  642. (118, 'mainmenu', 'Combs Blue', 'combs-blue', 'index.php?option=com_content&view=article&id=44&Itemid=53&yt_color=combsblue', 'url', 1, 53, 0, 1, 5, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=icon_combsblue.png\n\n', 0, 0, 0),
  643. (123, 'topmenu', 'News', 'news', 'index.php?option=com_content&view=frontpage&Itemid=1', 'url', 1, 0, 0, 0, 3, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
  644. (124, 'topmenu', 'Features', 'features', 'index.php?option=com_content&view=article&id=18:joomla-features&catid=29:the-cms&Itemid=145', 'url', 1, 0, 0, 0, 2, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
  645. (125, 'topmenu', 'About Joomla!', 'about-joomla', 'index.php?option=com_content&view=article&id=1:welcome-to-joomla&catid=29:the-cms&Itemid=145', 'url', 1, 0, 0, 0, 1, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
  646. (130, 'mainmenu', 'White', 'white', 'index.php?option=com_content&view=article&id=44&Itemid=53&yt_color=default', 'url', 1, 53, 0, 1, 1, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=icon_white.png\n\n', 0, 0, 0),
  647. (138, 'mainmenu', 'Poll', 'poll', 'index.php?option=com_poll&view=poll&id=14', 'component', 1, 158, 10, 2, 4, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'page_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  648. (140, 'mainmenu', 'Contact Category', 'contact-category', 'index.php?option=com_contact&view=category&catid=12', 'component', 1, 157, 7, 2, 1, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'display_num=20\nimage=clock.jpg\nimage_align=left\nshow_limit=1\nshow_feed_link=1\ncontact_icons=\nicon_address=\nicon_email=\nicon_telephone=\nicon_mobile=\nicon_fax=\nicon_misc=\nshow_headings=\nshow_position=\nshow_email=\nshow_telephone=\nshow_mobile=\nshow_fax=\nallow_vcard=\nbanned_email=\nbanned_subject=\nbanned_text=\nvalidate_session=\ncustom_reply=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  649. (141, 'mainmenu', 'Contact Item', 'contact-item', 'index.php?option=com_contact&view=contact&id=1', 'component', 1, 157, 7, 2, 2, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_contact_list=1\nshow_category_crumb=1\ncontact_icons=\nicon_address=\nicon_email=\nicon_telephone=\nicon_mobile=\nicon_fax=\nicon_misc=\nshow_headings=\nshow_position=\nshow_email=\nshow_telephone=\nshow_mobile=\nshow_fax=\nallow_vcard=\nbanned_email=\nbanned_subject=\nbanned_text=\nvalidate_session=\ncustom_reply=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  650. (142, 'mainmenu', 'Login', 'login', 'index.php?option=com_user&view=login', 'component', 1, 158, 14, 2, 2, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_login_title=1\nheader_login=\nlogin=\nlogin_message=1\ndescription_login=1\ndescription_login_text=\nimage_login=\nimage_login_align=right\nshow_logout_title=1\nheader_logout=\nlogout=\nlogout_message=1\ndescription_logout=1\ndescription_logout_text=\nimage_logout=articles.jpg\npage_title=\nshow_page_title=0\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  651. (147, 'mainmenu', 'Wave Yellow', 'wave-yellow', 'index.php?option=com_content&view=article&id=44&Itemid=53&yt_color=waveyellow', 'url', 1, 53, 0, 1, 4, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=icon_waveyellow.png\n\n', 0, 0, 0),
  652. (146, 'mainmenu', 'Wave Green', 'wave-green', 'index.php?option=com_content&view=article&id=44&Itemid=53&yt_color=wavegreen', 'url', 1, 53, 0, 1, 3, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=icon_wavegreen.png\n\n', 0, 0, 0),
  653. (166, 'frontpagemenu', 'YOOtheme', 'yootheme', 'http://www.yootheme.com', 'url', 1, 0, 0, 0, 1, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
  654. (167, 'frontpagemenu', 'YOOtools', 'yootools', 'http://tools.yootheme.com', 'url', 1, 0, 0, 0, 2, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
  655. (168, 'frontpagemenu', 'ZOO', 'zoo', 'http://zoo.yootheme.com', 'url', 1, 0, 0, 0, 3, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
  656. (169, 'frontpagemenu', 'Teamlog', 'teamlog', 'http://teamlog.yootheme.com', 'url', 1, 0, 0, 0, 4, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
  657. (170, 'frontpagemenu', 'YOOtorials', 'yootorials', 'http://tutorials.yootheme.com', 'url', 1, 0, 0, 0, 5, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
  658. (152, 'mainmenu', 'Warp || Slick Template Framework', 'warp-slick-template-framework', 'index.php?option=com_content&view=article&id=56', 'component', 1, 54, 20, 1, 1, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  659. (153, 'mainmenu', 'Menu System', 'menu-system', 'index.php?option=com_content&view=article&id=57', 'component', 1, 152, 20, 2, 1, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  660. (154, 'mainmenu', 'Module System', 'module-system', 'index.php?option=com_content&view=article&id=47', 'component', 1, 152, 20, 2, 2, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
  661. (162, 'mainmenu', 'Combs Red', 'combs-red', 'index.php?option=com_content&view=article&id=44&Itemid=53&yt_color=combsred', 'url', 1, 53, 0, 1, 7, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=icon_combsred.png\n\n', 0, 0, 0),
  662. (161, 'mainmenu', 'Bar Blue', 'bar-blue', 'index.php?option=com_content&view=article&id=44&Itemid=53&yt_color=barblue', 'url', 1, 53, 0, 1, 8, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=icon_barblue.png\n\n', 0, 0, 0);
  663.  
  664. -- --------------------------------------------------------
  665.  
  666. --
  667. -- Table structure for table `#__menu_types`
  668. --
  669.  
  670. DROP TABLE IF EXISTS `#__menu_types`;
  671. CREATE TABLE IF NOT EXISTS `#__menu_types` (
  672. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  673. `menutype` varchar(225) NOT NULL DEFAULT '',
  674. `title` text NOT NULL,
  675. `description` text NOT NULL,
  676. PRIMARY KEY (`id`),
  677. UNIQUE KEY `menutype` (`menutype`)
  678. ) TYPE=MyISAM AUTO_INCREMENT=6 ;
  679.  
  680. --
  681. -- Dumping data for table `#__menu_types`
  682. --
  683.  
  684. INSERT INTO `#__menu_types` (`id`, `menutype`, `title`, `description`) VALUES
  685. (1, 'mainmenu', 'Main Menu', 'The main menu for the site'),
  686. (2, 'usermenu', 'User Menu', 'A Menu for logged in Users'),
  687. (3, 'topmenu', 'Top Menu', 'Top level navigation'),
  688. (4, 'othermenu', 'Other Menu', 'Additional links'),
  689. (5, 'frontpagemenu', 'Frontpage Menu', '');
  690.  
  691. -- --------------------------------------------------------
  692.  
  693. --
  694. -- Table structure for table `#__messages`
  695. --
  696.  
  697. DROP TABLE IF EXISTS `#__messages`;
  698. CREATE TABLE IF NOT EXISTS `#__messages` (
  699. `message_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  700. `user_id_from` int(10) unsigned NOT NULL DEFAULT '0',
  701. `user_id_to` int(10) unsigned NOT NULL DEFAULT '0',
  702. `folder_id` int(10) unsigned NOT NULL DEFAULT '0',
  703. `date_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  704. `state` int(11) NOT NULL DEFAULT '0',
  705. `priority` int(1) unsigned NOT NULL DEFAULT '0',
  706. `subject` text NOT NULL,
  707. `message` text NOT NULL,
  708. PRIMARY KEY (`message_id`),
  709. KEY `useridto_state` (`user_id_to`,`state`)
  710. ) TYPE=MyISAM AUTO_INCREMENT=1 ;
  711.  
  712. --
  713. -- Dumping data for table `#__messages`
  714. --
  715.  
  716.  
  717. -- --------------------------------------------------------
  718.  
  719. --
  720. -- Table structure for table `#__messages_cfg`
  721. --
  722.  
  723. DROP TABLE IF EXISTS `#__messages_cfg`;
  724. CREATE TABLE IF NOT EXISTS `#__messages_cfg` (
  725. `user_id` int(10) unsigned NOT NULL DEFAULT '0',
  726. `cfg_name` text NOT NULL,
  727. `cfg_value` text NOT NULL,
  728. UNIQUE KEY `idx_user_var_name` (`user_id`,`cfg_name`(100))
  729. ) TYPE=MyISAM;
  730.  
  731. --
  732. -- Dumping data for table `#__messages_cfg`
  733. --
  734.  
  735.  
  736. -- --------------------------------------------------------
  737.  
  738. --
  739. -- Table structure for table `#__migration_backlinks`
  740. --
  741.  
  742. DROP TABLE IF EXISTS `#__migration_backlinks`;
  743. CREATE TABLE IF NOT EXISTS `#__migration_backlinks` (
  744. `itemid` int(11) NOT NULL,
  745. `name` varchar(100) NOT NULL,
  746. `url` text NOT NULL,
  747. `sefurl` text NOT NULL,
  748. `newurl` text NOT NULL,
  749. PRIMARY KEY (`itemid`)
  750. ) TYPE=MyISAM;
  751.  
  752. --
  753. -- Dumping data for table `#__migration_backlinks`
  754. --
  755.  
  756.  
  757. -- --------------------------------------------------------
  758.  
  759. --
  760. -- Table structure for table `#__modules`
  761. --
  762.  
  763. DROP TABLE IF EXISTS `#__modules`;
  764. CREATE TABLE IF NOT EXISTS `#__modules` (
  765. `id` int(11) NOT NULL AUTO_INCREMENT,
  766. `title` text NOT NULL,
  767. `content` text NOT NULL,
  768. `ordering` int(11) NOT NULL DEFAULT '0',
  769. `position` varchar(150) DEFAULT NULL,
  770. `checked_out` int(11) unsigned NOT NULL DEFAULT '0',
  771. `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  772. `published` tinyint(1) NOT NULL DEFAULT '0',
  773. `module` varchar(150) DEFAULT NULL,
  774. `numnews` int(11) NOT NULL DEFAULT '0',
  775. `access` tinyint(3) unsigned NOT NULL DEFAULT '0',
  776. `showtitle` tinyint(3) unsigned NOT NULL DEFAULT '1',
  777. `params` text NOT NULL,
  778. `iscore` tinyint(4) NOT NULL DEFAULT '0',
  779. `client_id` tinyint(4) NOT NULL DEFAULT '0',
  780. `control` text NOT NULL,
  781. PRIMARY KEY (`id`),
  782. KEY `published` (`published`,`access`),
  783. KEY `newsfeeds` (`module`,`published`)
  784. ) TYPE=MyISAM AUTO_INCREMENT=191 ;
  785.  
  786. --
  787. -- Dumping data for table `#__modules`
  788. --
  789.  
  790. INSERT INTO `#__modules` (`id`, `title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`, `control`) VALUES
  791. (1, 'Main Menu', '', 1, 'menu', 0, '0000-00-00 00:00:00', 1, 'mod_mainmenu', 0, 0, 1, 'menutype=mainmenu\nmenu_style=list\nstartLevel=0\nendLevel=5\nshowAllChildren=1\nwindow_open=\nshow_whitespace=0\ncache=0\ntag_id=\nclass_sfx=dropdown\nmoduleclass_sfx=menu\nmaxdepth=10\nmenu_images=0\nmenu_images_align=0\nmenu_images_link=0\nexpand_menu=0\nactivate_parent=0\nfull_active_id=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=\n\n', 1, 0, ''),
  792. (2, 'Login', '', 1, 'login', 0, '0000-00-00 00:00:00', 1, 'mod_login', 0, 0, 1, '', 1, 1, ''),
  793. (3, 'Popular', '', 3, 'cpanel', 0, '0000-00-00 00:00:00', 1, 'mod_popular', 0, 2, 1, '', 0, 1, ''),
  794. (4, 'Recent added Articles', '', 4, 'cpanel', 0, '0000-00-00 00:00:00', 1, 'mod_latest', 0, 2, 1, 'ordering=c_dsc\nuser_id=0\ncache=0\n\n', 0, 1, ''),
  795. (5, 'Menu Stats', '', 5, 'cpanel', 0, '0000-00-00 00:00:00', 1, 'mod_stats', 0, 2, 1, '', 0, 1, ''),
  796. (6, 'Unread Messages', '', 1, 'header', 0, '0000-00-00 00:00:00', 1, 'mod_unread', 0, 2, 1, '', 1, 1, ''),
  797. (7, 'Online Users', '', 2, 'header', 0, '0000-00-00 00:00:00', 1, 'mod_online', 0, 2, 1, '', 1, 1, ''),
  798. (8, 'Toolbar', '', 1, 'toolbar', 0, '0000-00-00 00:00:00', 1, 'mod_toolbar', 0, 2, 1, '', 1, 1, ''),
  799. (9, 'Quick Icons', '', 1, 'icon', 0, '0000-00-00 00:00:00', 1, 'mod_quickicon', 0, 2, 1, '', 1, 1, ''),
  800. (10, 'Logged in Users', '', 2, 'cpanel', 0, '0000-00-00 00:00:00', 1, 'mod_logged', 0, 2, 1, '', 0, 1, ''),
  801. (11, 'Footer', '', 0, 'footer', 0, '0000-00-00 00:00:00', 1, 'mod_footer', 0, 0, 1, '', 1, 1, ''),
  802. (12, 'Admin Menu', '', 1, 'menu', 0, '0000-00-00 00:00:00', 1, 'mod_menu', 0, 2, 1, '', 0, 1, ''),
  803. (13, 'Admin SubMenu', '', 1, 'submenu', 0, '0000-00-00 00:00:00', 1, 'mod_submenu', 0, 2, 1, '', 0, 1, ''),
  804. (14, 'User Status', '', 1, 'status', 0, '0000-00-00 00:00:00', 1, 'mod_status', 0, 2, 1, '', 0, 1, ''),
  805. (15, 'Title', '', 1, 'title', 0, '0000-00-00 00:00:00', 1, 'mod_title', 0, 2, 1, '', 0, 1, ''),
  806. (16, 'Polls || Vote for your favorite CMS', '', 8, 'left', 0, '0000-00-00 00:00:00', 1, 'mod_poll', 0, 0, 1, 'id=14\nmoduleclass_sfx=icon-users\ncache=1\ncache_time=900\n\n', 0, 0, ''),
  807. (17, 'User Menu', '', 5, 'left', 0, '0000-00-00 00:00:00', 1, 'mod_mainmenu', 0, 1, 1, 'menutype=usermenu\nmenu_style=list\nstartLevel=0\nendLevel=5\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=0\ntag_id=\nclass_sfx=\nmoduleclass_sfx=menu\nmaxdepth=10\nmenu_images=0\nmenu_images_align=0\nmenu_images_link=0\nexpand_menu=0\nactivate_parent=0\nfull_active_id=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=\n\n', 1, 0, ''),
  808. (18, 'Login Form || Login to Member Area', '', 9, 'left', 0, '0000-00-00 00:00:00', 1, 'mod_login', 0, 0, 1, 'cache=0\nmoduleclass_sfx=icon-lock\npretext=\nposttext=\nlogin=\nlogout=\ngreeting=1\nname=0\nusesecure=0\n\n', 1, 0, ''),
  809. (19, 'Latest News', '', 1, 'maintop', 0, '0000-00-00 00:00:00', 1, 'mod_latestnews', 0, 0, 1, 'count=5\nordering=c_dsc\nuser_id=0\nshow_front=1\nsecid=\ncatid=\nmoduleclass_sfx=\ncache=1\ncache_time=900\n\n', 1, 0, ''),
  810. (20, 'Statistics', '', 14, 'left', 0, '0000-00-00 00:00:00', 0, 'mod_stats', 0, 0, 0, 'serverinfo=1\nsiteinfo=1\ncounter=1\nincrease=0\nmoduleclass_sfx=\ncache=0\ncache_time=900\n\n', 0, 0, ''),
  811. (21, 'Who''s Online', '', 6, 'right', 0, '0000-00-00 00:00:00', 1, 'mod_whosonline', 0, 0, 1, 'cache=0\nshowmode=0\nmoduleclass_sfx=icon-users\n\n', 0, 0, ''),
  812. (22, 'Popular', '', 2, 'maintop', 0, '0000-00-00 00:00:00', 1, 'mod_mostread', 0, 0, 1, 'moduleclass_sfx=\nshow_front=1\ncount=5\ncatid=\nsecid=\ncache=1\ncache_time=900\n\n', 0, 0, ''),
  813. (23, 'Archive', '', 15, 'left', 0, '0000-00-00 00:00:00', 0, 'mod_archive', 0, 0, 1, 'count=10\nmoduleclass_sfx=\ncache=1\n\n', 1, 0, ''),
  814. (24, 'Sections', '', 16, 'left', 0, '0000-00-00 00:00:00', 0, 'mod_sections', 0, 0, 1, 'count=5\nmoduleclass_sfx=\ncache=1\ncache_time=900\n\n', 1, 0, ''),
  815. (25, 'Newsflash', '', 1, 'content9', 0, '0000-00-00 00:00:00', 1, 'mod_newsflash', 0, 0, 0, 'catid=49\nlayout=vert\nimage=1\nlink_titles=\nreadmore=1\nitem_title=1\nitems=4\nmoduleclass_sfx=\ncache=0\ncache_time=900\n\n', 0, 0, ''),
  816. (26, 'Related Items', '', 17, 'left', 0, '0000-00-00 00:00:00', 0, 'mod_related_items', 0, 0, 1, '', 0, 0, ''),
  817. (27, 'Search', '', 1, 'search', 0, '0000-00-00 00:00:00', 0, 'mod_search', 0, 0, 0, 'moduleclass_sfx=\nwidth=20\ntext=\nbutton=1\nbutton_pos=right\nimagebutton=\nbutton_text=\ncache=1\ncache_time=900\n\n', 0, 0, ''),
  818. (28, 'Random Image', '', 2, 'left', 0, '0000-00-00 00:00:00', 0, 'mod_random_image', 0, 0, 1, 'type=jpg\nfolder=\nlink=\nwidth=\nheight=\nmoduleclass_sfx=\ncache=0\ncache_time=900\n\n', 0, 0, ''),
  819. (29, 'Top Menu', '', 1, 'toolbarleft', 0, '0000-00-00 00:00:00', 1, 'mod_mainmenu', 0, 0, 0, 'menutype=topmenu\nmenu_style=list\nstartLevel=0\nendLevel=0\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=0\ntag_id=\nclass_sfx=\nmoduleclass_sfx=menu\nmaxdepth=10\nmenu_images=0\nmenu_images_align=0\nmenu_images_link=0\nexpand_menu=0\nactivate_parent=0\nfull_active_id=0\nindent_image=0\nindent_image1=-1\nindent_image2=-1\nindent_image3=-1\nindent_image4=-1\nindent_image5=-1\nindent_image6=-1\nspacer=\nend_spacer=\n\n', 1, 0, ''),
  820. (30, 'Banners', '', 1, 'banner', 62, '2009-03-05 14:19:19', 0, 'mod_banners', 0, 0, 0, 'target=1\ncount=1\ncid=1\ncatid=33\ntag_search=0\nordering=random\nheader_text=\nfooter_text=\nmoduleclass_sfx=\ncache=1\ncache_time=15\n\n', 1, 0, ''),
  821. (32, 'Wrapper', '', 18, 'left', 0, '0000-00-00 00:00:00', 0, 'mod_wrapper', 0, 0, 1, '', 0, 0, ''),
  822. (33, 'Footer', '', 2, 'footer', 0, '0000-00-00 00:00:00', 0, 'mod_footer', 0, 0, 0, 'cache=1\n\n', 1, 0, ''),
  823. (34, 'Feed Display', '', 19, 'left', 0, '0000-00-00 00:00:00', 0, 'mod_feed', 0, 0, 1, '', 1, 0, ''),
  824. (35, 'Breadcrumbs', '', 1, 'breadcrumbs', 0, '0000-00-00 00:00:00', 1, 'mod_breadcrumbs', 0, 0, 1, 'showHome=1\nhomeText=Home\nshowLast=1\nseparator=\nmoduleclass_sfx=\ncache=0\n\n', 1, 0, ''),
  825. (36, 'Syndication', '', 1, 'left', 0, '0000-00-00 00:00:00', 0, 'mod_syndicate', 0, 0, 0, 'cache=0\ntext=Feed Entries\nformat=rss\nmoduleclass_sfx=\n\n', 1, 0, ''),
  826. (42, 'Sub Menu', '', 3, 'left', 0, '0000-00-00 00:00:00', 1, 'mod_mainmenu', 0, 0, 1, 'menutype=mainmenu\nmenu_style=list\nstartLevel=1\nendLevel=5\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=0\ntag_id=\nclass_sfx=accordion\nmoduleclass_sfx=style-menu\nmaxdepth=10\nmenu_images=0\nmenu_images_align=0\nmenu_images_link=0\nexpand_menu=0\nactivate_parent=0\nfull_active_id=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=\n\n', 0, 0, ''),
  827. (177, 'Footer Menu', '', 0, 'footer', 62, '2009-06-12 19:51:07', 1, 'mod_mainmenu', 0, 0, 0, 'menutype=topmenu\nmenu_style=list\nstartLevel=0\nendLevel=0\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=0\ntag_id=\nclass_sfx=\nmoduleclass_sfx=menu\nmaxdepth=10\nmenu_images=0\nmenu_images_align=0\nmenu_images_link=0\nexpand_menu=0\nactivate_parent=0\nfull_active_id=0\nindent_image=0\nindent_image1=-1\nindent_image2=-1\nindent_image3=-1\nindent_image4=-1\nindent_image5=-1\nindent_image6=-1\nspacer=\nend_spacer=\n\n', 0, 0, ''),
  828. (41, 'Welcome to Joomla!', '<div style="padding: 5px"><p>Congratulations on choosing Joomla! as your content management system. We hope you are able to create a successful Web site with our program and maybe you will be able to give something back to the community later.</p><p>To make your start with Joomla! as smooth as possible, we want to give you some pointers to documentation, common questions and help on securing your server. A good place to start is the &quot;<a href="http://forum.joomla.org/index.php/topic,47524.0.html" target="_blank">Absolute Beginners Guide to Joomla!</a>&quot;.</p><p>For your most common questions the best place to start looking for answers is the <a href="http://help.joomla.org/component/option,com_easyfaq/Itemid,268/" target="_blank">Frequently Asked Questions (FAQ)</a> area. If you are stuck on a particular screen in the Administration area of Joomla! (which is where you are now), then try clicking on the Help toolbar button which you will find on almost all screens. This will take you to a page about that screen on our <a href="http://help.joomla.org" target="_blank">Help Site</a>. If you still have questions then take a look on our <a href="http://forum.joomla.org" target="_blank">forum</a> which is most likely the biggest resource on Joomla! there is and you will find almost every question answered at least once, so please try using the search function before asking your question.</p><p>Security is a big concern for us, which is why we would like you to subscribe to the <a href="http://forum.joomla.org/index.php/board,8.0.html" target="_blank">announcement forum</a> (by clicking on the Notify button) to always get the latest information on new releases for Joomla! You should also read the <a href="http://help.joomla.org/component/option,com_easyfaq/task,view/id,167/Itemid,268/" target="_blank">Joomla! Administrator''s Security Checklist</a> and regularly check the <a href="http://forum.joomla.org/index.php/board,267.0.html" target="_blank">security forum</a>.</p><p>We hope you have much fun and success with Joomla! and hope to see you in the forum among the hundreds and thousands of contributors.</p><p>Your Joomla! team.<img alt="Smile" border="0" src="../plugins/editors/tinymce/jscripts/tiny_mce/plugins/emotions/images/smiley-smile.gif" title="Smile" /></p><p>P.S.: To remove this message, delete the &quot;Welcome to Joomla!&quot; Module in the Administrator screen of the Module Manager (on the Extensions menu). Here is a <a href="index.php?option=com_modules&amp;client=1">quick link</a> to this screen.</p></div>', 1, 'cpanel', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 2, 1, 'moduleclass_sfx=\n\n', 1, 1, ''),
  829. (46, 'YOOlogin (Default)', '', 1, 'content1', 0, '0000-00-00 00:00:00', 1, 'mod_yoo_login', 0, 0, 0, 'style=default\npretext=\nposttext=\nlogin=\nlogout=\ngreeting=1\ntext_mode=input\nlogin_button=icon\nlogout_button=text\nauto_remember=1\nlost_password=1\nlost_username=1\nregistration=1\nmoduleclass_sfx=\ncache=0\ncache_time=900\n\n', 0, 0, ''),
  830. (51, 'Dogear', '<div style="position: absolute; z-index: 20; top: 0px; left: 0px; width: 135px; height: 135px;">\r\n <a href="http://www.yootheme.com" target="_blank" title="YOOtheme"><img class="correct-png" style="width: 135px; height: 135px;" src="images/yootheme/absolute_yoodogear.png" alt="YOOtheme" /></a>\r\n</div>', 1, 'absolute', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
  831. (52, 'Content Top 1', 'Lorem ipsum dolor sit amet. Used Module Class Suffix: <em class="box">style-tab</em>', 0, 'contenttop', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
  832. (53, 'Content Top 2', 'Lorem ipsum dolor sit amet. Used Module Class Suffix: <em class="box">style-tab</em>', 2, 'contenttop', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
  833. (156, 'Validating Code', '<p>This template validates to XHTML and CSS web standards and is designed to be compatible with all modern browsers.</p>\r\n<p>\r\n <img class="correct-png" style="margin-right: 10px" src="images/yootheme/browser_firefox.png" alt="Firefox 3.0+" title="Firefox 3.0+" width="20" height="20" />\r\n <img class="correct-png" style="margin-right: 10px" src="images/yootheme/browser_ie6.png" alt="Internet Explorer 6" title="Internet Explorer 6" width="20" height="20" />\r\n <img class="correct-png" style="margin-right: 10px" src="images/yootheme/browser_ie7.png" alt="Internet Explorer 7+" title="Internet Explorer 7+" width="20" height="20" />\r\n <img class="correct-png" style="margin-right: 10px" src="images/yootheme/browser_safari.png" alt="Safari 3.1+" title="Safari 3.1+" width="20" height="20" />\r\n <img class="correct-png" style="margin-right: 10px" src="images/yootheme/browser_opera.png" alt="Opera 9.5+" title="Opera 9.5+" width="20" height="20" />\r\n <img class="correct-png" style="margin-right: 10px" src="images/yootheme/browser_camino.png" alt="Camino 1.0+" title="Camino 1.0+" width="20" height="20" />\r\n <img class="correct-png" style="margin-right: 10px" src="images/yootheme/browser_konqueror.png" alt="Konqueror" title="Konqueror" width="20" height="20" />\r\n <img class="correct-png" style="margin-right: 10px" src="images/yootheme/browser_chrome.png" alt="Chrome 1.0+" title="Chrome 1.0+" width="20" height="20" />\r\n</p>', 10, 'right', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
  834. (155, 'Javascript Library', 'All client side effects use the JavaScript framework <a href="http://www.mootools.net" target="_blank">MooTools</a> which offers most reliable functionality and compact size!\r\n<p>\r\nWhich Mootools version is used? Check out the <a target="_blank" href="http://tutorials.yootheme.com/index.php?option=com_mtree&amp;task=viewlink&amp;link_id=92&amp;Itemid=2">MooTools version guide</a>.\r\n</p>', 9, 'right', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
  835. (56, 'Login || module position', '', 2, 'menu', 0, '0000-00-00 00:00:00', 1, 'mod_yoo_login', 0, 0, 0, 'style=niftyquick\npretext=\nposttext=\nlogin=\nlogout=\ngreeting=1\ntext_mode=input\nlogin_button=icon\nlogout_button=icon\nauto_remember=1\nlost_password=1\nlost_username=1\nregistration=1\nmoduleclass_sfx=\ncache=0\ncache_time=900\n\n', 0, 0, ''),
  836. (57, 'Content Bottom 1', 'Lorem ipsum dolor sit amet. Used Module Class Suffix: <em class="box">style-tab</em>', 0, 'contentbottom', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
  837. (58, 'Skyscraper', '<img class="correct-png" src="images/yootheme/banner_skyscraper.png" title="Place your banner here!" alt="Place your banner here!" />', 2, 'banner', 62, '2009-03-05 14:19:22', 1, 'mod_custom', 0, 0, 0, 'moduleclass_sfx=\n\n', 0, 0, ''),
  838. (59, 'Content Bottom 2', 'Lorem ipsum dolor sit amet. Used Module Class Suffix: <em class="box">style-tab</em>', 2, 'contentbottom', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
  839. (60, 'Badge', '<img class="correct-png" src="images/yootheme/banner_badge.png" title="WEB 2.0 inside!" alt="WEB 2.0 inside!" style="position: absolute; top: 0px; left: 0px;" />', 3, 'banner', 0, '0000-00-00 00:00:00', 0, 'mod_custom', 0, 0, 0, 'moduleclass_sfx=\n\n', 0, 0, ''),
  840. (61, 'Bottom 1', 'Lorem ipsum dolor sit amet. Used Module Class Suffix: <em class="box">style-rounded</em>', 0, 'bottom', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=style-rounded\n\n', 0, 0, ''),
  841. (132, 'YOOtorials', '<a href="http://tutorials.yootheme.com" target="_blank" style="display: block; text-align: center">\r\n <img class="correct-png" width="100" height="125" title="Take a look at the YOOtheme video tutorials" alt="Take a look at the YOOtheme video tutorials" src="images/yootheme/yootorials.png"/>\r\n</a>', 5, 'right', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=style-header color-grey\n\n', 0, 0, ''),
  842. (62, 'Bottom 2', 'Lorem ipsum dolor sit amet. Used Module Class Suffix: <em class="box">style-rounded</em>', 2, 'bottom', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=style-rounded\n\n', 0, 0, ''),
  843. (176, 'ZOO', '<a href="http://zoo.yootheme.com" target="_blank" style="display: block; text-align: center;">\r\n<img class="correct-png" src="images/yootheme/icon_zoo.png" alt="Versatile catalog system with content construcion kit for Joomla 1.5" title="Versatile catalog system with content construcion kit for Joomla 1.5" width="140" height="130" />\r\n</a>\r\n<p>Versatile catalog system with content construcion kit for Joomla 1.5. Get the <a href="http://teamlog.yootheme.com" target="_blank">ZOO Extension</a>.</p>', 7, 'right', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
  844. (63, 'Bottom 3', 'Lorem ipsum dolor sit amet. Used Module Class Suffix: <em class="box">style-rounded</em>', 3, 'bottom', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=style-rounded\n\n', 0, 0, ''),
  845. (64, 'Bottom 4', 'Lorem ipsum dolor sit amet sed tempor. Used Module Class Suffix: <em class="box">style-rounded</em>', 4, 'bottom', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=style-rounded\n\n', 0, 0, ''),
  846. (68, 'Left 1', 'Lorem ipsum dolor sit amet. Used Module Class Suffix: <em class="box">style-header</em> <em class="box">color-grey</em> <em class="box">icon-twitter</em>', 10, 'left', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=icon-twitter\n\n', 0, 0, ''),
  847. (180, 'Polaroid', 'Lorem ipsum dolor sit amet consect adipisic elit. Used Module Class Suffix: style-polaroid', 13, 'left', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=style-polaroid\n\n', 0, 0, ''),
  848. (181, 'Post It', 'Lorem ipsum dolor sit amet consect adipisic elit. Used Module Class Suffix: style-postit', 12, 'left', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=style-postit\n\n', 0, 0, ''),
  849. (182, 'Left 2', 'Lorem ipsum dolor sit amet. Used Module Class Suffix: <em class="box">style-header</em> <em class="box">color-grey</em> <em class="box">icon-mail</em>', 11, 'left', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=icon-mail\n\n', 0, 0, ''),
  850. (89, 'Top Block', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Used Module Class Suffix: <em class="box">style-rounded</em> <em class="box">color-grey</em>', 0, 'topblock', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
  851. (72, 'Logo', '<a href="index.php" title="Home"><img class="correct-png" src="images/yootheme/logo.png" width="300" height="70" alt="Logo" /></a>', 0, 'logo', 62, '2009-06-30 13:58:28', 1, 'mod_custom', 0, 0, 0, 'moduleclass_sfx=\n\n', 0, 0, ''),
  852. (136, 'Sample Flags', '<img src="images/yootheme/toolbar_flags.png" class="correct-png" width="123" height="15" alt="Languages" style="margin-top: 6px;" />', 1, 'toolbarright', 0, '0000-00-00 00:00:00', 0, 'mod_custom', 0, 0, 0, 'moduleclass_sfx=\n\n', 0, 0, ''),
  853. (73, 'Content Right 2', 'Lorem ipsum dolor sit amet. Used Module Class Suffix: <em class="box">style-line</em>', 4, 'contentright', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=frame\n\n', 0, 0, ''),
  854. (75, 'Top 1', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do. Used Module Class Suffix: <em class="box">style-header</em> <em class="box">badge-hot</em> <em class="box">icon-lock</em>', 0, 'top', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=style-header icon-lock badge-hot\n\n', 0, 0, ''),
  855. (76, 'Top 2', 'Lorem ipsum dolor sit amet. Used Module Class Suffix: <em class="box">style-header</em> <em class="box">badge-new</em> <em class="box">icon-download</em>', 2, 'top', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=style-header color-blue badge-new icon-download\n\n', 0, 0, ''),
  856. (77, 'Top 3', 'Lorem ipsum dolor sit amet. Used Module Class Suffix: <em class="box">style-header</em> <em class="box">badge-pick</em> <em class="box">icon-message</em>', 3, 'top', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=style-header badge-pick icon-message\n\n', 0, 0, ''),
  857. (78, 'Top 4', 'Lorem ipsum dolor sit amet sed tempor. Used Module Class Suffix: <em class="box">style-header</em> <em class="box">badge-pick</em> <em class="box">icon-users</em>', 4, 'top', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=style-header badge-top icon-users\n\n', 0, 0, ''),
  858. (121, 'Bottom (YOOtools)', '<center>\r\n<a href="http://tools.yootheme.com" target="_blank">\r\n <img class="correct-png" style="margin-top: 15px;" src="images/yootheme/bottom_yootools.png" alt="Visit the YOOtools website!" title="Visit the YOOtools website!" width="127" height="33" />\r\n</a>\r\n</center>', 5, 'bottom', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 0, 'moduleclass_sfx=\n\n', 0, 0, ''),
  859. (122, 'Warp5 Framework', 'This template is based on the fast and powerfull Warp5 framework that lets you create sophisticated Joomla templates in no time.\r\n\r\n<p class="readmore"><a class="readmore" href="index.php?option=com_content&amp;view=article&amp;id=45&amp;Itemid=54">Read more...</a></p>', 2, 'right', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=icon-message badge-new\n\n', 0, 0, ''),
  860. (123, 'Module System', 'The module system provides a clear grid for Joomla modules and a wide diversity of templates for module variations.\r\n\r\n<p class="readmore"><a class="readmore" href="index.php?option=com_content&amp;view=article&amp;id=47&amp;Itemid=154">Read more...</a></p>', 4, 'right', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=icon-download\n\n', 0, 0, ''),
  861. (82, 'Footer', 'Validates to <a href="http://validator.w3.org/check?uri=http://demo.yootheme.com/jul09" target="_blank">XHTML 1.0</a> and <a href="http://jigsaw.w3.org/css-validator/validator?uri=http://demo.yootheme.com/jul09" target="_blank">CSS 2.1</a><br/>\r\nCopyright &copy; 2009 <a href="http://www.yootheme.com" target="_blank">YOOtheme</a>', 0, 'footer', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
  862. (83, 'Main Top 1', 'Lorem ipsum dolor sit amet, consectetur. Used Module Class Suffix: <em class="box">style-chrome</em> <em class="box">color-black</em>', 3, 'maintop', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=style-chrome color-black\n\n', 0, 0, ''),
  863. (158, 'Bottom (YOOtorials)', '<center>\r\n<a href="http://tutorials.yootheme.com" target="_blank">\r\n <img class="correct-png" style="margin-top: 15px;" src="images/yootheme/bottom_yootorials.png" alt="Visit the YOOtorials website!" title="Visit the YOOtorials website!" width="145" height="33" />\r\n</a>\r\n</center>', 6, 'bottom', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 0, 'moduleclass_sfx=\n\n', 0, 0, ''),
  864. (87, 'Other Menu', '', 1, 'right', 0, '0000-00-00 00:00:00', 1, 'mod_mainmenu', 0, 0, 1, 'menutype=othermenu\nmenu_style=list\nstartLevel=0\nendLevel=5\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=0\ntag_id=\nclass_sfx=accordion\nmoduleclass_sfx=style-menu color-black\nmaxdepth=10\nmenu_images=0\nmenu_images_align=0\nmenu_images_link=0\nexpand_menu=0\nactivate_parent=0\nfull_active_id=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=\n\n', 0, 0, ''),
  865. (84, 'Main Top 2', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt. Used Module Class Suffix: <em class="box">style-chrome</em> <em class="box">color-orange</em>', 4, 'maintop', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=style-chrome color-orange\n\n', 0, 0, ''),
  866. (85, 'Main Bottom 1', 'Lorem ipsum dolor sit amet, consectetur. Used Module Class Suffix: <em class="box">style-chrome</em> <em class="box">color-blue</em>', 0, 'mainbottom', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=style-chrome color-blue\n\n', 0, 0, ''),
  867. (86, 'Main Bottom 2', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt. Used Module Class Suffix: <em class="box">style-chrome</em> <em class="box">color-green</em>', 2, 'mainbottom', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=style-chrome color-green\n\n', 0, 0, ''),
  868. (117, 'YOOcarousel (Frontpage)', '', 5, 'maintop', 0, '0000-00-00 00:00:00', 0, 'mod_yoo_carousel', 0, 0, 0, 'catid=35\nstyle=slideshow\nmodule_width=644\nmodule_height=184\ntab_width=200\nautoplay=on\nslide_interval=5000\ntransition_duration=300\ntransition_effect=crossfade\ncontrol_panel=none\nrotate_action=mouseover\nrotate_duration=300\nrotate_effect=crossfade\nbuttons=1\norder=rnd\nreadmore=0\nitems=10\nmoduleclass_sfx=\ncache=0\ncache_time=900\n\n', 0, 0, ''),
  869. (91, 'Bottom Block', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Used Module Class Suffix: <em class="box">style-rounded</em> <em class="box">color-grey</em>', 0, 'bottomblock', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
  870. (175, 'Teamlog', '<a href="http://teamlog.yootheme.com" target="_blank" style="display: block; text-align: center;">\r\n<img class="correct-png" src="images/yootheme/icon_teamlog.png" alt="Web based Time Tracking Solution for Joomla! 1.5 focused on simplicity" title="Web based Time Tracking Solution for Joomla! 1.5 focused on simplicity" width="140" height="150" />\r\n</a>\r\n<p>Web based Time Tracking Solution for Joomla! 1.5 focused on simplicity. Get the <a href="http://teamlog.yootheme.com" target="_blank">Teamlog extension</a> for free.</p>', 8, 'right', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
  871. (125, 'YOOsearch', '', 2, 'search', 0, '0000-00-00 00:00:00', 1, 'mod_yoo_search', 0, 0, 0, 'style=default\nbox_width=400\nchar_limit=130\nres_limit=6\ncat_limit=6\ncategories={cat\\ntitle=[YOOtheme]\\nimage=[yootheme/yoosearch/yootheme.png]\\nurl=[http://www.yootheme.com]\\nkeywords=[yootheme, template, templates, themes, theme]\\n}The YOOtheme template club for Joomla 1.0 and 1.5 offers stylish templates with professional Web 2.0 features.{/cat}\\n\\n{cat\\ntitle=[YOOtools]\\nimage=[yootheme/yoosearch/yootools.png]\\nurl=[http://www.yootools.com]\\nkeywords=[yootheme, yootools, features, feature, yoospotlight, yooreflection, yoolightbox, yoocarousel, yooaccordion, yooslider, yoodrawer, yooscroller, yoomaps, yoosearch, yooeffects, yootoppanel, yoologin, yootooltip, yoosnapshots, spotlight, reflection, lightbox, carousel, accordion, slider, drawer, scroller, maps, search, effects, toppanel, login, tooltip, snapshots]}The YOOtools are new YOOtheme extensions for Joomla 1.0 and 1.5. Exclusive YOOtheme modules, compontent and plugins!{/cat}\\n\\n{cat\\ntitle=[Typography]\\nurl=[index.php?option=com_content&view=article&id=46&Itemid=55]\\nimage=[yootheme/yoosearch/typography.png]\\nkeywords=[typography, joomla, style, stylings, HTML, tag]\\n}Take a look at the typography, the style guide and learn all about the possible HTML tag stylings of this YOOtheme templates.{/cat}\\n\\n{cat\\ntitle=[Layout]\\nimage=[yootheme/yoosearch/layout.png]\\nurl=[index.php?option=com_content&view=article&id=47&Itemid=56]\\nkeywords=[layout, joomla, module, position, positions, variation, variations]\\n}Take a look at the layout options and all possible module positions and variations of this YOOtheme template.{/cat}\\n\\n{cat\\ntitle=[Joomla]\\nimage=[yootheme/yoosearch/joomla.png]\\nurl=[index.php?option=com_content&view=frontpage&Itemid=1]\\nkeywords=[joomla]\\n}Take a look at how this YOOtheme template styles the Joomla core articles, components and modules.{/cat}\nmoduleclass_sfx=-blank\ncache=0\ncache_time=900\n\n', 0, 0, ''),
  872. (118, 'Bottom (YOOtheme)', '<center>\r\n<a href="http://www.yootheme.com" target="_blank">\r\n <img class="correct-png" style="margin-top: 15px;" src="images/yootheme/bottom_yootheme.png" alt="Visit the YOOtheme website!" title="Visit the YOOtheme website!" width="150" height="33" />\r\n</a>\r\n</center>', 7, 'bottom', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 0, 'moduleclass_sfx=\n\n', 0, 0, ''),
  873. (124, 'Menu System', 'The menu system enhances Joomla''s menu functions to create clearly arranged interfaces even for comprehensive sites.\r\n\r\n<p class="readmore"><a class="readmore" href="index.php?option=com_content&amp;view=article&amp;id=57&amp;Itemid=153">Read more...</a></p>', 3, 'right', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=icon-mail\n\n', 0, 0, ''),
  874. (134, 'YOOiecheck', '', 2, 'absolute', 0, '0000-00-00 00:00:00', 1, 'mod_yoo_iecheck', 0, 0, 0, 'message=You are using Internet Explorer 6. Please upgrade your browser to increase safety and your browsing experience. Choose one of the following links to download a modern browser:\nfirefox=1\nsafari=1\nopera=1\nie=1\nmoduleclass_sfx=-blank\n\n', 0, 0, ''),
  875. (151, 'Fireworks Files', '<div style="overflow: hidden;">\r\n<img height="40" width="42" align="right" src="/YOOtheme/Templates/Next/Website/images/yootheme/top_fireworks.png" alt="Fully sliced Fireworks .png files" title="Fully sliced Fireworks .png files" style="margin-left: 10px;" class="correct-png"/>Fully sliced Fireworks PNGs for customizations.\r\n</div>', 6, 'maintop', 0, '0000-00-00 00:00:00', 0, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
  876. (150, 'YOOtools', '<div style="overflow: hidden">\r\n<img class="correct-png" style="margin-left: 10px;" width="55" height="42" align="right" title="Native version for Joomla 1.5" alt="Native version for Joomla 1.5" src="images/yootheme/top_yootools.png" />This template is fully compatible with all <a href="http://www.yootools.com" target="_blank">YOOtools</a>\r\n</div>', 7, 'maintop', 0, '0000-00-00 00:00:00', 0, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
  877. (178, 'Feeds', '<a class="twitter" title="Follow us on Twitter" href="http://twitter.com/yootheme" target="_blank"><img height="25" width="25" alt="Follow us on Twitter" src="images/yootheme/toolbar_twitter.png" class="correct-png" /></a>\r\n<a class="rss" title="Subscribe to our RSS feed" href="http://www.yootheme.com/rss" target="_blank"><img height="25" width="25" alt="Subscribe to our RSS feed" src="images/yootheme/toolbar_feed.png" class="correct-png" /></a>', 0, 'toolbarright', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 0, 'moduleclass_sfx=\n\n', 0, 0, ''),
  878. (168, 'Latest YOOtheme Tweet', '', 0, 'headerright', 0, '0000-00-00 00:00:00', 0, 'mod_yoo_tweet', 0, 0, 0, 'style=single\nfrom_user=yootheme\nto_user=\nref_user=\nhashtag=\nword=\nimage=0\nauthor=0\ndate=0\nimage_size=48\nnum_tweets=5\nmoduleclass_sfx=style-\ncache=0\ncache_time=15\n\n', 0, 0, ''),
  879. (183, 'Frontpage Menu', '', 0, 'contentright', 0, '0000-00-00 00:00:00', 1, 'mod_mainmenu', 0, 0, 1, 'menutype=frontpagemenu\nmenu_style=list\nstartLevel=0\nendLevel=0\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=0\ntag_id=\nclass_sfx=accordion\nmoduleclass_sfx=style-menu\nmaxdepth=10\nmenu_images=0\nmenu_images_align=0\nmenu_images_link=0\nexpand_menu=0\nactivate_parent=0\nfull_active_id=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=\n\n', 0, 0, ''),
  880. (170, 'Content Left', 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.', 1, 'contentleft', 0, '0000-00-00 00:00:00', 0, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
  881. (171, 'Content Right 1', 'Lorem ipsum dolor sit amet. Used Module Class Suffix: <em class="box">style-line</em>', 3, 'contentright', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
  882. (179, 'Inner Sub Menu', '', 0, 'contentright', 0, '0000-00-00 00:00:00', 1, 'mod_mainmenu', 0, 0, 1, 'menutype=mainmenu\nmenu_style=list\nstartLevel=1\nendLevel=5\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=0\ntag_id=\nclass_sfx=accordion\nmoduleclass_sfx=style-menu\nmaxdepth=10\nmenu_images=0\nmenu_images_align=0\nmenu_images_link=0\nexpand_menu=0\nactivate_parent=0\nfull_active_id=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=\n\n', 0, 0, ''),
  883. (184, 'Teasers', '<a href="http://www.yootheme.com/blog/item/root/zoo-event-in-retrospect" target="_blank" style="display: block; float: left; margin-right: 15px;">\r\n <img class="correct-png" width="457" height="175" title="Take a look at all the pictures and the video we created of our ZOO presentation." alt="Take a look at all the pictures and the video we created of our ZOO presentation." src="images/yootheme/home_zooevent.png"/>\r\n</a>\r\n<a href="index.php?option=com_content&amp;view=article&amp;id=56&amp;Itemid=152" style="display: block; float: left;">\r\n <img class="correct-png" width="457" height="175" title="Take a look at the Warp5 framework!" alt="Take a look at the Warp5 framework!" src="images/yootheme/home_warp5.png"/>\r\n</a>', 0, 'topblock', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 0, 'moduleclass_sfx=style-blank\n\n', 0, 0, ''),
  884. (185, 'YOOgallery', '', 0, 'mainbottom', 0, '0000-00-00 00:00:00', 1, 'mod_yoo_gallery', 0, 0, 1, 'src=/images/yootheme/yoogallery/\nstyle=slideshow\neffect=fade\nthumb=default\norder=asc\nspotlight=1\nwidth=92\nheight=0\nresize=1\ncount=0\ntitle=\nprefix=thumb_\nthumb_cache_dir=thumbs\nthumb_cache_time=1440\nload_lightbox=0\nrel=\nmoduleclass_sfx=style-chrome yootools-black\ncache=0\ncache_time=900\n\n', 0, 0, ''),
  885. (186, 'YOOtweet', 'Show users what you''re up to! The YOOtweet module is the neatest way to display your Twitter entries directly on your website.\r\n<a target="_blank" title="New YOOtweet module!" href="http://tools.yootheme.com/extensions/yootweet" style="display: block; text-align: center;">\r\n<img height="107" width="104" alt="New YOOtweet module!" title="New YOOtweet module!" class="correct-png" src="images/yootheme/home_yootweet.png"/>\r\n</a>\r\nFor more details take a look at the <a target="_blank" href="http://tools.yootheme.com/extensions/yootweet">YOOtweet page...</a>', 5, 'contentright', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
  886. (190, 'ZOO Not Included', '<div class="alert">The displayed content is part of the ZOO Pro Edition and only shown for demonstration purpose. The ZOO Pro Edition is NOT included when purchasing this template. However you can purchase the ZOO Pro Edition at http://zoo.yootheme.com .</div>', 0, 'topblock', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 0, 'moduleclass_sfx=style-rounded\n\n', 0, 0, '');
  887.  
  888. -- --------------------------------------------------------
  889.  
  890. --
  891. -- Table structure for table `#__modules_menu`
  892. --
  893.  
  894. DROP TABLE IF EXISTS `#__modules_menu`;
  895. CREATE TABLE IF NOT EXISTS `#__modules_menu` (
  896. `moduleid` int(11) NOT NULL DEFAULT '0',
  897. `menuid` int(11) NOT NULL DEFAULT '0',
  898. PRIMARY KEY (`moduleid`,`menuid`)
  899. ) TYPE=MyISAM;
  900.  
  901. --
  902. -- Dumping data for table `#__modules_menu`
  903. --
  904.  
  905. INSERT INTO `#__modules_menu` (`moduleid`, `menuid`) VALUES
  906. (1, 0),
  907. (16, 1),
  908. (16, 48),
  909. (16, 49),
  910. (16, 134),
  911. (16, 135),
  912. (16, 136),
  913. (16, 138),
  914. (16, 140),
  915. (16, 141),
  916. (16, 142),
  917. (16, 145),
  918. (16, 156),
  919. (16, 157),
  920. (16, 158),
  921. (17, 1),
  922. (18, 1),
  923. (18, 48),
  924. (18, 49),
  925. (18, 134),
  926. (18, 135),
  927. (18, 136),
  928. (18, 138),
  929. (18, 140),
  930. (18, 141),
  931. (18, 142),
  932. (18, 145),
  933. (18, 156),
  934. (18, 157),
  935. (18, 158),
  936. (19, 1),
  937. (21, 53),
  938. (22, 1),
  939. (25, 0),
  940. (27, 0),
  941. (29, 0),
  942. (30, 0),
  943. (32, 0),
  944. (33, 0),
  945. (34, 0),
  946. (35, 0),
  947. (36, 0),
  948. (39, 43),
  949. (39, 44),
  950. (39, 45),
  951. (39, 46),
  952. (39, 47),
  953. (40, 0),
  954. (42, 1),
  955. (42, 48),
  956. (42, 49),
  957. (42, 56),
  958. (42, 58),
  959. (42, 134),
  960. (42, 135),
  961. (42, 136),
  962. (42, 138),
  963. (42, 140),
  964. (42, 141),
  965. (42, 142),
  966. (42, 145),
  967. (42, 156),
  968. (42, 157),
  969. (42, 158),
  970. (46, 0),
  971. (51, 0),
  972. (52, 58),
  973. (53, 58),
  974. (56, 0),
  975. (57, 58),
  976. (58, 58),
  977. (59, 58),
  978. (60, 1),
  979. (60, 20),
  980. (60, 24),
  981. (60, 48),
  982. (60, 49),
  983. (60, 51),
  984. (60, 52),
  985. (60, 53),
  986. (60, 54),
  987. (60, 55),
  988. (60, 56),
  989. (60, 95),
  990. (60, 96),
  991. (60, 97),
  992. (60, 98),
  993. (60, 99),
  994. (60, 100),
  995. (60, 101),
  996. (61, 58),
  997. (62, 58),
  998. (63, 58),
  999. (64, 58),
  1000. (68, 58),
  1001. (72, 0),
  1002. (73, 58),
  1003. (75, 58),
  1004. (76, 58),
  1005. (77, 58),
  1006. (78, 58),
  1007. (82, 0),
  1008. (83, 58),
  1009. (84, 58),
  1010. (85, 58),
  1011. (86, 58),
  1012. (87, 53),
  1013. (89, 58),
  1014. (91, 58),
  1015. (117, 53),
  1016. (117, 111),
  1017. (117, 114),
  1018. (117, 118),
  1019. (117, 127),
  1020. (117, 129),
  1021. (117, 130),
  1022. (117, 146),
  1023. (117, 147),
  1024. (117, 148),
  1025. (117, 149),
  1026. (118, 1),
  1027. (118, 20),
  1028. (118, 24),
  1029. (118, 48),
  1030. (118, 49),
  1031. (118, 51),
  1032. (118, 52),
  1033. (118, 53),
  1034. (118, 54),
  1035. (118, 55),
  1036. (118, 56),
  1037. (118, 95),
  1038. (118, 96),
  1039. (118, 97),
  1040. (118, 98),
  1041. (118, 99),
  1042. (118, 100),
  1043. (118, 101),
  1044. (118, 134),
  1045. (118, 135),
  1046. (118, 136),
  1047. (118, 138),
  1048. (118, 140),
  1049. (118, 141),
  1050. (118, 142),
  1051. (118, 145),
  1052. (118, 152),
  1053. (118, 153),
  1054. (118, 154),
  1055. (118, 171),
  1056. (118, 172),
  1057. (118, 173),
  1058. (118, 174),
  1059. (121, 1),
  1060. (121, 20),
  1061. (121, 24),
  1062. (121, 48),
  1063. (121, 49),
  1064. (121, 51),
  1065. (121, 52),
  1066. (121, 53),
  1067. (121, 54),
  1068. (121, 55),
  1069. (121, 56),
  1070. (121, 95),
  1071. (121, 96),
  1072. (121, 97),
  1073. (121, 98),
  1074. (121, 99),
  1075. (121, 100),
  1076. (121, 101),
  1077. (121, 134),
  1078. (121, 135),
  1079. (121, 136),
  1080. (121, 138),
  1081. (121, 140),
  1082. (121, 141),
  1083. (121, 142),
  1084. (121, 145),
  1085. (121, 152),
  1086. (121, 153),
  1087. (121, 154),
  1088. (121, 171),
  1089. (121, 172),
  1090. (121, 173),
  1091. (121, 174),
  1092. (122, 53),
  1093. (123, 53),
  1094. (124, 53),
  1095. (125, 0),
  1096. (132, 53),
  1097. (134, 0),
  1098. (136, 0),
  1099. (150, 53),
  1100. (151, 53),
  1101. (155, 54),
  1102. (155, 152),
  1103. (155, 153),
  1104. (155, 154),
  1105. (156, 54),
  1106. (156, 152),
  1107. (156, 153),
  1108. (156, 154),
  1109. (158, 1),
  1110. (158, 20),
  1111. (158, 24),
  1112. (158, 48),
  1113. (158, 49),
  1114. (158, 51),
  1115. (158, 52),
  1116. (158, 53),
  1117. (158, 54),
  1118. (158, 55),
  1119. (158, 56),
  1120. (158, 95),
  1121. (158, 96),
  1122. (158, 97),
  1123. (158, 98),
  1124. (158, 99),
  1125. (158, 100),
  1126. (158, 101),
  1127. (158, 134),
  1128. (158, 135),
  1129. (158, 136),
  1130. (158, 138),
  1131. (158, 140),
  1132. (158, 141),
  1133. (158, 142),
  1134. (158, 145),
  1135. (158, 152),
  1136. (158, 153),
  1137. (158, 154),
  1138. (158, 171),
  1139. (158, 172),
  1140. (158, 173),
  1141. (158, 174),
  1142. (168, 53),
  1143. (168, 114),
  1144. (168, 118),
  1145. (168, 130),
  1146. (168, 146),
  1147. (168, 147),
  1148. (168, 148),
  1149. (168, 161),
  1150. (168, 162),
  1151. (168, 164),
  1152. (168, 165),
  1153. (170, 58),
  1154. (171, 58),
  1155. (175, 54),
  1156. (175, 152),
  1157. (175, 153),
  1158. (175, 154),
  1159. (175, 171),
  1160. (176, 54),
  1161. (176, 152),
  1162. (176, 153),
  1163. (176, 154),
  1164. (176, 171),
  1165. (177, 0),
  1166. (178, 0),
  1167. (179, 58),
  1168. (180, 58),
  1169. (181, 58),
  1170. (182, 58),
  1171. (183, 53),
  1172. (183, 114),
  1173. (183, 118),
  1174. (183, 130),
  1175. (183, 146),
  1176. (183, 147),
  1177. (183, 148),
  1178. (183, 161),
  1179. (183, 162),
  1180. (183, 164),
  1181. (183, 165),
  1182. (184, 53),
  1183. (184, 114),
  1184. (184, 118),
  1185. (184, 130),
  1186. (184, 146),
  1187. (184, 147),
  1188. (184, 148),
  1189. (184, 161),
  1190. (184, 162),
  1191. (184, 164),
  1192. (184, 165),
  1193. (185, 53),
  1194. (185, 114),
  1195. (185, 118),
  1196. (185, 130),
  1197. (185, 146),
  1198. (185, 147),
  1199. (185, 148),
  1200. (185, 161),
  1201. (185, 162),
  1202. (185, 164),
  1203. (185, 165),
  1204. (186, 53),
  1205. (186, 114),
  1206. (186, 118),
  1207. (186, 130),
  1208. (186, 146),
  1209. (186, 147),
  1210. (186, 148),
  1211. (186, 161),
  1212. (186, 162),
  1213. (186, 164),
  1214. (186, 165),
  1215. (190, 172),
  1216. (190, 173),
  1217. (190, 174);
  1218.  
  1219. -- --------------------------------------------------------
  1220.  
  1221. --
  1222. -- Table structure for table `#__newsfeeds`
  1223. --
  1224.  
  1225. DROP TABLE IF EXISTS `#__newsfeeds`;
  1226. CREATE TABLE IF NOT EXISTS `#__newsfeeds` (
  1227. `catid` int(11) NOT NULL DEFAULT '0',
  1228. `id` int(11) NOT NULL AUTO_INCREMENT,
  1229. `name` text NOT NULL,
  1230. `alias` varchar(255) NOT NULL DEFAULT '',
  1231. `link` text NOT NULL,
  1232. `filename` varchar(200) DEFAULT NULL,
  1233. `published` tinyint(1) NOT NULL DEFAULT '0',
  1234. `numarticles` int(11) unsigned NOT NULL DEFAULT '1',
  1235. `cache_time` int(11) unsigned NOT NULL DEFAULT '3600',
  1236. `checked_out` tinyint(3) unsigned NOT NULL DEFAULT '0',
  1237. `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  1238. `ordering` int(11) NOT NULL DEFAULT '0',
  1239. `rtl` tinyint(4) NOT NULL DEFAULT '0',
  1240. PRIMARY KEY (`id`),
  1241. KEY `published` (`published`),
  1242. KEY `catid` (`catid`)
  1243. ) TYPE=MyISAM AUTO_INCREMENT=9 ;
  1244.  
  1245. --
  1246. -- Dumping data for table `#__newsfeeds`
  1247. --
  1248.  
  1249. INSERT INTO `#__newsfeeds` (`catid`, `id`, `name`, `alias`, `link`, `filename`, `published`, `numarticles`, `cache_time`, `checked_out`, `checked_out_time`, `ordering`, `rtl`) VALUES
  1250. (4, 1, 'Joomla! - Official News', 'joomla-official-news', 'http://www.joomla.org/index.php?option=com_rss_xtd&feed=RSS2.0&type=com_frontpage&Itemid=1', '', 1, 5, 3600, 0, '0000-00-00 00:00:00', 8, 0),
  1251. (4, 2, 'Joomla! - Community News', 'joomla-community-news', 'http://www.joomla.org/index.php?option=com_rss_xtd&feed=RSS2.0&type=com_content&task=blogcategory&id=0&Itemid=33', '', 1, 5, 3600, 0, '0000-00-00 00:00:00', 9, 0),
  1252. (6, 3, 'Linux Today', 'linux-today', 'http://linuxtoday.com/backend/my-netscape.rdf', '', 1, 3, 3600, 0, '0000-00-00 00:00:00', 1, 0),
  1253. (5, 4, 'Business News', 'business-news', 'http://headlines.internet.com/internetnews/bus-news/news.rss', '', 1, 3, 3600, 0, '0000-00-00 00:00:00', 2, 0),
  1254. (5, 5, 'Web Developer News', 'web-developer-news', 'http://headlines.internet.com/internetnews/wd-news/news.rss', '', 1, 3, 3600, 0, '0000-00-00 00:00:00', 3, 0),
  1255. (6, 6, 'Linux Central:New Products', 'linux-central-news-products', 'http://linuxcentral.com/backend/lcnew.rdf', '', 1, 3, 3600, 0, '0000-00-00 00:00:00', 4, 0),
  1256. (6, 7, 'Linux Central:Best Selling', 'linux-central-best-selling', 'http://linuxcentral.com/backend/lcbestns.rdf', '', 1, 3, 3600, 0, '0000-00-00 00:00:00', 5, 0),
  1257. (6, 8, 'Linux Central:Daily Specials', 'linux-central-daily-specials', 'http://linuxcentral.com/backend/lcspecialns.rdf', '', 1, 3, 3600, 0, '0000-00-00 00:00:00', 6, 0);
  1258.  
  1259. -- --------------------------------------------------------
  1260.  
  1261. --
  1262. -- Table structure for table `#__plugins`
  1263. --
  1264.  
  1265. DROP TABLE IF EXISTS `#__plugins`;
  1266. CREATE TABLE IF NOT EXISTS `#__plugins` (
  1267. `id` int(11) NOT NULL AUTO_INCREMENT,
  1268. `name` text NOT NULL,
  1269. `element` text NOT NULL,
  1270. `folder` varchar(100) NOT NULL DEFAULT '',
  1271. `access` tinyint(3) unsigned NOT NULL DEFAULT '0',
  1272. `ordering` int(11) NOT NULL DEFAULT '0',
  1273. `published` tinyint(3) NOT NULL DEFAULT '0',
  1274. `iscore` tinyint(3) NOT NULL DEFAULT '0',
  1275. `client_id` tinyint(3) NOT NULL DEFAULT '0',
  1276. `checked_out` int(11) unsigned NOT NULL DEFAULT '0',
  1277. `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  1278. `params` text NOT NULL,
  1279. PRIMARY KEY (`id`),
  1280. KEY `idx_folder` (`published`,`client_id`,`access`,`folder`)
  1281. ) TYPE=MyISAM AUTO_INCREMENT=37 ;
  1282.  
  1283. --
  1284. -- Dumping data for table `#__plugins`
  1285. --
  1286.  
  1287. INSERT INTO `#__plugins` (`id`, `name`, `element`, `folder`, `access`, `ordering`, `published`, `iscore`, `client_id`, `checked_out`, `checked_out_time`, `params`) VALUES
  1288. (1, 'Authentication - Joomla', 'joomla', 'authentication', 0, 1, 1, 1, 0, 0, '0000-00-00 00:00:00', ''),
  1289. (2, 'Authentication - LDAP', 'ldap', 'authentication', 0, 2, 0, 1, 0, 0, '0000-00-00 00:00:00', 'host=\nport=389\nuse_ldapV3=0\nnegotiate_tls=0\nno_referrals=0\nauth_method=bind\nbase_dn=\nsearch_string=\nusers_dn=\nusername=\npassword=\nldap_fullname=fullName\nldap_email=mail\nldap_uid=uid\n\n'),
  1290. (3, 'Authentication - GMail', 'gmail', 'authentication', 0, 4, 0, 0, 0, 0, '0000-00-00 00:00:00', ''),
  1291. (4, 'Authentication - OpenID', 'openid', 'authentication', 0, 3, 0, 0, 0, 0, '0000-00-00 00:00:00', ''),
  1292. (5, 'User - Joomla!', 'joomla', 'user', 0, 0, 1, 0, 0, 0, '0000-00-00 00:00:00', 'autoregister=1\n\n'),
  1293. (6, 'Search - Content', 'content', 'search', 0, 1, 1, 1, 0, 0, '0000-00-00 00:00:00', 'search_limit=50\nsearch_content=1\nsearch_uncategorised=1\nsearch_archived=1\n\n'),
  1294. (7, 'Search - Contacts', 'contacts', 'search', 0, 3, 1, 1, 0, 0, '0000-00-00 00:00:00', 'search_limit=50\n\n'),
  1295. (8, 'Search - Categories', 'categories', 'search', 0, 4, 1, 0, 0, 0, '0000-00-00 00:00:00', 'search_limit=50\n\n'),
  1296. (9, 'Search - Sections', 'sections', 'search', 0, 5, 1, 0, 0, 0, '0000-00-00 00:00:00', 'search_limit=50\n\n'),
  1297. (10, 'Search - Newsfeeds', 'newsfeeds', 'search', 0, 6, 1, 0, 0, 0, '0000-00-00 00:00:00', 'search_limit=50\n\n'),
  1298. (11, 'Search - Weblinks', 'weblinks', 'search', 0, 2, 1, 1, 0, 0, '0000-00-00 00:00:00', 'search_limit=50\n\n'),
  1299. (12, 'Content - Pagebreak', 'pagebreak', 'content', 0, 10000, 1, 1, 0, 0, '0000-00-00 00:00:00', 'enabled=1\ntitle=1\nmultipage_toc=1\nshowall=1\n\n'),
  1300. (13, 'Content - Rating', 'vote', 'content', 0, 4, 1, 1, 0, 0, '0000-00-00 00:00:00', ''),
  1301. (14, 'Content - Email Cloaking', 'emailcloak', 'content', 0, 5, 1, 0, 0, 0, '0000-00-00 00:00:00', 'mode=1\n\n'),
  1302. (15, 'Content - Code Hightlighter (GeSHi)', 'geshi', 'content', 0, 5, 0, 0, 0, 0, '0000-00-00 00:00:00', ''),
  1303. (16, 'Content - Load Module', 'loadmodule', 'content', 0, 6, 1, 0, 0, 0, '0000-00-00 00:00:00', 'enabled=1\nstyle=0\n\n'),
  1304. (17, 'Content - Page Navigation', 'pagenavigation', 'content', 0, 2, 1, 1, 0, 0, '0000-00-00 00:00:00', 'position=1\n\n'),
  1305. (18, 'Editor - No Editor', 'none', 'editors', 0, 0, 1, 1, 0, 0, '0000-00-00 00:00:00', ''),
  1306. (19, 'Editor - TinyMCE 2.0', 'tinymce', 'editors', 0, 0, 1, 1, 0, 0, '0000-00-00 00:00:00', 'theme=advanced\ncleanup=1\ncleanup_startup=0\nautosave=0\ncompressed=0\nrelative_urls=1\ntext_direction=ltr\nlang_mode=0\nlang_code=en\ninvalid_elements=applet\ncontent_css=1\ncontent_css_custom=\nnewlines=0\ntoolbar=top\nhr=1\nsmilies=1\ntable=1\nstyle=1\nlayer=1\nxhtmlxtras=0\ntemplate=0\ndirectionality=1\nfullscreen=1\nhtml_height=550\nhtml_width=750\npreview=1\ninsertdate=1\nformat_date=%Y-%m-%d\ninserttime=1\nformat_time=%H:%M:%S\n\n'),
  1307. (20, 'Editor - XStandard Lite 2.0', 'xstandard', 'editors', 0, 0, 1, 1, 0, 0, '0000-00-00 00:00:00', ''),
  1308. (21, 'Editor Button - Image', 'image', 'editors-xtd', 0, 0, 1, 0, 0, 0, '0000-00-00 00:00:00', ''),
  1309. (22, 'Editor Button - Pagebreak', 'pagebreak', 'editors-xtd', 0, 0, 1, 0, 0, 0, '0000-00-00 00:00:00', ''),
  1310. (23, 'Editor Button - Readmore', 'readmore', 'editors-xtd', 0, 0, 1, 0, 0, 0, '0000-00-00 00:00:00', ''),
  1311. (24, 'XML-RPC - Joomla', 'joomla', 'xmlrpc', 0, 7, 0, 1, 0, 0, '0000-00-00 00:00:00', ''),
  1312. (25, 'XML-RPC - Blogger API', 'blogger', 'xmlrpc', 0, 7, 0, 1, 0, 0, '0000-00-00 00:00:00', 'catid=1\nsectionid=0\n\n'),
  1313. (27, 'System - SEF', 'sef', 'system', 0, 1, 1, 0, 0, 0, '0000-00-00 00:00:00', ''),
  1314. (28, 'System - Debug', 'debug', 'system', 0, 2, 1, 0, 0, 0, '0000-00-00 00:00:00', 'queries=1\nmemory=1\nlangauge=1\n\n'),
  1315. (29, 'System - Legacy', 'legacy', 'system', 0, 3, 0, 1, 0, 0, '0000-00-00 00:00:00', 'route=0\n\n'),
  1316. (30, 'System - Cache', 'cache', 'system', 0, 4, 0, 1, 0, 0, '0000-00-00 00:00:00', 'browsercache=0\ncachetime=15\n\n'),
  1317. (31, 'System - Log', 'log', 'system', 0, 5, 0, 1, 0, 0, '0000-00-00 00:00:00', ''),
  1318. (32, 'System - Remember Me', 'remember', 'system', 0, 6, 1, 1, 0, 0, '0000-00-00 00:00:00', ''),
  1319. (33, 'System - Backlink', 'backlink', 'system', 0, 7, 0, 1, 0, 0, '0000-00-00 00:00:00', ''),
  1320. (35, 'YOOeffects', 'yoo_effects', 'system', 0, 0, 1, 0, 0, 62, '2008-03-27 22:08:03', 'lightbox=1\nreflection=1\nspotlight=1\ngzip=1\n');
  1321.  
  1322. -- --------------------------------------------------------
  1323.  
  1324. --
  1325. -- Table structure for table `#__polls`
  1326. --
  1327.  
  1328. DROP TABLE IF EXISTS `#__polls`;
  1329. CREATE TABLE IF NOT EXISTS `#__polls` (
  1330. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  1331. `title` text NOT NULL,
  1332. `alias` varchar(255) NOT NULL DEFAULT '',
  1333. `voters` int(9) NOT NULL DEFAULT '0',
  1334. `checked_out` int(11) NOT NULL DEFAULT '0',
  1335. `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  1336. `published` tinyint(1) NOT NULL DEFAULT '0',
  1337. `access` int(11) NOT NULL DEFAULT '0',
  1338. `lag` int(11) NOT NULL DEFAULT '0',
  1339. PRIMARY KEY (`id`)
  1340. ) TYPE=MyISAM AUTO_INCREMENT=15 ;
  1341.  
  1342. --
  1343. -- Dumping data for table `#__polls`
  1344. --
  1345.  
  1346. INSERT INTO `#__polls` (`id`, `title`, `alias`, `voters`, `checked_out`, `checked_out_time`, `published`, `access`, `lag`) VALUES
  1347. (14, 'Joomla! is used for?', 'joomla-is-used-for', 11, 0, '0000-00-00 00:00:00', 1, 0, 86400);
  1348.  
  1349. -- --------------------------------------------------------
  1350.  
  1351. --
  1352. -- Table structure for table `#__poll_data`
  1353. --
  1354.  
  1355. DROP TABLE IF EXISTS `#__poll_data`;
  1356. CREATE TABLE IF NOT EXISTS `#__poll_data` (
  1357. `id` int(11) NOT NULL AUTO_INCREMENT,
  1358. `pollid` int(11) NOT NULL DEFAULT '0',
  1359. `text` text NOT NULL,
  1360. `hits` int(11) NOT NULL DEFAULT '0',
  1361. PRIMARY KEY (`id`),
  1362. KEY `pollid` (`pollid`,`text`(1))
  1363. ) TYPE=MyISAM AUTO_INCREMENT=13 ;
  1364.  
  1365. --
  1366. -- Dumping data for table `#__poll_data`
  1367. --
  1368.  
  1369. INSERT INTO `#__poll_data` (`id`, `pollid`, `text`, `hits`) VALUES
  1370. (1, 14, 'Community Sites', 2),
  1371. (2, 14, 'Public Brand Sites', 3),
  1372. (3, 14, 'eCommerce', 1),
  1373. (4, 14, 'Blogs', 0),
  1374. (5, 14, 'Intranets', 0),
  1375. (6, 14, 'Photo and Media Sites', 2),
  1376. (7, 14, 'All of the Above!', 3),
  1377. (8, 14, '', 0),
  1378. (9, 14, '', 0),
  1379. (10, 14, '', 0),
  1380. (11, 14, '', 0),
  1381. (12, 14, '', 0);
  1382.  
  1383. -- --------------------------------------------------------
  1384.  
  1385. --
  1386. -- Table structure for table `#__poll_date`
  1387. --
  1388.  
  1389. DROP TABLE IF EXISTS `#__poll_date`;
  1390. CREATE TABLE IF NOT EXISTS `#__poll_date` (
  1391. `id` bigint(20) NOT NULL AUTO_INCREMENT,
  1392. `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  1393. `vote_id` int(11) NOT NULL DEFAULT '0',
  1394. `poll_id` int(11) NOT NULL DEFAULT '0',
  1395. PRIMARY KEY (`id`),
  1396. KEY `poll_id` (`poll_id`)
  1397. ) TYPE=MyISAM AUTO_INCREMENT=12 ;
  1398.  
  1399. --
  1400. -- Dumping data for table `#__poll_date`
  1401. --
  1402.  
  1403. INSERT INTO `#__poll_date` (`id`, `date`, `vote_id`, `poll_id`) VALUES
  1404. (1, '2006-10-09 13:01:58', 1, 14),
  1405. (2, '2006-10-10 15:19:43', 7, 14),
  1406. (3, '2006-10-11 11:08:16', 7, 14),
  1407. (4, '2006-10-11 15:02:26', 2, 14),
  1408. (5, '2006-10-11 15:43:03', 7, 14),
  1409. (6, '2006-10-11 15:43:38', 7, 14),
  1410. (7, '2006-10-12 00:51:13', 2, 14),
  1411. (8, '2007-05-10 19:12:29', 3, 14),
  1412. (9, '2007-05-14 14:18:00', 6, 14),
  1413. (10, '2007-06-10 15:20:29', 6, 14),
  1414. (11, '2007-07-03 12:37:53', 2, 14);
  1415.  
  1416. -- --------------------------------------------------------
  1417.  
  1418. --
  1419. -- Table structure for table `#__poll_menu`
  1420. --
  1421.  
  1422. DROP TABLE IF EXISTS `#__poll_menu`;
  1423. CREATE TABLE IF NOT EXISTS `#__poll_menu` (
  1424. `pollid` int(11) NOT NULL DEFAULT '0',
  1425. `menuid` int(11) NOT NULL DEFAULT '0',
  1426. PRIMARY KEY (`pollid`,`menuid`)
  1427. ) TYPE=MyISAM;
  1428.  
  1429. --
  1430. -- Dumping data for table `#__poll_menu`
  1431. --
  1432.  
  1433.  
  1434. -- --------------------------------------------------------
  1435.  
  1436. --
  1437. -- Table structure for table `#__sections`
  1438. --
  1439.  
  1440. DROP TABLE IF EXISTS `#__sections`;
  1441. CREATE TABLE IF NOT EXISTS `#__sections` (
  1442. `id` int(11) NOT NULL AUTO_INCREMENT,
  1443. `title` text NOT NULL,
  1444. `name` text NOT NULL,
  1445. `alias` varchar(255) NOT NULL DEFAULT '',
  1446. `image` text NOT NULL,
  1447. `scope` varchar(50) NOT NULL DEFAULT '',
  1448. `image_position` varchar(90) NOT NULL DEFAULT '',
  1449. `description` text NOT NULL,
  1450. `published` tinyint(1) NOT NULL DEFAULT '0',
  1451. `checked_out` int(11) unsigned NOT NULL DEFAULT '0',
  1452. `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  1453. `ordering` int(11) NOT NULL DEFAULT '0',
  1454. `access` tinyint(3) unsigned NOT NULL DEFAULT '0',
  1455. `count` int(11) NOT NULL DEFAULT '0',
  1456. `params` text NOT NULL,
  1457. PRIMARY KEY (`id`),
  1458. KEY `idx_scope` (`scope`)
  1459. ) TYPE=MyISAM AUTO_INCREMENT=6 ;
  1460.  
  1461. --
  1462. -- Dumping data for table `#__sections`
  1463. --
  1464.  
  1465. INSERT INTO `#__sections` (`id`, `title`, `name`, `alias`, `image`, `scope`, `image_position`, `description`, `published`, `checked_out`, `checked_out_time`, `ordering`, `access`, `count`, `params`) VALUES
  1466. (4, 'Joomla!', '', 'joomla', 'powered_by.png', 'content', 'right', 'As with previous releases, Joomla! provides a unified and easy-to-use framework for delivering content for Web sites of all kinds. To support the changing nature of the Internet and emerging Web technologies, Joomla! required substantial restructuring of its core functionality and we also used this effort to simplify many challenges within the current user interface. Joomla! 1.5 has many new features.', 1, 0, '0000-00-00 00:00:00', 1, 0, 21, ''),
  1467. (5, 'YOOtheme', '', 'yootheme', '', 'content', 'left', '', 1, 0, '0000-00-00 00:00:00', 2, 0, 21, '');
  1468.  
  1469. -- --------------------------------------------------------
  1470.  
  1471. --
  1472. -- Table structure for table `#__session`
  1473. --
  1474.  
  1475. DROP TABLE IF EXISTS `#__session`;
  1476. CREATE TABLE IF NOT EXISTS `#__session` (
  1477. `username` varchar(150) DEFAULT '',
  1478. `time` varchar(14) DEFAULT '',
  1479. `session_id` varchar(200) NOT NULL DEFAULT '0',
  1480. `guest` tinyint(4) DEFAULT '1',
  1481. `userid` int(11) DEFAULT '0',
  1482. `usertype` varchar(150) DEFAULT '',
  1483. `gid` tinyint(3) unsigned NOT NULL DEFAULT '0',
  1484. `client_id` tinyint(3) unsigned NOT NULL DEFAULT '0',
  1485. `data` longtext,
  1486. PRIMARY KEY (`session_id`(64)),
  1487. KEY `whosonline` (`guest`,`usertype`),
  1488. KEY `userid` (`userid`),
  1489. KEY `time` (`time`)
  1490. ) TYPE=MyISAM;
  1491.  
  1492. --
  1493. -- Dumping data for table `#__session`
  1494. --
  1495.  
  1496. INSERT INTO `#__session` (`username`, `time`, `session_id`, `guest`, `userid`, `usertype`, `gid`, `client_id`, `data`) VALUES
  1497. ('admin', '1246482286', 'edb3d7e2712522fe342f50fb43196c06', 0, 62, 'Super Administrator', 25, 1, '__default|a:8:{s:15:"session.counter";i:14;s:19:"session.timer.start";i:1246481090;s:18:"session.timer.last";i:1246482286;s:17:"session.timer.now";i:1246482286;s:22:"session.client.browser";s:110:"Mozilla/5.0 (Windows; U; Windows NT 6.0; de; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 (.NET CLR 3.5.30729)";s:8:"registry";O:9:"JRegistry":3:{s:17:"_defaultNameSpace";s:7:"session";s:9:"_registry";a:5:{s:7:"session";a:1:{s:4:"data";O:8:"stdClass":0:{}}s:11:"application";a:1:{s:4:"data";O:8:"stdClass":1:{s:4:"lang";s:0:"";}}s:6:"global";a:1:{s:4:"data";O:8:"stdClass":1:{s:4:"list";O:8:"stdClass":1:{s:5:"limit";s:3:"100";}}}s:13:"com_installer";a:1:{s:4:"data";O:8:"stdClass":1:{s:10:"limitstart";O:8:"stdClass":1:{s:9:"component";i:0;}}}s:9:"com_menus";a:1:{s:4:"data";O:8:"stdClass":1:{s:8:"menutype";s:8:"mainmenu";}}}s:7:"_errors";a:0:{}}s:4:"user";O:5:"JUser":19:{s:2:"id";s:2:"62";s:4:"name";s:13:"Administrator";s:8:"username";s:5:"admin";s:5:"email";s:13:"email@0.0.0.0";s:8:"password";s:65:"5f9e318e14c8fce0a91671537cfa6185:0m5MalepSiyYMPipdzUdrDboPJvgZewg";s:14:"password_clear";s:0:"";s:8:"usertype";s:19:"Super Administrator";s:5:"block";s:1:"0";s:9:"sendEmail";s:1:"1";s:3:"gid";s:2:"25";s:12:"registerDate";s:19:"2007-12-20 12:00:01";s:13:"lastvisitDate";s:19:"2009-07-01 18:16:33";s:10:"activation";s:0:"";s:6:"params";s:0:"";s:3:"aid";i:2;s:5:"guest";i:0;s:7:"_params";O:10:"JParameter":7:{s:4:"_raw";s:0:"";s:4:"_xml";N;s:9:"_elements";a:0:{}s:12:"_elementPath";a:1:{i:0;s:87:"C:\\Webserver\\YOOtheme\\Templates\\Phoenix\\Website\\libraries\\joomla\\html\\parameter\\element";}s:17:"_defaultNameSpace";s:8:"_default";s:9:"_registry";a:1:{s:8:"_default";a:1:{s:4:"data";O:8:"stdClass":0:{}}}s:7:"_errors";a:0:{}}s:9:"_errorMsg";N;s:7:"_errors";a:0:{}}s:13:"session.token";s:32:"3973e3eeeb967817b1b9f622f46c748b";}'),
  1498. ('', '1246482291', '40632deb73e82aadf52e4a3f3dbde9ca', 1, 0, '', 0, 0, '__default|a:8:{s:22:"session.client.browser";s:110:"Mozilla/5.0 (Windows; U; Windows NT 6.0; de; rv:1.9.0.11) Gecko/2009060215 Firefox/3.0.11 (.NET CLR 3.5.30729)";s:15:"session.counter";i:204;s:8:"registry";O:9:"JRegistry":3:{s:17:"_defaultNameSpace";s:7:"session";s:9:"_registry";a:1:{s:7:"session";a:1:{s:4:"data";O:8:"stdClass":0:{}}}s:7:"_errors";a:0:{}}s:4:"user";O:5:"JUser":19:{s:2:"id";i:0;s:4:"name";N;s:8:"username";N;s:5:"email";N;s:8:"password";N;s:14:"password_clear";s:0:"";s:8:"usertype";N;s:5:"block";N;s:9:"sendEmail";i:0;s:3:"gid";i:0;s:12:"registerDate";N;s:13:"lastvisitDate";N;s:10:"activation";N;s:6:"params";N;s:3:"aid";i:0;s:5:"guest";i:1;s:7:"_params";O:10:"JParameter":7:{s:4:"_raw";s:0:"";s:4:"_xml";N;s:9:"_elements";a:0:{}s:12:"_elementPath";a:1:{i:0;s:87:"C:\\Webserver\\YOOtheme\\Templates\\Phoenix\\Website\\libraries\\joomla\\html\\parameter\\element";}s:17:"_defaultNameSpace";s:8:"_default";s:9:"_registry";a:1:{s:8:"_default";a:1:{s:4:"data";O:8:"stdClass":0:{}}}s:7:"_errors";a:0:{}}s:9:"_errorMsg";N;s:7:"_errors";a:0:{}}s:13:"session.token";s:32:"c2a91175db09f2ceaa7841d060c69fde";s:19:"session.timer.start";i:1246470690;s:18:"session.timer.last";i:1246482288;s:17:"session.timer.now";i:1246482291;}');
  1499.  
  1500. -- --------------------------------------------------------
  1501.  
  1502. --
  1503. -- Table structure for table `#__stats_agents`
  1504. --
  1505.  
  1506. DROP TABLE IF EXISTS `#__stats_agents`;
  1507. CREATE TABLE IF NOT EXISTS `#__stats_agents` (
  1508. `agent` varchar(255) NOT NULL DEFAULT '',
  1509. `type` tinyint(1) unsigned NOT NULL DEFAULT '0',
  1510. `hits` int(11) unsigned NOT NULL DEFAULT '1'
  1511. ) TYPE=MyISAM;
  1512.  
  1513. --
  1514. -- Dumping data for table `#__stats_agents`
  1515. --
  1516.  
  1517.  
  1518. -- --------------------------------------------------------
  1519.  
  1520. --
  1521. -- Table structure for table `#__templates_menu`
  1522. --
  1523.  
  1524. DROP TABLE IF EXISTS `#__templates_menu`;
  1525. CREATE TABLE IF NOT EXISTS `#__templates_menu` (
  1526. `template` text NOT NULL,
  1527. `menuid` int(11) NOT NULL DEFAULT '0',
  1528. `client_id` tinyint(4) NOT NULL DEFAULT '0',
  1529. PRIMARY KEY (`menuid`,`client_id`,`template`(255))
  1530. ) TYPE=MyISAM;
  1531.  
  1532. --
  1533. -- Dumping data for table `#__templates_menu`
  1534. --
  1535.  
  1536. INSERT INTO `#__templates_menu` (`template`, `menuid`, `client_id`) VALUES
  1537. ('yoo_phoenix', 0, 0),
  1538. ('khepri', 0, 1);
  1539.  
  1540. -- --------------------------------------------------------
  1541.  
  1542. --
  1543. -- Table structure for table `#__users`
  1544. --
  1545.  
  1546. DROP TABLE IF EXISTS `#__users`;
  1547. CREATE TABLE IF NOT EXISTS `#__users` (
  1548. `id` int(11) NOT NULL AUTO_INCREMENT,
  1549. `name` text NOT NULL,
  1550. `username` varchar(150) NOT NULL DEFAULT '',
  1551. `email` varchar(100) NOT NULL DEFAULT '',
  1552. `password` varchar(100) NOT NULL DEFAULT '',
  1553. `usertype` varchar(75) NOT NULL DEFAULT '',
  1554. `block` tinyint(4) NOT NULL DEFAULT '0',
  1555. `sendEmail` tinyint(4) DEFAULT '0',
  1556. `gid` tinyint(3) unsigned NOT NULL DEFAULT '1',
  1557. `registerDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  1558. `lastvisitDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  1559. `activation` varchar(100) NOT NULL DEFAULT '',
  1560. `params` text NOT NULL,
  1561. PRIMARY KEY (`id`),
  1562. KEY `usertype` (`usertype`),
  1563. KEY `idx_name` (`name`(255)),
  1564. KEY `gid_block` (`gid`,`block`),
  1565. KEY `username` (`username`),
  1566. KEY `email` (`email`)
  1567. ) TYPE=MyISAM AUTO_INCREMENT=63 ;
  1568.  
  1569.  
  1570. -- --------------------------------------------------------
  1571.  
  1572. --
  1573. -- Table structure for table `#__weblinks`
  1574. --
  1575.  
  1576. DROP TABLE IF EXISTS `#__weblinks`;
  1577. CREATE TABLE IF NOT EXISTS `#__weblinks` (
  1578. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  1579. `catid` int(11) NOT NULL DEFAULT '0',
  1580. `sid` int(11) NOT NULL DEFAULT '0',
  1581. `title` text NOT NULL,
  1582. `alias` varchar(255) NOT NULL DEFAULT '',
  1583. `url` varchar(250) NOT NULL DEFAULT '',
  1584. `description` text NOT NULL,
  1585. `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  1586. `hits` int(11) NOT NULL DEFAULT '0',
  1587. `published` tinyint(1) NOT NULL DEFAULT '0',
  1588. `checked_out` int(11) NOT NULL DEFAULT '0',
  1589. `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  1590. `ordering` int(11) NOT NULL DEFAULT '0',
  1591. `archived` tinyint(1) NOT NULL DEFAULT '0',
  1592. `approved` tinyint(1) NOT NULL DEFAULT '1',
  1593. `params` text NOT NULL,
  1594. PRIMARY KEY (`id`),
  1595. KEY `catid` (`catid`,`published`,`archived`)
  1596. ) TYPE=MyISAM AUTO_INCREMENT=7 ;
  1597.  
  1598. --
  1599. -- Dumping data for table `#__weblinks`
  1600. --
  1601.  
  1602. INSERT INTO `#__weblinks` (`id`, `catid`, `sid`, `title`, `alias`, `url`, `description`, `date`, `hits`, `published`, `checked_out`, `checked_out_time`, `ordering`, `archived`, `approved`, `params`) VALUES
  1603. (1, 2, 0, 'Joomla!', 'joomla', 'http://www.joomla.org', 'Home of Joomla!', '2005-02-14 15:19:02', 3, 1, 0, '0000-00-00 00:00:00', 1, 0, 1, 'target=0'),
  1604. (2, 2, 0, 'php.net', 'php', 'http://www.php.net', 'The language that Joomla! is developed in', '2004-07-07 11:33:24', 6, 1, 0, '0000-00-00 00:00:00', 3, 0, 1, ''),
  1605. (3, 2, 0, 'MySQL', 'mysql', 'http://www.mysql.com', 'The database that Joomla! uses', '2004-07-07 10:18:31', 1, 1, 0, '0000-00-00 00:00:00', 5, 0, 1, ''),
  1606. (4, 2, 0, 'OpenSourceMatters', 'opensourcematters', 'http://www.opensourcematters.org', 'Home of OSM', '2005-02-14 15:19:02', 11, 1, 0, '0000-00-00 00:00:00', 2, 0, 1, 'target=0'),
  1607. (5, 2, 0, 'Joomla! - Forums', 'joomla-forums', 'http://forum.joomla.org', 'Joomla! Forums', '2005-02-14 15:19:02', 4, 1, 0, '0000-00-00 00:00:00', 4, 0, 1, 'target=0'),
  1608. (6, 2, 0, 'Ohloh Tracking of Joomla!', 'ohloh-tracking-of-joomla', 'http://www.ohloh.net/projects/20', 'Objective reports from Ohloh about Joomla''s development activity. Joomla! has some star developers with serious kudos.', '2007-07-19 09:28:31', 1, 1, 0, '0000-00-00 00:00:00', 6, 0, 1, 'target=0\n\n');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement