* change zentaoms to zentaopms.

This commit is contained in:
wangchunsheng
2010-11-09 07:19:37 +00:00
parent 3094ce5139
commit 0ddc8b5275
374 changed files with 556 additions and 556 deletions

View File

@@ -1,11 +1,11 @@
<?php
/**
1. 修改zentaophp中的version number打tag。
2. 修改zentaoms中的version
2. 修改ZenTaoPMS中的version
config.php中的version.
install中的version。
3. 修改升级程序。(版本列表。)
4. 打包zentaoms
4. 打包ZenTaoPMS
5. 合并目录。
6. 修改www/index.php中的包含路径。
7. 导出新的数据库。 grep -v '\-\-' /mnt/c/zentao.sql |grep -v ^$ |sed "s/DROP/\-\- DROP/" >zentao.sql
@@ -16,7 +16,7 @@
*/
$phpURL = 'http://zentaophp.googlecode.com/svn/tags/';
$pmsURL = 'http://zentaoms.googlecode.com/svn/tags/';
$pmsURL = 'http://ZenTaoPMS.googlecode.com/svn/tags/';
$phpTag = getLatestTag($phpURL);
$pmsTag = getLatestTag($pmsURL);

View File

@@ -4,7 +4,7 @@
include dirname(dirname(__FILE__)) . '/lib/snoopy/snoopy.class.php';
/* 用来登录的地址,用户名和密码。*/
$zentaoRoot = "http://demo.zentaoms.com/"; // 请根据实际的情况进行修改。
$zentaoRoot = "http://demo.ZenTaoPMS.com/"; // 请根据实际的情况进行修改。
$account = "demo";
$password = "123456";
$requestType = 'PATH_INFO'; // 可选值: GET|PATH_INFO。

View File

@@ -1,6 +1,6 @@
<?php
/**
* The control file of common module of ZenTaoMS.
* The control file of common module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -5,7 +5,7 @@ $config->zentaophp->svnRoot = 'https://zentaophp.googlecode.com/svn/';
$config->zentaophp->svnTrunk = 'trunk/';
$config->zentaophp->svnTags = 'tags/';
$config->zentaopms->svnRoot = 'https://zentaoms.googlecode.com/svn/';
$config->zentaopms->svnRoot = 'https://ZenTaoPMS.googlecode.com/svn/';
$config->zentaopms->svnTrunk = 'trunk/';
$config->zentaopms->svnTags = 'tags/';

View File

@@ -8,7 +8,7 @@
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
* @package ZenTaoPMS
* @version $Id$
* @link http://www.zentaoms.com
* @link http://www.ZenTaoPMS.com
*/
error_reporting(0);
define('IN_SHELL', true);

View File

@@ -1,98 +1,98 @@
<?php
/*
###############################################################################
# Name: unitray_info.php
# Developed By: The Uniform Server Development Team
# Modified Last By: Mike Gleaves (Ric)
# Unitray Support file
# Displays server information. Ports read from configuration files
# V1.0 3-12-2009
###############################################################################
*/
//error_reporting(0); // Disable PHP errors and warnings
// Comment to Enable for testing
chdir(dirname(__FILE__)); // Change wd to this files location
include_once "../main/includes/config.inc.php";
include_once "../main/includes/functions.php";
run_location_tracker(); // Have servers moved if moved update configuration
print"\n";
//=== If no parameters passed use defaults from config.inc.php
if($argc == 2){ // Was a parameter passed
$information = $argv[1] ; // yes:
}
else{
exit; // no: Give up
}
$mysql_port = get_mysql_port();
$apache_port = get_apache_port();
$ssl_port = get_apache_ssl_port();
//=== Display Admin Panel in browser ==========================================
if($information == 1){
$command = "start http://localhost:$apache_port/apanel/"; // display index page
exec($command,$dummy,$return); // run command
exit;
}
//=== Display phpMyAdmin in browser ==========================================
if($information == 2){
$command = "start http://localhost:$apache_port/apanel/phpmyadmin/"; // display index page
exec($command,$dummy,$return); // run command
exit;
}
//=== Display WWW Root in browser ==============================================
if($information == 3){
$command = "start http://localhost:$apache_port/"; // display index page
exec($command,$dummy,$return); // run command
exit;
}
//=== Display SSL Root in browser ==============================================
if($information == 4){
$command = "start https://localhost:$ssl_port/"; // display index page
exec($command,$dummy,$return); // run command
exit;
}
//=== Display Apache Server Information in browser ============================
if($information == 5){
$command = "start http://localhost:$apache_port/server-info"; // display index page
exec($command,$dummy,$return); // run command
exit;
}
//=== Display Apache Server Status in browser =================================
if($information == 6){
$command = "start http://localhost:$apache_port/server-status"; // display index page
exec($command,$dummy,$return); // run command
exit;
}
//=== Display PHP Info in browser =================================
if($information == 7){
$command = "start http://localhost:$apache_port/apanel/phpinfo.php"; // display index page
exec($command,$dummy,$return); // run command
exit;
}
//=== Display ZenTao browser =================================
if($information == 8){
$command = "start http://localhost:$apache_port/zentao/"; //
exec($command,$dummy,$return); // run command
exit;
}
//=== Display ZenTao site browser =================================
if($information == 9){
$command = "start http://www.zentaoms.com/"; //
exec($command,$dummy,$return); // run command
exit;
}
exit;
?>
<?php
/*
###############################################################################
# Name: unitray_info.php
# Developed By: The Uniform Server Development Team
# Modified Last By: Mike Gleaves (Ric)
# Unitray Support file
# Displays server information. Ports read from configuration files
# V1.0 3-12-2009
###############################################################################
*/
//error_reporting(0); // Disable PHP errors and warnings
// Comment to Enable for testing
chdir(dirname(__FILE__)); // Change wd to this files location
include_once "../main/includes/config.inc.php";
include_once "../main/includes/functions.php";
run_location_tracker(); // Have servers moved if moved update configuration
print"\n";
//=== If no parameters passed use defaults from config.inc.php
if($argc == 2){ // Was a parameter passed
$information = $argv[1] ; // yes:
}
else{
exit; // no: Give up
}
$mysql_port = get_mysql_port();
$apache_port = get_apache_port();
$ssl_port = get_apache_ssl_port();
//=== Display Admin Panel in browser ==========================================
if($information == 1){
$command = "start http://localhost:$apache_port/apanel/"; // display index page
exec($command,$dummy,$return); // run command
exit;
}
//=== Display phpMyAdmin in browser ==========================================
if($information == 2){
$command = "start http://localhost:$apache_port/apanel/phpmyadmin/"; // display index page
exec($command,$dummy,$return); // run command
exit;
}
//=== Display WWW Root in browser ==============================================
if($information == 3){
$command = "start http://localhost:$apache_port/"; // display index page
exec($command,$dummy,$return); // run command
exit;
}
//=== Display SSL Root in browser ==============================================
if($information == 4){
$command = "start https://localhost:$ssl_port/"; // display index page
exec($command,$dummy,$return); // run command
exit;
}
//=== Display Apache Server Information in browser ============================
if($information == 5){
$command = "start http://localhost:$apache_port/server-info"; // display index page
exec($command,$dummy,$return); // run command
exit;
}
//=== Display Apache Server Status in browser =================================
if($information == 6){
$command = "start http://localhost:$apache_port/server-status"; // display index page
exec($command,$dummy,$return); // run command
exit;
}
//=== Display PHP Info in browser =================================
if($information == 7){
$command = "start http://localhost:$apache_port/apanel/phpinfo.php"; // display index page
exec($command,$dummy,$return); // run command
exit;
}
//=== Display ZenTao browser =================================
if($information == 8){
$command = "start http://localhost:$apache_port/zentao/"; //
exec($command,$dummy,$return); // run command
exit;
}
//=== Display ZenTao site browser =================================
if($information == 9){
$command = "start http://www.ZenTaoPMS.com/"; //
exec($command,$dummy,$return); // run command
exit;
}
exit;
?>

View File

@@ -1,11 +1,11 @@
<?php
/**
* The config file of ZenTaoMS
* The config file of ZenTaoPMS
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
* @package ZenTaoMS
* @package ZenTaoPMS
* @version $Id$
* @link http://www.zentao.net
*/

View File

@@ -1,44 +1,44 @@
一、什么是禅道项目管理软件
禅道项目管理软件(ZenTaoPMS)是一款国产的基于LGPL协议开源免费的项目管理软件它集产品管理、项目管理、测试管理于一体同时还包含了事务管理、组织管理等诸多功能是中小型企业项目管理的首选。官方网站www.zentaoms.com
禅道项目管理软件使用PHP + MySQL开发基于自主的PHP开发框架──ZenTaoPHP而成。第三方开发者或者企业可以非常方便的开发插件或者进行定制。
禅道在手,项目无忧!
禅道项目管理软件由QingDao Nature Easy Soft Network Technology Co,LTD (http://www.cnezsoft.com)开发。
二、禅道的含义
Zen是“禅”的意思Tao是“道”的意思。ZenTao合意为禅与道。这个名称是我在读《编程之禅》和《编程之道》的时候受到启发决定采用这个比较有中国味道的名字。
三、禅道项目管理软件的来由:
说到这个问题要从BugFree谈起。自从04年发布BugFree以来到2007年BugFree陆续发布了五六个版本在Bug管理方面基本上已经完备。但这个时候产生了一些新的问题。很多网友拿着BugFree进行改动改造为其他的管理系统。还经常有网友问BugFree可以不可以加入项目管理的功能。我也一直在思考这些问题。后来我加入了阿里巴巴在中国雅虎、阿里妈妈、淘宝三年的工作经历中参加了大大小小的项目。也深为项目管理所困惑。于是就产生了做一个工具来解决项目管理的问题。
由于种种原因我这个愿望在阿里巴巴并没有实现。说来也是一件幸事这样我可以把它开源来发布。从今年初我就开始着手考虑这套管理软件的设计。整整花了半年的时间在考虑。7月份从阿里巴巴辞职之后我开始有有了相对比较多的一点时间来进行这套系统的开发。同时也非常感谢现在的这家单位为我开发禅道项目管理软件提供了大力的支持。
四、为什么还要做禅道项目管理软件:
很多朋友会问已经有很多的开源项目管理软件或者系统了为什么还要自己做一个呢主要原因是我认为现在的开源项目管理软件对这个问题解决的并不好比如缺乏需求管理bug管理等功能。而且很多开源的项目管理软件使用起来也不方便。
市场上也有很多商业的软件,但收费都不菲,而且也未必见得好用。
现在也有很多在线的项目管理服务比如国外的basecamp国内的易度忙吧等。但我的观点这些在线的项目管理软件功能有限缺乏定制访问速度无法保证而且缺乏保密。
五、禅道项目管理软件的特点:
集成了产品管理、项目管理、测试管理、人员管理、发布管理、事务管理等功能于一体。你只需要一个软件就可以完成项目管理的最核心的任务。
开源免费,降低企业部署的成本。
功能注重实效使用方便没有太多复杂的概念。我设计的理念是一个没有做过项目管理的人经过10分钟的培训可以使用它进行项目管理。:)
基于PHP+MySQL开发企业自主改动方便。并且基于ZenTaoPHP框架为第三方开发者的加入打下了坚实的基础。
主要理念基于scrum同时结合了PMP里面的很多概念。
支持多公司,多项目,多产品,多团队的开发。
灵活的权限设置。
支持产品与项目之间的矩阵关系。
六、禅道项目管理软件需要您的帮助
禅道项目管理软件需要您的帮助无论您是开发人员抑或是项目经理或者是产品经理还是测试人员又或者是开源爱好者您都可以在禅道项目管理软件找到参与的地方。我们会以非常open的心态打造一个禅道项目管理软件的社区。我相信禅道社区的成功才是禅道项目管理软件的成功。
大家如果想加入可以和我联系chunsheng@cnezsoft.com
一、什么是禅道项目管理软件
禅道项目管理软件(ZenTaoPMS)是一款国产的基于LGPL协议开源免费的项目管理软件它集产品管理、项目管理、测试管理于一体同时还包含了事务管理、组织管理等诸多功能是中小型企业项目管理的首选。官方网站www.ZenTaoPMS.com
禅道项目管理软件使用PHP + MySQL开发基于自主的PHP开发框架──ZenTaoPHP而成。第三方开发者或者企业可以非常方便的开发插件或者进行定制。
禅道在手,项目无忧!
禅道项目管理软件由QingDao Nature Easy Soft Network Technology Co,LTD (http://www.cnezsoft.com)开发。
二、禅道的含义
Zen是“禅”的意思Tao是“道”的意思。ZenTao合意为禅与道。这个名称是我在读《编程之禅》和《编程之道》的时候受到启发决定采用这个比较有中国味道的名字。
三、禅道项目管理软件的来由:
说到这个问题要从BugFree谈起。自从04年发布BugFree以来到2007年BugFree陆续发布了五六个版本在Bug管理方面基本上已经完备。但这个时候产生了一些新的问题。很多网友拿着BugFree进行改动改造为其他的管理系统。还经常有网友问BugFree可以不可以加入项目管理的功能。我也一直在思考这些问题。后来我加入了阿里巴巴在中国雅虎、阿里妈妈、淘宝三年的工作经历中参加了大大小小的项目。也深为项目管理所困惑。于是就产生了做一个工具来解决项目管理的问题。
由于种种原因我这个愿望在阿里巴巴并没有实现。说来也是一件幸事这样我可以把它开源来发布。从今年初我就开始着手考虑这套管理软件的设计。整整花了半年的时间在考虑。7月份从阿里巴巴辞职之后我开始有有了相对比较多的一点时间来进行这套系统的开发。同时也非常感谢现在的这家单位为我开发禅道项目管理软件提供了大力的支持。
四、为什么还要做禅道项目管理软件:
很多朋友会问已经有很多的开源项目管理软件或者系统了为什么还要自己做一个呢主要原因是我认为现在的开源项目管理软件对这个问题解决的并不好比如缺乏需求管理bug管理等功能。而且很多开源的项目管理软件使用起来也不方便。
市场上也有很多商业的软件,但收费都不菲,而且也未必见得好用。
现在也有很多在线的项目管理服务比如国外的basecamp国内的易度忙吧等。但我的观点这些在线的项目管理软件功能有限缺乏定制访问速度无法保证而且缺乏保密。
五、禅道项目管理软件的特点:
集成了产品管理、项目管理、测试管理、人员管理、发布管理、事务管理等功能于一体。你只需要一个软件就可以完成项目管理的最核心的任务。
开源免费,降低企业部署的成本。
功能注重实效使用方便没有太多复杂的概念。我设计的理念是一个没有做过项目管理的人经过10分钟的培训可以使用它进行项目管理。:)
基于PHP+MySQL开发企业自主改动方便。并且基于ZenTaoPHP框架为第三方开发者的加入打下了坚实的基础。
主要理念基于scrum同时结合了PMP里面的很多概念。
支持多公司,多项目,多产品,多团队的开发。
灵活的权限设置。
支持产品与项目之间的矩阵关系。
六、禅道项目管理软件需要您的帮助
禅道项目管理软件需要您的帮助无论您是开发人员抑或是项目经理或者是产品经理还是测试人员又或者是开源爱好者您都可以在禅道项目管理软件找到参与的地方。我们会以非常open的心态打造一个禅道项目管理软件的社区。我相信禅道社区的成功才是禅道项目管理软件的成功。
大家如果想加入可以和我联系chunsheng@cnezsoft.com

View File

@@ -6,4 +6,4 @@
任务功能细化
首页细化
更多列表,请访问 http://pms.zentaoms.com/product.html
更多列表,请访问 http://pms.ZenTaoPMS.com/product.html

View File

@@ -1 +1 @@
升级,请参考 http://www.zentaoms.com/node78960.html
升级,请参考 http://www.ZenTaoPMS.com/node78960.html

View File

@@ -1,11 +1,11 @@
<?php
/**
* The front class file of ZenTaoMS.
* The front class file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
* @package ZenTaoMS
* @package ZenTaoPMS
* @version $Id$
* @link http://www.zentao.net
*/

View File

@@ -1,6 +1,6 @@
<?php
/**
* The control file of action module of ZenTaoMS.
* The control file of action module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The action module English file of ZenTaoMS.
* The action module English file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The action module Japanese file of ZenTaoMS.
* The action module Japanese file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The action module Korean file of ZenTaoMS.
* The action module Korean file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The action module zh-cn file of ZenTaoMS.
* The action module zh-cn file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The action module zh-tw file of ZenTaoMS.
* The action module zh-tw file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The model file of action module of ZenTaoMS.
* The model file of action module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The trash view file of action module of ZenTaoMS.
* The trash view file of action module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The control file of admin module of ZenTaoMS.
* The control file of admin module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The admin module English file of ZenTaoMS.
* The admin module English file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The admin module Japanese file of ZenTaoMS.
* The admin module Japanese file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The admin module Korean file of ZenTaoMS.
* The admin module Korean file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The admin module zh-cn file of ZenTaoMS.
* The admin module zh-cn file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The admin module zh-tw file of ZenTaoMS.
* The admin module zh-tw file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The model file of admin module of ZenTaoMS.
* The model file of admin module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The browse company view file of admin module of ZenTaoMS.
* The browse company view file of admin module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The control file of api of ZenTaoMS.
* The control file of api of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The api module English file of ZenTaoMS.
* The api module English file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The api module Japanese file of ZenTaoMS.
* The api module Japanese file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The api module Korean file of ZenTaoMS.
* The api module Korean file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The api module zh-cn file of ZenTaoMS.
* The api module zh-cn file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The api module zh-tw file of ZenTaoMS.
* The api module zh-tw file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The control file of bug currentModule of ZenTaoMS.
* The control file of bug currentModule of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The bug module English file of ZenTaoMS.
* The bug module English file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The bug module Japanese file of ZenTaoMS.
* The bug module Japanese file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The bug module Korean file of ZenTaoMS.
* The bug module Korean file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The bug module zh-cn file of ZenTaoMS.
* The bug module zh-cn file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The bug module zh-tw file of ZenTaoMS.
* The bug module zh-tw file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The model file of bug module of ZenTaoMS.
* The model file of bug module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The activate file of bug module of ZenTaoMS.
* The activate file of bug module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The browse view file of bug module of ZenTaoMS.
* The browse view file of bug module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The close file of bug module of ZenTaoMS.
* The close file of bug module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The create view of bug module of ZenTaoMS.
* The create view of bug module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The custom seting fields view of bug module of ZenTaoMS.
* The custom seting fields view of bug module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The edit file of bug module of ZenTaoMS.
* The edit file of bug module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The index view file of bug module of ZenTaoMS.
* The index view file of bug module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The report view file of bug module of ZenTaoMS.
* The report view file of bug module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The resolve file of bug module of ZenTaoMS.
* The resolve file of bug module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The mail file of bug module of ZenTaoMS.
* The mail file of bug module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The view file of bug module of ZenTaoMS.
* The view file of bug module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The control file of build module of ZenTaoMS.
* The control file of build module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The build module English file of ZenTaoMS.
* The build module English file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The build module Japanese file of ZenTaoMS.
* The build module Japanese file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The build module Korean file of ZenTaoMS.
* The build module Korean file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The build module zh-cn file of ZenTaoMS.
* The build module zh-cn file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The build module zh-tw file of ZenTaoMS.
* The build module zh-tw file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The model file of build module of ZenTaoMS.
* The model file of build module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The create view of build module of ZenTaoMS.
* The create view of build module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The edit view of build module of ZenTaoMS.
* The edit view of build module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The view file of build module's view method of ZenTaoMS.
* The view file of build module's view method of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The control file of common module of ZenTaoMS.
* The control file of common module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
@@ -255,7 +255,7 @@ EOT;
$mainMenu = $moduleName;
if(isset($lang->menugroup->$moduleName)) $mainMenu = $lang->menugroup->$moduleName;
list($menuLabel, $module, $method) = explode('|', $lang->menu->index);
echo html::a(helper::createLink($module, $method), $lang->zentaoMS) . $lang->arrow;
echo html::a(helper::createLink($module, $method), $lang->ZenTaoPMS) . $lang->arrow;
if($moduleName != 'index')
{
list($menuLabel, $module, $method) = explode('|', $lang->menu->$mainMenu);

View File

@@ -1,11 +1,11 @@
<?php
/**
* The common simplified chinese file of ZenTaoMS.
* The common simplified chinese file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
* @package ZenTaoMS
* @package ZenTaoPMS
* @version $Id$
* @link http://www.zentao.net
*/
@@ -16,8 +16,8 @@ $lang->dot = '.';
$lang->at = ' at ';
$lang->downArrow = '↓';
$lang->zentaoMS = 'ZenTaoPMS';
$lang->welcome = "Welcome to『%s』{$lang->colon} {$lang->zentaoMS}";
$lang->ZenTaoPMS = 'ZenTaoPMS';
$lang->welcome = "Welcome to『%s』{$lang->colon} {$lang->ZenTaoPMS}";
$lang->myControl = "Dashboard";
$lang->currentPos = 'Current';
$lang->logout = 'Logout';

View File

@@ -1,11 +1,11 @@
<?php
/**
* The common simplified chinese file of ZenTaoMS.
* The common simplified chinese file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
* @package ZenTaoMS
* @package ZenTaoPMS
* @version $Id: en.php 1015 2010-08-03 05:50:35Z wwccss $
* @link http://www.zentao.net
*/
@@ -16,8 +16,8 @@ $lang->dot = '。';
$lang->at = 'に';
$lang->downArrow = '↓';
$lang->zentaoMS = 'ZenTaoPMS';
$lang->welcome = "Welcome to『%s』{$lang->colon} {$lang->zentaoMS}";
$lang->ZenTaoPMS = 'ZenTaoPMS';
$lang->welcome = "Welcome to『%s』{$lang->colon} {$lang->ZenTaoPMS}";
$lang->myControl = "ダッシュボード";
$lang->currentPos = '現在の';
$lang->logout = 'ログアウト';

View File

@@ -1,11 +1,11 @@
<?php
/**
* The common simplified chinese file of ZenTaoMS.
* The common simplified chinese file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
* @package ZenTaoMS
* @package ZenTaoPMS
* @version $Id: en.php 1015 2010-08-03 05:50:35Z wwccss $
* @link http://www.zentao.net
*/
@@ -16,8 +16,8 @@ $lang->dot = '.';
$lang->at = '에';
$lang->downArrow = '↓';
$lang->zentaoMS = 'ZenTaoPMS';
$lang->welcome = "Welcome to『%s』{$lang->colon} {$lang->zentaoMS}";
$lang->ZenTaoPMS = 'ZenTaoPMS';
$lang->welcome = "Welcome to『%s』{$lang->colon} {$lang->ZenTaoPMS}";
$lang->myControl = "계기판";
$lang->currentPos = '현재';
$lang->logout = '로그아웃';

View File

@@ -1,11 +1,11 @@
<?php
/**
* The common simplified chinese file of ZenTaoMS.
* The common simplified chinese file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
* @package ZenTaoMS
* @package ZenTaoPMS
* @version $Id$
* @link http://www.zentao.net
*/
@@ -16,8 +16,8 @@ $lang->dot = '。';
$lang->at = ' 于 ';
$lang->downArrow = '↓';
$lang->zentaoMS = '禅道管理';
$lang->welcome = "欢迎使用『%s』{$lang->colon} {$lang->zentaoMS}";
$lang->ZenTaoPMS = '禅道管理';
$lang->welcome = "欢迎使用『%s』{$lang->colon} {$lang->ZenTaoPMS}";
$lang->myControl = "我的地盘";
$lang->currentPos = '当前位置:';
$lang->logout = '退出系统';

View File

@@ -1,11 +1,11 @@
<?php
/**
* The common simplified chinese file of ZenTaoMS.
* The common simplified chinese file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
* @package ZenTaoMS
* @package ZenTaoPMS
* @version $Id: zh-tw.php 1103 2010-09-13 11:02:40Z wwccss $
* @link http://www.zentao.net
*/
@@ -16,8 +16,8 @@ $lang->dot = '。';
$lang->at = ' 于 ';
$lang->downArrow = '↓';
$lang->zentaoMS = '禪道管理';
$lang->welcome = "歡迎使用『%s』{$lang->colon} {$lang->zentaoMS}";
$lang->ZenTaoPMS = '禪道管理';
$lang->welcome = "歡迎使用『%s』{$lang->colon} {$lang->ZenTaoPMS}";
$lang->myControl = "我的地盤";
$lang->currentPos = '當前位置:';
$lang->logout = '退出系統';

View File

@@ -12,10 +12,10 @@ $clientTheme = $this->app->getClientTheme();
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
<?php
$header = isset($header) ? (object)$header : new stdclass();
if(!isset($header->title)) $header->title = $lang->zentaoMS;
if(!isset($header->title)) $header->title = $lang->ZenTaoPMS;
if(!isset($header->keywords)) $header->keywords = $lang->zentaoKeywords;
if(!isset($header->desc)) $header->desc = $lang->zentaoDESC;
echo "<title>$header->title - $lang->zentaoMS</title>\n";
echo "<title>$header->title - $lang->ZenTaoPMS</title>\n";
echo "<meta name='keywords' content='$header->keywords'>\n";
echo "<meta name='description' content='$header->desc'>\n";
?>

View File

@@ -1,6 +1,6 @@
<?php
/**
* The control file of company module of ZenTaoMS.
* The control file of company module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The company module English file of ZenTaoMS.
* The company module English file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The company module Japanese file of ZenTaoMS.
* The company module Japanese file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The company module Korean file of ZenTaoMS.
* The company module Korean file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The company module zh-cn file of ZenTaoMS.
* The company module zh-cn file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The company module zh-tw file of ZenTaoMS.
* The company module zh-tw file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The model file of company module of ZenTaoMS.
* The model file of company module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The browse view file of product dept of ZenTaoMS.
* The browse view file of product dept of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The create view of company module of ZenTaoMS.
* The create view of company module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The edit view of company module of ZenTaoMS.
* The edit view of company module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The control file of convert currentModule of ZenTaoMS.
* The control file of convert currentModule of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The baisc model file of bugfree convert of ZenTaoMS.
* The baisc model file of bugfree convert of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The model file of bugfree version 1 convert of ZenTaoMS.
* The model file of bugfree version 1 convert of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The model file of bugfree2 convert of ZenTaoMS.
* The model file of bugfree2 convert of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The convert module English file of ZenTaoMS.
* The convert module English file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The convert module Japanese file of ZenTaoMS.
* The convert module Japanese file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The convert module Korean file of ZenTaoMS.
* The convert module Korean file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The convert module zh-cn file of ZenTaoMS.
* The convert module zh-cn file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The convert module zh-tw file of ZenTaoMS.
* The convert module zh-tw file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The model file of convert module of ZenTaoMS.
* The model file of convert module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The html template file of check config method of convert module of ZenTaoMS.
* The html template file of check config method of convert module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The html template file of execute method of convert module of ZenTaoMS.
* The html template file of execute method of convert module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,11 +1,11 @@
<?php
/**
* The html template file of index method of convert module of ZenTaoMS.
* The html template file of index method of convert module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
* @package ZenTaoMS
* @package ZenTaoPMS
* @version $Id$
*/
?>

View File

@@ -1,6 +1,6 @@
<?php
/**
* The html template file of select source method of convert module of ZenTaoMS.
* The html template file of select source method of convert module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The html template file of setconfig method of convert module of ZenTaoMS.
* The html template file of setconfig method of convert module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The control file of dept module of ZenTaoMS.
* The control file of dept module of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The dept module English file of ZenTaoMS.
* The dept module English file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The dept module Japanese file of ZenTaoMS.
* The dept module Japanese file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The dept module Korean file of ZenTaoMS.
* The dept module Korean file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The dept module zh-cn file of ZenTaoMS.
* The dept module zh-cn file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The dept module zh-tw file of ZenTaoMS.
* The dept module zh-tw file of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

View File

@@ -1,6 +1,6 @@
<?php
/**
* The model file of dept dept of ZenTaoMS.
* The model file of dept dept of ZenTaoPMS.
*
* @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)

Some files were not shown because too many files have changed in this diff Show More