Browse CVS Repository
Contents of /xoonips/AL/test/commonal_cppunit.sql
Parent Directory
| Revision Log
| Revision Graph
Revision 1.23 -
( show annotations)
( download)
Thu Nov 17 11:01:25 2005 UTC
(18 years, 4 months ago)
by tani
Branch: MAIN
CVS Tags: AL_PORTING, REL20051226, REL20060323, tag20060615, tag20070307current, tag20061115, tag20061130, merge_to_20060605, tag20070307, REL20060213, RELENG_2_0_0a_RELEASE, tag20060622, merge_to_20060411, HEAD
Branch point for: XOONIPS_STABLE_32, XOONIPS_STABLE_3, XOONIPS_STABLE_2
Changes since 1.22: +172 -85 lines
*** empty log message ***
| 1 |
-- MySQL dump 9.11 |
| 2 |
-- |
| 3 |
-- Host: localhost Database: cppunit_test |
| 4 |
-- ------------------------------------------------------ |
| 5 |
-- Server version 4.0.25-standard |
| 6 |
|
| 7 |
-- |
| 8 |
-- Table structure for table `x_avatar` |
| 9 |
-- |
| 10 |
|
| 11 |
DROP TABLE IF EXISTS x_avatar; |
| 12 |
CREATE TABLE x_avatar ( |
| 13 |
avatar_id mediumint(8) unsigned NOT NULL auto_increment, |
| 14 |
avatar_file varchar(30) NOT NULL default '', |
| 15 |
avatar_name varchar(100) NOT NULL default '', |
| 16 |
avatar_mimetype varchar(30) NOT NULL default '', |
| 17 |
avatar_created int(10) NOT NULL default '0', |
| 18 |
avatar_display tinyint(1) unsigned NOT NULL default '0', |
| 19 |
avatar_weight smallint(5) unsigned NOT NULL default '0', |
| 20 |
avatar_type char(1) NOT NULL default '', |
| 21 |
PRIMARY KEY (avatar_id), |
| 22 |
KEY avatar_type (avatar_type,avatar_display) |
| 23 |
) TYPE=MyISAM; |
| 24 |
|
| 25 |
-- |
| 26 |
-- Dumping data for table `x_avatar` |
| 27 |
-- |
| 28 |
|
| 29 |
|
| 30 |
-- |
| 31 |
-- Table structure for table `x_avatar_user_link` |
| 32 |
-- |
| 33 |
|
| 34 |
DROP TABLE IF EXISTS x_avatar_user_link; |
| 35 |
CREATE TABLE x_avatar_user_link ( |
| 36 |
avatar_id mediumint(8) unsigned NOT NULL default '0', |
| 37 |
user_id mediumint(8) unsigned NOT NULL default '0', |
| 38 |
KEY avatar_user_id (avatar_id,user_id) |
| 39 |
) TYPE=MyISAM; |
| 40 |
|
| 41 |
-- |
| 42 |
-- Dumping data for table `x_avatar_user_link` |
| 43 |
-- |
| 44 |
|
| 45 |
|
| 46 |
-- |
| 47 |
-- Table structure for table `x_banner` |
| 48 |
-- |
| 49 |
|
| 50 |
DROP TABLE IF EXISTS x_banner; |
| 51 |
CREATE TABLE x_banner ( |
| 52 |
bid smallint(5) unsigned NOT NULL auto_increment, |
| 53 |
cid tinyint(3) unsigned NOT NULL default '0', |
| 54 |
imptotal mediumint(8) unsigned NOT NULL default '0', |
| 55 |
impmade mediumint(8) unsigned NOT NULL default '0', |
| 56 |
clicks mediumint(8) unsigned NOT NULL default '0', |
| 57 |
imageurl varchar(255) NOT NULL default '', |
| 58 |
clickurl varchar(255) NOT NULL default '', |
| 59 |
date int(10) NOT NULL default '0', |
| 60 |
htmlbanner tinyint(1) NOT NULL default '0', |
| 61 |
htmlcode text NOT NULL, |
| 62 |
PRIMARY KEY (bid), |
| 63 |
KEY idxbannercid (cid), |
| 64 |
KEY idxbannerbidcid (bid,cid) |
| 65 |
) TYPE=MyISAM; |
| 66 |
|
| 67 |
-- |
| 68 |
-- Dumping data for table `x_banner` |
| 69 |
-- |
| 70 |
|
| 71 |
INSERT INTO x_banner VALUES (1,1,0,46,0,'http://10.12.60.61/~youi/XooNIps/images/banners/xoops_banner.gif','http://jp.xoops.org/',1008813250,0,''); |
| 72 |
INSERT INTO x_banner VALUES (2,1,0,46,0,'http://10.12.60.61/~youi/XooNIps/images/banners/xoops_banner_2.gif','http://jp.xoops.org/',1008813250,0,''); |
| 73 |
INSERT INTO x_banner VALUES (3,1,0,41,0,'http://10.12.60.61/~youi/XooNIps/images/banners/banner.swf','http://jp.xoops.org/',1008813250,0,''); |
| 74 |
|
| 75 |
-- |
| 76 |
-- Table structure for table `x_bannerclient` |
| 77 |
-- |
| 78 |
|
| 79 |
DROP TABLE IF EXISTS x_bannerclient; |
| 80 |
CREATE TABLE x_bannerclient ( |
| 81 |
cid smallint(5) unsigned NOT NULL auto_increment, |
| 82 |
name varchar(60) NOT NULL default '', |
| 83 |
contact varchar(60) NOT NULL default '', |
| 84 |
email varchar(60) NOT NULL default '', |
| 85 |
login varchar(10) NOT NULL default '', |
| 86 |
passwd varchar(10) NOT NULL default '', |
| 87 |
extrainfo text NOT NULL, |
| 88 |
PRIMARY KEY (cid), |
| 89 |
KEY login (login) |
| 90 |
) TYPE=MyISAM; |
| 91 |
|
| 92 |
-- |
| 93 |
-- Dumping data for table `x_bannerclient` |
| 94 |
-- |
| 95 |
|
| 96 |
INSERT INTO x_bannerclient VALUES (1,'XOOPS','XOOPS Dev Team','webmaster@xoops.org','','',''); |
| 97 |
|
| 98 |
-- |
| 99 |
-- Table structure for table `x_bannerfinish` |
| 100 |
-- |
| 101 |
|
| 102 |
DROP TABLE IF EXISTS x_bannerfinish; |
| 103 |
CREATE TABLE x_bannerfinish ( |
| 104 |
bid smallint(5) unsigned NOT NULL auto_increment, |
| 105 |
cid smallint(5) unsigned NOT NULL default '0', |
| 106 |
impressions mediumint(8) unsigned NOT NULL default '0', |
| 107 |
clicks mediumint(8) unsigned NOT NULL default '0', |
| 108 |
datestart int(10) unsigned NOT NULL default '0', |
| 109 |
dateend int(10) unsigned NOT NULL default '0', |
| 110 |
PRIMARY KEY (bid), |
| 111 |
KEY cid (cid) |
| 112 |
) TYPE=MyISAM; |
| 113 |
|
| 114 |
-- |
| 115 |
-- Dumping data for table `x_bannerfinish` |
| 116 |
-- |
| 117 |
|
| 118 |
|
| 119 |
-- |
| 120 |
-- Table structure for table `x_block_module_link` |
| 121 |
-- |
| 122 |
|
| 123 |
DROP TABLE IF EXISTS x_block_module_link; |
| 124 |
CREATE TABLE x_block_module_link ( |
| 125 |
block_id mediumint(8) unsigned NOT NULL default '0', |
| 126 |
module_id smallint(5) NOT NULL default '0', |
| 127 |
KEY module_id (module_id), |
| 128 |
KEY block_id (block_id) |
| 129 |
) TYPE=MyISAM; |
| 130 |
|
| 131 |
-- |
| 132 |
-- Dumping data for table `x_block_module_link` |
| 133 |
-- |
| 134 |
|
| 135 |
INSERT INTO x_block_module_link VALUES (1,0); |
| 136 |
INSERT INTO x_block_module_link VALUES (2,0); |
| 137 |
INSERT INTO x_block_module_link VALUES (3,0); |
| 138 |
INSERT INTO x_block_module_link VALUES (4,0); |
| 139 |
INSERT INTO x_block_module_link VALUES (5,0); |
| 140 |
INSERT INTO x_block_module_link VALUES (6,0); |
| 141 |
INSERT INTO x_block_module_link VALUES (7,0); |
| 142 |
INSERT INTO x_block_module_link VALUES (8,0); |
| 143 |
INSERT INTO x_block_module_link VALUES (9,0); |
| 144 |
INSERT INTO x_block_module_link VALUES (10,0); |
| 145 |
INSERT INTO x_block_module_link VALUES (11,0); |
| 146 |
INSERT INTO x_block_module_link VALUES (12,0); |
| 147 |
INSERT INTO x_block_module_link VALUES (13,0); |
| 148 |
INSERT INTO x_block_module_link VALUES (14,-1); |
| 149 |
INSERT INTO x_block_module_link VALUES (15,0); |
| 150 |
INSERT INTO x_block_module_link VALUES (16,-1); |
| 151 |
INSERT INTO x_block_module_link VALUES (17,0); |
| 152 |
INSERT INTO x_block_module_link VALUES (18,0); |
| 153 |
|
| 154 |
-- |
| 155 |
-- Table structure for table `x_config` |
| 156 |
-- |
| 157 |
|
| 158 |
DROP TABLE IF EXISTS x_config; |
| 159 |
CREATE TABLE x_config ( |
| 160 |
conf_id smallint(5) unsigned NOT NULL auto_increment, |
| 161 |
conf_modid smallint(5) unsigned NOT NULL default '0', |
| 162 |
conf_catid smallint(5) unsigned NOT NULL default '0', |
| 163 |
conf_name varchar(25) NOT NULL default '', |
| 164 |
conf_title varchar(30) NOT NULL default '', |
| 165 |
conf_value text NOT NULL, |
| 166 |
conf_desc varchar(30) NOT NULL default '', |
| 167 |
conf_formtype varchar(15) NOT NULL default '', |
| 168 |
conf_valuetype varchar(10) NOT NULL default '', |
| 169 |
conf_order smallint(5) unsigned NOT NULL default '0', |
| 170 |
PRIMARY KEY (conf_id), |
| 171 |
KEY conf_mod_cat_id (conf_modid,conf_catid) |
| 172 |
) TYPE=MyISAM; |
| 173 |
|
| 174 |
-- |
| 175 |
-- Dumping data for table `x_config` |
| 176 |
-- |
| 177 |
|
| 178 |
INSERT INTO x_config VALUES (1,0,1,'sitename','_MD_AM_SITENAME','XOOPS Site','_MD_AM_SITENAMEDSC','textbox','text',0); |
| 179 |
INSERT INTO x_config VALUES (2,0,1,'slogan','_MD_AM_SLOGAN','Just Use it!','_MD_AM_SLOGANDSC','textbox','text',2); |
| 180 |
INSERT INTO x_config VALUES (3,0,1,'language','_MD_AM_LANGUAGE','english','_MD_AM_LANGUAGEDSC','language','other',4); |
| 181 |
INSERT INTO x_config VALUES (4,0,1,'startpage','_MD_AM_STARTPAGE','xoonips','_MD_AM_STARTPAGEDSC','startpage','other',6); |
| 182 |
INSERT INTO x_config VALUES (5,0,1,'server_TZ','_MD_AM_SERVERTZ','0','_MD_AM_SERVERTZDSC','timezone','float',8); |
| 183 |
INSERT INTO x_config VALUES (6,0,1,'default_TZ','_MD_AM_DEFAULTTZ','0','_MD_AM_DEFAULTTZDSC','timezone','float',10); |
| 184 |
INSERT INTO x_config VALUES (7,0,1,'theme_set','_MD_AM_DTHEME','xoonips','_MD_AM_DTHEMEDSC','theme','other',12); |
| 185 |
INSERT INTO x_config VALUES (8,0,1,'anonymous','_MD_AM_ANONNAME','Anonymous','_MD_AM_ANONNAMEDSC','textbox','text',15); |
| 186 |
INSERT INTO x_config VALUES (9,0,1,'gzip_compression','_MD_AM_USEGZIP','0','_MD_AM_USEGZIPDSC','yesno','int',16); |
| 187 |
INSERT INTO x_config VALUES (10,0,1,'usercookie','_MD_AM_USERCOOKIE','xoops_user','_MD_AM_USERCOOKIEDSC','textbox','text',18); |
| 188 |
INSERT INTO x_config VALUES (11,0,1,'session_expire','_MD_AM_SESSEXPIRE','15','_MD_AM_SESSEXPIREDSC','textbox','int',22); |
| 189 |
INSERT INTO x_config VALUES (12,0,1,'banners','_MD_AM_BANNERS','1','_MD_AM_BANNERSDSC','yesno','int',26); |
| 190 |
INSERT INTO x_config VALUES (13,0,1,'debug_mode','_MD_AM_DEBUGMODE','1','_MD_AM_DEBUGMODEDSC','select','int',24); |
| 191 |
INSERT INTO x_config VALUES (14,0,1,'my_ip','_MD_AM_MYIP','127.0.0.1','_MD_AM_MYIPDSC','textbox','text',29); |
| 192 |
INSERT INTO x_config VALUES (15,0,1,'use_ssl','_MD_AM_USESSL','0','_MD_AM_USESSLDSC','yesno','int',30); |
| 193 |
INSERT INTO x_config VALUES (16,0,1,'session_name','_MD_AM_SESSNAME','xoops_session','_MD_AM_SESSNAMEDSC','textbox','text',20); |
| 194 |
INSERT INTO x_config VALUES (17,0,2,'minpass','_MD_AM_MINPASS','5','_MD_AM_MINPASSDSC','textbox','int',1); |
| 195 |
INSERT INTO x_config VALUES (18,0,2,'minuname','_MD_AM_MINUNAME','3','_MD_AM_MINUNAMEDSC','textbox','int',2); |
| 196 |
INSERT INTO x_config VALUES (19,0,2,'new_user_notify','_MD_AM_NEWUNOTIFY','1','_MD_AM_NEWUNOTIFYDSC','yesno','int',4); |
| 197 |
INSERT INTO x_config VALUES (20,0,2,'new_user_notify_group','_MD_AM_NOTIFYTO','1','_MD_AM_NOTIFYTODSC','group','int',6); |
| 198 |
INSERT INTO x_config VALUES (21,0,2,'activation_type','_MD_AM_ACTVTYPE','0','_MD_AM_ACTVTYPEDSC','select','int',8); |
| 199 |
INSERT INTO x_config VALUES (22,0,2,'activation_group','_MD_AM_ACTVGROUP','1','_MD_AM_ACTVGROUPDSC','group','int',10); |
| 200 |
INSERT INTO x_config VALUES (23,0,2,'uname_test_level','_MD_AM_UNAMELVL','0','_MD_AM_UNAMELVLDSC','select','int',12); |
| 201 |
INSERT INTO x_config VALUES (24,0,2,'avatar_allow_upload','_MD_AM_AVATARALLOW','0','_MD_AM_AVATARALWDSC','yesno','int',14); |
| 202 |
INSERT INTO x_config VALUES (27,0,2,'avatar_width','_MD_AM_AVATARW','80','_MD_AM_AVATARWDSC','textbox','int',16); |
| 203 |
INSERT INTO x_config VALUES (28,0,2,'avatar_height','_MD_AM_AVATARH','80','_MD_AM_AVATARHDSC','textbox','int',18); |
| 204 |
INSERT INTO x_config VALUES (29,0,2,'avatar_maxsize','_MD_AM_AVATARMAX','35000','_MD_AM_AVATARMAXDSC','textbox','int',20); |
| 205 |
INSERT INTO x_config VALUES (30,0,1,'adminmail','_MD_AM_ADMINML','yuichit@tsubasa.co.jp','_MD_AM_ADMINMLDSC','textbox','text',3); |
| 206 |
INSERT INTO x_config VALUES (31,0,2,'self_delete','_MD_AM_SELFDELETE','0','_MD_AM_SELFDELETEDSC','yesno','int',22); |
| 207 |
INSERT INTO x_config VALUES (32,0,1,'com_mode','_MD_AM_COMMODE','nest','_MD_AM_COMMODEDSC','select','text',34); |
| 208 |
INSERT INTO x_config VALUES (33,0,1,'com_order','_MD_AM_COMORDER','0','_MD_AM_COMORDERDSC','select','int',36); |
| 209 |
INSERT INTO x_config VALUES (34,0,2,'bad_unames','_MD_AM_BADUNAMES','a:3:{i:0;s:9:\"webmaster\";i:1;s:6:\"^xoops\";i:2;s:6:\"^admin\";}','_MD_AM_BADUNAMESDSC','textarea','array',24); |
| 210 |
INSERT INTO x_config VALUES (35,0,2,'bad_emails','_MD_AM_BADEMAILS','a:1:{i:0;s:10:\"xoops.org$\";}','_MD_AM_BADEMAILSDSC','textarea','array',26); |
| 211 |
INSERT INTO x_config VALUES (36,0,2,'maxuname','_MD_AM_MAXUNAME','10','_MD_AM_MAXUNAMEDSC','textbox','int',3); |
| 212 |
INSERT INTO x_config VALUES (37,0,1,'bad_ips','_MD_AM_BADIPS','a:1:{i:0;s:9:\"127.0.0.1\";}','_MD_AM_BADIPSDSC','textarea','array',42); |
| 213 |
INSERT INTO x_config VALUES (38,0,3,'meta_keywords','_MD_AM_METAKEY','news, technology, headlines, xoops, xoop, nuke, myphpnuke, myphp-nuke, phpnuke, SE, geek, geeks, hacker, hackers, linux, software, download, downloads, free, community, mp3, forum, forums, bulletin, board, boards, bbs, php, survey, poll, polls, kernel, comment, comments, portal, odp, open, source, opensource, FreeSoftware, gnu, gpl, license, Unix, *nix, mysql, sql, database, databases, web site, weblog, guru, module, modules, theme, themes, cms, content management','_MD_AM_METAKEYDSC','textarea','text',0); |
| 214 |
INSERT INTO x_config VALUES (39,0,3,'footer','_MD_AM_FOOTER','Powered by XOOPS 2.0 © 2001-2003 <a href=\"http://www.xoops.org/\" target=\"_blank\">The XOOPS Project</a>','_MD_AM_FOOTERDSC','textarea','text',20); |
| 215 |
INSERT INTO x_config VALUES (40,0,4,'censor_enable','_MD_AM_DOCENSOR','0','_MD_AM_DOCENSORDSC','yesno','int',0); |
| 216 |
INSERT INTO x_config VALUES (41,0,4,'censor_words','_MD_AM_CENSORWRD','a:2:{i:0;s:4:\"fuck\";i:1;s:4:\"shit\";}','_MD_AM_CENSORWRDDSC','textarea','array',1); |
| 217 |
INSERT INTO x_config VALUES (42,0,4,'censor_replace','_MD_AM_CENSORRPLC','#OOPS#','_MD_AM_CENSORRPLCDSC','textbox','text',2); |
| 218 |
INSERT INTO x_config VALUES (43,0,3,'meta_robots','_MD_AM_METAROBOTS','index,follow','_MD_AM_METAROBOTSDSC','select','text',2); |
| 219 |
INSERT INTO x_config VALUES (44,0,5,'enable_search','_MD_AM_DOSEARCH','1','_MD_AM_DOSEARCHDSC','yesno','int',0); |
| 220 |
INSERT INTO x_config VALUES (45,0,5,'keyword_min','_MD_AM_MINSEARCH','5','_MD_AM_MINSEARCHDSC','textbox','int',1); |
| 221 |
INSERT INTO x_config VALUES (46,0,2,'avatar_minposts','_MD_AM_AVATARMP','0','_MD_AM_AVATARMPDSC','textbox','int',15); |
| 222 |
INSERT INTO x_config VALUES (47,0,1,'enable_badips','_MD_AM_DOBADIPS','0','_MD_AM_DOBADIPSDSC','yesno','int',40); |
| 223 |
INSERT INTO x_config VALUES (48,0,3,'meta_rating','_MD_AM_METARATING','general','_MD_AM_METARATINGDSC','select','text',4); |
| 224 |
INSERT INTO x_config VALUES (49,0,3,'meta_author','_MD_AM_METAAUTHOR','XOOPS','_MD_AM_METAAUTHORDSC','textbox','text',6); |
| 225 |
INSERT INTO x_config VALUES (50,0,3,'meta_copyright','_MD_AM_METACOPYR','Copyright © 2001-2003','_MD_AM_METACOPYRDSC','textbox','text',8); |
| 226 |
INSERT INTO x_config VALUES (51,0,3,'meta_description','_MD_AM_METADESC','XOOPS is a dynamic Object Oriented based open source portal script written in PHP.','_MD_AM_METADESCDSC','textarea','text',1); |
| 227 |
INSERT INTO x_config VALUES (52,0,2,'allow_chgmail','_MD_AM_ALLWCHGMAIL','0','_MD_AM_ALLWCHGMAILDSC','yesno','int',3); |
| 228 |
INSERT INTO x_config VALUES (53,0,1,'use_mysession','_MD_AM_USEMYSESS','0','_MD_AM_USEMYSESSDSC','yesno','int',19); |
| 229 |
INSERT INTO x_config VALUES (54,0,2,'reg_dispdsclmr','_MD_AM_DSPDSCLMR','1','_MD_AM_DSPDSCLMRDSC','yesno','int',30); |
| 230 |
INSERT INTO x_config VALUES (55,0,2,'reg_disclaimer','_MD_AM_REGDSCLMR','While the administrators and moderators of this site will attempt to remove\nor edit any generally objectionable material as quickly as possible, it is\nimpossible to review every message. Therefore you acknowledge that all posts\nmade to this site express the views and opinions of the author and not the\nadministrators, moderators or webmaster (except for posts by these people)\nand hence will not be held liable. \n\nYou agree not to post any abusive, obscene, vulgar, slanderous, hateful,\nthreatening, sexually-orientated or any other material that may violate any\napplicable laws. Doing so may lead to you being immediately and permanently\nbanned (and your service provider being informed). The IP address of all\nposts is recorded to aid in enforcing these conditions. Creating multiple\naccounts for a single user is not allowed. You agree that the webmaster,\nadministrator and moderators of this site have the right to remove, edit,\nmove or close any topic at any time should they see fit. As a user you agree\nto any information you have entered above being stored in a database. While\nthis information will not be disclosed to any third party without your\nconsent the webmaster, administrator and moderators cannot be held\nresponsible for any hacking attempt that may lead to the data being\ncompromised. \n\nThis site system uses cookies to store information on your local computer.\nThese cookies do not contain any of the information you have entered above,\nthey serve only to improve your viewing pleasure. The email address is used\nonly for confirming your registration details and password (and for sending\nnew passwords should you forget your current one). \n\nBy clicking Register below you agree to be bound by these conditions.','_MD_AM_REGDSCLMRDSC','textarea','text',32); |
| 231 |
INSERT INTO x_config VALUES (56,0,2,'allow_register','_MD_AM_ALLOWREG','1','_MD_AM_ALLOWREGDSC','yesno','int',0); |
| 232 |
INSERT INTO x_config VALUES (57,0,1,'theme_fromfile','_MD_AM_THEMEFILE','0','_MD_AM_THEMEFILEDSC','yesno','int',13); |
| 233 |
INSERT INTO x_config VALUES (58,0,1,'closesite','_MD_AM_CLOSESITE','0','_MD_AM_CLOSESITEDSC','yesno','int',26); |
| 234 |
INSERT INTO x_config VALUES (59,0,1,'closesite_okgrp','_MD_AM_CLOSESITEOK','a:1:{i:0;s:1:\"1\";}','_MD_AM_CLOSESITEOKDSC','group_multi','array',27); |
| 235 |
INSERT INTO x_config VALUES (60,0,1,'closesite_text','_MD_AM_CLOSESITETXT','The site is currently closed for maintainance. Please come back later.','_MD_AM_CLOSESITETXTDSC','textarea','text',28); |
| 236 |
INSERT INTO x_config VALUES (61,0,1,'sslpost_name','_MD_AM_SSLPOST','xoops_ssl','_MD_AM_SSLPOSTDSC','textbox','text',31); |
| 237 |
INSERT INTO x_config VALUES (62,0,1,'module_cache','_MD_AM_MODCACHE','a:1:{i:2;s:1:\"0\";}','_MD_AM_MODCACHEDSC','module_cache','array',50); |
| 238 |
INSERT INTO x_config VALUES (63,0,1,'template_set','_MD_AM_DTPLSET','default','_MD_AM_DTPLSETDSC','tplset','other',14); |
| 239 |
INSERT INTO x_config VALUES (64,0,6,'mailmethod','_MD_AM_MAILERMETHOD','mail','_MD_AM_MAILERMETHODDESC','select','text',4); |
| 240 |
INSERT INTO x_config VALUES (65,0,6,'smtphost','_MD_AM_SMTPHOST','a:1:{i:0;s:0:\"\";}','_MD_AM_SMTPHOSTDESC','textarea','array',6); |
| 241 |
INSERT INTO x_config VALUES (66,0,6,'smtpuser','_MD_AM_SMTPUSER','','_MD_AM_SMTPUSERDESC','textbox','text',7); |
| 242 |
INSERT INTO x_config VALUES (67,0,6,'smtppass','_MD_AM_SMTPPASS','','_MD_AM_SMTPPASSDESC','password','text',8); |
| 243 |
INSERT INTO x_config VALUES (68,0,6,'sendmailpath','_MD_AM_SENDMAILPATH','/usr/sbin/sendmail','_MD_AM_SENDMAILPATHDESC','textbox','text',5); |
| 244 |
INSERT INTO x_config VALUES (69,0,6,'from','_MD_AM_MAILFROM','','_MD_AM_MAILFROMDESC','textbox','text',1); |
| 245 |
INSERT INTO x_config VALUES (70,0,6,'fromname','_MD_AM_MAILFROMNAME','','_MD_AM_MAILFROMNAMEDESC','textbox','text',2); |
| 246 |
INSERT INTO x_config VALUES (71,0,1,'sslloginlink','_MD_AM_SSLLINK','https://','_MD_AM_SSLLINKDSC','textbox','text',33); |
| 247 |
INSERT INTO x_config VALUES (72,0,1,'theme_set_allowed','_MD_AM_THEMEOK','a:2:{i:0;s:7:\"default\";i:1;s:7:\"xoonips\";}','_MD_AM_THEMEOKDSC','theme_multi','array',13); |
| 248 |
INSERT INTO x_config VALUES (73,0,6,'fromuid','_MD_AM_MAILFROMUID','1','_MD_AM_MAILFROMUIDDESC','user','int',3); |
| 249 |
INSERT INTO x_config VALUES (109,2,0,'printer_friendly_header','_MI_XOONIPS_PRINT_HEADER','','_MI_XOONIPS_PRINT_HEADER_DESC','textarea','text',3); |
| 250 |
INSERT INTO x_config VALUES (108,2,0,'tree_frame_height','_MI_XOONIPS_INDEX_TF_HEIGHT','300','_MI_XOONIPS_INDEX_TF_HEIGHT_DE','textbox','text',2); |
| 251 |
INSERT INTO x_config VALUES (106,2,0,'dsn','_MI_XOONIPS_CONFIG_DSN','cppunit_test','_MI_XOONIPS_CONFIG_DSN_DESC','textbox','text',0); |
| 252 |
INSERT INTO x_config VALUES (107,2,0,'tree_frame_width','_MI_XOONIPS_INDEX_TF_WIDTH','200','_MI_XOONIPS_INDEX_TF_WIDTH_DES','textbox','text',1); |
| 253 |
|
| 254 |
-- |
| 255 |
-- Table structure for table `x_configcategory` |
| 256 |
-- |
| 257 |
|
| 258 |
DROP TABLE IF EXISTS x_configcategory; |
| 259 |
CREATE TABLE x_configcategory ( |
| 260 |
confcat_id smallint(5) unsigned NOT NULL auto_increment, |
| 261 |
confcat_name varchar(25) NOT NULL default '', |
| 262 |
confcat_order smallint(5) unsigned NOT NULL default '0', |
| 263 |
PRIMARY KEY (confcat_id) |
| 264 |
) TYPE=MyISAM; |
| 265 |
|
| 266 |
-- |
| 267 |
-- Dumping data for table `x_configcategory` |
| 268 |
-- |
| 269 |
|
| 270 |
INSERT INTO x_configcategory VALUES (1,'_MD_AM_GENERAL',0); |
| 271 |
INSERT INTO x_configcategory VALUES (2,'_MD_AM_USERSETTINGS',0); |
| 272 |
INSERT INTO x_configcategory VALUES (3,'_MD_AM_METAFOOTER',0); |
| 273 |
INSERT INTO x_configcategory VALUES (4,'_MD_AM_CENSOR',0); |
| 274 |
INSERT INTO x_configcategory VALUES (5,'_MD_AM_SEARCH',0); |
| 275 |
INSERT INTO x_configcategory VALUES (6,'_MD_AM_MAILER',0); |
| 276 |
|
| 277 |
-- |
| 278 |
-- Table structure for table `x_configoption` |
| 279 |
-- |
| 280 |
|
| 281 |
DROP TABLE IF EXISTS x_configoption; |
| 282 |
CREATE TABLE x_configoption ( |
| 283 |
confop_id mediumint(8) unsigned NOT NULL auto_increment, |
| 284 |
confop_name varchar(255) NOT NULL default '', |
| 285 |
confop_value varchar(255) NOT NULL default '', |
| 286 |
conf_id smallint(5) unsigned NOT NULL default '0', |
| 287 |
PRIMARY KEY (confop_id), |
| 288 |
KEY conf_id (conf_id) |
| 289 |
) TYPE=MyISAM; |
| 290 |
|
| 291 |
-- |
| 292 |
-- Dumping data for table `x_configoption` |
| 293 |
-- |
| 294 |
|
| 295 |
INSERT INTO x_configoption VALUES (1,'_MD_AM_DEBUGMODE1','1',13); |
| 296 |
INSERT INTO x_configoption VALUES (2,'_MD_AM_DEBUGMODE2','2',13); |
| 297 |
INSERT INTO x_configoption VALUES (3,'_NESTED','nest',32); |
| 298 |
INSERT INTO x_configoption VALUES (4,'_FLAT','flat',32); |
| 299 |
INSERT INTO x_configoption VALUES (5,'_THREADED','thread',32); |
| 300 |
INSERT INTO x_configoption VALUES (6,'_OLDESTFIRST','0',33); |
| 301 |
INSERT INTO x_configoption VALUES (7,'_NEWESTFIRST','1',33); |
| 302 |
INSERT INTO x_configoption VALUES (8,'_MD_AM_USERACTV','0',21); |
| 303 |
INSERT INTO x_configoption VALUES (9,'_MD_AM_AUTOACTV','1',21); |
| 304 |
INSERT INTO x_configoption VALUES (10,'_MD_AM_ADMINACTV','2',21); |
| 305 |
INSERT INTO x_configoption VALUES (11,'_MD_AM_STRICT','0',23); |
| 306 |
INSERT INTO x_configoption VALUES (12,'_MD_AM_MEDIUM','1',23); |
| 307 |
INSERT INTO x_configoption VALUES (13,'_MD_AM_LIGHT','2',23); |
| 308 |
INSERT INTO x_configoption VALUES (14,'_MD_AM_DEBUGMODE3','3',13); |
| 309 |
INSERT INTO x_configoption VALUES (15,'_MD_AM_INDEXFOLLOW','index,follow',43); |
| 310 |
INSERT INTO x_configoption VALUES (16,'_MD_AM_NOINDEXFOLLOW','noindex,follow',43); |
| 311 |
INSERT INTO x_configoption VALUES (17,'_MD_AM_INDEXNOFOLLOW','index,nofollow',43); |
| 312 |
INSERT INTO x_configoption VALUES (18,'_MD_AM_NOINDEXNOFOLLOW','noindex,nofollow',43); |
| 313 |
INSERT INTO x_configoption VALUES (19,'_MD_AM_METAOGEN','general',48); |
| 314 |
INSERT INTO x_configoption VALUES (20,'_MD_AM_METAO14YRS','14 years',48); |
| 315 |
INSERT INTO x_configoption VALUES (21,'_MD_AM_METAOREST','restricted',48); |
| 316 |
INSERT INTO x_configoption VALUES (22,'_MD_AM_METAOMAT','mature',48); |
| 317 |
INSERT INTO x_configoption VALUES (23,'_MD_AM_DEBUGMODE0','0',13); |
| 318 |
INSERT INTO x_configoption VALUES (24,'PHP mail()','mail',64); |
| 319 |
INSERT INTO x_configoption VALUES (25,'sendmail','sendmail',64); |
| 320 |
INSERT INTO x_configoption VALUES (26,'SMTP','smtp',64); |
| 321 |
INSERT INTO x_configoption VALUES (27,'SMTPAuth','smtpauth',64); |
| 322 |
|
| 323 |
-- |
| 324 |
-- Table structure for table `x_group_permission` |
| 325 |
-- |
| 326 |
|
| 327 |
DROP TABLE IF EXISTS x_group_permission; |
| 328 |
CREATE TABLE x_group_permission ( |
| 329 |
gperm_id int(10) unsigned NOT NULL auto_increment, |
| 330 |
gperm_groupid smallint(5) unsigned NOT NULL default '0', |
| 331 |
gperm_itemid mediumint(8) unsigned NOT NULL default '0', |
| 332 |
gperm_modid mediumint(5) unsigned NOT NULL default '0', |
| 333 |
gperm_name varchar(50) NOT NULL default '', |
| 334 |
PRIMARY KEY (gperm_id), |
| 335 |
KEY groupid (gperm_groupid), |
| 336 |
KEY itemid (gperm_itemid), |
| 337 |
KEY gperm_modid (gperm_modid,gperm_name(10)) |
| 338 |
) TYPE=MyISAM; |
| 339 |
|
| 340 |
-- |
| 341 |
-- Dumping data for table `x_group_permission` |
| 342 |
-- |
| 343 |
|
| 344 |
INSERT INTO x_group_permission VALUES (1,1,1,1,'module_admin'); |
| 345 |
INSERT INTO x_group_permission VALUES (2,1,1,1,'module_read'); |
| 346 |
INSERT INTO x_group_permission VALUES (3,2,1,1,'module_read'); |
| 347 |
INSERT INTO x_group_permission VALUES (130,3,17,1,'block_read'); |
| 348 |
INSERT INTO x_group_permission VALUES (5,1,1,1,'system_admin'); |
| 349 |
INSERT INTO x_group_permission VALUES (6,1,2,1,'system_admin'); |
| 350 |
INSERT INTO x_group_permission VALUES (7,1,3,1,'system_admin'); |
| 351 |
INSERT INTO x_group_permission VALUES (8,1,4,1,'system_admin'); |
| 352 |
INSERT INTO x_group_permission VALUES (9,1,5,1,'system_admin'); |
| 353 |
INSERT INTO x_group_permission VALUES (10,1,6,1,'system_admin'); |
| 354 |
INSERT INTO x_group_permission VALUES (11,1,7,1,'system_admin'); |
| 355 |
INSERT INTO x_group_permission VALUES (12,1,8,1,'system_admin'); |
| 356 |
INSERT INTO x_group_permission VALUES (13,1,9,1,'system_admin'); |
| 357 |
INSERT INTO x_group_permission VALUES (14,1,10,1,'system_admin'); |
| 358 |
INSERT INTO x_group_permission VALUES (15,1,11,1,'system_admin'); |
| 359 |
INSERT INTO x_group_permission VALUES (16,1,12,1,'system_admin'); |
| 360 |
INSERT INTO x_group_permission VALUES (17,1,13,1,'system_admin'); |
| 361 |
INSERT INTO x_group_permission VALUES (18,1,14,1,'system_admin'); |
| 362 |
INSERT INTO x_group_permission VALUES (19,1,15,1,'system_admin'); |
| 363 |
INSERT INTO x_group_permission VALUES (20,1,1,1,'block_read'); |
| 364 |
INSERT INTO x_group_permission VALUES (21,2,1,1,'block_read'); |
| 365 |
INSERT INTO x_group_permission VALUES (129,3,16,1,'block_read'); |
| 366 |
INSERT INTO x_group_permission VALUES (23,1,2,1,'block_read'); |
| 367 |
INSERT INTO x_group_permission VALUES (24,2,2,1,'block_read'); |
| 368 |
INSERT INTO x_group_permission VALUES (128,3,15,1,'block_read'); |
| 369 |
INSERT INTO x_group_permission VALUES (26,1,3,1,'block_read'); |
| 370 |
INSERT INTO x_group_permission VALUES (27,2,3,1,'block_read'); |
| 371 |
INSERT INTO x_group_permission VALUES (127,3,12,1,'block_read'); |
| 372 |
INSERT INTO x_group_permission VALUES (29,1,4,1,'block_read'); |
| 373 |
INSERT INTO x_group_permission VALUES (30,2,4,1,'block_read'); |
| 374 |
INSERT INTO x_group_permission VALUES (126,3,11,1,'block_read'); |
| 375 |
INSERT INTO x_group_permission VALUES (32,1,5,1,'block_read'); |
| 376 |
INSERT INTO x_group_permission VALUES (33,2,5,1,'block_read'); |
| 377 |
INSERT INTO x_group_permission VALUES (125,3,10,1,'block_read'); |
| 378 |
INSERT INTO x_group_permission VALUES (35,1,6,1,'block_read'); |
| 379 |
INSERT INTO x_group_permission VALUES (36,2,6,1,'block_read'); |
| 380 |
INSERT INTO x_group_permission VALUES (124,3,9,1,'block_read'); |
| 381 |
INSERT INTO x_group_permission VALUES (38,1,7,1,'block_read'); |
| 382 |
INSERT INTO x_group_permission VALUES (39,2,7,1,'block_read'); |
| 383 |
INSERT INTO x_group_permission VALUES (123,3,8,1,'block_read'); |
| 384 |
INSERT INTO x_group_permission VALUES (41,1,8,1,'block_read'); |
| 385 |
INSERT INTO x_group_permission VALUES (42,2,8,1,'block_read'); |
| 386 |
INSERT INTO x_group_permission VALUES (122,3,7,1,'block_read'); |
| 387 |
INSERT INTO x_group_permission VALUES (44,1,9,1,'block_read'); |
| 388 |
INSERT INTO x_group_permission VALUES (45,2,9,1,'block_read'); |
| 389 |
INSERT INTO x_group_permission VALUES (121,3,6,1,'block_read'); |
| 390 |
INSERT INTO x_group_permission VALUES (47,1,10,1,'block_read'); |
| 391 |
INSERT INTO x_group_permission VALUES (48,2,10,1,'block_read'); |
| 392 |
INSERT INTO x_group_permission VALUES (120,3,4,1,'block_read'); |
| 393 |
INSERT INTO x_group_permission VALUES (50,1,11,1,'block_read'); |
| 394 |
INSERT INTO x_group_permission VALUES (51,2,11,1,'block_read'); |
| 395 |
INSERT INTO x_group_permission VALUES (119,3,3,1,'block_read'); |
| 396 |
INSERT INTO x_group_permission VALUES (53,1,12,1,'block_read'); |
| 397 |
INSERT INTO x_group_permission VALUES (54,2,12,1,'block_read'); |
| 398 |
INSERT INTO x_group_permission VALUES (118,3,1,1,'module_read'); |
| 399 |
INSERT INTO x_group_permission VALUES (56,1,2,1,'module_admin'); |
| 400 |
INSERT INTO x_group_permission VALUES (57,1,2,1,'module_read'); |
| 401 |
INSERT INTO x_group_permission VALUES (58,1,13,1,'block_read'); |
| 402 |
INSERT INTO x_group_permission VALUES (59,1,14,1,'block_read'); |
| 403 |
INSERT INTO x_group_permission VALUES (60,1,15,1,'block_read'); |
| 404 |
INSERT INTO x_group_permission VALUES (61,1,16,1,'block_read'); |
| 405 |
INSERT INTO x_group_permission VALUES (62,1,17,1,'block_read'); |
| 406 |
INSERT INTO x_group_permission VALUES (63,1,18,1,'block_read'); |
| 407 |
INSERT INTO x_group_permission VALUES (64,2,2,1,'module_read'); |
| 408 |
INSERT INTO x_group_permission VALUES (65,2,13,1,'block_read'); |
| 409 |
INSERT INTO x_group_permission VALUES (66,2,14,1,'block_read'); |
| 410 |
INSERT INTO x_group_permission VALUES (67,2,15,1,'block_read'); |
| 411 |
INSERT INTO x_group_permission VALUES (68,2,16,1,'block_read'); |
| 412 |
INSERT INTO x_group_permission VALUES (69,2,17,1,'block_read'); |
| 413 |
INSERT INTO x_group_permission VALUES (70,2,18,1,'block_read'); |
| 414 |
INSERT INTO x_group_permission VALUES (74,4,1,1,'module_read'); |
| 415 |
INSERT INTO x_group_permission VALUES (73,4,2,1,'module_read'); |
| 416 |
INSERT INTO x_group_permission VALUES (75,4,3,1,'block_read'); |
| 417 |
INSERT INTO x_group_permission VALUES (76,4,4,1,'block_read'); |
| 418 |
INSERT INTO x_group_permission VALUES (77,4,6,1,'block_read'); |
| 419 |
INSERT INTO x_group_permission VALUES (78,4,7,1,'block_read'); |
| 420 |
INSERT INTO x_group_permission VALUES (79,4,8,1,'block_read'); |
| 421 |
INSERT INTO x_group_permission VALUES (80,4,9,1,'block_read'); |
| 422 |
INSERT INTO x_group_permission VALUES (81,4,10,1,'block_read'); |
| 423 |
INSERT INTO x_group_permission VALUES (82,4,11,1,'block_read'); |
| 424 |
INSERT INTO x_group_permission VALUES (83,4,12,1,'block_read'); |
| 425 |
INSERT INTO x_group_permission VALUES (84,4,13,1,'block_read'); |
| 426 |
INSERT INTO x_group_permission VALUES (85,4,14,1,'block_read'); |
| 427 |
INSERT INTO x_group_permission VALUES (86,4,15,1,'block_read'); |
| 428 |
INSERT INTO x_group_permission VALUES (87,4,16,1,'block_read'); |
| 429 |
INSERT INTO x_group_permission VALUES (88,4,17,1,'block_read'); |
| 430 |
INSERT INTO x_group_permission VALUES (89,4,18,1,'block_read'); |
| 431 |
INSERT INTO x_group_permission VALUES (117,3,2,1,'module_read'); |
| 432 |
INSERT INTO x_group_permission VALUES (131,1,3,1,'module_admin'); |
| 433 |
INSERT INTO x_group_permission VALUES (132,1,3,1,'module_read'); |
| 434 |
INSERT INTO x_group_permission VALUES (133,2,3,1,'module_read'); |
| 435 |
INSERT INTO x_group_permission VALUES (134,1,4,1,'module_admin'); |
| 436 |
INSERT INTO x_group_permission VALUES (135,1,4,1,'module_read'); |
| 437 |
INSERT INTO x_group_permission VALUES (136,2,4,1,'module_read'); |
| 438 |
INSERT INTO x_group_permission VALUES (137,1,5,1,'module_admin'); |
| 439 |
INSERT INTO x_group_permission VALUES (138,1,5,1,'module_read'); |
| 440 |
INSERT INTO x_group_permission VALUES (139,2,5,1,'module_read'); |
| 441 |
INSERT INTO x_group_permission VALUES (140,1,6,1,'module_admin'); |
| 442 |
INSERT INTO x_group_permission VALUES (141,1,6,1,'module_read'); |
| 443 |
INSERT INTO x_group_permission VALUES (142,2,6,1,'module_read'); |
| 444 |
INSERT INTO x_group_permission VALUES (143,1,7,1,'module_admin'); |
| 445 |
INSERT INTO x_group_permission VALUES (144,1,7,1,'module_read'); |
| 446 |
INSERT INTO x_group_permission VALUES (145,2,7,1,'module_read'); |
| 447 |
INSERT INTO x_group_permission VALUES (146,1,8,1,'module_admin'); |
| 448 |
INSERT INTO x_group_permission VALUES (147,1,8,1,'module_read'); |
| 449 |
INSERT INTO x_group_permission VALUES (148,2,8,1,'module_read'); |
| 450 |
INSERT INTO x_group_permission VALUES (149,1,9,1,'module_admin'); |
| 451 |
INSERT INTO x_group_permission VALUES (150,1,9,1,'module_read'); |
| 452 |
INSERT INTO x_group_permission VALUES (151,2,9,1,'module_read'); |
| 453 |
|
| 454 |
-- |
| 455 |
-- Table structure for table `x_groups` |
| 456 |
-- |
| 457 |
|
| 458 |
DROP TABLE IF EXISTS x_groups; |
| 459 |
CREATE TABLE x_groups ( |
| 460 |
groupid smallint(5) unsigned NOT NULL auto_increment, |
| 461 |
name varchar(50) NOT NULL default '', |
| 462 |
description text NOT NULL, |
| 463 |
group_type varchar(10) NOT NULL default '', |
| 464 |
PRIMARY KEY (groupid), |
| 465 |
KEY group_type (group_type) |
| 466 |
) TYPE=MyISAM; |
| 467 |
|
| 468 |
-- |
| 469 |
-- Dumping data for table `x_groups` |
| 470 |
-- |
| 471 |
|
| 472 |
INSERT INTO x_groups VALUES (1,'Webmasters','Webmasters of this site','Admin'); |
| 473 |
INSERT INTO x_groups VALUES (2,'Registered Users','Registered Users Group','User'); |
| 474 |
INSERT INTO x_groups VALUES (3,'Anonymous Users','Anonymous Users Group','Anonymous'); |
| 475 |
INSERT INTO x_groups VALUES (4,'moderator','platform moderator',''); |
| 476 |
|
| 477 |
-- |
| 478 |
-- Table structure for table `x_groups_users_link` |
| 479 |
-- |
| 480 |
|
| 481 |
DROP TABLE IF EXISTS x_groups_users_link; |
| 482 |
CREATE TABLE x_groups_users_link ( |
| 483 |
linkid mediumint(8) unsigned NOT NULL auto_increment, |
| 484 |
groupid smallint(5) unsigned NOT NULL default '0', |
| 485 |
uid mediumint(8) unsigned NOT NULL default '0', |
| 486 |
PRIMARY KEY (linkid), |
| 487 |
KEY groupid_uid (groupid,uid) |
| 488 |
) TYPE=MyISAM; |
| 489 |
|
| 490 |
-- |
| 491 |
-- Dumping data for table `x_groups_users_link` |
| 492 |
-- |
| 493 |
|
| 494 |
INSERT INTO x_groups_users_link VALUES (1,1,1); |
| 495 |
INSERT INTO x_groups_users_link VALUES (2,2,1); |
| 496 |
INSERT INTO x_groups_users_link VALUES (3,4,1); |
| 497 |
INSERT INTO x_groups_users_link VALUES (4,2,2); |
| 498 |
INSERT INTO x_groups_users_link VALUES (5,2,3); |
| 499 |
INSERT INTO x_groups_users_link VALUES (6,2,4); |
| 500 |
INSERT INTO x_groups_users_link VALUES (7,4,4); |
| 501 |
|
| 502 |
-- |
| 503 |
-- Table structure for table `x_image` |
| 504 |
-- |
| 505 |
|
| 506 |
DROP TABLE IF EXISTS x_image; |
| 507 |
CREATE TABLE x_image ( |
| 508 |
image_id mediumint(8) unsigned NOT NULL auto_increment, |
| 509 |
image_name varchar(30) NOT NULL default '', |
| 510 |
image_nicename varchar(255) NOT NULL default '', |
| 511 |
image_mimetype varchar(30) NOT NULL default '', |
| 512 |
image_created int(10) unsigned NOT NULL default '0', |
| 513 |
image_display tinyint(1) unsigned NOT NULL default '0', |
| 514 |
image_weight smallint(5) unsigned NOT NULL default '0', |
| 515 |
imgcat_id smallint(5) unsigned NOT NULL default '0', |
| 516 |
PRIMARY KEY (image_id), |
| 517 |
KEY imgcat_id (imgcat_id), |
| 518 |
KEY image_display (image_display) |
| 519 |
) TYPE=MyISAM; |
| 520 |
|
| 521 |
-- |
| 522 |
-- Dumping data for table `x_image` |
| 523 |
-- |
| 524 |
|
| 525 |
|
| 526 |
-- |
| 527 |
-- Table structure for table `x_imagebody` |
| 528 |
-- |
| 529 |
|
| 530 |
DROP TABLE IF EXISTS x_imagebody; |
| 531 |
CREATE TABLE x_imagebody ( |
| 532 |
image_id mediumint(8) unsigned NOT NULL default '0', |
| 533 |
image_body mediumblob, |
| 534 |
KEY image_id (image_id) |
| 535 |
) TYPE=MyISAM; |
| 536 |
|
| 537 |
-- |
| 538 |
-- Dumping data for table `x_imagebody` |
| 539 |
-- |
| 540 |
|
| 541 |
|
| 542 |
-- |
| 543 |
-- Table structure for table `x_imagecategory` |
| 544 |
-- |
| 545 |
|
| 546 |
DROP TABLE IF EXISTS x_imagecategory; |
| 547 |
CREATE TABLE x_imagecategory ( |
| 548 |
imgcat_id smallint(5) unsigned NOT NULL auto_increment, |
| 549 |
imgcat_name varchar(100) NOT NULL default '', |
| 550 |
imgcat_maxsize int(8) unsigned NOT NULL default '0', |
| 551 |
imgcat_maxwidth smallint(3) unsigned NOT NULL default '0', |
| 552 |
imgcat_maxheight smallint(3) unsigned NOT NULL default '0', |
| 553 |
imgcat_display tinyint(1) unsigned NOT NULL default '0', |
| 554 |
imgcat_weight smallint(3) unsigned NOT NULL default '0', |
| 555 |
imgcat_type char(1) NOT NULL default '', |
| 556 |
imgcat_storetype varchar(5) NOT NULL default '', |
| 557 |
PRIMARY KEY (imgcat_id), |
| 558 |
KEY imgcat_display (imgcat_display) |
| 559 |
) TYPE=MyISAM; |
| 560 |
|
| 561 |
-- |
| 562 |
-- Dumping data for table `x_imagecategory` |
| 563 |
-- |
| 564 |
|
| 565 |
|
| 566 |
-- |
| 567 |
-- Table structure for table `x_imgset` |
| 568 |
-- |
| 569 |
|
| 570 |
DROP TABLE IF EXISTS x_imgset; |
| 571 |
CREATE TABLE x_imgset ( |
| 572 |
imgset_id smallint(5) unsigned NOT NULL auto_increment, |
| 573 |
imgset_name varchar(50) NOT NULL default '', |
| 574 |
imgset_refid mediumint(8) unsigned NOT NULL default '0', |
| 575 |
PRIMARY KEY (imgset_id), |
| 576 |
KEY imgset_refid (imgset_refid) |
| 577 |
) TYPE=MyISAM; |
| 578 |
|
| 579 |
-- |
| 580 |
-- Dumping data for table `x_imgset` |
| 581 |
-- |
| 582 |
|
| 583 |
INSERT INTO x_imgset VALUES (1,'default',0); |
| 584 |
|
| 585 |
-- |
| 586 |
-- Table structure for table `x_imgset_tplset_link` |
| 587 |
-- |
| 588 |
|
| 589 |
DROP TABLE IF EXISTS x_imgset_tplset_link; |
| 590 |
CREATE TABLE x_imgset_tplset_link ( |
| 591 |
imgset_id smallint(5) unsigned NOT NULL default '0', |
| 592 |
tplset_name varchar(50) NOT NULL default '', |
| 593 |
KEY tplset_name (tplset_name(10)) |
| 594 |
) TYPE=MyISAM; |
| 595 |
|
| 596 |
-- |
| 597 |
-- Dumping data for table `x_imgset_tplset_link` |
| 598 |
-- |
| 599 |
|
| 600 |
INSERT INTO x_imgset_tplset_link VALUES (1,'default'); |
| 601 |
|
| 602 |
-- |
| 603 |
-- Table structure for table `x_imgsetimg` |
| 604 |
-- |
| 605 |
|
| 606 |
DROP TABLE IF EXISTS x_imgsetimg; |
| 607 |
CREATE TABLE x_imgsetimg ( |
| 608 |
imgsetimg_id mediumint(8) unsigned NOT NULL auto_increment, |
| 609 |
imgsetimg_file varchar(50) NOT NULL default '', |
| 610 |
imgsetimg_body blob NOT NULL, |
| 611 |
imgsetimg_imgset smallint(5) unsigned NOT NULL default '0', |
| 612 |
PRIMARY KEY (imgsetimg_id), |
| 613 |
KEY imgsetimg_imgset (imgsetimg_imgset) |
| 614 |
) TYPE=MyISAM; |
| 615 |
|
| 616 |
-- |
| 617 |
-- Dumping data for table `x_imgsetimg` |
| 618 |
-- |
| 619 |
|
| 620 |
|
| 621 |
-- |
| 622 |
-- Table structure for table `x_modules` |
| 623 |
-- |
| 624 |
|
| 625 |
DROP TABLE IF EXISTS x_modules; |
| 626 |
CREATE TABLE x_modules ( |
| 627 |
mid smallint(5) unsigned NOT NULL auto_increment, |
| 628 |
name varchar(150) NOT NULL default '', |
| 629 |
version smallint(5) unsigned NOT NULL default '100', |
| 630 |
last_update int(10) unsigned NOT NULL default '0', |
| 631 |
weight smallint(3) unsigned NOT NULL default '0', |
| 632 |
isactive tinyint(1) unsigned NOT NULL default '0', |
| 633 |
dirname varchar(25) NOT NULL default '', |
| 634 |
hasmain tinyint(1) unsigned NOT NULL default '0', |
| 635 |
hasadmin tinyint(1) unsigned NOT NULL default '0', |
| 636 |
hassearch tinyint(1) unsigned NOT NULL default '0', |
| 637 |
hasconfig tinyint(1) unsigned NOT NULL default '0', |
| 638 |
hascomments tinyint(1) unsigned NOT NULL default '0', |
| 639 |
hasnotification tinyint(1) unsigned NOT NULL default '0', |
| 640 |
PRIMARY KEY (mid), |
| 641 |
KEY hasmain (hasmain), |
| 642 |
KEY hasadmin (hasadmin), |
| 643 |
KEY hassearch (hassearch), |
| 644 |
KEY hasnotification (hasnotification), |
| 645 |
KEY dirname (dirname), |
| 646 |
KEY name (name(15)) |
| 647 |
) TYPE=MyISAM; |
| 648 |
|
| 649 |
-- |
| 650 |
-- Dumping data for table `x_modules` |
| 651 |
-- |
| 652 |
|
| 653 |
INSERT INTO x_modules VALUES (1,'System',100,1123998589,0,1,'system',0,1,0,0,0,0); |
| 654 |
INSERT INTO x_modules VALUES (2,'XooNIps',101,1124693386,1,1,'xoonips',1,1,0,1,0,0); |
| 655 |
INSERT INTO x_modules VALUES (3,'XooNiPs Paper Item Type Module',100,1123999966,1,1,'xnppaper',0,0,0,0,0,0); |
| 656 |
INSERT INTO x_modules VALUES (4,'XooNiPs Presentation Item Type Module',100,1123999974,1,1,'xnppresentation',0,0,0,0,0,0); |
| 657 |
INSERT INTO x_modules VALUES (5,'XooNiPs Data Item Type Module',100,1123999981,1,1,'xnpdata',0,0,0,0,0,0); |
| 658 |
INSERT INTO x_modules VALUES (6,'XooNiPs Tool Item Type Module',100,1123999986,1,1,'xnptool',0,0,0,0,0,0); |
| 659 |
INSERT INTO x_modules VALUES (7,'XooNiPs Book Item Type Module',100,1123999988,1,1,'xnpbook',0,0,0,0,0,0); |
| 660 |
INSERT INTO x_modules VALUES (8,'XooNiPs Url Item Type Module',100,1123999989,1,1,'xnpurl',0,0,0,0,0,0); |
| 661 |
INSERT INTO x_modules VALUES (9,'XooNiPs Model Item Type Module',100,1123999992,1,1,'xnpmodel',0,0,0,0,0,0); |
| 662 |
|
| 663 |
-- |
| 664 |
-- Table structure for table `x_newblocks` |
| 665 |
-- |
| 666 |
|
| 667 |
DROP TABLE IF EXISTS x_newblocks; |
| 668 |
CREATE TABLE x_newblocks ( |
| 669 |
bid mediumint(8) unsigned NOT NULL auto_increment, |
| 670 |
mid smallint(5) unsigned NOT NULL default '0', |
| 671 |
func_num tinyint(3) unsigned NOT NULL default '0', |
| 672 |
options varchar(255) NOT NULL default '', |
| 673 |
name varchar(150) NOT NULL default '', |
| 674 |
title varchar(255) NOT NULL default '', |
| 675 |
content text NOT NULL, |
| 676 |
side tinyint(1) unsigned NOT NULL default '0', |
| 677 |
weight smallint(5) unsigned NOT NULL default '0', |
| 678 |
visible tinyint(1) unsigned NOT NULL default '0', |
| 679 |
block_type char(1) NOT NULL default '', |
| 680 |
c_type char(1) NOT NULL default '', |
| 681 |
isactive tinyint(1) unsigned NOT NULL default '0', |
| 682 |
dirname varchar(50) NOT NULL default '', |
| 683 |
func_file varchar(50) NOT NULL default '', |
| 684 |
show_func varchar(50) NOT NULL default '', |
| 685 |
edit_func varchar(50) NOT NULL default '', |
| 686 |
template varchar(50) NOT NULL default '', |
| 687 |
bcachetime int(10) unsigned NOT NULL default '0', |
| 688 |
last_modified int(10) unsigned NOT NULL default '0', |
| 689 |
PRIMARY KEY (bid), |
| 690 |
KEY mid (mid), |
| 691 |
KEY visible (visible), |
| 692 |
KEY isactive_visible_mid (isactive,visible,mid), |
| 693 |
KEY mid_funcnum (mid,func_num) |
| 694 |
) TYPE=MyISAM; |
| 695 |
|
| 696 |
-- |
| 697 |
-- Dumping data for table `x_newblocks` |
| 698 |
-- |
| 699 |
|
| 700 |
INSERT INTO x_newblocks VALUES (1,1,1,'','User Menu','User Menu','',0,0,0,'S','H',1,'system','system_blocks.php','b_system_user_show','','system_block_user.html',0,1123998591); |
| 701 |
INSERT INTO x_newblocks VALUES (2,1,2,'','Login','Login','',0,0,0,'S','H',1,'system','system_blocks.php','b_system_login_show','','system_block_login.html',0,1123998591); |
| 702 |
INSERT INTO x_newblocks VALUES (3,1,3,'','Search','Search','',0,0,0,'S','H',1,'system','system_blocks.php','b_system_search_show','','system_block_search.html',0,1123998591); |
| 703 |
INSERT INTO x_newblocks VALUES (4,1,4,'','Waiting Contents','Waiting Contents','',0,0,0,'S','H',1,'system','system_blocks.php','b_system_waiting_show','','system_block_waiting.html',0,1123998591); |
| 704 |
INSERT INTO x_newblocks VALUES (5,1,5,'','Main Menu','Main Menu','',0,0,0,'S','H',1,'system','system_blocks.php','b_system_main_show','','system_block_mainmenu.html',0,1123998591); |
| 705 |
INSERT INTO x_newblocks VALUES (6,1,6,'320|190|s_poweredby.gif|1','Site Info','Site Info','',0,0,0,'S','H',1,'system','system_blocks.php','b_system_info_show','b_system_info_edit','system_block_siteinfo.html',0,1123998591); |
| 706 |
INSERT INTO x_newblocks VALUES (7,1,7,'','Who\'s Online','Who\'s Online','',0,0,0,'S','H',1,'system','system_blocks.php','b_system_online_show','','system_block_online.html',0,1123998591); |
| 707 |
INSERT INTO x_newblocks VALUES (8,1,8,'10|1','Top Posters','Top Posters','',0,0,0,'S','H',1,'system','system_blocks.php','b_system_topposters_show','b_system_topposters_edit','system_block_topusers.html',0,1123998591); |
| 708 |
INSERT INTO x_newblocks VALUES (9,1,9,'10|1','New Members','New Members','',0,0,0,'S','H',1,'system','system_blocks.php','b_system_newmembers_show','b_system_newmembers_edit','system_block_newusers.html',0,1123998591); |
| 709 |
INSERT INTO x_newblocks VALUES (10,1,10,'10','Recent Comments','Recent Comments','',0,0,0,'S','H',1,'system','system_blocks.php','b_system_comments_show','b_system_comments_edit','system_block_comments.html',0,1123998591); |
| 710 |
INSERT INTO x_newblocks VALUES (11,1,11,'','Notification Options','Notification Options','',0,0,0,'S','H',1,'system','system_blocks.php','b_system_notification_show','','system_block_notification.html',0,1123998591); |
| 711 |
INSERT INTO x_newblocks VALUES (12,1,12,'0|80','Themes','Themes','',0,0,1,'S','H',1,'system','system_blocks.php','b_system_themes_show','b_system_themes_edit','system_block_themes.html',0,1123998591); |
| 712 |
INSERT INTO x_newblocks VALUES (13,2,1,'','Quick Search','Quick Search','',0,0,1,'M','H',1,'xoonips','xoonips_blocks.php','b_xoonips_quick_search_show','','xoonips_block_quick_search.html',0,1124693394); |
| 713 |
INSERT INTO x_newblocks VALUES (14,2,2,'','XooNIps Moderator Menu','XooNIps Moderator Menu','',0,0,1,'M','H',1,'xoonips','xoonips_blocks.php','b_xoonips_moderator_show','','xoonips_block_moderator.html',0,1124693394); |
| 714 |
INSERT INTO x_newblocks VALUES (15,2,3,'','Index Tree','Index Tree','',1,0,1,'M','H',1,'xoonips','xoonips_blocks.php','b_xoonips_tree_show','','xoonips_block_tree.html',0,1124693394); |
| 715 |
INSERT INTO x_newblocks VALUES (16,2,4,'','XooNIps Login','XooNIps Login','',0,0,1,'M','H',1,'xoonips','xoonips_blocks.php','b_xoonips_login_show','','xoonips_block_login.html',0,1124693394); |
| 716 |
INSERT INTO x_newblocks VALUES (17,2,5,'','XooNIps User Menu','XooNIps User Menu','',0,0,1,'M','H',1,'xoonips','xoonips_blocks.php','b_xoonips_user_show','','xoonips_block_user.html',0,1124693394); |
| 717 |
INSERT INTO x_newblocks VALUES (18,2,6,'','XooNIps Group Admin Menu','XooNIps Group Admin Menu','',0,0,1,'M','H',1,'xoonips','xoonips_blocks.php','b_xoonips_group_show','','xoonips_block_group.html',0,1124693394); |
| 718 |
|
| 719 |
-- |
| 720 |
-- Table structure for table `x_online` |
| 721 |
-- |
| 722 |
|
| 723 |
DROP TABLE IF EXISTS x_online; |
| 724 |
CREATE TABLE x_online ( |
| 725 |
online_uid mediumint(8) unsigned NOT NULL default '0', |
| 726 |
online_uname varchar(25) NOT NULL default '', |
| 727 |
online_updated int(10) unsigned NOT NULL default '0', |
| 728 |
online_module smallint(5) unsigned NOT NULL default '0', |
| 729 |
online_ip varchar(15) NOT NULL default '', |
| 730 |
KEY online_module (online_module) |
| 731 |
) TYPE=MyISAM; |
| 732 |
|
| 733 |
-- |
| 734 |
-- Dumping data for table `x_online` |
| 735 |
-- |
| 736 |
|
| 737 |
|
| 738 |
-- |
| 739 |
-- Table structure for table `x_priv_msgs` |
| 740 |
-- |
| 741 |
|
| 742 |
DROP TABLE IF EXISTS x_priv_msgs; |
| 743 |
CREATE TABLE x_priv_msgs ( |
| 744 |
msg_id mediumint(8) unsigned NOT NULL auto_increment, |
| 745 |
msg_image varchar(100) default NULL, |
| 746 |
subject varchar(255) NOT NULL default '', |
| 747 |
from_userid mediumint(8) unsigned NOT NULL default '0', |
| 748 |
to_userid mediumint(8) unsigned NOT NULL default '0', |
| 749 |
msg_time int(10) unsigned NOT NULL default '0', |
| 750 |
msg_text text NOT NULL, |
| 751 |
read_msg tinyint(1) unsigned NOT NULL default '0', |
| 752 |
PRIMARY KEY (msg_id), |
| 753 |
KEY to_userid (to_userid), |
| 754 |
KEY touseridreadmsg (to_userid,read_msg), |
| 755 |
KEY msgidfromuserid (msg_id,from_userid) |
| 756 |
) TYPE=MyISAM; |
| 757 |
|
| 758 |
-- |
| 759 |
-- Dumping data for table `x_priv_msgs` |
| 760 |
-- |
| 761 |
|
| 762 |
|
| 763 |
-- |
| 764 |
-- Table structure for table `x_ranks` |
| 765 |
-- |
| 766 |
|
| 767 |
DROP TABLE IF EXISTS x_ranks; |
| 768 |
CREATE TABLE x_ranks ( |
| 769 |
rank_id smallint(5) unsigned NOT NULL auto_increment, |
| 770 |
rank_title varchar(50) NOT NULL default '', |
| 771 |
rank_min mediumint(8) unsigned NOT NULL default '0', |
| 772 |
rank_max mediumint(8) unsigned NOT NULL default '0', |
| 773 |
rank_special tinyint(1) unsigned NOT NULL default '0', |
| 774 |
rank_image varchar(255) default NULL, |
| 775 |
PRIMARY KEY (rank_id), |
| 776 |
KEY rank_min (rank_min), |
| 777 |
KEY rank_max (rank_max), |
| 778 |
KEY rankminrankmaxranspecial (rank_min,rank_max,rank_special), |
| 779 |
KEY rankspecial (rank_special) |
| 780 |
) TYPE=MyISAM; |
| 781 |
|
| 782 |
-- |
| 783 |
-- Dumping data for table `x_ranks` |
| 784 |
-- |
| 785 |
|
| 786 |
INSERT INTO x_ranks VALUES (1,'Just popping in',0,20,0,'rank3e632f95e81ca.gif'); |
| 787 |
INSERT INTO x_ranks VALUES (2,'Not too shy to talk',21,40,0,'rank3dbf8e94a6f72.gif'); |
| 788 |
INSERT INTO x_ranks VALUES (3,'Quite a regular',41,70,0,'rank3dbf8e9e7d88d.gif'); |
| 789 |
INSERT INTO x_ranks VALUES (4,'Just can\'t stay away',71,150,0,'rank3dbf8ea81e642.gif'); |
| 790 |
INSERT INTO x_ranks VALUES (5,'Home away from home',151,10000,0,'rank3dbf8eb1a72e7.gif'); |
| 791 |
INSERT INTO x_ranks VALUES (6,'Moderator',0,0,1,'rank3dbf8edf15093.gif'); |
| 792 |
INSERT INTO x_ranks VALUES (7,'Webmaster',0,0,1,'rank3dbf8ee8681cd.gif'); |
| 793 |
|
| 794 |
-- |
| 795 |
-- Table structure for table `x_session` |
| 796 |
-- |
| 797 |
|
| 798 |
DROP TABLE IF EXISTS x_session; |
| 799 |
CREATE TABLE x_session ( |
| 800 |
sess_id varchar(32) NOT NULL default '', |
| 801 |
sess_updated int(10) unsigned NOT NULL default '0', |
| 802 |
sess_ip varchar(15) NOT NULL default '', |
| 803 |
sess_data text NOT NULL, |
| 804 |
PRIMARY KEY (sess_id), |
| 805 |
KEY updated (sess_updated) |
| 806 |
) TYPE=MyISAM; |
| 807 |
|
| 808 |
-- |
| 809 |
-- Dumping data for table `x_session` |
| 810 |
-- |
| 811 |
|
| 812 |
INSERT INTO x_session VALUES ('c2mc5j3t4qo343bikajo7u1o53',1124001329,'10.12.60.63','xoopsUserId|s:1:\"1\";xoopsUserGroups|a:2:{i:0;s:1:\"1\";i:1;s:1:\"2\";}xoopsUserTheme|s:7:\"xoonips\";X2_MULTI_TOKEN|a:12:{s:19:\"XOOPS_TOKEN_DEFAULT\";a:1:{i:0;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:19:\"XOOPS_TOKEN_DEFAULT\";s:7:\"_token_\";s:32:\"a02b50ba59eda1dc12126ea504e50a42\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:0;}}s:11:\"preferences\";a:2:{i:0;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:11:\"preferences\";s:7:\"_token_\";s:32:\"8fcdabc3bf1de69ec22adf782cbe67b9\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:0;}i:1;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:11:\"preferences\";s:7:\"_token_\";s:32:\"394683a8d1c35bd4395d0fb975da181d\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:1;}}s:5:\"block\";a:31:{i:0;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"72e33c1037d8ac955695e965f1f0f85a\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:0;}i:1;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"df2f476086b3716b596b0548f9300760\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:1;}i:2;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"99ba7767efddd0f11d33767b8ad4bb45\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:2;}i:3;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"b134cb0c3967e62f798f55db8b70d1a1\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:3;}i:4;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"7290a299f28f6843120ee07897551d6e\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:4;}i:5;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"43de547fb7bbea533a34d7739ad1051f\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:5;}i:6;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"0e378410ed93e2741c093c577618e76d\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:6;}i:8;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"02d29e2fbc8fa39440ea203d8b37a87f\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:8;}i:9;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"2548ac2f70fd3618fb91bf833d2789a6\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:9;}i:7;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"4dccf4fea5411b4a5d7f81d6efc4d8b5\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:7;}i:10;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"f585aa05099da1b919bfb5c219aca0cf\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:10;}i:11;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"ea89dffb9ae63470a62cea3edafa94c2\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:11;}i:14;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"f4a31ddb6c3866aebeb47373f5a703b2\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:14;}i:12;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"e39d8bb11c8c9b78bc5d79a3df26525b\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:12;}i:13;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"e7e5a39ae8fa0bc9bed9d3acff65bdbf\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:13;}i:15;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"ecc94765159fee866a4381617fea3360\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:15;}i:16;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"38150d1f4945a637f067ec6e183954e3\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:16;}i:17;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"a590fc1ede6eab7f780f86cc00ba3feb\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:17;}i:18;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"3f6061c8fe7b5f1e2195cbd61e529af3\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:18;}i:19;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"c5d1f96c26c6443faec0b280cbc89d8b\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:19;}i:20;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"9156efc0db6fc0287b8f8f544047b466\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:20;}i:21;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"5d8e6bfbef950aed6613c1de3d58a149\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:21;}i:22;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"80f3476da8a75771be8066adcd99e86d\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:22;}i:23;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"ad9312f94802c0e64af089cd93a8ba9a\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:23;}i:24;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"1f1c79dcf44215bbdc2fa65d8af97301\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:24;}i:25;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"3da941bec99120aa7a229fe318df6e97\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:25;}i:26;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"bc3092190a2def85699b8b474207e61b\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:26;}i:27;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"19913b2101928d8f8ca1a47a717fd9a4\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:27;}i:28;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"8e34c7704e5499ae4f51f169434136d9\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:28;}i:29;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"a0be31f2d268dc238d89ecb6f37ce7c9\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:29;}i:30;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:5:\"block\";s:7:\"_token_\";s:32:\"83f12e9de3a326e60092f55b04cd67d4\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:30;}}s:10:\"groups_add\";a:10:{i:0;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:10:\"groups_add\";s:7:\"_token_\";s:32:\"c3e9df657085f6c10e3ace7811422779\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:0;}i:1;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:10:\"groups_add\";s:7:\"_token_\";s:32:\"481840e5243a9b381e441f20df48c7b6\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:1;}i:2;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:10:\"groups_add\";s:7:\"_token_\";s:32:\"1748ed3576fff1ec6c1d93cc6d8ff4f9\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:2;}i:3;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:10:\"groups_add\";s:7:\"_token_\";s:32:\"eb13b8d68f066bfd5c8070eaa8292cd1\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:3;}i:4;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:10:\"groups_add\";s:7:\"_token_\";s:32:\"372a829cac900e24304535b592929ceb\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:4;}i:5;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:10:\"groups_add\";s:7:\"_token_\";s:32:\"d0364c8bddd54a981324736b24a956bd\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:5;}i:6;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:10:\"groups_add\";s:7:\"_token_\";s:32:\"ed0ee74caef495442487017c6051709c\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:6;}i:7;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:10:\"groups_add\";s:7:\"_token_\";s:32:\"bd54c573529def1a6443fcb910628bc0\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:7;}i:8;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:10:\"groups_add\";s:7:\"_token_\";s:32:\"2cd8ea9a7c3180120f658c55636b8790\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:8;}i:9;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:10:\"groups_add\";s:7:\"_token_\";s:32:\"6730d20002cf1b4e04d14b05a358e004\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:9;}}s:13:\"groups_update\";a:4:{i:0;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:13:\"groups_update\";s:7:\"_token_\";s:32:\"0f694188e213e430c9147e9167eca019\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:0;}i:1;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:13:\"groups_update\";s:7:\"_token_\";s:32:\"34cdab785fe5ff92ac6860a09e632f23\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:1;}i:2;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:13:\"groups_update\";s:7:\"_token_\";s:32:\"400cb3bfdfeed1720031bbdb0a06cb18\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:2;}i:3;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:13:\"groups_update\";s:7:\"_token_\";s:32:\"b704826bb1e812c536b7d795b109868c\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:3;}}s:11:\"groups_User\";a:7:{i:0;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:11:\"groups_User\";s:7:\"_token_\";s:32:\"092db6cb8d3fac0e26a399dbc77fced2\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:0;}i:1;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:11:\"groups_User\";s:7:\"_token_\";s:32:\"d15ad0b5f74b61b1f21f03603cee496b\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:1;}i:2;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:11:\"groups_User\";s:7:\"_token_\";s:32:\"b9ad02235c3e124a4db6ec98d4803c15\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:2;}i:3;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:11:\"groups_User\";s:7:\"_token_\";s:32:\"00b6ebc6a224e92e8d562f3ff9558a0f\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:3;}i:4;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:11:\"groups_User\";s:7:\"_token_\";s:32:\"d734800654cd8332c5b811ab2573035d\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:4;}i:5;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:11:\"groups_User\";s:7:\"_token_\";s:32:\"1b64507fd95d2d3c93aff0ffbc47598a\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:5;}i:6;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:11:\"groups_User\";s:7:\"_token_\";s:32:\"145c24eaeaf19e95d6240a9302667bee\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:6;}}s:14:\"tplsets_update\";a:3:{i:0;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:14:\"tplsets_update\";s:7:\"_token_\";s:32:\"c60649c8272281aa95d82d67c4bf2745\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:0;}i:1;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:14:\"tplsets_update\";s:7:\"_token_\";s:32:\"992eb387c2215ae57afc97118ab125a2\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:1;}i:2;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:14:\"tplsets_update\";s:7:\"_token_\";s:32:\"5910d1ebce9db36a9c7baa84a393b7aa\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:2;}}s:7:\"tplform\";a:2:{i:0;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:7:\"tplform\";s:7:\"_token_\";s:32:\"34aad3febe3ce1c9e3920beb28e775af\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:0;}i:1;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:7:\"tplform\";s:7:\"_token_\";s:32:\"2c110404973915c6e318c692ab385263\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:1;}}s:13:\"users_addUser\";a:3:{i:0;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:13:\"users_addUser\";s:7:\"_token_\";s:32:\"8516518098e03959978645eb9230a667\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:0;}i:1;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:13:\"users_addUser\";s:7:\"_token_\";s:32:\"7583b09ee26f9d0382b4620b234c8570\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:1;}i:2;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:13:\"users_addUser\";s:7:\"_token_\";s:32:\"5a7b22d1a0a028265e77790ac8adf243\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:2;}}s:17:\"users_synchronize\";a:2:{i:0;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:17:\"users_synchronize\";s:7:\"_token_\";s:32:\"daec3a93b67e4f363e2e3d719817a60e\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:0;}i:1;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:17:\"users_synchronize\";s:7:\"_token_\";s:32:\"24a028ac2c49aee5208fa4b85b1af85c\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:1;}}s:16:\"users_updateUser\";a:2:{i:0;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:16:\"users_updateUser\";s:7:\"_token_\";s:32:\"83139c49a755edcc65dad2c0bff22cac\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:0;}i:1;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:16:\"users_updateUser\";s:7:\"_token_\";s:32:\"c7269de24d0e154f76ef169c54a87248\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:1;}}s:18:\"banners_BannersAdd\";a:1:{i:0;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:18:\"banners_BannersAdd\";s:7:\"_token_\";s:32:\"cf5f06efd5df8e88d056621582e36443\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:0;}}}XNPSID|i:1;X2_TOKEN|a:2:{s:17:\"tplsets_uploadtar\";O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:17:\"tplsets_uploadtar\";s:7:\"_token_\";s:32:\"179f3ab95f181c17f847cccc1c97ce84\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:0;}s:17:\"banners_AddClient\";O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:17:\"banners_AddClient\";s:7:\"_token_\";s:32:\"17e15b8d4c30bcef4f5458db3e80b6f5\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:0;}}xoonipsITID|i:2;'); |
| 813 |
INSERT INTO x_session VALUES ('84vj81s6hb8li3hdvg036ir0c5',1124006280,'10.12.60.63','xoopsUserId|s:1:\"2\";xoopsUserGroups|a:1:{i:0;s:1:\"2\";}XNPSID|i:2;xoonipsITID|s:1:\"8\";'); |
| 814 |
INSERT INTO x_session VALUES ('jhtbdrsc349ks4i9n50outcm27',1124672306,'10.12.60.63','xoopsUserId|s:1:\"1\";xoopsUserGroups|a:3:{i:0;s:1:\"1\";i:1;s:1:\"2\";i:2;s:1:\"4\";}xoopsUserTheme|s:7:\"xoonips\";XNPSID|i:3;'); |
| 815 |
INSERT INTO x_session VALUES ('cpgpt4fk8pg0de4spdc6l34c31',1124707523,'10.12.60.63','xoopsUserId|s:1:\"3\";xoopsUserGroups|a:1:{i:0;s:1:\"2\";}XNPSID|i:6;'); |
| 816 |
INSERT INTO x_session VALUES ('r367lvfd5neghp53968i8kbkd7',1124759681,'10.12.60.63','xoopsUserId|s:1:\"4\";xoopsUserGroups|a:1:{i:0;s:1:\"2\";}XNPSID|i:7;'); |
| 817 |
INSERT INTO x_session VALUES ('28ck99bkcrucsm1n9a5rut3477',1124778047,'10.12.60.63','xoopsUserId|s:1:\"1\";xoopsUserGroups|a:3:{i:0;s:1:\"1\";i:1;s:1:\"2\";i:2;s:1:\"4\";}xoopsUserTheme|s:7:\"xoonips\";XNPSID|i:9;X2_MULTI_TOKEN|a:3:{s:10:\"groups_add\";a:1:{i:0;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:10:\"groups_add\";s:7:\"_token_\";s:32:\"e67453b60651e13512c62a8469639a6f\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:0;}}s:13:\"groups_update\";a:2:{i:0;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:13:\"groups_update\";s:7:\"_token_\";s:32:\"e1f2dda5b10c74e8b862c8c73ff1ae02\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:0;}i:1;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:13:\"groups_update\";s:7:\"_token_\";s:32:\"bc551fe233de699a1a0a2dd3445fea94\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:1;}}s:11:\"groups_User\";a:1:{i:0;O:10:\"XoopsToken\":5:{s:6:\"_name_\";s:11:\"groups_User\";s:7:\"_token_\";s:32:\"c871912867e912169bfb6bb8636aeef1\";s:10:\"_lifetime_\";i:0;s:11:\"_unlimited_\";b:1;s:8:\"_number_\";i:0;}}}'); |
| 818 |
|
| 819 |
-- |
| 820 |
-- Table structure for table `x_smiles` |
| 821 |
-- |
| 822 |
|
| 823 |
DROP TABLE IF EXISTS x_smiles; |
| 824 |
CREATE TABLE x_smiles ( |
| 825 |
id smallint(5) unsigned NOT NULL auto_increment, |
| 826 |
code varchar(50) NOT NULL default '', |
| 827 |
smile_url varchar(100) NOT NULL default '', |
| 828 |
emotion varchar(75) NOT NULL default '', |
| 829 |
display tinyint(1) NOT NULL default '0', |
| 830 |
PRIMARY KEY (id) |
| 831 |
) TYPE=MyISAM; |
| 832 |
|
| 833 |
-- |
| 834 |
-- Dumping data for table `x_smiles` |
| 835 |
-- |
| 836 |
|
| 837 |
INSERT INTO x_smiles VALUES (1,':-D','smil3dbd4d4e4c4f2.gif','Very Happy',1); |
| 838 |
INSERT INTO x_smiles VALUES (2,':-)','smil3dbd4d6422f04.gif','Smile',1); |
| 839 |
INSERT INTO x_smiles VALUES (3,':-(','smil3dbd4d75edb5e.gif','Sad',1); |
| 840 |
INSERT INTO x_smiles VALUES (4,':-o','smil3dbd4d8676346.gif','Surprised',1); |
| 841 |
INSERT INTO x_smiles VALUES (5,':-?','smil3dbd4d99c6eaa.gif','Confused',1); |
| 842 |
INSERT INTO x_smiles VALUES (6,'8-)','smil3dbd4daabd491.gif','Cool',1); |
| 843 |
INSERT INTO x_smiles VALUES (7,':lol:','smil3dbd4dbc14f3f.gif','Laughing',1); |
| 844 |
INSERT INTO x_smiles VALUES (8,':-x','smil3dbd4dcd7b9f4.gif','Mad',1); |
| 845 |
INSERT INTO x_smiles VALUES (9,':-P','smil3dbd4ddd6835f.gif','Razz',1); |
| 846 |
INSERT INTO x_smiles VALUES (10,':oops:','smil3dbd4df1944ee.gif','Embaressed',0); |
| 847 |
INSERT INTO x_smiles VALUES (11,':cry:','smil3dbd4e02c5440.gif','Crying (very sad)',0); |
| 848 |
INSERT INTO x_smiles VALUES (12,':evil:','smil3dbd4e1748cc9.gif','Evil or Very Mad',0); |
| 849 |
INSERT INTO x_smiles VALUES (13,':roll:','smil3dbd4e29bbcc7.gif','Rolling Eyes',0); |
| 850 |
INSERT INTO x_smiles VALUES (14,';-)','smil3dbd4e398ff7b.gif','Wink',0); |
| 851 |
INSERT INTO x_smiles VALUES (15,':pint:','smil3dbd4e4c2e742.gif','Another pint of beer',0); |
| 852 |
INSERT INTO x_smiles VALUES (16,':hammer:','smil3dbd4e5e7563a.gif','ToolTimes at work',0); |
| 853 |
INSERT INTO x_smiles VALUES (17,':idea:','smil3dbd4e7853679.gif','I have an idea',0); |
| 854 |
|
| 855 |
-- |
| 856 |
-- Table structure for table `x_tplfile` |
| 857 |
-- |
| 858 |
|
| 859 |
DROP TABLE IF EXISTS x_tplfile; |
| 860 |
CREATE TABLE x_tplfile ( |
| 861 |
tpl_id mediumint(7) unsigned NOT NULL auto_increment, |
| 862 |
tpl_refid smallint(5) unsigned NOT NULL default '0', |
| 863 |
tpl_module varchar(25) NOT NULL default '', |
| 864 |
tpl_tplset varchar(50) NOT NULL default '', |
| 865 |
tpl_file varchar(50) NOT NULL default '', |
| 866 |
tpl_desc varchar(255) NOT NULL default '', |
| 867 |
tpl_lastmodified int(10) unsigned NOT NULL default '0', |
| 868 |
tpl_lastimported int(10) unsigned NOT NULL default '0', |
| 869 |
tpl_type varchar(20) NOT NULL default '', |
| 870 |
PRIMARY KEY (tpl_id), |
| 871 |
KEY tpl_refid (tpl_refid,tpl_type), |
| 872 |
KEY tpl_tplset (tpl_tplset,tpl_file(10)) |
| 873 |
) TYPE=MyISAM; |
| 874 |
|
| 875 |
-- |
| 876 |
-- Dumping data for table `x_tplfile` |
| 877 |
-- |
| 878 |
|
| 879 |
INSERT INTO x_tplfile VALUES (82,1,'system','default','system_dummy.html','Dummy template file for holding non-template contents. This should not be edited.',1123998590,0,'module'); |
| 880 |
INSERT INTO x_tplfile VALUES (81,1,'system','default','system_siteclosed.html','',1123998590,0,'module'); |
| 881 |
INSERT INTO x_tplfile VALUES (80,1,'system','default','system_comments_nest.html','',1123998590,0,'module'); |
| 882 |
INSERT INTO x_tplfile VALUES (79,1,'system','default','system_comments_thread.html','',1123998590,0,'module'); |
| 883 |
INSERT INTO x_tplfile VALUES (78,1,'system','default','system_comments_flat.html','',1123998590,0,'module'); |
| 884 |
INSERT INTO x_tplfile VALUES (77,1,'system','default','system_comment.html','',1123998590,0,'module'); |
| 885 |
INSERT INTO x_tplfile VALUES (76,1,'system','default','system_redirect.html','',1123998590,0,'module'); |
| 886 |
INSERT INTO x_tplfile VALUES (75,1,'system','default','system_rss.html','',1123998590,0,'module'); |
| 887 |
INSERT INTO x_tplfile VALUES (73,1,'system','default','system_userinfo.html','',1123998589,0,'module'); |
| 888 |
INSERT INTO x_tplfile VALUES (74,1,'system','default','system_userform.html','',1123998589,0,'module'); |
| 889 |
INSERT INTO x_tplfile VALUES (72,1,'system','default','system_imagemanager2.html','',1123998589,0,'module'); |
| 890 |
INSERT INTO x_tplfile VALUES (71,1,'system','default','system_imagemanager.html','',1123998589,0,'module'); |
| 891 |
INSERT INTO x_tplfile VALUES (15,1,'system','default','system_block_user.html','Shows user block',1123998591,0,'block'); |
| 892 |
INSERT INTO x_tplfile VALUES (16,2,'system','default','system_block_login.html','Shows login form',1123998591,0,'block'); |
| 893 |
INSERT INTO x_tplfile VALUES (17,3,'system','default','system_block_search.html','Shows search form block',1123998591,0,'block'); |
| 894 |
INSERT INTO x_tplfile VALUES (18,4,'system','default','system_block_waiting.html','Shows contents waiting for approval',1123998591,0,'block'); |
| 895 |
INSERT INTO x_tplfile VALUES (19,5,'system','default','system_block_mainmenu.html','Shows the main navigation menu of the site',1123998591,0,'block'); |
| 896 |
INSERT INTO x_tplfile VALUES (20,6,'system','default','system_block_siteinfo.html','Shows basic info about the site and a link to Recommend Us pop up window',1123998591,0,'block'); |
| 897 |
INSERT INTO x_tplfile VALUES (21,7,'system','default','system_block_online.html','Displays users/guests currently online',1123998591,0,'block'); |
| 898 |
INSERT INTO x_tplfile VALUES (22,8,'system','default','system_block_topusers.html','Top posters',1123998591,0,'block'); |
| 899 |
INSERT INTO x_tplfile VALUES (23,9,'system','default','system_block_newusers.html','Shows most recent users',1123998591,0,'block'); |
| 900 |
INSERT INTO x_tplfile VALUES (24,10,'system','default','system_block_comments.html','Shows most recent comments',1123998591,0,'block'); |
| 901 |
INSERT INTO x_tplfile VALUES (25,11,'system','default','system_block_notification.html','Shows notification options',1123998591,0,'block'); |
| 902 |
INSERT INTO x_tplfile VALUES (26,12,'system','default','system_block_themes.html','Shows theme selection box',1123998591,0,'block'); |
| 903 |
INSERT INTO x_tplfile VALUES (425,2,'xoonips','default','xoonips_group_list.html','xoonips group list',1124693393,0,'module'); |
| 904 |
INSERT INTO x_tplfile VALUES (426,2,'xoonips','default','xoonips_detail_print.html','xoonips detail page ( printer friendly )',1124693393,0,'module'); |
| 905 |
INSERT INTO x_tplfile VALUES (427,2,'xoonips','default','xoonips_itemselect_print.html','xoonips search page ( printer friendly )',1124693393,0,'module'); |
| 906 |
INSERT INTO x_tplfile VALUES (428,2,'xoonips','default','xoonips_top_itemtype_block.html','xoonips top page itemtype block',1124693393,0,'module'); |
| 907 |
INSERT INTO x_tplfile VALUES (424,2,'xoonips','default','xoonips_import_item.html','xoonips item select page for import',1124693393,0,'module'); |
| 908 |
INSERT INTO x_tplfile VALUES (421,2,'xoonips','default','xoonips_index.html','xoonips module top page',1124693391,0,'module'); |
| 909 |
INSERT INTO x_tplfile VALUES (423,2,'xoonips','default','xoonips_event_log.html','xoonips event log page',1124693391,0,'module'); |
| 910 |
INSERT INTO x_tplfile VALUES (422,2,'xoonips','default','xoonips_export_license.html','xoonips license agreement ( export )',1124693391,0,'module'); |
| 911 |
INSERT INTO x_tplfile VALUES (420,2,'xoonips','default','xoonips_userinfo.html','account info',1124693391,0,'module'); |
| 912 |
INSERT INTO x_tplfile VALUES (419,2,'xoonips','default','xoonips_userform.html','lost password',1124693391,0,'module'); |
| 913 |
INSERT INTO x_tplfile VALUES (418,2,'xoonips','default','registform.html','register now',1124693391,0,'module'); |
| 914 |
INSERT INTO x_tplfile VALUES (417,2,'xoonips','default','xoonips_groupadmin.html','edit group',1124693391,0,'module'); |
| 915 |
INSERT INTO x_tplfile VALUES (416,2,'xoonips','default','xoonips_confirm_block.html','confirm block',1124693390,0,'module'); |
| 916 |
INSERT INTO x_tplfile VALUES (414,2,'xoonips','default','xoonips_register_block.html','register block',1124693390,0,'module'); |
| 917 |
INSERT INTO x_tplfile VALUES (415,2,'xoonips','default','xoonips_detail_block.html','detail block',1124693390,0,'module'); |
| 918 |
INSERT INTO x_tplfile VALUES (413,2,'xoonips','default','xoonips_list_block.html','list block',1124693390,0,'module'); |
| 919 |
INSERT INTO x_tplfile VALUES (412,2,'xoonips','default','xoonips_main.html','binder test page',1124693390,0,'module'); |
| 920 |
INSERT INTO x_tplfile VALUES (411,2,'xoonips','default','xoonips_editindex.html','edit index page',1124693390,0,'module'); |
| 921 |
INSERT INTO x_tplfile VALUES (410,2,'xoonips','default','xoonips_certifyuser.html','certify user',1124693389,0,'module'); |
| 922 |
INSERT INTO x_tplfile VALUES (409,2,'xoonips','default','xoonips_editgroups.html','edit groups',1124693389,0,'module'); |
| 923 |
INSERT INTO x_tplfile VALUES (408,2,'xoonips','default','xoonips_main.html','xoonips main page',1124693389,0,'module'); |
| 924 |
INSERT INTO x_tplfile VALUES (407,2,'xoonips','default','xoonips_advanced_search.html','advanced search form',1124693389,0,'module'); |
| 925 |
INSERT INTO x_tplfile VALUES (406,2,'xoonips','default','xoonips_search_mday.html','search_mday form',1124693389,0,'module'); |
| 926 |
INSERT INTO x_tplfile VALUES (405,2,'xoonips','default','xoonips_search_month.html','search_month form',1124693389,0,'module'); |
| 927 |
INSERT INTO x_tplfile VALUES (402,2,'xoonips','default','xoonips_publication_mday.html','publication_mday form',1124693389,0,'module'); |
| 928 |
INSERT INTO x_tplfile VALUES (404,2,'xoonips','default','xoonips_search_year.html','search_year form',1124693389,0,'module'); |
| 929 |
INSERT INTO x_tplfile VALUES (403,2,'xoonips','default','xoonips_search_date.html','search_date form',1124693389,0,'module'); |
| 930 |
INSERT INTO x_tplfile VALUES (401,2,'xoonips','default','xoonips_publication_month.html','publication_month form',1124693389,0,'module'); |
| 931 |
INSERT INTO x_tplfile VALUES (399,2,'xoonips','default','xoonips_publication_date.html','publication_date form',1124693388,0,'module'); |
| 932 |
INSERT INTO x_tplfile VALUES (65,13,'xoonips','default','xoonips_block_quick_search.html','Shows xoonips quick search block',1124693394,0,'block'); |
| 933 |
INSERT INTO x_tplfile VALUES (66,14,'xoonips','default','xoonips_block_moderator.html','Shows moderator menu',1124693394,0,'block'); |
| 934 |
INSERT INTO x_tplfile VALUES (67,15,'xoonips','default','xoonips_block_tree.html','browse block',1124693394,0,'block'); |
| 935 |
INSERT INTO x_tplfile VALUES (68,16,'xoonips','default','xoonips_block_login.html','Shows xoonips login block',1124693394,0,'block'); |
| 936 |
INSERT INTO x_tplfile VALUES (69,17,'xoonips','default','xoonips_block_user.html','Shows user menu',1124693394,0,'block'); |
| 937 |
INSERT INTO x_tplfile VALUES (70,18,'xoonips','default','xoonips_block_group.html','Shows group menu',1124693394,0,'block'); |
| 938 |
INSERT INTO x_tplfile VALUES (83,1,'system','default','system_notification_list.html','',1123998590,0,'module'); |
| 939 |
INSERT INTO x_tplfile VALUES (84,1,'system','default','system_notification_select.html','',1123998590,0,'module'); |
| 940 |
INSERT INTO x_tplfile VALUES (85,3,'xnppaper','default','xnppaper_main.html','paper test page',1123999966,0,'module'); |
| 941 |
INSERT INTO x_tplfile VALUES (86,3,'xnppaper','default','xnppaper_list_block.html','list block',1123999967,0,'module'); |
| 942 |
INSERT INTO x_tplfile VALUES (87,3,'xnppaper','default','xnppaper_register_block.html','register block',1123999967,0,'module'); |
| 943 |
INSERT INTO x_tplfile VALUES (88,3,'xnppaper','default','xnppaper_detail_block.html','detail block',1123999967,0,'module'); |
| 944 |
INSERT INTO x_tplfile VALUES (89,3,'xnppaper','default','xnppaper_confirm_block.html','confirm block',1123999967,0,'module'); |
| 945 |
INSERT INTO x_tplfile VALUES (90,3,'xnppaper','default','xnppaper_search_block.html','search block',1123999968,0,'module'); |
| 946 |
INSERT INTO x_tplfile VALUES (91,4,'xnppresentation','default','xnppresentation_main.html','presentation test page',1123999974,0,'module'); |
| 947 |
INSERT INTO x_tplfile VALUES (92,4,'xnppresentation','default','xnppresentation_list_block.html','list block',1123999975,0,'module'); |
| 948 |
INSERT INTO x_tplfile VALUES (93,4,'xnppresentation','default','xnppresentation_register_block.html','register block',1123999975,0,'module'); |
| 949 |
INSERT INTO x_tplfile VALUES (94,4,'xnppresentation','default','xnppresentation_detail_block.html','detail block',1123999975,0,'module'); |
| 950 |
INSERT INTO x_tplfile VALUES (95,4,'xnppresentation','default','xnppresentation_confirm_block.html','confirm block',1123999975,0,'module'); |
| 951 |
INSERT INTO x_tplfile VALUES (96,4,'xnppresentation','default','xnppresentation_search_block.html','search block',1123999976,0,'module'); |
| 952 |
INSERT INTO x_tplfile VALUES (97,5,'xnpdata','default','xnpdata_main.html','data test page',1123999981,0,'module'); |
| 953 |
INSERT INTO x_tplfile VALUES (98,5,'xnpdata','default','xnpdata_list_block.html','list block',1123999982,0,'module'); |
| 954 |
INSERT INTO x_tplfile VALUES (99,5,'xnpdata','default','xnpdata_register_block.html','register block',1123999982,0,'module'); |
| 955 |
INSERT INTO x_tplfile VALUES (100,5,'xnpdata','default','xnpdata_detail_block.html','detail block',1123999982,0,'module'); |
| 956 |
INSERT INTO x_tplfile VALUES (101,5,'xnpdata','default','xnpdata_confirm_block.html','confirm block',1123999982,0,'module'); |
| 957 |
INSERT INTO x_tplfile VALUES (102,5,'xnpdata','default','xnpdata_search_block.html','search block',1123999983,0,'module'); |
| 958 |
INSERT INTO x_tplfile VALUES (103,6,'xnptool','default','xnptool_list_block.html','list block',1123999986,0,'module'); |
| 959 |
INSERT INTO x_tplfile VALUES (104,6,'xnptool','default','xnptool_register_block.html','register block',1123999986,0,'module'); |
| 960 |
INSERT INTO x_tplfile VALUES (105,6,'xnptool','default','xnptool_detail_block.html','detail block',1123999986,0,'module'); |
| 961 |
INSERT INTO x_tplfile VALUES (106,6,'xnptool','default','xnptool_confirm_block.html','confirm block',1123999987,0,'module'); |
| 962 |
INSERT INTO x_tplfile VALUES (107,6,'xnptool','default','xnptool_search_block.html','search block',1123999987,0,'module'); |
| 963 |
INSERT INTO x_tplfile VALUES (108,7,'xnpbook','default','xnpbook_list_block.html','list block',1123999988,0,'module'); |
| 964 |
INSERT INTO x_tplfile VALUES (109,7,'xnpbook','default','xnpbook_register_block.html','register block',1123999988,0,'module'); |
| 965 |
INSERT INTO x_tplfile VALUES (110,7,'xnpbook','default','xnpbook_detail_block.html','detail block',1123999988,0,'module'); |
| 966 |
INSERT INTO x_tplfile VALUES (111,7,'xnpbook','default','xnpbook_confirm_block.html','confirm block',1123999988,0,'module'); |
| 967 |
INSERT INTO x_tplfile VALUES (112,7,'xnpbook','default','xnpbook_search_block.html','search block',1123999989,0,'module'); |
| 968 |
INSERT INTO x_tplfile VALUES (113,8,'xnpurl','default','xnpurl_main.html','url test page',1123999989,0,'module'); |
| 969 |
INSERT INTO x_tplfile VALUES (114,8,'xnpurl','default','xnpurl_list_block.html','list block',1123999990,0,'module'); |
| 970 |
INSERT INTO x_tplfile VALUES (115,8,'xnpurl','default','xnpurl_register_block.html','register block',1123999990,0,'module'); |
| 971 |
INSERT INTO x_tplfile VALUES (116,8,'xnpurl','default','xnpurl_detail_block.html','detail block',1123999990,0,'module'); |
| 972 |
INSERT INTO x_tplfile VALUES (117,8,'xnpurl','default','xnpurl_confirm_block.html','confirm block',1123999990,0,'module'); |
| 973 |
INSERT INTO x_tplfile VALUES (118,8,'xnpurl','default','xnpurl_search_block.html','search block',1123999990,0,'module'); |
| 974 |
INSERT INTO x_tplfile VALUES (119,9,'xnpmodel','default','xnpmodel_main.html','model test page',1123999992,0,'module'); |
| 975 |
INSERT INTO x_tplfile VALUES (120,9,'xnpmodel','default','xnpmodel_list_block.html','list block',1123999992,0,'module'); |
| 976 |
INSERT INTO x_tplfile VALUES (121,9,'xnpmodel','default','xnpmodel_register_block.html','register block',1123999992,0,'module'); |
| 977 |
INSERT INTO x_tplfile VALUES (122,9,'xnpmodel','default','xnpmodel_detail_block.html','detail block',1123999993,0,'module'); |
| 978 |
INSERT INTO x_tplfile VALUES (123,9,'xnpmodel','default','xnpmodel_confirm_block.html','confirm block',1123999993,0,'module'); |
| 979 |
INSERT INTO x_tplfile VALUES (124,9,'xnpmodel','default','xnpmodel_search_block.html','search block',1123999993,0,'module'); |
| 980 |
INSERT INTO x_tplfile VALUES (400,2,'xoonips','default','xoonips_publication_year.html','publication_year form',1124693388,0,'module'); |
| 981 |
INSERT INTO x_tplfile VALUES (398,2,'xoonips','default','xoonips_itemselect.html','select item form',1124693388,0,'module'); |
| 982 |
INSERT INTO x_tplfile VALUES (397,2,'xoonips','default','xoonips_detail.html','detail item',1124693388,0,'module'); |
| 983 |
INSERT INTO x_tplfile VALUES (396,2,'xoonips','default','xoonips_confirm_edit.html','confirm edit item',1124693388,0,'module'); |
| 984 |
INSERT INTO x_tplfile VALUES (394,2,'xoonips','default','xoonips_certify.html','certify items',1124693387,0,'module'); |
| 985 |
INSERT INTO x_tplfile VALUES (395,2,'xoonips','default','xoonips_edit.html','edit item',1124693388,0,'module'); |
| 986 |
INSERT INTO x_tplfile VALUES (393,2,'xoonips','default','xoonips_confirm_register.html','confirmation before register',1124693387,0,'module'); |
| 987 |
INSERT INTO x_tplfile VALUES (392,2,'xoonips','default','xoonips_register.html','register item',1124693387,0,'module'); |
| 988 |
INSERT INTO x_tplfile VALUES (391,2,'xoonips','default','xoonips_itemlist.html','item listing',1124693387,0,'module'); |
| 989 |
|
| 990 |
-- |
| 991 |
-- Table structure for table `x_tplset` |
| 992 |
-- |
| 993 |
|
| 994 |
DROP TABLE IF EXISTS x_tplset; |
| 995 |
CREATE TABLE x_tplset ( |
| 996 |
tplset_id int(7) unsigned NOT NULL auto_increment, |
| 997 |
tplset_name varchar(50) NOT NULL default '', |
| 998 |
tplset_desc varchar(255) NOT NULL default '', |
| 999 |
tplset_credits text NOT NULL, |
| 1000 |
tplset_created int(10) unsigned NOT NULL default '0', |
| 1001 |
PRIMARY KEY (tplset_id) |
| 1002 |
) TYPE=MyISAM; |
| 1003 |
|
| 1004 |
-- |
| 1005 |
-- Dumping data for table `x_tplset` |
| 1006 |
-- |
| 1007 |
|
| 1008 |
INSERT INTO x_tplset VALUES (1,'default','XOOPS Default Template Set','',1123994350); |
| 1009 |
|
| 1010 |
-- |
| 1011 |
-- Table structure for table `x_tplsource` |
| 1012 |
-- |
| 1013 |
|
| 1014 |
DROP TABLE IF EXISTS x_tplsource; |
| 1015 |
CREATE TABLE x_tplsource ( |
| 1016 |
tpl_id mediumint(7) unsigned NOT NULL default '0', |
| 1017 |
tpl_source mediumtext NOT NULL, |
| 1018 |
KEY tpl_id (tpl_id) |
| 1019 |
) TYPE=MyISAM; |
| 1020 |
|
| 1021 |
-- |
| 1022 |
-- Dumping data for table `x_tplsource` |
| 1023 |
-- |
| 1024 |
|
| 1025 |
INSERT INTO x_tplsource VALUES (82,'<{$dummy_content}>'); |
| 1026 |
INSERT INTO x_tplsource VALUES (83,'<h4><{$lang_activenotifications}></h4>\r\n<form name=\"notificationlist\" action=\"notifications.php\" method=\"post\">\r\n<table class=\"outer\">\r\n <tr>\r\n <th><input name=\"allbox\" id=\"allbox\" onclick=\"xoopsCheckGroup(\'notificationlist\', \'allbox\', \'del_mod[]\');\" type=\"checkbox\" value=\"<{$lang_checkall}>\" /></th>\r\n <th><{$lang_event}></th>\r\n <th><{$lang_category}></th>\r\n <th><{$lang_itemid}></th>\r\n <th><{$lang_itemname}></th>\r\n </tr>\r\n <{foreach item=module from=$modules}>\r\n <tr>\r\n <td class=\"head\"><input name=\"del_mod[<{$module.id}>]\" id=\"del_mod[]\" onclick=\"xoopsCheckGroup(\'notificationlist\', \'del_mod[<{$module.id}>]\', \'del_not[<{$module.id}>][]\');\" type=\"checkbox\" value=\"<{$module.id}>\" /></td>\r\n <td class=\"head\" colspan=\"4\"><{$lang_module}>: <{$module.name}></td>\r\n </tr>\r\n <{foreach item=category from=$module.categories}>\r\n <{foreach item=item from=$category.items}>\r\n <{foreach item=notification from=$item.notifications}>\r\n <tr>\r\n <{cycle values=odd,even assign=class}>\r\n <td class=\"<{$class}>\"><input type=\"checkbox\" name=\"del_not[<{$module.id}>][]\" id=\"del_not[<{$module.id}>][]\" value=\"<{$notification.id}>\" /></td>\r\n <td class=\"<{$class}>\"><{$notification.event_title}></td>\r\n <td class=\"<{$class}>\"><{$notification.category_title}></td>\r\n <td class=\"<{$class}>\"><{if $item.id != 0}><{$item.id}><{/if}></td>\r\n <td class=\"<{$class}>\"><{if $item.id != 0}><{if $item.url != \'\'}><a href=\"<{$item.url}>\"><{/if}><{$item.name}><{if $item.url != \'\'}></a><{/if}><{/if}></td>\r\n </tr>\r\n <{/foreach}>\r\n <{/foreach}>\r\n <{/foreach}>\r\n <{/foreach}>\r\n <tr>\r\n <td class=\"foot\" colspan=\"5\">\r\n <input type=\"submit\" name=\"delete_cancel\" value=\"<{$lang_cancel}>\" />\r\n <input type=\"reset\" name=\"delete_reset\" value=\"<{$lang_clear}>\" />\r\n <input type=\"submit\" name=\"delete\" value=\"<{$lang_delete}>\" />\r\n </td>\r\n </tr>\r\n</table>\r\n</form>'); |
| 1027 |
INSERT INTO x_tplsource VALUES (84,'<{if $xoops_notification.show}>\r\n<form name=\"notification_select\" action=\"<{$xoops_notification.target_page}>\" method=\"post\">\r\n<h4 style=\"text-align:center;\"><{$lang_activenotifications}></h4>\r\n<input type=\"hidden\" name=\"not_redirect\" value=\"<{$xoops_notification.redirect_script}>\" />\r\n<table class=\"outer\">\r\n <tr><th colspan=\"3\"><{$lang_notificationoptions}></th></tr>\r\n <tr>\r\n <td class=\"head\"><{$lang_category}></td>\r\n <td class=\"head\"><input name=\"allbox\" id=\"allbox\" onclick=\"xoopsCheckAll(\'notification_select\',\'allbox\');\" type=\"checkbox\" value=\"<{$lang_checkall}>\" /></td>\r\n <td class=\"head\"><{$lang_events}></td>\r\n </tr>\r\n <{foreach name=outer item=category from=$xoops_notification.categories}>\r\n <{foreach name=inner item=event from=$category.events}>\r\n <tr>\r\n <{if $smarty.foreach.inner.first}>\r\n <td class=\"even\" rowspan=\"<{$smarty.foreach.inner.total}>\"><{$category.title}></td>\r\n <{/if}>\r\n <td class=\"odd\">\r\n <{counter assign=index}>\r\n <input type=\"hidden\" name=\"not_list[<{$index}>][params]\" value=\"<{$category.name}>,<{$category.itemid}>,<{$event.name}>\" />\r\n <input type=\"checkbox\" id=\"not_list[]\" name=\"not_list[<{$index}>][status]\" value=\"1\" <{if $event.subscribed}>checked=\"checked\"<{/if}> />\r\n </td>\r\n <td class=\"odd\"><{$event.caption}></td>\r\n </tr>\r\n <{/foreach}>\r\n <{/foreach}>\r\n <tr>\r\n <td class=\"foot\" colspan=\"3\" align=\"center\"><input type=\"submit\" name=\"not_submit\" value=\"<{$lang_updatenow}>\" /></td>\r\n </tr>\r\n</table>\r\n<div align=\"center\">\r\n<{$lang_notificationmethodis}>: <{$user_method}> [<a href=\"<{$editprofile_url}>\"><{$lang_change}></a>]\r\n</div>\r\n</form>\r\n<{/if}>'); |
| 1028 |
INSERT INTO x_tplsource VALUES (80,'<{section name=i loop=$comments}>\r\n<br />\r\n<table cellspacing=\"1\" class=\"outer\">\r\n <tr>\r\n <th width=\"20%\"><{$lang_poster}></th>\r\n <th><{$lang_thread}></th>\r\n </tr>\r\n <{include file=\"db:system_comment.html\" comment=$comments[i]}>\r\n</table>\r\n\r\n<!-- start comment replies -->\r\n<{foreach item=reply from=$comments[i].replies}>\r\n<br />\r\n<table cellspacing=\"0\" border=\"0\">\r\n <tr>\r\n <td width=\"<{$reply.prefix}>\"></td>\r\n <td>\r\n <table class=\"outer\" cellspacing=\"1\">\r\n <tr>\r\n <th width=\"20%\"><{$lang_poster}></th>\r\n <th><{$lang_thread}></th>\r\n </tr>\r\n <{include file=\"db:system_comment.html\" comment=$reply}>\r\n </table>\r\n </td>\r\n </tr>\r\n</table>\r\n<{/foreach}>\r\n<!-- end comment tree -->\r\n<{/section}>'); |
| 1029 |
INSERT INTO x_tplsource VALUES (81,'<!DOCTYPE html PUBLIC \'-//W3C//DTD XHTML 1.0 Transitional//EN\' \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'>\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"<{$xoops_langcode}>\" lang=\"<{$xoops_langcode}>\">\r\n<head>\r\n<meta http-equiv=\"content-type\" content=\"text/html; charset=<{$xoops_charset}>\" />\r\n<meta http-equiv=\"content-language\" content=\"<{$xoops_langcode}>\" />\r\n<title><{$xoops_sitename}></title>\r\n<link rel=\"stylesheet\" type=\"text/css\" media=\"all\" href=\"<{$xoops_url}>/xoops.css\" />\r\n\r\n</head>\r\n<body>\r\n <table cellspacing=\"0\">\r\n <tr id=\"header\">\r\n <td style=\"width: 150px; background-color: #2F5376; vertical-align: middle; text-align:center;\"><a href=\"<{$xoops_url}>/\"><img src=\"<{$xoops_imageurl}>logo.gif\" width=\"150\" alt=\"\" /></a></td>\r\n <td style=\"width: 100%; background-color: #2F5376; vertical-align: middle; text-align:center;\"> </td>\r\n </tr>\r\n <tr>\r\n <td style=\"height: 8px; border-bottom: 1px solid silver; background-color: #dddddd;\" colspan=\"2\"> </td>\r\n </tr>\r\n </table>\r\n\r\n <table cellspacing=\"1\" align=\"center\" width=\"80%\" border=\"0\" cellpadding=\"10px;\">\r\n <tr>\r\n <td align=\"center\"><div style=\"background-color: #DDFFDF; color: #136C99; text-align: center; border-top: 1px solid #DDDDFF; border-left: 1px solid #DDDDFF; border-right: 1px solid #AAAAAA; border-bottom: 1px solid #AAAAAA; font-weight: bold; padding: 10px;\"><{$lang_siteclosemsg}></div></td>\r\n </tr>\r\n </table>\r\n \r\n <form action=\"<{$xoops_url}>/user.php\" method=\"post\">\r\n <table cellspacing=\"0\" align=\"center\" style=\"border: 1px solid silver; width: 200px;\">\r\n <tr>\r\n <th style=\"background-color: #2F5376; color: #FFFFFF; padding : 2px; vertical-align : middle;\" colspan=\"2\"><{$lang_login}></th>\r\n </tr>\r\n <tr>\r\n <td style=\"padding: 2px;\"><{$lang_username}></td><td style=\"padding: 2px;\"><input type=\"text\" name=\"uname\" size=\"12\" value=\"\" /></td>\r\n </tr>\r\n <tr>\r\n <td style=\"padding: 2px;\"><{$lang_password}></td><td style=\"padding: 2px;\"><input type=\"password\" name=\"pass\" size=\"12\" /></td>\r\n </tr>\r\n <tr>\r\n <td style=\"padding: 2px;\"> </td>\r\n <td style=\"padding: 2px;\"><input type=\"hidden\" name=\"xoops_login\" value=\"1\" /><input type=\"submit\" value=\"<{$lang_login}>\" /></td>\r\n </tr>\r\n </table>\r\n </form>\r\n\r\n <table cellspacing=\"0\" width=\"100%\">\r\n <tr>\r\n <td style=\"height:8px; border-bottom: 1px solid silver; border-top: 1px solid silver; background-color: #dddddd;\" colspan=\"2\"> </td>\r\n </tr>\r\n </table>\r\n\r\n </body>\r\n</html>'); |
| 1030 |
INSERT INTO x_tplsource VALUES (76,'<html>\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=<{$xoops_charset}>\" />\r\n<meta http-equiv=\"Refresh\" content=\"<{$time}>; url=<{$url}>\" />\r\n<title><{$xoops_sitename}></title>\r\n</head>\r\n<body>\r\n<div style=\"text-align:center; background-color: #EBEBEB; border-top: 1px solid #FFFFFF; border-left: 1px solid #FFFFFF; border-right: 1px solid #AAAAAA; border-bottom: 1px solid #AAAAAA; font-weight : bold;\">\r\n <h4><{$message}></h4>\r\n <p><{$lang_ifnotreload}></p>\r\n</div>\r\n</body>\r\n</html>'); |
| 1031 |
INSERT INTO x_tplsource VALUES (77,'<!-- start comment post -->\r\n <tr>\r\n <td class=\"head\"><a id=\"comment<{$comment.id}>\"></a> <{$comment.poster.uname}></td>\r\n <td class=\"head\"><div class=\"comDate\"><span class=\"comDateCaption\"><{$lang_posted}>:</span> <{$comment.date_posted}> <span class=\"comDateCaption\"><{$lang_updated}>:</span> <{$comment.date_modified}></div></td>\r\n </tr>\r\n <tr>\r\n\r\n <{if $comment.poster.id != 0}>\r\n\r\n <td class=\"odd\"><div class=\"comUserRank\"><div class=\"comUserRankText\"><{$comment.poster.rank_title}></div><img class=\"comUserRankImg\" src=\"<{$xoops_upload_url}>/<{$comment.poster.rank_image}>\" alt=\"\" /></div><img class=\"comUserImg\" src=\"<{$xoops_upload_url}>/<{$comment.poster.avatar}>\" alt=\"\" /><div class=\"comUserStat\"><span class=\"comUserStatCaption\"><{$lang_joined}>:</span> <{$comment.poster.regdate}></div><div class=\"comUserStat\"><span class=\"comUserStatCaption\"><{$lang_from}>:</span> <{$comment.poster.from}></div><div class=\"comUserStat\"><span class=\"comUserStatCaption\"><{$lang_posts}>:</span> <{$comment.poster.postnum}></div><div class=\"comUserStatus\"><{$comment.poster.status}></div></td>\r\n\r\n <{else}>\r\n\r\n <td class=\"odd\"> </td>\r\n\r\n <{/if}>\r\n\r\n <td class=\"odd\">\r\n <div class=\"comTitle\"><{$comment.image}><{$comment.title}></div><div class=\"comText\"><{$comment.text}></div>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td class=\"even\"></td>\r\n\r\n <{if $xoops_iscommentadmin == true}>\r\n\r\n <td class=\"even\" align=\"right\">\r\n <a href=\"<{$editcomment_link}>&com_id=<{$comment.id}>\"><img src=\"<{$xoops_url}>/images/icons/edit.gif\" alt=\"<{$lang_edit}>\" /></a><a href=\"<{$deletecomment_link}>&com_id=<{$comment.id}>\"><img src=\"<{$xoops_url}>/images/icons/delete.gif\" alt=\"<{$lang_delete}>\" /></a><a href=\"<{$replycomment_link}>&com_id=<{$comment.id}>\"><img src=\"<{$xoops_url}>/images/icons/reply.gif\" alt=\"<{$lang_reply}>\" /></a>\r\n </td>\r\n\r\n <{elseif $xoops_isuser == true && $xoops_userid == $comment.poster.id}>\r\n\r\n <td class=\"even\" align=\"right\">\r\n <a href=\"<{$editcomment_link}>&com_id=<{$comment.id}>\"><img src=\"<{$xoops_url}>/images/icons/edit.gif\" alt=\"<{$lang_edit}>\" /></a><a href=\"<{$replycomment_link}>&com_id=<{$comment.id}>\"><img src=\"<{$xoops_url}>/images/icons/reply.gif\" alt=\"<{$lang_reply}>\" /></a>\r\n </td>\r\n\r\n <{elseif $xoops_isuser == true || $anon_canpost == true}>\r\n\r\n <td class=\"even\" align=\"right\">\r\n <a href=\"<{$replycomment_link}>&com_id=<{$comment.id}>\"><img src=\"<{$xoops_url}>/images/icons/reply.gif\" alt=\"<{$lang_reply}>\" /></a>\r\n </td>\r\n\r\n <{else}>\r\n\r\n <td class=\"even\"> </td>\r\n\r\n <{/if}>\r\n\r\n </tr>\r\n<!-- end comment post -->'); |
| 1032 |
INSERT INTO x_tplsource VALUES (78,'<table class=\"outer\" cellpadding=\"5\" cellspacing=\"1\">\r\n <tr>\r\n <th width=\"20%\"><{$lang_poster}></th>\r\n <th><{$lang_thread}></th>\r\n </tr>\r\n <{foreach item=comment from=$comments}>\r\n <{include file=\"db:system_comment.html\" comment=$comment}>\r\n <{/foreach}>\r\n</table>'); |
| 1033 |
INSERT INTO x_tplsource VALUES (79,'<{section name=i loop=$comments}>\r\n<br />\r\n<table cellspacing=\"1\" class=\"outer\">\r\n <tr>\r\n <th width=\"20%\"><{$lang_poster}></th>\r\n <th><{$lang_thread}></th>\r\n </tr>\r\n <{include file=\"db:system_comment.html\" comment=$comments[i]}>\r\n</table>\r\n\r\n<{if $show_threadnav == true}>\r\n<div style=\"text-align:left; margin:3px; padding: 5px;\">\r\n<a href=\"<{$comment_url}>\"><{$lang_top}></a> | <a href=\"<{$comment_url}>&com_id=<{$comments[i].pid}>&com_rootid=<{$comments[i].rootid}>#newscomment<{$comments[i].pid}>\"><{$lang_parent}></a>\r\n</div>\r\n<{/if}>\r\n\r\n<{if $comments[i].show_replies == true}>\r\n<!-- start comment tree -->\r\n<br />\r\n<table cellspacing=\"1\" class=\"outer\">\r\n <tr>\r\n <th width=\"50%\"><{$lang_subject}></th>\r\n <th width=\"20%\" align=\"center\"><{$lang_poster}></th>\r\n <th align=\"right\"><{$lang_posted}></th>\r\n </tr>\r\n <{foreach item=reply from=$comments[i].replies}>\r\n <tr>\r\n <td class=\"even\"><{$reply.prefix}> <a href=\"<{$comment_url}>&com_id=<{$reply.id}>&com_rootid=<{$reply.root_id}>\"><{$reply.title}></a></td>\r\n <td class=\"odd\" align=\"center\"><{$reply.poster.uname}></td>\r\n <td class=\"even\" align=\"right\"><{$reply.date_posted}></td>\r\n </tr>\r\n <{/foreach}>\r\n</table>\r\n<!-- end comment tree -->\r\n<{/if}>\r\n\r\n<{/section}>'); |
| 1034 |
INSERT INTO x_tplsource VALUES (75,'<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<rss version=\"2.0\">\r\n <channel>\r\n <title><{$channel_title}></title>\r\n <link><{$channel_link}></link>\r\n <description><{$channel_desc}></description>\r\n <lastBuildDate><{$channel_lastbuild}></lastBuildDate>\r\n <docs>http://backend.userland.com/rss/</docs>\r\n <generator><{$channel_generator}></generator>\r\n <category><{$channel_category}></category>\r\n <managingEditor><{$channel_editor}></managingEditor>\r\n <webMaster><{$channel_webmaster}></webMaster>\r\n <language><{$channel_language}></language>\r\n <{if $image_url != \"\"}>\r\n <image>\r\n <title><{$channel_title}></title>\r\n <url><{$image_url}></url>\r\n <link><{$channel_link}></link>\r\n <width><{$image_width}></width>\r\n <height><{$image_height}></height>\r\n </image>\r\n <{/if}>\r\n <{foreach item=item from=$items}>\r\n <item>\r\n <title><{$item.title}></title>\r\n <link><{$item.link}></link>\r\n <description><{$item.description}></description>\r\n <pubDate><{$item.pubdate}></pubDate>\r\n <guid><{$item.guid}></guid>\r\n </item>\r\n <{/foreach}>\r\n </channel>\r\n</rss>'); |
| 1035 |
INSERT INTO x_tplsource VALUES (74,'<fieldset style=\"padding: 10px;\">\r\n <legend style=\"font-weight: bold;\"><{$lang_login}></legend>\r\n <form action=\"user.php\" method=\"post\">\r\n <{$lang_username}> <input type=\"text\" name=\"uname\" size=\"26\" maxlength=\"25\" value=\"<{$usercookie}>\" /><br />\r\n <{$lang_password}> <input type=\"password\" name=\"pass\" size=\"21\" maxlength=\"32\" /><br />\r\n <input type=\"hidden\" name=\"op\" value=\"login\" />\r\n <input type=\"hidden\" name=\"xoops_redirect\" value=\"<{$redirect_page}>\" />\r\n <input type=\"submit\" value=\"<{$lang_login}>\" />\r\n </form>\r\n <a name=\"lost\"></a>\r\n <div><{$lang_notregister}><br /></div>\r\n</fieldset>\r\n\r\n<br />\r\n\r\n<fieldset style=\"padding: 10px;\">\r\n <legend style=\"font-weight: bold;\"><{$lang_lostpassword}></legend>\r\n <div><br /><{$lang_noproblem}></div>\r\n <form action=\"lostpass.php\" method=\"post\">\r\n <{$lang_youremail}> <input type=\"text\" name=\"email\" size=\"26\" maxlength=\"60\" /> <input type=\"hidden\" name=\"op\" value=\"mailpasswd\" /><input type=\"submit\" value=\"<{$lang_sendpassword}>\" />\r\n </form>\r\n</fieldset>'); |
| 1036 |
INSERT INTO x_tplsource VALUES (73,'<{if $user_ownpage == true}>\r\n\r\n<form name=\"usernav\" action=\"user.php\" method=\"post\">\r\n\r\n<br /><br />\r\n\r\n<table width=\"70%\" align=\"center\" border=\"0\">\r\n <tr align=\"center\">\r\n <td><input type=\"button\" value=\"<{$lang_editprofile}>\" onclick=\"location=\'edituser.php\'\" />\r\n <input type=\"button\" value=\"<{$lang_avatar}>\" onclick=\"location=\'edituser.php?op=avatarform\'\" />\r\n <input type=\"button\" value=\"<{$lang_inbox}>\" onclick=\"location=\'viewpmsg.php\'\" />\r\n\r\n <{if $user_candelete == true}>\r\n <input type=\"button\" value=\"<{$lang_deleteaccount}>\" onclick=\"location=\'user.php?op=delete\'\" />\r\n <{/if}>\r\n\r\n <input type=\"button\" value=\"<{$lang_logout}>\" onclick=\"location=\'user.php?op=logout\'\" /></td>\r\n </tr>\r\n</table>\r\n</form>\r\n\r\n<br /><br />\r\n<{elseif $xoops_isadmin != false}>\r\n\r\n<br /><br />\r\n\r\n<table width=\"70%\" align=\"center\" border=\"0\">\r\n <tr align=\"center\">\r\n <td><input type=\"button\" value=\"<{$lang_editprofile}>\" onclick=\"location=\'<{$xoops_url}>/modules/system/admin.php?fct=users&uid=<{$user_uid}>&op=modifyUser\'\" />\r\n <input type=\"button\" value=\"<{$lang_deleteaccount}>\" onclick=\"location=\'<{$xoops_url}>/modules/system/admin.php?fct=users&op=delUser&uid=<{$user_uid}>\'\" /></td>\r\n </tr>\r\n</table>\r\n\r\n<br /><br />\r\n<{/if}>\r\n\r\n<table width=\"100%\" border=\"0\" cellspacing=\"5\">\r\n <tr valign=\"top\">\r\n <td width=\"50%\">\r\n <table class=\"outer\" cellpadding=\"4\" cellspacing=\"1\" width=\"100%\">\r\n <tr>\r\n <th colspan=\"2\" align=\"center\"><{$lang_allaboutuser}></th>\r\n </tr>\r\n <tr valign=\"top\">\r\n <td class=\"head\"><{$lang_avatar}></td>\r\n <td align=\"center\" class=\"even\"><img src=\"<{$user_avatarurl}>\" alt=\"Avatar\" /></td>\r\n </tr>\r\n <tr>\r\n <td class=\"head\"><{$lang_realname}></td>\r\n <td align=\"center\" class=\"odd\"><{$user_realname}></td>\r\n </tr>\r\n <tr>\r\n <td class=\"head\"><{$lang_website}></td>\r\n <td class=\"even\"><{$user_websiteurl}></td>\r\n </tr>\r\n <tr valign=\"top\">\r\n <td class=\"head\"><{$lang_email}></td>\r\n <td class=\"odd\"><{$user_email}></td>\r\n </tr>\r\n <tr valign=\"top\">\r\n <td class=\"head\"><{$lang_privmsg}></td>\r\n <td class=\"even\"><{$user_pmlink}></td>\r\n </tr>\r\n <tr valign=\"top\">\r\n <td class=\"head\"><{$lang_icq}></td>\r\n <td class=\"odd\"><{$user_icq}></td>\r\n </tr>\r\n <tr valign=\"top\">\r\n <td class=\"head\"><{$lang_aim}></td>\r\n <td class=\"even\"><{$user_aim}></td>\r\n </tr>\r\n <tr valign=\"top\">\r\n <td class=\"head\"><{$lang_yim}></td>\r\n <td class=\"odd\"><{$user_yim}></td>\r\n </tr>\r\n <tr valign=\"top\">\r\n <td class=\"head\"><{$lang_msnm}></td>\r\n <td class=\"even\"><{$user_msnm}></td>\r\n </tr>\r\n <tr valign=\"top\">\r\n <td class=\"head\"><{$lang_location}></td>\r\n <td class=\"odd\"><{$user_location}></td>\r\n </tr>\r\n <tr valign=\"top\">\r\n <td class=\"head\"><{$lang_occupation}></td>\r\n <td class=\"even\"><{$user_occupation}></td>\r\n </tr>\r\n <tr valign=\"top\">\r\n <td class=\"head\"><{$lang_interest}></td>\r\n <td class=\"odd\"><{$user_interest}></td>\r\n </tr>\r\n <tr valign=\"top\">\r\n <td class=\"head\"><{$lang_extrainfo}></td>\r\n <td class=\"even\"><{$user_extrainfo}></td>\r\n </tr>\r\n </table>\r\n </td>\r\n <td width=\"50%\">\r\n <table class=\"outer\" cellpadding=\"4\" cellspacing=\"1\" width=\"100%\">\r\n <tr valign=\"top\">\r\n <th colspan=\"2\" align=\"center\"><{$lang_statistics}></th>\r\n </tr>\r\n <tr valign=\"top\">\r\n <td class=\"head\"><{$lang_membersince}></td>\r\n <td align=\"center\" class=\"even\"><{$user_joindate}></td>\r\n </tr>\r\n <tr valign=\"top\">\r\n <td class=\"head\"><{$lang_rank}></td>\r\n <td align=\"center\" class=\"odd\"><{$user_rankimage}><br /><{$user_ranktitle}></td>\r\n </tr>\r\n <tr valign=\"top\">\r\n <td class=\"head\"><{$lang_posts}></td>\r\n <td align=\"center\" class=\"even\"><{$user_posts}></td>\r\n </tr>\r\n <tr valign=\"top\">\r\n <td class=\"head\"><{$lang_lastlogin}></td>\r\n <td align=\"center\" class=\"odd\"><{$user_lastlogin}></td>\r\n </tr>\r\n </table>\r\n <br />\r\n <table class=\"outer\" cellpadding=\"4\" cellspacing=\"1\" width=\"100%\">\r\n <tr valign=\"top\">\r\n <th colspan=\"2\" align=\"center\"><{$lang_signature}></th>\r\n </tr>\r\n <tr valign=\"top\">\r\n <td class=\"even\"><{$user_signature}></td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n</table>\r\n\r\n<!-- start module search results loop -->\r\n<{foreach item=module from=$modules}>\r\n\r\n<p>\r\n<h4><{$module.name}></h4>\r\n\r\n <!-- start results item loop -->\r\n <{foreach item=result from=$module.results}>\r\n\r\n <img src=\"<{$result.image}>\" alt=\"<{$module.name}>\" /><b><a href=\"<{$result.link}>\"><{$result.title}></a></b><br /><small>(<{$result.time}>)</small><br />\r\n\r\n <{/foreach}>\r\n <!-- end results item loop -->\r\n\r\n<{$module.showall_link}>\r\n</p>\r\n\r\n<{/foreach}>\r\n<!-- end module search results loop -->'); |
| 1037 |
INSERT INTO x_tplsource VALUES (72,'<!DOCTYPE html PUBLIC \'//W3C//DTD XHTML 1.0 Transitional//EN\' \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'>\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"<{$xoops_langcode}>\" lang=\"<{$xoops_langcode}>\">\r\n<head>\r\n<meta http-equiv=\"content-type\" content=\"text/html; charset=<{$xoops_charset}>\" />\r\n<meta http-equiv=\"content-language\" content=\"<{$xoops_langcode}>\" />\r\n<title><{$xoops_sitename}> <{$lang_imgmanager}></title>\r\n<{$image_form.javascript}>\r\n<style type=\"text/css\" media=\"all\">\r\nbody {margin: 0;}\r\nimg {border: 0;}\r\ntable {width: 100%; margin: 0;}\r\na:link {color: #3a76d6; font-weight: bold; background-color: transparent;}\r\na:visited {color: #9eb2d6; font-weight: bold; background-color: transparent;}\r\na:hover {color: #e18a00; background-color: transparent;}\r\ntable td {background-color: white; font-size: 12px; padding: 0; border-width: 0; vertical-align: top; font-family: Verdana, Arial, Helvetica, sans-serif;}\r\ntable#imagenav td {vertical-align: bottom; padding: 5px;}\r\ntd.body {padding: 5px; vertical-align: middle;}\r\ntd.caption {border: 0; background-color: #2F5376; color:white; font-size: 12px; padding: 5px; vertical-align: top; text-align:left; font-family: Verdana, Arial, Helvetica, sans-serif;}\r\ntable#imageform {border: 1px solid silver;}\r\ntable#header td {width: 100%; background-color: #2F5376; vertical-align: middle;}\r\ntable#header td#headerbar {border-bottom: 1px solid silver; background-color: #dddddd;}\r\ndiv#footer {text-align:right; padding: 5px;}\r\n</style>\r\n</head>\r\n\r\n<body onload=\"window.resizeTo(<{$xsize}>, <{$ysize}>);\">\r\n <table id=\"header\" cellspacing=\"0\">\r\n <tr>\r\n <td><a href=\"<{$xoops_url}>/\"><img src=\"<{$xoops_url}>/images/logo.gif\" width=\"150\" height=\"80\" alt=\"\" /></a></td><td> </td>\r\n </tr>\r\n <tr>\r\n <td id=\"headerbar\" colspan=\"2\"> </td>\r\n </tr>\r\n </table>\r\n\r\n <table cellspacing=\"0\" id=\"imagenav\">\r\n <tr>\r\n <td align=\"left\"><a href=\"<{$xoops_url}>/imagemanager.php?target=<{$target}>&cat_id=<{$show_cat}>\"><{$lang_imgmanager}></a></td>\r\n </tr>\r\n </table>\r\n\r\n <form name=\"<{$image_form.name}>\" id=\"<{$image_form.name}>\" action=\"<{$image_form.action}>\" method=\"<{$image_form.method}>\" <{$image_form.extra}>>\r\n <table id=\"imageform\" cellspacing=\"0\">\r\n <!-- start of form elements loop -->\r\n <{foreach item=element from=$image_form.elements}>\r\n <{if $element.hidden != true}>\r\n <tr valign=\"top\">\r\n <td class=\"caption\"><{$element.caption}></td>\r\n <td class=\"body\"><{$element.body}></td>\r\n </tr>\r\n <{else}>\r\n <{$element.body}>\r\n <{/if}>\r\n <{/foreach}>\r\n <!-- end of form elements loop -->\r\n </table>\r\n </form>\r\n\r\n\r\n <div id=\"footer\">\r\n <input value=\"<{$lang_close}>\" type=\"button\" onclick=\"javascript:window.close();\" />\r\n </div>\r\n\r\n </body>\r\n</html>'); |
| 1038 |
INSERT INTO x_tplsource VALUES (71,'<!DOCTYPE html PUBLIC \'//W3C//DTD XHTML 1.0 Transitional//EN\' \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'>\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"<{$xoops_langcode}>\" lang=\"<{$xoops_langcode}>\">\r\n<head>\r\n<meta http-equiv=\"content-type\" content=\"text/html; charset=<{$xoops_charset}>\" />\r\n<meta http-equiv=\"content-language\" content=\"<{$xoops_langcode}>\" />\r\n<title><{$sitename}> <{$lang_imgmanager}></title>\r\n<script type=\"text/javascript\">\r\n<!--//\r\nfunction appendCode(addCode) {\r\n var targetDom = window.opener.xoopsGetElementById(\'<{$target}>\');\r\n if (targetDom.createTextRange && targetDom.caretPos){\r\n var caretPos = targetDom.caretPos;\r\n caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) \r\n== \' \' ? addCode + \' \' : addCode; \r\n } else if (targetDom.getSelection && targetDom.caretPos){\r\n var caretPos = targetDom.caretPos;\r\n caretPos.text = caretPos.text.charat(caretPos.text.length - 1) \r\n== \' \' ? addCode + \' \' : addCode;\r\n } else {\r\n targetDom.value = targetDom.value + addCode;\r\n }\r\n window.close();\r\n return;\r\n}\r\n//-->\r\n</script>\r\n<style type=\"text/css\" media=\"all\">\r\nbody {margin: 0;}\r\nimg {border: 0;}\r\ntable {width: 100%; margin: 0;}\r\na:link {color: #3a76d6; font-weight: bold; background-color: transparent;}\r\na:visited {color: #9eb2d6; font-weight: bold; background-color: transparent;}\r\na:hover {color: #e18a00; background-color: transparent;}\r\ntable td {background-color: white; font-size: 12px; padding: 0; border-width: 0; vertical-align: top; font-family: Verdana, Arial, Helvetica, sans-serif;}\r\ntable#imagenav td {vertical-align: bottom; padding: 5px;}\r\ntable#imagemain td {border-right: 1px solid silver; border-bottom: 1px solid silver; padding: 5px; vertical-align: middle;}\r\ntable#imagemain th {border: 0; background-color: #2F5376; color:white; font-size: 12px; padding: 5px; vertical-align: top; text-align:center; font-family: Verdana, Arial, Helvetica, sans-serif;}\r\ntable#header td {width: 100%; background-color: #2F5376; vertical-align: middle;}\r\ntable#header td#headerbar {border-bottom: 1px solid silver; background-color: #dddddd;}\r\ndiv#pagenav {text-align:center;}\r\ndiv#footer {text-align:right; padding: 5px;}\r\n</style>\r\n</head>\r\n\r\n<body onload=\"window.resizeTo(<{$xsize}>, <{$ysize}>);\">\r\n <table id=\"header\" cellspacing=\"0\">\r\n <tr>\r\n <td><a href=\"<{$xoops_url}>/\"><img src=\"<{$xoops_url}>/images/logo.gif\" width=\"150\" height=\"80\" alt=\"\" /></a></td><td> </td>\r\n </tr>\r\n <tr>\r\n <td id=\"headerbar\" colspan=\"2\"> </td>\r\n </tr>\r\n </table>\r\n\r\n <form action=\"imagemanager.php\" method=\"get\">\r\n <table cellspacing=\"0\" id=\"imagenav\">\r\n <tr>\r\n <td>\r\n <select name=\"cat_id\" onchange=\"location=\'<{$xoops_url}>/imagemanager.php?target=<{$target}>&cat_id=\'+this.options[this.selectedIndex].value\"><{$cat_options}></select> <input type=\"hidden\" name=\"target\" value=\"<{$target}>\" /><input type=\"submit\" value=\"<{$lang_go}>\" />\r\n </td>\r\n\r\n <{if $show_cat > 0}>\r\n <td align=\"right\"><a href=\"<{$xoops_url}>/imagemanager.php?target=<{$target}>&op=upload&imgcat_id=<{$show_cat}>\"><{$lang_addimage}></a></td>\r\n <{/if}>\r\n\r\n </tr>\r\n </table>\r\n </form>\r\n\r\n <{if $image_total > 0}>\r\n\r\n <table cellspacing=\"0\" id=\"imagemain\">\r\n <tr>\r\n <th><{$lang_imagename}></th>\r\n <th><{$lang_image}></th>\r\n <th><{$lang_imagemime}></th>\r\n <th><{$lang_align}></th>\r\n </tr>\r\n\r\n <{section name=i loop=$images}>\r\n <tr align=\"center\">\r\n <td><input type=\"hidden\" name=\"image_id[]\" value=\"<{$images[i].id}>\" /><{$images[i].nicename}></td>\r\n <td><img src=\"<{$images[i].src}>\" alt=\"\" /></td>\r\n <td><{$images[i].mimetype}></td>\r\n <td><a href=\"#\" onclick=\"javascript:appendCode(\'<{$images[i].lxcode}>\');\"><img src=\"<{$xoops_url}>/images/alignleft.gif\" alt=\"Left\" /></a> <a href=\"#\" onclick=\"javascript:appendCode(\'<{$images[i].xcode}>\');\"><img src=\"<{$xoops_url}>/images/aligncenter.gif\" alt=\"Center\" /></a> <a href=\"#\" onclick=\"javascript:appendCode(\'<{$images[i].rxcode}>\');\"><img src=\"<{$xoops_url}>/images/alignright.gif\" alt=\"Right\" /></a></td>\r\n </tr>\r\n <{/section}>\r\n </table>\r\n\r\n <{/if}>\r\n\r\n <div id=\"pagenav\"><{$pagenav}></div>\r\n\r\n <div id=\"footer\">\r\n <input value=\"<{$lang_close}>\" type=\"button\" onclick=\"javascript:window.close();\" />\r\n </div>\r\n\r\n </body>\r\n</html>'); |
| 1039 |
INSERT INTO x_tplsource VALUES (15,'<table cellspacing=\"0\">\r\n <tr>\r\n <td id=\"usermenu\">\r\n <a class=\"menuTop\" href=\"<{$xoops_url}>/user.php\"><{$block.lang_youraccount}></a>\r\n <a href=\"<{$xoops_url}>/edituser.php\"><{$block.lang_editaccount}></a>\r\n <a href=\"<{$xoops_url}>/notifications.php\"><{$block.lang_notifications}></a>\r\n <a href=\"<{$xoops_url}>/user.php?op=logout\"><{$block.lang_logout}></a>\r\n <{if $block.new_messages > 0}>\r\n <a class=\"highlight\" href=\"<{$xoops_url}>/viewpmsg.php\"><{$block.lang_inbox}> (<span style=\"color:#ff0000; font-weight: bold;\"><{$block.new_messages}></span>)</a>\r\n <{else}>\r\n <a href=\"<{$xoops_url}>/viewpmsg.php\"><{$block.lang_inbox}></a>\r\n <{/if}>\r\n\r\n <{if $xoops_isadmin}>\r\n <a href=\"<{$xoops_url}>/admin.php\"><{$block.lang_adminmenu}></a>\r\n <{/if}>\r\n </td>\r\n </tr>\r\n</table>'); |
| 1040 |
INSERT INTO x_tplsource VALUES (16,'<form style=\"margin-top: 0px;\" action=\"<{$xoops_url}>/user.php\" method=\"post\">\r\n <{$block.lang_username}><br />\r\n <input type=\"text\" name=\"uname\" size=\"12\" value=\"<{$block.unamevalue}>\" maxlength=\"25\" /><br />\r\n <{$block.lang_password}><br />\r\n <input type=\"password\" name=\"pass\" size=\"12\" maxlength=\"32\" /><br />\r\n <!-- <input type=\"checkbox\" name=\"rememberme\" value=\"On\" class =\"formButton\" /><{$block.lang_rememberme}><br /> //-->\r\n <input type=\"hidden\" name=\"xoops_redirect\" value=\"<{$xoops_requesturi}>\" />\r\n <input type=\"hidden\" name=\"op\" value=\"login\" />\r\n <input type=\"submit\" value=\"<{$block.lang_login}>\" /><br />\r\n <{$block.sslloginlink}>\r\n</form>\r\n<a href=\"<{$xoops_url}>/user.php#lost\"><{$block.lang_lostpass}></a>\r\n<br /><br />\r\n<a href=\"<{$xoops_url}>/register.php\"><{$block.lang_registernow}></a>'); |
| 1041 |
INSERT INTO x_tplsource VALUES (17,'<form style=\"margin-top: 0px;\" action=\"<{$xoops_url}>/search.php\" method=\"get\">\r\n <input type=\"text\" name=\"query\" size=\"14\" /><input type=\"hidden\" name=\"action\" value=\"results\" /><br /><input type=\"submit\" value=\"<{$block.lang_search}>\" />\r\n</form>\r\n<a href=\"<{$xoops_url}>/search.php\"><{$block.lang_advsearch}></a>'); |
| 1042 |
INSERT INTO x_tplsource VALUES (18,'<ul>\r\n <{foreach item=module from=$block.modules}>\r\n <li><a href=\"<{$module.adminlink}>\"><{$module.lang_linkname}></a>: <{$module.pendingnum}></li>\r\n <{/foreach}>\r\n</ul>'); |
| 1043 |
INSERT INTO x_tplsource VALUES (19,'<table cellspacing=\"0\">\r\n <tr>\r\n <td id=\"mainmenu\">\r\n <a class=\"menuTop\" href=\"<{$xoops_url}>/\"><{$block.lang_home}></a>\r\n <!-- start module menu loop -->\r\n <{foreach item=module from=$block.modules}>\r\n <a class=\"menuMain\" href=\"<{$xoops_url}>/modules/<{$module.directory}>/\"><{$module.name}></a>\r\n <{foreach item=sublink from=$module.sublinks}>\r\n <a class=\"menuSub\" href=\"<{$sublink.url}>\"><{$sublink.name}></a>\r\n <{/foreach}>\r\n <{/foreach}>\r\n <!-- end module menu loop -->\r\n </td>\r\n </tr>\r\n</table>'); |
| 1044 |
INSERT INTO x_tplsource VALUES (20,'<table class=\"outer\" cellspacing=\"0\">\r\n\r\n <{if $block.showgroups == true}>\r\n\r\n <!-- start group loop -->\r\n <{foreach item=group from=$block.groups}>\r\n <tr>\r\n <th colspan=\"2\"><{$group.name}></th>\r\n </tr>\r\n\r\n <!-- start group member loop -->\r\n <{foreach item=user from=$group.users}>\r\n <tr>\r\n <td class=\"even\" valign=\"middle\" align=\"center\"><img src=\"<{$user.avatar}>\" alt=\"\" width=\"32\" /><br /><a href=\"<{$xoops_url}>/userinfo.php?uid=<{$user.id}>\"><{$user.name}></a></td><td class=\"odd\" width=\"20%\" align=\"right\" valign=\"middle\"><{$user.msglink}></td>\r\n </tr>\r\n <{/foreach}>\r\n <!-- end group member loop -->\r\n\r\n <{/foreach}>\r\n <!-- end group loop -->\r\n <{/if}>\r\n</table>\r\n\r\n<br />\r\n\r\n<div style=\"margin: 3px; text-align:center;\">\r\n <img src=\"<{$block.logourl}>\" alt=\"\" border=\"0\" /><br /><{$block.recommendlink}>\r\n</div>'); |
| 1045 |
INSERT INTO x_tplsource VALUES (21,'<{$block.online_total}><br /><br /><{$block.lang_members}>: <{$block.online_members}><br /><{$block.lang_guests}>: <{$block.online_guests}><br /><br /><{$block.online_names}> <a href=\"javascript:openWithSelfMain(\'<{$xoops_url}>/misc.php?action=showpopups&type=online\',\'Online\',420,350);\"><{$block.lang_more}></a>'); |
| 1046 |
INSERT INTO x_tplsource VALUES (22,'<table cellspacing=\"1\" class=\"outer\">\r\n <{foreach item=user from=$block.users}>\r\n <tr class=\"<{cycle values=\"even,odd\"}>\" valign=\"middle\">\r\n <td><{$user.rank}></td>\r\n <td align=\"center\">\r\n <{if $user.avatar != \"\"}>\r\n <img src=\"<{$user.avatar}>\" alt=\"\" width=\"32\" /><br />\r\n <{/if}>\r\n <a href=\"<{$xoops_url}>/userinfo.php?uid=<{$user.id}>\"><{$user.name}></a>\r\n </td>\r\n <td align=\"center\"><{$user.posts}></td>\r\n </tr>\r\n <{/foreach}>\r\n</table>'); |
| 1047 |
INSERT INTO x_tplsource VALUES (23,'<table cellspacing=\"1\" class=\"outer\">\r\n <{foreach item=user from=$block.users}>\r\n <tr class=\"<{cycle values=\"even,odd\"}>\" valign=\"middle\">\r\n <td align=\"center\">\r\n <{if $user.avatar != \"\"}>\r\n <img src=\"<{$user.avatar}>\" alt=\"\" width=\"32\" /><br />\r\n <{/if}>\r\n <a href=\"<{$xoops_url}>/userinfo.php?uid=<{$user.id}>\"><{$user.name}></a>\r\n </td>\r\n <td align=\"center\"><{$user.joindate}></td>\r\n </tr>\r\n <{/foreach}>\r\n</table>'); |
| 1048 |
INSERT INTO x_tplsource VALUES (24,'<table width=\"100%\" cellspacing=\"1\" class=\"outer\">\r\n <{foreach item=comment from=$block.comments}>\r\n <tr class=\"<{cycle values=\"even,odd\"}>\">\r\n <td align=\"center\"><img src=\"<{$xoops_url}>/images/subject/<{$comment.icon}>\" alt=\"\" /></td>\r\n <td><{$comment.title}></td>\r\n <td align=\"center\"><{$comment.module}></td>\r\n <td align=\"center\"><{$comment.poster}></td>\r\n <td align=\"right\"><{$comment.time}></td>\r\n </tr>\r\n <{/foreach}>\r\n</table>'); |
| 1049 |
INSERT INTO x_tplsource VALUES (25,'<form action=\"<{$block.target_page}>\" method=\"post\">\r\n<table class=\"outer\">\r\n <{foreach item=category from=$block.categories}>\r\n <{foreach name=inner item=event from=$category.events}>\r\n <{if $smarty.foreach.inner.first}>\r\n <tr>\r\n <td class=\"head\" colspan=\"2\"><{$category.title}></td>\r\n </tr>\r\n <{/if}>\r\n <tr>\r\n <td class=\"odd\"><{counter assign=index}><input type=\"hidden\" name=\"not_list[<{$index}>][params]\" value=\"<{$category.name}>,<{$category.itemid}>,<{$event.name}>\" /><input type=\"checkbox\" name=\"not_list[<{$index}>][status]\" value=\"1\" <{if $event.subscribed}>checked=\"checked\"<{/if}> /></td>\r\n <td class=\"odd\"><{$event.caption}></td>\r\n </tr>\r\n <{/foreach}>\r\n <{/foreach}>\r\n <tr>\r\n <td class=\"foot\" colspan=\"2\"><input type=\"hidden\" name=\"not_redirect\" value=\"<{$block.redirect_script}>\" /><input type=\"submit\" name=\"not_submit\" value=\"<{$block.submit_button}>\" /></td>\r\n </tr>\r\n</table>\r\n</form>'); |
| 1050 |
INSERT INTO x_tplsource VALUES (26,'<div style=\"text-align: center;\">\r\n<form action=\"index.php\" method=\"post\">\r\n<{$block.theme_select}>\r\n</form>\r\n</div>'); |
| 1051 |
INSERT INTO x_tplsource VALUES (426,'<{*\r\n��������������������������������\r\n$Revision: 1.20 $\r\n$body ����������HTML\r\n*}>\r\n<div style=\'margin-left: 10%; margin-right: 10%;\'>\r\n<br />\r\n<{$printer_friendly_header}>\r\n<br />\r\n<{$item_url}><br />\r\n<br />\r\n<{$body}>\r\n\r\n<br />\r\n<div style=\'text-align: center\'>\r\n<{$meta_copyright}>, <{$sitename}>, <{$meta_author}>\r\n</div>\r\n</div>'); |
| 1052 |
INSERT INTO x_tplsource VALUES (427,'<{*\r\n\r\n$i ����\r\n$item_count_select\r\n$item_htmls ����������������(��������������)����������������������\r\n array( \'html\' => (����������������������HTML) )\r\n$itemcount ����������������������������\r\n$order_by_select\r\n$page\r\n$pages\r\n$url_for_get ������������������������������URL\r\n*}>\r\n<div style=\'margin-left: 10%; margin-right: 10%;\'>\r\n<br />\r\n<{$printer_friendly_header}>\r\n\r\n<h3><{$title|escape}></h3>\r\n\r\n<table>\r\n <tr>\r\n <td><{$date|escape}></td>\r\n <td>( <{$page_no_label}>, ordered by <{ $order_by_select[$orderby] }> )</td>\r\n <td><{$page}> of <{$maxpage}> Pages</td>\r\n </tr>\r\n</table>\r\n\r\n<{if isset( $quick_search_keyword ) }>\r\n<table>\r\n <tr>\r\n <td><{$smarty.const._MD_XOONIPS_ITEM_SEARCH_KEYWORD}> : <{$quick_search_keyword|escape}></td>\r\n <td><{$smarty.const._MD_XOONIPS_ITEM_SEARCH_ITEMTYPE}> : <{$quick_search_itemtype|escape}></td>\r\n </tr>\r\n</table>\r\n<{/if}>\r\n\r\n<{if isset( $index_path ) }>\r\n<table>\r\n <tr>\r\n <td>\r\n<{foreach item=index from=$index_path}>\r\n / <{$index.title|escape}>\r\n<{/foreach}>\r\n </td>\r\n </tr>\r\n</table>\r\n<{/if}>\r\n\r\n\r\n\r\n<table width=\"100%\" border=\"0\" cellspacing=\"5\">\r\n<{foreach item=i from=$item_htmls}>\r\n <tr valign=\"top\" class=\"<{cycle values=\"odd,even\"}>\">\r\n <td>\r\n <{$i.html}>\r\n </td>\r\n </tr>\r\n<{/foreach}>\r\n</table>\r\n\r\n<div style=\'text-align: center\'>\r\n<{$meta_copyright}>, <{$sitename}>, <{$meta_author}>\r\n</div>\r\n</div>\r\n<!-- end module search results loop -->'); |
| 1053 |
INSERT INTO x_tplsource VALUES (425,'<{* �������������������� *}>\r\n<{* $Revision: 1.20 $ *}>\r\n<{*\r\n\r\n$groups = array( \r\n array( \'gname\' => \'����������\',\r\n \'gdesc\' => \'������������\',\r\n \'gadmin\' => array( \r\n array( \'uname\' => \'����������������\',\r\n \'email\' => \'��������������e-mail\' ),\r\n ... ),\r\n ),\r\n ... );\r\n);\r\n\r\n*}>\r\n\r\n<p>\r\n<{$smarty.const._MD_XOONIPS_MODERATOR_GROUP_LIST}>\r\n</p>\r\n\r\n<{* ������������ *}>\r\n<table class=\'outer\' cellspacing=\'1\'>\r\n <tr>\r\n <th align=\"center\" width=\"20%\"><{$smarty.const._MD_XOONIPS_MODERATOR_GNAME}></th>\r\n <th align=\"center\" width=\"50%\"><{$smarty.const._MD_XOONIPS_MODERATOR_GDESC}></th>\r\n <th align=\"center\" width=\"30%\"><{$smarty.const._MD_XOONIPS_MODERATOR_GROUP_ADMIN}></th>\r\n </tr>\r\n<{foreach from=$groups item=group}>\r\n <tr class=\"<{cycle name=\"row1\" values=\"even,odd\"}>\">\r\n <td>\r\n <{$group.gname|escape}>\r\n </td>\r\n <td>\r\n <{$group.gdesc|escape}>\r\n </td>\r\n <td>\r\n<{section name=i loop=$group.gadmin}>\r\n<{if !$smarty.section.i.first}>\r\n/\r\n<{/if}>\r\n<{if $group.gadmin[i].email != \"\"}>\r\n <a href=\"mailto:<{$group.gadmin[i].email|escape}>\"><{$group.gadmin[i].uname|escape}></a>\r\n<{else}>\r\n <{$group.gadmin[i].uname|escape}>\r\n<{/if}>\r\n<{/section}>\r\n </td>\r\n </tr>\r\n<{/foreach}>\r\n</table>'); |
| 1054 |
INSERT INTO x_tplsource VALUES (391,'<{*\r\n\r\n$i ����\r\n$indecies\r\n$index\r\n$index_path\r\n$item\r\n$item_count_label\r\n$item_count_select\r\n$item_htmls\r\n$itemcount\r\n$num_of_items\r\n$maxpage\r\n$order_by_label\r\n$order_by_select\r\n$page\r\n$page_no_label\r\n$pages\r\n$title_page\r\n$title_register\r\n$edit_index ��������������������������������������������������������������\r\n������������ID(����������������������������������)\r\n$export_enabled ��������������������Export������������������(������������)\r\n\r\n*}>\r\n<script type=\'text/javascript\'>\r\n<!--\r\nfunction submit_add_to_index()\r\n{\r\n var form = document.getElementById(\'xoonips_add_to_index_form\');\r\n form.submit();\r\n return false;\r\n}\r\n\r\nfunction submit_edit_index()\r\n{\r\n var form = document.getElementById(\'xoonips_edit_index_form\');\r\n form.submit();\r\n return false;\r\n}\r\n\r\nfunction submit_itemlist_printer_friendly(){\r\n var form = document.getElementById(\'xoonips_itemlist_printer_friendly_form\');\r\n form.submit();\r\n return false;\r\n}\r\n\r\n// -->\r\n</script>\r\n\r\n<p>\r\n<h3><{$title_page}></h3>\r\n</p>\r\n\r\n<p>\r\n<h4><{$title_register}></h4>\r\n<center>\r\n<form action=\"\">\r\n<table width=\"100%\" border=\"0\" cellspacing=\"5\">\r\n <tr valign=\"top\" class=\"odd\">\r\n <td>\r\n <{$order_by_label}>\r\n <select name=\"orderby\" onchange=\"submit();\">\r\n<{foreach key=key item=item from=$order_by_select}>\r\n <option value=\"<{$key}>\" <{if $key==$orderby}> selected <{/if}> ><{$item}></option>\r\n<{/foreach}>\r\n </select>\r\n </td>\r\n <td>\r\n <{$item_count_label}>\r\n <select name=\"itemcount\" onchange=\"submit();\">\r\n<{foreach item=i from=$item_count_select}>\r\n <option value=\"<{$i}>\" <{if $i==$itemcount }> selected <{/if}> ><{$i}></option>\r\n<{/foreach}>\r\n </select>\r\n </td>\r\n </tr>\r\n</table> \r\n</center>\r\n<input type=\"hidden\" name=\"page\" value=\"1\" />\r\n<input type=\"hidden\" name=\"num_of_items\" value=\"<{$num_of_items}>\" />\r\n<{if $index_id > 0}>\r\n<input type=\"hidden\" name=\"index_id\" value=\"<{$index_id}>\" />\r\n<{/if}>\r\n</form>\r\n</p>\r\n\r\n<{if isset($index_path) }>\r\n<p>\r\n<form action=\'export.php\' method=\'post\'>\r\n<{foreach item=index from=$index_path}>\r\n / <a href=\"listitem.php?index_id=<{$index.item_id}>\"><{$index.title|escape}></a>\r\n<{/foreach}>\r\n<{* ROOT, Binders ����������Add�������������������� *}>\r\n<{if $index_id != $smarty.const.IID_ROOT && $index_id != $smarty.const.IID_BINDERS }>\r\n \r\n <input type=\'button\' name=\'add\' value=\'<{$smarty.const._MD_XOONIPS_ITEM_ADD_ITEM_BUTTON_LABEL}>\' onclick=\'submit_add_to_index();\' />\r\n<{/if}>\r\n<{* Index���������������������� *}>\r\n<{if $edit_index }>\r\n \r\n <input type=\'button\' name=\'\' value=\'<{$smarty.const._MD_XOONIPS_ITEM_EDIT_INDEX_BUTTON_LABEL}>\' onclick=\'submit_edit_index();\' />\r\n<{/if}>\r\n<{* Index��Export���������� *}>\r\n \r\n<{if !empty($export_enabled)}>\r\n<input type=\'hidden\' name=\'op\' value=\'\'/>\r\n<input type=\'button\' value=\'<{$smarty.const._MD_XOONIPS_EXPORT_BUTTON_LABEL}>\'\r\nonclick=\"form.action=\'export.php\'; op.value=\'config\'; submit();\" />\r\n<input type=\"hidden\" name=\"index_id\" value=\"<{$index.item_id}>\"/>\r\n<{/if}>\r\n<{* Printer Friendly�������������������� *}>\r\n<{if !empty($print_enabled)}>\r\n<input type=\'button\' value=\'<{$smarty.const._MD_XOONIPS_ITEM_PRINT_FRIENDLY_BUTTON_LABEL}>\' onclick=\"submit_itemlist_printer_friendly();\" />\r\n<{/if}>\r\n</form>\r\n</p>\r\n<{/if}>\r\n\r\n<p>\r\n<{$page_no_label}>\r\n</p>\r\n\r\n<{if $maxpage > 1}>\r\n<div align=\"right\">\r\n<{if $page > 1}>\r\n<{if $index_id > 0}>\r\n<a href=\"?index_id=<{$index_id}>&page=<{$prevpage}>&orderby=<{$orderby}>&itemcount=<{$itemcount}>&num_of_items=<{$num_of_items}>\">PREV</a>\r\n<{else}>\r\n<a href=\"?page=<{$prevpage}>&orderby=<{$orderby}>&itemcount=<{$itemcount}>&num_of_items=<{$num_of_items}>\">PREV</a>\r\n<{/if}>\r\n<{else}>\r\nPREV \r\n<{/if}>\r\n\r\n<{foreach item=i from=$pages}>\r\n<{if $i==$page}>\r\n<{$i}>\r\n<{else}>\r\n <{if $index_id > 0}>\r\n<a href=\"?index_id=<{$index_id}>&page=<{$i}>&orderby=<{$orderby}>&itemcount=<{$itemcount}>&num_of_items=<{$num_of_items}>\"><{$i}></a>\r\n <{else}>\r\n<a href=\"?page=<{$i}>&orderby=<{$orderby}>&itemcount=<{$itemcount}>&num_of_items=<{$num_of_items}>\"><{$i}></a>\r\n <{/if}>\r\n<{/if}>\r\n \r\n<{/foreach}>\r\n\r\n<{if $page < $maxpage }>\r\n <{if $index_id > 0}>\r\n<a href=\"?index_id=<{$index_id}>&page=<{$nextpage}>&orderby=<{$orderby}>&itemcount=<{$itemcount}>&num_of_items=<{$num_of_items}>\">NEXT</a>\r\n <{else}>\r\n<a href=\"?page=<{$nextpage}>&orderby=<{$orderby}>&itemcount=<{$itemcount}>&num_of_items=<{$num_of_items}>\">NEXT</a>\r\n <{/if}>\r\n<{else}>\r\nNEXT\r\n<{/if}>\r\n</div>\r\n<{/if}>\r\n\r\n<table width=\"100%\" border=\"0\" cellspacing=\"5\">\r\n<{foreach item=i from=$item_htmls}>\r\n <tr valign=\"top\" class=\"<{cycle values=\"odd,even\"}>\">\r\n <td>\r\n <{$i.html}>\r\n </td>\r\n </tr>\r\n<{/foreach}>\r\n</table>\r\n\r\n<{if $maxpage > 1}>\r\n<div align=\"right\">\r\n<{if $page > 1}>\r\n<{if $index_id > 0}>\r\n<a href=\"?index_id=<{$index_id}>&page=<{$prevpage}>&orderby=<{$orderby}>&itemcount=<{$itemcount}>&num_of_items=<{$num_of_items}>\">PREV</a>\r\n<{else}>\r\n<a href=\"?page=<{$prevpage}>&orderby=<{$orderby}>&itemcount=<{$itemcount}>&num_of_items=<{$num_of_items}>\">PREV</a>\r\n<{/if}>\r\n<{else}>\r\nPREV \r\n<{/if}>\r\n\r\n<{foreach item=i from=$pages}>\r\n<{if $i==$page}>\r\n<{$i}>\r\n<{else}>\r\n <{if $index_id > 0}>\r\n<a href=\"?index_id=<{$index_id}>&page=<{$i}>&orderby=<{$orderby}>&itemcount=<{$itemcount}>&num_of_items=<{$num_of_items}>\"><{$i}></a>\r\n <{else}>\r\n<a href=\"?page=<{$i}>&orderby=<{$orderby}>&itemcount=<{$itemcount}>&num_of_items=<{$num_of_items}>\"><{$i}></a>\r\n <{/if}>\r\n<{/if}>\r\n \r\n<{/foreach}>\r\n\r\n<{if $page < $maxpage }>\r\n <{if $index_id > 0}>\r\n<a href=\"?index_id=<{$index_id}>&page=<{$nextpage}>&orderby=<{$orderby}>&itemcount=<{$itemcount}>&num_of_items=<{$num_of_items}>\">NEXT</a>\r\n <{else}>\r\n<a href=\"?page=<{$nextpage}>&orderby=<{$orderby}>&itemcount=<{$itemcount}>&num_of_items=<{$num_of_items}>\">NEXT</a>\r\n <{/if}>\r\n<{else}>\r\nNEXT\r\n<{/if}>\r\n</div>\r\n<{/if}>\r\n\r\n<br />\r\n\r\n</form>\r\n\r\n<form action=\"advanced_search_add_to_index.php\" method=\"post\" id=\"xoonips_add_to_index_form\">\r\n<input type=\'hidden\' name=\'jumpto_url\' value=\'listitem.php\' />\r\n<input type=\"hidden\" name=\"jumpto_var[]\" value=\"add_to_index\" />\r\n<input type=\'hidden\' name=\'add_to_index\' value=\'<{$page}>,<{$itemcount}>,<{$orderby}>,<{$index_id}>\' />\r\n<input type=\"hidden\" name=\"add_to_index_id\" value=\"<{$index_id}>\" />\r\n<input type=\"hidden\" name=\"checkbox\" value=\"on\" />\r\n</form>\r\n<form action=\"editindex.php\" method=\"get\" id=\"xoonips_edit_index_form\">\r\n<input type=\"hidden\" name=\"index_id\" value=\"<{$index_id}>\" />\r\n</form>\r\n<form action=\"listitem.php\" method=\"get\" id=\"xoonips_itemlist_printer_friendly_form\" target=\'_blank\'>\r\n<input type=\"hidden\" name=\"index_id\" value=\"<{$index_id}>\" />\r\n<input type=\"hidden\" name=\"orderby\" value=\"<{$orderby}>\" />\r\n<input type=\"hidden\" name=\"page\" value=\"<{$page}>\" />\r\n<input type=\"hidden\" name=\"itemcount\" value=\"<{$itemcount}>\" />\r\n<input type=\"hidden\" name=\"num_of_items\" value=\"<{$num_of_items}>\" />\r\n<input type=\"hidden\" name=\"print\" value=\"1\" />\r\n</form>\r\n<!-- end module search results loop -->'); |
| 1055 |
INSERT INTO x_tplsource VALUES (392,'<!-- begin of register.html -->\r\n<script type=\"text/javascript\" src=\"treelib.js\">\r\n</script>\r\n<script type=\"text/javascript\">\r\n<!--\r\nfunction getCheckedIndexes( form1 ){\r\n xoonipsGetDocTreeView2();\r\n xoonipsSaveTreeState2(xoonipsDocTreeView2);\r\n form1.xoonipsCheckedXID.value = xoonipsCheckState2;\r\n return true;\r\n}\r\nfunction xnpSubmitForm(){\r\n <{* submit button��������������form��onSubmit��������������form.submit();����form��onSubmit������������ *}>\r\n var form1 = document.getElementsByName(\'registerform\').item(0);\r\n getCheckedIndexes( form1 );\r\n form1.submit();\r\n}\r\nfunction xnpSubmitFileUpload( obj, name ){\r\n document.getElementsByName(\'mode\').item(0).value = \'Upload\';\r\n var fileobj = document.getElementsByName(name).item(0);\r\n if ( fileobj.value == null || fileobj.value == \"\" ){\r\n window.alert( \'error: no file specified.\' );\r\n return false;\r\n }\r\n getCheckedIndexes(obj.form);\r\n obj.form.action = \'\';\r\n obj.form.submit();\r\n}\r\nfunction xnpSubmitFileDelete( obj, name, fileID ){\r\n document.getElementsByName(\'mode\').item(0).value = \'Delete\';\r\n document.getElementsByName(\'fileID\').item(0).value = fileID;\r\n getCheckedIndexes(obj.form);\r\n obj.form.action = \'\';\r\n obj.form.submit();\r\n}\r\n\r\n//return true if all required parameters are filled\r\nfunction onSubmitItem( form1 ){\r\n if( form1.title.value == \'\' ){\r\n alert( \"<{$smarty.const._MD_XOONIPS_ITEM_TITLE_REQUIRED}>\" );\r\n return false;\r\n }\r\n var previewobj = form1.preview;\r\n if ( previewobj != null ){\r\n if ( previewobj.value != null && previewobj.value != \"\" ){\r\n var msg = \"<{$smarty.const._MD_XOONIPS_ITEM_UPLOAD_PREVIEW}>\".replace(\"/%s/\",previewobj.value);\r\n window.alert( \'error: preview file \"\' + previewobj.value + \'\" will not be uploaded. \\npush Upload button first.\' );\r\n return false;\r\n }\r\n }\r\n return true;\r\n}\r\n\r\nfunction xnpOpenTextFileInputWindow( name, itemID ){\r\n window.open( \'<{$smarty.const.XOOPS_URL}>/modules/xoonips/input_text_file.php?name=\' + name, \'inputTextFile\', \r\n \"dependent,menubar=no,location=no,personalbar=no,directories=no,toolbar=no,resizable=yes,scrollbars=no,innerHeight=220,innerWidth=480\");\r\n // todo: icon��������������������������������������������������\r\n return false;\r\n}\r\n\r\nfunction onSelectChange( sel ){\r\n var index = sel.selectedIndex;\r\n if ( 0 <= index && index < sel.length ){\r\n var item_type_id = sel.options[index].value;\r\n window.location = \"<{$this_url}>?item_type_id=\" + item_type_id;\r\n }\r\n}\r\n\r\n//-->\r\n</script>\r\n\r\n<p><{$smarty.const._MI_XOONIPS_ACCOUNT_PANKUZU_PLATFORM_USER}>\r\n<{$smarty.const._MI_XOONIPS_ACCOUNT_PANKUZU_SEPARATOR}>\r\n<{$smarty.const._MI_XOONIPS_ITEM_PANKUZU_REGISTER_ITEM}></p>\r\n\r\n<p>\r\n<h3><{$smarty.const._MD_XOONIPS_ITEM_REGISTER_ITEM_TITLE}></h3>\r\n</p>\r\n\r\n<{*\r\n����������������������������\r\n\r\n$Revision: 1.20 $\r\n\r\n$body ����������������������HTML\r\n$select_item_type[] ������������������������������(��������=>item_type_id)\r\n$next_url ��������������������������URL\r\n$item_type_id ������������������������\r\n$index_checked_id ������������������������ID(����������(,)������)\r\n$system_message ��������������������������������������(������)\r\n$num_of_items_current ��������������������(��������������)\r\n$num_of_items_max ��������������������������\r\n$storage_of_items_current ����������������������������������������(��������������)\r\n$storage_of_items_max ������������������������������������������\r\n*}>\r\n\r\n\r\n<center>\r\n<form name=\"registerform\" action=\"<{$next_url}>\" method=\"post\"\r\nonSubmit=\"return onSubmitItemType(this) && onSubmitItem(this) && getCheckedIndexes(this)\" enctype=\"multipart/form-data\" accept-charset=\"*\">\r\n<input type=\'hidden\' name=\'mode\' value=\'\' />\r\n<input type=\'hidden\' name=\'fileID\' value=\'\' />\r\n<{if !empty( $select_item_type )}>\r\n<{$smarty.const._MD_XOONIPS_ITEM_SELECT_ITEM_TYPE_LABEL}>\r\n<select name=\"item_type_id\" onchange=\"onSelectChange(this);\">\r\n<{foreach key=name item=id from=$select_item_type}>\r\n <option value=\"<{$id}>\" <{if $id==$item_type_id}> selected <{/if}> ><{$name}></option>\r\n<{/foreach}>\r\n</select>\r\n<{/if}>\r\n</center>\r\n<br /><br />\r\n<{$system_message}>\r\n<br /><br />\r\n<{if !empty( $num_of_items_current ) && !empty( $num_of_items_max ) }>\r\n<{$smarty.const._MD_XOONIPS_ITEM_NUM_OF_ITEM}>: <{$num_of_items_current}> / <{$num_of_items_max}><br />\r\n<{/if}>\r\n<{if !empty( $storage_of_items_current ) && !empty( $storage_of_items_max ) }>\r\n<{$smarty.const._MD_XOONIPS_ITEM_STORAGE_OF_ITEM}>: <{$storage_of_items_current}>MB / <{$storage_of_items_max}>MB<br />\r\n<{/if}>\r\n<{if !empty( $body ) }>\r\n<{$body}>\r\n<{/if}>\r\n\r\n<br /><br />\r\n\r\n<{* <input type=\'hidden\' name=\'xoonipsForm\' value=\'<{$xoonipsForm}>\' /> *}>\r\n <input type=\'hidden\' name=\'xoonipsCheckedXID\' value=\'<{$index_checked_id}>\' />\r\n <{* To pass basic informations to next pages *}>\r\n <input type=\'hidden\' name=\'jumpto_var[]\' value=\'xoonipsCheckedXID\' />\r\n <input type=\'hidden\' name=\'jumpto_var[]\' value=\'title\' />\r\n <input type=\'hidden\' name=\'jumpto_var[]\' value=\'keywords\' />\r\n <input type=\'hidden\' name=\'jumpto_var[]\' value=\'description\' />\r\n <input type=\'hidden\' name=\'jumpto_var[]\' value=\'doi\' />\r\n <input type=\'hidden\' name=\'jumpto_var[]\' value=\'change_log\' />\r\n<{* <input type=\'hidden\' name=\'jumpto_var[]\' value=\'xoonipsForm\' /> *}>\r\n\r\n<{if !empty( $body ) || !empty( $select_item_type )}>\r\n<center>\r\n <input type=\"submit\" id=\"nextButton\"\r\n value=\"<{$smarty.const._MD_XOONIPS_ITEM_NEXT_BUTTON_LABEL}>\"/>\r\n</center>\r\n<{/if}>\r\n</form>\r\n<!-- end of register.html -->'); |
| 1056 |
INSERT INTO x_tplsource VALUES (393,'<p>\r\n<h3><{$smarty.const._MD_XOONIPS_ITEM_REGISTER_ITEM_CONFIRM}></h3>\r\n</p>\r\n\r\n<{*\r\n��������������������������������\r\n\r\n$Revision: 1.20 $\r\n\r\n$body ��������������������������HTML\r\n$http_vars ������������������������������������������(����������������)\r\n$system_message ��������������������������������������(������)\r\n*}>\r\n\r\n\r\n<br /><br />\r\n\r\n<{$smarty.const._MD_XOONIPS_ITEM_REGISTER_ITEM_CONFIRM_MESSAGE}>\r\n<br/>\r\n\r\n<form name=\'confirm\' action=\"confirm_register.php\" method=\"post\">\r\n\r\n<{$system_message}>\r\n<{$body}>\r\n\r\n<br /><br />\r\n\r\n<{foreach key=k item=v from=$http_vars}>\r\n <input type=\"hidden\" name=\"<{$k}>\" value=\"<{$v}>\" />\r\n<{/foreach}>\r\n\r\n<input type=\"hidden\" name=\"op\" value=\"register\" />\r\n\r\n<center>\r\n <input type=\"submit\" value=\"<{$smarty.const._MD_XOONIPS_ITEM_REGISTER_BUTTON_LABEL}>\" />\r\n <input type=\"button\" value=\"<{$smarty.const._MD_XOONIPS_ITEM_BACK_BUTTON_LABEL}>\" onclick=\"document.confirm.action=\'register.php\'; submit();\" />\r\n</center>\r\n</form>'); |
| 1057 |
INSERT INTO x_tplsource VALUES (394,'<{if !empty( $pankuzu )}>\r\n<p><{$pankuzu}></p>\r\n<{/if}>\r\n<p>\r\n<h3><{$smarty.const._MD_XOONIPS_ITEM_CERTIFY_ITEM_TITLE}></h3>\r\n</p>\r\n\r\n<{*\r\n����������������������������\r\n\r\n$Revision: 1.20 $\r\n\r\n$items[] ��������������������������\r\n array( item_id=>��������ID, index_id=>��������������������ID, \r\n item_body=>��������������������������HTML,\r\n index_body=>������������������) ����������\r\n\r\n$items[] ��������������������������\r\n array( item_id=>��������ID,\r\n index_ids=>array( ��������������������ID������ ),\r\n item_body=>��������������������������HTML,\r\n index_body=>������������������) ����������\r\n\r\n*}>\r\n\r\n\r\n<{foreach item=i from=$items}>\r\n <form name=\'certify<{$i.item_id}>\' action=\"certify.php<{if !empty($menu_id)}>?menu_id=<{$menu_id}><{/if}>\" method=\"post\">\r\n <input type=\'hidden\' name=\'item_id\' value=\'<{$i.item_id}>\' />\r\n<{foreach item=j from=$i.index_ids}>\r\n <input type=\'hidden\' name=\'index_ids[]\' value=\'<{$j}>\' />\r\n<{/foreach}>\r\n <input type=\'hidden\' name=\'op\' value=\'certify\' />\r\n </form>\r\n <form name=\'uncertify<{$i.item_id}>\' action=\"certify.php<{if !empty($menu_id)}>?menu_id=<{$menu_id}><{/if}>\" method=\"post\">\r\n <input type=\'hidden\' name=\'item_id\' value=\'<{$i.item_id}>\' />\r\n<{foreach item=j from=$i.index_ids}>\r\n <input type=\'hidden\' name=\'index_ids[]\' value=\'<{$j}>\' />\r\n<{/foreach}>\r\n <input type=\'hidden\' name=\'op\' value=\'uncertify\' />\r\n </form>\r\n<{/foreach}>\r\n\r\n<br /><br />\r\n\r\n<table >\r\n <tr class=\"head\">\r\n <th><{$smarty.const._MD_XOONIPS_HEADER_CERTIFY_ITEMS}></th>\r\n </tr>\r\n<{if !empty( $items ) }>\r\n <{foreach item=i from=$items}>\r\n <tr class=\"<{cycle values=\"odd,even\"}>\">\r\n <td>\r\n <table>\r\n <tr>\r\n <td class=\"head\"><{$smarty.const._MD_XOONIPS_ITEM_ITEM_LABEL}></td>\r\n <td><{$i.item_body}></td>\r\n <td rowspan=\'2\' valign=\'middle\' align=\'right\'>\r\n <form action=\"\">\r\n <div nowrap=\"true\">\r\n <input type=\"button\" value=\"<{$smarty.const._MD_XOONIPS_ITEM_CERTIFY_BUTTON_LABEL}>\" onclick=\"document.certify<{$i.item_id}>.submit();\" />\r\n <input type=\"button\" value=\"<{$smarty.const._MD_XOONIPS_ITEM_UNCERTIFY_BUTTON_LABEL}>\" onclick=\"document.uncertify<{$i.item_id}>.submit();\" />\r\n </div>\r\n </form>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td class=\"head\"><{$smarty.const._MD_XOONIPS_ITEM_INDEX_LABEL}></td>\r\n <td><{$i.index_body}></td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n <{/foreach}>\r\n<{else}>\r\n <tr class=\"odd\" align=\"center\">\r\n <td style=\'vertical-align:middle; text-align:center;\'><font size=5><{$smarty.const._MD_XOONIPS_ITEM_NO_CERTIFY_ITEMS}></font></td>\r\n </tr>\r\n<{/if}>\r\n</table>'); |
| 1058 |
INSERT INTO x_tplsource VALUES (395,'<script type=\"text/javascript\" src=\"treelib.js\">\r\n</script>\r\n<script type=\"text/javascript\">\r\n<!--\r\nfunction getCheckedIndexes( form1 ){\r\n xoonipsGetDocTreeView2();\r\n xoonipsSaveTreeState2(xoonipsDocTreeView2);\r\n form1.xoonipsCheckedXID.value = xoonipsCheckState2;\r\n return true;\r\n}\r\nfunction xnpSubmitForm(){\r\n <{* submit button��������������form��onSubmit��������������form.submit();����form��onSubmit������������ *}>\r\n var form1 = document.getElementsByName(\'editform\').item(0);\r\n getCheckedIndexes( form1 );\r\n form1.submit();\r\n}\r\nfunction xnpSubmitFileUpload( obj, name ){\r\n document.getElementsByName(\'mode\').item(0).value = \'Upload\';\r\n var fileobj = document.getElementsByName(name).item(0);\r\n if ( fileobj.value == null || fileobj.value == \"\" ){\r\n window.alert( \'error: no file specified.\' );\r\n return false;\r\n }\r\n getCheckedIndexes(obj.form);\r\n obj.form.action = \'\';\r\n obj.form.submit();\r\n}\r\nfunction xnpSubmitFileDelete( obj, name, fileID ){\r\n document.getElementsByName(\'mode\').item(0).value = \'Delete\';\r\n document.getElementsByName(\'fileID\').item(0).value = fileID;\r\n getCheckedIndexes(obj.form);\r\n obj.form.action = \'\';\r\n obj.form.submit();\r\n}\r\n\r\n//return true if all required parameters are filled\r\nfunction onSubmitItem( form1 ){\r\n if( form1.title.value == \'\' ){\r\n alert( \"<{$smarty.const._MD_XOONIPS_ITEM_TITLE_REQUIRED}>\" );\r\n return false;\r\n }\r\n var previewobj = form1.preview;\r\n if ( previewobj != null ){\r\n if ( previewobj.value != null && previewobj.value != \"\" ){\r\n var msg = \"<{$smarty.const._MD_XOONIPS_ITEM_UPLOAD_PREVIEW}>\".replace(\"/%s/\",previewobj.value);\r\n window.alert( \'error: preview file \"\' + previewobj.value + \'\" will not be uploaded. \\npush Upload button first.\' );\r\n return false;\r\n }\r\n }\r\n return true;\r\n}\r\n\r\nfunction xnpOpenTextFileInputWindow( name, itemID ){\r\n window.open( \'<{$smarty.const.XOOPS_URL}>/modules/xoonips/input_text_file.php?name=\' + name, \'inputTextFile\', \r\n \"dependent,menubar=no,location=no,personalbar=no,directories=no,toolbar=no,resizable=yes,scrollbars=no,innerHeight=220,innerWidth=480\");\r\n // todo: icon��������������������������������������������������\r\n return false;\r\n}\r\n\r\n\r\n//-->\r\n</script>\r\n\r\n<p>\r\n<h3><{$smarty.const._MD_XOONIPS_ITEM_MODIFY_ITEM_TITLE}></h3>\r\n</p>\r\n\r\n<{*\r\n����������������������������\r\n\r\n$Revision: 1.20 $\r\n\r\n$item_id ��������������������ID\r\n$body ����������������������HTML\r\n$next_url ��������������������������URL\r\n$xoonipsCheckedXID ����������������������ID(\',\'������)\r\n$num_of_items_current ��������������������(��������������)\r\n$num_of_items_max ��������������������������\r\n$storage_of_items_current ����������������������������������������(��������������)\r\n$storage_of_items_max ������������������������������������������\r\n*}>\r\n\r\n\r\n<br /><br />\r\n\r\n<form name=\"editform\" action=\"<{$next_url}>\" method=\"post\"\r\nonSubmit=\"return onSubmitItemType(this) && onSubmitItem(this) && getCheckedIndexes(this)\" enctype=\"multipart/form-data\">\r\n<input type=\'hidden\' name=\'mode\' value=\'\' />\r\n<input type=\'hidden\' name=\'fileID\' value=\'\' />\r\n\r\n<{if !empty( $num_of_items_current ) && !empty( $num_of_items_max ) }>\r\n<{$smarty.const._MD_XOONIPS_ITEM_NUM_OF_ITEM}>: <{$num_of_items_current}> / <{$num_of_items_max}><br />\r\n<{/if}>\r\n<{if !empty( $storage_of_items_current ) && !empty( $storage_of_items_max ) }>\r\n<{$smarty.const._MD_XOONIPS_ITEM_STORAGE_OF_ITEM}>: <{$storage_of_items_current}>MB / <{$storage_of_items_max}>MB<br />\r\n<{/if}>\r\n<{if !empty( $body ) }>\r\n<{$body}>\r\n<{/if}>\r\n\r\n <input type=\'hidden\' name=\'xoonipsCheckedXID\' value=\'<{$xoonipsCheckedXID}>\' />\r\n <{* To pass basic informations to next pages *}>\r\n <input type=\'hidden\' name=\'jumpto_var[]\' value=\'xoonipsCheckedXID\' />\r\n <input type=\'hidden\' name=\'jumpto_var[]\' value=\'title\' />\r\n <input type=\'hidden\' name=\'jumpto_var[]\' value=\'keywords\' />\r\n <input type=\'hidden\' name=\'jumpto_var[]\' value=\'description\' />\r\n <input type=\'hidden\' name=\'jumpto_var[]\' value=\'doi\' />\r\n <input type=\'hidden\' name=\'jumpto_var[]\' value=\'change_log\' />\r\n <input type=\'hidden\' name=\'item_id\' value=\'<{$item_id}>\' />\r\n\r\n<center>\r\n <input type=\"submit\" id=\"nextButton\" value=\"<{$smarty.const._MD_XOONIPS_ITEM_NEXT_BUTTON_LABEL}>\" />\r\n</center>\r\n</form>'); |
| 1059 |
INSERT INTO x_tplsource VALUES (396,'<p>\r\n<h3><{$smarty.const._MD_XOONIPS_ITEM_MODIFY_ITEM_TITLE}></h3>\r\n</p>\r\n\r\n<{*\r\n��������������������������������\r\n\r\n$Revision: 1.20 $\r\n\r\n$item_id ��������������������ID\r\n$body ��������������������������HTML\r\n$http_vars ������������������������������������������(����������������)\r\n$system_message ��������������������������������������(������)\r\n*}>\r\n\r\n<br /><br />\r\n\r\n<{$smarty.const._MD_XOONIPS_ITEM_MODIFY_ITEM_CONFIRM_MESSAGE}>\r\n<br/>\r\n\r\n<form name=\'confirm\' action=\"confirm_edit.php\" method=\"post\">\r\n\r\n<{$system_message}>\r\n<{$body}>\r\n\r\n<br /><br />\r\n\r\n<{foreach key=k item=v from=$http_vars}>\r\n <input type=\"hidden\" name=\"<{$k}>\" value=\"<{$v}>\" />\r\n<{/foreach}>\r\n\r\n <input type=\"hidden\" name=\"op\" value=\"update\" />\r\n <input type=\'hidden\' name=\'item_id\' value=\'<{$item_id}>\' />\r\n\r\n<center>\r\n <input type=\"submit\" value=\"<{$smarty.const._MD_XOONIPS_ITEM_UPDATE_BUTTON_LABEL}>\" />\r\n <input type=\"button\" value=\"<{$smarty.const._MD_XOONIPS_ITEM_BACK_BUTTON_LABEL}>\" onclick=\"document.confirm.action=\'edit.php\'; submit();\" />\r\n</center>\r\n</form>'); |
| 1060 |
INSERT INTO x_tplsource VALUES (397,'<h3><{$smarty.const._MD_XOONIPS_ITEM_DETAIL_ITEM_TITLE}></h3>\r\n\r\n<{*\r\n����������������������������\r\n\r\n$Revision: 1.20 $\r\n\r\n$item_id ����������ID\r\n$body ����������HTML\r\n$delete_button_visible 1:delete����������������\r\n$modify_button_visible 1:modify����������������\r\n$print_button_visible 1:print����������������\r\n$export_enabled ��������������������Export������������������(������������)\r\n*}>\r\n\r\n<script type=\"text/javascript\">\r\nfunction delete_confirm(){\r\n if(confirm(\"<{$smarty.const._MD_XOONIPS_ITEM_DELETE_CONFIRMATION_MESSAGE}>\"))\r\n document.delete_item.submit();\r\n}\r\nfunction accept_certify_confirm(xid, item_id){\r\ndocument.accept_certify.index_id.value=xid;\r\ndocument.accept_certify.item_id.value=item_id;\r\n if(confirm(\"<{$smarty.const._MD_XOONIPS_ITEM_ACCEPT_CERTIFY_CONFIRMATION_MESSAGE}>\"))\r\n document.accept_certify.submit();\r\n}\r\nfunction cancel_certify_confirm(xid, item_id){\r\ndocument.cancel_certify.index_id.value=xid;\r\ndocument.cancel_certify.item_id.value=item_id;\r\n if(confirm(\"<{$smarty.const._MD_XOONIPS_ITEM_CANCEL_CERTIFY_CONFIRMATION_MESSAGE}>\"))\r\n document.cancel_certify.submit();\r\n}\r\nfunction withdraw_confirm(xid, item_id){\r\ndocument.cancel_certify.index_id.value=xid;\r\ndocument.cancel_certify.item_id.value=item_id;\r\n if(confirm(\"<{$smarty.const._MD_XOONIPS_ITEM_WITHDRAW_CONFIRMATION_MESSAGE}>\"))\r\n document.cancel_certify.submit();\r\n}\r\n</script>\r\n\r\n<br/>\r\n\r\n<{if $modify_button_visible==1}>\r\n<form name=\'modify\' action=\"edit.php\" method=\"post\">\r\n<input type=\"hidden\" name=\"item_id\" value=\"<{$item_id}>\" />\r\n</form>\r\n<{/if}>\r\n\r\n<{if $delete_button_visible==1}>\r\n<form name=\'delete_item\' action=\"detail.php\" method=\"post\">\r\n<input type=\"hidden\" name=\"item_id\" value=\"<{$item_id}>\" />\r\n<input type=\"hidden\" name=\"op\" value=\"delete\" />\r\n</form>\r\n<{/if}>\r\n\r\n<{if $print_button_visible==1}>\r\n<form name=\'print\' action=\"detail.php\" method=\"post\" target=\"blank\">\r\n<input type=\"hidden\" name=\"item_id\" value=\"<{$item_id}>\" />\r\n<input type=\"hidden\" name=\"op\" value=\"print\" />\r\n</form>\r\n<{/if}>\r\n\r\n<form name=\'cancel_certify\' action=\"detail.php\" method=\"get\">\r\n<input type=\"hidden\" name=\"index_id\" />\r\n<input type=\"hidden\" name=\"item_id\" />\r\n<input type=\"hidden\" name=\"op\" value=\"cancel_certify\" />\r\n</form>\r\n\r\n<form name=\'accept_certify\' action=\"detail.php\" method=\"get\">\r\n<input type=\"hidden\" name=\"index_id\" />\r\n<input type=\"hidden\" name=\"item_id\" />\r\n<input type=\"hidden\" name=\"op\" value=\"accept_certify\" />\r\n</form>\r\n\r\n<form action=\"detail.php\" name=\"detail_form\" method=\"post\">\r\n<{if $modify_button_visible==1}>\r\n<input type=\"button\" value=\"<{$smarty.const._MD_XOONIPS_ITEM_MODIFY_BUTTON_LABEL}>\" onclick=\"document.modify.submit();\" />\r\n<{/if}>\r\n<{if $delete_button_visible==1}>\r\n<input type=\"button\" value=\"<{$smarty.const._MD_XOONIPS_ITEM_DELETE_BUTTON_LABEL}>\" onclick=\"delete_confirm()\" />\r\n<{/if}>\r\n<{if $print_button_visible==1}>\r\n<input type=\"button\" value=\"<{$smarty.const._MD_XOONIPS_ITEM_PRINT_FRIENDLY_BUTTON_LABEL}>\" onclick=\"document.print.submit();\" />\r\n<{/if}>\r\n<{if !empty($export_enabled)}>\r\n<input type=\"button\"\r\nvalue=\"<{$smarty.const._MD_XOONIPS_EXPORT_BUTTON_LABEL}>\"\r\nonclick=\"form.action=\'export.php\'; op.value=\'config\'; submit();\" />\r\n<input type=\"hidden\" name=\"op\" value=\"\"/>\r\n<input type=\"hidden\" name=\"ids[]\" value=\"<{$item_id}>\"/>\r\n<{/if}>\r\n</form>\r\n\r\n\r\n<br/><br/>\r\n\r\n<{$body}>\r\n\r\n<br /><br />\r\n\r\n<{foreach key=k item=v from=$http_vars}>\r\n <input type=\"hidden\" name=\"<{$k}>\" value=\"<{$v}>\" />\r\n<{/foreach}>\r\n\r\n <input type=\"hidden\" name=\"item_id\" value=\"<{$item_id}>\" />\r\n <input type=\'hidden\' name=\'index_id\' />'); |
| 1061 |
INSERT INTO x_tplsource VALUES (398,'<{*\r\n\r\n$http_vars ��������������������������������������\r\n$i ����\r\n$ids ����������������������ID\r\n$item_count_select\r\n$item_htmls ����������������(��������������)����������������������\r\n array( \'selected\' => (1:������������������ 0:������������������),\r\n \'html\' => (����������������������HTML),\r\n \'item_id\' => ����������ID )\r\n$itemcount ����������������������������\r\n$jumpto_url Submit����������������URL\r\n$jumpto_var[] Submit����������������������������������\r\n$maxpage\r\n$order_by_select\r\n$page\r\n$page_no_label\r\n$pages\r\n$search_var[] Submit����������������������������������\r\n$selected\r\n$title_edit\r\n$title_register\r\n$url_for_get ������������������������������URL\r\n$export_enabled ��������������������Export������������������(������������)\r\n*}>\r\n\r\n<script type=\"text/javascript\">\r\nfunction mysubmit(page)\r\n{\r\n document.getElementsByName( \'page\').item(0).value=page;\r\n// window.alert(\"mysubmit\");\r\n document.getElementsByName( \'itemselectform\').item(0).action=\'\';\r\n document.getElementsByName( \'itemselectform\').item(0).submit();\r\n return false;\r\n}\r\n\r\nfunction printer_friendly_submit(obj){\r\n obj.form.print.value = \'1\';\r\n obj.form.page.value = <{$page}>;\r\n obj.form.target = \'_blank\';\r\n obj.form.submit();\r\n obj.form.print.value = \'\';\r\n}\r\n\r\n</script>\r\n\r\n<{if !empty( $pankuzu )}>\r\n<{$pankuzu}>\r\n<{/if}>\r\n\r\n<h3><{$smarty.const._MD_XOONIPS_ITEM_LISTING_ITEM}></h3>\r\n\r\n<{if isset($error_message) }>\r\n<span style=\'color:#ff0000;\'><{$error_message}></span>\r\n<{else}>\r\n\r\n\r\n<h4><{$title_register}></h4>\r\n\r\n<form name=\'export_items\' action=\'export.php\' method=\'post\'>\r\n<{foreach item=i from=$ids}>\r\n <input type=\'hidden\' name=\'ids[]\' value=\'<{$i}>\'/>\r\n<{/foreach}>\r\n <input type=\'hidden\' name=\'op\' value=\'config\'/>\r\n</form>\r\n<form name=\"itemselectform\" action=\"<{$jumpto_url}>\" method=\"post\">\r\n<div style=\'text-align: center;\'>\r\n<table width=\"100%\" border=\"0\" cellspacing=\"5\">\r\n <tr valign=\"top\" class=\"odd\">\r\n <td>\r\n <{$smarty.const._MD_XOONIPS_ITEM_ORDER_BY}>\r\n <select name=\"orderby\" onchange=\"action=\'\'; submit();\">\r\n<{foreach key=key item=item from=$order_by_select}>\r\n <option value=\"<{$key}>\" <{if $key==$orderby}> selected <{/if}> ><{$item}></option>\r\n<{/foreach}>\r\n </select>\r\n </td>\r\n <td>\r\n <{$smarty.const._MD_XOONIPS_ITEM_NUM_OF_ITEM_PER_PAGE}>\r\n <select name=\"itemcount\" onchange=\"action=\'\'; submit();\">\r\n<{foreach item=i from=$item_count_select}>\r\n <option value=\"<{$i}>\" <{if $i==$itemcount }> selected <{/if}> ><{$i}></option>\r\n<{/foreach}>\r\n </select>\r\n </td>\r\n </tr>\r\n<{if !empty($url_for_get) }>\r\n <tr class=\"even\">\r\n <td colspan=\'2\'>\r\n <input type=\'text\' name=\'url_for_get\' value=\'<{$url_for_get}>\' size=\'80\' readonly=\'readonly\' />\r\n </td>\r\n </tr>\r\n<{/if}>\r\n</table> \r\n</div>\r\n<input type=\"hidden\" name=\"page\" value=\"1\" />\r\n\r\n\r\n<h4><{$title_edit}></h4>\r\n\r\n<{if !empty($export_enabled)}>\r\n<input type=\'button\' value=\'<{$smarty.const._MD_XOONIPS_EXPORT_BUTTON_LABEL}>\' onclick=\"export_items.submit();\" />\r\n<{/if}>\r\n\r\n<{if !empty($print_enabled)}>\r\n<input type=\'button\' value=\'<{$smarty.const._MD_XOONIPS_ITEM_PRINT_FRIENDLY_BUTTON_LABEL}>\' onclick=\"printer_friendly_submit(this);\" />\r\n<{/if}>\r\n\r\n\r\n<p>\r\n<{$page_no_label}>\r\n</p>\r\n\r\n<{if $maxpage > 1}>\r\n<div align=\"right\">\r\n<{if $page > 1}>\r\n<a href=\"javascript:void(0);\" onclick=\"action=\'\'; return mysubmit(<{$prevpage}>);\">PREV</a>\r\n<{else}>\r\nPREV \r\n<{/if}>\r\n\r\n<{foreach item=i from=$pages}>\r\n<{if $i==$page}>\r\n<{$i}>\r\n<{else}>\r\n<a href=\"javascript:void(0);\" onclick=\"action=\'\'; return mysubmit(<{$i}>);\"><{$i}></a>\r\n<{/if}>\r\n \r\n<{/foreach}>\r\n\r\n<{if $page < $maxpage }>\r\n<a href=\"javascript:void(0);\" onclick=\"action=\'\'; return mysubmit(<{$nextpage}>);\">NEXT</a>\r\n<{else}>\r\nNEXT\r\n<{/if}>\r\n</div>\r\n<{/if}>\r\n\r\n<table width=\"100%\" border=\"0\" cellspacing=\"5\">\r\n<{foreach item=i from=$item_htmls}>\r\n <tr valign=\"top\" class=\"<{cycle values=\"odd,even\"}>\">\r\n<{if $checkbox==\'on\'}>\r\n <td alingn=\'center\'>\r\n <{if $i.selected==1}>\r\n <input type=\'checkbox\' name=\'selected[]\' value=\'<{$i.item_id}>\' checked=\"checked\" />\r\n <{else}>\r\n <input type=\'checkbox\' name=\'selected[]\' value=\'<{$i.item_id}>\' />\r\n <{/if}>\r\n </td>\r\n<{/if}>\r\n <td>\r\n <{$i.html}>\r\n </td>\r\n </tr>\r\n<{/foreach}>\r\n</table>\r\n\r\n<{if $maxpage > 1}>\r\n<div align=\"right\">\r\n<{if $page > 1}>\r\n<a href=\"javascript:void(0);\" onclick=\"action=\'\'; return mysubmit(<{$prevpage}>);\">PREV</a>\r\n<{else}>\r\nPREV \r\n<{/if}>\r\n\r\n<{foreach item=i from=$pages}>\r\n<{if $i==$page}>\r\n<{$i}>\r\n<{else}>\r\n<a href=\"javascript:void(0);\" onclick=\"action=\'\'; return mysubmit(<{$i}>);\"><{$i}></a>\r\n<{/if}>\r\n \r\n<{/foreach}>\r\n\r\n<{if $page < $maxpage }>\r\n<a href=\"javascript:void(0);\" onclick=\"action=\'\'; return mysubmit(<{$nextpage}>);\">NEXT</a>\r\n<{else}>\r\nNEXT\r\n<{/if}>\r\n</div>\r\n<{/if}>\r\n\r\n<br />\r\n\r\n<{/if}><{* error_message *}>\r\n\r\n<{foreach key=k item=v from=$http_vars}>\r\n <input type=\"hidden\" name=\"<{$k}>\" value=\"<{$v}>\" />\r\n<{/foreach}>\r\n<{foreach item=id from=$selected}>\r\n <input type=\"hidden\" name=\"selected[]\" value=\"<{$id}>\" />\r\n<{/foreach}>\r\n<{foreach item=id from=$initially_selected}>\r\n <input type=\"hidden\" name=\"initially_selected[]\" value=\"<{$id}>\" />\r\n<{/foreach}>\r\n<{foreach item=i from=$jumpto_var}>\r\n <input type=\"hidden\" name=\"jumpto_var[]\" value=\"<{$i}>\" />\r\n<{/foreach}>\r\n<{foreach item=i from=$search_var}>\r\n <input type=\"hidden\" name=\"search_var[]\" value=\"<{$i}>\" />\r\n<{/foreach}>\r\n <input type=\"hidden\" name=\"jumpto_url
| |
|