| 1 | # |
|---|
| 2 | # Table structure for table `rssfitJ_misc` |
|---|
| 3 | # |
|---|
| 4 | CREATE TABLE `rssfitJ_misc` ( |
|---|
| 5 | `misc_id` smallint(5) unsigned NOT NULL auto_increment, |
|---|
| 6 | `misc_category` varchar(15) NOT NULL default '', |
|---|
| 7 | `misc_title` varchar(255) NOT NULL default '', |
|---|
| 8 | `misc_content` text NOT NULL, |
|---|
| 9 | PRIMARY KEY (`misc_id`) |
|---|
| 10 | ) TYPE=MyISAM ; |
|---|
| 11 | |
|---|
| 12 | # |
|---|
| 13 | # Dumping data for table `rssfitJ_misc` |
|---|
| 14 | # |
|---|
| 15 | INSERT INTO `rssfitJ_misc` VALUES (1, 'intro', 'Syndicate this site', '<a href="rss.php"><img src="images/rss.gif" alt="RSS feed" /></a> <a href="rss.php"> <img src="images/xml.gif" alt="RSS feed" /></a>\n\nAt {SITENAME} we provide our XML <a href="rss.php">RSS feed</a> that you can quickly find the latest updates and short descriptions with an RSS reader.\n\nIf you are unfamiliar with RSS, it is a <a href="http://blogs.law.harvard.edu/tech/rss">web standard</a> for publishing news headlines. You can read the RSS feed with special software and easily embed them into blogs and other web content.\n\nFor the RSS reader software, we recommend <a href="http://ranchero.com/netnewswire/#lite">NetNewsWire Lite</a> (Mac OS X), <a href="http://sourceforge.net/projects/feedreader">Feedreader</a> (Windows) and <a href="http://www.disobey.com/amphetadesk/">AmphetaDesk</a> (cross platform), or you may search for an <a href="http://www.google.com/search?ie=UTF-8&oe=UTF-8&q=RSS+reader">RSS reader</a> in Google.\n\nBy the way, the RSS feed of this site is generated by <a href="http://gyakubiki.kir.jp/">RSSFitJ</a>.'); |
|---|
| 16 | |
|---|
| 17 | # |
|---|
| 18 | # Table structure for table `rssfitJ_plugins` |
|---|
| 19 | # |
|---|
| 20 | CREATE TABLE `rssfitJ_plugins` ( |
|---|
| 21 | `rssfj_conf_id` int(5) unsigned NOT NULL auto_increment, |
|---|
| 22 | `rssfj_filename` varchar(50) NOT NULL default '', |
|---|
| 23 | `rssfj_activated` tinyint(1) NOT NULL default '0', |
|---|
| 24 | `rssfj_grab` tinyint(2) NOT NULL default '0', |
|---|
| 25 | `rssfj_order` tinyint(2) NOT NULL default '0', |
|---|
| 26 | `rssfj_param` text NOT NULL default '', |
|---|
| 27 | PRIMARY KEY (`rssfj_conf_id`), |
|---|
| 28 | KEY `rssfj_activated` (`rssfj_activated`), |
|---|
| 29 | KEY `rssfj_order` (`rssfj_order`) |
|---|
| 30 | ) TYPE=MyISAM ; |
|---|