diff --git a/src/member/ajax_membergroup.php b/src/member/ajax_membergroup.php deleted file mode 100644 index 8ba51eb9..00000000 --- a/src/member/ajax_membergroup.php +++ /dev/null @@ -1,57 +0,0 @@ -M_ID} ORDER BY id DESC"; - $dsql->Execute('me',$sql); - echo ""; - echo ' '; -} - -//编辑分组 -elseif($action == 'post') -{ - if(empty($membergroup)){ - echo "您还没有设置分组!"; - exit; - } - $membergroup = preg_repalce("#[^0-9]#", "", $membergroup); - $sql = "UPDATE `#@__member_friends` SET `groupid`='{$membergroup}' WHERE `fid`='{$mid}' AND `mid`='{$cfg_ml->M_ID}';"; - $dsql->ExecuteNoneQuery($sql); - $row = $dsql->GetOne("SELECT groupname FROM #@__member_group WHERE mid = {$cfg_ml->M_ID} AND id={$membergroup}"); - echo " ".$row['groupname']."  修改"; -} - -//显示描述 -elseif($action == 'desshow') -{ - $sql = "SELECT * FROM #@__member_friends WHERE `fid`='{$mid}' AND `mid`='{$cfg_ml->M_ID}'"; - $row = $dsql->getone($sql); - echo ''; - echo ' '; -} - -//编辑描述 -elseif($action == 'despost') -{ - $sql = "UPDATE `#@__member_friends` SET `description`='{$mdescription}' WHERE `fid`='{$mid}' AND `mid`='{$cfg_ml->M_ID}'"; - $dsql->ExecuteNoneQuery($sql); - $row = $dsql->GetOne("SELECT description FROM #@__member_friends WHERE `fid`='{$mid}' AND `mid`='{$cfg_ml->M_ID}'"); - echo " ".$row['description']."  修改"; -} \ No newline at end of file diff --git a/src/member/caicai.php b/src/member/caicai.php deleted file mode 100755 index 9511556b..00000000 --- a/src/member/caicai.php +++ /dev/null @@ -1,73 +0,0 @@ -GetOne("SELECT * FROM `#@__arctype` WHERE id='$tid' AND corank=0 "); - if($cfg_list_son=='Y') - { - $CrossID = GetSonIds($tid,$arr['channeltype']); - } - else - { - $CrossID = $tid; - } - if($arr['cross']>0) - { - $selquery = ''; - if($arr['cross']==1) - { - $selquery = "SELECT id,topid FROM `#@__arctype` WHERE typename LIKE '{$arr['typename']}' AND id<>'{$tid}' AND topid<>'{$tid}' "; - } - else - { - $arr['crossid'] = preg_replace("#[^0-9,]#", '', trim($arr['crossid'])); - if($arr['crossid']!='') - { - $selquery = "SELECT id,topid FROM `#@__arctype` WHERE id in('{$arr['crossid']}') AND id<>'{$tid}' AND topid<>'{$tid}' "; - } - } - if($selquery!='') - { - $dsql->SetQuery($selquery); - $dsql->Execute(); - while($arr = $dsql->GetArray()) - { - $CrossID .= ($CrossID=='' ? $arr['id'] : ','.$arr['id']); - } - } - } - $typequery = " arc.typeid in($CrossID) And "; -} -$dlist = new Caicai(); -$dlist->pageSize = 15; -$dlist->maxPageSize = 100; -$maxrc = $dlist->pageSize * $dlist->maxPageSize; -$query = "Select arc.*,m.userid,m.face, - tp.typedir,tp.typename,tp.isdefault,tp.defaultname,tp.namerule,tp.namerule2,tp.ispart,tp.moresite,tp.siteurl,tp.sitepath - From `#@__archives` arc left join `#@__arctype` tp on tp.id=arc.typeid left join `#@__member` m on m.mid=arc.mid - where $typequery arc.arcrank>-1 - order by arc.`{$sort}` desc limit $maxrc "; -$dlist->SetParameter('tid',$tid); -$dlist->SetParameter('sort',$sort); -$dlist->SetTemplate(DEDEMEMBER.'/templets/caicai.htm'); -$dlist->SetSource($query); -$dlist->Display(); -//echo ExecTime() - $t1; -?> \ No newline at end of file diff --git a/src/member/edit_fullinfo.php b/src/member/edit_fullinfo.php deleted file mode 100755 index 4bcc4cfc..00000000 --- a/src/member/edit_fullinfo.php +++ /dev/null @@ -1,98 +0,0 @@ -M_MbType); - $modelform = $dsql->GetOne("SELECT * FROM #@__member_model WHERE id='$membermodel->modid' "); - if (!is_array($modelform)) { - showmsg('模型表单不存在', '-1'); - exit(); - } - $row = $dsql->GetOne("SELECT * FROM " . $modelform['table'] . " WHERE mid=$cfg_ml->M_ID"); - if (!is_array($row)) { - showmsg("你访问的记录不存在或未经审核", '-1'); - exit(); - } - $postform = $membermodel->getForm('edit', $row, 'membermodel'); - include(DEDEMEMBER . "/templets/edit_fullinfo.htm"); - exit(); -} -/*------------------------ -function __Save() -------------------------*/ -if ($dopost == 'save') { - // 校验CSRF - CheckCSRF(); - - $membermodel = new membermodel($cfg_ml->M_MbType); - $postform = $membermodel->getForm(true); - - //这里完成详细内容填写 - $dede_fields = empty($dede_fields) ? '' : trim($dede_fields); - $dede_fieldshash = empty($dede_fieldshash) ? '' : trim($dede_fieldshash); - $modid = empty($modid) ? 0 : intval(preg_replace("/[^\d]/", '', $modid)); - - if (!empty($dede_fields)) { - if ($dede_fieldshash != md5($dede_fields . $cfg_cookie_encode)) { - showMsg('数据校验不对,程序返回', '-1'); - exit(); - } - } - $modelform = $dsql->GetOne("SELECT * FROM #@__member_model WHERE id='$modid' "); - if (!is_array($modelform)) { - showmsg('模型表单不存在', '-1'); - exit(); - } - - $inadd_f = ''; - if (!empty($dede_fields)) { - $fieldarr = explode(';', $dede_fields); - if (is_array($fieldarr)) { - foreach ($fieldarr as $field) { - if ($field == '') continue; - $fieldinfo = explode(',', $field); - if ($fieldinfo[1] == 'textdata') { - ${$fieldinfo[0]} = FilterSearch(stripslashes(${$fieldinfo[0]})); - ${$fieldinfo[0]} = addslashes(${$fieldinfo[0]}); - } else if ($fieldinfo[1] == 'img') { - ${$fieldinfo[0]} = addslashes(${$fieldinfo[0]}); - } else { - if (empty(${$fieldinfo[0]})) ${$fieldinfo[0]} = ''; - ${$fieldinfo[0]} = GetFieldValue(${$fieldinfo[0]}, $fieldinfo[1], 0, 'add', '', 'diy', $fieldinfo[0]); - } - if ($fieldinfo[0] == "birthday") ${$fieldinfo[0]} = GetDateMk(${$fieldinfo[0]}); - ${$fieldinfo[0]} = HtmlReplace(${$fieldinfo[0]}, -1); - $inadd_f .= ',' . $fieldinfo[0] . " ='" . ${$fieldinfo[0]} . "'"; - } - } - } - $inadd_f = preg_replace('/,/', '', $inadd_f, 1); - $query = "UPDATE `{$membermodel->table}` set {$inadd_f} WHERE mid='{$cfg_ml->M_ID}'"; - - // 清除缓存 - $cfg_ml->DelCache($cfg_ml->M_ID); - - if (!$dsql->ExecuteNoneQuery($query)) { - ShowMsg("更新附加表 `{$membermodel->table}` 时出错,请联系管理员!", "javascript:;"); - exit(); - } else { - ShowMsg('成功更新你的详细资料!', 'edit_fullinfo.php', 0, 5000); - exit(); - } -} diff --git a/src/member/inc/space_action.php b/src/member/inc/space_action.php deleted file mode 100755 index fa967cbe..00000000 --- a/src/member/inc/space_action.php +++ /dev/null @@ -1,492 +0,0 @@ - -1 "; -if(isset($mtype)) $mtype = intval($mtype); -if(!empty($mtype)) $addqSql .= " And arc.mtype = '$mtype' "; - -/*--------------------------------- -文章列表 -function list_article(){ } --------------------------------------*/ -if($action=='article') -{ - if(empty($mtype)) $mtype = 0; - - include_once(DEDEINC.'/arc.memberlistview.class.php'); - include_once(DEDEINC.'/channelunit.func.php'); - $query = "SELECT arc.*,mt.mtypename,addt.body,tp.typedir,tp.typename,tp.isdefault,tp.defaultname,tp.namerule,tp.namerule2,tp.ispart,tp.moresite,tp.siteurl,tp.sitepath - FROM `#@__archives` arc - LEFT JOIN `#@__addonarticle` addt ON addt.aid=arc.id - LEFT JOIN `#@__arctype` tp ON tp.id=arc.typeid - LEFT JOIN `#@__mtypes` mt ON mt.mtypeid=arc.mtype - WHERE arc.mid='{$_vars['mid']}' $addqSql AND arc.channel=1 ORDER BY arc.id DESC"; - $dlist = new MemberListview(); - $dlist->pageSize = $_vars['pagesize']; - $dlist->SetParameter("mtype",$mtype); - $dlist->SetParameter("uid",$_vars['userid']); - $dlist->SetParameter("action",$action); - $dlist->SetTemplate(DEDEMEMBER."/space/{$_vars['spacestyle']}/listarticle.htm"); - $dlist->SetSource($query); - $dlist->Display(); - exit(); -} -/*--------------------------------- -单篇文章显示 -function view_archives(){ } --------------------------------------*/ -else if($action=='viewarchives' && !empty($aid) && is_numeric($aid)) -{ - if(empty($mtype)) $mtype = 0; - - include_once(DEDEINC.'/arc.memberlistview.class.php'); - include_once(DEDEINC.'/channelunit.func.php'); - - //读取文章的评论 - $sql = "SELECT fb.*,mb.userid,mb.face as mface,mb.spacesta,mb.scores FROM `#@__feedback` fb - LEFT JOIN `#@__member` mb ON mb.mid = fb.mid - WHERE fb.aid='$aid' and fb.ischeck='1' ORDER BY fb.id DESC LIMIT 0, 50"; - $msgs = array(); - $dsql->Execute('fb', $sql); - while ($row = $dsql->GetArray('fb')) - { - $msgs[] = $row; - } - - //读取文章内容 - $query = "SELECT arc.*,tp.typedir,tp.typename,tp.isdefault,tp.defaultname,tp.namerule,tp.namerule2, - tp.ispart,tp.moresite,tp.siteurl,tp.sitepath,ar.body FROM `#@__archives` arc - LEFT JOIN `#@__arctype` tp ON arc.typeid=tp.id - LEFT JOIN `#@__addonarticle` ar ON ar.aid=arc.id - WHERE arc.mid='{$_vars['mid']}' AND arc.channel=1 AND ar.typeid=tp.id AND ar.aid='$aid' "; - $arcrow = $dsql->GetOne($query); - if( !is_array($arcrow) ) - { - ShowMsg(' 读取文档时发生未知错误! ', '-1'); - exit(); - } - - //解析模板 - $dlist = new MemberListview(); - $dlist->SetTemplate(DEDEMEMBER."/space/{$_vars['spacestyle']}/blog.htm"); - $dlist->Display(); - exit(); -} -/*--------------------------------- -所有文档列表 -function list_archives(){ } --------------------------------------*/ -else if($action=='archives') -{ - if(empty($mtype)) $mtype = 0; - include_once(DEDEINC.'/arc.memberlistview.class.php'); - include_once(DEDEINC.'/channelunit.func.php'); - - //如果没指定频道ID的情况下,列出所有非单表模型文档 - if($cfg_mb_spaceallarc > 0 && empty($channelid)) $channelid = intval($cfg_mb_spaceallarc); - - if(empty($channelid)) - { - $channelid = 0; - $query = "SELECT arc.*,mt.mtypename,tp.typedir,tp.typename,tp.isdefault,tp.defaultname,tp.namerule,tp.namerule2,tp.ispart,tp.moresite,tp.siteurl,tp.sitepath - FROM `#@__archives` arc - LEFT JOIN `#@__arctype` tp ON arc.typeid=tp.id - LEFT JOIN `#@__mtypes` mt ON mt.mtypeid=arc.mtype - WHERE arc.mid='{$_vars['mid']}' $addqSql ORDER BY arc.id DESC"; - } - else - { - $channelid = intval($channelid); - $chRow = $dsql->GetOne("SELECT issystem,addtable,listfields From `#@__channeltype` WHERE id='$channelid' "); - if(!is_array($chRow)) die(' Channel Error! '); - if($chRow['issystem']==-1) - { - $addtable = trim($chRow['addtable']); - $listfields = explode(',', $chRow['listfields']); - $listfields_str = 'arc.'.join(',arc.', $listfields); - if($listfields_str!='arc.') - { - $listfields_str = $listfields_str.','; - } - else { - $listfields_str = ''; - } - $query = "SELECT arc.aid,arc.aid as id,arc.typeid,'' as mtypename,1 as ismake,0 as money,'' as filename,{$listfields_str} - tp.typedir,tp.typename,tp.isdefault,tp.defaultname,tp.namerule,tp.namerule2,tp.ispart,tp.moresite,tp.siteurl,tp.sitepath - FROM `{$addtable}` arc - LEFT JOIN `#@__arctype` tp ON arc.typeid=tp.id - WHERE arc.mid='{$_vars['mid']}' And arc.channel='$channelid' $addqSql ORDER BY arc.aid DESC"; - } - else - { - $query = "SELECT arc.*,mt.mtypename,tp.typedir,tp.typename,tp.isdefault,tp.defaultname,tp.namerule,tp.namerule2,tp.ispart,tp.moresite,tp.siteurl,tp.sitepath - from `#@__archives` arc - LEFT JOIN `#@__arctype` tp on arc.typeid=tp.id - LEFT JOIN `#@__mtypes` mt on mt.mtypeid=arc.mtype - WHERE arc.mid='{$_vars['mid']}' And arc.channel='$channelid' $addqSql order by arc.id desc"; - } - } - $dlist = new MemberListview(); - $dlist->pageSize = $_vars['pagesize']; - $dlist->SetParameter("mtype", $mtype); - $dlist->SetParameter("uid", $_vars['userid']); - $dlist->SetParameter("channelid", $channelid); - $dlist->SetParameter("action", $action); - $dlist->SetTemplate(DEDEMEMBER."/space/{$_vars['spacestyle']}/listarchives.htm"); - $dlist->SetSource($query); - $dlist->Display(); - exit(); -} - -/*--------------------------------- -所有文档列表 -function list_album(){ } --------------------------------------*/ -else if($action=='album') -{ - if(empty($mtype)) { - $mtype = 0; - } - include_once(DEDEINC.'/arc.memberlistview.class.php'); - include_once(DEDEINC.'/channelunit.func.php'); - $query = "SELECT arc.*,mt.mtypename,tp.typedir,tp.typename,tp.isdefault,tp.defaultname,tp.namerule,tp.namerule2,tp.ispart,tp.moresite,tp.siteurl,tp.sitepath - from `#@__archives` arc - left join `#@__arctype` tp on arc.typeid=tp.id - left join `#@__mtypes` mt on mt.mtypeid=arc.mtype - where arc.mid='{$_vars['mid']}' And arc.channel=2 $addqSql order by arc.id desc"; - $dlist = new MemberListview(); - $dlist->pageSize = $_vars['pagesize']; - $dlist->SetParameter("mtype",$mtype); - $dlist->SetParameter("uid",$_vars['userid']); - $dlist->SetParameter("action",$action); - $dlist->SetTemplate(DEDEMEMBER."/space/{$_vars['spacestyle']}/listalbum.htm"); - $dlist->SetSource($query); - $dlist->Display(); - exit(); -} - -/*--------------------------------- -留言本 -function guestbook(){ } --------------------------------------*/ -else if($action=='guestbook') -{ - if(empty($mtype)) { - $mtype = 0; - } - include_once(DEDEINC.'/datalistcp.class.php'); - $query = "SELECT mg.*,mb.face,mb.userid,mb.sex From `#@__member_guestbook` mg - left join `#@__member` mb on mb.userid=mg.gid - where mg.mid='{$_vars['mid']}' order by mg.aid desc"; - $dlist = new DataListCP(); - $dlist->pageSize = 10; - $dlist->SetParameter("uid",$_vars['userid']); - $dlist->SetParameter("action",$action); - $dlist->SetTemplate(DEDEMEMBER."/space/{$_vars['spacestyle']}/guestbook.htm"); - $dlist->SetSource($query); - $dlist->Display(); - exit(); -} - -/*--------------------------------- -我的好友 -function friend(){ } --------------------------------------*/ -else if($action=='friend') -{ - if(empty($mtype)) { - $mtype = 0; - } - include_once(DEDEINC.'/arc.memberlistview.class.php'); - include_once(DEDEINC.'/channelunit.func.php'); - $query = "SELECT arc.*,tp.typedir,tp.typename,tp.isdefault,tp.defaultname,tp.namerule,tp.namerule2,tp.ispart,tp.moresite,tp.siteurl,tp.sitepath - from `#@__archives` arc - left join `#@__arctype` tp on arc.typeid=tp.id - where arc.mid='{$_vars['mid']}' $addqSql order by arc.id desc"; - $dlist = new MemberListview(); - $dlist->pageSize = 8; - $dlist->SetParameter("mtype",$mtype); - $dlist->SetParameter("uid",$_vars['userid']); - $dlist->SetParameter("action",$action); - $dlist->SetTemplate(DEDEMEMBER."/space/{$_vars['spacestyle']}/friend.htm"); - $dlist->SetSource($query); - $dlist->Display(); - exit(); -} - -/*--------------------------------- -个人资料 -function infos(){ } --------------------------------------*/ -else if($action=='infos') -{ - include_once(DEDEDATA.'/enums/nativeplace.php'); - include_once(DEDEINC."/enums.func.php"); - $row = $dsql->GetOne("SELECT * from `#@__member_person` where mid='{$_vars['mid']}' "); - $dpl = new DedeTemplate(); - $dpl->LoadTemplate(DEDEMEMBER."/space/{$_vars['spacestyle']}/infos.htm"); - $dpl->display(); -} - -/*--------------------------------- -保存留言 -function guestbook_save(){ } --------------------------------------*/ -else if($action=='guestbooksave') -{ - CheckRank(0,0); - $svali = GetCkVdValue(); - if(strtolower($vdcode)!=$svali || $svali=='') - { - ResetVdValue(); - ShowMsg('验证码错误!', '-1'); - exit(); - } - $uidnum = intval($uidnum); - if(empty($uidnum)) - { - ShowMsg('参数错误!', '-1'); - exit(); - } - if(strlen($msg)<6) - { - ShowMsg('你的留言内容太短!', '-1'); - exit(); - } - $uname = HtmlReplace($uname, 1); - $msg = cn_substrR(HtmlReplace($msg), 2048); - $title = cn_substrR(HtmlReplace($title), 255); - if($cfg_ml->M_UserName != '' && $cfg_ml->M_ID != $uidnum) - { - $gid = $cfg_ml->M_UserName; - } - else - { - $gid = ''; - } - $inquery = "INSERT INTO `#@__member_guestbook`(mid,gid,title,msg,uname,ip,dtime) - VALUES ('$uidnum','$gid','$title','$msg','$uname','".GetIP()."',".time()."); "; - $dsql->ExecuteNoneQuery($inquery); - ShowMsg('成功提交你的留言!', "index.php?uid={$uid}&action=guestbook"); - exit(); -} - -/*--------------------------------- -删除留言 -function guestbook_del(){ } --------------------------------------*/ -else if($action=='guestbookdel') -{ - CheckRank(0,0); - if($cfg_ml->M_LoginID!=$uid) - { - ShowMsg('这条留言不是给你的,你不能删除!', -1); - exit(); - } - $aid = intval($aid); - $inquery = "DELETE FROM `#@__member_guestbook` WHERE aid='$aid' AND mid='$mid'"; - $dsql->ExecuteNoneQuery($inquery); - ShowMsg('成功删除!', "index.php?uid={$uid}&action=guestbook"); - exit(); -} - -/*--------------------------------- -删除我的动态信息 -function feed_del(){ } --------------------------------------*/ -else if($action=='feeddel') -{ - CheckRank(0,0); - $fid=(empty($fid))? "" : intval($fid); - $row = $dsql->GetOne("SELECT mid FROM `#@__member_feed` WHERE fid='$fid'"); - if($cfg_ml->M_ID!=$row['mid']) - { - ShowMsg('此动态信息不存在!', -1); - exit(); - } - $inquery = "DELETE FROM `#@__member_feed` WHERE fid='$fid' AND mid='".$cfg_ml->M_ID."'"; - $dsql->ExecuteNoneQuery($inquery); - ShowMsg('成功删除一条动态信息!', "index.php"); - exit(); -} -/*--------------------------------- -删除我的心情信息 -function mood_del(){ } --------------------------------------*/ -else if($action=='mooddel') -{ - CheckRank(0,0); - $id=(empty($id))? "" : intval($id); - $row = $dsql->GetOne("SELECT mid FROM `#@__member_msg` WHERE id='$id'"); - if($cfg_ml->M_ID!=$row['mid']) - { - ShowMsg('此动态信息不存在!', -1); - exit(); - } - $inquery = "DELETE FROM `#@__member_msg` WHERE id='$id' AND mid='".$cfg_ml->M_ID."'"; - $dsql->ExecuteNoneQuery($inquery); - ShowMsg('成功删除一条心情!', "index.php"); - exit(); -} -/*--------------------------------- -加好友 -function newfriend(){ } --------------------------------------*/ -else if($action=='newfriend') -{ - CheckRank(0,0); - if($_vars['mid']==$cfg_ml->M_ID) - { - ShowMsg("你不能加自己为好友!","index.php?uid=".$uid); - exit(); - } - $addtime = time(); - $row = $dsql->GetOne("SELECT * FROM `#@__member_friends` where fid='{$_vars['mid']}' And mid='{$cfg_ml->M_ID}' "); - if(is_array($row)) - { - ShowMsg("该用户已经是你的好友!","index.php?uid=".$uid); - exit(); - } - else - { - #api{{ - if(defined('UC_API') && @include_once DEDEROOT.'/uc_client/client.php') - { - if($data = uc_get_user($cfg_ml->M_LoginID)) uc_friend_add($uid,$data[0]); - } - #/aip}} - - $inquery = "INSERT INTO `#@__member_friends` (`fid` , `floginid` , `funame` , `mid` , `addtime` , `ftype`) - VALUES ('{$_vars['mid']}' , '{$_vars['userid']}' , '{$_vars['uname']}' , '{$cfg_ml->M_ID}' , '$addtime' , '0'); "; - $dsql->ExecuteNoneQuery($inquery); - //统计我的好友数量 - $row = $dsql->GetOne("SELECT COUNT(*) AS nums FROM `#@__member_friends` WHERE `mid`='".$cfg_ml->M_ID."'"); - $dsql->ExecuteNoneQuery("UPDATE `#@__member_tj` SET friend='$row[nums]' WHERE `mid`='".$cfg_ml->M_ID."'"); - - //会员动态记录 - $cfg_ml->RecordFeeds('addfriends',"","",$_vars['userid']); - - ShowMsg("成功添加好友!","index.php?uid=".$uid); - exit(); - - } -} -/*--------------------------------- -解除好友关系 -function newfriend(){ } --------------------------------------*/ -else if($action=='delfriend') -{ - CheckRank(0,0); - if($_vars['mid']==$cfg_ml->M_ID) - { - ShowMsg("你不能和自己为解除关系!","index.php?uid=".$uid); - exit(); - } - $addtime = time(); - $row = $dsql->GetOne("Select * FROM `#@__member_friends` where fid='{$_vars['mid']}' And mid='{$cfg_ml->M_ID}' "); - if(!is_array($row)) - { - ShowMsg("该用户已经不是你的好友!","index.php?uid=".$uid); - exit(); - } - else - { - #api{{ - if(defined('UC_API') && @include_once DEDEROOT.'/uc_client/client.php') - { - if($data = uc_get_user($cfg_ml->M_LoginID)) uc_friend_add($uid,$data[0]); - } - #/aip}} - $inquery = "DELETE FROM `dede_member_friends` where fid='{$_vars['mid']}' And mid='{$cfg_ml->M_ID}' "; - $dsql->ExecuteNoneQuery($inquery); - //统计我的好友数量 - $row = $dsql->GetOne("SELECT COUNT(*) AS nums FROM `#@__member_friends` WHERE `mid`='".$cfg_ml->M_ID."'"); - $dsql->ExecuteNoneQuery("UPDATE `#@__member_tj` SET friend='$row[nums]' WHERE `mid`='".$cfg_ml->M_ID."'"); - ShowMsg("成功解除好友关系!","myfriend.php"); - exit(); - } -} -/*--------------------------------- -加黑名单 -function blackfriend(){ } --------------------------------------*/ -else if($action=='blackfriend') -{ - CheckRank(0,0); - if($_vars['mid']==$cfg_ml->M_ID) - { - ShowMsg("你不能加自己到黑名单!","index.php?uid=".$uid); - exit(); - } - $addtime = time(); - $row = $dsql->GetOne("Select * FROM `#@__member_friends` where fid='{$_vars['mid']}' And mid='{$cfg_ml->M_ID}' "); - if(is_array($row)) - { - ShowMsg("该用户已经是你的好友!","index.php?uid=".$uid); - exit(); - } - else - { - $inquery = "INSERT INTO `#@__member_friends` (`fid` , `floginid` , `funame` , `mid` , `addtime` , `ftype`) - VALUES ('{$cfg_ml->M_ID}' , '{$cfg_ml->M_LoginID}' , '{$cfg_ml->M_UserName}' , '{$_vars['mid']}' , '$addtime' , '-1'); "; - $dsql->ExecuteNoneQuery($inquery); - ShowMsg("成功添加好友在黑名单!","index.php?uid=".$uid); - exit(); - } -} -/*-------------------- -function _contact_introduce() {} -公司简介 ----------------------*/ -elseif($action == 'introduce') -{ - $dpl = new DedeTemplate(); - $dpl->LoadTemplate(DEDEMEMBER."/space/{$_vars['spacestyle']}/introduce.htm"); - $dpl->display(); -} -//联系我们 -elseif ($action == 'contact') -{ - $dpl = new DedeTemplate(); - $dpl->LoadTemplate(DEDEMEMBER."/space/{$_vars['spacestyle']}/contact.htm"); - $dpl->display(); -} -/*------------------------------- -function products() { } -公司产品或新闻 ---------------------------------*/ -elseif($action == 'products') -{ - $mtype = isset($mtype) && is_numeric($mtype) ? $mtype : 0; - if($action == 'products') { - $channel = 6; - } - include_once(DEDEINC.'/arc.memberlistview.class.php'); - include_once(DEDEINC.'/channelunit.func.php'); - - $query = "Select arc.*,tp.typedir,tp.typename,tp.isdefault,tp.defaultname,tp.namerule, - tp.namerule2,tp.ispart,tp.moresite,tp.siteurl,tp.sitepath FROM `#@__archives` arc - left join `#@__arctype` tp on arc.typeid=tp.id - where arc.mid='{$_vars['mid']}' and arc.channel='$channel' $addqSql order by arc.id desc"; - - $dlist = new MemberListview(); - $dlist->pageSize = 12; - $dlist->SetParameter('mtype', $mtype); - $dlist->SetParameter('uid', $_vars['userid']); - $dlist->SetParameter('action', $action); - $dlist->SetTemplate(DEDEMEMBER."/space/{$_vars['spacestyle']}/listproducts.htm"); - $dlist->SetSource($query); - $dlist->Display(); - exit(); -} \ No newline at end of file diff --git a/src/member/myfriend.php b/src/member/myfriend.php deleted file mode 100755 index 927fa0a0..00000000 --- a/src/member/myfriend.php +++ /dev/null @@ -1,135 +0,0 @@ -ExecuteNoneQuery("UPDATE `#@__member_friends` SET $upsta WHERE id IN($ids) AND mid='{$cfg_ml->M_ID}' "); - - #api{{ - if(defined('UC_API') && @include_once DEDEROOT.'/uc_client/client.php' && $sta!='bad') - { - if($data = uc_get_user($cfg_ml->M_LoginID)) uc_friend_add($uid, $data[0]); - } - #/aip}} - - if($sta=='good') - { - ShowMsg("成功把指定好友设为关注好友!","myfriend.php?ftype=1"); - } - else if($sta=='bad') - { - ShowMsg("成功把指定好友放入黑名单!","myfriend.php?ftype=-1"); - } - else - { - ShowMsg("成功把指定好友转为普通好友!","myfriend.php"); - } - exit(); -} - -//删除好友 -else if($dopost=='del') -{ - $ids = preg_replace("#[^0-9,]#", "", $ids); - #api{{ - if(defined('UC_API') && @include_once DEDEROOT.'/uc_client/client.php') - { - if($data = uc_get_user($cfg_ml->M_LoginID)) - { - list($uid, $username, $email) = $data; - $friendids = @explode(",", $ids); - if(!empty($friendids)) uc_friend_delete($uid , $friendids); - } - } - #/aip}} - $dsql->ExecuteNoneQuery("DELETE FROM `#@__member_friends` WHERE id IN($ids) AND mid='{$cfg_ml->M_ID}' "); - ShowMsg("成功删除所选的好友!","myfriend.php?ftype=".$ftype); - exit(); -} -//浏览 -else{ - $wsql = ''; - if(empty($ftype)) - { - $wsql = " F.mid='{$cfg_ml->M_ID}' AND F.ftype <> '-1' "; - $tname = "所有好友"; - } - else if($ftype==1) - { - $wsql = " F.mid='{$cfg_ml->M_ID}' AND F.ftype = '1' "; - $tname = "特别关注"; - } - else if($ftype==-1) - { - $wsql = " F.mid='{$cfg_ml->M_ID}' AND F.ftype = '-1' "; - $tname = "黑名单"; - } - $query = "SELECT F.*,G.groupname FROM `#@__member_group` AS G LEFT JOIN #@__member_friends AS F ON F.groupid=G.id WHERE $wsql ORDER BY F.id DESC"; - $dlist = new DataListCP(); - $dlist->pageSize = 20; - $dlist->SetParameter("ftype",$ftype); - $dlist->SetTemplate(dirname(__FILE__).'/templets/myfriend.htm'); - $dlist->SetSource($query); - $dlist->Display(); -} - -/** - * 获取用户信息 - * - * @param int $uid 用户UID - * @param string $_field 用户字段 - * @return string - */ -function getUserInfo($uid,$_field = 'uname') -{ - global $dsql; - $row = $dsql->GetOne("SELECT M.*,YEAR(CURDATE())-YEAR(P.birthday) as age,DATE_FORMAT(P.birthday,'%e月%d日出生') as birthday,S.spacename,S.sign FROM #@__member AS M - LEFT JOIN #@__member_person AS P ON P.mid=M.mid - LEFT JOIN #@__member_space AS S ON M.mid=M.mid WHERE M.mid='$uid'"); - if(isset($row[$_field])) - { - if($_field == 'face') - { - if(empty($row[$_field])){ - $row[$_field]=($row['sex']=='女')? 'templets/images/dfgirl.png' : 'templets/images/dfboy.png'; - } - } - return $row[$_field]; - } - else return ''; -} \ No newline at end of file diff --git a/src/member/myfriend_group.php b/src/member/myfriend_group.php deleted file mode 100755 index d0a1673d..00000000 --- a/src/member/myfriend_group.php +++ /dev/null @@ -1,86 +0,0 @@ -M_ID}'"; - $dsql->SetQuery($query); - $dsql->Execute(); - while($row = $dsql->GetArray()) - { - $mtypearr[] = $row; - } - $GLOBALS['mtypearr'] =empty($GLOBALS['mtypearr'] )? '' : $GLOBALS['mtypearr'] ; - $tpl = new DedeTemplate(); - $tpl->LoadTemplate(DEDEMEMBER.'/templets/myfriend_group.htm'); - $tpl->Display(); - exit(); -} -elseif ($dopost == 'add') -{ - $mtypename = HtmlReplace(trim($groupname)); - $row = $dsql->GetOne("SELECT * FROM `#@__member_group` WHERE groupname LIKE '$groupname' AND mid='{$cfg_ml->M_ID}'"); - if(is_array($row)) - { - ShowMsg('分组名称已经存在', '-1'); - exit(); - } - else if(strlen($groupname)=="") - { - ShowMsg('分组名称不能为空', '-1'); - exit(); - } - $query = "INSERT INTO `#@__member_group`(groupname, mid) VALUES ('$groupname', '$cfg_ml->M_ID'); "; - if($dsql->ExecuteNoneQuery($query)) - { - ShowMsg('增加分类成功', 'myfriend_group.php'); - } - else - { - ShowMsg('增加分类失败', '-1'); - } - exit(); -}elseif ($dopost == 'save'){ - $groupname = HtmlReplace(trim($groupname)); - if(isset($mtypeidarr) && is_array($mtypeidarr)) - { - $delids = '0'; - $mtypeidarr = array_filter($mtypeidarr, 'is_numeric'); - foreach($mtypeidarr as $delid) - { - $delid = HtmlReplace($delid); - $delids .= ','.$delid; - unset($groupname[$delid]); - } - $query = "DELETE FROM `#@__member_group` WHERE id in ($delids) AND mid='$cfg_ml->M_ID'"; - $dsql->ExecNoneQuery($query); - $sql="SELECT id FROM `#@__member_friends` WHERE groupid in ($delids) AND mid='$cfg_ml->M_ID'"; - $db->SetQuery($sql); - $db->Execute(); - while($row = $db->GetArray()) - { - $query2 = "UPDATE `#@__member_friends` SET groupid='1' WHERE id='{$row['id']}' AND mid='$cfg_ml->M_ID'"; - $dsql->ExecNoneQuery($query2); - } - } - foreach ($groupname as $id => $name) - { - $name = HtmlReplace($name); - $id = HtmlReplace($id); - $query = "UPDATE `#@__member_group` SET groupname='$name' WHERE id='$id' AND mid='$cfg_ml->M_ID'"; - $dsql->ExecuteNoneQuery($query); - } - ShowMsg('分组修改完成(删除分组中的会员会转移到默认分组中)','myfriend_group.php'); - exit(); -} \ No newline at end of file diff --git a/src/member/search.php b/src/member/search.php deleted file mode 100755 index 33bfd2ed..00000000 --- a/src/member/search.php +++ /dev/null @@ -1,81 +0,0 @@ -'$minp' And mp.place<'$maxp' "; - } -} - -if($sex!='') $addsqls[] = " mp.sex = '$sex' "; -if($minage!=0) $addsqls[] = " YEAR(CURDATE())-YEAR(mp.birthday)>='$minage' "; -if($maxage!=0) $addsqls[] = " YEAR(CURDATE())-YEAR(mp.birthday)<='$maxage' "; - -$addsqls_str = join(' And ',$addsqls); -if($addsqls_str!='') { - $addsqls_str = ' And '.$addsqls_str; -} - -$addsql = " WHERE mb.spacesta > -1 ".$addsqls_str; - -$query = "SELECT mb.*,mp.place,YEAR(CURDATE())-YEAR(mp.birthday) AS age,mp.lovemsg,mp.birthday FROM `#@__member` mb -LEFT JOIN `#@__member_person` mp ON mp.mid = mb.mid -{$addsql} ORDER BY mb.logintime DESC"; -$dlist = new DataListCP(); -$dlist->pageSize = 8; -$dlist->SetParameter('keyword',$keyword); -$dlist->SetParameter('province',$province); -$dlist->SetParameter('city',$city); -$dlist->SetParameter('minage',$minage); -$dlist->SetParameter('maxage',$maxage); -$dlist->SetParameter('sex',$sex); -$dlist->SetTemplate(DEDEMEMBER.'/templets/search.htm'); -$dlist->SetSource($query); -$dlist->Display(); \ No newline at end of file diff --git a/src/member/space/coffee/blog.htm b/src/member/space/coffee/blog.htm deleted file mode 100755 index e8d13bd1..00000000 --- a/src/member/space/coffee/blog.htm +++ /dev/null @@ -1,116 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

日志文章

-
- - -
-
{dede:global.arcrow[pubdate] function="MyDate('y-m-d h:i',@me)" /}
-

- {dede:global.arcrow[title] /} -

- - - - -
-

{dede:global.arcrow[body] /}

-
-
- - -
-0) { ?> -
一共有 条评论
- -
-
- -
-
- - - - Says: -
-
- -
- -
- -
-
-
-
- -
-
-
发表评论
-
-
- - - - - {dede:var.uname /}: -
-
- -
-
-
- 表情: -
    -
  • -
  • -
  • -
  • -
  • -
  • -
  • -
-
- - - - - - - - -
验证码: 匿名评论
- -
-
-
- - -
- - - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/coffee/demo.png b/src/member/space/coffee/demo.png deleted file mode 100755 index 00221d4f..00000000 Binary files a/src/member/space/coffee/demo.png and /dev/null differ diff --git a/src/member/space/coffee/footer.htm b/src/member/space/coffee/footer.htm deleted file mode 100755 index 5447359b..00000000 --- a/src/member/space/coffee/footer.htm +++ /dev/null @@ -1,8 +0,0 @@ -
- - - - - \ No newline at end of file diff --git a/src/member/space/coffee/guestbook.htm b/src/member/space/coffee/guestbook.htm deleted file mode 100755 index 3606696c..00000000 --- a/src/member/space/coffee/guestbook.htm +++ /dev/null @@ -1,82 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm' /} - {dede:include file='side_news.htm' /} - {dede:include file='side_visitor.htm' /} -
- - -
-
-

留言列表

- -
- -
-
- {dede:datalist} - -
-
- '; - }else{ - echo ''.$fields['uname'].'的头像'; - } ?> -
-
- {dede:field.uname/} - {dede:field.dtime function="MyDate('Y-m-d H:i',@me)" /} -
-
-
{dede:field.msg function="Text2Html(@me)" /}
- -
- -
-
-
- {/dede:datalist} -
{dede:pagelist/}
-
-
发表留言
-
-
- {dede:var.uname /}: - - - - -
-
标题:
-
- - -
- -
- - - - - - - -
验证码: 
-
- -
-
- -
- -
- - - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/coffee/header.htm b/src/member/space/coffee/header.htm deleted file mode 100755 index b0eeb8a7..00000000 --- a/src/member/space/coffee/header.htm +++ /dev/null @@ -1,48 +0,0 @@ - - - - -{dede:var.spacename /} {dede:var.curtitle /} - - - - -
-
- - -
- \ No newline at end of file diff --git a/src/member/space/coffee/images/addto.gif b/src/member/space/coffee/images/addto.gif deleted file mode 100755 index cbfedc52..00000000 Binary files a/src/member/space/coffee/images/addto.gif and /dev/null differ diff --git a/src/member/space/coffee/images/albumn-bg.gif b/src/member/space/coffee/images/albumn-bg.gif deleted file mode 100755 index 98e11622..00000000 Binary files a/src/member/space/coffee/images/albumn-bg.gif and /dev/null differ diff --git a/src/member/space/coffee/images/bg.jpg b/src/member/space/coffee/images/bg.jpg deleted file mode 100755 index ecabe708..00000000 Binary files a/src/member/space/coffee/images/bg.jpg and /dev/null differ diff --git a/src/member/space/coffee/images/bgm.gif b/src/member/space/coffee/images/bgm.gif deleted file mode 100755 index ee1b9cb6..00000000 Binary files a/src/member/space/coffee/images/bgm.gif and /dev/null differ diff --git a/src/member/space/coffee/images/bodybg.jpg b/src/member/space/coffee/images/bodybg.jpg deleted file mode 100755 index 6487d029..00000000 Binary files a/src/member/space/coffee/images/bodybg.jpg and /dev/null differ diff --git a/src/member/space/coffee/images/close.jpg b/src/member/space/coffee/images/close.jpg deleted file mode 100755 index ce11ae5e..00000000 Binary files a/src/member/space/coffee/images/close.jpg and /dev/null differ diff --git a/src/member/space/coffee/images/del.png b/src/member/space/coffee/images/del.png deleted file mode 100755 index b407245a..00000000 Binary files a/src/member/space/coffee/images/del.png and /dev/null differ diff --git a/src/member/space/coffee/images/jian.png b/src/member/space/coffee/images/jian.png deleted file mode 100755 index 241d53ec..00000000 Binary files a/src/member/space/coffee/images/jian.png and /dev/null differ diff --git a/src/member/space/coffee/images/message.gif b/src/member/space/coffee/images/message.gif deleted file mode 100755 index b3080acd..00000000 Binary files a/src/member/space/coffee/images/message.gif and /dev/null differ diff --git a/src/member/space/coffee/images/rss.png b/src/member/space/coffee/images/rss.png deleted file mode 100755 index 41984cd5..00000000 Binary files a/src/member/space/coffee/images/rss.png and /dev/null differ diff --git a/src/member/space/coffee/images/save.jpg b/src/member/space/coffee/images/save.jpg deleted file mode 100755 index 086b9c92..00000000 Binary files a/src/member/space/coffee/images/save.jpg and /dev/null differ diff --git a/src/member/space/coffee/images/sigline.gif b/src/member/space/coffee/images/sigline.gif deleted file mode 100755 index 173d91c0..00000000 Binary files a/src/member/space/coffee/images/sigline.gif and /dev/null differ diff --git a/src/member/space/coffee/images/style.css b/src/member/space/coffee/images/style.css deleted file mode 100755 index 9c7bdb93..00000000 --- a/src/member/space/coffee/images/style.css +++ /dev/null @@ -1,180 +0,0 @@ -body{font-family: Geneva, Arial, Helvetica, sans-serif, serif;font-size:12px;line-height:1.5em;background:#000 url(bodybg.jpg) ;color:#eee;} -h1,h2,h3,h4,h5,h6,form,body,dd,dt,dl,li,ul{padding:0;margin:0} -td,th,div{word-break:break-all;word-wrap:break-word} -img{border:0; background:#000} -.c{clear:both;height:1px;font:0px/0px Arial;overflow:hidden} -.tal,.tl{text-align:left} -.tac,.tc{text-align:center} -.tar,.tr{text-align:right} -.fr,.right{float:right} -.fl,.left{float:left} -.b{ font-weight:bold} -.tdn{ text-decoration:none} -.small{ font-size:10px;} -.big{ font-size:14px;} -.fsn{ font-size:12px} -.fn{ font-weight:normal} -.lh0{ line-height:0} -.yellow {color:#FFFF00} -.gray{ color:#aaa} -.keep{ word-break:keep-all; word-spacing:normal} -.ip{ padding:2px; border:1px solid #463E3B;background:none;color:#FFC800} -.bt{background:#012E53;color:#FFC800 ;font-size:12px;} -/*a link 基本连接颜色*/ -a{color:#d9544E} -a:hover{color:#fff; background:#d9544E} -a.noul{ text-decoration:none} -a.active{background:#d9544E; color:#fff} -a.active:hover{color:#d9544E; background:none} - -h1{color:#7C1B00;font-size:20px; padding:.6em 0 0; margin-top:2em} -h2{ font-size:15px; padding:.5em .6em .3em; color:#fff;} -h3{ font-size:14px; color:#FFFF00} -h4{ font:16px Georgia; display:inline} -.wrap1{ background:url(bg.jpg) repeat-x -60px 0;width:100%; height:1000px } -.wrap2{ background:url(bg.jpg) repeat-x -60px 0;width:1000px; height:1000px } -#container{ width:778px;margin:0 auto 0 2em} -#header{ height:150px;margin-bottom:1em} -#title{ width:98%; height:120px; margin:auto; overflow:hidden} -#guide{ padding:0; margin:0; border-bottom:1px solid #453D3B; float:left; width:99.8%;} -#guide li{ display:inline} -#guide li a{ float:left; color:#fff; text-decoration:none;display:block; font:13px/1.2em Arial; padding:.4em 1em} -#guide li a:hover{ background:#AF5B2F;text-decoration:none} -#guide li.active a{background:#453D3B;color:#FFC800 } -#site-dsc{color:#fff} -#toolbar{ margin-top:1em} - -#main{ width:73.5%;} -#side{ width:25%;} -.box{ border:1px solid #666; margin:0 0 .7em; width:100%; overflow:hidden; background:#000;filter:alpha(opacity=70);-moz-opacity:0.7} -.text{ margin:.5em 1em 1em;} -#main .text { margin: 1em} -#side .list { margin:1em .5em 1.5em 2.5em;} -#side .list ul{ margin:0 0 1em 1em} -#side .list ul li{ margin:.5em 0} -#side .list li{ margin:.5em 0} -.profile-pic{margin:0 auto 1em;padding:1px;width:95%;} -.profile-pic div{ margin:0 auto 0;width:100%;padding:0;overflow:hidden;text-align:center;line-height:0} -.profile-pic div img{border:1px solid #ccc;padding:0; margin:0;} -.profile dd{ margin:.3em 0 0; line-height:120%} - -/*#calendar */ -.calendar table{ width:98%; margin:0 auto 1em; table-layout:fixed} -.calendar table td{ height: 15px;font:11px/150% Tahoma;text-align:center;} -.calendar table th{ text-align: center} -.calendar table td a{color:#fff;font:11px/12px Arial;background:#d9544E;padding:0px 3px 2px} -.calendar table td a:hover{background:#012E53;text-decoration:none} - -/*blog*/ - -.blog-content{ margin:2em 0; table-layout:fixed; width:100%; vertical-align:top} -.blog-content td{ font-size:13px; line-height:1.5em;overflow:hidden} -.blog-content td img { padding:5px; border:1px solid #666; line-height:0} -.blog-content td a:hover img { border-color:#fff} -.bb{ border-bottom:1px solid #666; padding:0 0 .6em; margin:0 0 .3em; line-height:2em;} - -#footer{ margin-top:2em; border-top:1px solid #666; padding:.5em;} -#footer ul,#footer li { display:inline; list-style:none ; margin:0 0 0 1em} - -/*photos-album*/ -.pic-list li{ height:50px; width:50px; list-style:none; float:left} -.pic-list li a img{ filter:alpha(opacity=80);Opacity=0.08;padding:2px; width:40px; height:40px} -.pic-list li a:hover img { filter:alpha(opacity=100);Opacity=0.1; position:absolute; width:79px;height:79px; margin:-20px 0 0 -20px} -.front-cover{ padding:0 1em 2em 0} - -/*favorite*/ -.fav dl{ margin-bottom:1.5em} -.fav dt{ margin-bottom:.5em} - -/*goods*/ -.goods-list li{ width:80px; height:80px; text-align:center; line-height:110%; margin:0 .3em 1em } -.goods-list li a:hover img { margin:-20px 0 0 -42px} -.goods-dl { width:400px} -.goods-dl dd{ border-bottom:1px solid #333; margin: 0 1em 0 0; line-height:2em} - - -/*friends*/ -.frends-list li{ float:left; width:48%;height:120px; overflow:hidden; margin-left:1%} -.frends-list li a img{ padding:2px; float:left; margin-right:.5em} - -/*comment*/ -.comment dl{ display:block;clear:both;float:left;margin:.2em 0;border:1px solid #2C2C2C;width:90%;padding:.5em} -.comment dl:hover{border-color:#4c4c4c} -.comment dd{ margin:0 .8em .5em 0; padding:0; line-height:120%;} -.comment dd.comment-content{ width:85%; display:block;float:left} -.post-comment{ width:70%; margin: 0 0 1em;float:left} -.post-comment div{ margin:0 0 .5em } -.re-comment{ margin:1em 0 0; border:1px solid #2E2E2E ; padding:1em} -.re-comment b{ color:#1C444E} -.re-comment div{ margin-top:1em;} - - -/*itable*/ -.itable td,.itable th{padding:.3em .5em} -.itable td { vertical-align: middle; border-bottom: 1px solid #2E2E2E;} -.itable tr.tr1 td{ background: #2E2E2E ;} -.itable tr.tr2 td{ border-bottom : 1px solid #2E2E2E ; } -.itable td img {border:0;padding:0;background:none} - -/*pages*/ -.pages { margin-top:10px; margin-bottom:10px; text-align: center;clear:both } -.pages * { vertical-align: middle;} -.pages a{padding:1px 4px 2px;border:1px solid #2C2C2C;margin:0 1px;text-align: center;text-decoration: none; font:normal 10px Tahoma ; } -.pages a:hover { border:#fff 1px solid;text-decoration:none;} -.pages input { border:1px solid #2C2C2C; background:none;height:14px; font: 9px Tahoma; padding-top:1px;text-align: center; } -.pages b { padding:2px ; margin: 0 3px;font:bold 10px/12px Tahoma} - -/*menu*/ -.menu{position:absolute;background:#fff;border:1px solid $tablecolor;} -.menu td, .menu li,.menu ul{background:#fff;padding:0; margin:0} -.menu li{list-style:none;} -.menu a{display:block;padding:3px 15px 3px 15px;background:#fff;} -.menu a:hover{background:$linkcolor;text-decoration:none;color:#fff;} -.menu ul.ul1 li a{display:inline;padding:0} - -.listPic dl{ width:24.5%; float:left; text-align:center; padding:0; margin:.5em 0} -.listPic dt a{ color:#333} -.listPic dd{ padding:0 0 .5em 0; margin:0; text-indent:0; height:90px; vertical-align:middle} -.listPic dd img{ width:85px;height:85px; padding:2px; border:1px solid #eee;} - -.listPic1 dl{ width:33%; float:left; text-align:center; padding:0; margin:.5em 0} -.listPic1 dt a{ color:#333} -.listPic1 dd{ padding:0 0 .5em 0; margin:0; text-indent:0; height:55px; vertical-align:middle} -.listPic1 dd img{ width:50px;height:50px; padding:1px; border:1px solid #eee;} -.listPic-albumn dd { height:105px;} -.listPic-albumn dd img { width:90px; height:90px; padding:4px 4px 8px; border:0; background:url(albumn-bg.gif)} - -.moduleA{ margin:.2em; border:1px solid #A6CBE7; line-height:110%; border-bottom-color:#66A0CC; border-right-color:#66A0CC;} -.moduleA h3{ color: #0066FF;padding:.5em; margin:0;font-family:Tahoma;font-size:12px;cursor:move } -.tableA { table-layout:fixed} -.tableAtd{ border:1px solid #D4E8F7;height:50px;} -.editButton{ float:right; font:12px/120% Tahoma; color:#CCC; text-decoration:none ; padding-left:0.5em; background:url($imgpath/button_edit.gif) no-repeat 0 .1em} -.editButton:hover{ background-position:.1em .2em} -.editBox{ background:#FFFFCF; margin:0 .2em .2em ; padding:.2em } -.editArea {border:1px solid #eee; width:96%; margin:auto;padding:.2em; background:#fff} -.menu1{position:absolute;border:1px solid #CCCCCC;background:#FFFFFF;z-index:1000;width:200px;height:255px;overflow-Y:auto} -.menu1 h3{background:$headcolor;text-align:left;color:$headfontone;padding:5px 7px 3px 7px;cursor:move} -.menu1 div{padding:5px 10px;} -.checkon{border:1px solid #0A9800;background:#CAFFC0;cursor:move} -.move{position:absolute;} - -#colorbox{width:91px;height:78px;padding:3px 0 0 3px;overflow:hidden;} -#colorbox div{cursor:pointer;width:8px;height:8px;float:left;margin:0 3px 3px 0;border:1px #000 solid;font:0/8px arial} - -.smile{ height:23px;padding:7px 0 0 8px;text-align:left;background:#E0F0F9 url(th1.png);cursor:move} -.smile div{ width:56px;height:18px;text-align:center;padding:5px 0 0;cursor:pointer;} -.smile div.lian{ background:#ffffff url(tag.jpg) no-repeat;cursor:auto;} - -.user-info{ position:absolute;line-height:160%; margin-left:-1.5em; margin-top:-1em} -.user-infoWrap{background:#FFF; border:1px solid #004C7D; border-top:1px #A6CBE7 solid; border-left:1px solid #A6CBE7; padding:.5em 1em; margin-left:20px;display:block;} -.user-info .co{position:absolute; width:10px;height:20px; margin-left:-1.8em; margin-top:2em; background:url(user-info-co.png)} - -/*menu_sm*/ -.menu_sm{ position:absolute;background:#fffcd9;border-bottom:1px solid #e7d62b; width:100%;} -.menu_sm a{padding:5px 15px 5px 15px; color:#f79305;} -.menu_sm a:hover{text-decoration:none;color:#fff;} - -@media screen and (min-width:0px){ -.goods-list li a:hover img { margin:-20px -20px 0 0} -} - diff --git a/src/member/space/coffee/images/tag.jpg b/src/member/space/coffee/images/tag.jpg deleted file mode 100755 index 0f2984d3..00000000 Binary files a/src/member/space/coffee/images/tag.jpg and /dev/null differ diff --git a/src/member/space/coffee/images/tag1.jpg b/src/member/space/coffee/images/tag1.jpg deleted file mode 100755 index 0f2984d3..00000000 Binary files a/src/member/space/coffee/images/tag1.jpg and /dev/null differ diff --git a/src/member/space/coffee/images/talk.gif b/src/member/space/coffee/images/talk.gif deleted file mode 100755 index e23c73ee..00000000 Binary files a/src/member/space/coffee/images/talk.gif and /dev/null differ diff --git a/src/member/space/coffee/images/team.gif b/src/member/space/coffee/images/team.gif deleted file mode 100755 index 53a54c85..00000000 Binary files a/src/member/space/coffee/images/team.gif and /dev/null differ diff --git a/src/member/space/coffee/images/wap.png b/src/member/space/coffee/images/wap.png deleted file mode 100755 index 37779fa4..00000000 Binary files a/src/member/space/coffee/images/wap.png and /dev/null differ diff --git a/src/member/space/coffee/images/write.gif b/src/member/space/coffee/images/write.gif deleted file mode 100755 index 698cb2a0..00000000 Binary files a/src/member/space/coffee/images/write.gif and /dev/null differ diff --git a/src/member/space/coffee/index.htm b/src/member/space/coffee/index.htm deleted file mode 100755 index 033a9373..00000000 --- a/src/member/space/coffee/index.htm +++ /dev/null @@ -1,67 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_news.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

-最新日志文章列表 -发表日志 -

- -{dede:spacenewart row=6 titlelen=60 infolen=200} - -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#", $fields['litpic']) } - - {/dede:if} - {dede:field.description/} -

-
-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:spacenewart} -
- -
- -
-
- - -{dede:include file='footer.htm' /} diff --git a/src/member/space/coffee/info.txt b/src/member/space/coffee/info.txt deleted file mode 100755 index 98a23a88..00000000 --- a/src/member/space/coffee/info.txt +++ /dev/null @@ -1,4 +0,0 @@ -name:咖啡风格 -author:ylj798 PW修改版 -type:个人 -date:2009年7月 \ No newline at end of file diff --git a/src/member/space/coffee/infos.htm b/src/member/space/coffee/infos.htm deleted file mode 100755 index 3449cf47..00000000 --- a/src/member/space/coffee/infos.htm +++ /dev/null @@ -1,59 +0,0 @@ -{dede:include file='header.htm'/} - - - - -
- {dede:include file='side_icon.htm'/} -
- - -
-
-

基本资料

- -
- - - - -
- 昵称:
- 性别:
- 生日:
- 所在城市: - -
- 交友宣言:
-
-
-
- -

联系方式

- -
- - - - -
- Email:
- QQ:
- MSN:
-
-
-
- -
-
- -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/coffee/listalbum.htm b/src/member/space/coffee/listalbum.htm deleted file mode 100755 index 88b23dae..00000000 --- a/src/member/space/coffee/listalbum.htm +++ /dev/null @@ -1,37 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

相册列表

- -
- - - - -
-
- {dede:datalist titlelen = '20'} -
-
-
{dede:field.title/}
-
- {/dede:datalist} -
-
-
-
-
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/coffee/listarchives.htm b/src/member/space/coffee/listarchives.htm deleted file mode 100755 index 0455dd02..00000000 --- a/src/member/space/coffee/listarchives.htm +++ /dev/null @@ -1,60 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

文档列表

- -{dede:datalist} - -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#", $fields['litpic']) } - - {/dede:if} - {dede:field.description /} -

-

<<详细内容 -

-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:datalist} -
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm' /} \ No newline at end of file diff --git a/src/member/space/coffee/listarticle.htm b/src/member/space/coffee/listarticle.htm deleted file mode 100755 index e60b4e31..00000000 --- a/src/member/space/coffee/listarticle.htm +++ /dev/null @@ -1,57 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

日志文章列表 -发表日志 -

- -{dede:datalist} -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#", $fields['litpic']) } - - {/dede:if} - {dede:field.body function='cn_substr(@me, 500); /} -

-

<<详细内容 -

-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:datalist} -
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm' /} \ No newline at end of file diff --git a/src/member/space/coffee/side_class.htm b/src/member/space/coffee/side_class.htm deleted file mode 100755 index 7a162db6..00000000 --- a/src/member/space/coffee/side_class.htm +++ /dev/null @@ -1,42 +0,0 @@ -= 0) -{ - $channelAdd = ''; - if($channelid > 2) $channelAdd = '&channelid='.$channelid; -?> - -
-

日志分类

-
    - 0) - { - foreach ($mtypearr as $mty) - { - if(!empty($channelid) && $mty['channelid'] != $channelid) continue; - echo "
  • {$mty['mtypename']}
  • \r\n"; - } - } - ?> -
  • 所有文档>>
  • -
-
- - \ No newline at end of file diff --git a/src/member/space/coffee/side_icon.htm b/src/member/space/coffee/side_icon.htm deleted file mode 100755 index 7a976a71..00000000 --- a/src/member/space/coffee/side_icon.htm +++ /dev/null @@ -1,35 +0,0 @@ - -
-

博主资料

-
-
-
- -
- {dede:if $_vars['face']=='' } - nopic - {else} - {dede:var.uname/} - {/dede:if} -
-
-
-
- 留言 | - 短消息 | - 加好友 | - 加黑名单 - -
-
 用户昵称:{dede:var.uname /}
-
 最后登录:{dede:var.logintime function="MyDate('y-m-d h:i',@me)" /}
-
 会员等级:{dede:var.membername/}
-
 会员积分:{dede:var.scores/} 分
-
 空间访问:{dede:var.homecount/} 次
-
-
-
-
- - - diff --git a/src/member/space/coffee/side_news.htm b/src/member/space/coffee/side_news.htm deleted file mode 100755 index 59690bd8..00000000 --- a/src/member/space/coffee/side_news.htm +++ /dev/null @@ -1,8 +0,0 @@ - - - diff --git a/src/member/space/coffee/side_search.htm b/src/member/space/coffee/side_search.htm deleted file mode 100755 index 9f038c3f..00000000 --- a/src/member/space/coffee/side_search.htm +++ /dev/null @@ -1,14 +0,0 @@ - - - diff --git a/src/member/space/coffee/side_visitor.htm b/src/member/space/coffee/side_visitor.htm deleted file mode 100755 index 5b27769b..00000000 --- a/src/member/space/coffee/side_visitor.htm +++ /dev/null @@ -1,11 +0,0 @@ - - \ No newline at end of file diff --git a/src/member/space/company/blog.htm b/src/member/space/company/blog.htm deleted file mode 100755 index a3235182..00000000 --- a/src/member/space/company/blog.htm +++ /dev/null @@ -1,116 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

查看新闻

-
- - -
-
{dede:global.arcrow[pubdate] function="MyDate('y-m-d h:i',@me)" /}
-

- {dede:global.arcrow[title] /} -

- - - - -
-

{dede:global.arcrow[body] /}

-
-
- - -
-0) { ?> -
一共有 条评论
- -
-
- -
-
- - - - Says: -
-
- -
- -
- -
-
-
-
- -
-
-
发表评论
-
-
- - - - - {dede:var.uname /}: -
-
- -
-
-
- 表情: -
    -
  • -
  • -
  • -
  • -
  • -
  • -
  • -
-
- - - - - - - - -
验证码: 匿名评论
- -
-
-
- - -
-
- - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/company/contact.htm b/src/member/space/company/contact.htm deleted file mode 100755 index ac582727..00000000 --- a/src/member/space/company/contact.htm +++ /dev/null @@ -1,34 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_search.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_news.htm'/} -
- - -
- -
-

联系我们

-
-
-
    -
  • 公司名称:{dede:var.company/}
  • -
  • 贸易种类:{dede:var.vocation/}
  • -
  • 主营产品:{dede:var.product/}
  • -
  • 公司规模:{dede:var.cosize/}
  • -
  • 所在地:{dede:var.place/}
  • -
  • 联系人:{dede:var.linkman/}
  • -
  • 电话:{dede:var.tel/}
  • -
  • 传真:{dede:var.fax/}
  • -
  • 网址:{dede:var.url/}
  • -
  • Email:{dede:var.email/}
  • -
  • 地址:{dede:var.address/}
  • -
-
- -
- - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/company/demo.png b/src/member/space/company/demo.png deleted file mode 100755 index 0ff129db..00000000 Binary files a/src/member/space/company/demo.png and /dev/null differ diff --git a/src/member/space/company/footer.htm b/src/member/space/company/footer.htm deleted file mode 100755 index 5447359b..00000000 --- a/src/member/space/company/footer.htm +++ /dev/null @@ -1,8 +0,0 @@ -
-
- -
- - \ No newline at end of file diff --git a/src/member/space/company/guestbook.htm b/src/member/space/company/guestbook.htm deleted file mode 100755 index 85573fa5..00000000 --- a/src/member/space/company/guestbook.htm +++ /dev/null @@ -1,100 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm' /} - {dede:include file='side_visitor.htm' /} -
- - -
-
-

留言列表

- -
- -
-
- {dede:datalist} - -
-
- '; - }else{ - echo ''.$fields['uname'].'的头像'; - } ?> -
-
- {dede:field.uname/} - {dede:field.dtime function="MyDate('Y-m-d H:i',@me)" /} -
-
-
{dede:field.msg function="Text2Html(@me)" /}
- -
- -
-
-
- {/dede:datalist} -
{dede:pagelist/}
-
-
发表留言:
-
-
- - - - - -
-
标题:
-
- - -
- -
- - - - - - - - -
 验证码: 
-
- -
-
- -
- -
- - - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/company/header.htm b/src/member/space/company/header.htm deleted file mode 100755 index 90eb1a8e..00000000 --- a/src/member/space/company/header.htm +++ /dev/null @@ -1,59 +0,0 @@ - - - - -{dede:var.spacename /} {dede:var.curtitle /} - - - - -
-
- - -
- \ No newline at end of file diff --git a/src/member/space/company/images/addto.gif b/src/member/space/company/images/addto.gif deleted file mode 100755 index cbfedc52..00000000 Binary files a/src/member/space/company/images/addto.gif and /dev/null differ diff --git a/src/member/space/company/images/albumn-bg.gif b/src/member/space/company/images/albumn-bg.gif deleted file mode 100755 index 98e11622..00000000 Binary files a/src/member/space/company/images/albumn-bg.gif and /dev/null differ diff --git a/src/member/space/company/images/bgm.gif b/src/member/space/company/images/bgm.gif deleted file mode 100755 index ee1b9cb6..00000000 Binary files a/src/member/space/company/images/bgm.gif and /dev/null differ diff --git a/src/member/space/company/images/bodybg.jpg b/src/member/space/company/images/bodybg.jpg deleted file mode 100755 index 4de469bd..00000000 Binary files a/src/member/space/company/images/bodybg.jpg and /dev/null differ diff --git a/src/member/space/company/images/bodybg.png b/src/member/space/company/images/bodybg.png deleted file mode 100755 index 2e47c2b6..00000000 Binary files a/src/member/space/company/images/bodybg.png and /dev/null differ diff --git a/src/member/space/company/images/close.jpg b/src/member/space/company/images/close.jpg deleted file mode 100755 index ce11ae5e..00000000 Binary files a/src/member/space/company/images/close.jpg and /dev/null differ diff --git a/src/member/space/company/images/del.png b/src/member/space/company/images/del.png deleted file mode 100755 index b407245a..00000000 Binary files a/src/member/space/company/images/del.png and /dev/null differ diff --git a/src/member/space/company/images/download.gif b/src/member/space/company/images/download.gif deleted file mode 100755 index 0d897564..00000000 Binary files a/src/member/space/company/images/download.gif and /dev/null differ diff --git a/src/member/space/company/images/h.png b/src/member/space/company/images/h.png deleted file mode 100755 index 9c14aa12..00000000 Binary files a/src/member/space/company/images/h.png and /dev/null differ diff --git a/src/member/space/company/images/img.gif b/src/member/space/company/images/img.gif deleted file mode 100755 index c08d5240..00000000 Binary files a/src/member/space/company/images/img.gif and /dev/null differ diff --git a/src/member/space/company/images/jian.png b/src/member/space/company/images/jian.png deleted file mode 100755 index 241d53ec..00000000 Binary files a/src/member/space/company/images/jian.png and /dev/null differ diff --git a/src/member/space/company/images/listen.gif b/src/member/space/company/images/listen.gif deleted file mode 100755 index d62fb94e..00000000 Binary files a/src/member/space/company/images/listen.gif and /dev/null differ diff --git a/src/member/space/company/images/message.gif b/src/member/space/company/images/message.gif deleted file mode 100755 index b3080acd..00000000 Binary files a/src/member/space/company/images/message.gif and /dev/null differ diff --git a/src/member/space/company/images/music.gif b/src/member/space/company/images/music.gif deleted file mode 100755 index 540d375c..00000000 Binary files a/src/member/space/company/images/music.gif and /dev/null differ diff --git a/src/member/space/company/images/new-msg-tips.png b/src/member/space/company/images/new-msg-tips.png deleted file mode 100755 index e31ef0f6..00000000 Binary files a/src/member/space/company/images/new-msg-tips.png and /dev/null differ diff --git a/src/member/space/company/images/none.gif b/src/member/space/company/images/none.gif deleted file mode 100755 index cb7bb2f2..00000000 Binary files a/src/member/space/company/images/none.gif and /dev/null differ diff --git a/src/member/space/company/images/nopic.gif b/src/member/space/company/images/nopic.gif deleted file mode 100755 index bfbcde27..00000000 Binary files a/src/member/space/company/images/nopic.gif and /dev/null differ diff --git a/src/member/space/company/images/rss.png b/src/member/space/company/images/rss.png deleted file mode 100755 index 41984cd5..00000000 Binary files a/src/member/space/company/images/rss.png and /dev/null differ diff --git a/src/member/space/company/images/save.jpg b/src/member/space/company/images/save.jpg deleted file mode 100755 index 086b9c92..00000000 Binary files a/src/member/space/company/images/save.jpg and /dev/null differ diff --git a/src/member/space/company/images/sigline.gif b/src/member/space/company/images/sigline.gif deleted file mode 100755 index 173d91c0..00000000 Binary files a/src/member/space/company/images/sigline.gif and /dev/null differ diff --git a/src/member/space/company/images/style.css b/src/member/space/company/images/style.css deleted file mode 100755 index fce9cf3b..00000000 --- a/src/member/space/company/images/style.css +++ /dev/null @@ -1,204 +0,0 @@ -body{font-family: Geneva, Arial, Helvetica, sans-serif, serif;font-size:12px;line-height:1.5em;background:#D6EDF5 url(bodybg.jpg) repeat-x;color:#333} -h1,h2,h3,h4,h5,h6,form,body,dd,dt,dl,li,ul{padding:0;margin:0} -td,th,div,dd{word-break:break-all;word-wrap:break-word} -img{border:0;} -.c{clear:both;height:1px;font:0px/0px Arial;overflow:hidden} -.tal,.tl{text-align:left} -.tac,.tc{text-align:center} -.tar,.tr{text-align:right} -.fr,.right{float:right} -.fl,.left{float:left} -.b{ font-weight:bold} -.tdn{ text-decoration:none} -.small{ font-size:10px;} -.big{ font-size:14px;} -.fsn{ font-size:12px} -.fn{ font-weight:normal} -.lh0{ line-height:0} -.yellow {color:#fff;} -.gray{ color:#83cfcb} -.keep{ word-break:keep-all; word-spacing:normal} -.ip{ padding:4px 2px 3px; border:1px solid #90C3D5; font:12px/1.1em Tahoma} -.bt{background:#B5D7E3; color:#4D7280; font-weight:bold; border:3px double #90C3D5;font-size:12px;} -/*a link 基本连接颜色*/ -a{color:#01759C} -a:hover{color:#fff; background:#01759C} -a.noul{ text-decoration:none} -a.active{background:#01759C; color:#fff} -a.active:hover{color:#01759C; background:none} - -h1{ font-size:24px; padding:.6em 0 0} -h2{ font-size:13px; padding:.3em .6em; color:#fff; background:url(bodybg.jpg) 0 -70px #48A3CA; border-bottom:#B3D8E6 1px solid } -h3{ font-size:14px} -h4{ font:16px Georgia; display:inline} - -#container{ width:96%; min-width:600px; max-width:1000px; margin:auto; } -#header{ height:108px; background:url(header.png) no-repeat right;} -#title{ width:98%; height:68px; margin:auto; overflow:hidden} -#title h1 { float:left; } -#guide{height:27px;padding:0; margin:0} -#guide li{ display:inline} -#guide li a{ float:left; color:#fff; text-decoration:none;display:block; font:13px/1.2em Arial; padding:.4em 1em} -#guide li a:hover{ background:#4A9FBE;text-decoration:none} -#guide li.active a{background:#03779C;color:#fff } -#site-dsc{color:#B3D8E6; margin-top:.5em; font-size:14px} -#toolbar{ margin-top:1em} -#toolbar a{ color:#B3D8E6} - -#main{ width:75.5%; background:#fff; } -#side{ width:23%;} -.box{ border:1px solid #90C3D5; margin:0 0 .7em; width:100%; overflow:hidden; background:#fff} -.text{ margin:.5em 1em 1em;} -#main .text { margin: 1em} -#side .list { margin:1em .5em 1.5em 2.5em;color:#333} -#side .list ul{ margin:0 0 1em 1em} -#side .list ul li{ margin:.5em 0} -#side .list li{ margin:.5em 0} -.profile-pic{margin:0 auto 1em;padding:1px;width:95%;} -.profile-pic div{ margin:0 auto 0;width:100%;padding:0;overflow:hidden;text-align:center;line-height:0} -.profile-pic div img{border:1px solid #ccc;padding:0; margin:0;} -.profile dd{ margin:.3em 0 0; line-height:120%} - -/*#calendar */ -.calendar table{ width:98%; margin:0 auto 1em; table-layout:fixed} -.calendar table td{ height: 15px;font:11px/150% Tahoma;text-align:center;} -.calendar table th{ text-align: center} -.calendar table td a{color:#fff;font:11px/12px Arial;background:#01759C;padding:0px 3px 2px} -.calendar table td a:hover{background:#015C88;text-decoration:none} - -/*blog*/ - -.blog-content{ margin:2em 0; table-layout:fixed; width:100%; vertical-align:top} -.blog-content td{ font-size:13px; line-height:1.5em;overflow:hidden} -.blog-content td img { padding:5px; border:1px solid #B3D8E6; line-height:0} -.blog-content td a:hover img { border-color:#2E5B6B; background:#fff} -.bb{ border-bottom:1px solid #B5D7E3 ; padding:0 0 .6em; margin:0 0 .3em; line-height:2em;} - -#footer{ margin-top:2em; border-top:1px solid #66B2CC ; padding:.5em} -#footer ul,#footer li { display:inline; list-style:none ; margin:0 0 0 1em} - -/*photos-album*/ -.pic-list li{ height:50px; width:50px; list-style:none; float:left} -.pic-list li a img{ filter:alpha(opacity=80);Opacity=0.08;padding:2px; width:40px; height:40px} -.pic-list li a:hover img { filter:alpha(opacity=100);Opacity=0.1; position:absolute; width:79px;height:79px; margin:-20px 0 0 -20px} -.front-cover{ padding:0 1em 1em 0} - -/*favorite*/ -.fav dl{ margin-bottom:1.5em} -.fav dt{ margin-bottom:.5em} - -/*goods*/ -.goods-list li{ width:80px; height:80px; text-align:center; line-height:110%; margin:0 .3em 1em } -.goods-list li a:hover img { margin:-20px 0 0 -42px} -.goods-dl { max-width:55%; width:400px} -.goods-dl dd{ border-bottom:1px solid #E9F0DB; margin: 0 1em 0 0; line-height:2em} - - -/*friends*/ -.frends-list li{ float:left; width:48%;height:120px; overflow:hidden; margin-left:1%} -.frends-list li a img{ padding:2px; float:left; margin-right:.5em} - -/*comment*/ -.comment dl{ display:block;clear:both;float:left;margin:.2em 0;border:1px solid #D6EDF5;width:90%;padding:.5em} -.comment dl:hover{border-color:#4BA9CD} -.comment dd{ margin:0 .8em .8em 0; padding:0; line-height:120%;} -.comment dd.comment-content{ width:80%;float:left;word-break:break-all;-o-text-overflow: ellipsis;} -.post-comment{ width:70%; margin: 0 0 1em} -.post-comment div{ margin:0 0 .5em } -.re-comment{ margin:1em 0 0; border:1px solid #D6EDF5; padding:1em} - - -/*itable*/ -.itable td,.itable th{padding:.3em .5em} -.itable td { vertical-align: middle;border-bottom: 1px solid #D6EDF5;} -.itable tr.tr1 td{ background: #D6EDF5 ;} -.itable .ip { border:#CED4BE } -.itable td img {border:0;padding:0;background:none} - -/*pages*/ -.pages { margin-top:10px; margin-bottom:10px; text-align: center;clear:both } -.pages * { vertical-align: middle;} -.pages a{padding:1px 4px 2px ; background:#f9fcff; border:1px solid #ADD2E1; margin:0 1px; color: #002F79; text-align: center; text-decoration: none; font:normal 10px Tahoma ; } -.pages a:hover { border:#37A717 1px solid; background:#EDFFE4; text-decoration:none; color: #002F79} -.pages input { border:1px solid #ccc; height: 14px; font: 9px Tahoma; padding-top:1px;text-align: center; } -.pages b { padding:2px ; margin: 0 3px;font:bold 10px/12px Tahoma} - -/*menu*/ -.menu{position:absolute;background:#fff;border:1px solid $tablecolor;} -.menu td, .menu li,.menu ul{background:#fff;padding:0; margin:0} -.menu li{list-style:none;} -.menu a{display:block;padding:3px 15px 3px 15px;background:#fff;} -.menu a:hover{background:$linkcolor;text-decoration:none;color:#fff;} -.menu ul.ul1 li a{display:inline;padding:0} - -.listPic dl{ width:24.5%; float:left; text-align:center; padding:0; margin:.5em 0} -.listPic dt a{ color:#333} -.listPic dd{ padding:0 0 .5em 0; margin:0; text-indent:0; height:90px; vertical-align:middle} -.listPic dd img{ width:85px;height:85px; padding:2px; border:1px solid #eee;} - -.listPic1 dl{ width:33%; float:left; text-align:center; padding:0; margin:.5em 0} -.listPic1 dt a{ color:#333} -.listPic1 dd{ padding:0 0 .5em 0; margin:0; text-indent:0; height:55px; vertical-align:middle} -.listPic1 dd img{ width:50px;height:50px; padding:2px; border:1px solid #eee;} -.listPic-albumn dd { height:105px;} -.listPic-albumn dd img { width:90px; height:90px; padding:4px 4px 8px; border:0; background:url(albumn-bg.gif)} - -.moduleA{ margin:.2em; border:1px solid #A6CBE7; line-height:110%; border-bottom-color:#66A0CC; border-right-color:#66A0CC;} -.moduleA h3{ color: #0066FF;padding:.5em; margin:0;font-family:Tahoma;font-size:12px;cursor:move } -.tableA { table-layout:fixed} -.tableAtd{ border:1px solid #D4E8F7;height:50px;} -.editButton{ float:right; font:12px/120% Tahoma; color:#CCC; text-decoration:none ; padding-left:0.5em; background:url($imgpath/button_edit.gif) no-repeat 0 .1em} -.editButton:hover{ background-position:.1em .2em} -.editBox{ background:#FFFFCF; margin:0 .2em .2em ; padding:.2em } -.editArea {border:1px solid #eee; width:96%; margin:auto;padding:.2em; background:#fff} -.menu1{position:absolute;border:1px solid #CCCCCC;background:#FFFFFF;z-index:1000;width:200px;height:255px;overflow-Y:auto} -.menu1 h3{background:$headcolor;text-align:left;color:$headfontone;padding:5px 7px 3px 7px;cursor:move} -.menu1 div{padding:5px 10px;} -.checkon{border:1px solid #0A9800;background:#CAFFC0;cursor:move} -.move{position:absolute;} - -#colorbox{width:91px;height:78px;padding:3px 0 0 3px;overflow:hidden;} -#colorbox div{cursor:pointer;width:8px;height:8px;float:left;margin:0 3px 3px 0;border:1px #000 solid;font:0/8px arial} - -.smile{ height:23px;padding:7px 0 0 8px;text-align:left;background:#E0F0F9 url(th1.png);cursor:move} -.smile div{ width:56px;height:18px;text-align:center;padding:5px 0 0;cursor:pointer;} -.smile div.lian{ background:#ffffff url(tag.jpg) no-repeat;cursor:auto;} - -.user-info{ position:absolute;line-height:160%; margin-left:-1.5em; margin-top:-1em} -.user-infoWrap{background:#FFF; border:1px solid #004C7D; border-top:1px #A6CBE7 solid; border-left:1px solid #A6CBE7; padding:.5em 1em; margin-left:20px;display:block;} -.user-info .co{position:absolute; width:10px;height:20px; margin-left:-1.8em; margin-top:2em; background:url(user-info-co.png)} - -/*menu_sm*/ -.menu_sm{ position:absolute;background:#fffcd9;border-bottom:1px solid #e7d62b; width:100%;} -.menu_sm a{padding:5px 15px 5px 15px; color:#f79305;} -.menu_sm a:hover{text-decoration:none;color:#fff;} - -@media screen and (min-width:0px){ -.goods-list li a:hover img { margin:-20px -20px 0 0} -} - -.usericobox { - float:left; - margin-bottom:8px; - margin-right:3px; - width:47px; - height:68px; - text-align:center; - overflow:hidden; -} - -.infobox { - padding-left:10px; - margin-bottom:10px; -} - -.infobox li { - line-height:32px; - height:32px; - border-bottom:1px dashed #dedede; -} - -.introduce { - border-bottom:1px dashed #dedede; - line-height: 180%; -} diff --git a/src/member/space/company/images/tag.jpg b/src/member/space/company/images/tag.jpg deleted file mode 100755 index 0f2984d3..00000000 Binary files a/src/member/space/company/images/tag.jpg and /dev/null differ diff --git a/src/member/space/company/images/tag1.jpg b/src/member/space/company/images/tag1.jpg deleted file mode 100755 index 0f2984d3..00000000 Binary files a/src/member/space/company/images/tag1.jpg and /dev/null differ diff --git a/src/member/space/company/images/talk.gif b/src/member/space/company/images/talk.gif deleted file mode 100755 index e23c73ee..00000000 Binary files a/src/member/space/company/images/talk.gif and /dev/null differ diff --git a/src/member/space/company/images/team.gif b/src/member/space/company/images/team.gif deleted file mode 100755 index 53a54c85..00000000 Binary files a/src/member/space/company/images/team.gif and /dev/null differ diff --git a/src/member/space/company/images/tips-close.png b/src/member/space/company/images/tips-close.png deleted file mode 100755 index 17bfe5a3..00000000 Binary files a/src/member/space/company/images/tips-close.png and /dev/null differ diff --git a/src/member/space/company/images/txt.gif b/src/member/space/company/images/txt.gif deleted file mode 100755 index 735d6177..00000000 Binary files a/src/member/space/company/images/txt.gif and /dev/null differ diff --git a/src/member/space/company/images/user-info-co.png b/src/member/space/company/images/user-info-co.png deleted file mode 100755 index fe1cd88d..00000000 Binary files a/src/member/space/company/images/user-info-co.png and /dev/null differ diff --git a/src/member/space/company/images/wap.png b/src/member/space/company/images/wap.png deleted file mode 100755 index 37779fa4..00000000 Binary files a/src/member/space/company/images/wap.png and /dev/null differ diff --git a/src/member/space/company/images/write.gif b/src/member/space/company/images/write.gif deleted file mode 100755 index 698cb2a0..00000000 Binary files a/src/member/space/company/images/write.gif and /dev/null differ diff --git a/src/member/space/company/images/zip.gif b/src/member/space/company/images/zip.gif deleted file mode 100755 index dc3d9cea..00000000 Binary files a/src/member/space/company/images/zip.gif and /dev/null differ diff --git a/src/member/space/company/index.htm b/src/member/space/company/index.htm deleted file mode 100755 index 90aeb48f..00000000 --- a/src/member/space/company/index.htm +++ /dev/null @@ -1,67 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_news.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

-最新内容列表 -添加公司新闻 -

- -{dede:spacenewart row=6 titlelen=60 infolen=200} - -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#", $fields['litpic']) } - - {/dede:if} - {dede:field.description/} -

-
-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:spacenewart} -
- -
- -
-
- - -{dede:include file='footer.htm' /} diff --git a/src/member/space/company/info.txt b/src/member/space/company/info.txt deleted file mode 100755 index 6464590b..00000000 --- a/src/member/space/company/info.txt +++ /dev/null @@ -1,4 +0,0 @@ -name:织梦企业默认 -author:dedecms -type:企业 -date:2009年7月 \ No newline at end of file diff --git a/src/member/space/company/infos.htm b/src/member/space/company/infos.htm deleted file mode 100755 index 3449cf47..00000000 --- a/src/member/space/company/infos.htm +++ /dev/null @@ -1,59 +0,0 @@ -{dede:include file='header.htm'/} - - - - -
- {dede:include file='side_icon.htm'/} -
- - -
-
-

基本资料

- -
- - - - -
- 昵称:
- 性别:
- 生日:
- 所在城市: - -
- 交友宣言:
-
-
-
- -

联系方式

- -
- - - - -
- Email:
- QQ:
- MSN:
-
-
-
- -
-
- -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/company/introduce.htm b/src/member/space/company/introduce.htm deleted file mode 100755 index 392074c0..00000000 --- a/src/member/space/company/introduce.htm +++ /dev/null @@ -1,46 +0,0 @@ -{dede:include file='header.htm' /} - -
- {dede:include file='side_search.htm' /} - {dede:include file='side_class.htm' /} - {dede:include file='side_news.htm' /} -
- - -
- -
-

公司简介

-
-
-
- {dede:var.company /}照片 - {dede:var.introduce /} -
-
    -
  • 公司名称:{dede:var.company /}
  • -
  • 贸易种类:{dede:var.vocation /}
  • -
  • 主营产品:{dede:var.product /}
  • -
  • 公司规模:{dede:var.cosize /}
  • -
  • 所在地:{dede:var.place /}
  • -
-
- -
-

联系方式

-
-
-
    -
  • 联系人:{dede:var.linkman /}
  • -
  • 电话:{dede:var.tel /}
  • -
  • 传真:{dede:var.fax /}
  • -
  • 网址: {dede:var.url /}
  • -
  • Email: {dede:var.email /}
  • -
  • 地址:{dede:var.address /}
  • -
-
- -
- - -{dede:include file='footer.htm' /} \ No newline at end of file diff --git a/src/member/space/company/listalbum.htm b/src/member/space/company/listalbum.htm deleted file mode 100755 index 88b23dae..00000000 --- a/src/member/space/company/listalbum.htm +++ /dev/null @@ -1,37 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

相册列表

- -
- - - - -
-
- {dede:datalist titlelen = '20'} -
-
-
{dede:field.title/}
-
- {/dede:datalist} -
-
-
-
-
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/company/listarchives.htm b/src/member/space/company/listarchives.htm deleted file mode 100755 index 0455dd02..00000000 --- a/src/member/space/company/listarchives.htm +++ /dev/null @@ -1,60 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

文档列表

- -{dede:datalist} - -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#", $fields['litpic']) } - - {/dede:if} - {dede:field.description /} -

-

<<详细内容 -

-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:datalist} -
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm' /} \ No newline at end of file diff --git a/src/member/space/company/listarticle.htm b/src/member/space/company/listarticle.htm deleted file mode 100755 index 8972a318..00000000 --- a/src/member/space/company/listarticle.htm +++ /dev/null @@ -1,57 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

公司新闻列表 -添加新闻 -

- -{dede:datalist} -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#",$fields['litpic']) } - - {/dede:if} - {dede:field.body function='cn_substr(@me, 500); /} -

-

<<详细内容 -

-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:datalist} -
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm' /} \ No newline at end of file diff --git a/src/member/space/company/listproducts.htm b/src/member/space/company/listproducts.htm deleted file mode 100755 index 7fdc75c6..00000000 --- a/src/member/space/company/listproducts.htm +++ /dev/null @@ -1,37 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

产品列表

- -
- - - - -
-
- {dede:datalist titlelen = '20'} -
-
-
{dede:field.title/}
-
- {/dede:datalist} -
-
-
-
-
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/company/side_class.htm b/src/member/space/company/side_class.htm deleted file mode 100755 index 7a162db6..00000000 --- a/src/member/space/company/side_class.htm +++ /dev/null @@ -1,42 +0,0 @@ -= 0) -{ - $channelAdd = ''; - if($channelid > 2) $channelAdd = '&channelid='.$channelid; -?> - -
-

日志分类

-
    - 0) - { - foreach ($mtypearr as $mty) - { - if(!empty($channelid) && $mty['channelid'] != $channelid) continue; - echo "
  • {$mty['mtypename']}
  • \r\n"; - } - } - ?> -
  • 所有文档>>
  • -
-
- - \ No newline at end of file diff --git a/src/member/space/company/side_icon.htm b/src/member/space/company/side_icon.htm deleted file mode 100755 index a8a72c1b..00000000 --- a/src/member/space/company/side_icon.htm +++ /dev/null @@ -1,38 +0,0 @@ - -
-

公司资料

-
-
-
- -
- {dede:if $_vars['face']=='' } - nopic - {else} - {dede:var.uname/} - {/dede:if} -
-
-
{dede:var.msg /}
-
-
- 留言 - 短消息 - 加好友 -
-
 最后登录:{dede:var.logintime function="MyDate('y-m-d h:i',@me)" /}
-
 会员等级:{dede:var.membername/}
-
 空间访问:{dede:var.homecount/} 次
-
 联系人:{dede:var.linkman/}
-
 电话:{dede:var.tel/}
-
 传真:{dede:var.fax/}
-
 网址: {dede:var.url/}
-
 Email: {dede:var.email/}
-
 地址:{dede:var.address/}
-
-
-
-
- - - diff --git a/src/member/space/company/side_news.htm b/src/member/space/company/side_news.htm deleted file mode 100755 index 59690bd8..00000000 --- a/src/member/space/company/side_news.htm +++ /dev/null @@ -1,8 +0,0 @@ - - - diff --git a/src/member/space/company/side_search.htm b/src/member/space/company/side_search.htm deleted file mode 100755 index 9f038c3f..00000000 --- a/src/member/space/company/side_search.htm +++ /dev/null @@ -1,14 +0,0 @@ - - - diff --git a/src/member/space/company/side_visitor.htm b/src/member/space/company/side_visitor.htm deleted file mode 100755 index 5b27769b..00000000 --- a/src/member/space/company/side_visitor.htm +++ /dev/null @@ -1,11 +0,0 @@ - - \ No newline at end of file diff --git a/src/member/space/flower/blog.htm b/src/member/space/flower/blog.htm deleted file mode 100755 index fe202c48..00000000 --- a/src/member/space/flower/blog.htm +++ /dev/null @@ -1,116 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

日志文章

-
- - -
-
{dede:global.arcrow[pubdate] function="MyDate('y-m-d h:i',@me)" /}
-

- {dede:global.arcrow[title] /} -

- - - - -
-

{dede:global.arcrow[body] /}

-
-
- - -
-0) { ?> -
一共有 条评论
- -
-
- -
-
- - - - Says: -
-
- -
- -
- -
-
-
-
- -
-
-
发表评论
-
-
- - - - - {dede:var.uname /}: -
-
- -
-
-
- 表情: -
    -
  • -
  • -
  • -
  • -
  • -
  • -
  • -
-
- - - - - - - - -
验证码: 匿名评论
- -
-
-
- - -
-
- - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/flower/demo.png b/src/member/space/flower/demo.png deleted file mode 100755 index e4558a80..00000000 Binary files a/src/member/space/flower/demo.png and /dev/null differ diff --git a/src/member/space/flower/footer.htm b/src/member/space/flower/footer.htm deleted file mode 100755 index 5447359b..00000000 --- a/src/member/space/flower/footer.htm +++ /dev/null @@ -1,8 +0,0 @@ -
-
- -
- - \ No newline at end of file diff --git a/src/member/space/flower/guestbook.htm b/src/member/space/flower/guestbook.htm deleted file mode 100755 index 3604d0e6..00000000 --- a/src/member/space/flower/guestbook.htm +++ /dev/null @@ -1,82 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm' /} - {dede:include file='side_news.htm' /} - {dede:include file='side_visitor.htm' /} -
- - -
-
-

留言列表

- -
- -
-
- {dede:datalist} - -
-
- '; - }else{ - echo ''.$fields['uname'].'的头像'; - } ?> -
-
- {dede:field.uname/} - {dede:field.dtime function="MyDate('Y-m-d H:i',@me)" /} -
-
-
{dede:field.msg function="Text2Html(@me)" /}
- -
- -
-
-
- {/dede:datalist} -
{dede:pagelist/}
-
-
发表留言
-
-
- {dede:var.uname /}: - - - - -
-
标题:
-
- - -
- -
- - - - - - - -
验证码: 
-
- -
-
- -
- -
- - - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/flower/header.htm b/src/member/space/flower/header.htm deleted file mode 100755 index 1ebc15b6..00000000 --- a/src/member/space/flower/header.htm +++ /dev/null @@ -1,48 +0,0 @@ - - - - -{dede:var.spacename /} {dede:var.curtitle /} - - - - -
-
- - -
- \ No newline at end of file diff --git a/src/member/space/flower/images/addto.gif b/src/member/space/flower/images/addto.gif deleted file mode 100755 index cbfedc52..00000000 Binary files a/src/member/space/flower/images/addto.gif and /dev/null differ diff --git a/src/member/space/flower/images/albumn-bg.gif b/src/member/space/flower/images/albumn-bg.gif deleted file mode 100755 index 98e11622..00000000 Binary files a/src/member/space/flower/images/albumn-bg.gif and /dev/null differ diff --git a/src/member/space/flower/images/bg.jpg b/src/member/space/flower/images/bg.jpg deleted file mode 100755 index f0b06fb2..00000000 Binary files a/src/member/space/flower/images/bg.jpg and /dev/null differ diff --git a/src/member/space/flower/images/bgm.gif b/src/member/space/flower/images/bgm.gif deleted file mode 100755 index ee1b9cb6..00000000 Binary files a/src/member/space/flower/images/bgm.gif and /dev/null differ diff --git a/src/member/space/flower/images/bodybg.png b/src/member/space/flower/images/bodybg.png deleted file mode 100755 index 2e47c2b6..00000000 Binary files a/src/member/space/flower/images/bodybg.png and /dev/null differ diff --git a/src/member/space/flower/images/boxbg.png b/src/member/space/flower/images/boxbg.png deleted file mode 100755 index c23a90e4..00000000 Binary files a/src/member/space/flower/images/boxbg.png and /dev/null differ diff --git a/src/member/space/flower/images/close.jpg b/src/member/space/flower/images/close.jpg deleted file mode 100755 index ce11ae5e..00000000 Binary files a/src/member/space/flower/images/close.jpg and /dev/null differ diff --git a/src/member/space/flower/images/del.png b/src/member/space/flower/images/del.png deleted file mode 100755 index b407245a..00000000 Binary files a/src/member/space/flower/images/del.png and /dev/null differ diff --git a/src/member/space/flower/images/download.gif b/src/member/space/flower/images/download.gif deleted file mode 100755 index 0d897564..00000000 Binary files a/src/member/space/flower/images/download.gif and /dev/null differ diff --git a/src/member/space/flower/images/h.png b/src/member/space/flower/images/h.png deleted file mode 100755 index 9c14aa12..00000000 Binary files a/src/member/space/flower/images/h.png and /dev/null differ diff --git a/src/member/space/flower/images/header.png b/src/member/space/flower/images/header.png deleted file mode 100755 index af64ca31..00000000 Binary files a/src/member/space/flower/images/header.png and /dev/null differ diff --git a/src/member/space/flower/images/img.gif b/src/member/space/flower/images/img.gif deleted file mode 100755 index c08d5240..00000000 Binary files a/src/member/space/flower/images/img.gif and /dev/null differ diff --git a/src/member/space/flower/images/jian.png b/src/member/space/flower/images/jian.png deleted file mode 100755 index 241d53ec..00000000 Binary files a/src/member/space/flower/images/jian.png and /dev/null differ diff --git a/src/member/space/flower/images/listen.gif b/src/member/space/flower/images/listen.gif deleted file mode 100755 index d62fb94e..00000000 Binary files a/src/member/space/flower/images/listen.gif and /dev/null differ diff --git a/src/member/space/flower/images/message.gif b/src/member/space/flower/images/message.gif deleted file mode 100755 index b3080acd..00000000 Binary files a/src/member/space/flower/images/message.gif and /dev/null differ diff --git a/src/member/space/flower/images/music.gif b/src/member/space/flower/images/music.gif deleted file mode 100755 index 540d375c..00000000 Binary files a/src/member/space/flower/images/music.gif and /dev/null differ diff --git a/src/member/space/flower/images/new-msg-tips.png b/src/member/space/flower/images/new-msg-tips.png deleted file mode 100755 index e31ef0f6..00000000 Binary files a/src/member/space/flower/images/new-msg-tips.png and /dev/null differ diff --git a/src/member/space/flower/images/nopic.gif b/src/member/space/flower/images/nopic.gif deleted file mode 100755 index bfbcde27..00000000 Binary files a/src/member/space/flower/images/nopic.gif and /dev/null differ diff --git a/src/member/space/flower/images/rss.png b/src/member/space/flower/images/rss.png deleted file mode 100755 index 41984cd5..00000000 Binary files a/src/member/space/flower/images/rss.png and /dev/null differ diff --git a/src/member/space/flower/images/save.jpg b/src/member/space/flower/images/save.jpg deleted file mode 100755 index 086b9c92..00000000 Binary files a/src/member/space/flower/images/save.jpg and /dev/null differ diff --git a/src/member/space/flower/images/sigline.gif b/src/member/space/flower/images/sigline.gif deleted file mode 100755 index 173d91c0..00000000 Binary files a/src/member/space/flower/images/sigline.gif and /dev/null differ diff --git a/src/member/space/flower/images/style.css b/src/member/space/flower/images/style.css deleted file mode 100755 index e225aa43..00000000 --- a/src/member/space/flower/images/style.css +++ /dev/null @@ -1,187 +0,0 @@ -body{font-family: Geneva, Arial, Helvetica, sans-serif, serif;font-size:12px;line-height:1.5em;background:#fdfdfd url(bg.jpg) no-repeat;color:#333} -h1,h2,h3,h4,h5,h6,form,body,dd,dt,dl,li,ul{padding:0;margin:0} -td,th,div{word-break:break-all;word-wrap:break-word} -img{border:0; background:#fff} -.c{clear:both;height:1px;font:0px/0px Arial;overflow:hidden} -.tal,.tl{text-align:left} -.tac,.tc{text-align:center} -.tar,.tr{text-align:right} -.fr,.right{float:right} -.fl,.left{float:left} - -.b{ font-weight:bold} -.tdn{ text-decoration:none} -.small{ font-size:10px;} -.big{ font-size:14px;} -.fsn{ font-size:12px} -.fn{ font-weight:normal} -.lh0{ line-height:0} -.yellow {color:#FFC800} -.gray{ color:#999} -.keep{ word-break:keep-all; word-spacing:normal} -.ip{ padding:2px; border:1px solid #D7ECF1} -.bt{background:#012E53;color:#FFC800;font-size:12px;} - -/*a link 基本连接颜色*/ -a{color:#3D7DB3} -a:hover{color:#fff; background:#3D7DB3} -a.noul{ text-decoration:none} -a.active{background:#3D7DB3; color:#fff} -a.active:hover{color:#3D7DB3; background:none} - -h1{color:#FFC800;font-size:18px; padding:.6em 0 0} -h2{ font-size:15px; padding:.5em .6em .3em; color:#3D7DB3;} -h3{ font-size:14px} -h4{ font:16px Georgia; display:inline} - -#container{ width:96%; min-width:600px; max-width:1000px;margin:auto} -#header{ height:108px; background:; margin-bottom:1em} -#title{ width:98%; height:68px; margin:auto; overflow:hidden} -#guide{height:27px;padding:0; margin:0} -#guide li{ display:inline} -#guide li a{ float:left; color:#fff; text-decoration:none;display:block; font:13px/1.2em Arial; padding:.4em 1em .3em} -#guide li a:hover{ background:#1D5A7D;text-decoration:none} -#guide li.active a{background:#012E53;color:#FFC800 } -#site-dsc{color:#9DCFF6} -#toolbar{ margin-top:1em} - -#main{ width:78.5%;} -#side{ width:20%;} -.box{ border:1px solid #ececec; margin:0 0 .7em; width:100%; overflow:hidden;background:url(boxbg.png) repeat;} - -/*for ie 6.0*/ -* html .box { background:#f6f6f6; filter:alpha(opacity=80); } -* html .profile-pic div{ position:relative} -.text{ margin:.5em 1em 1em;} -#main .text { margin: 1em} -#side .list { margin:1em .5em 1.5em 2.5em;color:#333;} -#side .list ul{ margin:0 0 1em 1em;} -#side .list ul li{ margin:.5em 0;} -#side .list li{ margin:.5em 0;} -.profile-pic{margin:0 auto 1em;padding:1px;width:95%;} -.profile-pic div{ margin:0 auto 0;width:100%;padding:0;overflow:hidden;text-align:center;line-height:0} -.profile-pic div img{border:1px solid #ccc;padding:0; margin:0;} -.profile dd{ margin:.3em 0 0; line-height:120%} - -/*#calendar */ -.calendar table{ width:98%; margin:0 auto 1em; table-layout:fixed} -.calendar table td{ height: 15px;font:11px/150% Tahoma;text-align:center;} -.calendar table th{ text-align: center} -.calendar table td a{color:#fff;font:11px/12px Arial;background:#3D7DB3;padding:0px 3px 2px} -.calendar table td a:hover{background:#012E53;text-decoration:none} - -/*blog*/ -.blog-content{ margin:2em 0; table-layout:fixed; width:100%; vertical-align:top} -.blog-content td{ font-size:13px; line-height:1.5em;overflow:hidden} -.blog-content td img { padding:5px; border:1px solid #d7ecf1; line-height:0} -.blog-content td a:hover img { border-color:#3D7DB3} -.bb{ border-bottom:1px solid #d7ecf1; padding:0 0 .6em; margin:0 0 .3em; line-height:2em;} - -#footer{ margin-top:2em; padding:.5em} -#footer ul,#footer li { display:inline; list-style:none ; margin:0 0 0 1em} - -/*photos-album*/ -.pic-list li{ height:50px; width:50px; list-style:none; float:left} -.pic-list li a img{ filter:alpha(opacity=80);Opacity=0.08;padding:2px; width:40px; height:40px} -.pic-list li a:hover img { filter:alpha(opacity=100);Opacity=0.1; position:absolute; width:79px;height:79px; margin:-20px 0 0 -20px} -.front-cover{ padding:0 1em 1em 0} - -/*favorite*/ -.fav dl{ margin-bottom:1.5em} -.fav dt{ margin-bottom:.5em} - -/*goods*/ -.goods-list li{ width:80px; height:80px; text-align:center; line-height:110%; margin:0 .3em 1em } -.goods-list li a:hover img { margin:-20px 0 0 -42px} -.goods-dl { max-width:55%; width:400px} -.goods-dl dd{ border-bottom:1px solid #D7ECF1; margin: 0 1em 0 0; line-height:2em} - -/*friends*/ -.frends-list li{ float:left; width:48%;height:120px; overflow:hidden; margin-left:1%} -.frends-list li a img{ padding:2px; float:left; margin-right:.5em} - -/*comment*/ -.comment dl{ display:block;clear:both;float:left;margin:.2em 0;border:1px solid #D7ECF1;width:90%;padding:.5em} -.comment dl:hover{border-color:#a7bCe1} -.comment dd{ margin:0 .8em .5em 0;padding:0; line-height:120%;} -.comment dd.comment-content{ width:90%; float:left} -.post-comment{ width:70%; margin: 0 0 1em} -.post-comment div{ margin:0 0 .5em } -.re-comment{ margin:1em 0 0; border:1px solid #D7ECF1; padding:1em} - - -/*itable*/ -.itable td,.itable th{padding:.3em .5em} -.itable td { vertical-align: middle;border-bottom: 1px solid #EEF3EE;} -.itable tr.tr1 td{ background: #F3F4EA ;} -.itable tr.tr2 td{ border-bottom : 1px solid #F3F4EA ; } -.itable .ip { border:#CED4BE } -.itable td img {border:0;padding:0;background:none} - -/*pages*/ -.pages { margin-top:10px; margin-bottom:10px; text-align: center;clear:both } -.pages * { vertical-align: middle;} -.pages a{padding:1px 4px 2px ; background:#f9fcff; border:1px solid #ADD2E1; margin:0 1px; color: #002F79; text-align: center; text-decoration: none; font:normal 10px Tahoma ; } -.pages a:hover { border:#37A717 1px solid; background:#EDFFE4; text-decoration:none; color: #002F79} -.pages input { border:1px solid #ccc; height: 14px; font: 9px Tahoma; padding-top:1px;text-align: center; } -.pages b { padding:2px ; margin: 0 3px;font:bold 10px/12px Tahoma} - -/*menu*/ -.menu{position:absolute;background:#fff;border:1px solid $tablecolor; } -.menu td, .menu li,.menu ul{background:#fff;padding:0; margin:0} -.menu li{list-style:none;} -.menu a{display:block;padding:3px 15px 3px 15px;background:#fff;} -.menu a:hover{background:$linkcolor;text-decoration:none;color:#fff;} -.menu ul.ul1 li a{display:inline;padding:0} - -.listPic dl{ width:24.5%; float:left; text-align:center; padding:0; margin:.5em 0} -.listPic dt a{ color:#333} -.listPic dd{ padding:0 0 .5em 0; margin:0; text-indent:0; height:90px; vertical-align:middle} -.listPic dd img{ width:85px;height:85px; padding:2px; border:1px solid #eee;} - -.listPic1 dl{ width:33%; float:left; text-align:center; padding:0; margin:.5em 0} -.listPic1 dt a{ color:#333} -.listPic1 dd{ padding:0 0 .5em 0; margin:0; text-indent:0; height:55px; vertical-align:middle} -.listPic1 dd img{ width:50px;height:50px; padding:2px; border:1px solid #eee;} -.listPic-albumn dd { height:105px;} -.listPic-albumn dd img { width:90px; height:90px; padding:4px 4px 8px; border:0; background:url(theme/default/images/albumn-bg.gif)} - - -.moduleA{ margin:.2em; border:1px solid #A6CBE7; line-height:110%; border-bottom-color:#66A0CC; border-right-color:#66A0CC;} -.moduleA h3{ color: #0066FF;padding:.5em; margin:0;font-family:Tahoma;font-size:12px;cursor:move } -.tableA { table-layout:fixed} -.tableAtd{ border:1px solid #D4E8F7;height:50px;} -.editButton{ float:right; font:12px/120% Tahoma; color:#CCC; text-decoration:none ; padding-left:0.5em; background:url($imgpath/button_edit.gif) no-repeat 0 .1em} -.editButton:hover{ background-position:.1em .2em} -.editBox{ background:#FFFFCF; margin:0 .2em .2em ; padding:.2em } -.editArea {border:1px solid #eee; width:96%; margin:auto;padding:.2em; background:#fff} -.menu1{position:absolute;border:1px solid #CCCCCC;background:#FFFFFF;z-index:1000;width:200px;height:255px;overflow-Y:auto} -.menu1 h3{background:$headcolor;text-align:left;color:$headfontone;padding:5px 7px 3px 7px;cursor:move} -.menu1 div{padding:5px 10px;} -.checkon{border:1px solid #0A9800;background:#CAFFC0;cursor:move} -.move{position:absolute;} - -#colorbox{width:91px;height:78px;padding:3px 0 0 3px;overflow:hidden;} -#colorbox div{cursor:pointer;width:8px;height:8px;float:left;margin:0 3px 3px 0;border:1px #000 solid;font:0/8px arial} - -.smile{ height:23px;padding:7px 0 0 8px;text-align:left;background:#E0F0F9 url(theme/default/images/th1.png);cursor:move} -.smile div{ width:56px;height:18px;text-align:center;padding:5px 0 0;cursor:pointer;} -.smile div.lian{ background:#ffffff url(theme/default/images/tag.jpg) no-repeat;cursor:auto;} - -.user-info{ position:absolute;line-height:160%; margin-left:-1.5em; margin-top:-1em} -.user-infoWrap{background:#FFF; border:1px solid #004C7D; border-top:1px #A6CBE7 solid; border-left:1px solid #A6CBE7; padding:.5em 1em; margin-left:20px;display:block;} -.user-info .co{position:absolute; width:10px;height:20px; margin-left:-1.8em; margin-top:2em; background:url(theme/default/images/user-info-co.png)} -/*menu222*/ -.menu222{ position:absolute;background:#fffcd9;border-bottom:1px solid #e7d62b; width:100%;} -.menu222 a{padding:5px 15px 5px 15px; color:#f79305;} -.menu222 a:hover{text-decoration:none;color:#fff;} - - -/*menu_sm*/ -.menu_sm{ position:absolute;background:#fffcd9;border-bottom:1px solid #e7d62b; width:100%;} -.menu_sm a{padding:5px 15px 5px 15px; color:#f79305;} -.menu_sm a:hover{text-decoration:none;color:#fff;} - -@media screen and (min-width:0px){ -.goods-list li a:hover img { margin:-20px -20px 0 0} -} \ No newline at end of file diff --git a/src/member/space/flower/images/tag.jpg b/src/member/space/flower/images/tag.jpg deleted file mode 100755 index 0f2984d3..00000000 Binary files a/src/member/space/flower/images/tag.jpg and /dev/null differ diff --git a/src/member/space/flower/images/tag1.jpg b/src/member/space/flower/images/tag1.jpg deleted file mode 100755 index 0f2984d3..00000000 Binary files a/src/member/space/flower/images/tag1.jpg and /dev/null differ diff --git a/src/member/space/flower/images/talk.gif b/src/member/space/flower/images/talk.gif deleted file mode 100755 index e23c73ee..00000000 Binary files a/src/member/space/flower/images/talk.gif and /dev/null differ diff --git a/src/member/space/flower/images/team.gif b/src/member/space/flower/images/team.gif deleted file mode 100755 index 53a54c85..00000000 Binary files a/src/member/space/flower/images/team.gif and /dev/null differ diff --git a/src/member/space/flower/images/tips-close.png b/src/member/space/flower/images/tips-close.png deleted file mode 100755 index 17bfe5a3..00000000 Binary files a/src/member/space/flower/images/tips-close.png and /dev/null differ diff --git a/src/member/space/flower/images/txt.gif b/src/member/space/flower/images/txt.gif deleted file mode 100755 index 735d6177..00000000 Binary files a/src/member/space/flower/images/txt.gif and /dev/null differ diff --git a/src/member/space/flower/images/user-info-co.png b/src/member/space/flower/images/user-info-co.png deleted file mode 100755 index fe1cd88d..00000000 Binary files a/src/member/space/flower/images/user-info-co.png and /dev/null differ diff --git a/src/member/space/flower/images/wap.png b/src/member/space/flower/images/wap.png deleted file mode 100755 index 37779fa4..00000000 Binary files a/src/member/space/flower/images/wap.png and /dev/null differ diff --git a/src/member/space/flower/images/write.gif b/src/member/space/flower/images/write.gif deleted file mode 100755 index 698cb2a0..00000000 Binary files a/src/member/space/flower/images/write.gif and /dev/null differ diff --git a/src/member/space/flower/images/zip.gif b/src/member/space/flower/images/zip.gif deleted file mode 100755 index dc3d9cea..00000000 Binary files a/src/member/space/flower/images/zip.gif and /dev/null differ diff --git a/src/member/space/flower/index.htm b/src/member/space/flower/index.htm deleted file mode 100755 index 033a9373..00000000 --- a/src/member/space/flower/index.htm +++ /dev/null @@ -1,67 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_news.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

-最新日志文章列表 -发表日志 -

- -{dede:spacenewart row=6 titlelen=60 infolen=200} - -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#", $fields['litpic']) } - - {/dede:if} - {dede:field.description/} -

-
-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:spacenewart} -
- -
- -
-
- - -{dede:include file='footer.htm' /} diff --git a/src/member/space/flower/info.txt b/src/member/space/flower/info.txt deleted file mode 100755 index 41722fa1..00000000 --- a/src/member/space/flower/info.txt +++ /dev/null @@ -1,4 +0,0 @@ -name:花 -author:ylj798 PW修改版 -type:个人 -date:2009年7月 \ No newline at end of file diff --git a/src/member/space/flower/infos.htm b/src/member/space/flower/infos.htm deleted file mode 100755 index 3449cf47..00000000 --- a/src/member/space/flower/infos.htm +++ /dev/null @@ -1,59 +0,0 @@ -{dede:include file='header.htm'/} - - - - -
- {dede:include file='side_icon.htm'/} -
- - -
-
-

基本资料

- -
- - - - -
- 昵称:
- 性别:
- 生日:
- 所在城市: - -
- 交友宣言:
-
-
-
- -

联系方式

- -
- - - - -
- Email:
- QQ:
- MSN:
-
-
-
- -
-
- -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/flower/listalbum.htm b/src/member/space/flower/listalbum.htm deleted file mode 100755 index 88b23dae..00000000 --- a/src/member/space/flower/listalbum.htm +++ /dev/null @@ -1,37 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

相册列表

- -
- - - - -
-
- {dede:datalist titlelen = '20'} -
-
-
{dede:field.title/}
-
- {/dede:datalist} -
-
-
-
-
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/flower/listarchives.htm b/src/member/space/flower/listarchives.htm deleted file mode 100755 index 0455dd02..00000000 --- a/src/member/space/flower/listarchives.htm +++ /dev/null @@ -1,60 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

文档列表

- -{dede:datalist} - -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#", $fields['litpic']) } - - {/dede:if} - {dede:field.description /} -

-

<<详细内容 -

-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:datalist} -
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm' /} \ No newline at end of file diff --git a/src/member/space/flower/listarticle.htm b/src/member/space/flower/listarticle.htm deleted file mode 100755 index e60b4e31..00000000 --- a/src/member/space/flower/listarticle.htm +++ /dev/null @@ -1,57 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

日志文章列表 -发表日志 -

- -{dede:datalist} -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#", $fields['litpic']) } - - {/dede:if} - {dede:field.body function='cn_substr(@me, 500); /} -

-

<<详细内容 -

-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:datalist} -
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm' /} \ No newline at end of file diff --git a/src/member/space/flower/side_class.htm b/src/member/space/flower/side_class.htm deleted file mode 100755 index 7a162db6..00000000 --- a/src/member/space/flower/side_class.htm +++ /dev/null @@ -1,42 +0,0 @@ -= 0) -{ - $channelAdd = ''; - if($channelid > 2) $channelAdd = '&channelid='.$channelid; -?> - -
-

日志分类

-
    - 0) - { - foreach ($mtypearr as $mty) - { - if(!empty($channelid) && $mty['channelid'] != $channelid) continue; - echo "
  • {$mty['mtypename']}
  • \r\n"; - } - } - ?> -
  • 所有文档>>
  • -
-
- - \ No newline at end of file diff --git a/src/member/space/flower/side_icon.htm b/src/member/space/flower/side_icon.htm deleted file mode 100755 index 90dd3419..00000000 --- a/src/member/space/flower/side_icon.htm +++ /dev/null @@ -1,36 +0,0 @@ - -
-

博主资料

-
-
-
- -
- {dede:if $_vars['face']=='' } - nopic - {else} - {dede:var.uname/} - {/dede:if} -
-
-
{dede:var.msg /}
-
-
- 留言 | - 短消息 | - 加好友 | - 加黑名单 - -
-
 用户昵称:{dede:var.uname /}
-
 最后登录:{dede:var.logintime function="MyDate('y-m-d h:i',@me)" /}
-
 会员等级:{dede:var.membername/}
-
 会员积分:{dede:var.scores/} 分
-
 空间访问:{dede:var.homecount/} 次
-
-
-
-
- - - diff --git a/src/member/space/flower/side_news.htm b/src/member/space/flower/side_news.htm deleted file mode 100755 index 59690bd8..00000000 --- a/src/member/space/flower/side_news.htm +++ /dev/null @@ -1,8 +0,0 @@ - - - diff --git a/src/member/space/flower/side_search.htm b/src/member/space/flower/side_search.htm deleted file mode 100755 index 9f038c3f..00000000 --- a/src/member/space/flower/side_search.htm +++ /dev/null @@ -1,14 +0,0 @@ - - - diff --git a/src/member/space/flower/side_visitor.htm b/src/member/space/flower/side_visitor.htm deleted file mode 100755 index 5b27769b..00000000 --- a/src/member/space/flower/side_visitor.htm +++ /dev/null @@ -1,11 +0,0 @@ - - \ No newline at end of file diff --git a/src/member/space/gray/blog.htm b/src/member/space/gray/blog.htm deleted file mode 100755 index fe202c48..00000000 --- a/src/member/space/gray/blog.htm +++ /dev/null @@ -1,116 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

日志文章

-
- - -
-
{dede:global.arcrow[pubdate] function="MyDate('y-m-d h:i',@me)" /}
-

- {dede:global.arcrow[title] /} -

- - - - -
-

{dede:global.arcrow[body] /}

-
-
- - -
-0) { ?> -
一共有 条评论
- -
-
- -
-
- - - - Says: -
-
- -
- -
- -
-
-
-
- -
-
-
发表评论
-
-
- - - - - {dede:var.uname /}: -
-
- -
-
-
- 表情: -
    -
  • -
  • -
  • -
  • -
  • -
  • -
  • -
-
- - - - - - - - -
验证码: 匿名评论
- -
-
-
- - -
-
- - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/gray/demo.png b/src/member/space/gray/demo.png deleted file mode 100755 index ffc8615f..00000000 Binary files a/src/member/space/gray/demo.png and /dev/null differ diff --git a/src/member/space/gray/footer.htm b/src/member/space/gray/footer.htm deleted file mode 100755 index 5447359b..00000000 --- a/src/member/space/gray/footer.htm +++ /dev/null @@ -1,8 +0,0 @@ -
-
- -
- - \ No newline at end of file diff --git a/src/member/space/gray/guestbook.htm b/src/member/space/gray/guestbook.htm deleted file mode 100755 index 3604d0e6..00000000 --- a/src/member/space/gray/guestbook.htm +++ /dev/null @@ -1,82 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm' /} - {dede:include file='side_news.htm' /} - {dede:include file='side_visitor.htm' /} -
- - -
-
-

留言列表

- -
- -
-
- {dede:datalist} - -
-
- '; - }else{ - echo ''.$fields['uname'].'的头像'; - } ?> -
-
- {dede:field.uname/} - {dede:field.dtime function="MyDate('Y-m-d H:i',@me)" /} -
-
-
{dede:field.msg function="Text2Html(@me)" /}
- -
- -
-
-
- {/dede:datalist} -
{dede:pagelist/}
-
-
发表留言
-
-
- {dede:var.uname /}: - - - - -
-
标题:
-
- - -
- -
- - - - - - - -
验证码: 
-
- -
-
- -
- -
- - - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/gray/header.htm b/src/member/space/gray/header.htm deleted file mode 100755 index 34b97b24..00000000 --- a/src/member/space/gray/header.htm +++ /dev/null @@ -1,48 +0,0 @@ - - - - -{dede:var.spacename /} {dede:var.curtitle /} - - - - -
-
- - -
- \ No newline at end of file diff --git a/src/member/space/gray/images/addto.gif b/src/member/space/gray/images/addto.gif deleted file mode 100755 index cbfedc52..00000000 Binary files a/src/member/space/gray/images/addto.gif and /dev/null differ diff --git a/src/member/space/gray/images/albumn-bg.gif b/src/member/space/gray/images/albumn-bg.gif deleted file mode 100755 index 98e11622..00000000 Binary files a/src/member/space/gray/images/albumn-bg.gif and /dev/null differ diff --git a/src/member/space/gray/images/bgm.gif b/src/member/space/gray/images/bgm.gif deleted file mode 100755 index ee1b9cb6..00000000 Binary files a/src/member/space/gray/images/bgm.gif and /dev/null differ diff --git a/src/member/space/gray/images/bodybg.jpg b/src/member/space/gray/images/bodybg.jpg deleted file mode 100755 index 5daea5bd..00000000 Binary files a/src/member/space/gray/images/bodybg.jpg and /dev/null differ diff --git a/src/member/space/gray/images/bodybg2.jpg b/src/member/space/gray/images/bodybg2.jpg deleted file mode 100755 index a7a45e50..00000000 Binary files a/src/member/space/gray/images/bodybg2.jpg and /dev/null differ diff --git a/src/member/space/gray/images/close.jpg b/src/member/space/gray/images/close.jpg deleted file mode 100755 index ce11ae5e..00000000 Binary files a/src/member/space/gray/images/close.jpg and /dev/null differ diff --git a/src/member/space/gray/images/del.png b/src/member/space/gray/images/del.png deleted file mode 100755 index b407245a..00000000 Binary files a/src/member/space/gray/images/del.png and /dev/null differ diff --git a/src/member/space/gray/images/h.jpg b/src/member/space/gray/images/h.jpg deleted file mode 100755 index 012a6e9e..00000000 Binary files a/src/member/space/gray/images/h.jpg and /dev/null differ diff --git a/src/member/space/gray/images/jian.png b/src/member/space/gray/images/jian.png deleted file mode 100755 index 241d53ec..00000000 Binary files a/src/member/space/gray/images/jian.png and /dev/null differ diff --git a/src/member/space/gray/images/message.gif b/src/member/space/gray/images/message.gif deleted file mode 100755 index b3080acd..00000000 Binary files a/src/member/space/gray/images/message.gif and /dev/null differ diff --git a/src/member/space/gray/images/rss.png b/src/member/space/gray/images/rss.png deleted file mode 100755 index 41984cd5..00000000 Binary files a/src/member/space/gray/images/rss.png and /dev/null differ diff --git a/src/member/space/gray/images/save.jpg b/src/member/space/gray/images/save.jpg deleted file mode 100755 index 086b9c92..00000000 Binary files a/src/member/space/gray/images/save.jpg and /dev/null differ diff --git a/src/member/space/gray/images/sigline.gif b/src/member/space/gray/images/sigline.gif deleted file mode 100755 index 173d91c0..00000000 Binary files a/src/member/space/gray/images/sigline.gif and /dev/null differ diff --git a/src/member/space/gray/images/style.css b/src/member/space/gray/images/style.css deleted file mode 100755 index 6a157e7f..00000000 --- a/src/member/space/gray/images/style.css +++ /dev/null @@ -1,180 +0,0 @@ -body{font-family: Geneva, Arial, Helvetica, sans-serif, serif;font-size:12px;line-height:1.5em;background:#000 url(bodybg.jpg) repeat-x ;color:#777} -h1,h2,h3,h4,h5,h6,form,body,dd,dt,dl,li,ul{padding:0;margin:0} -td,th,div{word-break:break-all;word-wrap:break-word} -img{border:0;} -.c{clear:both;height:1px;font:0px/0px Arial;overflow:hidden} -.tal,.tl{text-align:left} -.tac,.tc{text-align:center} -.tar,.tr{text-align:right} -.fr,.right{float:right} -.fl,.left{float:left} -.b{ font-weight:bold} -.tdn{ text-decoration:none} -.small{ font-size:10px;} -.big{ font-size:14px;} -.fsn{ font-size:12px} -.fn{ font-weight:normal} -.lh0{ line-height:0} -.yellow {color:#FFAE25} -.gray{ color:#1C444E} -.keep{ word-break:keep-all; word-spacing:normal} -.ip{ padding:4px 2px 3px; border:1px solid #2E2E2E; font:12px/1.1em Tahoma; background:none; color:#888} -.bt{background:url(h.jpg) 0 20%;font:bold 12px Arial; color:#AAE052;border:3px double #2E2E2E} -/*a link 基本连接颜色*/ -a{color:#4D6C80} -a:hover{color:#fff; background:#4D6C80} -a.noul{ text-decoration:none} -a.active{background:#011C2D; color:#cdd} -a.active:hover{color:#4D6C80; background:none} - -h1{ font-size:24px; padding:1em 0 0} -h2{ font-size:13px; padding:.5em .6em .6em; color:#fff; background:url(h.jpg) no-repeat 1px 0; } -h3{ font-size:14px;color:#66A5CC} -h4{ font:16px Georgia; display:inline} - -#container{ width:980px; margin:auto 0 0 1em} -#header{ height:128px; background:url(header.png) no-repeat right; margin-bottom:1em} -#title{ width:98%; height:82px; margin:auto; overflow:hidden} -#guide{height:27px;padding:0; margin:0;filter:alpha(opacity=80);Opacity=0.08;} -#guide li{ display:inline} -#guide li a{ float:left; color:#fff; text-decoration:none;display:block; font:13px/1.2em Arial; padding:.3em 1em; margin:0 1px;border:1px solid #606060;} -#guide li a:hover{ background:#001F33;text-decoration:none} -#guide li a:active{ background:#282828 } -#guide li.active a{background:#282828;color:#AAE052 } -#site-dsc{color:#B3D8E6; margin-top:.5em; font-size:14px} -#toolbar{ margin-top:1em} - -#main{ width:75.5%;} -#side{ width:23%;} -.box{ margin:0 0 .7em; width:100%; overflow:hidden; border:1px solid #2E2E2E;} -.text{ margin:.5em 1em 1em;} -#main .text { margin: 1em} -#side .list { margin:1em .5em 1.5em 2.5em;} -#side .list ul{ margin:0 0 1em 1em} -#side .list ul li{ margin:.5em 0} -#side .list li{ margin:.5em 0} -.profile-pic{margin:0 auto 1em;padding:1px;width:95%;} -.profile-pic div{ margin:0 auto 0;width:100%;padding:0;overflow:hidden;text-align:center;line-height:0} -.profile-pic div img{border:1px solid #ccc;padding:0; margin:0;} -.profile dd{ margin:.3em 0 0; line-height:120%} - -/*#calendar */ -.calendar table{ width:98%; margin:0 auto 1em; table-layout:fixed} -.calendar table td{ height: 15px;font:11px/150% Tahoma;text-align:center;} -.calendar table th{ text-align: center} -.calendar table td a{color:#fff;font:11px/12px Arial;background:#4D6C80;padding:0px 3px 2px} -.calendar table td a:hover{background:#015C88;text-decoration:none} - -/*blog*/ - -.blog-content{ margin:2em 0; table-layout:fixed; width:100%; vertical-align:top} -.blog-content td{ font-size:13px; line-height:1.5em;overflow:hidden} -.blog-content td img { padding:5px; border:1px solid #1A3E4A; line-height:0} -.blog-content td a:hover img { border-color:#107B8B; background:#000} -.bb{ border-bottom:1px solid #2C2C2C ; padding:0 0 .6em; margin:0 0 .3em; line-height:2em;} - -#footer{ margin-top:2em; border-top:1px solid #2C2C2C ; padding:.5em} -#footer ul,#footer li { display:inline; list-style:none ; margin:0 0 0 1em} - -/*photos-album*/ -.pic-list li{ height:50px; width:50px; list-style:none; float:left} -.pic-list li a img{padding:2px; width:40px; height:40px} -.pic-list li a:hover img {position:absolute; width:79px;height:79px; margin:-20px 0 0 -20px} -.front-cover{ padding:0 1em 1em 0} - -/*favorite*/ -.fav dl{ margin-bottom:1.5em} -.fav dt{ margin-bottom:.5em} - -/*goods*/ -.goods-list li{ width:80px; height:80px; text-align:center; line-height:110%; margin:0 .3em 1em } -.goods-list li a:hover img { margin:-20px 0 0 -42px} -.goods-dl { max-width:55%; width:400px} -.goods-dl dd{ border-bottom:1px solid #2C2C2C; margin: 0 1em 0 0; line-height:2em} - - -/*friends*/ -.frends-list li{ float:left; width:48%;height:120px; overflow:hidden; margin-left:1%} -.frends-list li a img{ padding:2px; float:left; margin-right:.5em} - -/*comment*/ -.comment dl{ display:block;clear:both;float:left;margin:.2em 0;border:1px solid #2E2E2E;width:90%;padding:.5em} -.comment dl:hover{border-color: #4E4E4E} -.comment dd{ margin:0 .5em .8em 0; padding:0; line-height:120%;} -.comment dd.comment-content{ width:80%; display:block;float:left} -.post-comment{ width:70%; margin: 0 0 1em} -.post-comment div{ margin:0 0 .5em } -.re-comment{ margin:1em 0 0; border:1px solid #2E2E2E ; padding:1em} -.re-comment b{ color:#1C444E} -.re-comment div{ margin-top:1em;} - - -/*itable*/ -.itable td,.itable th{padding:.3em .5em} -.itable td { vertical-align: middle; border-bottom: 1px solid #2E2E2E;} -.itable tr.tr1 td{ background: #2E2E2E ;} -.itable tr.tr2 td{ border-bottom : 1px solid #2E2E2E ; } -.itable td img {border:0;padding:0;background:none} - -/*pages*/ -.pages { margin-top:10px; margin-bottom:10px; text-align: center;clear:both } -.pages * { vertical-align: middle;} -.pages a{padding:1px 4px 2px;border:1px solid #2C2C2C;margin:0 1px;text-align: center;text-decoration: none; font:normal 10px Tahoma ; } -.pages a:hover { border:#fff 1px solid;text-decoration:none;} -.pages input { border:1px solid #2C2C2C; background:none;height:14px; font: 9px Tahoma; padding-top:1px;text-align: center; } -.pages b { padding:2px ; margin: 0 3px;font:bold 10px/12px Tahoma} - -/*menu*/ -.menu{position:absolute;background:#fff;border:1px solid $tablecolor;} -.menu td, .menu li,.menu ul{background:#fff;padding:0; margin:0} -.menu li{list-style:none;} -.menu a{display:block;padding:3px 15px 3px 15px;background:#fff;} -.menu a:hover{background:$linkcolor;text-decoration:none;color:#fff;} -.menu ul.ul1 li a{display:inline;padding:0} - -.listPic dl{ width:24.5%; float:left; text-align:center; padding:0; margin:.5em 0} -.listPic dt a{ color:#333} -.listPic dd{ padding:0 0 .5em 0; margin:0; text-indent:0; height:90px; vertical-align:middle} -.listPic dd img{ width:85px;height:85px; padding:2px; border:1px solid #eee;} - -.listPic1 dl{ width:33%; float:left; text-align:center; padding:0; margin:.5em 0} -.listPic1 dt a{ color:#333} -.listPic1 dd{ padding:0 0 .5em 0; margin:0; text-indent:0; height:55px; vertical-align:middle} -.listPic1 dd img{ width:50px;height:50px; padding:2px; border:1px solid #eee;} -.listPic-albumn dd { height:105px;} -.listPic-albumn dd img { width:90px; height:90px; padding:4px 4px 8px; border:0; background:url(albumn-bg.gif)} - - -.moduleA{ margin:.2em; border:1px solid #A6CBE7; line-height:110%; border-bottom-color:#66A0CC; border-right-color:#66A0CC;} -.moduleA h3{ color: #0066FF;padding:.5em; margin:0;font-family:Tahoma;font-size:12px;cursor:move } -.tableA { table-layout:fixed} -.tableAtd{ border:1px solid #D4E8F7;height:50px;} -.editButton{ float:right; font:12px/120% Tahoma; color:#CCC; text-decoration:none ; padding-left:0.5em; background:url($imgpath/button_edit.gif) no-repeat 0 .1em} -.editButton:hover{ background-position:.1em .2em} -.editBox{ background:#FFFFCF; margin:0 .2em .2em ; padding:.2em } -.editArea {border:1px solid #eee; width:96%; margin:auto;padding:.2em; background:#fff} -.menu1{position:absolute;border:1px solid #CCCCCC;background:#FFFFFF;z-index:1000;width:200px;height:255px;overflow-Y:auto} -.menu1 h3{background:$headcolor;text-align:left;color:$headfontone;padding:5px 7px 3px 7px;cursor:move} -.menu1 div{padding:5px 10px;} -.checkon{border:1px solid #0A9800;background:#CAFFC0;cursor:move} -.move{position:absolute;} - -#colorbox{width:91px;height:78px;padding:3px 0 0 3px;overflow:hidden;} -#colorbox div{cursor:pointer;width:8px;height:8px;float:left;margin:0 3px 3px 0;border:1px #000 solid;font:0/8px arial} - -.smile{ height:23px;padding:7px 0 0 8px;text-align:left;background:#E0F0F9 url(th1.png);cursor:move} -.smile div{ width:56px;height:18px;text-align:center;padding:5px 0 0;cursor:pointer;} -.smile div.lian{ background:#ffffff url(tag.jpg) no-repeat;cursor:auto;} - -.user-info{ position:absolute;line-height:160%; margin-left:-1.5em; margin-top:-1em} -.user-infoWrap{background:#FFF; border:1px solid #004C7D; border-top:1px #A6CBE7 solid; border-left:1px solid #A6CBE7; padding:.5em 1em; margin-left:20px;display:block;} -.user-info .co{position:absolute; width:10px;height:20px; margin-left:-1.8em; margin-top:2em; background:url(user-info-co.png)} - -/*menu_sm*/ -.menu_sm{ position:absolute;background:#fffcd9;border-bottom:1px solid #e7d62b; width:100%;} -.menu_sm a{padding:5px 15px 5px 15px; color:#f79305;} -.menu_sm a:hover{text-decoration:none;color:#fff;} - -@media screen and (min-width:0px){ -.goods-list li a:hover img { margin:-20px -20px 0 0} -} diff --git a/src/member/space/gray/images/tag.jpg b/src/member/space/gray/images/tag.jpg deleted file mode 100755 index 0f2984d3..00000000 Binary files a/src/member/space/gray/images/tag.jpg and /dev/null differ diff --git a/src/member/space/gray/images/tag1.jpg b/src/member/space/gray/images/tag1.jpg deleted file mode 100755 index 0f2984d3..00000000 Binary files a/src/member/space/gray/images/tag1.jpg and /dev/null differ diff --git a/src/member/space/gray/images/talk.gif b/src/member/space/gray/images/talk.gif deleted file mode 100755 index e23c73ee..00000000 Binary files a/src/member/space/gray/images/talk.gif and /dev/null differ diff --git a/src/member/space/gray/images/team.gif b/src/member/space/gray/images/team.gif deleted file mode 100755 index 53a54c85..00000000 Binary files a/src/member/space/gray/images/team.gif and /dev/null differ diff --git a/src/member/space/gray/images/wap.png b/src/member/space/gray/images/wap.png deleted file mode 100755 index 37779fa4..00000000 Binary files a/src/member/space/gray/images/wap.png and /dev/null differ diff --git a/src/member/space/gray/images/write.gif b/src/member/space/gray/images/write.gif deleted file mode 100755 index 698cb2a0..00000000 Binary files a/src/member/space/gray/images/write.gif and /dev/null differ diff --git a/src/member/space/gray/index.htm b/src/member/space/gray/index.htm deleted file mode 100755 index 033a9373..00000000 --- a/src/member/space/gray/index.htm +++ /dev/null @@ -1,67 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_news.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

-最新日志文章列表 -发表日志 -

- -{dede:spacenewart row=6 titlelen=60 infolen=200} - -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#", $fields['litpic']) } - - {/dede:if} - {dede:field.description/} -

-
-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:spacenewart} -
- -
- -
-
- - -{dede:include file='footer.htm' /} diff --git a/src/member/space/gray/info.txt b/src/member/space/gray/info.txt deleted file mode 100755 index caf2df47..00000000 --- a/src/member/space/gray/info.txt +++ /dev/null @@ -1,4 +0,0 @@ -name:默认雅灰黑 -author:ylj798 PW修改版 -type:个人 -date:2009年7月 \ No newline at end of file diff --git a/src/member/space/gray/infos.htm b/src/member/space/gray/infos.htm deleted file mode 100755 index 3449cf47..00000000 --- a/src/member/space/gray/infos.htm +++ /dev/null @@ -1,59 +0,0 @@ -{dede:include file='header.htm'/} - - - - -
- {dede:include file='side_icon.htm'/} -
- - -
-
-

基本资料

- -
- - - - -
- 昵称:
- 性别:
- 生日:
- 所在城市: - -
- 交友宣言:
-
-
-
- -

联系方式

- -
- - - - -
- Email:
- QQ:
- MSN:
-
-
-
- -
-
- -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/gray/listalbum.htm b/src/member/space/gray/listalbum.htm deleted file mode 100755 index 88b23dae..00000000 --- a/src/member/space/gray/listalbum.htm +++ /dev/null @@ -1,37 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

相册列表

- -
- - - - -
-
- {dede:datalist titlelen = '20'} -
-
-
{dede:field.title/}
-
- {/dede:datalist} -
-
-
-
-
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/gray/listarchives.htm b/src/member/space/gray/listarchives.htm deleted file mode 100755 index 0455dd02..00000000 --- a/src/member/space/gray/listarchives.htm +++ /dev/null @@ -1,60 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

文档列表

- -{dede:datalist} - -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#", $fields['litpic']) } - - {/dede:if} - {dede:field.description /} -

-

<<详细内容 -

-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:datalist} -
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm' /} \ No newline at end of file diff --git a/src/member/space/gray/listarticle.htm b/src/member/space/gray/listarticle.htm deleted file mode 100755 index e60b4e31..00000000 --- a/src/member/space/gray/listarticle.htm +++ /dev/null @@ -1,57 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

日志文章列表 -发表日志 -

- -{dede:datalist} -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#", $fields['litpic']) } - - {/dede:if} - {dede:field.body function='cn_substr(@me, 500); /} -

-

<<详细内容 -

-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:datalist} -
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm' /} \ No newline at end of file diff --git a/src/member/space/gray/side_class.htm b/src/member/space/gray/side_class.htm deleted file mode 100755 index 7a162db6..00000000 --- a/src/member/space/gray/side_class.htm +++ /dev/null @@ -1,42 +0,0 @@ -= 0) -{ - $channelAdd = ''; - if($channelid > 2) $channelAdd = '&channelid='.$channelid; -?> - -
-

日志分类

-
    - 0) - { - foreach ($mtypearr as $mty) - { - if(!empty($channelid) && $mty['channelid'] != $channelid) continue; - echo "
  • {$mty['mtypename']}
  • \r\n"; - } - } - ?> -
  • 所有文档>>
  • -
-
- - \ No newline at end of file diff --git a/src/member/space/gray/side_icon.htm b/src/member/space/gray/side_icon.htm deleted file mode 100755 index 90dd3419..00000000 --- a/src/member/space/gray/side_icon.htm +++ /dev/null @@ -1,36 +0,0 @@ - -
-

博主资料

-
-
-
- -
- {dede:if $_vars['face']=='' } - nopic - {else} - {dede:var.uname/} - {/dede:if} -
-
-
{dede:var.msg /}
-
-
- 留言 | - 短消息 | - 加好友 | - 加黑名单 - -
-
 用户昵称:{dede:var.uname /}
-
 最后登录:{dede:var.logintime function="MyDate('y-m-d h:i',@me)" /}
-
 会员等级:{dede:var.membername/}
-
 会员积分:{dede:var.scores/} 分
-
 空间访问:{dede:var.homecount/} 次
-
-
-
-
- - - diff --git a/src/member/space/gray/side_news.htm b/src/member/space/gray/side_news.htm deleted file mode 100755 index 59690bd8..00000000 --- a/src/member/space/gray/side_news.htm +++ /dev/null @@ -1,8 +0,0 @@ - - - diff --git a/src/member/space/gray/side_search.htm b/src/member/space/gray/side_search.htm deleted file mode 100755 index 9f038c3f..00000000 --- a/src/member/space/gray/side_search.htm +++ /dev/null @@ -1,14 +0,0 @@ - - - diff --git a/src/member/space/gray/side_visitor.htm b/src/member/space/gray/side_visitor.htm deleted file mode 100755 index 5b27769b..00000000 --- a/src/member/space/gray/side_visitor.htm +++ /dev/null @@ -1,11 +0,0 @@ - - \ No newline at end of file diff --git a/src/member/space/lxblog/blog.htm b/src/member/space/lxblog/blog.htm deleted file mode 100755 index fe202c48..00000000 --- a/src/member/space/lxblog/blog.htm +++ /dev/null @@ -1,116 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

日志文章

-
- - -
-
{dede:global.arcrow[pubdate] function="MyDate('y-m-d h:i',@me)" /}
-

- {dede:global.arcrow[title] /} -

- - - - -
-

{dede:global.arcrow[body] /}

-
-
- - -
-0) { ?> -
一共有 条评论
- -
-
- -
-
- - - - Says: -
-
- -
- -
- -
-
-
-
- -
-
-
发表评论
-
-
- - - - - {dede:var.uname /}: -
-
- -
-
-
- 表情: -
    -
  • -
  • -
  • -
  • -
  • -
  • -
  • -
-
- - - - - - - - -
验证码: 匿名评论
- -
-
-
- - -
-
- - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/lxblog/demo.png b/src/member/space/lxblog/demo.png deleted file mode 100755 index 0ff129db..00000000 Binary files a/src/member/space/lxblog/demo.png and /dev/null differ diff --git a/src/member/space/lxblog/footer.htm b/src/member/space/lxblog/footer.htm deleted file mode 100755 index 5447359b..00000000 --- a/src/member/space/lxblog/footer.htm +++ /dev/null @@ -1,8 +0,0 @@ -
-
- -
- - \ No newline at end of file diff --git a/src/member/space/lxblog/guestbook.htm b/src/member/space/lxblog/guestbook.htm deleted file mode 100755 index 3604d0e6..00000000 --- a/src/member/space/lxblog/guestbook.htm +++ /dev/null @@ -1,82 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm' /} - {dede:include file='side_news.htm' /} - {dede:include file='side_visitor.htm' /} -
- - -
-
-

留言列表

- -
- -
-
- {dede:datalist} - -
-
- '; - }else{ - echo ''.$fields['uname'].'的头像'; - } ?> -
-
- {dede:field.uname/} - {dede:field.dtime function="MyDate('Y-m-d H:i',@me)" /} -
-
-
{dede:field.msg function="Text2Html(@me)" /}
- -
- -
-
-
- {/dede:datalist} -
{dede:pagelist/}
-
-
发表留言
-
-
- {dede:var.uname /}: - - - - -
-
标题:
-
- - -
- -
- - - - - - - -
验证码: 
-
- -
-
- -
- -
- - - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/lxblog/header.htm b/src/member/space/lxblog/header.htm deleted file mode 100755 index ede5c89f..00000000 --- a/src/member/space/lxblog/header.htm +++ /dev/null @@ -1,48 +0,0 @@ - - - - -{dede:var.spacename /} {dede:var.curtitle /} - - - - -
-
- - -
- \ No newline at end of file diff --git a/src/member/space/lxblog/images/addto.gif b/src/member/space/lxblog/images/addto.gif deleted file mode 100755 index cbfedc52..00000000 Binary files a/src/member/space/lxblog/images/addto.gif and /dev/null differ diff --git a/src/member/space/lxblog/images/albumn-bg.gif b/src/member/space/lxblog/images/albumn-bg.gif deleted file mode 100755 index 98e11622..00000000 Binary files a/src/member/space/lxblog/images/albumn-bg.gif and /dev/null differ diff --git a/src/member/space/lxblog/images/bgm.gif b/src/member/space/lxblog/images/bgm.gif deleted file mode 100755 index ee1b9cb6..00000000 Binary files a/src/member/space/lxblog/images/bgm.gif and /dev/null differ diff --git a/src/member/space/lxblog/images/bodybg.png b/src/member/space/lxblog/images/bodybg.png deleted file mode 100755 index 2e47c2b6..00000000 Binary files a/src/member/space/lxblog/images/bodybg.png and /dev/null differ diff --git a/src/member/space/lxblog/images/close.jpg b/src/member/space/lxblog/images/close.jpg deleted file mode 100755 index ce11ae5e..00000000 Binary files a/src/member/space/lxblog/images/close.jpg and /dev/null differ diff --git a/src/member/space/lxblog/images/del.png b/src/member/space/lxblog/images/del.png deleted file mode 100755 index b407245a..00000000 Binary files a/src/member/space/lxblog/images/del.png and /dev/null differ diff --git a/src/member/space/lxblog/images/download.gif b/src/member/space/lxblog/images/download.gif deleted file mode 100755 index 0d897564..00000000 Binary files a/src/member/space/lxblog/images/download.gif and /dev/null differ diff --git a/src/member/space/lxblog/images/h.png b/src/member/space/lxblog/images/h.png deleted file mode 100755 index 9c14aa12..00000000 Binary files a/src/member/space/lxblog/images/h.png and /dev/null differ diff --git a/src/member/space/lxblog/images/header.png b/src/member/space/lxblog/images/header.png deleted file mode 100755 index 9c5dd92f..00000000 Binary files a/src/member/space/lxblog/images/header.png and /dev/null differ diff --git a/src/member/space/lxblog/images/img.gif b/src/member/space/lxblog/images/img.gif deleted file mode 100755 index c08d5240..00000000 Binary files a/src/member/space/lxblog/images/img.gif and /dev/null differ diff --git a/src/member/space/lxblog/images/jian.png b/src/member/space/lxblog/images/jian.png deleted file mode 100755 index 241d53ec..00000000 Binary files a/src/member/space/lxblog/images/jian.png and /dev/null differ diff --git a/src/member/space/lxblog/images/listen.gif b/src/member/space/lxblog/images/listen.gif deleted file mode 100755 index d62fb94e..00000000 Binary files a/src/member/space/lxblog/images/listen.gif and /dev/null differ diff --git a/src/member/space/lxblog/images/message.gif b/src/member/space/lxblog/images/message.gif deleted file mode 100755 index b3080acd..00000000 Binary files a/src/member/space/lxblog/images/message.gif and /dev/null differ diff --git a/src/member/space/lxblog/images/music.gif b/src/member/space/lxblog/images/music.gif deleted file mode 100755 index 540d375c..00000000 Binary files a/src/member/space/lxblog/images/music.gif and /dev/null differ diff --git a/src/member/space/lxblog/images/new-msg-tips.png b/src/member/space/lxblog/images/new-msg-tips.png deleted file mode 100755 index e31ef0f6..00000000 Binary files a/src/member/space/lxblog/images/new-msg-tips.png and /dev/null differ diff --git a/src/member/space/lxblog/images/none.gif b/src/member/space/lxblog/images/none.gif deleted file mode 100755 index cb7bb2f2..00000000 Binary files a/src/member/space/lxblog/images/none.gif and /dev/null differ diff --git a/src/member/space/lxblog/images/nopic.gif b/src/member/space/lxblog/images/nopic.gif deleted file mode 100755 index bfbcde27..00000000 Binary files a/src/member/space/lxblog/images/nopic.gif and /dev/null differ diff --git a/src/member/space/lxblog/images/rss.png b/src/member/space/lxblog/images/rss.png deleted file mode 100755 index 41984cd5..00000000 Binary files a/src/member/space/lxblog/images/rss.png and /dev/null differ diff --git a/src/member/space/lxblog/images/save.jpg b/src/member/space/lxblog/images/save.jpg deleted file mode 100755 index 086b9c92..00000000 Binary files a/src/member/space/lxblog/images/save.jpg and /dev/null differ diff --git a/src/member/space/lxblog/images/sigline.gif b/src/member/space/lxblog/images/sigline.gif deleted file mode 100755 index 173d91c0..00000000 Binary files a/src/member/space/lxblog/images/sigline.gif and /dev/null differ diff --git a/src/member/space/lxblog/images/style.css b/src/member/space/lxblog/images/style.css deleted file mode 100755 index f49383b4..00000000 --- a/src/member/space/lxblog/images/style.css +++ /dev/null @@ -1,179 +0,0 @@ -body{font-family: Geneva, Arial, Helvetica, sans-serif, serif;font-size:12px;line-height:1.5em;background:#fff url(bodybg.png) repeat-x;color:#333} -h1,h2,h3,h4,h5,h6,form,body,dd,dt,dl,li,ul{padding:0;margin:0} -td,th,div{word-break:break-all;word-wrap:break-word} -img{border:0; background:#fff} -.c{clear:both;height:1px;font:0px/0px Arial;overflow:hidden} -.tal,.tl{text-align:left} -.tac,.tc{text-align:center} -.tar,.tr{text-align:right} -.fr,.right{float:right} -.fl,.left{float:left} - -.b{ font-weight:bold} -.tdn{ text-decoration:none} -.small{ font-size:10px;} -.big{ font-size:14px;} -.fsn{ font-size:12px} -.fn{ font-weight:normal} -.lh0{ line-height:0} -.yellow {color:#FFC800} -.gray{ color:#CCC} -.keep{ word-break:keep-all; word-spacing:normal} -.ip{ padding:2px; border:1px solid #D7ECF1} -.bt{background:#012E53;color:#FFC800;font-size:12px;} - -/*a link 基本连接颜色*/ -a{color:#3D7DB3} -a:hover{color:#fff; background:#3D7DB3} -a.noul{ text-decoration:none} -a.active{background:#3D7DB3; color:#fff} -a.active:hover{color:#3D7DB3; background:none} - -h1{color:#FFC800;font-size:18px; padding:.6em 0 0} -h2{ font-size:15px; padding:.5em .6em .3em; color:#3D7DB3;} -h3{ font-size:14px} -h4{ font:16px Georgia; display:inline} - -#container{ width:96%; min-width:600px; max-width:1000px;margin:auto} -#header{ height:108px; background:url(header.png) no-repeat right; margin-bottom:1em} -#title{ width:98%; height:68px; margin:auto; overflow:hidden} -#guide{height:27px;padding:0; margin:0} -#guide li{ display:inline} -#guide li a{ float:left; color:#fff; text-decoration:none;display:block; font:13px/1.2em Arial; padding:.4em 1em .3em} -#guide li a:hover{ background:#1D5A7D;text-decoration:none} -#guide li.active a{background:#012E53;color:#FFC800 } -#site-dsc{color:#9DCFF6} -#toolbar{ margin-top:1em} - -#main{ width:78.5%;} -#side{ width:20%;} -.box{ border:1px solid #d7ecf1; margin:0 0 .7em; width:100%; overflow:hidden;} -.text{ margin:.5em 1em 1em;} -#main .text { margin: 1em} -#side .list { margin:1em .5em 1.5em 2.5em;color:#333;} -#side .list ul{ margin:0 0 1em 1em;} -#side .list ul li{ margin:.5em 0;} -#side .list li{ margin:.5em 0;} -.profile-pic{margin:0 auto 1em;padding:1px;width:95%;} -.profile-pic div{ margin:0 auto 0;width:100%;padding:0;overflow:hidden;text-align:center;line-height:0} -.profile-pic div img{border:1px solid #ccc;padding:0; margin:0;} -.profile dd{ margin:.3em 0 0; line-height:120%} - -/*#calendar */ -.calendar table{ width:98%; margin:0 auto 1em; table-layout:fixed} -.calendar table td{ height: 15px;font:11px/150% Tahoma;text-align:center;} -.calendar table th{ text-align: center} -.calendar table td a{color:#fff;font:11px/12px Arial;background:#3D7DB3;padding:0px 3px 2px} -.calendar table td a:hover{background:#012E53;text-decoration:none} - -/*blog*/ -.blog-content{ margin:2em 0; table-layout:fixed; width:100%; vertical-align:top} -.blog-content td{ font-size:13px; line-height:1.5em;overflow:hidden} -.blog-content td img { padding:5px; border:1px solid #d7ecf1; line-height:0} -.blog-content td a:hover img { border-color:#3D7DB3} -.bb{ border-bottom:1px solid #d7ecf1; padding:0 0 .6em; margin:0 0 .3em; line-height:2em;} - -#footer{ margin-top:2em; border-top:1px solid #d7ecf1; padding:.5em} -#footer ul,#footer li { display:inline; list-style:none ; margin:0 0 0 1em} - -/*photos-album*/ -.pic-list li{ height:50px; width:50px; list-style:none; float:left} -.pic-list li a img{ filter:alpha(opacity=80);Opacity=0.08;padding:2px; width:40px; height:40px} -.pic-list li a:hover img { filter:alpha(opacity=100);Opacity=0.1; position:absolute; width:79px;height:79px; margin:-20px 0 0 -20px} -.front-cover{ padding:0 1em 1em 0} - -/*favorite*/ -.fav dl{ margin-bottom:1.5em} -.fav dt{ margin-bottom:.5em} - -/*goods*/ -.goods-list li{ width:80px; height:80px; text-align:center; line-height:110%; margin:0 .3em 1em } -.goods-list li a:hover img { margin:-20px 0 0 -42px} -.goods-dl { max-width:55%; width:400px} -.goods-dl dd{ border-bottom:1px solid #D7ECF1; margin: 0 1em 0 0; line-height:2em} - -/*friends*/ -.frends-list li{ float:left; width:48%;height:120px; overflow:hidden; margin-left:1%} -.frends-list li a img{ padding:2px; float:left; margin-right:.5em} - -/*comment*/ -.comment dl{ display:block;clear:both;float:left;margin:.2em 0;border:1px solid #D7ECF1;width:90%;padding:.5em} -.comment dl:hover{border-color:#a7bCe1} -.comment dd{ margin:0 .8em .5em 0;padding:0; line-height:120%;} -.comment dd.comment-content{ width:90%; float:left} -.post-comment{ width:70%; margin: 0 0 1em} -.post-comment div{ margin:0 0 .5em } -.re-comment{ margin:1em 0 0; border:1px solid #D7ECF1; padding:1em} - - -/*itable*/ -.itable td,.itable th{padding:.3em .5em} -.itable td { vertical-align: middle;border-bottom: 1px solid #EEF3EE;} -.itable tr.tr1 td{ background: #F3F4EA ;} -.itable tr.tr2 td{ border-bottom : 1px solid #F3F4EA ; } -.itable .ip { border:#CED4BE } -.itable td img {border:0;padding:0;background:none} - -/*pages*/ -.pages { margin-top:10px; margin-bottom:10px; text-align: center;clear:both } -.pages * { vertical-align: middle;} -.pages a{padding:1px 4px 2px ; background:#f9fcff; border:1px solid #ADD2E1; margin:0 1px; color: #002F79; text-align: center; text-decoration: none; font:normal 10px Tahoma ; } -.pages a:hover { border:#37A717 1px solid; background:#EDFFE4; text-decoration:none; color: #002F79} -.pages input { border:1px solid #ccc; height: 14px; font: 9px Tahoma; padding-top:1px;text-align: center; } -.pages b { padding:2px ; margin: 0 3px;font:bold 10px/12px Tahoma} - -/*menu*/ -.menu{position:absolute;background:#fff;border:1px solid $tablecolor;} -.menu td, .menu li,.menu ul{background:#fff;padding:0; margin:0} -.menu li{list-style:none;} -.menu a{display:block;padding:3px 15px 3px 15px;background:#fff;} -.menu a:hover{background:$linkcolor;text-decoration:none;color:#fff;} -.menu ul.ul1 li a{display:inline;padding:0} - -.listPic dl{ width:24.5%; float:left; text-align:center; padding:0; margin:.5em 0} -.listPic dt a{ color:#333} -.listPic dd{ padding:0 0 .5em 0; margin:0; text-indent:0; height:90px; vertical-align:middle} -.listPic dd img{ width:85px;height:85px; padding:2px; border:1px solid #eee;} - -.listPic1 dl{ width:33%; float:left; text-align:center; padding:0; margin:.5em 0} -.listPic1 dt a{ color:#333} -.listPic1 dd{ padding:0 0 .5em 0; margin:0; text-indent:0; height:55px; vertical-align:middle} -.listPic1 dd img{ width:50px;height:50px; padding:2px; border:1px solid #eee;} -.listPic-albumn dd { height:105px;} -.listPic-albumn dd img { width:90px; height:90px; padding:4px 4px 8px; border:0; background:url(albumn-bg.gif)} - - -.moduleA{ margin:.2em; border:1px solid #A6CBE7; line-height:110%; border-bottom-color:#66A0CC; border-right-color:#66A0CC;} -.moduleA h3{ color: #0066FF;padding:.5em; margin:0;font-family:Tahoma;font-size:12px;cursor:move } -.tableA { table-layout:fixed} -.tableAtd{ border:1px solid #D4E8F7;height:50px;} -.editButton{ float:right; font:12px/120% Tahoma; color:#CCC; text-decoration:none ; padding-left:0.5em; background:url($imgpath/button_edit.gif) no-repeat 0 .1em} -.editButton:hover{ background-position:.1em .2em} -.editBox{ background:#FFFFCF; margin:0 .2em .2em ; padding:.2em } -.editArea {border:1px solid #eee; width:96%; margin:auto;padding:.2em; background:#fff} -.menu1{position:absolute;border:1px solid #CCCCCC;background:#FFFFFF;z-index:1000;width:200px;height:255px;overflow-Y:auto} -.menu1 h3{background:$headcolor;text-align:left;color:$headfontone;padding:5px 7px 3px 7px;cursor:move} -.menu1 div{padding:5px 10px;} -.checkon{border:1px solid #0A9800;background:#CAFFC0;cursor:move} -.move{position:absolute;} - -#colorbox{width:91px;height:78px;padding:3px 0 0 3px;overflow:hidden;} -#colorbox div{cursor:pointer;width:8px;height:8px;float:left;margin:0 3px 3px 0;border:1px #000 solid;font:0/8px arial} - -.smile{ height:23px;padding:7px 0 0 8px;text-align:left;background:#E0F0F9 url(th1.png);cursor:move} -.smile div{ width:56px;height:18px;text-align:center;padding:5px 0 0;cursor:pointer;} -.smile div.lian{ background:#ffffff url(tag.jpg) no-repeat;cursor:auto;} - -.user-info{ position:absolute;line-height:160%; margin-left:-1.5em; margin-top:-1em} -.user-infoWrap{background:#FFF; border:1px solid #004C7D; border-top:1px #A6CBE7 solid; border-left:1px solid #A6CBE7; padding:.5em 1em; margin-left:20px;display:block;} -.user-info .co{position:absolute; width:10px;height:20px; margin-left:-1.8em; margin-top:2em; background:url(user-info-co.png)} - -/*menu_sm*/ -.menu_sm{ position:absolute;background:#fffcd9;border-bottom:1px solid #e7d62b; width:100%;} -.menu_sm a{padding:5px 15px 5px 15px; color:#f79305;} -.menu_sm a:hover{text-decoration:none;color:#000;background:#fffcd9;} - - -@media screen and (min-width:0px){ -.goods-list li a:hover img { margin:-20px -20px 0 0} -} \ No newline at end of file diff --git a/src/member/space/lxblog/images/tag.jpg b/src/member/space/lxblog/images/tag.jpg deleted file mode 100755 index 0f2984d3..00000000 Binary files a/src/member/space/lxblog/images/tag.jpg and /dev/null differ diff --git a/src/member/space/lxblog/images/tag1.jpg b/src/member/space/lxblog/images/tag1.jpg deleted file mode 100755 index 0f2984d3..00000000 Binary files a/src/member/space/lxblog/images/tag1.jpg and /dev/null differ diff --git a/src/member/space/lxblog/images/talk.gif b/src/member/space/lxblog/images/talk.gif deleted file mode 100755 index e23c73ee..00000000 Binary files a/src/member/space/lxblog/images/talk.gif and /dev/null differ diff --git a/src/member/space/lxblog/images/team.gif b/src/member/space/lxblog/images/team.gif deleted file mode 100755 index 53a54c85..00000000 Binary files a/src/member/space/lxblog/images/team.gif and /dev/null differ diff --git a/src/member/space/lxblog/images/tips-close.png b/src/member/space/lxblog/images/tips-close.png deleted file mode 100755 index 17bfe5a3..00000000 Binary files a/src/member/space/lxblog/images/tips-close.png and /dev/null differ diff --git a/src/member/space/lxblog/images/txt.gif b/src/member/space/lxblog/images/txt.gif deleted file mode 100755 index 735d6177..00000000 Binary files a/src/member/space/lxblog/images/txt.gif and /dev/null differ diff --git a/src/member/space/lxblog/images/user-info-co.png b/src/member/space/lxblog/images/user-info-co.png deleted file mode 100755 index fe1cd88d..00000000 Binary files a/src/member/space/lxblog/images/user-info-co.png and /dev/null differ diff --git a/src/member/space/lxblog/images/wap.png b/src/member/space/lxblog/images/wap.png deleted file mode 100755 index 37779fa4..00000000 Binary files a/src/member/space/lxblog/images/wap.png and /dev/null differ diff --git a/src/member/space/lxblog/images/write.gif b/src/member/space/lxblog/images/write.gif deleted file mode 100755 index 698cb2a0..00000000 Binary files a/src/member/space/lxblog/images/write.gif and /dev/null differ diff --git a/src/member/space/lxblog/images/zip.gif b/src/member/space/lxblog/images/zip.gif deleted file mode 100755 index dc3d9cea..00000000 Binary files a/src/member/space/lxblog/images/zip.gif and /dev/null differ diff --git a/src/member/space/lxblog/index.htm b/src/member/space/lxblog/index.htm deleted file mode 100755 index 033a9373..00000000 --- a/src/member/space/lxblog/index.htm +++ /dev/null @@ -1,67 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_news.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

-最新日志文章列表 -发表日志 -

- -{dede:spacenewart row=6 titlelen=60 infolen=200} - -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#", $fields['litpic']) } - - {/dede:if} - {dede:field.description/} -

-
-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:spacenewart} -
- -
- -
-
- - -{dede:include file='footer.htm' /} diff --git a/src/member/space/lxblog/info.txt b/src/member/space/lxblog/info.txt deleted file mode 100755 index 52eb41ac..00000000 --- a/src/member/space/lxblog/info.txt +++ /dev/null @@ -1,4 +0,0 @@ -name:lxblog默认深蓝 -author:ylj798 PW修改版 -type:个人 -date:2009年7月 \ No newline at end of file diff --git a/src/member/space/lxblog/infos.htm b/src/member/space/lxblog/infos.htm deleted file mode 100755 index 3449cf47..00000000 --- a/src/member/space/lxblog/infos.htm +++ /dev/null @@ -1,59 +0,0 @@ -{dede:include file='header.htm'/} - - - - -
- {dede:include file='side_icon.htm'/} -
- - -
-
-

基本资料

- -
- - - - -
- 昵称:
- 性别:
- 生日:
- 所在城市: - -
- 交友宣言:
-
-
-
- -

联系方式

- -
- - - - -
- Email:
- QQ:
- MSN:
-
-
-
- -
-
- -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/lxblog/listalbum.htm b/src/member/space/lxblog/listalbum.htm deleted file mode 100755 index 88b23dae..00000000 --- a/src/member/space/lxblog/listalbum.htm +++ /dev/null @@ -1,37 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

相册列表

- -
- - - - -
-
- {dede:datalist titlelen = '20'} -
-
-
{dede:field.title/}
-
- {/dede:datalist} -
-
-
-
-
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/lxblog/listarchives.htm b/src/member/space/lxblog/listarchives.htm deleted file mode 100755 index 0455dd02..00000000 --- a/src/member/space/lxblog/listarchives.htm +++ /dev/null @@ -1,60 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

文档列表

- -{dede:datalist} - -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#", $fields['litpic']) } - - {/dede:if} - {dede:field.description /} -

-

<<详细内容 -

-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:datalist} -
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm' /} \ No newline at end of file diff --git a/src/member/space/lxblog/listarticle.htm b/src/member/space/lxblog/listarticle.htm deleted file mode 100755 index e60b4e31..00000000 --- a/src/member/space/lxblog/listarticle.htm +++ /dev/null @@ -1,57 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

日志文章列表 -发表日志 -

- -{dede:datalist} -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#", $fields['litpic']) } - - {/dede:if} - {dede:field.body function='cn_substr(@me, 500); /} -

-

<<详细内容 -

-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:datalist} -
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm' /} \ No newline at end of file diff --git a/src/member/space/lxblog/side_class.htm b/src/member/space/lxblog/side_class.htm deleted file mode 100755 index 7a162db6..00000000 --- a/src/member/space/lxblog/side_class.htm +++ /dev/null @@ -1,42 +0,0 @@ -= 0) -{ - $channelAdd = ''; - if($channelid > 2) $channelAdd = '&channelid='.$channelid; -?> - -
-

日志分类

-
    - 0) - { - foreach ($mtypearr as $mty) - { - if(!empty($channelid) && $mty['channelid'] != $channelid) continue; - echo "
  • {$mty['mtypename']}
  • \r\n"; - } - } - ?> -
  • 所有文档>>
  • -
-
- - \ No newline at end of file diff --git a/src/member/space/lxblog/side_icon.htm b/src/member/space/lxblog/side_icon.htm deleted file mode 100755 index 90dd3419..00000000 --- a/src/member/space/lxblog/side_icon.htm +++ /dev/null @@ -1,36 +0,0 @@ - -
-

博主资料

-
-
-
- -
- {dede:if $_vars['face']=='' } - nopic - {else} - {dede:var.uname/} - {/dede:if} -
-
-
{dede:var.msg /}
-
-
- 留言 | - 短消息 | - 加好友 | - 加黑名单 - -
-
 用户昵称:{dede:var.uname /}
-
 最后登录:{dede:var.logintime function="MyDate('y-m-d h:i',@me)" /}
-
 会员等级:{dede:var.membername/}
-
 会员积分:{dede:var.scores/} 分
-
 空间访问:{dede:var.homecount/} 次
-
-
-
-
- - - diff --git a/src/member/space/lxblog/side_news.htm b/src/member/space/lxblog/side_news.htm deleted file mode 100755 index 59690bd8..00000000 --- a/src/member/space/lxblog/side_news.htm +++ /dev/null @@ -1,8 +0,0 @@ - - - diff --git a/src/member/space/lxblog/side_search.htm b/src/member/space/lxblog/side_search.htm deleted file mode 100755 index 9f038c3f..00000000 --- a/src/member/space/lxblog/side_search.htm +++ /dev/null @@ -1,14 +0,0 @@ - - - diff --git a/src/member/space/lxblog/side_visitor.htm b/src/member/space/lxblog/side_visitor.htm deleted file mode 100755 index 5b27769b..00000000 --- a/src/member/space/lxblog/side_visitor.htm +++ /dev/null @@ -1,11 +0,0 @@ - - \ No newline at end of file diff --git a/src/member/space/lxbrown/blog.htm b/src/member/space/lxbrown/blog.htm deleted file mode 100755 index fe202c48..00000000 --- a/src/member/space/lxbrown/blog.htm +++ /dev/null @@ -1,116 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

日志文章

-
- - -
-
{dede:global.arcrow[pubdate] function="MyDate('y-m-d h:i',@me)" /}
-

- {dede:global.arcrow[title] /} -

- - - - -
-

{dede:global.arcrow[body] /}

-
-
- - -
-0) { ?> -
一共有 条评论
- -
-
- -
-
- - - - Says: -
-
- -
- -
- -
-
-
-
- -
-
-
发表评论
-
-
- - - - - {dede:var.uname /}: -
-
- -
-
-
- 表情: -
    -
  • -
  • -
  • -
  • -
  • -
  • -
  • -
-
- - - - - - - - -
验证码: 匿名评论
- -
-
-
- - -
-
- - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/lxbrown/demo.png b/src/member/space/lxbrown/demo.png deleted file mode 100755 index 6d74eb97..00000000 Binary files a/src/member/space/lxbrown/demo.png and /dev/null differ diff --git a/src/member/space/lxbrown/footer.htm b/src/member/space/lxbrown/footer.htm deleted file mode 100755 index 5447359b..00000000 --- a/src/member/space/lxbrown/footer.htm +++ /dev/null @@ -1,8 +0,0 @@ -
-
- -
- - \ No newline at end of file diff --git a/src/member/space/lxbrown/guestbook.htm b/src/member/space/lxbrown/guestbook.htm deleted file mode 100755 index 109060dd..00000000 --- a/src/member/space/lxbrown/guestbook.htm +++ /dev/null @@ -1,83 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm' /} - {dede:include file='side_news.htm' /} - {dede:include file='side_visitor.htm' /} -
- - -
-
-

留言列表

- -
- -
-
- {dede:datalist} - -
-
- '; - }else{ - echo ''.$fields['uname'].'的头像'; - } ?> -
-
- {dede:field.uname/} - {dede:field.dtime function="MyDate('Y-m-d H:i',@me)" /} -
-
-
{dede:field.msg function="Text2Html(@me)" /}
- -
- -
-
-
- {/dede:datalist} -
{dede:pagelist/}
-
-
发表留言
-
-
- {dede:var.uname /}: - - - - -
-
标题:
-
- - -
- -
-
- - - - - - - -
验证码: 
-
- -
-
- -
- -
- - - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/lxbrown/header.htm b/src/member/space/lxbrown/header.htm deleted file mode 100755 index 2584bff1..00000000 --- a/src/member/space/lxbrown/header.htm +++ /dev/null @@ -1,48 +0,0 @@ - - - - -{dede:var.spacename /} {dede:var.curtitle /} - - - - -
-
- - -
- \ No newline at end of file diff --git a/src/member/space/lxbrown/images/addto.gif b/src/member/space/lxbrown/images/addto.gif deleted file mode 100755 index cbfedc52..00000000 Binary files a/src/member/space/lxbrown/images/addto.gif and /dev/null differ diff --git a/src/member/space/lxbrown/images/albumn-bg.gif b/src/member/space/lxbrown/images/albumn-bg.gif deleted file mode 100755 index 98e11622..00000000 Binary files a/src/member/space/lxbrown/images/albumn-bg.gif and /dev/null differ diff --git a/src/member/space/lxbrown/images/bgm.gif b/src/member/space/lxbrown/images/bgm.gif deleted file mode 100755 index ee1b9cb6..00000000 Binary files a/src/member/space/lxbrown/images/bgm.gif and /dev/null differ diff --git a/src/member/space/lxbrown/images/bodybg.png b/src/member/space/lxbrown/images/bodybg.png deleted file mode 100755 index 9dfbfa8e..00000000 Binary files a/src/member/space/lxbrown/images/bodybg.png and /dev/null differ diff --git a/src/member/space/lxbrown/images/close.jpg b/src/member/space/lxbrown/images/close.jpg deleted file mode 100755 index ce11ae5e..00000000 Binary files a/src/member/space/lxbrown/images/close.jpg and /dev/null differ diff --git a/src/member/space/lxbrown/images/del.png b/src/member/space/lxbrown/images/del.png deleted file mode 100755 index b407245a..00000000 Binary files a/src/member/space/lxbrown/images/del.png and /dev/null differ diff --git a/src/member/space/lxbrown/images/header.png b/src/member/space/lxbrown/images/header.png deleted file mode 100755 index 902223b6..00000000 Binary files a/src/member/space/lxbrown/images/header.png and /dev/null differ diff --git a/src/member/space/lxbrown/images/jian.png b/src/member/space/lxbrown/images/jian.png deleted file mode 100755 index 241d53ec..00000000 Binary files a/src/member/space/lxbrown/images/jian.png and /dev/null differ diff --git a/src/member/space/lxbrown/images/message.gif b/src/member/space/lxbrown/images/message.gif deleted file mode 100755 index b3080acd..00000000 Binary files a/src/member/space/lxbrown/images/message.gif and /dev/null differ diff --git a/src/member/space/lxbrown/images/rss.png b/src/member/space/lxbrown/images/rss.png deleted file mode 100755 index 41984cd5..00000000 Binary files a/src/member/space/lxbrown/images/rss.png and /dev/null differ diff --git a/src/member/space/lxbrown/images/save.jpg b/src/member/space/lxbrown/images/save.jpg deleted file mode 100755 index 086b9c92..00000000 Binary files a/src/member/space/lxbrown/images/save.jpg and /dev/null differ diff --git a/src/member/space/lxbrown/images/sigline.gif b/src/member/space/lxbrown/images/sigline.gif deleted file mode 100755 index 173d91c0..00000000 Binary files a/src/member/space/lxbrown/images/sigline.gif and /dev/null differ diff --git a/src/member/space/lxbrown/images/style.css b/src/member/space/lxbrown/images/style.css deleted file mode 100755 index dc2b2d4e..00000000 --- a/src/member/space/lxbrown/images/style.css +++ /dev/null @@ -1,178 +0,0 @@ -body{font-family: Geneva, Arial, Helvetica, sans-serif, serif;font-size:12px;line-height:1.5em;background:#F7EBE6 url(bodybg.png) repeat-x;color:#333} -h1,h2,h3,h4,h5,h6,form,body,dd,dt,dl,li,ul{padding:0;margin:0} -td,th,div{word-break:break-all;word-wrap:break-word} -img{border:0;background:#fff} -.c{clear:both;height:1px;font:0px/0px Arial;overflow:hidden} -.tal,.tl{text-align:left} -.tac,.tc{text-align:center} -.tar,.tr{text-align:right} -.fr,.right{float:right} -.fl,.left{float:left} -.b{ font-weight:bold} -.tdn{ text-decoration:none} -.small{ font-size:10px;} -.big{ font-size:14px;} -.fsn{ font-size:12px} -.fn{ font-weight:normal} -.lh0{ line-height:0} -.yellow {color:#fff;} -.gray{ color:#98A697} -.keep{ word-break:keep-all;word-spacing:normal} -.ip{ padding:4px 2px 3px;border:1px solid #E6C0B3;font:12px/1.1em Tahoma} -.bt{background:#F7EBE6;color:#BC694C;font-weight:bold;border:3px double #E6C0B3;font-size:12px;} -/*a link 基本连接颜色*/ -a{color:#BC694C} -a:hover{color:#fff;background:#BC694C} -a.noul{ text-decoration:none} -a.active{background:#BC694C;color:#fff} -a.active:hover{color:#BC694C;background:none} - -h1{color:#FFC800;font-size:24px;padding:.6em 0 0} -h2{ font-size:15px;padding:.5em .6em .3em;color:#994D33;} -h3{ font-size:14px} -h4{ font:16px Georgia;display:inline} - -#container{ width:96%; min-width:600px; max-width:1000px; margin:auto; } -#header{ height:108px;background:url(header.png) no-repeat right;margin-bottom:1em} -#title{ width:98%;height:68px;margin:auto;overflow:hidden} -#guide{height:27px;padding:0;margin:0} -#guide li{ display:inline} -#guide li a{ float:left;color:#fff;text-decoration:none;display:block;font:13px/1.2em Arial;padding:.4em 1em .3em} -#guide li a:hover{ background:#713430;text-decoration:none} -#guide li.active a{background:#5C2824;color:#D4F7D5 } -#site-dsc{color:#E6C0B3;margin-top:.5em;font-size:14px} -#toolbar{ margin-top:1em} - -#main{ width:78.5%;} -#side{ width:20%;} -.box{ border:1px solid #D8A796;margin:0 0 .7em;width:100%;overflow:hidden;background:#fff} -.text{ margin:.5em 1em 1em;} -#main .text{margin: 1em} -#side .list{margin:1em .5em 1.5em 2.5em;color:#333} -#side .list ul{ margin:0 0 1em 1em} -#side .list ul li{ margin:.5em 0} -#side .list li{ margin:.5em 0} -.profile-pic{margin:0 auto 1em;padding:1px;width:95%;} -.profile-pic div{ margin:0 auto 0;width:100%;padding:0;overflow:hidden;text-align:center;line-height:0} -.profile-pic div img{border:1px solid #ccc;padding:0; margin:0;} -.profile dd{ margin:.3em 0 0; line-height:120%} - -/*#calendar */ -.calendar table{ width:98%;margin:0 auto 1em;table-layout:fixed} -.calendar table td{ height: 15px;font:11px/150% Tahoma;text-align:center;} -.calendar table th{ text-align: center} -.calendar table td a{color:#fff;font:11px/12px Arial;background:#863F3C;padding:0px 3px 2px} -.calendar table td a:hover{background:#287105;text-decoration:none} - -/*blog*/ - -.blog-content{ margin:2em 0;table-layout:fixed;width:100%;vertical-align:top} -.blog-content td{ font-size:13px;line-height:1.5em;overflow:hidden} -.blog-content td img{padding:5px;border:1px solid #E6C0B3;line-height:0} -.blog-content td a:hover img{border-color:#994D33} -.bb{ border-bottom:1px solid #E6C0B3;padding:0 0 .6em;margin:0 0 .3em;line-height:2em;} - -#footer{ margin-top:2em;border-top:1px solid #E6C0B3;padding:.5em} -#footer ul,#footer li{display:inline;list-style:none ;margin:0 0 0 1em} - -/*photos-album*/ -.pic-list li{ height:50px;width:50px;list-style:none;float:left} -.pic-list li a img{ filter:alpha(opacity=80);Opacity=0.08;padding:2px;width:40px;height:40px} -.pic-list li a:hover img{filter:alpha(opacity=100);Opacity=0.1;position:absolute;width:79px;height:79px;margin:-20px 0 0 -20px} -.front-cover{ padding:0 1em 1em 0} - -/*favorite*/ -.fav dl{ margin-bottom:1.5em} -.fav dt{ margin-bottom:.5em} - -/*goods*/ -.goods-list li{ width:80px;height:80px;text-align:center;line-height:110%;margin:0 .3em 1em } -.goods-list li a:hover img{margin:-20px 0 0 -42px} -.goods-dl{max-width:55%;width:400px} -.goods-dl dd{ border-bottom:1px solid #E9F0DB;margin: 0 1em 0 0;line-height:2em} - - -/*friends*/ -.frends-list li{ float:left;width:48%;height:120px;overflow:hidden;margin-left:1%} -.frends-list li a img{ padding:2px;float:left;margin-right:.5em} - -/*comment*/ -.comment dl{ display:block;clear:both;float:left;margin:.2em 0;border:1px solid #F7EBE6;width:90%;padding:.5em} -.comment dl:hover{border-color:#D8A796} -.comment dd{ margin:0 .8em .5em 0;padding:0;line-height:120%;} -.comment dd.comment-content{ width:90%;display:block;float:left} -.post-comment{ width:70%;margin: 0 0 1em;float:left} -.post-comment div{ margin:0 0 .5em } -.re-comment{ margin:1em 0 0;border:1px solid #F7EBE6 ;padding:1em} -.re-comment b{ color:#98A697} -.re-comment div{ margin-top:.5em;} - - -/*itable*/ -.itable td,.itable th{padding:.3em .5em} -.itable td{vertical-align: middle;border-bottom: 1px solid #F7EBE6;} -.itable tr.tr1 td{ background: #F7EBE6 ;} -.itable tr.tr2 td{ border-bottom : 1px solid #F7EBE6; } -.itable td img {border:0;padding:0;background:none} - -/*pages*/ -.pages{margin-top:10px;margin-bottom:10px;text-align: center ;clear:both} -.pages *{vertical-align: middle;} -.pages a{padding:1px 4px 2px;border:1px solid #E6C0B3;margin:0 1px;text-align: center;text-decoration: none;font:normal 10px Tahoma ;} -.pages a:hover{border:#833E3A 1px solid;text-decoration:none;} -.pages input{border:1px solid #E6C0B3;background:none;height:14px;font: 9px Tahoma;padding-top:1px;text-align: center;} -.pages b{padding:2px ; margin: 0 3px;font:bold 10px/12px Tahoma} - -/*menu*/ -.menu{position:absolute;background:#fff;border:1px solid $tablecolor;} -.menu td, .menu li,.menu ul{background:#fff;padding:0; margin:0} -.menu li{list-style:none;} -.menu a{display:block;padding:3px 15px 3px 15px;background:#fff;} -.menu a:hover{background:$linkcolor;text-decoration:none;color:#fff;} -.menu ul.ul1 li a{display:inline;padding:0} - -.listPic dl{ width:24.5%; float:left; text-align:center; padding:0; margin:.5em 0} -.listPic dt a{ color:#333} -.listPic dd{ padding:0 0 .5em 0; margin:0; text-indent:0; height:90px; vertical-align:middle} -.listPic dd img{ width:85px;height:85px; padding:2px; border:1px solid #eee;} - -.listPic1 dl{ width:33%; float:left; text-align:center; padding:0; margin:.5em 0} -.listPic1 dt a{ color:#333} -.listPic1 dd{ padding:0 0 .5em 0; margin:0; text-indent:0; height:55px; vertical-align:middle} -.listPic1 dd img{ width:50px;height:50px; padding:2px; border:1px solid #eee;} -.listPic-albumn dd { height:105px;} -.listPic-albumn dd img { width:90px; height:90px; padding:4px 4px 8px; border:0; background:url(albumn-bg.gif)} - -.moduleA{ margin:.2em; border:1px solid #A6CBE7; line-height:110%; border-bottom-color:#66A0CC; border-right-color:#66A0CC;} -.moduleA h3{ color: #0066FF;padding:.5em; margin:0;font-family:Tahoma;font-size:12px;cursor:move } -.tableA { table-layout:fixed} -.tableAtd{ border:1px solid #D4E8F7;height:50px;} -.editButton{ float:right; font:12px/120% Tahoma; color:#CCC; text-decoration:none ; padding-left:0.5em; background:url($imgpath/button_edit.gif) no-repeat 0 .1em} -.editButton:hover{ background-position:.1em .2em} -.editBox{ background:#FFFFCF; margin:0 .2em .2em ; padding:.2em } -.editArea {border:1px solid #eee; width:96%; margin:auto;padding:.2em; background:#fff} -.menu1{position:absolute;border:1px solid #CCCCCC;background:#FFFFFF;z-index:1000;width:200px;height:255px;overflow-Y:auto} -.menu1 h3{background:$headcolor;text-align:left;color:$headfontone;padding:5px 7px 3px 7px;cursor:move} -.menu1 div{padding:5px 10px;} -.checkon{border:1px solid #0A9800;background:#CAFFC0;cursor:move} -.move{position:absolute;} - -#colorbox{width:91px;height:78px;padding:3px 0 0 3px;overflow:hidden;} -#colorbox div{cursor:pointer;width:8px;height:8px;float:left;margin:0 3px 3px 0;border:1px #000 solid;font:0/8px arial} - -.smile{ height:23px;padding:7px 0 0 8px;text-align:left;background:#E0F0F9 url(theme/default/images/th1.png);cursor:move} -.smile div{ width:56px;height:18px;text-align:center;padding:5px 0 0;cursor:pointer;} -.smile div.lian{ background:#ffffff url(theme/default/images/tag.jpg) no-repeat;cursor:auto;} - -.user-info{ position:absolute;line-height:160%; margin-left:-1.5em; margin-top:-1em} -.user-infoWrap{background:#FFF; border:1px solid #004C7D; border-top:1px #A6CBE7 solid; border-left:1px solid #A6CBE7; padding:.5em 1em; margin-left:20px;display:block;} -.user-info .co{position:absolute; width:10px;height:20px; margin-left:-1.8em; margin-top:2em; background:url(theme/default/images/user-info-co.png)} - -/*menu_sm*/ -.menu_sm{ position:absolute;background:#fffcd9;border-bottom:1px solid #e7d62b; width:100%;} -.menu_sm a{padding:5px 15px 5px 15px; color:#f79305;} -.menu_sm a:hover{text-decoration:none;color:#fff;} - -@media screen and (min-width:0px){ -.goods-list li a:hover img{ margin:-20px -20px 0 0} -} \ No newline at end of file diff --git a/src/member/space/lxbrown/images/tag.jpg b/src/member/space/lxbrown/images/tag.jpg deleted file mode 100755 index 0f2984d3..00000000 Binary files a/src/member/space/lxbrown/images/tag.jpg and /dev/null differ diff --git a/src/member/space/lxbrown/images/tag1.jpg b/src/member/space/lxbrown/images/tag1.jpg deleted file mode 100755 index 0f2984d3..00000000 Binary files a/src/member/space/lxbrown/images/tag1.jpg and /dev/null differ diff --git a/src/member/space/lxbrown/images/talk.gif b/src/member/space/lxbrown/images/talk.gif deleted file mode 100755 index e23c73ee..00000000 Binary files a/src/member/space/lxbrown/images/talk.gif and /dev/null differ diff --git a/src/member/space/lxbrown/images/team.gif b/src/member/space/lxbrown/images/team.gif deleted file mode 100755 index 53a54c85..00000000 Binary files a/src/member/space/lxbrown/images/team.gif and /dev/null differ diff --git a/src/member/space/lxbrown/images/wap.png b/src/member/space/lxbrown/images/wap.png deleted file mode 100755 index 37779fa4..00000000 Binary files a/src/member/space/lxbrown/images/wap.png and /dev/null differ diff --git a/src/member/space/lxbrown/images/write.gif b/src/member/space/lxbrown/images/write.gif deleted file mode 100755 index 698cb2a0..00000000 Binary files a/src/member/space/lxbrown/images/write.gif and /dev/null differ diff --git a/src/member/space/lxbrown/index.htm b/src/member/space/lxbrown/index.htm deleted file mode 100755 index 033a9373..00000000 --- a/src/member/space/lxbrown/index.htm +++ /dev/null @@ -1,67 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_news.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

-最新日志文章列表 -发表日志 -

- -{dede:spacenewart row=6 titlelen=60 infolen=200} - -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#", $fields['litpic']) } - - {/dede:if} - {dede:field.description/} -

-
-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:spacenewart} -
- -
- -
-
- - -{dede:include file='footer.htm' /} diff --git a/src/member/space/lxbrown/info.txt b/src/member/space/lxbrown/info.txt deleted file mode 100755 index 6ae04ab1..00000000 --- a/src/member/space/lxbrown/info.txt +++ /dev/null @@ -1,4 +0,0 @@ -name:lxblog默认褐色 -author:ylj798 PW修改版 -type:个人 -date:2009年7月 \ No newline at end of file diff --git a/src/member/space/lxbrown/infos.htm b/src/member/space/lxbrown/infos.htm deleted file mode 100755 index 3449cf47..00000000 --- a/src/member/space/lxbrown/infos.htm +++ /dev/null @@ -1,59 +0,0 @@ -{dede:include file='header.htm'/} - - - - -
- {dede:include file='side_icon.htm'/} -
- - -
-
-

基本资料

- -
- - - - -
- 昵称:
- 性别:
- 生日:
- 所在城市: - -
- 交友宣言:
-
-
-
- -

联系方式

- -
- - - - -
- Email:
- QQ:
- MSN:
-
-
-
- -
-
- -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/lxbrown/listalbum.htm b/src/member/space/lxbrown/listalbum.htm deleted file mode 100755 index 88b23dae..00000000 --- a/src/member/space/lxbrown/listalbum.htm +++ /dev/null @@ -1,37 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

相册列表

- -
- - - - -
-
- {dede:datalist titlelen = '20'} -
-
-
{dede:field.title/}
-
- {/dede:datalist} -
-
-
-
-
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/lxbrown/listarchives.htm b/src/member/space/lxbrown/listarchives.htm deleted file mode 100755 index 0455dd02..00000000 --- a/src/member/space/lxbrown/listarchives.htm +++ /dev/null @@ -1,60 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

文档列表

- -{dede:datalist} - -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#", $fields['litpic']) } - - {/dede:if} - {dede:field.description /} -

-

<<详细内容 -

-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:datalist} -
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm' /} \ No newline at end of file diff --git a/src/member/space/lxbrown/listarticle.htm b/src/member/space/lxbrown/listarticle.htm deleted file mode 100755 index e60b4e31..00000000 --- a/src/member/space/lxbrown/listarticle.htm +++ /dev/null @@ -1,57 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

日志文章列表 -发表日志 -

- -{dede:datalist} -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#", $fields['litpic']) } - - {/dede:if} - {dede:field.body function='cn_substr(@me, 500); /} -

-

<<详细内容 -

-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:datalist} -
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm' /} \ No newline at end of file diff --git a/src/member/space/lxbrown/side_class.htm b/src/member/space/lxbrown/side_class.htm deleted file mode 100755 index 7a162db6..00000000 --- a/src/member/space/lxbrown/side_class.htm +++ /dev/null @@ -1,42 +0,0 @@ -= 0) -{ - $channelAdd = ''; - if($channelid > 2) $channelAdd = '&channelid='.$channelid; -?> - -
-

日志分类

-
    - 0) - { - foreach ($mtypearr as $mty) - { - if(!empty($channelid) && $mty['channelid'] != $channelid) continue; - echo "
  • {$mty['mtypename']}
  • \r\n"; - } - } - ?> -
  • 所有文档>>
  • -
-
- - \ No newline at end of file diff --git a/src/member/space/lxbrown/side_icon.htm b/src/member/space/lxbrown/side_icon.htm deleted file mode 100755 index 58910421..00000000 --- a/src/member/space/lxbrown/side_icon.htm +++ /dev/null @@ -1,36 +0,0 @@ - -
-

博主资料

-
-
-
- -
- {dede:if $_vars['face']=='' } - nopic - {else} - {dede:var.uname/} - {/dede:if} -
-
-
{dede:var.msg /}
-
-
- 留言 | - 短消息 | - 加好友 | - 加黑名单 - -
-
 用户昵称:{dede:var.uname /}
-
 最后登录:{dede:var.logintime function="MyDate('y-m-d h:i',@me)" /}
-
 会员等级:{dede:var.membername/}
-
 会员积分:{dede:var.scores/} 分
-
 空间访问:{dede:var.homecount/} 次
-
-
-
-
- - - diff --git a/src/member/space/lxbrown/side_news.htm b/src/member/space/lxbrown/side_news.htm deleted file mode 100755 index 59690bd8..00000000 --- a/src/member/space/lxbrown/side_news.htm +++ /dev/null @@ -1,8 +0,0 @@ - - - diff --git a/src/member/space/lxbrown/side_search.htm b/src/member/space/lxbrown/side_search.htm deleted file mode 100755 index 9f038c3f..00000000 --- a/src/member/space/lxbrown/side_search.htm +++ /dev/null @@ -1,14 +0,0 @@ - - - diff --git a/src/member/space/lxbrown/side_visitor.htm b/src/member/space/lxbrown/side_visitor.htm deleted file mode 100755 index 5b27769b..00000000 --- a/src/member/space/lxbrown/side_visitor.htm +++ /dev/null @@ -1,11 +0,0 @@ - - \ No newline at end of file diff --git a/src/member/space/lxvista/blog.htm b/src/member/space/lxvista/blog.htm deleted file mode 100755 index fe202c48..00000000 --- a/src/member/space/lxvista/blog.htm +++ /dev/null @@ -1,116 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

日志文章

-
- - -
-
{dede:global.arcrow[pubdate] function="MyDate('y-m-d h:i',@me)" /}
-

- {dede:global.arcrow[title] /} -

- - - - -
-

{dede:global.arcrow[body] /}

-
-
- - -
-0) { ?> -
一共有 条评论
- -
-
- -
-
- - - - Says: -
-
- -
- -
- -
-
-
-
- -
-
-
发表评论
-
-
- - - - - {dede:var.uname /}: -
-
- -
-
-
- 表情: -
    -
  • -
  • -
  • -
  • -
  • -
  • -
  • -
-
- - - - - - - - -
验证码: 匿名评论
- -
-
-
- - -
-
- - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/lxvista/demo.png b/src/member/space/lxvista/demo.png deleted file mode 100755 index d2be59ab..00000000 Binary files a/src/member/space/lxvista/demo.png and /dev/null differ diff --git a/src/member/space/lxvista/footer.htm b/src/member/space/lxvista/footer.htm deleted file mode 100755 index 5447359b..00000000 --- a/src/member/space/lxvista/footer.htm +++ /dev/null @@ -1,8 +0,0 @@ -
-
- -
- - \ No newline at end of file diff --git a/src/member/space/lxvista/guestbook.htm b/src/member/space/lxvista/guestbook.htm deleted file mode 100755 index 3606696c..00000000 --- a/src/member/space/lxvista/guestbook.htm +++ /dev/null @@ -1,82 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm' /} - {dede:include file='side_news.htm' /} - {dede:include file='side_visitor.htm' /} -
- - -
-
-

留言列表

- -
- -
-
- {dede:datalist} - -
-
- '; - }else{ - echo ''.$fields['uname'].'的头像'; - } ?> -
-
- {dede:field.uname/} - {dede:field.dtime function="MyDate('Y-m-d H:i',@me)" /} -
-
-
{dede:field.msg function="Text2Html(@me)" /}
- -
- -
-
-
- {/dede:datalist} -
{dede:pagelist/}
-
-
发表留言
-
-
- {dede:var.uname /}: - - - - -
-
标题:
-
- - -
- -
- - - - - - - -
验证码: 
-
- -
-
- -
- -
- - - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/lxvista/header.htm b/src/member/space/lxvista/header.htm deleted file mode 100755 index ca04a824..00000000 --- a/src/member/space/lxvista/header.htm +++ /dev/null @@ -1,47 +0,0 @@ - - - - -{dede:var.spacename /} {dede:var.curtitle /} - - - - -
-
- -
- \ No newline at end of file diff --git a/src/member/space/lxvista/images/addto.gif b/src/member/space/lxvista/images/addto.gif deleted file mode 100755 index cbfedc52..00000000 Binary files a/src/member/space/lxvista/images/addto.gif and /dev/null differ diff --git a/src/member/space/lxvista/images/albumn-bg.gif b/src/member/space/lxvista/images/albumn-bg.gif deleted file mode 100755 index 98e11622..00000000 Binary files a/src/member/space/lxvista/images/albumn-bg.gif and /dev/null differ diff --git a/src/member/space/lxvista/images/bgm.gif b/src/member/space/lxvista/images/bgm.gif deleted file mode 100755 index ee1b9cb6..00000000 Binary files a/src/member/space/lxvista/images/bgm.gif and /dev/null differ diff --git a/src/member/space/lxvista/images/bodybg.jpg b/src/member/space/lxvista/images/bodybg.jpg deleted file mode 100755 index 4de469bd..00000000 Binary files a/src/member/space/lxvista/images/bodybg.jpg and /dev/null differ diff --git a/src/member/space/lxvista/images/close.jpg b/src/member/space/lxvista/images/close.jpg deleted file mode 100755 index ce11ae5e..00000000 Binary files a/src/member/space/lxvista/images/close.jpg and /dev/null differ diff --git a/src/member/space/lxvista/images/del.png b/src/member/space/lxvista/images/del.png deleted file mode 100755 index b407245a..00000000 Binary files a/src/member/space/lxvista/images/del.png and /dev/null differ diff --git a/src/member/space/lxvista/images/jian.png b/src/member/space/lxvista/images/jian.png deleted file mode 100755 index 241d53ec..00000000 Binary files a/src/member/space/lxvista/images/jian.png and /dev/null differ diff --git a/src/member/space/lxvista/images/message.gif b/src/member/space/lxvista/images/message.gif deleted file mode 100755 index b3080acd..00000000 Binary files a/src/member/space/lxvista/images/message.gif and /dev/null differ diff --git a/src/member/space/lxvista/images/rss.png b/src/member/space/lxvista/images/rss.png deleted file mode 100755 index 41984cd5..00000000 Binary files a/src/member/space/lxvista/images/rss.png and /dev/null differ diff --git a/src/member/space/lxvista/images/save.jpg b/src/member/space/lxvista/images/save.jpg deleted file mode 100755 index 086b9c92..00000000 Binary files a/src/member/space/lxvista/images/save.jpg and /dev/null differ diff --git a/src/member/space/lxvista/images/sigline.gif b/src/member/space/lxvista/images/sigline.gif deleted file mode 100755 index 173d91c0..00000000 Binary files a/src/member/space/lxvista/images/sigline.gif and /dev/null differ diff --git a/src/member/space/lxvista/images/style.css b/src/member/space/lxvista/images/style.css deleted file mode 100755 index 670db65b..00000000 --- a/src/member/space/lxvista/images/style.css +++ /dev/null @@ -1,187 +0,0 @@ -body{font-family: Geneva, Arial, Helvetica, sans-serif, serif;font-size:12px;line-height:1.5em;background:#D6EDF5 url(bodybg.jpg) repeat-x;color:#333} -h1,h2,h3,h4,h5,h6,form,body,dd,dt,dl,li,ul{padding:0;margin:0} -td,th,div,dd{word-break:break-all;word-wrap:break-word} -img{border:0;} -.c{clear:both;height:1px;font:0px/0px Arial;overflow:hidden} -.tal,.tl{text-align:left} -.tac,.tc{text-align:center} -.tar,.tr{text-align:right} -.fr,.right{float:right} -.fl,.left{float:left} -.b{ font-weight:bold} -.tdn{ text-decoration:none} -.small{ font-size:10px;} -.big{ font-size:14px;} -.fsn{ font-size:12px} -.fn{ font-weight:normal} -.lh0{ line-height:0} -.yellow {color:#fff;} -.gray{ color:#83cfcb} -.keep{ word-break:keep-all; word-spacing:normal} -.ip{ padding:4px 2px 3px; border:1px solid #90C3D5; font:12px/1.1em Tahoma} -.bt{background:#B5D7E3; color:#4D7280; font-weight:bold; border:3px double #90C3D5;font-size:12px;} -/*a link 基本连接颜色*/ -a{color:#01759C} -a:hover{color:#fff; background:#01759C} -a.noul{ text-decoration:none} -a.active{background:#01759C; color:#fff} -a.active:hover{color:#01759C; background:none} - -h1{ font-size:24px; padding:.6em 0 0} -h2{ font-size:13px; padding:.3em .6em; color:#fff; background:url(bodybg.jpg) 0 -70px #48A3CA; border-bottom:#B3D8E6 1px solid } -h3{ font-size:14px} -h4{ font:16px Georgia; display:inline} - -#container{ width:96%; min-width:600px; max-width:1000px; margin:auto; } -#header{ height:108px; background:url(header.png) no-repeat right;} -#title{ width:98%; height:68px; margin:auto; overflow:hidden} -#guide{height:27px;padding:0; margin:0} -#guide li{ display:inline} -#guide li a{ float:left; color:#fff; text-decoration:none;display:block; font:13px/1.2em Arial; padding:.4em 1em} -#guide li a:hover{ background:#4A9FBE;text-decoration:none} -#guide li.active a{background:#03779C;color:#fff } -#site-dsc{color:#B3D8E6; margin-top:.5em; font-size:14px} -#toolbar{ margin-top:1em} -#toolbar a{ color:#B3D8E6} - -#main{ width:75.5%; background:#fff; } -#side{ width:23%;} -.box{ border:1px solid #90C3D5; margin:0 0 .7em; width:100%; overflow:hidden; background:#fff} -.text{ margin:.5em 1em 1em;} -#main .text { margin: 1em} -#side .list { margin:1em .5em 1.5em 2.5em;color:#333} -#side .list ul{ margin:0 0 1em 1em} -#side .list ul li{ margin:.5em 0} -#side .list li{ margin:.5em 0} -.profile-pic{margin:0 auto 1em;padding:1px;width:95%;} -.profile-pic div{ margin:0 auto 0;width:100%;padding:0;overflow:hidden;text-align:center;line-height:0} -.profile-pic div img{border:1px solid #ccc;padding:0; margin:0;} -.profile dd{ margin:.3em 0 0; line-height:120%} - -/*#calendar */ -.calendar table{ width:98%; margin:0 auto 1em; table-layout:fixed} -.calendar table td{ height: 15px;font:11px/150% Tahoma;text-align:center;} -.calendar table th{ text-align: center} -.calendar table td a{color:#fff;font:11px/12px Arial;background:#01759C;padding:0px 3px 2px} -.calendar table td a:hover{background:#015C88;text-decoration:none} - -/*blog*/ - -.blog-content{ margin:2em 0; table-layout:fixed; width:100%; vertical-align:top} -.blog-content td{ font-size:13px; line-height:1.5em;overflow:hidden} -.blog-content td img { padding:5px; border:1px solid #B3D8E6; line-height:0} -.blog-content td a:hover img { border-color:#2E5B6B; background:#fff} -.bb{ border-bottom:1px solid #B5D7E3 ; padding:0 0 .6em; margin:0 0 .3em; line-height:2em;} - -#footer{ margin-top:2em; border-top:1px solid #66B2CC ; padding:.5em} -#footer ul,#footer li { display:inline; list-style:none ; margin:0 0 0 1em} - -/*photos-album*/ -.pic-list li{ height:50px; width:50px; list-style:none; float:left} -.pic-list li a img{ filter:alpha(opacity=80);Opacity=0.08;padding:2px; width:40px; height:40px} -.pic-list li a:hover img { filter:alpha(opacity=100);Opacity=0.1; position:absolute; width:79px;height:79px; margin:-20px 0 0 -20px} -.front-cover{ padding:0 1em 1em 0} - -/*favorite*/ -.fav dl{ margin-bottom:1.5em} -.fav dt{ margin-bottom:.5em} - -/*goods*/ -.goods-list li{ width:80px; height:80px; text-align:center; line-height:110%; margin:0 .3em 1em } -.goods-list li a:hover img { margin:-20px 0 0 -42px} -.goods-dl { max-width:55%; width:400px} -.goods-dl dd{ border-bottom:1px solid #E9F0DB; margin: 0 1em 0 0; line-height:2em} - - -/*friends*/ -.frends-list li{ float:left; width:48%;height:120px; overflow:hidden; margin-left:1%} -.frends-list li a img{ padding:2px; float:left; margin-right:.5em} - -/*comment*/ -.comment dl{ display:block;clear:both;float:left;margin:.2em 0;border:1px solid #D6EDF5;width:90%;padding:.5em} -.comment dl:hover{border-color:#4BA9CD} -.comment dd{ margin:0 .8em .8em 0; padding:0; line-height:120%;} -.comment dd.comment-content{ width:80%;float:left;word-break:break-all;-o-text-overflow: ellipsis;} -.post-comment{ width:70%; margin: 0 0 1em} -.post-comment div{ margin:0 0 .5em } -.re-comment{ margin:1em 0 0; border:1px solid #D6EDF5; padding:1em} - - -/*itable*/ -.itable td,.itable th{padding:.3em .5em} -.itable td { vertical-align: middle;border-bottom: 1px solid #D6EDF5;} -.itable tr.tr1 td{ background: #D6EDF5 ;} -.itable .ip { border:#CED4BE } -.itable td img {border:0;padding:0;background:none} - -/*pages*/ -.pages { margin-top:10px; margin-bottom:10px; text-align: center;clear:both } -.pages * { vertical-align: middle;} -.pages a{padding:1px 4px 2px ; background:#f9fcff; border:1px solid #ADD2E1; margin:0 1px; color: #002F79; text-align: center; text-decoration: none; font:normal 10px Tahoma ; } -.pages a:hover { border:#37A717 1px solid; background:#EDFFE4; text-decoration:none; color: #002F79} -.pages input { border:1px solid #ccc; height: 14px; font: 9px Tahoma; padding-top:1px;text-align: center; } -.pages b { padding:2px ; margin: 0 3px;font:bold 10px/12px Tahoma} - -/*menu*/ -.menu{position:absolute;background:#fff;border:1px solid $tablecolor;} -.menu td, .menu li,.menu ul{background:#fff;padding:0; margin:0} -.menu li{list-style:none;} -.menu a{display:block;padding:3px 15px 3px 15px;background:#fff;} -.menu a:hover{background:$linkcolor;text-decoration:none;color:#fff;} -.menu ul.ul1 li a{display:inline;padding:0} - -.listPic dl{ width:24.5%; float:left; text-align:center; padding:0; margin:.5em 0} -.listPic dt a{ color:#333} -.listPic dd{ padding:0 0 .5em 0; margin:0; text-indent:0; height:90px; vertical-align:middle} -.listPic dd img{ width:85px;height:85px; padding:2px; border:1px solid #eee;} - -.listPic1 dl{ width:33%; float:left; text-align:center; padding:0; margin:.5em 0} -.listPic1 dt a{ color:#333} -.listPic1 dd{ padding:0 0 .5em 0; margin:0; text-indent:0; height:55px; vertical-align:middle} -.listPic1 dd img{ width:50px;height:50px; padding:2px; border:1px solid #eee;} -.listPic-albumn dd { height:105px;} -.listPic-albumn dd img { width:90px; height:90px; padding:4px 4px 8px; border:0; background:url(albumn-bg.gif)} - -.moduleA{ margin:.2em; border:1px solid #A6CBE7; line-height:110%; border-bottom-color:#66A0CC; border-right-color:#66A0CC;} -.moduleA h3{ color: #0066FF;padding:.5em; margin:0;font-family:Tahoma;font-size:12px;cursor:move } -.tableA { table-layout:fixed} -.tableAtd{ border:1px solid #D4E8F7;height:50px;} -.editButton{ float:right; font:12px/120% Tahoma; color:#CCC; text-decoration:none ; padding-left:0.5em; background:url($imgpath/button_edit.gif) no-repeat 0 .1em} -.editButton:hover{ background-position:.1em .2em} -.editBox{ background:#FFFFCF; margin:0 .2em .2em ; padding:.2em } -.editArea {border:1px solid #eee; width:96%; margin:auto;padding:.2em; background:#fff} -.menu1{position:absolute;border:1px solid #CCCCCC;background:#FFFFFF;z-index:1000;width:200px;height:255px;overflow-Y:auto} -.menu1 h3{background:$headcolor;text-align:left;color:$headfontone;padding:5px 7px 3px 7px;cursor:move} -.menu1 div{padding:5px 10px;} -.checkon{border:1px solid #0A9800;background:#CAFFC0;cursor:move} -.move{position:absolute;} - -#colorbox{width:91px;height:78px;padding:3px 0 0 3px;overflow:hidden;} -#colorbox div{cursor:pointer;width:8px;height:8px;float:left;margin:0 3px 3px 0;border:1px #000 solid;font:0/8px arial} - -.smile{ height:23px;padding:7px 0 0 8px;text-align:left;background:#E0F0F9 url(th1.png);cursor:move} -.smile div{ width:56px;height:18px;text-align:center;padding:5px 0 0;cursor:pointer;} -.smile div.lian{ background:#ffffff url(tag.jpg) no-repeat;cursor:auto;} - -.user-info{ position:absolute;line-height:160%; margin-left:-1.5em; margin-top:-1em} -.user-infoWrap{background:#FFF; border:1px solid #004C7D; border-top:1px #A6CBE7 solid; border-left:1px solid #A6CBE7; padding:.5em 1em; margin-left:20px;display:block;} -.user-info .co{position:absolute; width:10px;height:20px; margin-left:-1.8em; margin-top:2em; background:url(user-info-co.png)} - -/*menu_sm*/ -.menu_sm{ position:absolute;background:#fffcd9;border-bottom:1px solid #e7d62b; width:100%;} -.menu_sm a{padding:5px 15px 5px 15px; color:#f79305;} -.menu_sm a:hover{text-decoration:none;color:#fff;} - -@media screen and (min-width:0px){ -.goods-list li a:hover img { margin:-20px -20px 0 0} -} - -.usericobox { - float:left; - margin-bottom:8px; - margin-right:3px; - width:47px; - height:68px; - text-align:center; - overflow:hidden; -} \ No newline at end of file diff --git a/src/member/space/lxvista/images/tag.jpg b/src/member/space/lxvista/images/tag.jpg deleted file mode 100755 index 0f2984d3..00000000 Binary files a/src/member/space/lxvista/images/tag.jpg and /dev/null differ diff --git a/src/member/space/lxvista/images/tag1.jpg b/src/member/space/lxvista/images/tag1.jpg deleted file mode 100755 index 0f2984d3..00000000 Binary files a/src/member/space/lxvista/images/tag1.jpg and /dev/null differ diff --git a/src/member/space/lxvista/images/talk.gif b/src/member/space/lxvista/images/talk.gif deleted file mode 100755 index e23c73ee..00000000 Binary files a/src/member/space/lxvista/images/talk.gif and /dev/null differ diff --git a/src/member/space/lxvista/images/team.gif b/src/member/space/lxvista/images/team.gif deleted file mode 100755 index 53a54c85..00000000 Binary files a/src/member/space/lxvista/images/team.gif and /dev/null differ diff --git a/src/member/space/lxvista/images/wap.png b/src/member/space/lxvista/images/wap.png deleted file mode 100755 index 37779fa4..00000000 Binary files a/src/member/space/lxvista/images/wap.png and /dev/null differ diff --git a/src/member/space/lxvista/images/write.gif b/src/member/space/lxvista/images/write.gif deleted file mode 100755 index 698cb2a0..00000000 Binary files a/src/member/space/lxvista/images/write.gif and /dev/null differ diff --git a/src/member/space/lxvista/index.htm b/src/member/space/lxvista/index.htm deleted file mode 100755 index 033a9373..00000000 --- a/src/member/space/lxvista/index.htm +++ /dev/null @@ -1,67 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_news.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

-最新日志文章列表 -发表日志 -

- -{dede:spacenewart row=6 titlelen=60 infolen=200} - -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#", $fields['litpic']) } - - {/dede:if} - {dede:field.description/} -

-
-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:spacenewart} -
- -
- -
-
- - -{dede:include file='footer.htm' /} diff --git a/src/member/space/lxvista/info.txt b/src/member/space/lxvista/info.txt deleted file mode 100755 index d2c695b7..00000000 --- a/src/member/space/lxvista/info.txt +++ /dev/null @@ -1,4 +0,0 @@ -name:lxblog默认Vista -author:ylj798 PW修改版 -type:个人 -date:2009年7月 \ No newline at end of file diff --git a/src/member/space/lxvista/infos.htm b/src/member/space/lxvista/infos.htm deleted file mode 100755 index 3449cf47..00000000 --- a/src/member/space/lxvista/infos.htm +++ /dev/null @@ -1,59 +0,0 @@ -{dede:include file='header.htm'/} - - - - -
- {dede:include file='side_icon.htm'/} -
- - -
-
-

基本资料

- -
- - - - -
- 昵称:
- 性别:
- 生日:
- 所在城市: - -
- 交友宣言:
-
-
-
- -

联系方式

- -
- - - - -
- Email:
- QQ:
- MSN:
-
-
-
- -
-
- -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/lxvista/listalbum.htm b/src/member/space/lxvista/listalbum.htm deleted file mode 100755 index 88b23dae..00000000 --- a/src/member/space/lxvista/listalbum.htm +++ /dev/null @@ -1,37 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

相册列表

- -
- - - - -
-
- {dede:datalist titlelen = '20'} -
-
-
{dede:field.title/}
-
- {/dede:datalist} -
-
-
-
-
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/lxvista/listarchives.htm b/src/member/space/lxvista/listarchives.htm deleted file mode 100755 index 0455dd02..00000000 --- a/src/member/space/lxvista/listarchives.htm +++ /dev/null @@ -1,60 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

文档列表

- -{dede:datalist} - -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#", $fields['litpic']) } - - {/dede:if} - {dede:field.description /} -

-

<<详细内容 -

-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:datalist} -
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm' /} \ No newline at end of file diff --git a/src/member/space/lxvista/listarticle.htm b/src/member/space/lxvista/listarticle.htm deleted file mode 100755 index e60b4e31..00000000 --- a/src/member/space/lxvista/listarticle.htm +++ /dev/null @@ -1,57 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

日志文章列表 -发表日志 -

- -{dede:datalist} -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#", $fields['litpic']) } - - {/dede:if} - {dede:field.body function='cn_substr(@me, 500); /} -

-

<<详细内容 -

-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:datalist} -
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm' /} \ No newline at end of file diff --git a/src/member/space/lxvista/side_class.htm b/src/member/space/lxvista/side_class.htm deleted file mode 100755 index 7a162db6..00000000 --- a/src/member/space/lxvista/side_class.htm +++ /dev/null @@ -1,42 +0,0 @@ -= 0) -{ - $channelAdd = ''; - if($channelid > 2) $channelAdd = '&channelid='.$channelid; -?> - -
-

日志分类

-
    - 0) - { - foreach ($mtypearr as $mty) - { - if(!empty($channelid) && $mty['channelid'] != $channelid) continue; - echo "
  • {$mty['mtypename']}
  • \r\n"; - } - } - ?> -
  • 所有文档>>
  • -
-
- - \ No newline at end of file diff --git a/src/member/space/lxvista/side_icon.htm b/src/member/space/lxvista/side_icon.htm deleted file mode 100755 index 90dd3419..00000000 --- a/src/member/space/lxvista/side_icon.htm +++ /dev/null @@ -1,36 +0,0 @@ - -
-

博主资料

-
-
-
- -
- {dede:if $_vars['face']=='' } - nopic - {else} - {dede:var.uname/} - {/dede:if} -
-
-
{dede:var.msg /}
-
-
- 留言 | - 短消息 | - 加好友 | - 加黑名单 - -
-
 用户昵称:{dede:var.uname /}
-
 最后登录:{dede:var.logintime function="MyDate('y-m-d h:i',@me)" /}
-
 会员等级:{dede:var.membername/}
-
 会员积分:{dede:var.scores/} 分
-
 空间访问:{dede:var.homecount/} 次
-
-
-
-
- - - diff --git a/src/member/space/lxvista/side_news.htm b/src/member/space/lxvista/side_news.htm deleted file mode 100755 index 59690bd8..00000000 --- a/src/member/space/lxvista/side_news.htm +++ /dev/null @@ -1,8 +0,0 @@ - - - diff --git a/src/member/space/lxvista/side_search.htm b/src/member/space/lxvista/side_search.htm deleted file mode 100755 index 9f038c3f..00000000 --- a/src/member/space/lxvista/side_search.htm +++ /dev/null @@ -1,14 +0,0 @@ - - - diff --git a/src/member/space/lxvista/side_visitor.htm b/src/member/space/lxvista/side_visitor.htm deleted file mode 100755 index 5b27769b..00000000 --- a/src/member/space/lxvista/side_visitor.htm +++ /dev/null @@ -1,11 +0,0 @@ - - \ No newline at end of file diff --git a/src/member/space/person/blog.htm b/src/member/space/person/blog.htm deleted file mode 100755 index 8bf76f53..00000000 --- a/src/member/space/person/blog.htm +++ /dev/null @@ -1,119 +0,0 @@ -{dede:include file='header.htm'/} -
-
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
-
-
-
日志文章
-
-
-
-

{dede:global.arcrow[title] /}

- ({dede:global.arcrow[pubdate] function="MyDate('y-m-d h:i',@me)" /}) -
- - - - -
-

{dede:global.arcrow[body] /}

-
-
-
- - -
-0) { ?> -
一共有 条评论
- -
-
- -
-
- - - - Says: -
-
- -
- -
- -
-
-
-
- -
-
-
-
发表评论
-
- {dede:var.uname /}: - - - - - -
-
- -
-
-
- 表情: -
    -
  • -
  • -
  • -
  • -
  • -
  • -
  • -
-
-
- - - - - - - - -
验证码: 匿名评论
-
-
-
-
- - -
-
-
-
-
-{dede:include file='footer.htm'/} - - \ No newline at end of file diff --git a/src/member/space/person/blue/bg.jpg b/src/member/space/person/blue/bg.jpg deleted file mode 100755 index b81a0b5c..00000000 Binary files a/src/member/space/person/blue/bg.jpg and /dev/null differ diff --git a/src/member/space/person/blue/botton.png b/src/member/space/person/blue/botton.png deleted file mode 100755 index 636f87e4..00000000 Binary files a/src/member/space/person/blue/botton.png and /dev/null differ diff --git a/src/member/space/person/blue/c_bg.png b/src/member/space/person/blue/c_bg.png deleted file mode 100755 index a1360d85..00000000 Binary files a/src/member/space/person/blue/c_bg.png and /dev/null differ diff --git a/src/member/space/person/blue/footer.gif b/src/member/space/person/blue/footer.gif deleted file mode 100755 index 53d7eaa9..00000000 Binary files a/src/member/space/person/blue/footer.gif and /dev/null differ diff --git a/src/member/space/person/blue/menu_bg.gif b/src/member/space/person/blue/menu_bg.gif deleted file mode 100755 index bde52ff7..00000000 Binary files a/src/member/space/person/blue/menu_bg.gif and /dev/null differ diff --git a/src/member/space/person/blue/nav_bg.jpg b/src/member/space/person/blue/nav_bg.jpg deleted file mode 100755 index 20403bfc..00000000 Binary files a/src/member/space/person/blue/nav_bg.jpg and /dev/null differ diff --git a/src/member/space/person/blue/style.css b/src/member/space/person/blue/style.css deleted file mode 100755 index 55244bf5..00000000 --- a/src/member/space/person/blue/style.css +++ /dev/null @@ -1,190 +0,0 @@ -@import url("../common/css/css.css"); -/* - -“风格” 样式 - -2008.8.12 10:48 for Fangyu12@gmail.com - -Last modified 2008.10.06 15:30 - -Copyright (c) 2008, dedecms All rights reserved. - -*/ - -body { - background-attachment: scroll; - background-color: #9CAEC1; - background-image: url(bg.jpg); - background-repeat: no-repeat; - background-position: center 31px; -} -/* 链接 --------------------------------------------------------------------*/ -a:link, a:visited { - color:#074387; - text-decoration:none; -} -a:hover, a:active { - color:#074387; - text-decoration:underline; -} - -/* 导航菜单 --------------------------------------------------------------------*/ -#head { - position:relative; - height:225px; -} -#spaceName { - position:absolute; - top:28%; - left:30px; -} -#navMenu { - position: absolute; - bottom: 0px; - left: 210px; - height: 34px; - line-height:34px; -} -#navMenu li a { - background-image: url(menu_bg.gif); - background-repeat: no-repeat; - background-position: left 0; - font-size: 14px; - display: block; - padding-left: 1em; - float:left; -} -#navMenu li a span { - background-image: url(menu_bg.gif); - background-repeat: no-repeat; - background-position: right 0; - display: block; - cursor:pointer; - float:left; - padding-right: 1em; -} -#navMenu li a:hover { - text-decoration: underline; - } -#navMenu li.thisClass a { - background-position: left -34px; - text-decoration: none; - font-weight: bold; - color: #666; -} -#navMenu li.thisClass a span { - background-position: right -34px; -} -#navChild { - background-image: url(nav_bg.jpg); - background-repeat: no-repeat; - background-position: center top; - height: 37px; - margin-top:-1px; - *margin-top:-2px; -} -/* 盒子 --------------------------------------------------------------------*/ -.border { - border: 1px solid #919BA2; - background-color: #EBEEF3; - padding: 1px; -} -.caption { - background-image: url(c_bg.png); - background-repeat: repeat-x; - background-position: left bottom; -} -.caption strong { - color:#3A3A3A; -} -/* 按钮 --------------------------------------------------------------------*/ -button, -.button { - margin:0; - height:23px; - line-height:23px; - font-size:12px; - cursor:pointer; - border:none; - text-align: center; - white-space: nowrap; -} - -.buttonBlue2 { - width:46px; - color:#fff; - background:url(botton.png) no-repeat 0 0; -} -.buttonBlue4 { - width:70px; - color:#fff; - background-image: url(botton.png); - background-repeat: no-repeat; - background-position: -60px top; -} -/* 蓝色圆角按钮 --------------------------------------------------------------------*/ -.buttonBlue a { - background-image: url(botton.png); - background-repeat: no-repeat; - background-position: 0px -35px; - text-decoration: none; - padding-left: 8px; - float:left; -} -.buttonBlue a span { - background-image: url(botton.png); - background-repeat: no-repeat; - background-position: right -35px; - display: block; - cursor:pointer; - line-height: 23px; - height: 23px; - float:left; - padding-right: 8px; -} -.buttonBlue a:hover { - background-position: 0px -70px; - text-decoration: none; -} -.buttonBlue a:hover span { - background-position: right -70px; -} -#userInfo .buttonBlue li a { - margin-left:15px; - display:inline; -} - -.c { clear:both; } - -.comment dl { - border:1px solid #fff; - margin-top:8px; - padding:3px; -} - -.comment-pic { - float:left; - padding-right:6px; -} - -.post-comment { - margin-top:10px; -} - -.feedbackface { - line-height:36px; -} - -.feedbackface li { - float:left; - margin-right:5px; -} - -.post-comment h5 { - float:left; margin-right:10px; -} diff --git a/src/member/space/person/common/css/css.css b/src/member/space/person/common/css/css.css deleted file mode 100755 index daebbd5b..00000000 --- a/src/member/space/person/common/css/css.css +++ /dev/null @@ -1,182 +0,0 @@ -@import url("global.css"); - -/* - -“结构” 样式 - -2008.8.12 10:48 for Fangyu12@gmail.com - -Last modified 2008.10.06 15:30 - -Copyright (c) 2008, dedecms All rights reserved. - -*/ -/* 顶部导航 add for Fangyu --------------------------------------------------------------------*/ -#headTop { - width:100%; - height:30px; - background-image: url(../images/module_top.gif); - background-repeat: repeat-x; -} -#headTop .logo { - background:url(../images/module_top_logo.gif) no-repeat 20px 6px; - width:200px; - height:30px; - float:left; - cursor:pointer; -} -/* 登入信息 --------------------------------------------------------------------*/ -#topBar { - float: right; - height: 12px; - margin-bottom: 15px; - line-height: 12px; - margin-top: 8px; -} -#topBar span, #topBar .userMenu li { - padding-right: 8px; - padding-left: 8px; - line-height: 12px; - height: 12px; - padding-top: 1px; - white-space: nowrap; -} -#topBar span { - float: right; -} -#topBar span i { - font-style: normal; - padding-right: 3px; -} -#topBar .userMenu { - float: right; -} -#topBar .userMenu li { - float: left; -} -#topBar .userMenu li.help { - border-left-width: 2px; - border-left-style: solid; - border-left-color: #999; - text-align: right; - padding-right: 0px; - margin-right:8px; -} -/* 用户信息 --------------------------------------------------------------------*/ -#userInfo .pic { - display: table-cell !important; - display:block; - font-size:25px; - overflow:hidden; - text-align:center; - vertical-align:middle; - margin-right: auto; - margin-left: auto; - width:190px; -} -#userInfo .pic img { - vertical-align:middle; - max-width:190px; - max-height:190px; - width:expression(this.width>190?190:true); - height:expression(this.height>190?190:true); -} -#artInfo { - margin-top:30px; -} -#artInfo li { - font-size: 11px; - margin-left: -1px; - padding-left: 10px; - border-left: 1px solid #CCC; - height: 12px; - line-height:12px; - margin-right: 10px; -} -#artInfo li a { - font-size:12px; - margin-right:5px; -} -/* 相册 --------------------------------------------------------------------*/ -#album { - overflow:hidden; -} -#album li { - width:25%; - float:left; - margin-top: 20px; - position: relative; -} -#album dl { - height: 150px; - width: 150px; - margin: 0px auto; - background-image: url(../images/album_bg.png); - background-repeat: no-repeat; - padding-top: 10px; - padding-bottom: 30px; -} -#album dl dt { - margin-bottom:5px; - padding-left: 10px; -} -#album dl dt a { - display: table-cell !important; - display:block; - font-size:66px; - width:130px; - height:95px; - overflow:hidden; - text-align:center; - vertical-align:middle; -} -#album dl dt img { - vertical-align:middle; - max-width:130px; - max-height:95px; - height:expression(this.height>95?95:true); - border-width: 0px; -} - -/* 分页 --------------------------------------------------------------------*/ -.pagelistbox span { - visibility:hidden; -} -.pagelistbox a { - margin:0 2px; - border: 1px solid #CCC; - background-color: #FFF; - padding: 1px 4px; -} -/* 页脚 --------------------------------------------------------------------*/ -#footer { - background-image: url(../../blue/footer.gif); - background-repeat: no-repeat; - background-position: center center; - text-align: center; - height: 168px; -} -#footer ul { - margin-right: auto; - margin-left: auto; - padding-top: 50px; - width: 580px; - overflow: hidden; -} -#footer li { - float: left; - width: 70px; - margin-left: -2px; - margin-right: 3px; - border-left-width: 1px; - border-left-style: solid; - border-left-color: #666666; - height:14px; - line-height:14px; -} \ No newline at end of file diff --git a/src/member/space/person/common/css/global.css b/src/member/space/person/common/css/global.css deleted file mode 100755 index 2a29ba80..00000000 --- a/src/member/space/person/common/css/global.css +++ /dev/null @@ -1,697 +0,0 @@ -@import url("module.css"); -/* - -“全局公用定义” 样式 - -2008.8.12 10:48 for Fangyu12@gmail.com - -Last modified 2008.10.06 15:30 - -Copyright (c) 2008, dedecms All rights reserved. - -*/ -body, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, p, blockquote, th, td { - margin:0; - padding:0; -} -html, body { - height:100%; -} -body { - height:auto !important; - font: 400 12px/150% Tahoma, Helvetica, Arial, sans-serif; -} -ol, ul { - list-style:none; -} -img { - border:0; -} -a img { - border: 1px solid #ccc; -} -.ad img { - border-style: none; -} -address, caption, em, i { - font-style:normal; - font-weight:400; -} -table { - border-collapse:collapse; -} -h1, h2, h3, h4, h5, h6 { - font-weight:700; -} -h1 { - font-size:20px; - line-height:28px; -} -h2 { - font-size:18px; - line-height:24px; -} -h3 { - font-size:16px; - line-height:20px; -} -h4 { - font-size:14px; - line-height:18px; -} -h5 { - font-size:12px; - line-height:16px; -} -h6 { - font-size:12px; - line-height:16px; - font-weight:400; -} -fieldset { - clear:both; - border-top-width: 1px; - border-top-style: dotted; - border-right-style: none; - border-bottom-style: none; - border-left-style: none; - border-top-color: #989796; -} -legend { - font-weight: bold; - color: #989796; - padding: 10px; -} - -/* 链接 --------------------------------------------------------------------*/ -/*灰色*/ -.aGray, -.grayA a:link, .grayA a:visited { - color:#656D77; -} -.grayA a:hover, .grayA a:active { - color:#656D77; - text-decoration:underline; -} -/*黄色*/ -.aOrange, -.orangeA a:link, .orangeA a:visited { - color:#f90; -} -.orangeA a:hover, .orangeA a:active { - color:#f90; - text-decoration:underline; -} -/*蓝色*/ -.aBlue, -.blueA a:link, .blueA a:visited { - color:#0063CE; -} -.blueA a:hover, .blueA a:active { - color:#0063CE; - text-decoration:underline; -} -/*红色*/ -.aRed, -.redA a:link, .redA a:visited { - color:#F52403; -} -.redA a:hover, .redA a:active { - color:#F52403; - text-decoration:underline; -} -/*白色*/ -.aWhite, -.whiteA a:link, .whiteA a:visited { - color:#fff; -} -.whiteA a:hover, .whiteA a:active { - color:#fff; - text-decoration:underline; -} -/*黑色*/ -.aBlack, -.blackA a:link, .blackA a:visited { - color:#000; - text-decoration:none; -} -.blackA a:hover, .blackA a:active { - color:#000; - text-decoration:underline; -} -/* 表单 --------------------------------------------------------------------*/ -input { - color:#000; - font-size:12px; - font-family:Tahoma, Arial; -} -input[type="text"], input[type="password"] { - *margin:-1px 5px 0 5px; - width:220px; - height:15px; - border:1px solid #999; - margin-right: 5px; - margin-left: 5px; - padding: 2px; - background-image: url(../images/input.gif); - background-repeat: no-repeat; - background-position: left top; -} - -input[type="checkbox"] { - margin: 3px 0 0 5px; - *margin:-1px 0 1px 1px; - _vertical-align:middle; -} -input[type="radio"] { - *margin:-1px 0 0 1px; -} -input[type="file"] { - height:18px; - margin:0 0 0 4px; - *margin:-1px 0 0 4px; -} -select { - margin:0 0 0 4px; - _margin:0 0 0 2px; - font-size:12px; - font-family:Tahoma, Arial; -} -textarea { - border:1px solid #999; - background-image: url(../images/input.gif); - background-repeat: no-repeat; - background-position: left top; - padding: 2px; -} -* html input.text { - width:224px; - height:12px; - border:1px solid #999; - margin-top: -1px; - margin-right: 5px; - margin-bottom: 0; - margin-left: 2px; - padding: 3px; - line-height: 12px; - background-image: url(../images/input.gif); - background-repeat: no-repeat; - background-position: left top; -} -* html input.checkbox { - margin:-1px 0 0 -2px; -} -* html input.radio { - margin:-1px 0 0 -2px; -} -* html input.file { - margin:-1px 0 0 1px; -} - -/* 常用样式 --------------------------------------------------------------------*/ -.wrapper { - width: 950px; - clear: both; - margin: 0 auto; -} -/*网站框架*/ -.west { - width:210px; - float:left; -} -.east { - width:730px; - float:right; -} -.fLeft { - float:left; -} -.fRight { - float:right; -} -.invisible { - display:none; -} -.block { - display:block; -} -.overflow { - overflow:hidden; -} -.textCenter { - text-align:center; -} -.pointer { - cursor:pointer; -} -.clear { - clear:both; -} -.clearfix:after { - content: "."; - display: block; - height: 0; - clear: both; - visibility: hidden; -} -.clearfix { - zoom:1; - display: inline-block; - _height:1px; -} -* html .clearfix { - height: 0%; - line-height:0; -} -*+html .clearfix { - height: 0%; - line-height:0; -} -.clearfix { - display: block; -} -.mTB10 { - margin-top: 10px; - margin-bottom: 10px; -} -.mT10 { - margin-top: 10px; -} -.mB10 { - margin-bottom: 10px; -} -.mL10 { - margin-left:10px; -} -.mR10 { - margin-right:10px; -} -.mT5 { - margin-top: 5px; -} -.mB5 { - margin-bottom: 5px; -} -.mL5 { - margin-left:5px; -} -.mR5 { - margin-right:5px; -} -.pd10 { - padding:10px; -} -.pd5 { - padding:5px; -} -.pTB10 { - padding-top:10px; - padding-bottom:10px; -} -.pB10 { - padding-bottom:10px; -} -.pB5 { - padding-bottom:5px; -} -.mp10 { - margin:10px; - padding:10px; -} -.f14 { - font-size:14px; -} -.lh20 { - line-height:20px; -} -.lh22 { - line-height:22px; -} -.h100 { - height:100% -} -.h80 { - height:80px; -} -.artContent { - clear:both; - font-size:14px; - line-height:26px; - overflow:hidden; - padding:9px 0; - color:#646464; -} -.details { - background-image: url(../images/square.gif); - background-repeat: no-repeat; - background-position: -2000px center; - padding-left: 1em; - } -/*下划线*/ -.dashed { - background-image: url(../images/dashed.gif); - background-repeat: repeat-x; - background-position: left bottom; -} -/* 列表 --------------------------------------------------------------------*/ -/* 浮动列表*/ -dl.w50 dd, -ul.w50 li { - float: left; - width: 50%; -} -dl.w48 dd, -ul.w48 li { - float: left; - width: 48%; -} -dl.w33 dd, -ul.w33 li { - float: left; - width: 33%; -} -dl.w25 dd, -ul.w25 li { - float: left; - width: 25%; -} -dl.w20 dd, -ul.w20 li { - float: left; - width: 20%; -} -dl.w16 dd, -ul.w16 li { - float: left; - width:16.65%; -} -dl.w50 dd p, -dl.w48 dd p, -dl.w33 dd p, -dl.w25 dd p, -dl.w20 dd p, -ul.w50 li p, -ul.w48 li p, -ul.w33 li p, -ul.w25 li p, -ul.w20 li p{ - line-height: 22px; - height: 22px; - overflow: hidden; -} -ul.fLeftChild li, -ol.fLeftChild li, -dl.fLeftChild dd{ - float: left; -} - -/*有序号*/ -ol.list li { - overflow:hidden; - height:26px; - line-height:26px; -} -ol.list li b {/*序号容器*/ - background-image: url(../images/square.gif); - background-repeat: no-repeat; - background-position: -8000px center; - float:left; - width:13px; - margin-right:5px; - text-align: center; - color:#fff; - display:inline; - font-size: 10px; -} -ol.list li b.highLight { - background-image: url(../images/square.gif); - background-repeat: no-repeat; - background-position: -9000px center; -} -ol.list li a { - width:70%; - float:left; - overflow:hidden; - height:100%; - display:block; -} -ol.list li span { - float:right; - width:18%; - text-align:right; - color:#999; -} -/*常用*/ -.square,/*单独使用*/ -ul.list li { - overflow:hidden; - background-image: url(../images/square.gif); - background-repeat: no-repeat; - background-position: 5px center; - text-indent: 1em; - height:26px; - line-height:26px; -} -ul.list2 li { - overflow:hidden; - background-image: url(../images/square.gif); - background-repeat: no-repeat; - background-position: 5px center; - text-indent: 1em; - clear:both; - height:19px; - line-height:19px; -} -*html ul.list2 li { - *margin-top:-3px; -} -.list li a, -.list2 li a{ - width:80%; - float:left; - overflow:hidden; - height:100%; - display:block; -} -.list li span, -.list2 li span{ - float:right; - width:18%; - text-align:right; -} -ul.sotrList li { - overflow:hidden; - background-image: url(../images/square.gif); - background-repeat: no-repeat; - background-position: 5px center; - text-indent: 1em; - height:20px; - line-height:20px; -} -ul.sotrList li a { - overflow:hidden; - height:100%; - display:block; - float:right; - width:80%; -} -ul.sotrList li span { - width:18%; - float:left; - text-align:right; - color:#999; -} -/* 表格*/ -.tList { - border: 1px solid #dddddd; -} -.tList th, -.tList td { - line-height: 25px; - padding-right: 4px; - padding-left: 4px; - border-right: 1px solid #ddd; - border-left: 1px solid #ddd; - border-bottom: 1px solid #ddd; -} -.tList .tdbg, -.tList thead th { - color:#2f2f2f; - line-height: 24px; - background-image: url(../images/bg_th.gif); - background-repeat: repeat-x; - background-position: left bottom; -} -.tList thead th span { - font-weight:normal; -} -.tList thead th img { - vertical-align: middle; -} -.tList tbody tr { - background-color: #fff; -} -.tList tbody tr td { - vertical-align: top; -} -.tList tbody tr.even td { - background: #f7f7f7; - border-bottom: 1px solid #f7f7f7; -} -.tList tbody tr.click td { - background-color: #D9EBF5; - border-color: #D9EBF5; -} -.tList tbody tr.hover td { - background-color: #EDF5FA; - border-color: #EDF5FA; -} -/* 图文列表*/ -.allList { - width:100%; - clear: both; -} -.allList .img { - float: left; - margin-right:10px; - overflow: hidden; -} -.allList .txt { - *float:left; - overflow: hidden; -} -.allList .txt .p1 { -} -.allList .txt .p2 { - color:#666; -} -.allList .txt .p3 { - color:#F52403; -} -/* 图文列表*/ -dl.imgList { -} -dl.imgList dt { - float:right; -} -dl.imgList dd { - padding:0; -} -dl.imgList dd.leftImg { - margin:0; -} -dl.imgList dd.leftImg img { - float:left; -} -/*次要的-灰色*/ -dl.imgList dd.assistant { - color:#9f9f9f; -} -dl.imgList dd.assistant span { -} -/*****/ -.item h3 .title { - font-size:14px; - font-weight:normal; - line-height:25px; - text-decoration:underline; -} -.item h3 .title:hover { - text-decoration:none; -} -.item { - margin-top:16px; -} -.item .intro { - font-size:14px; - line-height:19px; - padding-left:2px; - color:#777; -} -.item .info { - font-size:12px; - line-height:26px; - color:#080; -} -.item .info small { - font-size:12px; -} -.item .info span { - margin-right:10px; -} -.item .info a { - color:#444; -} -/* 小盒子*/ -.caption { - line-height: 24px; - height: 24px; - display:block; -} -.caption strong { - font-size: 13px; - font-family:Arial,Helvetica,sans-serif; - padding-left: 5px; - float:left; -} -.caption strong.select { -} -.caption b, -.caption em { - padding-right: 5px; - float: right; -} -.body { - clear: both; - height:100%; - padding-top: 10px; - padding-right: 8px; - padding-left: 8px; -} - - -/* 分页 --------------------------------------------------------------------*/ -ul.pages{ - padding:12px 0px; - font-size:12px; - color:#000; - margin:20px auto; -} -ul.pages li{ - float:left; - line-height:17px; - margin-right:6px; - border:1px solid #3D3D3D; - padding:3px 6px; -} -ul.pages li a { - color:#000; - display:block; -} -ul.pages li a:hover{ - color:#FFF; - text-decoration:none; - background-color: #3D3D3D; -} -ul.pages li.thisclass { - background-color: #3D3D3D; - color:#fff; -} - -ul.pages .pageinfo{ - float:left; - padding:3px 6px; - border:1px solid #3D3D3D; - margin-right:10px; -} -ul.pages .pageinfo strong{ - font-weight:normal; - margin:0px 2px; -} - - diff --git a/src/member/space/person/common/css/module.css b/src/member/space/person/common/css/module.css deleted file mode 100755 index 6269b2a9..00000000 --- a/src/member/space/person/common/css/module.css +++ /dev/null @@ -1,125 +0,0 @@ -/* - -“圆角” 样式 - -2008.8.12 10:48 for Fangyu12@gmail.com - -Last modified 2008.10.06 15:30 - -Copyright (c) 2008, dedecms All rights reserved. - -*/ -/* 圆角模型 --------------------------------------------------------------------*/ -.module, -.module .mid { - overflow:hidden; -} -.module .top .t_l, .module .bottom .b_l { - float:left; - overflow:hidden; -} -.module .top .t_r, .module .bottom .b_r { - float:right; - overflow:hidden; -} -.module .top em { - float:left; - font-size:13px; - font-weight:bold; - font-family:Arial,Helvetica,sans-serif; - margin-left: 5px; -} -.module .top em a:link, .module .top em a:visited { - font-size:13px; - font-weight:bold; -} -.module .top span { - float:right; -} -.module .top strong { - cursor:pointer; - float:right; - font-weight:normal; - margin-right:4px; -} -.module .mid .m_l, .module .mid .m_r { - overflow:hidden; -} -.module .mid .content { - overflow:hidden; - height:100%; - clear: both; - margin-right: 8px; - margin-left: 8px; - padding-top: 8px; - /*padding-bottom: 10px;*/ -} -.module .top, -.module .top .t_l, -.module .top .t_r, -.module .bottom, -.module .bottom .b_l, -.module .bottom .b_r { - background-image: url("../images/bg.png"); -} - -/* 银色 --------------------------------------------------------------------*/ -.silver .top { - background-position: 0 -200px; - background-repeat: repeat-x; - height: 32px; -} -.silver .top .t_l { - background-position: -5px -160px; - background-repeat: no-repeat; - height: 32px; - width: 5px; -} -.silver .top .t_r { - background-position: 0 -160px; - background-repeat: no-repeat; - height: 32px; - width: 5px; -} -/* 绿色 --------------------------------------------------------------------*/ -.green .top { - background-position: 0 -40px; - background-repeat: repeat-x; - height: 31px; - line-height:31px; -} -.green .top .t_l { - background-position: -5px 0; - background-repeat: no-repeat; - height: 31px; - width: 5px; -} -.green .top .t_r { - background-position: 0 0; - background-repeat: no-repeat; - height: 31px; - width: 5px; -} - - -.green .bottom { - background-position: 0 -120px; - background-repeat: repeat-x; - height: 33px; - line-height:33px; -} -.green .bottom .b_l { - background-position: -5px -80px; - background-repeat: no-repeat; - height: 33px; - width: 5px; -} -.green .bottom .b_r { - background-position: 0 -80px; - background-repeat: no-repeat; - height: 33px; - width: 5px; -} \ No newline at end of file diff --git a/src/member/space/person/common/images/album_bg.png b/src/member/space/person/common/images/album_bg.png deleted file mode 100755 index 7ebaf01e..00000000 Binary files a/src/member/space/person/common/images/album_bg.png and /dev/null differ diff --git a/src/member/space/person/common/images/bg_th.gif b/src/member/space/person/common/images/bg_th.gif deleted file mode 100755 index 27bb211a..00000000 Binary files a/src/member/space/person/common/images/bg_th.gif and /dev/null differ diff --git a/src/member/space/person/common/images/dashed.gif b/src/member/space/person/common/images/dashed.gif deleted file mode 100755 index 8a3f1f76..00000000 Binary files a/src/member/space/person/common/images/dashed.gif and /dev/null differ diff --git a/src/member/space/person/common/images/img_bg.png b/src/member/space/person/common/images/img_bg.png deleted file mode 100755 index 474045ab..00000000 Binary files a/src/member/space/person/common/images/img_bg.png and /dev/null differ diff --git a/src/member/space/person/common/images/input.gif b/src/member/space/person/common/images/input.gif deleted file mode 100755 index bbe5c5bf..00000000 Binary files a/src/member/space/person/common/images/input.gif and /dev/null differ diff --git a/src/member/space/person/common/images/module_top.gif b/src/member/space/person/common/images/module_top.gif deleted file mode 100755 index 5a5435d2..00000000 Binary files a/src/member/space/person/common/images/module_top.gif and /dev/null differ diff --git a/src/member/space/person/common/images/module_top_logo.gif b/src/member/space/person/common/images/module_top_logo.gif deleted file mode 100755 index df1c1956..00000000 Binary files a/src/member/space/person/common/images/module_top_logo.gif and /dev/null differ diff --git a/src/member/space/person/common/images/noavatar.gif b/src/member/space/person/common/images/noavatar.gif deleted file mode 100755 index a1d14c2a..00000000 Binary files a/src/member/space/person/common/images/noavatar.gif and /dev/null differ diff --git a/src/member/space/person/common/images/square.gif b/src/member/space/person/common/images/square.gif deleted file mode 100755 index 4f0f304b..00000000 Binary files a/src/member/space/person/common/images/square.gif and /dev/null differ diff --git a/src/member/space/person/demo.jpg b/src/member/space/person/demo.jpg deleted file mode 100755 index 9ef8f5be..00000000 Binary files a/src/member/space/person/demo.jpg and /dev/null differ diff --git a/src/member/space/person/footer.htm b/src/member/space/person/footer.htm deleted file mode 100755 index 5fc45bd0..00000000 --- a/src/member/space/person/footer.htm +++ /dev/null @@ -1,10 +0,0 @@ - -
diff --git a/src/member/space/person/guestbook.htm b/src/member/space/person/guestbook.htm deleted file mode 100755 index 94aae37b..00000000 --- a/src/member/space/person/guestbook.htm +++ /dev/null @@ -1,63 +0,0 @@ -{dede:include file='header.htm'/} -
-
- {dede:include file='side_icon.htm' /} - {dede:include file='side_news.htm' /} - {dede:include file='side_visitor.htm' /} -
-
-
-
留言
-
{dede:datalist} -
- -
-

-

{dede:field.uname/}
- M_LoginID){ - echo "删除"; - } - ?> - {dede:field.dtime function="MyDate('Y-m-d H:i',@me)" /} -

-

{dede:field.msg function="Text2Html(@me)" /}

-
-
-
- {/dede:datalist} -
{dede:pagelist/}
-
-
-
-
-
给我留言
-
-
- - - - - - - - - - - - 找回密码注册 -
-

以上网友发言只代表其个人观点,不代表本站的观点或立场。

-
-
-
-
-{dede:include file='footer.htm'/} - - \ No newline at end of file diff --git a/src/member/space/person/header.htm b/src/member/space/person/header.htm deleted file mode 100755 index f39dffdc..00000000 --- a/src/member/space/person/header.htm +++ /dev/null @@ -1,100 +0,0 @@ - - - - -{dede:var.spacename /} {dede:var.curtitle /} - - - - - -IsLogin()) { -?> -
- -
- - - - 游客你可以选择到
-
- -
- -
- - - - M_UserName?>
-
- - - -
\ No newline at end of file diff --git a/src/member/space/person/images/addto.gif b/src/member/space/person/images/addto.gif deleted file mode 100755 index cbfedc52..00000000 Binary files a/src/member/space/person/images/addto.gif and /dev/null differ diff --git a/src/member/space/person/images/bgm.gif b/src/member/space/person/images/bgm.gif deleted file mode 100755 index ee1b9cb6..00000000 Binary files a/src/member/space/person/images/bgm.gif and /dev/null differ diff --git a/src/member/space/person/images/boxbg.png b/src/member/space/person/images/boxbg.png deleted file mode 100755 index ce358250..00000000 Binary files a/src/member/space/person/images/boxbg.png and /dev/null differ diff --git a/src/member/space/person/images/close.jpg b/src/member/space/person/images/close.jpg deleted file mode 100755 index ce11ae5e..00000000 Binary files a/src/member/space/person/images/close.jpg and /dev/null differ diff --git a/src/member/space/person/images/del.png b/src/member/space/person/images/del.png deleted file mode 100755 index b407245a..00000000 Binary files a/src/member/space/person/images/del.png and /dev/null differ diff --git a/src/member/space/person/images/jian.png b/src/member/space/person/images/jian.png deleted file mode 100755 index 241d53ec..00000000 Binary files a/src/member/space/person/images/jian.png and /dev/null differ diff --git a/src/member/space/person/images/message.gif b/src/member/space/person/images/message.gif deleted file mode 100755 index b3080acd..00000000 Binary files a/src/member/space/person/images/message.gif and /dev/null differ diff --git a/src/member/space/person/images/rss.png b/src/member/space/person/images/rss.png deleted file mode 100755 index 41984cd5..00000000 Binary files a/src/member/space/person/images/rss.png and /dev/null differ diff --git a/src/member/space/person/images/save.jpg b/src/member/space/person/images/save.jpg deleted file mode 100755 index 086b9c92..00000000 Binary files a/src/member/space/person/images/save.jpg and /dev/null differ diff --git a/src/member/space/person/images/sigline.gif b/src/member/space/person/images/sigline.gif deleted file mode 100755 index 173d91c0..00000000 Binary files a/src/member/space/person/images/sigline.gif and /dev/null differ diff --git a/src/member/space/person/images/talk.gif b/src/member/space/person/images/talk.gif deleted file mode 100755 index e23c73ee..00000000 Binary files a/src/member/space/person/images/talk.gif and /dev/null differ diff --git a/src/member/space/person/images/team.gif b/src/member/space/person/images/team.gif deleted file mode 100755 index 53a54c85..00000000 Binary files a/src/member/space/person/images/team.gif and /dev/null differ diff --git a/src/member/space/person/images/wap.png b/src/member/space/person/images/wap.png deleted file mode 100755 index 37779fa4..00000000 Binary files a/src/member/space/person/images/wap.png and /dev/null differ diff --git a/src/member/space/person/images/write.gif b/src/member/space/person/images/write.gif deleted file mode 100755 index 698cb2a0..00000000 Binary files a/src/member/space/person/images/write.gif and /dev/null differ diff --git a/src/member/space/person/index.htm b/src/member/space/person/index.htm deleted file mode 100755 index a218eeb7..00000000 --- a/src/member/space/person/index.htm +++ /dev/null @@ -1,47 +0,0 @@ -{dede:include file='header.htm'/} -
-
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_news.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} - {dede:include file='side_links.htm'/} -
-
-
-
文章
-
-{dede:spacenewart row=10 titlelen=60 } - -
-
-

{dede:field.title/}

- ({dede:field.pubdate function="MyDate('Y-m-d h:i',@me)"/}) -
-

{dede:field.description function="" /}

-
- 点击查看全文 -
    -
  • 浏览({dede:field.click/})
  • -
  • 评论({dede:field.scores/})
  • -
  • 好评({dede:field.goodpost/})
  • -
  • 差评({dede:field.badpost/})
  • -
-
-
-
- {/dede:spacenewart} - -
-
-
-
-
-{dede:include file='footer.htm'/} - - \ No newline at end of file diff --git a/src/member/space/person/info.txt b/src/member/space/person/info.txt deleted file mode 100755 index 15cc1ab0..00000000 --- a/src/member/space/person/info.txt +++ /dev/null @@ -1,4 +0,0 @@ -name:织梦默认 -author:dedecms -type:个人 -date:2009年7月 \ No newline at end of file diff --git a/src/member/space/person/infos.htm b/src/member/space/person/infos.htm deleted file mode 100755 index 6d5d8877..00000000 --- a/src/member/space/person/infos.htm +++ /dev/null @@ -1,137 +0,0 @@ -{dede:include file='header.htm'/} -
-
- {dede:include file='side_icon.htm'/} -
-
-
-
基本资料
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
昵称:
性别:
目前所在地: 省份: - -   城市: -
家乡所在地: 省份: - -   城市: -
出生日期:
交友目的:
婚姻状况:
星座:
血型:
身高:> 厘米
体型:
-
-
-
-
经济状况
-
- - - - - - - - - - - - - - - - - - - - - -
收入情况:
教育程度:
住房情况:
所属行业:
掌握语言: - GetOne("Select * From `#@__sys_set` where sname='language' "); - $sets = explode(',',$arr['items']); - foreach($sets as $v){ - if(preg_match("#".$v."#", $row['language'])) echo " $v "; - } - ?>
-
-
-
-
兴趣爱好
-
- - - - - - - - - - - - - -
是否喝酒:
是否抽烟:
兴趣爱好: GetOne("Select * From `#@__sys_set` where sname='nature' "); - $sets = explode(',',$arr['items']); - foreach($sets as $v){ - if(preg_match("#".$v."#",$row['nature'])) echo " $v "; - } - ?>
-
-
-
-
-{dede:include file='footer.htm'/} - - \ No newline at end of file diff --git a/src/member/space/person/listalbum.htm b/src/member/space/person/listalbum.htm deleted file mode 100755 index 0d2b3dd7..00000000 --- a/src/member/space/person/listalbum.htm +++ /dev/null @@ -1,30 +0,0 @@ -{dede:include file='header.htm'/} -
-
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_search.htm'/} -
-
-
-
相册
-
- -
{dede:pagelist/}
-
-
-
-
-
-{dede:include file='footer.htm'/} - - \ No newline at end of file diff --git a/src/member/space/person/listarchives.htm b/src/member/space/person/listarchives.htm deleted file mode 100755 index bda57463..00000000 --- a/src/member/space/person/listarchives.htm +++ /dev/null @@ -1,39 +0,0 @@ -{dede:include file='header.htm'/} -
-
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
-
-
-
文章
-
- {dede:datalist} -
-
-

{dede:field.title/}

- ({dede:field.pubdate function="MyDate('Y-m-d h:i',@me)"/}) -
-

{dede:field.description function="" /}

-
点击查看全文 -
    -
  • 浏览({dede:field.click/})
  • -
  • 评论({dede:field.scores/})
  • -
  • 好评({dede:field.goodpost/})
  • -
  • 差评({dede:field.badpost/})
  • -
-
-
-
- {/dede:datalist} -
{dede:pagelist/}
-
-
-
-
-
-{dede:include file='footer.htm'/} - - \ No newline at end of file diff --git a/src/member/space/person/listarticle.htm b/src/member/space/person/listarticle.htm deleted file mode 100755 index 1a272310..00000000 --- a/src/member/space/person/listarticle.htm +++ /dev/null @@ -1,39 +0,0 @@ -{dede:include file='header.htm'/} -
-
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
-
-
-
文章
-
-{dede:datalist} -
-
-

{dede:field.title/}

- ({dede:field.pubdate function="MyDate('Y-m-d h:i',@me)"/}) -
-

{dede:field.description /}

-
点击查看全文 -
    -
  • 浏览({dede:field.click/})
  • -
  • 评论({dede:field.scores/})
  • -
  • 好评({dede:field.goodpost/})
  • -
  • 差评({dede:field.badpost/})
  • -
-
-
-
-{/dede:datalist} -
{dede:pagelist /}
-
-
-
-
-
-{dede:include file='footer.htm'/} - - \ No newline at end of file diff --git a/src/member/space/person/side_class.htm b/src/member/space/person/side_class.htm deleted file mode 100755 index f80f5c14..00000000 --- a/src/member/space/person/side_class.htm +++ /dev/null @@ -1,44 +0,0 @@ -= 0) -{ - $channelAdd = ''; - if($channelid > 2) $channelAdd = '&channelid='.$channelid; -?> - -
-
日志分类
-
-
    - 0) - { - foreach ($mtypearr as $mty) - { - if(!empty($channelid) && $mty['channelid'] != $channelid) continue; - echo "
  • {$mty['mtypename']}
  • \r\n"; - } - } - ?> -
  • 所有文档>>
  • -
-
-
- - \ No newline at end of file diff --git a/src/member/space/person/side_icon.htm b/src/member/space/person/side_icon.htm deleted file mode 100755 index ca962358..00000000 --- a/src/member/space/person/side_icon.htm +++ /dev/null @@ -1,24 +0,0 @@ - -
-
博主资料
-

{dede:var.uname /}

{dede:if $_vars['face']=='' } <?php echo $row['uname']; ?>还没设置头像 {else} {dede:var.uname/}的头像 {/dede:if}
-
-
{dede:var.msg /}
- -
-
-
    -
  • 会员等级:{dede:var.membername/}
  • -
  • 会员积分:{dede:var.scores/}分
  • -
  • 空间访问:{dede:var.homecount/}次
  • -
-
-
- - - diff --git a/src/member/space/person/side_links.htm b/src/member/space/person/side_links.htm deleted file mode 100755 index 4f4e432e..00000000 --- a/src/member/space/person/side_links.htm +++ /dev/null @@ -1,15 +0,0 @@ - -
-
个人书签
-
-
    - Execute('fl',"Select * From `#@__member_flink` where mid='{$_vars['mid']}' "); - while($arr = $dsql->GetArray('fl')) - { - echo "
  • {$arr['title']}
  • \r\n"; - } - ?> -
-
-
\ No newline at end of file diff --git a/src/member/space/person/side_news.htm b/src/member/space/person/side_news.htm deleted file mode 100755 index 3c1b750b..00000000 --- a/src/member/space/person/side_news.htm +++ /dev/null @@ -1,8 +0,0 @@ - -
-
空间公告
-
- {dede:var.spacenews /} -
-
- diff --git a/src/member/space/person/side_search.htm b/src/member/space/person/side_search.htm deleted file mode 100755 index 55e3c2f3..00000000 --- a/src/member/space/person/side_search.htm +++ /dev/null @@ -1,16 +0,0 @@ - -
-
文档搜索
-
-
- -
- -
-
-
-
- diff --git a/src/member/space/person/side_visitor.htm b/src/member/space/person/side_visitor.htm deleted file mode 100755 index 0bd708a9..00000000 --- a/src/member/space/person/side_visitor.htm +++ /dev/null @@ -1,17 +0,0 @@ - -
-
最近访客
-
- {dede:newvisitor row=6} -
-
{dede:field.uname/}的头像
-
-
{dede:field.uname/}
-

{dede:field.sign function="cn_substr(@me,60)" /}

-

访问:{dede:var.logintime function="MyDate('m-d h:i',@me)" /}

-
-
-
- {/dede:newvisitor} -
-
\ No newline at end of file diff --git a/src/member/space/person/space-userinfo.htm b/src/member/space/person/space-userinfo.htm deleted file mode 100755 index d8e7d139..00000000 --- a/src/member/space/person/space-userinfo.htm +++ /dev/null @@ -1,51 +0,0 @@ - -
-
个人资料
-
{dede:if $_vars['face']=='' } <?php echo $row['uname']; ?>还没设置头像 {else} {dede:var.uname/}的头像 {/dede:if} -
-

{dede:var.uname /}

- -
-
-
    -
  • 会员等级:{dede:var.membername/}
  • -
  • 会员积分:{dede:var.scores/}分
  • -
  • 空间访问:{dede:var.homecount/}次
  • -
-
-
-
-
公告
-
{dede:var.spacenews/}
-
-
-
链接
-
-
    - Execute('fl',"Select * From `#@__member_flink` where mid='{$_vars['mid']}' "); - while($arr = $dsql->GetArray('fl')) - {echo "
  • {$arr['title']}
  • \r\n";} - ?> -
-
-
-
-
访客
-
{dede:newvisitor row=6} -
-
{dede:field.uname/}的头像
-
-
{dede:field.uname/}
-

{dede:field.sign function="cn_substr(@me,60)" /}

-

访问:{dede:var.logintime function="MyDate('m-d h:i',@me)" /}

-
-
-
- {/dede:newvisitor}
-
\ No newline at end of file diff --git a/src/member/space/pwblue/blog.htm b/src/member/space/pwblue/blog.htm deleted file mode 100755 index fe202c48..00000000 --- a/src/member/space/pwblue/blog.htm +++ /dev/null @@ -1,116 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

日志文章

-
- - -
-
{dede:global.arcrow[pubdate] function="MyDate('y-m-d h:i',@me)" /}
-

- {dede:global.arcrow[title] /} -

- - - - -
-

{dede:global.arcrow[body] /}

-
-
- - -
-0) { ?> -
一共有 条评论
- -
-
- -
-
- - - - Says: -
-
- -
- -
- -
-
-
-
- -
-
-
发表评论
-
-
- - - - - {dede:var.uname /}: -
-
- -
-
-
- 表情: -
    -
  • -
  • -
  • -
  • -
  • -
  • -
  • -
-
- - - - - - - - -
验证码: 匿名评论
- -
-
-
- - -
-
- - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/pwblue/demo.png b/src/member/space/pwblue/demo.png deleted file mode 100755 index c6ff24d4..00000000 Binary files a/src/member/space/pwblue/demo.png and /dev/null differ diff --git a/src/member/space/pwblue/footer.htm b/src/member/space/pwblue/footer.htm deleted file mode 100755 index 5447359b..00000000 --- a/src/member/space/pwblue/footer.htm +++ /dev/null @@ -1,8 +0,0 @@ -
-
- -
- - \ No newline at end of file diff --git a/src/member/space/pwblue/guestbook.htm b/src/member/space/pwblue/guestbook.htm deleted file mode 100755 index 3606696c..00000000 --- a/src/member/space/pwblue/guestbook.htm +++ /dev/null @@ -1,82 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm' /} - {dede:include file='side_news.htm' /} - {dede:include file='side_visitor.htm' /} -
- - -
-
-

留言列表

- -
- -
-
- {dede:datalist} - -
-
- '; - }else{ - echo ''.$fields['uname'].'的头像'; - } ?> -
-
- {dede:field.uname/} - {dede:field.dtime function="MyDate('Y-m-d H:i',@me)" /} -
-
-
{dede:field.msg function="Text2Html(@me)" /}
- -
- -
-
-
- {/dede:datalist} -
{dede:pagelist/}
-
-
发表留言
-
-
- {dede:var.uname /}: - - - - -
-
标题:
-
- - -
- -
- - - - - - - -
验证码: 
-
- -
-
- -
- -
- - - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/pwblue/header.htm b/src/member/space/pwblue/header.htm deleted file mode 100755 index 9719583d..00000000 --- a/src/member/space/pwblue/header.htm +++ /dev/null @@ -1,48 +0,0 @@ - - - - -{dede:var.spacename /} {dede:var.curtitle /} - - - - -
-
- - -
- \ No newline at end of file diff --git a/src/member/space/pwblue/images/addto.gif b/src/member/space/pwblue/images/addto.gif deleted file mode 100755 index cbfedc52..00000000 Binary files a/src/member/space/pwblue/images/addto.gif and /dev/null differ diff --git a/src/member/space/pwblue/images/albumn-bg.gif b/src/member/space/pwblue/images/albumn-bg.gif deleted file mode 100755 index 98e11622..00000000 Binary files a/src/member/space/pwblue/images/albumn-bg.gif and /dev/null differ diff --git a/src/member/space/pwblue/images/bg.jpg b/src/member/space/pwblue/images/bg.jpg deleted file mode 100755 index 8dc94955..00000000 Binary files a/src/member/space/pwblue/images/bg.jpg and /dev/null differ diff --git a/src/member/space/pwblue/images/bgm.gif b/src/member/space/pwblue/images/bgm.gif deleted file mode 100755 index ee1b9cb6..00000000 Binary files a/src/member/space/pwblue/images/bgm.gif and /dev/null differ diff --git a/src/member/space/pwblue/images/boxbg.png b/src/member/space/pwblue/images/boxbg.png deleted file mode 100755 index ce358250..00000000 Binary files a/src/member/space/pwblue/images/boxbg.png and /dev/null differ diff --git a/src/member/space/pwblue/images/close.jpg b/src/member/space/pwblue/images/close.jpg deleted file mode 100755 index ce11ae5e..00000000 Binary files a/src/member/space/pwblue/images/close.jpg and /dev/null differ diff --git a/src/member/space/pwblue/images/del.png b/src/member/space/pwblue/images/del.png deleted file mode 100755 index b407245a..00000000 Binary files a/src/member/space/pwblue/images/del.png and /dev/null differ diff --git a/src/member/space/pwblue/images/jian.png b/src/member/space/pwblue/images/jian.png deleted file mode 100755 index 241d53ec..00000000 Binary files a/src/member/space/pwblue/images/jian.png and /dev/null differ diff --git a/src/member/space/pwblue/images/message.gif b/src/member/space/pwblue/images/message.gif deleted file mode 100755 index b3080acd..00000000 Binary files a/src/member/space/pwblue/images/message.gif and /dev/null differ diff --git a/src/member/space/pwblue/images/rss.png b/src/member/space/pwblue/images/rss.png deleted file mode 100755 index 41984cd5..00000000 Binary files a/src/member/space/pwblue/images/rss.png and /dev/null differ diff --git a/src/member/space/pwblue/images/save.jpg b/src/member/space/pwblue/images/save.jpg deleted file mode 100755 index 086b9c92..00000000 Binary files a/src/member/space/pwblue/images/save.jpg and /dev/null differ diff --git a/src/member/space/pwblue/images/sigline.gif b/src/member/space/pwblue/images/sigline.gif deleted file mode 100755 index 173d91c0..00000000 Binary files a/src/member/space/pwblue/images/sigline.gif and /dev/null differ diff --git a/src/member/space/pwblue/images/style.css b/src/member/space/pwblue/images/style.css deleted file mode 100755 index bc4de915..00000000 --- a/src/member/space/pwblue/images/style.css +++ /dev/null @@ -1,182 +0,0 @@ -body{font-family: Geneva, Arial, Helvetica, sans-serif, serif;font-size:12px;line-height:1.5em;background:#F1ECD6 url(bg.jpg) repeat-x 10% 0;color:#000;} -h1,h2,h3,h4,h5,h6,form,body,dd,dt,dl,li,ul{padding:0;margin:0} -td,th,div{word-break:break-all;word-wrap:break-word} -img{border:0; background:#D7EDE8} -.c{clear:both;height:1px;font:0px/0px Arial;overflow:hidden} -.tal,.tl{text-align:left} -.tac,.tc{text-align:center} -.tar,.tr{text-align:right} -.fr,.right{float:right} -.fl,.left{float:left} -.b{ font-weight:bold} -.tdn{ text-decoration:none} -.small{ font-size:10px;} -.big{ font-size:14px;} -.fsn{ font-size:12px} -.fn{ font-weight:normal} -.lh0{ line-height:0} -.yellow {color:#0c2f86} -.gray{ color:#aaa} -.keep{ word-break:keep-all; word-spacing:normal} -.ip{ padding:2px; border:1px solid #fff; background:none} -.bt{background:#012E53;color:#fff;font-size:12px; } -/*a link 基本连接颜色*/ -a{color:#0C5896} -a:hover{color:#fff; background:#0C5896} -a.noul{ text-decoration:none} -a.active{background:#0C5896; color:#fff} -a.active:hover{color:#0C5896; background:none} - -h1{color:#0c2f86;font-size:24.5px; padding:.6em 0 0; margin-top:1em} -h2{ font-size:15px; padding:.5em .6em .3em; color:#0c2f86; } -h3{ font-size:14px; color:#000} -h4{ font:16px Georgia; display:inline} -.bb{ border-bottom:1px solid #fff; padding:0 0 .6em; margin:0 0 .3em; line-height:2em;} -#container{ width:96%;margin:0 auto; max-width:900px;} -#header{ height:150px;margin-bottom:1em} -#title{ width:98%; height:120px; margin:auto; overflow:hidden} -#guide{ padding:0; margin:0; border-bottom:1px solid #0c2f86; float:left; width:100%;} -#guide li{ display:inline} -#guide li a{ float:left; color:#0c2f86; text-decoration:none;display:block; font:13px/1.2em Arial; padding:.4em 1em; } -#guide li a:hover{ color:#fff;background:#49B9C5;text-decoration:none} -#guide li.active a{background:#3889A5;color:#fff } -#site-dsc{color:#0298D3;margin-top:1em; font-size:14px;} -#toolbar{ margin-top:1em} - -#main{ width:73.5%;} -#side{ width:25%;} -.box{ border:1px #fff solid; margin:0 0 .7em;background:url(boxbg.png);width:100%; overflow:hidden; height:auto } -/*for ie 6.0*/ -* html #container { width:900px} -* html .box { background:#D5EDE6; filter:alpha(opacity=80);} -* html .profile-pic div{ position:relative} -/*for ie 6.0*/ -.text{ margin:.5em 1em 1em;} -#main .text { margin: 1em;} -#side .list { margin:1em .5em 1.5em 2.5em;} -#side .list ul{ margin:0 0 1em 1em} -#side .list ul li{ margin:.5em 0} -#side .list li{ margin:.5em 0} -.profile-pic{margin:0 auto 1em;padding:1px;width:95%;} -.profile-pic div{ margin:0 auto 0;width:100%;padding:0;overflow:hidden;text-align:center;line-height:0} -.profile-pic div img{border:1px solid #ccc;padding:0; margin:0;} -.profile dd{ margin:.3em 0 0; line-height:120%} - -/*#calendar */ -.calendar table{ width:98%; margin:0 auto 1em; table-layout:fixed} -.calendar table td{ height: 15px;font:11px/150% Tahoma;text-align:center;} -.calendar table th{ text-align: center} -.calendar table td a{color:#fff;font:11px/12px Arial;background:#0C5896;padding:0px 3px 2px} -.calendar table td a:hover{background:#012E53;text-decoration:none} - -/*blog*/ - -.blog-content{ margin:2em 0; table-layout:fixed; width:100%; vertical-align:top} -.blog-content td{ font-size:13px; line-height:1.5em;overflow:hidden} -.blog-content td img { padding:5px; border:1px solid #28AFC5; line-height:0; background:#fff} -.blog-content td a:hover img { border-color: #666} - - -#footer{ margin-top:2em; border-top:1px solid #EDDEB4; padding:.5em;} -#footer ul,#footer li { display:inline; list-style:none ; margin:0 0 0 1em} - -/*photos-album*/ -.pic-list li{ height:50px; width:50px; list-style:none; float:left} -.pic-list li a img{ padding:2px; width:40px; height:40px} -.pic-list li a:hover img { position:absolute; width:79px;height:79px; margin:-20px 0 0 -20px} -.front-cover{ padding:0 1em 2em 0} - -/*favorite*/ -.fav dl{ margin-bottom:1.5em} -.fav dt{ margin-bottom:.5em} - -/*goods*/ -.goods-list li{ width:80px; height:80px; text-align:center; line-height:110%; margin:0 .3em 1em } -.goods-list li a:hover img { margin:-20px 0 0 -42px} -.goods-dl { width:400px} -.goods-dl dd{ border-bottom:1px solid #B9E1ED; margin: 0 1em 0 0; line-height:2em} - - -/*friends*/ -.frends-list li{ float:left; width:48%;height:120px; overflow:hidden; margin-left:1%} -.frends-list li a img{ padding:2px; float:left; margin-right:.5em} - -/*comment*/ -.comment dl{ display:block;clear:both;float:left;margin:.2em 0;border:1px solid #FBFAF6;width:90%;padding:.5em} -.comment dl:hover{border-color:#ABBD87} -.comment dd{ margin:0 .8em .5em 0;padding:0;line-height:120%;} -.comment dd.comment-content{ margin:1em 0;width:90%;display:block;float:left} -.post-comment{ width:70%;margin: 0 0 1em} -.post-comment div{ margin:0 0 .5em } -.re-comment{ margin:1em 0 0;border:1px solid #fff ;padding:1em} -.re-comment b{ color:#aaa} -.re-comment div{ margin-top:.5em;} - - -/*itable*/ -.itable td,.itable th{padding:.3em .5em} -.itable td{vertical-align: middle;border-bottom: 1px solid #FAFCFB;} -.itable tr.tr1 td{ background:#E0F7FD;} -.itable td img {border:0;padding:0;background:none} - -/*pages*/ -.pages{margin-top:10px;margin-bottom:10px;text-align: center ;clear:both} -.pages *{vertical-align: middle;} -.pages a{padding:1px 4px 2px;border:1px solid #fff;margin:0 1px;text-align: center;text-decoration: none;font:normal 10px Tahoma ;} -.pages a:hover{border:#2ABFD5 1px solid;text-decoration:none;} -.pages input{border:1px solid #fff;background:none;height:14px;font: 9px Tahoma;padding-top:1px;text-align: center;} -.pages b{padding:2px ; margin: 0 3px;font:bold 10px/12px Tahoma} - -/*menu*/ -.menu{position:absolute;background:#fff;border:1px solid $tablecolor;} -.menu td, .menu li,.menu ul{background:#fff;padding:0; margin:0} -.menu li{list-style:none;} -.menu a{display:block;padding:3px 15px 3px 15px;background:#fff;} -.menu a:hover{background:$linkcolor;text-decoration:none;color:#fff;} -.menu ul.ul1 li a{display:inline;padding:0} - -.listPic dl{ width:24.5%; float:left; text-align:center; padding:0; margin:.5em 0} -.listPic dt a{ color:#333} -.listPic dd{ padding:0 0 .5em 0; margin:0; text-indent:0; height:90px; vertical-align:middle} -.listPic dd img{ width:85px;height:85px; padding:2px; border:1px solid #eee;} - -.listPic1 dl{ width:33%; float:left; text-align:center; padding:0; margin:.5em 0} -.listPic1 dt a{ color:#333} -.listPic1 dd{ padding:0 0 .5em 0; margin:0; text-indent:0; height:55px; vertical-align:middle} -.listPic1 dd img{ width:50px;height:50px; padding:2px; border:1px solid #eee;} -.listPic-albumn dd { height:105px;} -.listPic-albumn dd img { width:90px; height:90px; padding:4px 4px 8px; border:0; background:url(albumn-bg.gif)} - -.moduleA{ margin:.2em; border:1px solid #A6CBE7; line-height:110%; border-bottom-color:#66A0CC; border-right-color:#66A0CC;} -.moduleA h3{ color: #0066FF;padding:.5em; margin:0;font-family:Tahoma;font-size:12px;cursor:move } -.tableA { table-layout:fixed} -.tableAtd{ border:1px solid #D4E8F7;height:50px;} -.editButton{ float:right; font:12px/120% Tahoma; color:#CCC; text-decoration:none ; padding-left:0.5em; background:url($imgpath/button_edit.gif) no-repeat 0 .1em} -.editButton:hover{ background-position:.1em .2em} -.editBox{ background:#FFFFCF; margin:0 .2em .2em ; padding:.2em } -.editArea {border:1px solid #eee; width:96%; margin:auto;padding:.2em; background:#fff} -.menu1{position:absolute;border:1px solid #CCCCCC;background:#FFFFFF;z-index:1000;width:200px;height:255px;overflow-Y:auto} -.menu1 h3{background:$headcolor;text-align:left;color:$headfontone;padding:5px 7px 3px 7px;cursor:move} -.menu1 div{padding:5px 10px;} -.checkon{border:1px solid #0A9800;background:#CAFFC0;cursor:move} -.move{position:absolute;} - -#colorbox{width:91px;height:78px;padding:3px 0 0 3px;overflow:hidden;} -#colorbox div{cursor:pointer;width:8px;height:8px;float:left;margin:0 3px 3px 0;border:1px #000 solid;font:0/8px arial} - -.smile{ height:23px;padding:7px 0 0 8px;text-align:left;background:#E0F0F9 url(th1.png);cursor:move} -.smile div{ width:56px;height:18px;text-align:center;padding:5px 0 0;cursor:pointer;} -.smile div.lian{ background:#ffffff url(tag.jpg) no-repeat;cursor:auto;} - -.user-info{ position:absolute;line-height:160%; margin-left:-1.5em; margin-top:-1em} -.user-infoWrap{background:#FFF; border:1px solid #004C7D; border-top:1px #A6CBE7 solid; border-left:1px solid #A6CBE7; padding:.5em 1em; margin-left:20px;display:block;} -.user-info .co{position:absolute; width:10px;height:20px; margin-left:-1.8em; margin-top:2em; background:url(user-info-co.png)} - -/*menu_sm*/ -.menu_sm{ position:absolute;background:#fffcd9;border-bottom:1px solid #e7d62b; width:100%;} -.menu_sm a{padding:5px 15px 5px 15px; color:#f79305;} -.menu_sm a:hover{text-decoration:none;color:#fff;} - -@media screen and (min-width:0px){ -.goods-list li a:hover img{ margin:-20px -20px 0 0} -} \ No newline at end of file diff --git a/src/member/space/pwblue/images/tag.jpg b/src/member/space/pwblue/images/tag.jpg deleted file mode 100755 index 0f2984d3..00000000 Binary files a/src/member/space/pwblue/images/tag.jpg and /dev/null differ diff --git a/src/member/space/pwblue/images/tag1.jpg b/src/member/space/pwblue/images/tag1.jpg deleted file mode 100755 index 0f2984d3..00000000 Binary files a/src/member/space/pwblue/images/tag1.jpg and /dev/null differ diff --git a/src/member/space/pwblue/images/talk.gif b/src/member/space/pwblue/images/talk.gif deleted file mode 100755 index e23c73ee..00000000 Binary files a/src/member/space/pwblue/images/talk.gif and /dev/null differ diff --git a/src/member/space/pwblue/images/team.gif b/src/member/space/pwblue/images/team.gif deleted file mode 100755 index 53a54c85..00000000 Binary files a/src/member/space/pwblue/images/team.gif and /dev/null differ diff --git a/src/member/space/pwblue/images/wap.png b/src/member/space/pwblue/images/wap.png deleted file mode 100755 index 37779fa4..00000000 Binary files a/src/member/space/pwblue/images/wap.png and /dev/null differ diff --git a/src/member/space/pwblue/images/write.gif b/src/member/space/pwblue/images/write.gif deleted file mode 100755 index 698cb2a0..00000000 Binary files a/src/member/space/pwblue/images/write.gif and /dev/null differ diff --git a/src/member/space/pwblue/index.htm b/src/member/space/pwblue/index.htm deleted file mode 100755 index f1fa0db5..00000000 --- a/src/member/space/pwblue/index.htm +++ /dev/null @@ -1,67 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_news.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

-最新日志文章列表 -发表日志 -

- -{dede:spacenewart row=6 titlelen=60 infolen=200} - -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#",$fields['litpic']) } - - {/dede:if} - {dede:field.description/} -

-
-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:spacenewart} -
- -
- -
-
- - -{dede:include file='footer.htm' /} diff --git a/src/member/space/pwblue/info.txt b/src/member/space/pwblue/info.txt deleted file mode 100755 index 594292b1..00000000 --- a/src/member/space/pwblue/info.txt +++ /dev/null @@ -1,4 +0,0 @@ -name:蔚蓝风格 -author:ylj798 PW修改版 -type:个人 -date:2009年7月 \ No newline at end of file diff --git a/src/member/space/pwblue/infos.htm b/src/member/space/pwblue/infos.htm deleted file mode 100755 index 3449cf47..00000000 --- a/src/member/space/pwblue/infos.htm +++ /dev/null @@ -1,59 +0,0 @@ -{dede:include file='header.htm'/} - - - - -
- {dede:include file='side_icon.htm'/} -
- - -
-
-

基本资料

- -
- - - - -
- 昵称:
- 性别:
- 生日:
- 所在城市: - -
- 交友宣言:
-
-
-
- -

联系方式

- -
- - - - -
- Email:
- QQ:
- MSN:
-
-
-
- -
-
- -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/pwblue/listalbum.htm b/src/member/space/pwblue/listalbum.htm deleted file mode 100755 index 88b23dae..00000000 --- a/src/member/space/pwblue/listalbum.htm +++ /dev/null @@ -1,37 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

相册列表

- -
- - - - -
-
- {dede:datalist titlelen = '20'} -
-
-
{dede:field.title/}
-
- {/dede:datalist} -
-
-
-
-
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/pwblue/listarchives.htm b/src/member/space/pwblue/listarchives.htm deleted file mode 100755 index 69df2437..00000000 --- a/src/member/space/pwblue/listarchives.htm +++ /dev/null @@ -1,60 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

文档列表

- -{dede:datalist} - -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#",$fields['litpic']) } - - {/dede:if} - {dede:field.description /} -

-

<<详细内容 -

-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:datalist} -
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm' /} \ No newline at end of file diff --git a/src/member/space/pwblue/listarticle.htm b/src/member/space/pwblue/listarticle.htm deleted file mode 100755 index a51b9337..00000000 --- a/src/member/space/pwblue/listarticle.htm +++ /dev/null @@ -1,57 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

日志文章列表 -发表日志 -

- -{dede:datalist} -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#",$fields['litpic']) } - - {/dede:if} - {dede:field.body function='cn_substr(@me, 500); /} -

-

<<详细内容 -

-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:datalist} -
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm' /} \ No newline at end of file diff --git a/src/member/space/pwblue/side_class.htm b/src/member/space/pwblue/side_class.htm deleted file mode 100755 index 7a162db6..00000000 --- a/src/member/space/pwblue/side_class.htm +++ /dev/null @@ -1,42 +0,0 @@ -= 0) -{ - $channelAdd = ''; - if($channelid > 2) $channelAdd = '&channelid='.$channelid; -?> - -
-

日志分类

-
    - 0) - { - foreach ($mtypearr as $mty) - { - if(!empty($channelid) && $mty['channelid'] != $channelid) continue; - echo "
  • {$mty['mtypename']}
  • \r\n"; - } - } - ?> -
  • 所有文档>>
  • -
-
- - \ No newline at end of file diff --git a/src/member/space/pwblue/side_icon.htm b/src/member/space/pwblue/side_icon.htm deleted file mode 100755 index 10484d5c..00000000 --- a/src/member/space/pwblue/side_icon.htm +++ /dev/null @@ -1,36 +0,0 @@ - -
-

博主资料

-
-
-
- -
- {dede:if $_vars['face']=='' } - nopic - {else} - {dede:var.uname/} - {/dede:if} -
-
-
{dede:var.msg /}
-
-
- 留言 | - 短消息 | - 加好友 | - 加黑名单 - -
-
 用户昵称:{dede:var.uname /}
-
 最后登录:{dede:var.logintime function="MyDate('y-m-d h:i',@me)" /}
-
 会员等级:{dede:var.membername/}
-
 会员积分:{dede:var.scores/} 分
-
 空间访问:{dede:var.homecount/} 次
-
-
-
-
- - - diff --git a/src/member/space/pwblue/side_news.htm b/src/member/space/pwblue/side_news.htm deleted file mode 100755 index 59690bd8..00000000 --- a/src/member/space/pwblue/side_news.htm +++ /dev/null @@ -1,8 +0,0 @@ - - - diff --git a/src/member/space/pwblue/side_search.htm b/src/member/space/pwblue/side_search.htm deleted file mode 100755 index 9f038c3f..00000000 --- a/src/member/space/pwblue/side_search.htm +++ /dev/null @@ -1,14 +0,0 @@ - - - diff --git a/src/member/space/pwblue/side_visitor.htm b/src/member/space/pwblue/side_visitor.htm deleted file mode 100755 index 5b27769b..00000000 --- a/src/member/space/pwblue/side_visitor.htm +++ /dev/null @@ -1,11 +0,0 @@ - - \ No newline at end of file diff --git a/src/member/space/pwglight/blog.htm b/src/member/space/pwglight/blog.htm deleted file mode 100755 index fe202c48..00000000 --- a/src/member/space/pwglight/blog.htm +++ /dev/null @@ -1,116 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

日志文章

-
- - -
-
{dede:global.arcrow[pubdate] function="MyDate('y-m-d h:i',@me)" /}
-

- {dede:global.arcrow[title] /} -

- - - - -
-

{dede:global.arcrow[body] /}

-
-
- - -
-0) { ?> -
一共有 条评论
- -
-
- -
-
- - - - Says: -
-
- -
- -
- -
-
-
-
- -
-
-
发表评论
-
-
- - - - - {dede:var.uname /}: -
-
- -
-
-
- 表情: -
    -
  • -
  • -
  • -
  • -
  • -
  • -
  • -
-
- - - - - - - - -
验证码: 匿名评论
- -
-
-
- - -
-
- - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/pwglight/demo.png b/src/member/space/pwglight/demo.png deleted file mode 100755 index 1827bd99..00000000 Binary files a/src/member/space/pwglight/demo.png and /dev/null differ diff --git a/src/member/space/pwglight/footer.htm b/src/member/space/pwglight/footer.htm deleted file mode 100755 index 5447359b..00000000 --- a/src/member/space/pwglight/footer.htm +++ /dev/null @@ -1,8 +0,0 @@ -
-
- -
- - \ No newline at end of file diff --git a/src/member/space/pwglight/guestbook.htm b/src/member/space/pwglight/guestbook.htm deleted file mode 100755 index 3606696c..00000000 --- a/src/member/space/pwglight/guestbook.htm +++ /dev/null @@ -1,82 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm' /} - {dede:include file='side_news.htm' /} - {dede:include file='side_visitor.htm' /} -
- - -
-
-

留言列表

- -
- -
-
- {dede:datalist} - -
-
- '; - }else{ - echo ''.$fields['uname'].'的头像'; - } ?> -
-
- {dede:field.uname/} - {dede:field.dtime function="MyDate('Y-m-d H:i',@me)" /} -
-
-
{dede:field.msg function="Text2Html(@me)" /}
- -
- -
-
-
- {/dede:datalist} -
{dede:pagelist/}
-
-
发表留言
-
-
- {dede:var.uname /}: - - - - -
-
标题:
-
- - -
- -
- - - - - - - -
验证码: 
-
- -
-
- -
- -
- - - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/pwglight/header.htm b/src/member/space/pwglight/header.htm deleted file mode 100755 index e33c4cd0..00000000 --- a/src/member/space/pwglight/header.htm +++ /dev/null @@ -1,48 +0,0 @@ - - - - -{dede:var.spacename /} {dede:var.curtitle /} - - - - -
-
- - -
- \ No newline at end of file diff --git a/src/member/space/pwglight/images/addto.gif b/src/member/space/pwglight/images/addto.gif deleted file mode 100755 index cbfedc52..00000000 Binary files a/src/member/space/pwglight/images/addto.gif and /dev/null differ diff --git a/src/member/space/pwglight/images/albumn-bg.gif b/src/member/space/pwglight/images/albumn-bg.gif deleted file mode 100755 index 98e11622..00000000 Binary files a/src/member/space/pwglight/images/albumn-bg.gif and /dev/null differ diff --git a/src/member/space/pwglight/images/bg.jpg b/src/member/space/pwglight/images/bg.jpg deleted file mode 100755 index 4b064e6b..00000000 Binary files a/src/member/space/pwglight/images/bg.jpg and /dev/null differ diff --git a/src/member/space/pwglight/images/bgm.gif b/src/member/space/pwglight/images/bgm.gif deleted file mode 100755 index ee1b9cb6..00000000 Binary files a/src/member/space/pwglight/images/bgm.gif and /dev/null differ diff --git a/src/member/space/pwglight/images/boxbg.png b/src/member/space/pwglight/images/boxbg.png deleted file mode 100755 index c07117e4..00000000 Binary files a/src/member/space/pwglight/images/boxbg.png and /dev/null differ diff --git a/src/member/space/pwglight/images/close.jpg b/src/member/space/pwglight/images/close.jpg deleted file mode 100755 index ce11ae5e..00000000 Binary files a/src/member/space/pwglight/images/close.jpg and /dev/null differ diff --git a/src/member/space/pwglight/images/del.png b/src/member/space/pwglight/images/del.png deleted file mode 100755 index b407245a..00000000 Binary files a/src/member/space/pwglight/images/del.png and /dev/null differ diff --git a/src/member/space/pwglight/images/jian.png b/src/member/space/pwglight/images/jian.png deleted file mode 100755 index 241d53ec..00000000 Binary files a/src/member/space/pwglight/images/jian.png and /dev/null differ diff --git a/src/member/space/pwglight/images/message.gif b/src/member/space/pwglight/images/message.gif deleted file mode 100755 index b3080acd..00000000 Binary files a/src/member/space/pwglight/images/message.gif and /dev/null differ diff --git a/src/member/space/pwglight/images/rss.png b/src/member/space/pwglight/images/rss.png deleted file mode 100755 index 41984cd5..00000000 Binary files a/src/member/space/pwglight/images/rss.png and /dev/null differ diff --git a/src/member/space/pwglight/images/save.jpg b/src/member/space/pwglight/images/save.jpg deleted file mode 100755 index 086b9c92..00000000 Binary files a/src/member/space/pwglight/images/save.jpg and /dev/null differ diff --git a/src/member/space/pwglight/images/sigline.gif b/src/member/space/pwglight/images/sigline.gif deleted file mode 100755 index 173d91c0..00000000 Binary files a/src/member/space/pwglight/images/sigline.gif and /dev/null differ diff --git a/src/member/space/pwglight/images/style.css b/src/member/space/pwglight/images/style.css deleted file mode 100755 index 573f5b08..00000000 --- a/src/member/space/pwglight/images/style.css +++ /dev/null @@ -1,184 +0,0 @@ -body{font-family: Geneva, Arial, Helvetica, sans-serif, serif;font-size:12px;line-height:1.5em;background:#A8C05E url(bg.jpg) no-repeat center top;color:#000;} -h1,h2,h3,h4,h5,h6,form,body,dd,dt,dl,li,ul{padding:0;margin:0} -td,th,div{word-break:break-all;word-wrap:break-word} -img{border:0; background:#D7EDE8} -.c{clear:both;height:1px;font:0px/0px Arial;overflow:hidden} -.tal,.tl{text-align:left} -.tac,.tc{text-align:center} -.tar,.tr{text-align:right} -.fr,.right{float:right} -.fl,.left{float:left} -.b{ font-weight:bold} -.tdn{ text-decoration:none} -.small{ font-size:10px;} -.big{ font-size:14px;} -.fsn{ font-size:12px} -.fn{ font-weight:normal} -.lh0{ line-height:0} -.yellow {color:#fff; background:#7EA433} -.gray{ color:#73992C} -.keep{ word-break:keep-all; word-spacing:normal} -.ip{ padding:2px; border:1px solid #fff; background:none} -.bt{background:#D55E9F;color:#fff;font-size:12px;} -/*a link 基本连接颜色*/ -a{color:#0C5896} -a:hover{color:#fff; background:#0C5896} -a.noul{ text-decoration:none} -a.active{background:#0C5896; color:#fff} -a.active:hover{color:#0C5896; background:none} - -h1{color:#0c2f86;font-size:20px; padding:.6em 0 0; margin-top:2em; } - -h2{ font-size:15px; padding:.5em .6em .3em; color:#0c2f86; } -h3{ font-size:14px; color:#000} -h4{ font:16px Georgia; display:inline} -.bb{ border-bottom:1px solid #fff; padding:0 0 .6em; margin:0 0 .3em; line-height:2em;} -#container{ width:96%;margin:0 auto; max-width:900px;} -#header{ height:150px;margin-bottom:1em} -#title{ width:98%; height:120px; margin:auto; overflow:hidden} -#title a{background:#446810; color:#fff} -#guide{ padding:0; margin:0; border-bottom:1px solid #fff; float:left; width:100%;filter:alpha(opacity=90);-moz-opacity:0.9} -#guide li{ display:inline} -#guide li a{ float:left; border:1px solid #fff; border-bottom: 0; background:#D0A5AC; color:#fff; text-decoration:none;display:block; font:13px/1.2em Arial; padding:.4em 1em; margin:0 2px} -#guide li a:hover{ color:#fff;background:#49B9C5;text-decoration:none} -#guide li.active a{background:#0c1966;color:#fff } -#site-dsc{color:#fff;background:#7EA433; float:left; margin-top:.2em} -#toolbar{ margin-top:1em} - -#main{ width:73.5%;} -#side{ width:25%;} -.box{ border:1px #fff solid; margin:0 0 .7em;background:url(boxbg.png);width:100%; overflow:hidden; height:auto } -/*for ie 6.0*/ -* html #container { width:900px} -* html .box { background:#D5EDE6; filter:alpha(opacity=80);} -* html .profile-pic div{ position:relative} -/*for ie 6.0*/ -.text{ margin:.5em 1em 1em;} -#main .text { margin: 1em;} -#side .list { margin:1em .5em 1.5em 2.5em;} -#side .list ul{ margin:0 0 1em 1em} -#side .list ul li{ margin:.5em 0} -#side .list li{ margin:.5em 0} -.profile-pic{margin:0 auto 1em;padding:1px;width:95%;} -.profile-pic div{ margin:0 auto 0;width:100%;padding:0;overflow:hidden;text-align:center;line-height:0} -.profile-pic div img{border:1px solid #ccc;padding:0; margin:0;} -.profile dd{ margin:.3em 0 0; line-height:120%} - -/*#calendar */ -.calendar table{ width:98%; margin:0 auto 1em; table-layout:fixed} -.calendar table td{ height: 15px;font:11px/150% Tahoma;text-align:center;} -.calendar table th{ text-align: center} -.calendar table td a{color:#fff;font:11px/12px Arial;background:#0C5896;padding:0px 3px 2px} -.calendar table td a:hover{background:#012E53;text-decoration:none} - -/*blog*/ - -.blog-content{ margin:1.5em 0 2em; table-layout:fixed; width:100%; vertical-align:top} -.blog-content td{ font-size:13px; line-height:1.5em;overflow:hidden} -.blog-content td img { padding:5px; border:1px solid #28AFC5; line-height:0} -.blog-content td a:hover img { border-color: #666} - - -#footer{ margin-top:2em; border-top:1px solid #fff; padding:.5em;} -#footer ul,#footer li { display:inline; list-style:none ; margin:0 0 0 1em} - -/*photos-album*/ -.pic-list li{ height:50px; width:50px; list-style:none; float:left} -.pic-list li a img{ padding:2px; width:40px; height:40px} -.pic-list li a:hover img { position:absolute; width:79px;height:79px; margin:-20px 0 0 -20px} -.front-cover{ padding:0 1em 2em 0} - -/*favorite*/ -.fav dl{ margin-bottom:1.5em} -.fav dt{ margin-bottom:.5em} - -/*goods*/ -.goods-list li{ width:80px; height:80px; text-align:center; line-height:110%; margin:0 .3em 1em } -.goods-list li a:hover img { margin:-20px 0 0 -42px} -.goods-dl { width:400px} -.goods-dl dd{ border-bottom:1px solid #B9E1ED; margin: 0 1em 0 0; line-height:2em} - - -/*friends*/ -.frends-list li{ float:left; width:48%;height:120px; overflow:hidden; margin-left:1%} -.frends-list li a img{ padding:2px; float:left; margin-right:.5em} - -/*comment*/ -.comment dl{ display:block;clear:both;float:left;margin:.2em 0;border:1px solid #ACB9AC;width:90%;padding:.5em} -.comment dl:hover{border-color:#33994D} -.comment dd{ margin:0 .8em .5em 0;padding:0;line-height:120%;} -.comment dd.comment-content{ margin:1em 0;width:85%;display:block;float:left} -.post-comment{ width:70%;margin: 0 0 1em} -.post-comment div{ margin:0 0 .5em } -.re-comment{ margin:1em 0 0;border:1px solid #ACB9AC ;padding:1em} -.re-comment b{ color:#73992C} -.re-comment div{ margin-top:.5em;} - - -/*itable*/ -.itable td,.itable th{padding:.3em .5em} -.itable td{vertical-align: middle;border-bottom: 1px solid #749D88;} -.itable tr.tr1 td{ background:#749D88;} -.itable td img {border:0;padding:0;background:none} - -/*pages*/ -.pages{margin-top:10px;margin-bottom:10px;text-align: center ;clear:both} -.pages *{vertical-align: middle;} -.pages a{padding:1px 4px 2px;border:1px solid #fff;margin:0 1px;text-align: center;text-decoration: none;font:normal 10px Tahoma ;} -.pages a:hover{border:#2ABFD5 1px solid;text-decoration:none;} -.pages input{border:1px solid #fff;background:none;height:14px;font: 9px Tahoma;padding-top:1px;text-align: center;} -.pages b{padding:2px ; margin: 0 3px;font:bold 10px/12px Tahoma} - -/*menu*/ -.menu{position:absolute;background:#fff;border:1px solid $tablecolor;} -.menu td, .menu li,.menu ul{background:#fff;padding:0; margin:0} -.menu li{list-style:none;} -.menu a{display:block;padding:3px 15px 3px 15px;background:#fff;} -.menu a:hover{background:$linkcolor;text-decoration:none;color:#fff;} -.menu ul.ul1 li a{display:inline;padding:0} - -.listPic dl{ width:24.5%; float:left; text-align:center; padding:0; margin:.5em 0} -.listPic dt a{ color:#333} -.listPic dd{ padding:0 0 .5em 0; margin:0; text-indent:0; height:90px; vertical-align:middle} -.listPic dd img{ width:85px;height:85px; padding:2px; border:1px solid #eee;} - -.listPic1 dl{ width:33%; float:left; text-align:center; padding:0; margin:.5em 0} -.listPic1 dt a{ color:#333} -.listPic1 dd{ padding:0 0 .5em 0; margin:0; text-indent:0; height:55px; vertical-align:middle} -.listPic1 dd img{ width:50px;height:50px; padding:2px; border:1px solid #eee;} -.listPic-albumn dd { height:105px;} -.listPic-albumn dd img { width:90px; height:90px; padding:4px 4px 8px; border:0; background:url(albumn-bg.gif)} - -.moduleA{ margin:.2em; border:1px solid #A6CBE7; line-height:110%; border-bottom-color:#66A0CC; border-right-color:#66A0CC;} -.moduleA h3{ color: #0066FF;padding:.5em; margin:0;font-family:Tahoma;font-size:12px;cursor:move } -.tableA { table-layout:fixed} -.tableAtd{ border:1px solid #D4E8F7;height:50px;} -.editButton{ float:right; font:12px/120% Tahoma; color:#CCC; text-decoration:none ; padding-left:0.5em; background:url($imgpath/button_edit.gif) no-repeat 0 .1em} -.editButton:hover{ background-position:.1em .2em} -.editBox{ background:#FFFFCF; margin:0 .2em .2em ; padding:.2em } -.editArea {border:1px solid #eee; width:96%; margin:auto;padding:.2em; background:#fff} -.menu1{position:absolute;border:1px solid #CCCCCC;background:#FFFFFF;z-index:1000;width:200px;height:255px;overflow-Y:auto} -.menu1 h3{background:$headcolor;text-align:left;color:$headfontone;padding:5px 7px 3px 7px;cursor:move} -.menu1 div{padding:5px 10px;} -.checkon{border:1px solid #0A9800;background:#CAFFC0;cursor:move} -.move{position:absolute;} - -#colorbox{width:91px;height:78px;padding:3px 0 0 3px;overflow:hidden;} -#colorbox div{cursor:pointer;width:8px;height:8px;float:left;margin:0 3px 3px 0;border:1px #000 solid;font:0/8px arial} - -.smile{ height:23px;padding:7px 0 0 8px;text-align:left;background:#E0F0F9 url(th1.png);cursor:move} -.smile div{ width:56px;height:18px;text-align:center;padding:5px 0 0;cursor:pointer;} -.smile div.lian{ background:#ffffff url(tag.jpg) no-repeat;cursor:auto;} - -.user-info{ position:absolute;line-height:160%; margin-left:-1.5em; margin-top:-1em} -.user-infoWrap{background:#FFF; border:1px solid #004C7D; border-top:1px #A6CBE7 solid; border-left:1px solid #A6CBE7; padding:.5em 1em; margin-left:20px;display:block;} -.user-info .co{position:absolute; width:10px;height:20px; margin-left:-1.8em; margin-top:2em; background:url(user-info-co.png)} - -/*menu_sm*/ -.menu_sm{ position:absolute;background:#fffcd9;border-bottom:1px solid #e7d62b; width:100%;} -.menu_sm a{padding:5px 15px 5px 15px; color:#f79305;} -.menu_sm a:hover{text-decoration:none;color:#fff;} - -@media screen and (min-width:0px){ -.goods-list li a:hover img{ margin:-20px -20px 0 0} -} diff --git a/src/member/space/pwglight/images/tag.jpg b/src/member/space/pwglight/images/tag.jpg deleted file mode 100755 index 0f2984d3..00000000 Binary files a/src/member/space/pwglight/images/tag.jpg and /dev/null differ diff --git a/src/member/space/pwglight/images/tag1.jpg b/src/member/space/pwglight/images/tag1.jpg deleted file mode 100755 index 0f2984d3..00000000 Binary files a/src/member/space/pwglight/images/tag1.jpg and /dev/null differ diff --git a/src/member/space/pwglight/images/talk.gif b/src/member/space/pwglight/images/talk.gif deleted file mode 100755 index e23c73ee..00000000 Binary files a/src/member/space/pwglight/images/talk.gif and /dev/null differ diff --git a/src/member/space/pwglight/images/team.gif b/src/member/space/pwglight/images/team.gif deleted file mode 100755 index 53a54c85..00000000 Binary files a/src/member/space/pwglight/images/team.gif and /dev/null differ diff --git a/src/member/space/pwglight/images/wap.png b/src/member/space/pwglight/images/wap.png deleted file mode 100755 index 37779fa4..00000000 Binary files a/src/member/space/pwglight/images/wap.png and /dev/null differ diff --git a/src/member/space/pwglight/images/write.gif b/src/member/space/pwglight/images/write.gif deleted file mode 100755 index 698cb2a0..00000000 Binary files a/src/member/space/pwglight/images/write.gif and /dev/null differ diff --git a/src/member/space/pwglight/index.htm b/src/member/space/pwglight/index.htm deleted file mode 100755 index f1fa0db5..00000000 --- a/src/member/space/pwglight/index.htm +++ /dev/null @@ -1,67 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_news.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

-最新日志文章列表 -发表日志 -

- -{dede:spacenewart row=6 titlelen=60 infolen=200} - -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#",$fields['litpic']) } - - {/dede:if} - {dede:field.description/} -

-
-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:spacenewart} -
- -
- -
-
- - -{dede:include file='footer.htm' /} diff --git a/src/member/space/pwglight/info.txt b/src/member/space/pwglight/info.txt deleted file mode 100755 index 25f79ba2..00000000 --- a/src/member/space/pwglight/info.txt +++ /dev/null @@ -1,4 +0,0 @@ -name:芳草丛明调 -author:ylj798 PW修改版 -type:个人 -date:2009年7月 \ No newline at end of file diff --git a/src/member/space/pwglight/infos.htm b/src/member/space/pwglight/infos.htm deleted file mode 100755 index 3449cf47..00000000 --- a/src/member/space/pwglight/infos.htm +++ /dev/null @@ -1,59 +0,0 @@ -{dede:include file='header.htm'/} - - - - -
- {dede:include file='side_icon.htm'/} -
- - -
-
-

基本资料

- -
- - - - -
- 昵称:
- 性别:
- 生日:
- 所在城市: - -
- 交友宣言:
-
-
-
- -

联系方式

- -
- - - - -
- Email:
- QQ:
- MSN:
-
-
-
- -
-
- -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/pwglight/listalbum.htm b/src/member/space/pwglight/listalbum.htm deleted file mode 100755 index 88b23dae..00000000 --- a/src/member/space/pwglight/listalbum.htm +++ /dev/null @@ -1,37 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

相册列表

- -
- - - - -
-
- {dede:datalist titlelen = '20'} -
-
-
{dede:field.title/}
-
- {/dede:datalist} -
-
-
-
-
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/pwglight/listarchives.htm b/src/member/space/pwglight/listarchives.htm deleted file mode 100755 index 69df2437..00000000 --- a/src/member/space/pwglight/listarchives.htm +++ /dev/null @@ -1,60 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

文档列表

- -{dede:datalist} - -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#",$fields['litpic']) } - - {/dede:if} - {dede:field.description /} -

-

<<详细内容 -

-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:datalist} -
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm' /} \ No newline at end of file diff --git a/src/member/space/pwglight/listarticle.htm b/src/member/space/pwglight/listarticle.htm deleted file mode 100755 index a51b9337..00000000 --- a/src/member/space/pwglight/listarticle.htm +++ /dev/null @@ -1,57 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

日志文章列表 -发表日志 -

- -{dede:datalist} -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#",$fields['litpic']) } - - {/dede:if} - {dede:field.body function='cn_substr(@me, 500); /} -

-

<<详细内容 -

-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:datalist} -
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm' /} \ No newline at end of file diff --git a/src/member/space/pwglight/side_class.htm b/src/member/space/pwglight/side_class.htm deleted file mode 100755 index 7a162db6..00000000 --- a/src/member/space/pwglight/side_class.htm +++ /dev/null @@ -1,42 +0,0 @@ -= 0) -{ - $channelAdd = ''; - if($channelid > 2) $channelAdd = '&channelid='.$channelid; -?> - -
-

日志分类

-
    - 0) - { - foreach ($mtypearr as $mty) - { - if(!empty($channelid) && $mty['channelid'] != $channelid) continue; - echo "
  • {$mty['mtypename']}
  • \r\n"; - } - } - ?> -
  • 所有文档>>
  • -
-
- - \ No newline at end of file diff --git a/src/member/space/pwglight/side_icon.htm b/src/member/space/pwglight/side_icon.htm deleted file mode 100755 index 10484d5c..00000000 --- a/src/member/space/pwglight/side_icon.htm +++ /dev/null @@ -1,36 +0,0 @@ - -
-

博主资料

-
-
-
- -
- {dede:if $_vars['face']=='' } - nopic - {else} - {dede:var.uname/} - {/dede:if} -
-
-
{dede:var.msg /}
-
-
- 留言 | - 短消息 | - 加好友 | - 加黑名单 - -
-
 用户昵称:{dede:var.uname /}
-
 最后登录:{dede:var.logintime function="MyDate('y-m-d h:i',@me)" /}
-
 会员等级:{dede:var.membername/}
-
 会员积分:{dede:var.scores/} 分
-
 空间访问:{dede:var.homecount/} 次
-
-
-
-
- - - diff --git a/src/member/space/pwglight/side_news.htm b/src/member/space/pwglight/side_news.htm deleted file mode 100755 index 59690bd8..00000000 --- a/src/member/space/pwglight/side_news.htm +++ /dev/null @@ -1,8 +0,0 @@ - - - diff --git a/src/member/space/pwglight/side_search.htm b/src/member/space/pwglight/side_search.htm deleted file mode 100755 index 9f038c3f..00000000 --- a/src/member/space/pwglight/side_search.htm +++ /dev/null @@ -1,14 +0,0 @@ - - - diff --git a/src/member/space/pwglight/side_visitor.htm b/src/member/space/pwglight/side_visitor.htm deleted file mode 100755 index 5b27769b..00000000 --- a/src/member/space/pwglight/side_visitor.htm +++ /dev/null @@ -1,11 +0,0 @@ - - \ No newline at end of file diff --git a/src/member/space/pwlake/blog.htm b/src/member/space/pwlake/blog.htm deleted file mode 100755 index fe202c48..00000000 --- a/src/member/space/pwlake/blog.htm +++ /dev/null @@ -1,116 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

日志文章

-
- - -
-
{dede:global.arcrow[pubdate] function="MyDate('y-m-d h:i',@me)" /}
-

- {dede:global.arcrow[title] /} -

- - - - -
-

{dede:global.arcrow[body] /}

-
-
- - -
-0) { ?> -
一共有 条评论
- -
-
- -
-
- - - - Says: -
-
- -
- -
- -
-
-
-
- -
-
-
发表评论
-
-
- - - - - {dede:var.uname /}: -
-
- -
-
-
- 表情: -
    -
  • -
  • -
  • -
  • -
  • -
  • -
  • -
-
- - - - - - - - -
验证码: 匿名评论
- -
-
-
- - -
-
- - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/pwlake/demo.png b/src/member/space/pwlake/demo.png deleted file mode 100755 index c5b787f4..00000000 Binary files a/src/member/space/pwlake/demo.png and /dev/null differ diff --git a/src/member/space/pwlake/footer.htm b/src/member/space/pwlake/footer.htm deleted file mode 100755 index 5447359b..00000000 --- a/src/member/space/pwlake/footer.htm +++ /dev/null @@ -1,8 +0,0 @@ -
-
- -
- - \ No newline at end of file diff --git a/src/member/space/pwlake/guestbook.htm b/src/member/space/pwlake/guestbook.htm deleted file mode 100755 index 3606696c..00000000 --- a/src/member/space/pwlake/guestbook.htm +++ /dev/null @@ -1,82 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm' /} - {dede:include file='side_news.htm' /} - {dede:include file='side_visitor.htm' /} -
- - -
-
-

留言列表

- -
- -
-
- {dede:datalist} - -
-
- '; - }else{ - echo ''.$fields['uname'].'的头像'; - } ?> -
-
- {dede:field.uname/} - {dede:field.dtime function="MyDate('Y-m-d H:i',@me)" /} -
-
-
{dede:field.msg function="Text2Html(@me)" /}
- -
- -
-
-
- {/dede:datalist} -
{dede:pagelist/}
-
-
发表留言
-
-
- {dede:var.uname /}: - - - - -
-
标题:
-
- - -
- -
- - - - - - - -
验证码: 
-
- -
-
- -
- -
- - - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/pwlake/header.htm b/src/member/space/pwlake/header.htm deleted file mode 100755 index 10c6e7ec..00000000 --- a/src/member/space/pwlake/header.htm +++ /dev/null @@ -1,48 +0,0 @@ - - - - -{dede:var.spacename /} {dede:var.curtitle /} - - - - -
-
- - -
- \ No newline at end of file diff --git a/src/member/space/pwlake/images/addto.gif b/src/member/space/pwlake/images/addto.gif deleted file mode 100755 index cbfedc52..00000000 Binary files a/src/member/space/pwlake/images/addto.gif and /dev/null differ diff --git a/src/member/space/pwlake/images/albumn-bg.gif b/src/member/space/pwlake/images/albumn-bg.gif deleted file mode 100755 index 98e11622..00000000 Binary files a/src/member/space/pwlake/images/albumn-bg.gif and /dev/null differ diff --git a/src/member/space/pwlake/images/bg.jpg b/src/member/space/pwlake/images/bg.jpg deleted file mode 100755 index 8ccc1468..00000000 Binary files a/src/member/space/pwlake/images/bg.jpg and /dev/null differ diff --git a/src/member/space/pwlake/images/bgm.gif b/src/member/space/pwlake/images/bgm.gif deleted file mode 100755 index ee1b9cb6..00000000 Binary files a/src/member/space/pwlake/images/bgm.gif and /dev/null differ diff --git a/src/member/space/pwlake/images/boxbg.png b/src/member/space/pwlake/images/boxbg.png deleted file mode 100755 index c07117e4..00000000 Binary files a/src/member/space/pwlake/images/boxbg.png and /dev/null differ diff --git a/src/member/space/pwlake/images/close.jpg b/src/member/space/pwlake/images/close.jpg deleted file mode 100755 index ce11ae5e..00000000 Binary files a/src/member/space/pwlake/images/close.jpg and /dev/null differ diff --git a/src/member/space/pwlake/images/del.png b/src/member/space/pwlake/images/del.png deleted file mode 100755 index b407245a..00000000 Binary files a/src/member/space/pwlake/images/del.png and /dev/null differ diff --git a/src/member/space/pwlake/images/jian.png b/src/member/space/pwlake/images/jian.png deleted file mode 100755 index 241d53ec..00000000 Binary files a/src/member/space/pwlake/images/jian.png and /dev/null differ diff --git a/src/member/space/pwlake/images/message.gif b/src/member/space/pwlake/images/message.gif deleted file mode 100755 index b3080acd..00000000 Binary files a/src/member/space/pwlake/images/message.gif and /dev/null differ diff --git a/src/member/space/pwlake/images/rss.png b/src/member/space/pwlake/images/rss.png deleted file mode 100755 index 41984cd5..00000000 Binary files a/src/member/space/pwlake/images/rss.png and /dev/null differ diff --git a/src/member/space/pwlake/images/save.jpg b/src/member/space/pwlake/images/save.jpg deleted file mode 100755 index 086b9c92..00000000 Binary files a/src/member/space/pwlake/images/save.jpg and /dev/null differ diff --git a/src/member/space/pwlake/images/sigline.gif b/src/member/space/pwlake/images/sigline.gif deleted file mode 100755 index 173d91c0..00000000 Binary files a/src/member/space/pwlake/images/sigline.gif and /dev/null differ diff --git a/src/member/space/pwlake/images/style.css b/src/member/space/pwlake/images/style.css deleted file mode 100755 index 1cadbdc1..00000000 --- a/src/member/space/pwlake/images/style.css +++ /dev/null @@ -1,185 +0,0 @@ -body{font-family: Geneva, Arial, Helvetica, sans-serif, serif;font-size:12px;line-height:1.5em;background:#93D7EE url(bg.jpg) no-repeat center top;color:#000;} -h1,h2,h3,h4,h5,h6,form,body,dd,dt,dl,li,ul{padding:0;margin:0} -td,th,div{word-break:break-all;word-wrap:break-word} -img{border:0; background:#D7EDE8} -.c{clear:both;height:1px;font:0px/0px Arial;overflow:hidden} -.tal,.tl{text-align:left} -.tac,.tc{text-align:center} -.tar,.tr{text-align:right} -.fr,.right{float:right} -.fl,.left{float:left} -.b{ font-weight:bold} -.tdn{ text-decoration:none} -.small{ font-size:10px;} -.big{ font-size:14px;} -.fsn{ font-size:12px} -.fn{ font-weight:normal} -.lh0{ line-height:0} -.yellow {color:#fff;} -.gray{ color:#73992C} -.keep{ word-break:keep-all; word-spacing:normal} -.ip{ padding:2px; border:1px solid #fff; background:none} -.bt{background:#0F4D04;color:#fff; font-weight:bold;font-size:12px; } -/*a link 基本连接颜色*/ -a{color:#0C5896} -a:hover{color:#fff; background:#0C5896} -a.noul{ text-decoration:none} -a.active{background:#0C5896; color:#fff} -a.active:hover{color:#0C5896; background:none} - -h1{color:#0c2f86;font-size:20px; padding:.6em 0 0; margin-top:.6em; } - -h2{ font-size:15px; padding:.5em .6em .3em; color:#0c2f86; } -h3{ font-size:14px; color:#000} -h4{ font:16px Georgia; display:inline} -.bb{ border-bottom:1px solid #fff; padding:0 0 .6em; margin:0 0 .3em; line-height:2em;} -#container{ width:96%;margin:0 auto; max-width:900px;} -#header{ height:150px;margin-bottom:1em} -#title{ width:98%; height:120px; margin:auto; overflow:hidden} -#title a{color:#fff} -#guide{ padding:0; margin:0; border-bottom:1px solid #fff; float:left; width:100%;filter:alpha(opacity=80);-moz-opacity:0.8} -#guide li{ display:inline} -#guide li a{ float:left; border:1px solid #fff; border-bottom: 0; background:#EA8F1C; color:#fff; text-decoration:none;display:block; font:13px/1.2em Arial; padding:.4em 1em; margin:0 2px} -#guide li a:hover{ color:#fff;background:#49B9C5;text-decoration:none} -#guide li.active a{background:#0c1966;color:#fff } -#site-dsc{color:#DBEEB5; float:left; margin-top:1em} -#toolbar{ margin-top:1em} -#toolbar a{ background:#125E06} - -#main{ width:73.5%;} -#side{ width:25%;} -.box{ border:1px #fff solid; margin:0 0 .7em;background:url(boxbg.png);width:100%; overflow:hidden; height:auto } -/*for ie 6.0*/ -* html #container { width:900px} -* html .box { background:#D5EDE6; filter:alpha(opacity=80);} -* html .profile-pic div{ position:relative} -/*for ie 6.0*/ -.text{ margin:.5em 1em 1em;} -#main .text { margin: 1em;} -#side .list { margin:1em .5em 1.5em 2.5em;} -#side .list ul{ margin:0 0 1em 1em} -#side .list ul li{ margin:.5em 0} -#side .list li{ margin:.5em 0} -.profile-pic{margin:0 auto 1em;padding:1px;width:95%;} -.profile-pic div{ margin:0 auto 0;width:100%;padding:0;overflow:hidden;text-align:center;line-height:0} -.profile-pic div img{border:1px solid #ccc;padding:0; margin:0;} -.profile dd{ margin:.3em 0 0; line-height:120%} - -/*#calendar */ -.calendar table{ width:98%; margin:0 auto 1em; table-layout:fixed} -.calendar table td{ height: 15px;font:11px/150% Tahoma;text-align:center;} -.calendar table th{ text-align: center} -.calendar table td a{color:#fff;font:11px/12px Arial;background:#0C5896;padding:0px 3px 2px} -.calendar table td a:hover{background:#012E53;text-decoration:none} - -/*blog*/ - -.blog-content{ margin:1.5em 0 2em; table-layout:fixed; width:100%; vertical-align:top} -.blog-content td{ font-size:13px; line-height:1.5em;overflow:hidden} -.blog-content td img { padding:5px; border:1px solid #28AFC5; line-height:0; background:#fff} -.blog-content td a:hover img { border-color: #666} - - -#footer{ margin-top:2em; border-top:1px solid #fff; padding:.5em;} -#footer ul,#footer li { display:inline; list-style:none ; margin:0 0 0 1em} - -/*photos-album*/ -.pic-list li{ height:50px; width:50px; list-style:none; float:left} -.pic-list li a img{ padding:2px; width:40px; height:40px} -.pic-list li a:hover img { position:absolute; width:79px;height:79px; margin:-20px 0 0 -20px} -.front-cover{ padding:0 1em 2em 0} - -/*favorite*/ -.fav dl{ margin-bottom:1.5em} -.fav dt{ margin-bottom:.5em} - -/*goods*/ -.goods-list li{ width:80px; height:80px; text-align:center; line-height:110%; margin:0 .3em 1em } -.goods-list li a:hover img { margin:-20px 0 0 -42px} -.goods-dl { width:400px} -.goods-dl dd{ border-bottom:1px solid #BFD9A7; margin: 0 1em 0 0; line-height:2em} - - -/*friends*/ -.frends-list li{ float:left; width:48%;height:120px; overflow:hidden; margin-left:1%} -.frends-list li a img{ padding:2px; float:left; margin-right:.5em} - -/*comment*/ -.comment dl{ display:block;clear:both;float:left;margin:.2em 0;border:1px solid #7FCAC8;width:90%;padding:.5em} -.comment dl:hover{border-color:#339996} -.comment dd{ margin:0 .8em .5em 0;padding:0;line-height:120%;} -.comment dd.comment-content{ margin:1em 0;width:85%;display:block;float:left} -.post-comment{ width:70%;margin: 0 0 1em} -.post-comment div{ margin:0 0 .5em } -.re-comment{ margin:1em 0 0;border:1px solid #7FCAC8 ;padding:1em} -.re-comment b{ color:#73992C} -.re-comment div{ margin-top:.5em;} - - -/*itable*/ -.itable td,.itable th{padding:.3em .5em} -.itable td{vertical-align: middle;border-bottom: 1px solid #749D88;} -.itable tr.tr1 td{ background:#749D88;} -.itable td img {border:0;padding:0;background:none} - -/*pages*/ -.pages{margin-top:10px;margin-bottom:10px;text-align: center ;clear:both} -.pages *{vertical-align: middle;} -.pages a{padding:1px 4px 2px;border:1px solid #fff;margin:0 1px;text-align: center;text-decoration: none;font:normal 10px Tahoma ;} -.pages a:hover{border:#2ABFD5 1px solid;text-decoration:none;} -.pages input{border:1px solid #fff;background:none;height:14px;font: 9px Tahoma;padding-top:1px;text-align: center;} -.pages b{padding:2px ; margin: 0 3px;font:bold 10px/12px Tahoma} - -/*menu*/ -.menu{position:absolute;background:#fff;border:1px solid $tablecolor;} -.menu td, .menu li,.menu ul{background:#fff;padding:0; margin:0} -.menu li{list-style:none;} -.menu a{display:block;padding:3px 15px 3px 15px;background:#fff;} -.menu a:hover{background:$linkcolor;text-decoration:none;color:#fff;} -.menu ul.ul1 li a{display:inline;padding:0} - -.listPic dl{ width:24.5%; float:left; text-align:center; padding:0; margin:.5em 0} -.listPic dt a{ color:#333} -.listPic dd{ padding:0 0 .5em 0; margin:0; text-indent:0; height:90px; vertical-align:middle} -.listPic dd img{ width:85px;height:85px; padding:2px; border:1px solid #eee;} - -.listPic1 dl{ width:33%; float:left; text-align:center; padding:0; margin:.5em 0} -.listPic1 dt a{ color:#333} -.listPic1 dd{ padding:0 0 .5em 0; margin:0; text-indent:0; height:55px; vertical-align:middle} -.listPic1 dd img{ width:50px;height:50px; padding:2px; border:1px solid #eee;} -.listPic-albumn dd { height:105px;} -.listPic-albumn dd img { width:90px; height:90px; padding:4px 4px 8px; border:0; background:url(albumn-bg.gif)} - -.moduleA{ margin:.2em; border:1px solid #A6CBE7; line-height:110%; border-bottom-color:#66A0CC; border-right-color:#66A0CC;} -.moduleA h3{ color: #0066FF;padding:.5em; margin:0;font-family:Tahoma;font-size:12px;cursor:move } -.tableA { table-layout:fixed} -.tableAtd{ border:1px solid #D4E8F7;height:50px;} -.editButton{ float:right; font:12px/120% Tahoma; color:#CCC; text-decoration:none ; padding-left:0.5em; background:url($imgpath/button_edit.gif) no-repeat 0 .1em} -.editButton:hover{ background-position:.1em .2em} -.editBox{ background:#FFFFCF; margin:0 .2em .2em ; padding:.2em } -.editArea {border:1px solid #eee; width:96%; margin:auto;padding:.2em; background:#fff} -.menu1{position:absolute;border:1px solid #CCCCCC;background:#FFFFFF;z-index:1000;width:200px;height:255px;overflow-Y:auto} -.menu1 h3{background:$headcolor;text-align:left;color:$headfontone;padding:5px 7px 3px 7px;cursor:move} -.menu1 div{padding:5px 10px;} -.checkon{border:1px solid #0A9800;background:#CAFFC0;cursor:move} -.move{position:absolute;} - -#colorbox{width:91px;height:78px;padding:3px 0 0 3px;overflow:hidden;} -#colorbox div{cursor:pointer;width:8px;height:8px;float:left;margin:0 3px 3px 0;border:1px #000 solid;font:0/8px arial} - -.smile{ height:23px;padding:7px 0 0 8px;text-align:left;background:#E0F0F9 url(th1.png);cursor:move} -.smile div{ width:56px;height:18px;text-align:center;padding:5px 0 0;cursor:pointer;} -.smile div.lian{ background:#ffffff url(tag.jpg) no-repeat;cursor:auto;} - -.user-info{ position:absolute;line-height:160%; margin-left:-1.5em; margin-top:-1em} -.user-infoWrap{background:#FFF; border:1px solid #004C7D; border-top:1px #A6CBE7 solid; border-left:1px solid #A6CBE7; padding:.5em 1em; margin-left:20px;display:block;} -.user-info .co{position:absolute; width:10px;height:20px; margin-left:-1.8em; margin-top:2em; background:url(user-info-co.png)} - -/*menu_sm*/ -.menu_sm{ position:absolute;background:#fffcd9;border-bottom:1px solid #e7d62b; width:100%;} -.menu_sm a{padding:5px 15px 5px 15px; color:#f79305;} -.menu_sm a:hover{text-decoration:none;color:#fff;} - -@media screen and (min-width:0px){ -.goods-list li a:hover img{ margin:-20px -20px 0 0} -} diff --git a/src/member/space/pwlake/images/tag.jpg b/src/member/space/pwlake/images/tag.jpg deleted file mode 100755 index 0f2984d3..00000000 Binary files a/src/member/space/pwlake/images/tag.jpg and /dev/null differ diff --git a/src/member/space/pwlake/images/tag1.jpg b/src/member/space/pwlake/images/tag1.jpg deleted file mode 100755 index 0f2984d3..00000000 Binary files a/src/member/space/pwlake/images/tag1.jpg and /dev/null differ diff --git a/src/member/space/pwlake/images/talk.gif b/src/member/space/pwlake/images/talk.gif deleted file mode 100755 index e23c73ee..00000000 Binary files a/src/member/space/pwlake/images/talk.gif and /dev/null differ diff --git a/src/member/space/pwlake/images/team.gif b/src/member/space/pwlake/images/team.gif deleted file mode 100755 index 53a54c85..00000000 Binary files a/src/member/space/pwlake/images/team.gif and /dev/null differ diff --git a/src/member/space/pwlake/images/wap.png b/src/member/space/pwlake/images/wap.png deleted file mode 100755 index 37779fa4..00000000 Binary files a/src/member/space/pwlake/images/wap.png and /dev/null differ diff --git a/src/member/space/pwlake/images/write.gif b/src/member/space/pwlake/images/write.gif deleted file mode 100755 index 698cb2a0..00000000 Binary files a/src/member/space/pwlake/images/write.gif and /dev/null differ diff --git a/src/member/space/pwlake/index.htm b/src/member/space/pwlake/index.htm deleted file mode 100755 index f1fa0db5..00000000 --- a/src/member/space/pwlake/index.htm +++ /dev/null @@ -1,67 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_news.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

-最新日志文章列表 -发表日志 -

- -{dede:spacenewart row=6 titlelen=60 infolen=200} - -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#",$fields['litpic']) } - - {/dede:if} - {dede:field.description/} -

-
-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:spacenewart} -
- -
- -
-
- - -{dede:include file='footer.htm' /} diff --git a/src/member/space/pwlake/info.txt b/src/member/space/pwlake/info.txt deleted file mode 100755 index fae2e393..00000000 --- a/src/member/space/pwlake/info.txt +++ /dev/null @@ -1,4 +0,0 @@ -name:湖蓝 -author:ylj798 PW修改版 -type:个人 -date:2009年7月 \ No newline at end of file diff --git a/src/member/space/pwlake/infos.htm b/src/member/space/pwlake/infos.htm deleted file mode 100755 index 3449cf47..00000000 --- a/src/member/space/pwlake/infos.htm +++ /dev/null @@ -1,59 +0,0 @@ -{dede:include file='header.htm'/} - - - - -
- {dede:include file='side_icon.htm'/} -
- - -
-
-

基本资料

- -
- - - - -
- 昵称:
- 性别:
- 生日:
- 所在城市: - -
- 交友宣言:
-
-
-
- -

联系方式

- -
- - - - -
- Email:
- QQ:
- MSN:
-
-
-
- -
-
- -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/pwlake/listalbum.htm b/src/member/space/pwlake/listalbum.htm deleted file mode 100755 index 88b23dae..00000000 --- a/src/member/space/pwlake/listalbum.htm +++ /dev/null @@ -1,37 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

相册列表

- -
- - - - -
-
- {dede:datalist titlelen = '20'} -
-
-
{dede:field.title/}
-
- {/dede:datalist} -
-
-
-
-
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/pwlake/listarchives.htm b/src/member/space/pwlake/listarchives.htm deleted file mode 100755 index 69df2437..00000000 --- a/src/member/space/pwlake/listarchives.htm +++ /dev/null @@ -1,60 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

文档列表

- -{dede:datalist} - -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#",$fields['litpic']) } - - {/dede:if} - {dede:field.description /} -

-

<<详细内容 -

-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:datalist} -
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm' /} \ No newline at end of file diff --git a/src/member/space/pwlake/listarticle.htm b/src/member/space/pwlake/listarticle.htm deleted file mode 100755 index a51b9337..00000000 --- a/src/member/space/pwlake/listarticle.htm +++ /dev/null @@ -1,57 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

日志文章列表 -发表日志 -

- -{dede:datalist} -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#",$fields['litpic']) } - - {/dede:if} - {dede:field.body function='cn_substr(@me, 500); /} -

-

<<详细内容 -

-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:datalist} -
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm' /} \ No newline at end of file diff --git a/src/member/space/pwlake/side_class.htm b/src/member/space/pwlake/side_class.htm deleted file mode 100755 index 7a162db6..00000000 --- a/src/member/space/pwlake/side_class.htm +++ /dev/null @@ -1,42 +0,0 @@ -= 0) -{ - $channelAdd = ''; - if($channelid > 2) $channelAdd = '&channelid='.$channelid; -?> - -
-

日志分类

-
    - 0) - { - foreach ($mtypearr as $mty) - { - if(!empty($channelid) && $mty['channelid'] != $channelid) continue; - echo "
  • {$mty['mtypename']}
  • \r\n"; - } - } - ?> -
  • 所有文档>>
  • -
-
- - \ No newline at end of file diff --git a/src/member/space/pwlake/side_icon.htm b/src/member/space/pwlake/side_icon.htm deleted file mode 100755 index 90dd3419..00000000 --- a/src/member/space/pwlake/side_icon.htm +++ /dev/null @@ -1,36 +0,0 @@ - -
-

博主资料

-
-
-
- -
- {dede:if $_vars['face']=='' } - nopic - {else} - {dede:var.uname/} - {/dede:if} -
-
-
{dede:var.msg /}
-
-
- 留言 | - 短消息 | - 加好友 | - 加黑名单 - -
-
 用户昵称:{dede:var.uname /}
-
 最后登录:{dede:var.logintime function="MyDate('y-m-d h:i',@me)" /}
-
 会员等级:{dede:var.membername/}
-
 会员积分:{dede:var.scores/} 分
-
 空间访问:{dede:var.homecount/} 次
-
-
-
-
- - - diff --git a/src/member/space/pwlake/side_news.htm b/src/member/space/pwlake/side_news.htm deleted file mode 100755 index 59690bd8..00000000 --- a/src/member/space/pwlake/side_news.htm +++ /dev/null @@ -1,8 +0,0 @@ - - - diff --git a/src/member/space/pwlake/side_search.htm b/src/member/space/pwlake/side_search.htm deleted file mode 100755 index 9f038c3f..00000000 --- a/src/member/space/pwlake/side_search.htm +++ /dev/null @@ -1,14 +0,0 @@ - - - diff --git a/src/member/space/pwlake/side_visitor.htm b/src/member/space/pwlake/side_visitor.htm deleted file mode 100755 index 5b27769b..00000000 --- a/src/member/space/pwlake/side_visitor.htm +++ /dev/null @@ -1,11 +0,0 @@ - - \ No newline at end of file diff --git a/src/member/space/pwpink/blog.htm b/src/member/space/pwpink/blog.htm deleted file mode 100755 index fe202c48..00000000 --- a/src/member/space/pwpink/blog.htm +++ /dev/null @@ -1,116 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

日志文章

-
- - -
-
{dede:global.arcrow[pubdate] function="MyDate('y-m-d h:i',@me)" /}
-

- {dede:global.arcrow[title] /} -

- - - - -
-

{dede:global.arcrow[body] /}

-
-
- - -
-0) { ?> -
一共有 条评论
- -
-
- -
-
- - - - Says: -
-
- -
- -
- -
-
-
-
- -
-
-
发表评论
-
-
- - - - - {dede:var.uname /}: -
-
- -
-
-
- 表情: -
    -
  • -
  • -
  • -
  • -
  • -
  • -
  • -
-
- - - - - - - - -
验证码: 匿名评论
- -
-
-
- - -
-
- - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/pwpink/demo.png b/src/member/space/pwpink/demo.png deleted file mode 100755 index 96516817..00000000 Binary files a/src/member/space/pwpink/demo.png and /dev/null differ diff --git a/src/member/space/pwpink/footer.htm b/src/member/space/pwpink/footer.htm deleted file mode 100755 index 5447359b..00000000 --- a/src/member/space/pwpink/footer.htm +++ /dev/null @@ -1,8 +0,0 @@ -
-
- -
- - \ No newline at end of file diff --git a/src/member/space/pwpink/guestbook.htm b/src/member/space/pwpink/guestbook.htm deleted file mode 100755 index 0bb284c7..00000000 --- a/src/member/space/pwpink/guestbook.htm +++ /dev/null @@ -1,82 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm' /} - {dede:include file='side_news.htm' /} - {dede:include file='side_visitor.htm' /} -
- - -
-
-

留言列表

- -
- -
-
- {dede:datalist} - -
-
- '; - }else{ - echo ''.$fields['uname'].'的头像'; - } ?> -
-
- {dede:field.uname/} - {dede:field.dtime function="MyDate('Y-m-d H:i',@me)" /} -
-
-
{dede:field.msg function="Text2Html(@me)" /}
- -
- -
-
-
- {/dede:datalist} -
{dede:pagelist/}
-
-
发表留言
-
-
- {dede:var.uname /}: - - - - -
-
标题:
-
- - -
- -
- - - - - - - -
验证码: 
-
- -
-
- -
- -
- - - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/pwpink/header.htm b/src/member/space/pwpink/header.htm deleted file mode 100755 index 3f47e2a3..00000000 --- a/src/member/space/pwpink/header.htm +++ /dev/null @@ -1,48 +0,0 @@ - - - - -{dede:var.spacename /} {dede:var.curtitle /} - - - - -
-
- - -
- \ No newline at end of file diff --git a/src/member/space/pwpink/images/addto.gif b/src/member/space/pwpink/images/addto.gif deleted file mode 100755 index cbfedc52..00000000 Binary files a/src/member/space/pwpink/images/addto.gif and /dev/null differ diff --git a/src/member/space/pwpink/images/albumn-bg.gif b/src/member/space/pwpink/images/albumn-bg.gif deleted file mode 100755 index 98e11622..00000000 Binary files a/src/member/space/pwpink/images/albumn-bg.gif and /dev/null differ diff --git a/src/member/space/pwpink/images/bg.jpg b/src/member/space/pwpink/images/bg.jpg deleted file mode 100755 index fcb7015f..00000000 Binary files a/src/member/space/pwpink/images/bg.jpg and /dev/null differ diff --git a/src/member/space/pwpink/images/bgm.gif b/src/member/space/pwpink/images/bgm.gif deleted file mode 100755 index ee1b9cb6..00000000 Binary files a/src/member/space/pwpink/images/bgm.gif and /dev/null differ diff --git a/src/member/space/pwpink/images/boxbg.png b/src/member/space/pwpink/images/boxbg.png deleted file mode 100755 index c07117e4..00000000 Binary files a/src/member/space/pwpink/images/boxbg.png and /dev/null differ diff --git a/src/member/space/pwpink/images/close.jpg b/src/member/space/pwpink/images/close.jpg deleted file mode 100755 index ce11ae5e..00000000 Binary files a/src/member/space/pwpink/images/close.jpg and /dev/null differ diff --git a/src/member/space/pwpink/images/del.png b/src/member/space/pwpink/images/del.png deleted file mode 100755 index b407245a..00000000 Binary files a/src/member/space/pwpink/images/del.png and /dev/null differ diff --git a/src/member/space/pwpink/images/jian.png b/src/member/space/pwpink/images/jian.png deleted file mode 100755 index 241d53ec..00000000 Binary files a/src/member/space/pwpink/images/jian.png and /dev/null differ diff --git a/src/member/space/pwpink/images/message.gif b/src/member/space/pwpink/images/message.gif deleted file mode 100755 index b3080acd..00000000 Binary files a/src/member/space/pwpink/images/message.gif and /dev/null differ diff --git a/src/member/space/pwpink/images/rss.png b/src/member/space/pwpink/images/rss.png deleted file mode 100755 index 41984cd5..00000000 Binary files a/src/member/space/pwpink/images/rss.png and /dev/null differ diff --git a/src/member/space/pwpink/images/save.jpg b/src/member/space/pwpink/images/save.jpg deleted file mode 100755 index 086b9c92..00000000 Binary files a/src/member/space/pwpink/images/save.jpg and /dev/null differ diff --git a/src/member/space/pwpink/images/sigline.gif b/src/member/space/pwpink/images/sigline.gif deleted file mode 100755 index 173d91c0..00000000 Binary files a/src/member/space/pwpink/images/sigline.gif and /dev/null differ diff --git a/src/member/space/pwpink/images/style.css b/src/member/space/pwpink/images/style.css deleted file mode 100755 index 699d30c1..00000000 --- a/src/member/space/pwpink/images/style.css +++ /dev/null @@ -1,182 +0,0 @@ -body{font-family: Geneva, Arial, Helvetica, sans-serif, serif;font-size:12px;line-height:1.5em;background:#E6C9E8 url(bg.jpg) no-repeat center top;color:#000;} -h1,h2,h3,h4,h5,h6,form,body,dd,dt,dl,li,ul{padding:0;margin:0} -td,th,div{word-break:break-all;word-wrap:break-word} -img{border:0;background:#D7E4E3} -.c{clear:both;height:1px;font:0px/0px Arial;overflow:hidden} -.tal,.tl{text-align:left} -.tac,.tc{text-align:center} -.tar,.tr{text-align:right} -.fr,.right{float:right} -.fl,.left{float:left} -.b{ font-weight:bold} -.tdn{ text-decoration:none} -.small{ font-size:10px;} -.big{ font-size:14px;} -.fsn{ font-size:12px} -.fn{ font-weight:normal} -.lh0{ line-height:0} -.yellow {color:#E13179;} -.gray{ color:#CFB5CE} -.keep{ word-break:keep-all; word-spacing:normal} -.ip{ padding:2px; border:1px solid #fff; background:none} -.bt{background:#D55E9F;color:#fff;font-size:12px;} -/*a link 基本连接颜色*/ -a{color:#BC56AB} -a:hover{color:#fff; background:#BC56AB} -a.noul{ text-decoration:none} -a.active{background:#BC56AB; color:#fff} -a.active:hover{color:#BC56AB; background:none} - -h1{color:#0c2f86;font-size:20px; padding:.6em 0 0; margin-top:2em; } -h2{ font-size:15px; padding:.5em .6em .3em; color:#0c2f86; } -h3{ font-size:14px; color:#000} -h4{ font:16px Georgia; display:inline} -.bb{ border-bottom:1px solid #fff; padding:0 0 .6em; margin:0 0 .3em; line-height:2em;} -#container{ margin:0 auto ;width:900px;} -#header{ height:150px;margin-bottom:1em} -#title{ width:98%; height:120px; margin:auto; overflow:hidden} -#guide{ padding:0; margin:0; border-bottom:1px solid #fff; float:left; width:100%;filter:alpha(opacity=90);-moz-opacity:0.9} -#guide li{ display:inline} -#guide li a{ float:left;background:#D0A5AC; color:#fff; text-decoration:none;display:block; font:13px/1.2em Arial; padding:.4em 1em; border:1px solid #fff; border-bottom: 0;margin:0 2px} -#guide li a:hover{ color:#fff;background:#49B9C5;text-decoration:none} -#guide li.active a{background:#0c1966;color:#fff } -#site-dsc{color:#fff; float:left; margin-top:.2em} -#toolbar{ margin-top:1em} - -#main{ width:76.5%;} -#side{ width:22%;} -.box{ border:1px #fff solid; margin:0 0 .7em;background:url(boxbg.png);width:100%; overflow:hidden; height:auto } -/*for ie 6.0*/ -* html #container { width:900px} -* html .box {background:#D5EDE6; filter:alpha(opacity=80);} -* html .profile-pic div{ position:relative} -/*for ie 6.0*/ -.text{ margin:.5em 1em 1em;} -#main .text { margin: 1em;} -#side .list { margin:1em .5em 1.5em 2.5em;} -#side .list ul{ margin:0 0 1em 1em} -#side .list ul li{ margin:.5em 0} -#side .list li{ margin:.5em 0} -.profile-pic{margin:0 auto 1em;padding:1px;width:95%;} -.profile-pic div{ margin:0 auto 0;width:100%;padding:0;overflow:hidden;text-align:center;line-height:0} -.profile-pic div img{border:1px solid #ccc;padding:0; margin:0;} -.profile dd{ margin:.3em 0 0; line-height:120%} - -/*#calendar */ -.calendar table{ width:98%; margin:0 auto 1em; table-layout:fixed} -.calendar table td{ height: 15px;font:11px/150% Tahoma;text-align:center;} -.calendar table th{ text-align: center} -.calendar table td a{color:#fff;font:11px/12px Arial;background:#BC56AB;padding:0px 3px 2px} -.calendar table td a:hover{background:#E13179;text-decoration:none} - -/*blog*/ - -.blog-content{ margin:1.5em 0 2em; table-layout:fixed; width:100%; vertical-align:top} -.blog-content td{ font-size:13px; line-height:1.5em;overflow:hidden} -.blog-content td img { padding:5px; border:1px solid #D5B6C8; line-height:0; background:#fff} -.blog-content td a:hover img { border-color: #666} - - -#footer{ margin-top:2em; border-top:1px solid #fff; padding:.5em;} -#footer ul,#footer li { display:inline; list-style:none ; margin:0 0 0 1em} - -/*photos-album*/ -.pic-list li{ height:50px; width:50px; list-style:none; float:left} -.pic-list li a img{ padding:2px; width:40px; height:40px} -.pic-list li a:hover img { position:absolute; width:79px;height:79px; margin:-20px 0 0 -20px} -.front-cover{ padding:0 1em 2em 0} - -/*favorite*/ -.fav dl{ margin-bottom:1.5em} -.fav dt{ margin-bottom:.5em} - -/*goods*/ -.goods-list li{ width:80px; height:80px; text-align:center; line-height:110%; margin:0 .3em 1em } -.goods-list li a:hover img { margin:-20px 0 0 -42px} -.goods-dl { width:400px} -.goods-dl dd{ border-bottom:1px solid #B9E1ED; margin: 0 1em 0 0; line-height:2em} - - -/*friends*/ -.frends-list li{ float:left; width:48%;height:120px; overflow:hidden; margin-left:1%} -.frends-list li a img{ padding:2px; float:left; margin-right:.5em} - -/*comment*/ -.comment dl{ display:block;clear:both;float:left;margin:.2em 0;border:1px solid #fff;width:90%;padding:.5em} -.comment dl:hover{border-color:#ACB9B9} -.comment dd{ margin:0 .8em .5em 0;padding:0;line-height:120%;} -.comment dd.comment-content{ margin:1em 0;width:85%;display:block;float:left} -.post-comment{ width:70%;margin: 0 0 1em} -.post-comment div{ margin:0 0 .5em } -.re-comment{ margin:1em 0 0;border:1px solid #fff;padding:1em} -.re-comment b{ color:#73992C} -.re-comment div{ margin-top:.5em;} - - -/*itable*/ -.itable td,.itable th{padding:.3em .5em} -.itable td{vertical-align: middle;border-bottom: 1px solid #749D88;} -.itable tr.tr1 td{ background:#749D88;} -.itable td img {border:0;padding:0;background:none} - -/*pages*/ -.pages{margin-top:10px;margin-bottom:10px;text-align: center ;clear:both} -.pages *{vertical-align: middle;} -.pages a{padding:1px 4px 2px;border:1px solid #fff;margin:0 1px;text-align: center;text-decoration: none;font:normal 10px Tahoma ;} -.pages a:hover{border:#fff 1px solid;text-decoration:none;} -.pages input{border:1px solid #fff;background:none;height:14px;font: 9px Tahoma;padding-top:1px;text-align: center;} -.pages b{padding:2px ; margin: 0 3px;font:bold 10px/12px Tahoma} - -/*menu*/ -.menu{position:absolute;background:#fff;border:1px solid $tablecolor;} -.menu td, .menu li,.menu ul{background:#fff;padding:0; margin:0} -.menu li{list-style:none;} -.menu a{display:block;padding:3px 15px 3px 15px;background:#fff;} -.menu a:hover{background:$linkcolor;text-decoration:none;color:#fff;} -.menu ul.ul1 li a{display:inline;padding:0} - -.listPic dl{ width:24.5%; float:left; text-align:center; padding:0; margin:.5em 0} -.listPic dt a{ color:#333} -.listPic dd{ padding:0 0 .5em 0; margin:0; text-indent:0; height:90px; vertical-align:middle} -.listPic dd img{ width:85px;height:85px; padding:2px; border:1px solid #eee;} - -.listPic1 dl{ width:33%; float:left; text-align:center; padding:0; margin:.5em 0} -.listPic1 dt a{ color:#333} -.listPic1 dd{ padding:0 0 .5em 0; margin:0; text-indent:0; height:55px; vertical-align:middle} -.listPic1 dd img{ width:50px;height:50px; padding:2px; border:1px solid #eee;} -.listPic-albumn dd { height:105px;} -.listPic-albumn dd img { width:90px; height:90px; padding:4px 4px 8px; border:0; background:url(albumn-bg.gif)} - -.moduleA{ margin:.2em; border:1px solid #A6CBE7; line-height:110%; border-bottom-color:#66A0CC; border-right-color:#66A0CC;} -.moduleA h3{ color: #0066FF;padding:.5em; margin:0;font-family:Tahoma;font-size:12px;cursor:move } -.tableA { table-layout:fixed} -.tableAtd{ border:1px solid #D4E8F7;height:50px;} -.editButton{ float:right; font:12px/120% Tahoma; color:#CCC; text-decoration:none ; padding-left:0.5em; background:url($imgpath/button_edit.gif) no-repeat 0 .1em} -.editButton:hover{ background-position:.1em .2em} -.editBox{ background:#FFFFCF; margin:0 .2em .2em ; padding:.2em } -.editArea {border:1px solid #eee; width:96%; margin:auto;padding:.2em; background:#fff} -.menu1{position:absolute;border:1px solid #CCCCCC;background:#FFFFFF;z-index:1000;width:200px;height:255px;overflow-Y:auto} -.menu1 h3{background:$headcolor;text-align:left;color:$headfontone;padding:5px 7px 3px 7px;cursor:move} -.menu1 div{padding:5px 10px;} -.checkon{border:1px solid #0A9800;background:#CAFFC0;cursor:move} -.move{position:absolute;} - -#colorbox{width:91px;height:78px;padding:3px 0 0 3px;overflow:hidden;} -#colorbox div{cursor:pointer;width:8px;height:8px;float:left;margin:0 3px 3px 0;border:1px #000 solid;font:0/8px arial} - -.smile{ height:23px;padding:7px 0 0 8px;text-align:left;background:#E0F0F9 url(th1.png);cursor:move} -.smile div{ width:56px;height:18px;text-align:center;padding:5px 0 0;cursor:pointer;} -.smile div.lian{ background:#ffffff url(tag.jpg) no-repeat;cursor:auto;} - -.user-info{ position:absolute;line-height:160%; margin-left:-1.5em; margin-top:-1em} -.user-infoWrap{background:#FFF; border:1px solid #004C7D; border-top:1px #A6CBE7 solid; border-left:1px solid #A6CBE7; padding:.5em 1em; margin-left:20px;display:block;} -.user-info .co{position:absolute; width:10px;height:20px; margin-left:-1.8em; margin-top:2em; background:url(user-info-co.png)} - -/*menu_sm*/ -.menu_sm{ position:absolute;background:#fffcd9;border-bottom:1px solid #e7d62b; width:100%;} -.menu_sm a{padding:5px 15px 5px 15px; color:#f79305;} -.menu_sm a:hover{text-decoration:none;color:#fff;} - -@media screen and (min-width:0px){ -.goods-list li a:hover img{ margin:-20px -20px 0 0} -} diff --git a/src/member/space/pwpink/images/tag.jpg b/src/member/space/pwpink/images/tag.jpg deleted file mode 100755 index 0f2984d3..00000000 Binary files a/src/member/space/pwpink/images/tag.jpg and /dev/null differ diff --git a/src/member/space/pwpink/images/tag1.jpg b/src/member/space/pwpink/images/tag1.jpg deleted file mode 100755 index 0f2984d3..00000000 Binary files a/src/member/space/pwpink/images/tag1.jpg and /dev/null differ diff --git a/src/member/space/pwpink/images/talk.gif b/src/member/space/pwpink/images/talk.gif deleted file mode 100755 index e23c73ee..00000000 Binary files a/src/member/space/pwpink/images/talk.gif and /dev/null differ diff --git a/src/member/space/pwpink/images/team.gif b/src/member/space/pwpink/images/team.gif deleted file mode 100755 index 53a54c85..00000000 Binary files a/src/member/space/pwpink/images/team.gif and /dev/null differ diff --git a/src/member/space/pwpink/images/wap.png b/src/member/space/pwpink/images/wap.png deleted file mode 100755 index 37779fa4..00000000 Binary files a/src/member/space/pwpink/images/wap.png and /dev/null differ diff --git a/src/member/space/pwpink/images/write.gif b/src/member/space/pwpink/images/write.gif deleted file mode 100755 index 698cb2a0..00000000 Binary files a/src/member/space/pwpink/images/write.gif and /dev/null differ diff --git a/src/member/space/pwpink/index.htm b/src/member/space/pwpink/index.htm deleted file mode 100755 index f1fa0db5..00000000 --- a/src/member/space/pwpink/index.htm +++ /dev/null @@ -1,67 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_news.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

-最新日志文章列表 -发表日志 -

- -{dede:spacenewart row=6 titlelen=60 infolen=200} - -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#",$fields['litpic']) } - - {/dede:if} - {dede:field.description/} -

-
-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:spacenewart} -
- -
- -
-
- - -{dede:include file='footer.htm' /} diff --git a/src/member/space/pwpink/info.txt b/src/member/space/pwpink/info.txt deleted file mode 100755 index 96fadf82..00000000 --- a/src/member/space/pwpink/info.txt +++ /dev/null @@ -1,4 +0,0 @@ -name:粉红海琴 -author:ylj798 PW修改版 -type:个人 -date:2009年7月 \ No newline at end of file diff --git a/src/member/space/pwpink/infos.htm b/src/member/space/pwpink/infos.htm deleted file mode 100755 index 3449cf47..00000000 --- a/src/member/space/pwpink/infos.htm +++ /dev/null @@ -1,59 +0,0 @@ -{dede:include file='header.htm'/} - - - - -
- {dede:include file='side_icon.htm'/} -
- - -
-
-

基本资料

- -
- - - - -
- 昵称:
- 性别:
- 生日:
- 所在城市: - -
- 交友宣言:
-
-
-
- -

联系方式

- -
- - - - -
- Email:
- QQ:
- MSN:
-
-
-
- -
-
- -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/pwpink/listalbum.htm b/src/member/space/pwpink/listalbum.htm deleted file mode 100755 index 88b23dae..00000000 --- a/src/member/space/pwpink/listalbum.htm +++ /dev/null @@ -1,37 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

相册列表

- -
- - - - -
-
- {dede:datalist titlelen = '20'} -
-
-
{dede:field.title/}
-
- {/dede:datalist} -
-
-
-
-
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm'/} \ No newline at end of file diff --git a/src/member/space/pwpink/listarchives.htm b/src/member/space/pwpink/listarchives.htm deleted file mode 100755 index 69df2437..00000000 --- a/src/member/space/pwpink/listarchives.htm +++ /dev/null @@ -1,60 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

文档列表

- -{dede:datalist} - -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#",$fields['litpic']) } - - {/dede:if} - {dede:field.description /} -

-

<<详细内容 -

-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:datalist} -
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm' /} \ No newline at end of file diff --git a/src/member/space/pwpink/listarticle.htm b/src/member/space/pwpink/listarticle.htm deleted file mode 100755 index a51b9337..00000000 --- a/src/member/space/pwpink/listarticle.htm +++ /dev/null @@ -1,57 +0,0 @@ -{dede:include file='header.htm'/} - -
- {dede:include file='side_icon.htm'/} - {dede:include file='side_class.htm'/} - {dede:include file='side_visitor.htm'/} - {dede:include file='side_search.htm'/} -
- - -
-
-

日志文章列表 -发表日志 -

- -{dede:datalist} -
-
{dede:field.pubdate function="MyDate('y-m-d h:i',@me)"/}
-

- {dede:field.title/} -

- - - - -
-

- {dede:if !preg_match("#defaultpic#",$fields['litpic']) } - - {/dede:if} - {dede:field.body function='cn_substr(@me, 500); /} -

-

<<详细内容 -

-
-
- 类别: - {dede:if field.mtypename=='' } - 无分类 | - {else} - {dede:field.mtypename/} | - {/dede:if} - 浏览全文({dede:field.click/}) | - 好评度({dede:field.scores/}) -
-
-
-
-{/dede:datalist} -
{dede:pagelist/}
- -
-
- - -{dede:include file='footer.htm' /} \ No newline at end of file diff --git a/src/member/space/pwpink/side_class.htm b/src/member/space/pwpink/side_class.htm deleted file mode 100755 index 7a162db6..00000000 --- a/src/member/space/pwpink/side_class.htm +++ /dev/null @@ -1,42 +0,0 @@ -= 0) -{ - $channelAdd = ''; - if($channelid > 2) $channelAdd = '&channelid='.$channelid; -?> - -
-

日志分类

-
    - 0) - { - foreach ($mtypearr as $mty) - { - if(!empty($channelid) && $mty['channelid'] != $channelid) continue; - echo "
  • {$mty['mtypename']}
  • \r\n"; - } - } - ?> -
  • 所有文档>>
  • -
-
- - \ No newline at end of file diff --git a/src/member/space/pwpink/side_icon.htm b/src/member/space/pwpink/side_icon.htm deleted file mode 100755 index 90dd3419..00000000 --- a/src/member/space/pwpink/side_icon.htm +++ /dev/null @@ -1,36 +0,0 @@ - -
-

博主资料

-
-
-
- -
- {dede:if $_vars['face']=='' } - nopic - {else} - {dede:var.uname/} - {/dede:if} -
-
-
{dede:var.msg /}
-
-
- 留言 | - 短消息 | - 加好友 | - 加黑名单 - -
-
 用户昵称:{dede:var.uname /}
-
 最后登录:{dede:var.logintime function="MyDate('y-m-d h:i',@me)" /}
-
 会员等级:{dede:var.membername/}
-
 会员积分:{dede:var.scores/} 分
-
 空间访问:{dede:var.homecount/} 次
-
-
-
-
- - - diff --git a/src/member/space/pwpink/side_news.htm b/src/member/space/pwpink/side_news.htm deleted file mode 100755 index 59690bd8..00000000 --- a/src/member/space/pwpink/side_news.htm +++ /dev/null @@ -1,8 +0,0 @@ - - - diff --git a/src/member/space/pwpink/side_search.htm b/src/member/space/pwpink/side_search.htm deleted file mode 100755 index 9f038c3f..00000000 --- a/src/member/space/pwpink/side_search.htm +++ /dev/null @@ -1,14 +0,0 @@ - - - diff --git a/src/member/space/pwpink/side_visitor.htm b/src/member/space/pwpink/side_visitor.htm deleted file mode 100755 index 5b27769b..00000000 --- a/src/member/space/pwpink/side_visitor.htm +++ /dev/null @@ -1,11 +0,0 @@ - - \ No newline at end of file diff --git a/src/member/space/skinlist.inc b/src/member/space/skinlist.inc deleted file mode 100755 index c3f9bef5..00000000 --- a/src/member/space/skinlist.inc +++ /dev/null @@ -1,15 +0,0 @@ -//文件夹排序(如果本文件没配置,系统以文件目录排序 [linux是乱排的]) -//个人模板 -person -lxvista -lxblog -lxbrown -pwlake -pwblue -pwglight -pwpink -flower -coffee -gray -//企业模板 -company \ No newline at end of file diff --git a/src/member/templets/myfriend.htm b/src/member/templets/myfriend.htm deleted file mode 100755 index 28bedf89..00000000 --- a/src/member/templets/myfriend.htm +++ /dev/null @@ -1,204 +0,0 @@ - - - - -我的好友 - 会员中心 - <?php echo $cfg_webname; ?> - - - - - - - - - -
- -
- -
- - -
- -
-

- - - - (totalResult;?>) -

- -
-
- - - - - - - - -
-
{dede:pagelist listsize=5 /}
-
-
-
- -
-
- -
- - diff --git a/src/member/templets/myfriend_group.htm b/src/member/templets/myfriend_group.htm deleted file mode 100755 index 6531a2ee..00000000 --- a/src/member/templets/myfriend_group.htm +++ /dev/null @@ -1,70 +0,0 @@ - - - - -我的分组管理 - 会员中心 - <?php echo $cfg_webname; ?> - - - - - - - -
- -
- -
- -
-
-
- 添加分组: -   - -
-
-

我的组别管理

-
-
- - - - - - - - - - {dede:array.mtypearr} - - - - - {/dede:array} - - - - - - - -
删?分类名称
-
-
- -
-
-
- -
- - diff --git a/src/member/templets/search.htm b/src/member/templets/search.htm deleted file mode 100755 index 5a0b4a5d..00000000 --- a/src/member/templets/search.htm +++ /dev/null @@ -1,135 +0,0 @@ - - - - -查找好友 - 会员中心 - <?php echo $cfg_webname; ?> - - - - - - - - -
- -
- -
- -
-
-
- - - - - - - - - 岁 - - 男 - - 女 - - 不限 - -
-
-

- -
-
-
-
-
{dede:pagelist listsize=5 /}
-
-
- -
-
- -
- - diff --git a/src/member/templets/stowtop.htm b/src/member/templets/stowtop.htm deleted file mode 100755 index b9e415d5..00000000 --- a/src/member/templets/stowtop.htm +++ /dev/null @@ -1,68 +0,0 @@ - - - - -收藏夹 - 会员中心 - <?php echo $cfg_webname; ?> - - - - - - -
- -
- -
- -
    - -
  • >
  • - -
-
- - - - - {dede:datalist} - - - - - - - - {/dede:datalist} - - - - - - -
- {dede:field.title/} - - {dede:field.title/} - - [推荐] - - [删除] -
收藏时间:
{dede:pagelist listsize=5 /}
-
- -
-
- -
- - diff --git a/src/member/templets/visit-history.htm b/src/member/templets/visit-history.htm deleted file mode 100755 index 456bf74d..00000000 --- a/src/member/templets/visit-history.htm +++ /dev/null @@ -1,87 +0,0 @@ - - - - -访客历史记录 - 会员中心 - <?php echo $cfg_webname; ?> - - - - - - -
- -
- -
- -
- -
-
-
-
-
{dede:pagelist listsize=5 /}
-
-
- -
-
- -
- - diff --git a/src/member/visit-history.php b/src/member/visit-history.php deleted file mode 100755 index 8f1c04c9..00000000 --- a/src/member/visit-history.php +++ /dev/null @@ -1,36 +0,0 @@ -M_ID}' "; - $tname = "我最近访问"; - $osql="ON v.mid=m.mid "; -} -else -{ - $wsql = " v.mid='{$cfg_ml->M_ID}' "; - $tname = "关注我的人"; - $osql="ON v.vid=m.mid "; -} -$query = "SELECT v.*,m.sex,face FROM `#@__member_vhistory` AS v LEFT JOIN `#@__member` AS m $osql WHERE $wsql ORDER BY vtime DESC"; -$dlist = new DataListCP(); -$dlist->pageSize = 20; -$dlist->SetParameter("dopost",$dopost); -$dlist->SetTemplate(DEDEMEMBER.'/templets/visit-history.htm'); -$dlist->SetSource($query); -$dlist->Display(); \ No newline at end of file