diff --git a/README.md b/README.md index 28beaf88..e1e18e2e 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ -# DedeCMSV6 +# DedeBIZ -国内流行的内容管理系统(CMS)多端全媒体解决方案,DedeCMSV6系统基于PHP7.X开发,具有很强的可扩展性,并且完全开放源代码。DedeBIZ商业支持采用现流行的Go语言设计开发,让DedeCMS系统拥有简单易用、灵活扩展特性之外更安全、高效。模板设计制作简单一直是系统的一大特点,全新的版本延续了之前标签引擎,同时采用响应式模板引擎Bootstrap作为系统模板渲染引擎,让搭建跨终端(移动、PC)全媒体站点更简单。 +国内流行的内容管理系统(CMS)多端全媒体解决方案,DedeBIZ系统基于PHP7.X开发,具有很强的可扩展性,并且完全开放源代码。DedeBIZ商业支持采用现流行的Go语言设计开发,让DedeCMS系统拥有简单易用、灵活扩展特性之外更安全、高效。模板设计制作简单一直是系统的一大特点,全新的版本延续了之前标签引擎,同时采用响应式模板引擎Bootstrap作为系统模板渲染引擎,让搭建跨终端(移动、PC)全媒体站点更简单。 ## 版本说明 -DedeCMSV6.x是一个LTS版本,支持将到2022年10月截止,目前DedeCMSV6已经发布,可以[点击下载](https://www.dedebiz.com/download)获取。 +DedeBIZ.x是一个LTS版本,支持将到2022年10月截止,目前DedeBIZ已经发布,可以[点击下载](https://www.dedebiz.com/download)获取。 ## 参与开源 @@ -14,7 +14,7 @@ DedeCMSV6.x是一个LTS版本,支持将到2022年10月截止,目前DedeCMSV6 我们将会收集、整理新的功能需求制定新的Roadmap。 -[开发者](https://www.dedebiz.com/developer)可以到[工单管理](https://www.zhelixie.com/DedeBiz/DedeCMSV6/issues)中进行交流反馈。 +[开发者](https://www.dedebiz.com/developer)可以到[工单管理](https://www.zhelixie.com/DedeBiz/DedeBIZ/issues)中进行交流反馈。 普通用户可以通过微信公众号或者邮件的方式进行反馈,详见本页底部资源。 @@ -95,8 +95,8 @@ NAME: USAGE: php ./dedebiz command [arguments...] COMMANDS: - serv,s Run cli web server for DedeCMSV6 - make,m Make DedeCMSV6 HTML + serv,s Run cli web server for DedeBIZ + make,m Make DedeBIZ HTML update,u Update to latest system help,h Shows a list of commands or help quick,q Quick start a development environment @@ -112,13 +112,13 @@ WEBSITE: ## 版权信息 -详细参考:[DedeCMSV6站点授权协议](https://www.dedebiz.com/license) +详细参考:[DedeBIZ站点授权协议](https://www.dedebiz.com/license) -我们对DedeCMSV6系统授权的态度是“鼓励但不强制”,购买授权是对知识产权的尊重,是对我们技术服务的认可。 +我们对DedeBIZ系统授权的态度是“鼓励但不强制”,购买授权是对知识产权的尊重,是对我们技术服务的认可。 ## 相关资源 -- [DedeCMSV6](https://www.dedebiz.com) +- [DedeBIZ](https://www.dedebiz.com) - [帮助中心](https://www.dedebiz.com/help) diff --git a/dedebiz b/dedebiz index bb3f8571..a614add2 100755 --- a/dedebiz +++ b/dedebiz @@ -14,7 +14,7 @@ $workDir = dirname(__FILE__) . "/src"; chdir($workDir); if (substr(php_sapi_name(), 0, 3) === 'cgi') { - die("DedeCMSV6:needs php-cli to run\n\n"); + die("DedeBIZ:needs php-cli to run\n\n"); } $helpStr = " @@ -23,8 +23,8 @@ NAME: USAGE: php ./dedebiz command [arguments...] COMMANDS: - serv,s Run cli web server for DedeCMSV6 - make,m Make DedeCMSV6 HTML + serv,s Run cli web server for DedeBIZ + make,m Make DedeBIZ HTML update,u Update to latest system help,h Shows a list of commands or help quick,q Quick start a development environment @@ -75,9 +75,9 @@ if (count($argv) > 1 && ($argv[1] == "serv" || $argv[1] == "s")) { // PHP5.4以下不支持内建服务器 // 用于开发调试 if (phpversion() < "5.4") { - die("DedeCMSV6:command web server not support\n\n"); + die("DedeBIZ:command web server not support\n\n"); } - echo "Start Dev Server For DedeCMSV6\n\r"; + echo "Start Dev Server For DedeBIZ\n\r"; echo "Open http://localhost:8088\n\r"; passthru(PHP_BINARY . ' -S localhost:8088 -t' . escapeshellarg('./')); } else if (count($argv) > 1 && ($argv[1] == "make" || $argv[1] == "m")) { @@ -296,23 +296,23 @@ if (count($argv) > 1 && ($argv[1] == "serv" || $argv[1] == "s")) { } else if (count($argv) > 1 && ($argv[1] == "quick" || $argv[1] == "q")){ define("DEDEINC", $workDir."/include"); require_once(DEDEINC . "/cli.class.php"); - // 快速开始一个用于开发的DedeCMSV6环境,基于SQLite无其他依赖 - if (file_exists($workDir."/data/dedecmsv6.db")) { + // 快速开始一个用于开发的DedeBIZ环境,基于SQLite无其他依赖 + if (file_exists($workDir."/data/DedeBIZ.db")) { DedeCli::write("development environment has inited"); - echo "Start Dev Server For DedeCMSV6\n\r"; + echo "Start Dev Server For DedeBIZ\n\r"; echo "Open http://localhost:8088\n\r"; passthru(PHP_BINARY . ' -S localhost:8088 -t' . escapeshellarg('./')); exit; } // 初始化安装一个开发环境 - $db = new SQLite3($workDir.'/data/dedecmsv6.db'); + $db = new SQLite3($workDir.'/data/DedeBIZ.db'); $fp = fopen($workDir."/install/common.inc.php","r"); $configStr1 = fread($fp,filesize($workDir."/install/common.inc.php")); fclose($fp); @chmod($workDir."/data",0777); $dbtype = "sqlite"; $dbhost = ""; - $dbname = "dedecmsv6"; + $dbname = "DedeBIZ"; $dbuser = ""; $dbpwd = ""; $dbprefix = "dede_"; @@ -334,7 +334,7 @@ if (count($argv) > 1 && ($argv[1] == "serv" || $argv[1] == "s")) { $baseurl = "http://127.0.0.1:8088"; $indexUrl = "/"; $cmspath = ""; - $webname = "DedeCMSV6本地测试开发站点"; + $webname = "DedeBIZ本地测试开发站点"; $adminmail = "admin@dedebiz.com"; $fp = fopen($workDir."/install/config.cache.inc.php","r"); @@ -459,9 +459,9 @@ if (count($argv) > 1 && ($argv[1] == "serv" || $argv[1] == "s")) { Values('1','10','0','{$adminuser}的空间','','person','',''); "; $db->exec($adminquery); if (phpversion() < "5.4") { - die("DedeCMSV6:command web server not support\n\n"); + die("DedeBIZ:command web server not support\n\n"); } - echo "Start Dev Server For DedeCMSV6\n\r"; + echo "Start Dev Server For DedeBIZ\n\r"; echo "Open http://localhost:8088\n\r"; passthru(PHP_BINARY . ' -S localhost:8088 -t' . escapeshellarg('./')); exit; diff --git a/src/dede/css/base.css b/src/dede/css/base.css index 7237f827..3e9bab90 100644 --- a/src/dede/css/base.css +++ b/src/dede/css/base.css @@ -1 +1,8 @@ -*{font-size:12px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#666;background:#fff;line-height:24px;letter-spacing:0.4px}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:600}li,dd{margin:0;padding:0;list-style:none}input[type=button],input[type=submit],input[type=reset]{display:inline-block;padding:0 8px;line-height:24px;font-size:12px;color:#fff!important;background:#28a745!important;border:none;cursor:pointer;text-align:center;border-radius:2px;-webkit-appearance:none}input,input[type=text],input[type=password]{padding:2px 6px;height:24px!important;line-height:24px!important;color:#666;border:1px solid #eee}input[type=checkbox],input[type=radio]{width:14px;height:14px;vertical-align:bottom}textarea{padding:2px 6px;font-family:Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#666;border:1px solid #eee;border-radius:2px;vertical-align:bottom}select{padding:2px;border:1px solid #eee;border-radius:2px;color:#666}input[type=text]:focus,input[type=password]:focus,textarea:focus,select:focus{border:1px solid #d2d2d2;outline:none}img{margin-right:8px}h1,h2,h3{font-size:18px;color:#666}a:link{color:#666;text-decoration:none}a:hover{opacity:0.8}a:visited{color:#ccc}.alltxt{padding:2px 6px;color:#666;border:1px solid #eee;vertical-align:bottom}.pubinputs{padding:2px 6px;width:250px;line-height:16px;border:1px solid #eee}.iptxt{padding:2px 6px;line-height:14px;border:1px solid #eee}.pubinput{padding-bottom:0;width:250px;height:24px}.pubinputl{padding-bottom:0;width:250px;height:24px}.np{border:none}.linerow{border-bottom:1px solid #acacac}.coolbg{display:inline-block;padding:0 8px;line-height:24px;color:#fff!important;background:#f2f2f2!important;border-radius:2px;text-align:center;cursor:pointer}.coolbg2{height:24px;background:#dfddd2;border:1px solid #424b51}.ll{background:#e6e6e6;border-right:2px solid #acacac;border-bottom:2px solid #acacac}.bline{background:#fff;border-bottom:1px solid #f6f6f6}#uploadfield{float:left}.bline2{border-bottom:1px solid #bcbcbc}.coolbt{background:#e4f7d7;border-left:1px solid #efefef;border-top:1px solid #efefef;border-right:1px solid #acacac;border-bottom:1px solid #acacac;cursor:pointer}.coolbt2{background:#f7fcda;border-left:1px solid #efefef;border-top:1px solid #efefef;border-right:1px solid #acacac;border-bottom:1px solid #acacac}.coolbg3{width:140px;height:24px;background:#dfddd2;border:1px solid #bdc5b4;text-align:right}.coolbg61{width:380px;line-height:26px;background:#e7f3b1;border-top:1px solid #bdc5b4;border-left:1px solid #bdc5b4;border-right:1px solid #bdc5b4;text-align:right}.coolbg62{padding:2px 6px;width:380px;height:300px;background:#f8fdf0;border:1px solid #bdc5b4}.coolbg4{padding:0 10px;height:28px;line-height:28px;background:#f9fcdc;background:url(../images/dlgtitle.gif) repeat-x;border-bottom:1px solid #c9cfc1;text-align:right}.coolbg5{height:6px;background:#f9fcdc;border-top:1px solid #bdc5b4}.wsselect{padding:10px;height:auto;background:#fcfef1;overflow:auto}.dlg{padding:2px 6px;width:360px;background:#f0faeb;border:2px solid #ccc}.pubdlg{background:#fff;border:2px solid #ccc;z-index:8888}.pubdlg .title{height:28px;line-height:28px;background:#f9fcdc;background:url(../images/dlgtitle.gif) repeat-x;border-bottom:1px solid #c9cfc1;text-align:left;cursor:move}.pubdlg .titLeft{float:left;padding-left:10px;line-height:28px;color:#666}.pubdlg .titRight{float:right;padding:0}.quicksel{margin:0 10px;width:680px;height:420px;overflow:auto;z-index:10005}.quickselfoot{padding-top:8px;border-top:1px dashed #c0cc9d}.quickselItem{margin-bottom:8px}.quickselItem .topcat{padding-left:10px;line-height:28px;background:#fbfeef;border-bottom:1px dashed #ccc;clear:both}.quickselItem .soncat{padding-left:10px}.quickselItem .item{margin-right:10px;float:left}.mysource,.mywriter{width:280px;background:#f0faeb;border:2px solid #ccc;z-index:10001}.dlgws div{max-width:100%}.dlgTesttitle{padding:2px 6px;width:300px;background:#f0faeb;border:2px solid #ccc}#_mysource{z-index:10003}#_mywriter{z-index:10004}#uploadwait{z-index:19999}.option1{background:#dceca6}.option2{background:#f7fbd2}.option3{background:#fff}.ininput{width:96%;height:24px;border:1px solid #fff}.nbt{padding:2px 6px;background-image:url(../images/allbtbg.gif);background:#fff;border:1px solid #a5af83}.tdt{padding-left:10px}.waitpage{position:absolute;top:0;left:0;background:url(../../images/loading1.gif) #ababab center no-repeat;z-index:10000}.divpre img{max-width:120px;max-height:80px}.divpre{overflow:hidden}.autoinput{padding-left:6px;width:90%}.bodytitle{margin:0 auto 10px;width:98%;height:34px;line-height:34px;background:url(../images/wbg.gif);border:1px solid #cecece;box-sizing:border-box}.bodytitle div{float:left}.bodytitletxt{padding-left:10px}.tbtitle td{padding:2px 6px}.tblist td{padding:2px 6px;background:#fff}.tblist td.tbsname{padding:2px 6px;background:#f9ffe6}.colordlg{padding:2px 6px;width:100px;border:2px dashed #28a745;background:#f0faeb;z-index:10005}option.alltype{padding-left:16px;height:24px;line-height:24px;background:url(../images/arr4.gif) 2px 4px no-repeat}option.btype{padding-left:16px;height:24px;line-height:24px;background:url(../images/arr4.gif) 2px 4px no-repeat}option.stype{padding-left:24px;height:24px;line-height:24px;background:url(../images/arrr.gif) 10px 4px no-repeat}.ilist{border-top:1px dashed #bcbcbc;border-bottom:1px dashed #bcbcbc;border-left:1px dashed #bcbcbc}.ilist td{border-right:1px dashed #bcbcbc}#typeid2{float:left;padding-left:10px;height:24px;background:url(../images/typeid2bg.gif) no-repeat;border:none}.litpic_span{margin-left:-60px;width:80px;height:24px;overflow:hidden;cursor:pointer}#litpic{margin-left:-20px;width:82px;height:24px;opacity:0;cursor:pointer}#starttime,#endtime,#pubdate{padding-left:24px;background:url(../images/calendar.gif) 4px no-repeat}#title{background:url(../images/ruler.gif) repeat-x 0 6px}.spec{width:60px}.gtab a{width:80px;text-align:center;display:block;float:left;height:26px;line-height:26px}.albCt img{cursor:pointer}.maintable{width:98% !important}a.btn{color:white !important}span.page-link{background-color:#ddd}.btn-success{background-color:#28a745;border-color:#28a745}.table{color:#666}.table td,.table th{padding:6px 12px} \ No newline at end of file +/** + * @version $Id: autoload7.inc.php 1 17:44 2021-11-05 xushubieli $ + * @package DedeBIZ.Libraries + * @copyright Copyright (c) 2021, DedeBIZ.COM + * @license https://www.dedebiz.com/license + * @link https://www.dedebiz.com + */ +*{font-size:12px;letter-spacing:0.6px}body{font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;background:#fff;line-height:1.5}form,h1,h2,h3,ul,ol,div{margin:0;padding:0}td{line-height:1.5}td,th,div{word-break:break-all;word-wrap:break-word}b,strong{font-weight:400}li,dd{margin:0;padding:0;list-style:none}input[type=button],input[type=submit],input[type=reset]{display:inline-block;padding:0 8px;line-height:24px;font-size:12px;color:#fff!important;background:#28a745!important;border:none;cursor:pointer;text-align:center;border-radius:2px;-webkit-appearance:none}input,input[type=text],input[type=password]{padding:2px 6px;height:24px!important;line-height:24px!important;color:#424b51;border:1px solid #eee}input[type=checkbox],input[type=radio]{vertical-align:middle}textarea{padding:2px 6px;font-family:Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;color:#424b51;border:1px solid #eee;border-radius:2px;vertical-align:bottom}select{padding:4px;border:1px solid #eee;border-radius:2px;color:#424b51}input[type=text]:focus,input[type=password]:focus,textarea:focus,select:focus{border:1px solid #d2d2d2;outline:none}img{margin-right:8px}h1,h2,h3{font-size:18px;color:#424b51}a:link{color:#424b51;text-decoration:none}a:hover{opacity:0.8}a:visited{color:#666}.alltxt{padding:2px 6px;color:#424b51;border:1px solid #eee;vertical-align:bottom}.pubinputs{padding:2px 6px;width:250px;line-height:16px;border:1px solid #eee}.iptxt{padding:2px 6px;line-height:14px;border:1px solid #eee}.pubinput{padding-bottom:0;width:250px;height:24px}.pubinputl{padding-bottom:0;width:250px;height:24px}.np{border:none}.linerow{border-bottom:1px solid #acacac}.coolbg{display:inline-block;padding:0 8px;line-height:24px;color:#fff!important;background:#f2f2f2!important;border-radius:2px;text-align:center;cursor:pointer}.coolbg2{height:24px;background:#dfddd2;border:1px solid #424b51}.ll{background:#e6e6e6;border-right:2px solid #acacac;border-bottom:2px solid #acacac}.bline{background:#fff;border-bottom:1px solid #f6f6f6}#uploadfield{float:left}.bline2{border-bottom:1px solid #bcbcbc}.coolbt{background:#e4f7d7;border-left:1px solid #efefef;border-top:1px solid #efefef;border-right:1px solid #acacac;border-bottom:1px solid #acacac;cursor:pointer}.coolbt2{background:#f7fcda;border-left:1px solid #efefef;border-top:1px solid #efefef;border-right:1px solid #acacac;border-bottom:1px solid #acacac}.coolbg3{width:140px;height:24px;background:#dfddd2;border:1px solid #bdc5b4;text-align:right}.coolbg61{width:380px;line-height:26px;background:#e7f3b1;border-top:1px solid #bdc5b4;border-left:1px solid #bdc5b4;border-right:1px solid #bdc5b4;text-align:right}.coolbg62{padding:2px 6px;width:380px;height:300px;background:#f8fdf0;border:1px solid #bdc5b4}.coolbg4{padding:0 10px;height:28px;line-height:28px;background:#f9fcdc;background:url(../images/dlgtitle.gif) repeat-x;border-bottom:1px solid #c9cfc1;text-align:right}.coolbg5{height:6px;background:#f9fcdc;border-top:1px solid #bdc5b4}.wsselect{padding:10px;height:auto;background:#fcfef1;overflow:auto}.dlg{padding:2px 6px;width:360px;background:#f0faeb;border:2px solid #ccc}.pubdlg{background:#fff;border:2px solid #ccc;z-index:8888}.pubdlg .title{height:28px;line-height:28px;background:#f9fcdc;background:url(../images/dlgtitle.gif) repeat-x;border-bottom:1px solid #c9cfc1;text-align:left;cursor:move}.pubdlg .titLeft{float:left;padding-left:10px;line-height:28px;color:#424b51}.pubdlg .titRight{float:right;padding:0}.quicksel{margin:0 10px;width:680px;height:420px;overflow:auto;z-index:10005}.quickselfoot{padding-top:8px;border-top:1px dashed #c0cc9d}.quickselItem{margin-bottom:8px}.quickselItem .topcat{padding-left:10px;line-height:28px;background:#fbfeef;border-bottom:1px dashed #ccc;clear:both}.quickselItem .soncat{padding-left:10px}.quickselItem .item{margin-right:10px;float:left}.mysource,.mywriter{width:280px;background:#f0faeb;border:2px solid #ccc;z-index:10001}.dlgws div{max-width:100%}.dlgTesttitle{padding:2px 6px;width:300px;background:#f0faeb;border:2px solid #ccc}#_mysource{z-index:10003}#_mywriter{z-index:10004}#uploadwait{z-index:19999}.option1{background:#dceca6}.option2{background:#f7fbd2}.option3{background:#fff}.ininput{width:96%;height:24px;border:1px solid #fff}.nbt{padding:2px 6px;background-image:url(../images/allbtbg.gif);background:#fff;border:1px solid #a5af83}.tdt{padding-left:10px}.waitpage{position:absolute;top:0;left:0;background:url(../../images/loading1.gif) #ababab center no-repeat;z-index:10000}.divpre img{max-width:120px;max-height:80px}.divpre{overflow:hidden}.autoinput{padding-left:6px;width:90%}.bodytitle{margin:0 auto 10px;width:98%;height:32px;line-height:32px;background:#f2f2f2;border:1px solid #dee2e6;box-sizing:border-box}.bodytitle div{float:left}.bodytitletxt{padding-left:10px}.tbtitle td{padding:2px 6px}.tblist td{padding:2px 6px;background:#fff}.tblist td.tbsname{padding:2px 6px;background:#f9ffe6}.colordlg{padding:2px 6px;width:100px;border:2px dashed #28a745;background:#f0faeb;z-index:10005}option.alltype{padding-left:16px;height:24px;line-height:24px;background:url(../images/arr4.gif) 2px 4px no-repeat}option.btype{padding-left:16px;height:24px;line-height:24px;background:url(../images/arr4.gif) 2px 4px no-repeat}option.stype{padding-left:24px;height:24px;line-height:24px;background:url(../images/arrr.gif) 10px 4px no-repeat}.ilist{border-top:1px dashed #bcbcbc;border-bottom:1px dashed #bcbcbc;border-left:1px dashed #bcbcbc}.ilist td{border-right:1px dashed #bcbcbc}#typeid2{float:left;padding-left:10px;height:24px;background:url(../images/typeid2bg.gif) no-repeat;border:none}.litpic_span{margin-left:-60px;width:80px;height:24px;overflow:hidden;cursor:pointer}#litpic{margin-left:-20px;width:82px;height:24px;opacity:0;cursor:pointer}#starttime,#endtime,#pubdate{padding-left:24px;background:url(../images/calendar.gif) 4px no-repeat}#title{background:url(../images/ruler.gif) repeat-x 0 6px}.spec{width:60px}.gtab a{width:80px;text-align:center;display:block;float:left;height:26px;line-height:26px}.albCt img{cursor:pointer}.maintable{width:98%!important;border:1px solid #dee2e6}a.btn{color:#fff!important}span.page-link{background-color:#ddd}.btn-success{background-color:#28a745;border-color:#28a745}.table td,.table th{padding:6px 12px;color:#424b51} \ No newline at end of file diff --git a/src/dede/css/codemirror.css b/src/dede/css/codemirror.css index 61e578c3..f48349ed 100644 --- a/src/dede/css/codemirror.css +++ b/src/dede/css/codemirror.css @@ -1 +1,382 @@ -.CodeMirror{font-family:monospace;height:460px;color:black}.CodeMirror-lines{padding:4px 0}.CodeMirror pre{padding:0 4px}.CodeMirror-scrollbar-filler,.CodeMirror-gutter-filler{background-color:white}.CodeMirror-gutters{border-right:1px solid #ddd;background-color:#f7f7f7;white-space:nowrap}.CodeMirror-linenumbers{}.CodeMirror-linenumber{padding:0 3px 0 5px;min-width:20px;text-align:right;color:#999;white-space:nowrap}.CodeMirror-guttermarker{color:black}.CodeMirror-guttermarker-subtle{color:#999}.CodeMirror-cursor{border-left:1px solid black;border-right:none;width:0}.CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}.cm-fat-cursor .CodeMirror-cursor{width:auto;border:0 !important;background:#7e7}.cm-fat-cursor div.CodeMirror-cursors{z-index:1}.cm-animate-fat-cursor{width:auto;border:0;-webkit-animation:blink 1.06s steps(1) infinite;-moz-animation:blink 1.06s steps(1) infinite;animation:blink 1.06s steps(1) infinite;background-color:#7e7}@-moz-keyframes blink{0%{}50%{background-color:transparent}100%{}}@-webkit-keyframes blink{0%{}50%{background-color:transparent}100%{}}@keyframes blink{0%{}50%{background-color:transparent}100%{}}.CodeMirror-overwrite .CodeMirror-cursor{}.cm-tab{display:inline-block;text-decoration:inherit}.CodeMirror-rulers{position:absolute;left:0;right:0;top:-50px;bottom:-20px;overflow:hidden}.CodeMirror-ruler{border-left:1px solid #ccc;top:0;bottom:0;position:absolute}.cm-s-default .cm-header{color:blue}.cm-s-default .cm-quote{color:#090}.cm-negative{color:#d44}.cm-positive{color:#292}.cm-header,.cm-strong{font-weight:bold}.cm-em{font-style:italic}.cm-link{text-decoration:underline}.cm-strikethrough{text-decoration:line-through}.cm-s-default .cm-keyword{color:#708}.cm-s-default .cm-atom{color:#219}.cm-s-default .cm-number{color:#164}.cm-s-default .cm-def{color:#00f}.cm-s-default .cm-variable,.cm-s-default .cm-punctuation,.cm-s-default .cm-property,.cm-s-default .cm-operator{}.cm-s-default .cm-variable-2{color:#05a}.cm-s-default .cm-variable-3{color:#085}.cm-s-default .cm-comment{color:#a50}.cm-s-default .cm-string{color:#a11}.cm-s-default .cm-string-2{color:#f50}.cm-s-default .cm-meta{color:#555}.cm-s-default .cm-qualifier{color:#555}.cm-s-default .cm-builtin{color:#30a}.cm-s-default .cm-bracket{color:#997}.cm-s-default .cm-tag{color:#170}.cm-s-default .cm-attribute{color:#00c}.cm-s-default .cm-hr{color:#999}.cm-s-default .cm-link{color:#00c}.cm-s-default .cm-error{color:#f00}.cm-invalidchar{color:#f00}.CodeMirror-composing{border-bottom:2px solid}div.CodeMirror span.CodeMirror-matchingbracket{color:#0f0}div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#f22}.CodeMirror-matchingtag{background:rgba(255,150,0,.3)}.CodeMirror-activeline-background{background:#e8f2ff}.CodeMirror{position:relative;overflow:hidden;background:white}.CodeMirror-scroll{overflow:scroll !important;margin-bottom:-30px;margin-right:-30px;padding-bottom:30px;height:100%;outline:none;position:relative}.CodeMirror-sizer{position:relative;border-right:30px solid transparent}.CodeMirror-vscrollbar,.CodeMirror-hscrollbar,.CodeMirror-scrollbar-filler,.CodeMirror-gutter-filler{position:absolute;z-index:6;display:none}.CodeMirror-vscrollbar{right:0;top:0;overflow-x:hidden;overflow-y:scroll}.CodeMirror-hscrollbar{bottom:0;left:0;overflow-y:hidden;overflow-x:scroll}.CodeMirror-scrollbar-filler{right:0;bottom:0}.CodeMirror-gutter-filler{left:0;bottom:0}.CodeMirror-gutters{position:absolute;left:0;top:0;min-height:100%;z-index:3}.CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;vertical-align:top;margin-bottom:-30px}.CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:none !important;border:none !important}.CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}.CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}.CodeMirror-gutter-wrapper{-webkit-user-select:none;-moz-user-select:none;user-select:none}.CodeMirror-lines{cursor:text;min-height:1px}.CodeMirror pre{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;border-width:0;background:transparent;font-family:inherit;font-size:inherit;margin:0;white-space:pre;word-wrap:normal;line-height:inherit;color:inherit;z-index:2;position:relative;overflow:visible;-webkit-tap-highlight-color:transparent;-webkit-font-variant-ligatures:contextual;font-variant-ligatures:contextual}.CodeMirror-wrap pre{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.CodeMirror-linebackground{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.CodeMirror-linewidget{position:relative;z-index:2;overflow:auto}.CodeMirror-widget{}.CodeMirror-code{outline:none}.CodeMirror-scroll,.CodeMirror-sizer,.CodeMirror-gutter,.CodeMirror-gutters,.CodeMirror-linenumber{-moz-box-sizing:content-box;box-sizing:content-box}.CodeMirror-measure{position:absolute;width:100%;height:0;overflow:hidden;visibility:hidden}.CodeMirror-cursor{position:absolute;pointer-events:none}.CodeMirror-measure pre{position:static}div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}div.CodeMirror-dragcursors{visibility:visible}.CodeMirror-focused div.CodeMirror-cursors{visibility:visible}.CodeMirror-selected{background:#d9d9d9}.CodeMirror-focused .CodeMirror-selected{background:#d7d4f0}.CodeMirror-crosshair{cursor:crosshair}.CodeMirror-line::selection,.CodeMirror-line > span::selection,.CodeMirror-line > span > span::selection{background:#d7d4f0}.CodeMirror-line::-moz-selection,.CodeMirror-line > span::-moz-selection,.CodeMirror-line > span > span::-moz-selection{background:#d7d4f0}.cm-searching{background:#ffa;background:rgba(255,255,0,.4)}.cm-force-border{padding-right:.1px}@media print{.CodeMirror div.CodeMirror-cursors{visibility:hidden}}.cm-tab-wrap-hack:after{content:''}span.CodeMirror-selectedtext{background:none} \ No newline at end of file +.CodeMirror { + font-family:monospace; + height:460px; + color:black +} +.CodeMirror-lines { + padding:4px 0 +} +.CodeMirror pre { + padding:0 4px +} +.CodeMirror-scrollbar-filler,.CodeMirror-gutter-filler { + background-color:white +} +.CodeMirror-gutters { + border-right:1px solid #ddd; + background-color:#f7f7f7; + white-space:nowrap +} +.CodeMirror-linenumber { + padding:0 3px 0 5px; + min-width:20px; + text-align:right; + color:#999; + white-space:nowrap +} +.CodeMirror-guttermarker { + color:black +} +.CodeMirror-guttermarker-subtle { + color:#999 +} +.CodeMirror-cursor { + border-left:1px solid black; + border-right:none; + width:0 +} +.CodeMirror div.CodeMirror-secondarycursor { + border-left:1px solid silver +} +.cm-fat-cursor .CodeMirror-cursor { + width:auto; + border:0 !important; + background:#7e7 +} +.cm-fat-cursor div.CodeMirror-cursors { + z-index:1 +} +.cm-animate-fat-cursor { + width:auto; + border:0; + -webkit-animation:blink 1.06s steps(1) infinite; + -moz-animation:blink 1.06s steps(1) infinite; + animation:blink 1.06s steps(1) infinite; + background-color:#7e7 +} +@-moz-keyframes blink { + 0% { + }50% { + background-color:transparent +} +100% { + } +} +@-webkit-keyframes blink { + 0% { + }50% { + background-color:transparent +} +100% { + } +} +@keyframes blink { + 0% { + }50% { + background-color:transparent +} +100% { + } +} +.CodeMirror-overwrite .CodeMirror-cursor { + }.cm-tab { + display:inline-block; + text-decoration:inherit +} +.CodeMirror-rulers { + position:absolute; + left:0; + right:0; + top:-50px; + bottom:-20px; + overflow:hidden +} +.CodeMirror-ruler { + border-left:1px solid #ccc; + top:0; + bottom:0; + position:absolute +} +.cm-s-default .cm-header { + color:blue +} +.cm-s-default .cm-quote { + color:#090 +} +.cm-negative { + color:#d44 +} +.cm-positive { + color:#292 +} +.cm-header,.cm-strong { + font-weight:bold +} +.cm-em { + font-style:italic +} +.cm-link { + text-decoration:underline +} +.cm-strikethrough { + text-decoration:line-through +} +.cm-s-default .cm-keyword { + color:#708 +} +.cm-s-default .cm-atom { + color:#219 +} +.cm-s-default .cm-number { + color:#164 +} +.cm-s-default .cm-def { + color:#00f +} +.cm-s-default .cm-variable,.cm-s-default .cm-punctuation,.cm-s-default .cm-property,.cm-s-default .cm-operator { + }.cm-s-default .cm-variable-2 { + color:#05a +} +.cm-s-default .cm-variable-3 { + color:#085 +} +.cm-s-default .cm-comment { + color:#a50 +} +.cm-s-default .cm-string { + color:#a11 +} +.cm-s-default .cm-string-2 { + color:#f50 +} +.cm-s-default .cm-meta { + color:#555 +} +.cm-s-default .cm-qualifier { + color:#555 +} +.cm-s-default .cm-builtin { + color:#30a +} +.cm-s-default .cm-bracket { + color:#997 +} +.cm-s-default .cm-tag { + color:#170 +} +.cm-s-default .cm-attribute { + color:#00c +} +.cm-s-default .cm-hr { + color:#999 +} +.cm-s-default .cm-link { + color:#00c +} +.cm-s-default .cm-error { + color:#f00 +} +.cm-invalidchar { + color:#f00 +} +.CodeMirror-composing { + border-bottom:2px solid +} +div.CodeMirror span.CodeMirror-matchingbracket { + color:#0f0 +} +div.CodeMirror span.CodeMirror-nonmatchingbracket { + color:#f22 +} +.CodeMirror-matchingtag { + background:rgba(255,150,0,.3) +} +.CodeMirror-activeline-background { + background:#e8f2ff +} +.CodeMirror { + position:relative; + overflow:hidden; + background:white +} +.CodeMirror-scroll { + overflow:scroll !important; + margin-bottom:-30px; + margin-right:-30px; + padding-bottom:30px; + height:100%; + outline:none; + position:relative +} +.CodeMirror-sizer { + position:relative; + border-right:30px solid transparent +} +.CodeMirror-vscrollbar,.CodeMirror-hscrollbar,.CodeMirror-scrollbar-filler,.CodeMirror-gutter-filler { + position:absolute; + z-index:6; + display:none +} +.CodeMirror-vscrollbar { + right:0; + top:0; + overflow-x:hidden; + overflow-y:scroll +} +.CodeMirror-hscrollbar { + bottom:0; + left:0; + overflow-y:hidden; + overflow-x:scroll +} +.CodeMirror-scrollbar-filler { + right:0; + bottom:0 +} +.CodeMirror-gutter-filler { + left:0; + bottom:0 +} +.CodeMirror-gutters { + position:absolute; + left:0; + top:0; + min-height:100%; + z-index:3 +} +.CodeMirror-gutter { + white-space:normal; + height:100%; + display:inline-block; + vertical-align:top; + margin-bottom:-30px +} +.CodeMirror-gutter-wrapper { + position:absolute; + z-index:4; + background:none !important; + border:none !important +} +.CodeMirror-gutter-background { + position:absolute; + top:0; + bottom:0; + z-index:4 +} +.CodeMirror-gutter-elt { + position:absolute; + cursor:default; + z-index:4 +} +.CodeMirror-gutter-wrapper { + -webkit-user-select:none; + -moz-user-select:none; + user-select:none +} +.CodeMirror-lines { + cursor:text; + min-height:1px +} +.CodeMirror pre { + -moz-border-radius:0; + -webkit-border-radius:0; + border-radius:0; + border-width:0; + background:transparent; + font-family:inherit; + font-size:inherit; + margin:0; + white-space:pre; + word-wrap:normal; + line-height:inherit; + color:inherit; + z-index:2; + position:relative; + overflow:visible; + -webkit-tap-highlight-color:transparent; + -webkit-font-variant-ligatures:contextual; + font-variant-ligatures:contextual +} +.CodeMirror-wrap pre { + word-wrap:break-word; + white-space:pre-wrap; + word-break:normal +} +.CodeMirror-linebackground { + position:absolute; + left:0; + right:0; + top:0; + bottom:0; + z-index:0 +} +.CodeMirror-linewidget { + position:relative; + z-index:2; + overflow:auto +} +.CodeMirror-widget { + }.CodeMirror-code { + outline:none +} +.CodeMirror-scroll,.CodeMirror-sizer,.CodeMirror-gutter,.CodeMirror-gutters,.CodeMirror-linenumber { + -moz-box-sizing:content-box; + box-sizing:content-box +} +.CodeMirror-measure { + position:absolute; + width:100%; + height:0; + overflow:hidden; + visibility:hidden +} +.CodeMirror-cursor { + position:absolute; + pointer-events:none +} +.CodeMirror-measure pre { + position:static +} +div.CodeMirror-cursors { + visibility:hidden; + position:relative; + z-index:3 +} +div.CodeMirror-dragcursors { + visibility:visible +} +.CodeMirror-focused div.CodeMirror-cursors { + visibility:visible +} +.CodeMirror-selected { + background:#d9d9d9 +} +.CodeMirror-focused .CodeMirror-selected { + background:#d7d4f0 +} +.CodeMirror-crosshair { + cursor:crosshair +} +.CodeMirror-line::selection,.CodeMirror-line > span::selection,.CodeMirror-line > span > span::selection { + background:#d7d4f0 +} +.CodeMirror-line::-moz-selection,.CodeMirror-line > span::-moz-selection,.CodeMirror-line > span > span::-moz-selection { + background:#d7d4f0 +} +.cm-searching { + background:#ffa; + background:rgba(255,255,0,.4) +} +.cm-force-border { + padding-right:.1px +} +@media print { + .CodeMirror div.CodeMirror-cursors { + visibility:hidden +} +}.cm-tab-wrap-hack:after { + content:'' +} +span.CodeMirror-selectedtext { + background:none +} \ No newline at end of file diff --git a/src/dede/css/frame.css b/src/dede/css/frame.css index 69eceb9e..bb455a43 100644 --- a/src/dede/css/frame.css +++ b/src/dede/css/frame.css @@ -1 +1,455 @@ -*{padding:0px;margin:0px}html,body{width:100%;height:100%}body{height:100%;font-size:12px;overflow:hidden;z-index:1}body.showmenu{background:url(../images/leftmenu_bg.gif) -11px top repeat-y}body.hidemenu{background:none}ul{list-style:none}form{margin:0;padding:0}.head{width:100%;height:76px;overflow:hidden;z-index:8;position:relative}.top{height:47px;width:100%;background-image:linear-gradient(135deg,#008E38 0%,#639709 100%);overflow:hidden;clear:both}.top .top_logo{width:170px;height:37px;margin-top:5px;float:left}.top .top_link{float:right;padding:10px 10px 0px 0px}.top .top_link ul{float:left;padding:8px 0px 0px 0px;line-height:14px;overflow:hidden}.top .top_link ul li.welcome{border-right:none;color:#A8C280;padding-right:6px}.top .top_link ul li{float:left;color:#CBDAB3;border-right:1px solid #61910F;margin-right:-1px}.top .top_link ul li a{color:#CBDAB3;padding-left:11px;padding-right:11px;text-decoration:none}.top .top_link ul li a:hover{color:#FFF;text-decoration:underline}.top .top_link .quick{padding:3px 0px 0px 0px;float:left}.top .top_link .quick a{display:block;text-decoration:none;color:#C60;float:left;line-height:21px;height:21px;overflow:hidden}.top .top_link .quick a.ac_qucikmenu{width:81px;background:url(../images/quick_bg.gif) left top no-repeat;letter-spacing:1px;text-indent:8px}.top .top_link .quick a.ac_qucikmenu:hover{background:url(../images/quick_bg.gif) left bottom no-repeat}.top .top_link .quick a.ac_qucikadd{width:19px;background:url(../images/quick_bg.gif) right top no-repeat}.top .top_link .quick a.ac_qucikadd:hover{background:url(../images/quick_bg.gif) right bottom no-repeat}.topnav{width:100%;height:29px;background:url(../images/admin_top_bg.jpg) left -37px repeat-x;overflow:hidden;clear:both}.topnav .menuact{width:168px;float:left;padding-left:10px;overflow:hidden;padding-top:6px}.topnav .menuact a{overflow:hidden;color:#999999;padding-left:22px;padding-right:3px;text-decoration:none}.topnav .menuact a:hover{color:#FFF;text-decoration:none}.topnav .menuact #togglemenu{background:url(../images/toggle_menu.gif) 5px 0px no-repeat}.topnav .menuact #allmenu{background:url(../images/allmenu.gif) 5px 0px no-repeat}.nav{float:left;padding-left:2px;line-height:27px;color:#999}.nav ul li{float:left;display:block;margin-left:4px}.nav ul li a{padding:0px 11px 0px 11px;color:#FFCC00;text-decoration:none}.nav ul li a:hover{color:#FFFFFF}.nav ul li a.thisclass,.nav ul li a.thisclass:hover{color:#4E8100;display:block;font-weight:bold;background:#FFF;line-height:23px;border-top:2px solid #FFDE59;margin-top:4px;padding:0px 10px 0px 10px}.sysmsg{height:27px;overflow:hidden;line-height:27px;padding-right:10px;float:right;color:#999;width:500px}.sysmsg h3{font-size:12px;float:left;padding-right:6px;font-weight:normal;color:#FC0;display:none}.scroll{padding-top:1px;float:right;overflow:hidden;height:25px}.scroll ul{}.scroll ul li,.sysmsg ul li a{color:#BBB;text-decoration:none}.scroll ul li{height:27px;overflow:hidden;line-height:27px;float:right;clear:both;padding-left:19px;background:url(../images/ico-sysmsg.png) 5px 8px no-repeat}.scroll ul li a:hover{text-decoration:underline}.scroll{padding-right:20px}.scroll a{padding-left:20px;color:#ffffff;text-decoration:none;margin-right:10px;background:url(../images/ico-sysmsg.png) 3px 1px no-repeat}.scroll a:hover{text-decoration:underline}body.showmenu .left{display:block}body.hidemenu .left{display:none}body.showmenu .right{left:212px}body.hidemenu .right{left:0px}.left{position:absolute;top:76px;width:212px;left:0px;bottom:0px;z-index:7}.menu{height:100%}.top_link{font-size:13px}.menu iframe{height:100%;width:99.99%;z-index:20}.right{position:absolute;right:0;top:76px;bottom:0px;z-index:7}.main{height:100%}.main iframe{height:100%;width:99.99%;z-index:20}.qucikmenu{position:absolute;right:10px;top:32px;z-index:9;display:none}.qucikmenu ul{width:110px;list-style:none;border:1px solid #E7E7E7;background:#FFF}.qucikmenu ul li{display:block;text-align:left}.qucikmenu ul li a{height:29px;line-height:29px;display:block;color:#666666;padding-left:10px;padding-right:10px;text-decoration:none}.qucikmenu ul li a:hover{text-decoration:none;background:#F7F7F7}.pagemask{width:100%;height:100%;background:#000;position:absolute;z-index:100;filter:alpha(opacity=70);-moz-opacity:0.7;opacity:0.7;display:none}.iframemask{position:absolute;z-index:80;top:0;left:0;background-color:#fff;border:none;filter:alpha(opacity=0);-moz-opacity:0;opacity:0;height:100%;width:100%;display:none}.allmenu{width:726px;background:#FFF;border:4px solid #333;z-index:999;position:absolute;left:50%;top:38px;margin-left:-350px;display:none;padding:5px 0px}.allmenu .allmenu-box{width:720px;margin:0px auto;text-align:left;overflow:hidden;padding-left:2px}.maptop{float:left;width:113px;overflow:hidden;padding-right:3px;padding-left:3px;border-right:1px solid #EEE;border-left:1px solid #EEE;margin-left:-1px}.maptop dt.bigitem{padding:2px;background:#455656;color:#FFF;line-height:19px;font-weight:bold;margin-bottom:3px;text-indent:3px}.mapitem dt{line-height:21px;font-weight:bold;text-indent:10px;background:#EFF1F1}.mapitem ul{margin-top:2px;margin-bottom:5px}.mapitem ul li{text-indent:13px;line-height:22px;background:url(../images/arrr.gif) 4px 6px no-repeat}.allmenu a{color:#5C604F;text-decoration:none}.allmenu a:hover{color:#F63}#login .theme{clear:both;padding:10px;width:70%;margin-top:20px}#login .theme li{margin-bottom:15px;margin-top:5px;overflow:hidden}#login .theme span{color:#000000;width:150px;display:inline-block;float:left;text-align:right;height:22px;line-height:22px}input{color:#000;font-size:12px}input[type="text"],input[type="password"]{width:219px;border-width:1px;border-style:solid;border-color:#707070 #CECECE #CECECE #707070;padding:2px 4px;height:18px;line-height:18px;vertical-align:middle;background:#FFF url("../images/input.gif") 0 0 no-repeat}input[type="text"]:focus,input[type="password"]:focus{border-color:#6FB1DF;color:#333;-moz-box-shadow:0 0 3px #A5C760;-webkit-border-shadow:0 0 3px #A5C760;box-shadow:0 0 3px #A5C760}* html input.text{width:223px;border:1px solid #a7a6aa;background:#FFF url("../images/input.gif") 0 0 no-repeat;margin-top:-1px;margin-right:5px;margin-bottom:0;margin-left:2px;padding:3px;line-height:12px}* html input.radio{margin:-1px 0 0 -2px}.allsearch{float:left;margin-top:3px!important;background:#FFF url("../images/input.gif") 0 0 no-repeat;border:1px solid #a7a6aa;padding:2px;height:14px!important;line-height:14px!important;height:19px}.np{width:40px;height:20px;line-height:20px;border:none;background:url(../images/search_bn.gif) #EFF7D0;cursor:pointer;margin-left:2px;margin-right:8px}#help{background:url("../images/dlgtitle.gif") repeat-x scroll 0 0 transparent;bottom:0;left:0;position:absolute;width:100%;height:28px;border-top:1px solid #390;line-height:28px;text-align:right;padding-top:0;padding-bottom:0}#help #content{padding-right:12px;background:url(../images/gtk-edit.png) no-repeat scroll 0px -1px;padding-left:20px} \ No newline at end of file +* { + padding:0; + margin:0; + box-sizing:border-box +} +a { + text-decoration:none +} +html,body { + width:100%; + height:100% +} +body { + height:100%; + font-size:12px; + overflow:hidden; + z-index:1 +} +body.showmenu { + background:url(../images/leftmenu_bg.gif) -10px top repeat-y +} +body.hidemenu { + background:none +} +ul { + list-style:none +} +form { + margin:0; + padding:0 +} +.head { + width:100%; + height:76px; + overflow:hidden; + z-index:8; + position:relative +} +.top { + height:46px; + width:100%; + background-image:linear-gradient(135deg,#008E38 0%,#639709 100%); + overflow:hidden; + clear:both +} +.top .top_logo { + float:left; + margin-left:10px; + height:46px; + line-height:46px +} +.top .top_logo a { + font-size:18px; + font-weight:600; + color:#fff +} +.top .top_version { + display:inline-block; + margin-top:10px; + margin-left:10px; + color:#fff +} +.top .top_link { + float:right +} +.top .top_link ul { + float:left; + line-height:46px; + overflow:hidden +} +.top .top_link ul li.welcome img { + margin-top:-2px; + margin-right:10px; + width:30px; + height:30px; + vertical-align:middle +} +.top .top_link ul li { + float:left; + color:#fff +} +.top .top_link ul li a { + color:#fff; + padding-left:10px; + padding-right:10px +} +.top .top_link ul li a:hover { + color:#ccc +} +.top .top_link .quick { + padding:3px 0px 0px 0px; + float:left +} +.top .top_link .quick a { + display:block; + color:#C60; + float:left; + line-height:21px; + height:21px; + overflow:hidden +} +.top .top_link .quick a.ac_qucikmenu { + width:81px; + background:url(../images/quick_bg.gif) left top no-repeat; + letter-spacing:1px; + text-indent:8px +} +.top .top_link .quick a.ac_qucikmenu:hover { + background:url(../images/quick_bg.gif) left bottom no-repeat +} +.top .top_link .quick a.ac_qucikadd { + width:19px; + background:url(../images/quick_bg.gif) right top no-repeat +} +.top .top_link .quick a.ac_qucikadd:hover { + background:url(../images/quick_bg.gif) right bottom no-repeat +} +.topnav { + width:100%; + height:30px; + background:#333; + overflow:hidden; + clear:both +} +.topnav .menuact { + width:168px; + float:left; + padding-left:10px; + overflow:hidden; + padding-top:6px +} +.topnav .menuact a { + overflow:hidden; + color:#eee; + padding-right:10px +} +.topnav .menuact a:hover { + color:#fff +} +.nav { + float:left; + padding-left:2px; + line-height:26px; + color:#999 +} +.nav ul li { + float:left; + display:block; + margin-left:4px +} +.nav ul li a { + padding:0 10px 0px 10px; + color:#FFCC00 +} +.nav ul li a:hover { + color:#fff +} +.nav ul li a.thisclass,.nav ul li a.thisclass:hover { + color:#4E8100; + display:block; + font-weight:bold; + background:#fff; + line-height:23px; + border-top:2px solid #FFDE59; + margin-top:4px; + padding:0 10px 0px 10px +} +.sysmsg { + height:30px; + overflow:hidden; + line-height:30px; + padding-right:10px; + float:right; + color:#999; + width:500px +} +.sysmsg h3 { + font-size:12px; + float:left; + padding-right:6px; + font-weight:normal; + color:#FC0; + display:none +} +.scroll { + float:right; + overflow:hidden; + height:30px +} +.scroll ul li,.sysmsg ul li a { + color:#BBB +} +.scroll ul li { + height:26px; + overflow:hidden; + line-height:26px; + float:right; + clear:both; + padding-left:19px; + background:url(../images/ico-sysmsg.png) 5px 8px no-repeat +} +.scroll ul li a:hover { + text-decoration:underline +} +.scroll a { + padding-left:10px; + color:#fff +} +.scroll a:hover { + text-decoration:underline +} +body.showmenu .left { + display:block +} +body.hidemenu .left { + display:none +} +body.showmenu .right { + left:220px +} +body.hidemenu .right { + left:0 +} +.left { + position:absolute; + top:76px; + width:220px; + left:0; + bottom:0; + z-index:7 +} +.menu { + height:100% +} +.top_link { + font-size:12px +} +.menu iframe { + height:100%; + width:99.99%; + z-index:20 +} +.right { + position:absolute; + right:0; + top:76px; + bottom:0; + z-index:7 +} +.main { + height:100% +} +.main iframe { + height:100%; + width:99.99%; + z-index:20 +} +.qucikmenu { + position:absolute; + right:10px; + top:32px; + z-index:9; + display:none +} +.qucikmenu ul { + width:110px; + list-style:none; + border:1px solid #E7E7E7; + background:#fff +} +.qucikmenu ul li { + display:block; + text-align:left +} +.qucikmenu ul li a { + height:30px; + line-height:30px; + display:block; + color:#666666; + padding-left:10px; + padding-right:10px +} +.qucikmenu ul li a:hover { + background:#F7F7F7 +} +.pagemask { + width:100%; + height:100%; + background:#000; + position:absolute; + z-index:100; + filter:alpha(opacity=70); + -moz-opacity:0.7; + opacity:0.7; + display:none +} +.iframemask { + position:absolute; + z-index:80; + top:0; + left:0; + background-color:#fff; + border:none; + filter:alpha(opacity=0); + -moz-opacity:0; + opacity:0; + height:100%; + width:100%; + display:none +} +.allmenu { + width:800px; + background:#fff; + border:2px solid #999; + z-index:999; + position:absolute; + left:50%; + top:76px; + margin-left:-400px; + display:none; + padding:10px +} +.allmenu .allmenu-box { + margin:0 auto; + text-align:left; + overflow:hidden; + padding-left:2px +} +.maptop { + float:left; + width:130px; + overflow:hidden; + padding-right:6px; + padding-left:6px; + margin-left:-1px +} +.maptop dt.bigitem { + padding:5px 10px; + background:#333; + color:#fff; + line-height:18px; + font-weight:600 +} +.mapitem dt { + line-height:21px; + font-weight:bold; + text-indent:10px; + background:#EFF1F1 +} +.mapitem ul { + margin-top:10px; + margin-bottom:10px +} +.mapitem ul li { + text-indent:20px; + line-height:24px; + background:url(../images/arrr.gif) 4px 6px no-repeat +} +.allmenu a { + color:#5C604F +} +.allmenu a:hover { + color:#F63 +} +#login .theme { + clear:both; + padding:10px; + width:70%; + margin-top:20px +} +#login .theme li { + margin-bottom:15px; + margin-top:5px; + overflow:hidden +} +#login .theme span { + color:#000000; + width:150px; + display:inline-block; + float:left; + text-align:right; + height:22px; + line-height:22px +} +input { + color:#000; + font-size:12px +} +input[type="text"],input[type="password"] { + width:160px; + border-width:1px; + border-style:solid; + border-color:#fff; + padding:2px 4px; + height:18px; + line-height:18px; + vertical-align:middle; + background:#fff +} +input[type="text"]:focus,input[type="password"]:focus { + border-color:#6FB1DF; + color:#333; + -moz-box-shadow:0 0 3px #A5C760; + -webkit-border-shadow:0 0 3px #A5C760; + box-shadow:0 0 3px #A5C760 +} +* html input.text { + width:223px; + border:1px solid #a7a6aa; + background:#fff url(../images/input.gif) 0 0 no-repeat; + margin-top:-1px; + margin-right:5px; + margin-bottom:0; + margin-left:2px; + padding:3px; + line-height:12px +} +* html input.radio { + margin:-1px 0 0 -2px +} +.allsearch { + float:left; + margin-top:7px!important; + border:1px solid #fff; + border-radius:2px +} +.np { + width:40px; + height:18px; + line-height:18px; + border:none; + color:#fff; + background:#57960f; + cursor:pointer; + margin-left:10px; + border-radius:2px +} +#help { + background:url(../images/dlgtitle.gif) repeat-x scroll 0 0 transparent; + bottom:0; + left:0; + position:absolute; + width:100%; + height:28px; + border-top:1px solid #390; + line-height:28px; + text-align:right; + padding-top:0; + padding-bottom:0 +} +#help #content { + padding-right:12px; + background:url(../images/gtk-edit.png) no-repeat scroll 0px -1px; + padding-left:20px +} \ No newline at end of file diff --git a/src/dede/css/indexbody.css b/src/dede/css/indexbody.css index 590b6ad7..b2b0c365 100755 --- a/src/dede/css/indexbody.css +++ b/src/dede/css/indexbody.css @@ -1,205 +1,166 @@ td { - padding: 3px 0px 0 3px; + padding:3px 0px 0 3px } - .title { - color: #666600; - font-weight: bold; + color:#666600; + font-weight:bold } - .title span { - padding-left: 3px; + padding-left:3px } - #addTab { - position: absolute; - left: 455px; - top: 150px; - width: 360px; - height: 200px; - z-index: 2; - background-color: #FFFFFF; - border: 1px solid #889D8F; - padding: 0px; - display: none; - overflow: hidden; -} - + position:absolute; + left:455px; + top:150px; + width:360px; + height:200px; + z-index:2; + background-color:#FFFFFF; + border:1px solid #889D8F; + padding:0px; + display:none; + overflow:hidden +} #editTab { - position: absolute; - left: 455px; - top: 120px; - width: 360px; - height: 350px; - z-index: 1; - background-color: #FFFFFF; - border: 1px solid #889D8F; - padding: 0px; - display: none; -} - + position:absolute; + left:455px; + top:120px; + width:360px; + height:350px; + z-index:1; + background-color:#FFFFFF; + border:1px solid #889D8F; + padding:0px; + display:none +} .txt { - float: left; + float:left } - .updatedvt { - line-height: 23px; - padding-left: 3px; - width: 98%; - border-bottom: 1px dashed #dcdcdc; + line-height:23px; + padding-left:3px; + width:98%; + border-bottom:1px dashed #dcdcdc } - .upinfotitle { - border-bottom: 1px solid #cccccc; - color: red; - font-weight: bold; - line-height: 26px; + border-bottom:1px solid #cccccc; + color:red; + font-weight:bold; + line-height:26px } - .verline { - border-bottom: 1px dashed #cccccc; - line-height: 26px; + border-bottom:1px dashed #cccccc; + line-height:26px } - .itemTable { - margin-top: 8px; - background: #CBD8AC; + margin-top:8px; + background:#CBD8AC } - #loaddiv { - top: 0; - left: 0; - background: #cccccc; - filter: Alpha(opacity=70); - -moz-opacity: 0.7; - position: absolute; - z-index: 10000; - width: 100%; - height: 100%; -} - + top:0; + left:0; + background:#cccccc; + filter:Alpha(opacity=70); + -moz-opacity:0.7; + position:absolute; + z-index:10000; + width:100%; + height:100% +} #mainmsg { - padding-right: 8px; + padding-right:8px } - .rightside { - width: 49%; - float: left; - margin-right: 1%; - height: 670px; - scrollbar-face-color: #ffffff; - scrollbar-highlight-color: #919192; - scrollbar-shadow-color: #919192; - scrollbar-3dlight-color: #ffffff; - scrollbar-arrow-color: #919192; - scrollbar-track-color: #ffffff; - scrollbar-darkshadow-color: #ffffff; -} - + width:49%; + float:left; + margin-right:1%; + height:670px +} .column { - width: 49%; - float: left; - margin-right: 0.5%; + width:49%; + float:left; + margin-right:0.5% } - .placeholder { - width: 98%; - margin-left: 1%; - background: #f0f0f0; - border: 1px dashed #ddd; + width:98%; + margin-left:1%; + background:#f0f0f0; + border:1px dashed #ddd } - .dbox { - border: 1px solid #DEEAB6; - width: 98%; - margin-left: 1%; - margin-top: 8px; + border:1px solid #DEEAB6; + width:98%; + margin-left:1%; + margin-top:8px } - .dbox dt { - height: 28px; - line-height: 28px; - font-weight: bold; - color: #4D6C2F; - cursor: move; + height:28px; + line-height:28px; + font-weight:bold; + color:#4D6C2F; + cursor:move } - .dbox dt .l { - float: left; - padding-left: 8px; + float:left; + padding-left:8px } - .dbox dt .r { - float: right; - padding-right: 8px; + float:right; + padding-right:8px } - .dbox dt.lside { - border-bottom: 1px solid #CFD7C4; - background-color: rgb(239, 248, 229); + border-bottom:1px solid #CFD7C4; + background-color:rgb(239,248,229) } - .dbox dt.rside { - border-bottom: 1px solid #DEEAB6; - background: url(../images/wbg.gif) repeat-x; + border-bottom:1px solid #DEEAB6; + background:url(../images/wbg.gif) repeat-x } - .dbox dd { - padding: 0px; + padding:0px } - .dbox dd.intable { - padding-top: 3px; + padding-top:3px } - #updatetest { - padding: 6px; - padding-left: 110px; - background: url("../images/ico_spider.gif") no-repeat scroll 10px 15px transparent; + padding:6px; + padding-left:110px; + background:url(../images/ico_spider.gif) no-repeat scroll 10px 15px transparent } - #quickmenu { - width: 100%; - height: 46px; - overflow: hidden; + width:100%; + height:46px; + overflow:hidden } - #quickmenu .icoitem { - float: left; - height: 24px; - line-height: 24px; - margin-top: 12px; - padding-left: 30px; - overflow: hidden; -} - + float:left; + height:24px; + line-height:24px; + margin-top:12px; + padding-left:30px; + overflow:hidden +} .dboxtable td.nline { - border-bottom: 1px dashed #CFD7C4; - height: 26px; + border-bottom:1px dashed #CFD7C4; + height:26px } - .dboxtable1 ul li { - float: left; - border-bottom: 1px dashed #CFD7C4; - height: 26px; - line-height: 26px; - display: inline; - width: 48%; - text-align: center; -} - + float:left; + border-bottom:1px dashed #CFD7C4; + height:26px; + line-height:26px; + display:inline; + width:48%; + text-align:center +} .biz p { - padding: 0 15px; - line-height: 23px; + padding:0 15px; + line-height:23px } - .biz img { - float: right; - margin: 40px 15px 0 15px; + float:right; + margin:40px 15px 0 15px } - .footer { - line-height: 36px; - margin-top: 8px; - font-family: Verdana, Geneva, sans-serif; + line-height:36px } \ No newline at end of file diff --git a/src/dede/dialog/select_images.php b/src/dede/dialog/select_images.php index f633d7ec..b1d5c949 100644 --- a/src/dede/dialog/select_images.php +++ b/src/dede/dialog/select_images.php @@ -73,7 +73,7 @@ table{background:#fff}
- 关闭预览 + 关闭预览
- - - -
-
+ echo $mapstring; + ?> +
- -
v6 -
+ +
- -
-
- +
-
- +

滚动消息:

- + 代码托管 帮助中心 @@ -193,5 +165,4 @@ })(jQuery); - \ No newline at end of file diff --git a/src/dede/templets/index_body.htm b/src/dede/templets/index_body.htm index 8d81e0c8..df43a96d 100755 --- a/src/dede/templets/index_body.htm +++ b/src/dede/templets/index_body.htm @@ -1,10 +1,8 @@ - + - - DedeCMSV6系统概况 + DedeBIZV6系统概况 @@ -71,7 +69,7 @@ \r\n"; + echo "安全操作:数据备份/还原 病毒扫描 错误修复
"; echo ""; ?>
@@ -84,7 +82,7 @@
- Dede商业服务授权 + 商业服务授权
@@ -99,8 +97,8 @@
快捷操作 - 【新增】 - 【管理】 + 新增 + 管理
@@ -245,17 +243,17 @@
-2 ORDER BY arc.id DESC LIMIT 0, 6 "; + LEFT JOIN `#@__channeltype` ch ON ch.id = arc.channel + WHERE arc.arcrank<>-2 ORDER BY arc.id DESC LIMIT 0, 5"; $arcArr = array(); $dsql->Execute('m', $query); while($row = $dsql->GetArray('m')) { $arcArr[] = $row; } - ?> + ?> - 1) { foreach($arcArr as $row) @@ -263,8 +261,8 @@ if(trim($row['editcon'])=='') { $row['editcon'] = 'archives_edit.php'; } - $linkstr = "·{$row['title']}"; - if($row['arcrank']==-1) $linkstr .= "(未审核)"; + $linkstr = "{$row['title']}"; + if($row['arcrank']==-1) $linkstr .= "未审核"; ?> - + `; @@ -436,7 +431,7 @@ dedebizInfo = JSON.parse(rsp.result.core.data); infoStr += ` - + `; @@ -446,8 +441,8 @@ $("#_systeminfo").html(infoStr); } else { $("#_systeminfo").html(` -
尚未启动Dede商业站点服务,原因:${rsp.msg}
-
Dede商业服务可以提升性能、增强安全、支持开源。
+
尚未启动商业站点服务,原因:${rsp.msg}
+
商业服务可以提升性能、增强安全、支持开源。
`); } diff --git a/src/dede/templets/index_menu2.htm b/src/dede/templets/index_menu2.htm index ec2691ae..806a1124 100644 --- a/src/dede/templets/index_menu2.htm +++ b/src/dede/templets/index_menu2.htm @@ -18,29 +18,25 @@ body { overflow-x:hidden } div { - padding:0; - margin:0 -} -.sitemu a { - font-size:12px; - color:rgba(0,0,0,.65) + margin:0; + padding:0 } dl.bitem { - clear:both; - width:140; - margin:0 0 5px 12px; - background:url(images/menunewbg.gif) repeat-x + margin:0 0 6px 10px; + width:140px; + background:url(images/menunewbg.gif) repeat-x; + clear:both } dl.bitem2 { - clear:both; - width:140; - margin:0 0 5px 12px; - background:url(images/menunewbg2.gif) repeat-x + margin:0 0 6px 10px; + width:140px; + background:url(images/menunewbg2.gif) repeat-x; + clear:both } dl.bitem dt,dl.bitem2 dt { - height:25px; - line-height:25px; - padding-left:35px; + padding-left:36px; + height:26px; + line-height:26px; cursor:pointer } dl.bitem dt b,dl.bitem2 dt b { @@ -60,49 +56,44 @@ div.items { width:80px } .flrct { - padding-top:2px; - float:left + float:left; + padding-top:4px } .sitemu li { - padding:2px 0 2px 18px; - line-height:22px; - background:url(images/arr4.gif) no-repeat 5px 9px -} -ul { - padding-top:6px -} -li { - height:22px + padding:0 0 0 18px; + height:26px; + line-height:26px; + background:url(images/arr4.gif) no-repeat 6px 10px } a.mmac div { - background:url(images/leftbg2.gif) no-repeat; + padding:8px 4px 4px 10px; height:38px!important; - padding:8px 4px 4px 10; + font-weight:600; + color:#325304; + background:url(images/leftbg2.gif) no-repeat; word-wrap:break-word; - word-break:break-all; - font-weight:bold; - color:#325304 + word-break:break-all } a.mm div { - background:url(images/leftmbg1.gif) no-repeat; + padding:8px 4px 4px 10px; height:38px!important; - padding:8px 4px 4px 10; - word-wrap:break-word; - word-break:break-all; - font-weight:bold; + font-weight:600; color:#475645; - cursor:pointer + cursor:pointer; + background:url(images/leftmbg1.gif) no-repeat; + word-wrap:break-word; + word-break:break-all } a.mm:hover div { - background:url(images/leftbg2.gif) no-repeat; - color:#4F7632 + color:#4f7632; + background:url(images/leftbg2.gif) no-repeat } .mmf { - height:1px; - padding:5px 7px 5px 7px + padding:6px; + height:1px } #mainct { - padding-top:8px; + padding-top:12px; background:url(images/idnbg1.gif) repeat-y } @@ -123,23 +114,23 @@ a.mm:hover div {
会员
getUserType() >= 10) { - ?> + if($cuserLogin->getUserType() >= 10) { + ?>
模板
系统
+ } + ?>
@@ -295,14 +293,11 @@
增加快捷操作项
-
+
@@ -428,7 +423,7 @@ // 下面是DedeBIZ Core组件信息 infoStr += `
Dede商业组件: 商业组件: 如何启动组件
Dede商业组件: 商业组件: 查看组件信息
- getUserRank(), 'main'); -?> + getUserRank(), 'main'); + ?>
@@ -156,20 +147,19 @@ GetMenus($cuserLogin->getUserRank(), 'main');
+ if(!empty($openitem) && $openitem!=1) + { + ?> + } + ?> - \ No newline at end of file diff --git a/src/dede/templets/index_top2.htm b/src/dede/templets/index_top2.htm index 10086198..8848d187 100755 --- a/src/dede/templets/index_top2.htm +++ b/src/dede/templets/index_top2.htm @@ -2,7 +2,7 @@ -dedecms +DedeBIZ - - + \ No newline at end of file diff --git a/src/dede/templets/makehtml_homepage.htm b/src/dede/templets/makehtml_homepage.htm index 5c7e6683..852a24e0 100755 --- a/src/dede/templets/makehtml_homepage.htm +++ b/src/dede/templets/makehtml_homepage.htm @@ -51,7 +51,7 @@ 默认的情况下,生成的主页文件放在CMS的安装目录,如果您的CMS不是安装在网站根目录的,又想把主页创建到网站根目录,那么请用相对路径来表示“主页位置”。
例:您的CMS安装在 - http://www.abc.com/dedecms/ 目录,您想生成的主页为 http://www.abc.com/index.html,那么主页位置就应该用: + http://www.abc.com/DedeBIZ/ 目录,您想生成的主页为 http://www.abc.com/index.html,那么主页位置就应该用: “../index.html”。 diff --git a/src/dede/templets/module_help.htm b/src/dede/templets/module_help.htm index bcc9834a..07a729a5 100755 --- a/src/dede/templets/module_help.htm +++ b/src/dede/templets/module_help.htm @@ -65,7 +65,7 @@ 3、开发模块安装程序和卸载的注意事项。 - 4、DedeCMSV6的后台管理程序的开发注意事项。 + 4、DedeBIZV6的后台管理程序的开发注意事项。 @@ -91,7 +91,7 @@   - 4、Dedecms的后台管理程序的开发注意事项。 + 4、DedeBIZ的后台管理程序的开发注意事项。 diff --git a/src/dede/templets/module_main.htm b/src/dede/templets/module_main.htm index 91f86634..7d9df933 100755 --- a/src/dede/templets/module_main.htm +++ b/src/dede/templets/module_main.htm @@ -33,7 +33,7 @@
diff --git a/src/dede/templets/sys_data.htm b/src/dede/templets/sys_data.htm index 4d10f5ec..51467e9d 100755 --- a/src/dede/templets/sys_data.htm +++ b/src/dede/templets/sys_data.htm @@ -105,7 +105,7 @@ - + diff --git a/src/dede/templets/sys_info.htm b/src/dede/templets/sys_info.htm index 5cfbe874..ef2253ce 100755 --- a/src/dede/templets/sys_info.htm +++ b/src/dede/templets/sys_info.htm @@ -60,7 +60,7 @@
DedeCMSV6默认系统表:DedeBIZV6默认系统表:
选择
- + + DedeBIZV6系统配置参数 - 图片水印设置 diff --git a/src/dede/templets/winmode.htm b/src/dede/templets/winmode.htm index bc5474a7..29f7f95c 100755 --- a/src/dede/templets/winmode.htm +++ b/src/dede/templets/winmode.htm @@ -13,7 +13,7 @@ style="BORDER-COLLAPSE: collapse"> diff --git a/src/dede/testenv.php b/src/dede/testenv.php index ecb6fba4..6552fd99 100755 --- a/src/dede/testenv.php +++ b/src/dede/testenv.php @@ -268,7 +268,7 @@ $action = isset($action) ? $action : '';
系统运行目录权限检测返回主页帮助说明
-
说明:本程序用于检测DedeCMSV6站点所涉及的目录权限,并且提供一个全面的检测说明,您可以根据检测报告来配置站点以保证站点更为安全。
+
说明:本程序用于检测DedeBIZ站点所涉及的目录权限,并且提供一个全面的检测说明,您可以根据检测报告来配置站点以保证站点更为安全。
DedeCMSV6系统配置参数:DedeBIZV6系统配置参数:
">
- DedeCMSV6系统配置参数 - 图片水印设置
上传的图片是否使用图片水印功能:
- Power by DedeCMSV6 OX + Power by DedeBIZV6 OX
diff --git a/src/dede/tpl.php b/src/dede/tpl.php index 783dfb5c..160bbd06 100755 --- a/src/dede/tpl.php +++ b/src/dede/tpl.php @@ -152,7 +152,7 @@ function _upload() {} exit(); } else { if (!preg_match("#\.(htm|html)$#", $upfile_name)) { - ShowMsg("DedeCMSV6模板只能用 .htm 或 .html扩展名!", "-1"); + ShowMsg("DedeBIZ模板只能用 .htm 或 .html扩展名!", "-1"); exit(); } if (preg_match("#[\\\\\/]#", $upfile_name)) { diff --git a/src/include/common.inc.php b/src/include/common.inc.php index c0dc414a..f80fe124 100755 --- a/src/include/common.inc.php +++ b/src/include/common.inc.php @@ -242,7 +242,7 @@ $cfg_soft_lang = 'utf-8'; $cfg_soft_public = 'base'; $cfg_softname = '织梦内容管理系统'; -$cfg_soft_enname = 'DedeCMSV6'; +$cfg_soft_enname = 'DedeBIZ'; $cfg_soft_devteam = 'DedeBIZ'; //文档的默认命名规则 diff --git a/src/include/helpers/charset.helper.php b/src/include/helpers/charset.helper.php index b9ff4cfb..864d507b 100755 --- a/src/include/helpers/charset.helper.php +++ b/src/include/helpers/charset.helper.php @@ -1,6 +1,6 @@ GetObject()) { $row[] = $dbrow; } - $dedecms = new stdClass; - $dedecms->id = 999; - $dedecms->typename = '织梦链'; - if ($type == 'dedecms') $row[] = $dedecms; + $DedeBIZ = new stdClass; + $DedeBIZ->id = 999; + $DedeBIZ->typename = '织梦链'; + if ($type == 'DedeBIZ') $row[] = $DedeBIZ; foreach ($row as $key => $value) { if (is_array($dtp->CTags)) { diff --git a/src/include/userlogin.class.php b/src/include/userlogin.class.php index 164973da..5cf26a59 100755 --- a/src/include/userlogin.class.php +++ b/src/include/userlogin.class.php @@ -182,7 +182,7 @@ class userLogin var $keepUserNameTag = 'dede_admin_name'; var $keepUserPurviewTag = 'dede_admin_purview'; var $keepAdminStyleTag = 'dede_admin_style'; - var $adminStyle = 'dedecms'; + var $adminStyle = 'DedeBIZ'; //php5构造函数 function __construct($admindir = '') @@ -257,7 +257,7 @@ class userLogin { if ($this->userID != '' && $this->userType != '') { global $admincachefile, $adminstyle; - if (empty($adminstyle)) $adminstyle = 'dedecms'; + if (empty($adminstyle)) $adminstyle = 'DedeBIZ'; @session_register($this->keepUserIDTag); $_SESSION[$this->keepUserIDTag] = $this->userID; diff --git a/src/install/index.php b/src/install/index.php index 4ee8da8f..93cd95ad 100644 --- a/src/install/index.php +++ b/src/install/index.php @@ -11,7 +11,7 @@ error_reporting(E_ALL || ~E_NOTICE); $verMsg = 'V6'; -$dfDbname = 'dedecmsv6'; +$dfDbname = 'DedeBIZ'; $cfg_version_detail = '6.0.3'; // 详细版本号 $errmsg = ''; diff --git a/src/install/sql-dfdata.txt b/src/install/sql-dfdata.txt index ac619df6..a3875b3c 100755 --- a/src/install/sql-dfdata.txt +++ b/src/install/sql-dfdata.txt @@ -513,7 +513,7 @@ INSERT INTO `#@__co_onepage` VALUES('5','www.dedebiz.com','DedeBIZ','1','gb2312' ('4','www.techweb.com.cn','Techweb','1','gb2312','
{@body}
\t\n'), ('6','tw.news.yahoo.com','台湾雅虎','1','big5','
{@body}
\t\n'); -INSERT INTO `#@__flink` (`sortrank`, `url`, `webname`, `msg`, `email`, `logo`, `dtime`, `typeid`, `ischeck`) VALUES (1, 'https://www.dedebiz.com', 'DedeCMSV6', '', '', '', 1226375403, 1, 2); +INSERT INTO `#@__flink` (`sortrank`, `url`, `webname`, `msg`, `email`, `logo`, `dtime`, `typeid`, `ischeck`) VALUES (1, 'https://www.dedebiz.com', 'DedeBIZ', '', '', '', 1226375403, 1, 2); INSERT INTO `#@__flink` (`sortrank`, `url`, `webname`, `msg`, `email`, `logo`, `dtime`, `typeid`, `ischeck`) VALUES (1, 'https://www.dedebiz.com/help', '帮助中心', '', '', '', 1227772717, 1, 2); INSERT INTO `#@__flink` (`sortrank`, `url`, `webname`, `msg`, `email`, `logo`, `dtime`, `typeid`, `ischeck`) VALUES (1, 'https://www.dedebiz.com/auth', '授权中心', '', '', '', 1227772703, 1, 2); INSERT INTO `#@__flink` (`sortrank`, `url`, `webname`, `msg`, `email`, `logo`, `dtime`, `typeid`, `ischeck`) VALUES (3, 'https://www.dedebiz.com/git', '代码托管', '', '', '', 1603767210, 1, 1); diff --git a/src/install/templates/step-1.html b/src/install/templates/step-1.html index d9f1e497..0a22bca4 100755 --- a/src/install/templates/step-1.html +++ b/src/install/templates/step-1.html @@ -4,7 +4,7 @@ - 安装程序 - DedeCMSV6 - DedeBIZ技术支持 + <title>安装程序 - DedeBIZ - DedeBIZ技术支持 @@ -16,7 +16,7 @@
-
DedeCMSV6安装程序
+
DedeBIZ安装程序