From 8ea6cd4e82d69892fb60db4189e70bbc70c4762f Mon Sep 17 00:00:00 2001 From: wangyidong Date: Wed, 28 Jan 2015 09:47:05 +0800 Subject: [PATCH 01/10] * finish task #2192. --- module/testcase/view/batchcreate.html.php | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/module/testcase/view/batchcreate.html.php b/module/testcase/view/batchcreate.html.php index 9a3ff63979..b0934771ae 100644 --- a/module/testcase/view/batchcreate.html.php +++ b/module/testcase/view/batchcreate.html.php @@ -30,16 +30,23 @@ idAB;?> testcase->module;?> - testcase->type;?> + testcase->type;?> testcase->story;?> testcase->title;?> + testcase->typeList['']); + $moduleOptionMenu['same'] = $lang->testcase->same; + ?> testcase->batchCreate; $i++):?> - testcase->same; if($i != 0) $currentModuleID = 'same';?> - testcase->typeList['same'] = $lang->testcase->same; $type = ($i == 0 ? 'feature' : 'same');?> - + testcase->typeList['same'] = $lang->testcase->same; + $type = $i == 0 ? 'feature' : 'same'; + $pri = 3; + ?> From a175b9bae8048526d9c6651574305020354e445e Mon Sep 17 00:00:00 2001 From: wangyidong Date: Wed, 28 Jan 2015 10:09:56 +0800 Subject: [PATCH 02/10] * finish task #2188. --- module/product/model.php | 12 +----------- module/project/model.php | 10 +--------- 2 files changed, 2 insertions(+), 20 deletions(-) diff --git a/module/product/model.php b/module/product/model.php index a6c2709c44..f9e47736db 100644 --- a/module/product/model.php +++ b/module/product/model.php @@ -155,17 +155,7 @@ class productModel extends model $pairs = array(); foreach($products as $product) { - if($this->checkPriv($product)) - { - - if(strpos($mode, 'nocode') === false and $product->code) - { - $firstChar = strtoupper(substr($product->code, 0, 1)); - if(ord($firstChar) < 127) $product->name = $firstChar . ':' . $product->name; - } - - $pairs[$product->id] = $product->name; - } + if($this->checkPriv($product)) $pairs[$product->id] = $product->name; } return $pairs; } diff --git a/module/project/model.php b/module/project/model.php index 8abe0b1f89..a80923c5c2 100644 --- a/module/project/model.php +++ b/module/project/model.php @@ -509,15 +509,7 @@ class projectModel extends model foreach($projects as $project) { if(strpos($mode, 'noclosed') !== false and $project->status == 'done') continue; - if($this->checkPriv($project)) - { - if(strpos($mode, 'nocode') === false and $project->code) - { - $firstChar = strtoupper(substr($project->code, 0, 1)); - if(ord($firstChar) < 127) $project->name = $firstChar . ':' . $project->name; - } - $pairs[$project->id] = $project->name; - } + if($this->checkPriv($project)) $pairs[$project->id] = $project->name; } /* If the pairs is empty, to make sure there's an project in the pairs. */ From e67ab008d4bb9a872d9c25941f145191b73fa604 Mon Sep 17 00:00:00 2001 From: wangyidong Date: Wed, 28 Jan 2015 10:22:00 +0800 Subject: [PATCH 03/10] * finish task #2187. --- module/misc/control.php | 2 +- www/js/my.full.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/module/misc/control.php b/module/misc/control.php index 644f704795..7ac198d8c2 100644 --- a/module/misc/control.php +++ b/module/misc/control.php @@ -20,7 +20,7 @@ class misc extends control public function ping() { if(mt_rand(0, 1) == 1) $this->loadModel('setting')->setSN(); - die(""); + die(""); } /** diff --git a/www/js/my.full.js b/www/js/my.full.js index 929c47817a..f5528bb267 100644 --- a/www/js/my.full.js +++ b/www/js/my.full.js @@ -1205,7 +1205,7 @@ $(document).ready(function() $(window).resize(saveWindowSize); // When window resized, call it again. - if(needPing) setTimeout('setPing()', 1000 * 60); // After 5 minutes, begin ping. + if(needPing) setTimeout('setPing()', 1000 * 60 * 10); // After 10 minutes, begin ping. $('.export').bind('click', function() { From 4a9dad22b387e83bc883eed05daa3f381ce5ae20 Mon Sep 17 00:00:00 2001 From: wangyidong Date: Wed, 28 Jan 2015 11:16:51 +0800 Subject: [PATCH 04/10] * finish task #2185. --- module/story/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/story/model.php b/module/story/model.php index 225bd59220..e16e19fa18 100644 --- a/module/story/model.php +++ b/module/story/model.php @@ -1366,7 +1366,7 @@ class storyModel extends model public function getZeroCase($productID, $orderBy = 'id_desc') { $allStories = $this->getProductStories($productID, 0, 'all', $orderBy); - $casedStories = $this->dao->select('DISTINCT story')->from(TABLE_CASE)->where('product')->eq($productID)->andWhere('story')->ne(0)->fetchAll('story'); + $casedStories = $this->dao->select('DISTINCT story')->from(TABLE_CASE)->where('product')->eq($productID)->andWhere('story')->ne(0)->andWhere('deleted')->eq(0)->fetchAll('story'); foreach($allStories as $key => $story) { From 3391130cf46486140f05a3c308da5095a17cd631 Mon Sep 17 00:00:00 2001 From: wangyidong Date: Wed, 28 Jan 2015 11:56:47 +0800 Subject: [PATCH 05/10] * finish task #2186. --- module/upgrade/view/execute.html.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/module/upgrade/view/execute.html.php b/module/upgrade/view/execute.html.php index 75d0ac649f..cb27514bf6 100644 --- a/module/upgrade/view/execute.html.php +++ b/module/upgrade/view/execute.html.php @@ -17,16 +17,18 @@ From b0dd0d75b872ddcac9903b0137544d230f004b39 Mon Sep 17 00:00:00 2001 From: wangyidong Date: Wed, 28 Jan 2015 13:46:37 +0800 Subject: [PATCH 06/10] * adjust for comment in mail. --- module/common/view/mail.html.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/module/common/view/mail.html.php b/module/common/view/mail.html.php index a6622ddf21..b001bddc3a 100755 --- a/module/common/view/mail.html.php +++ b/module/common/view/mail.html.php @@ -5,7 +5,7 @@ comment) or !empty($action->history)):?>
action->printChanges($action->objectType, $action->history);?>
-comment and $action->history) echo '
'; echo nl2br($action->comment);?> +comment and $action->history) echo '
'; echo $action->comment;?>
From 13d5d12c78f25afe030965c75f92ab01b23ec577 Mon Sep 17 00:00:00 2001 From: wangyidong Date: Wed, 28 Jan 2015 14:33:04 +0800 Subject: [PATCH 07/10] * finish task #2183. --- module/my/lang/en.php | 2 +- module/my/lang/zh-cn.php | 6 +++--- module/testtask/lang/en.php | 2 +- module/testtask/lang/zh-cn.php | 30 +++++++++++++++--------------- 4 files changed, 20 insertions(+), 20 deletions(-) diff --git a/module/my/lang/en.php b/module/my/lang/en.php index f131d3a1e1..41952849a7 100644 --- a/module/my/lang/en.php +++ b/module/my/lang/en.php @@ -6,7 +6,7 @@ $lang->my->index = 'Index'; $lang->my->todo = 'Todo'; $lang->my->task = 'Task'; $lang->my->bug = 'Bug'; -$lang->my->testTask = 'Test task'; +$lang->my->testTask = 'Build'; $lang->my->testCase = 'Test case'; $lang->my->story = 'Story'; $lang->my->myProject = 'Project'; diff --git a/module/my/lang/zh-cn.php b/module/my/lang/zh-cn.php index d444cd4336..3ca985e54d 100644 --- a/module/my/lang/zh-cn.php +++ b/module/my/lang/zh-cn.php @@ -6,14 +6,14 @@ $lang->my->index = '首页'; $lang->my->todo = '我的待办'; $lang->my->task = '我的任务'; $lang->my->bug = '我的Bug'; -$lang->my->testTask = '我的测试任务'; -$lang->my->testCase = '我的测试用例'; +$lang->my->testTask = '我的版本'; +$lang->my->testCase = '我的用例'; $lang->my->story = '我的需求'; $lang->my->myProject = '我的项目'; $lang->my->team = '我的团队'; $lang->my->profile = '我的档案'; $lang->my->dynamic = '我的动态'; -$lang->my->editProfile = '更新信息'; +$lang->my->editProfile = '修改档案'; $lang->my->changePassword = '修改密码'; $lang->my->taskMenu = new stdclass(); diff --git a/module/testtask/lang/en.php b/module/testtask/lang/en.php index fb322e4110..a76dd3cfcd 100644 --- a/module/testtask/lang/en.php +++ b/module/testtask/lang/en.php @@ -15,7 +15,7 @@ $lang->testtask->delete = "Delete"; $lang->testtask->deleted = "Deleted"; $lang->testtask->view = "Info"; $lang->testtask->edit = "Edit"; -$lang->testtask->browse = "Testtask browse"; +$lang->testtask->browse = "Browse"; $lang->testtask->linkCase = "Link case"; $lang->testtask->linkCaseAB = "Link"; $lang->testtask->unlinkCase = "Del"; diff --git a/module/testtask/lang/zh-cn.php b/module/testtask/lang/zh-cn.php index b9ad0f1117..e592708a72 100644 --- a/module/testtask/lang/zh-cn.php +++ b/module/testtask/lang/zh-cn.php @@ -9,13 +9,13 @@ * @version $Id: zh-cn.php 4490 2013-02-27 03:27:05Z wyd621@gmail.com $ * @link http://www.zentao.net */ -$lang->testtask->index = "测试任务首页"; +$lang->testtask->index = "版本首页"; $lang->testtask->create = "提交测试"; -$lang->testtask->delete = "删除测试任务"; +$lang->testtask->delete = "删除版本"; $lang->testtask->deleted = "已删除"; $lang->testtask->view = "概况"; -$lang->testtask->edit = "编辑测试任务"; -$lang->testtask->browse = "待测列表"; +$lang->testtask->edit = "编辑版本"; +$lang->testtask->browse = "版本列表"; $lang->testtask->linkCase = "关联用例"; $lang->testtask->linkCaseAB = "关联"; $lang->testtask->unlinkCase = "移除"; @@ -34,17 +34,17 @@ $lang->testtask->close = "关闭"; $lang->testtask->wait = "待测版本"; $lang->testtask->done = "已测版本"; -$lang->testtask->common = '测试任务'; -$lang->testtask->id = '任务编号'; +$lang->testtask->common = '版本'; +$lang->testtask->id = '版本编号'; $lang->testtask->product = '所属产品'; $lang->testtask->project = '所属项目'; $lang->testtask->build = '版本'; $lang->testtask->owner = '负责人'; $lang->testtask->pri = '优先级'; -$lang->testtask->name = '任务名称'; +$lang->testtask->name = '版本名称'; $lang->testtask->begin = '开始日期'; $lang->testtask->end = '结束日期'; -$lang->testtask->desc = '任务描述'; +$lang->testtask->desc = '版本描述'; $lang->testtask->status = '当前状态'; $lang->testtask->assignedTo = '指派给'; $lang->testtask->linkVersion = '版本'; @@ -55,7 +55,7 @@ $lang->testtask->report = '测试总结'; $lang->testtask->stories = '相关需求'; $lang->testtask->bugs = '相关Bug'; -$lang->testtask->legendDesc = '任务描述'; +$lang->testtask->legendDesc = '版本描述'; $lang->testtask->legendReport = '测试总结'; $lang->testtask->legendBasicInfo = '基本信息'; @@ -80,7 +80,7 @@ $lang->testtask->fail = '失败'; $lang->testtask->showResult = '共执行%s次'; $lang->testtask->showFail = '失败%s次'; -$lang->testtask->confirmDelete = '您确认要删除该测试任务吗?'; +$lang->testtask->confirmDelete = '您确认要删除该版本吗?'; $lang->testtask->confirmUnlinkCase = '您确认要移除该用例吗?'; $lang->testtask->byModule = '按模块'; @@ -99,12 +99,12 @@ $lang->testtask->placeholder->end = '结束日期'; $lang->testtask->mail = new stdclass(); $lang->testtask->mail->create = new stdclass(); $lang->testtask->mail->edit = new stdclass(); -$lang->testtask->mail->create->title = "%s创建了测试任务 #%s:%s"; -$lang->testtask->mail->edit->title = "%s编辑了测试任务 #%s:%s"; +$lang->testtask->mail->create->title = "%s创建了版本 #%s:%s"; +$lang->testtask->mail->edit->title = "%s编辑了版本 #%s:%s"; $lang->testtask->testScope = '测试范畴'; $lang->testtask->action = new stdclass(); -$lang->testtask->action->testtaskopened = '$date, 由 $actor 创建测试任务 $objectID。' . "\n"; -$lang->testtask->action->testtaskstarted = '$date, 由 $actor 启动测试任务 $objectID。' . "\n"; -$lang->testtask->action->testtaskclosed = '$date, 由 $actor 完成测试任务 $objectID。' . "\n"; +$lang->testtask->action->testtaskopened = '$date, 由 $actor 创建版本 $objectID。' . "\n"; +$lang->testtask->action->testtaskstarted = '$date, 由 $actor 启动版本 $objectID。' . "\n"; +$lang->testtask->action->testtaskclosed = '$date, 由 $actor 完成版本 $objectID。' . "\n"; From 661928131df9e5181f89291d6c35cd2617b330d6 Mon Sep 17 00:00:00 2001 From: wangyidong Date: Wed, 28 Jan 2015 14:46:44 +0800 Subject: [PATCH 08/10] + replace LGPL to ZPL. --- COPYING | 714 +++++-------------------------------------------- COPYING.LESSER | 165 ------------ doc/LICENSE | 102 +++++++ 3 files changed, 173 insertions(+), 808 deletions(-) delete mode 100644 COPYING.LESSER create mode 100644 doc/LICENSE diff --git a/COPYING b/COPYING index 94a9ed024d..9de9c63df0 100644 --- a/COPYING +++ b/COPYING @@ -1,674 +1,102 @@ - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 +Z PUBLIC LICENSE授权协议1.1 - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. +许可 - Preamble +Z PUBLIC LICENSE 由青岛易软天创网络科技有限公司(www.cnezsoft.com)起草,简称ZPL协议。 +任何人均可使用该协议来发布开源软件,并可对下面协议正文中以下划线标注的空白部分做相应修改, +除此之外的任何内容不得做任何修改。青岛易软天创网络科技有限公司拥有对该协议条款的最终解释权。 - The GNU General Public License is a free, copyleft license for -software and other kinds of works. +前言: - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too. +禅道项目管理软件(以下简称该软件)由 青岛易软天创网络科技有限公司(www.cnezsoft.com)开发(以下简称我)。我依法拥有该软件的所有版权。 +本着共享开放的角度,我以开放源代码的形式发布该软件。您可以在遵守该协议的前提下使用该软件。 +自您安装该软件开始,您和我之间的合同关系自动成立。除非您停止使用该软件或与我有签署额外合同, +您须认真遵循该授权协议约定的每一条款。 - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. +我的联系方式: +联系人:徐先生 +电话: 4006-8899-23 +Email: co@cnezsoft.com +QQ: 1492153927 +地址: 青岛开发区井冈山路东方银座 C座 1106 - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. +约定: - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights. +下述条款中所指该软件的标志包括如下方面: - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. +该软件源代码及文档中关于该软件的版权提示、文字、图片和链接。 +该软件运行时界面上呈现出来的有关该软件的文字、图片和链接。 - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. +不包括如下方面: - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. +该软件提供的演示数据中关于该软件的文字、图片和链接。 - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. +一、免责 - The precise terms and conditions for copying, distribution and -modification follow. +该软件是以开放源代码的方式发行,您使用该软件无需任何费用,因此在使用该软件前,您须知晓: - TERMS AND CONDITIONS +1.1 我没有对该软件提供任何技术支持的义务,您可联系我购买商业的技术支持。 +1.2 我对因使用该软件而产生直接或间接的任何问题不负任何责任。 +1.3 开源不等于免费,开源不等于无版权,开源软件的发展需要您我共同的努力。 - 0. Definitions. +二、自用该软件 - "This License" refers to version 3 of the GNU General Public License. +2.1 您个人或您就职的公司(组织)可自由使用该软件,我不对您或您就职公司(组织)的性质做任何限制。 +2.2 您可以在您个人或您就职公司(组织)任意数量的电脑上运行该软件,我不对电脑的数量做任何限制。 +2.3 您可以对该软件源代码进行修改以适应您个人或您所在公司(组织)使用的要求,您做的改动无需对外发布。 +2.4 您个人或您就职公司(组织)使用该软件时,必须保留该软件的所有标志,不得以任何方式隐藏或遮掩任一标志。 - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. +三、为用户定制 - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. +3.1 您可以使用该软件为您的用户部署各种形式的应用,我不对应用的性质做任何限制。 +3.2 您可以使用该软件为您的用户部署任意数量的应用,我不对应用的数量做任何限制。 +3.3 您可以对该软件源代码进行修改以适应您的用户的要求,您做的改动无需对外发布。 +3.4 您对该软件源代码所做的修改可以源代码或二进制的方式提供给您的用户。 +3.5 您使用该软件为您的任一用户部署的任一应用都必须保留该软件所有的标志。 +3.6 您使用该软件为您的任一用户部署的任一应用都不得以任何方式隐藏或遮掩该软件任一标志。 - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. +四、提供在线服务 - A "covered work" means either the unmodified Program or a work based -on the Program. +4.1 您可以使用该软件搭建在线服务,为您的用户提供服务,我不对该服务及该服务用户的性质做任何限制。 +4.2 您可以使用该软件搭建在线服务,为您的用户提供服务,我不对该服务的用户数量做任何限制。 +4.3 您可以对该软件源代码进行修改以适应在线服务的要求,您做的改动无需对外发布。 +4.4 您使用该软件搭建在线服务时,必须以明确的方式告知您的用户该服务是基于该软件搭建的。 +4.5 您使用该软件搭建在线服务为您的任一用户部署的任一应用必须保留该软件所有的标志。 +4.6 您使用该软件搭建在线服务为您的任一用户部署的任一应用不得以任何方式隐藏或遮掩该软件任一标志。 +4.7 您使用该软件搭建在线服务时,不得为您的用户提供去除、隐藏或遮掩该软件任一标志的功能。 - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. +五、无改动发布或集成该软件 - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. +5.1 我欢迎并感谢您将该软件发布在您的个人网站、企业官网或者其他的第三方网站。 +5.2 我欢迎并感谢您将该软件集成在其他系统中一起发布,比如云服务镜像、操作系统发行版等。 +5.3 您在发布或者集成该软件的时候,不得对该软件源码做任何改动。 +5.4 您在发布或者集成该软件的时候,须保留该软件的所有标志。 - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. +六、发布基于该软件的扩展 - 1. Source Code. +6.1 我欢迎并感谢您为该软件开发扩展。 +6.2 您开发的扩展中涉及到对该软件源代码改动的地方,须遵循如下条款: - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. +6.2.1 凡涉及到该软件源代码改动的地方,须提供源代码。 +6.2.2 凡涉及到该软件源代码改动的地方,须保留代码里面该软件原有的所有标志。 +6.2.3 您可以在代码中追加您自己的标志。 +6.2.4 第三方的用户可在遵循5.2所有条款下可继续在您开发的扩展基础上进行改动并发布。 +6.2.5 您可以对您开发的扩展进行收费。 - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. +6.3 您开发的扩展中独立开发的代码,可以源代码或二进制的方式进行发布,可免费或收费发布。 +6.4 您开发的扩展不得以任何方式去除、隐藏或遮掩该软件的任一标志。 - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. +七、发布基于该软件API的应用 - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. +7.1 我欢迎并感谢您为该软件开发基于API的各种应用,比如客户端软件等。 +7.2 您基于该软件API机制开发的应用,可以源代码或者二进制的方式进行发布,我对此没有任何限制。 +7.3 您基于该软件API机制开发的应用,授权协议可以自行约定,我对此没有任何限制。 +7.4 您基于该软件API机制开发的应用,可以免费或者收费发布,我对此没有任何限制。 - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. +八、授权例外 - The Corresponding Source for a work in source code form is that -same work. +如果上述条款无法满足您使用该软件的要求,可联系我签署额外的合同以获得更灵活的授权许可。 - 2. Basic Permissions. +九、合同约束 - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: - - Copyright (C) - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, your program's commands -might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. - - The GNU General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications with -the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. But first, please read -. +9.1 如果您违反了该协议的任一条款,该授权协议将自动终止,我保留通过法律手段追究责任的权利。 diff --git a/COPYING.LESSER b/COPYING.LESSER deleted file mode 100644 index fc8a5de7ed..0000000000 --- a/COPYING.LESSER +++ /dev/null @@ -1,165 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - - This version of the GNU Lesser General Public License incorporates -the terms and conditions of version 3 of the GNU General Public -License, supplemented by the additional permissions listed below. - - 0. Additional Definitions. - - As used herein, "this License" refers to version 3 of the GNU Lesser -General Public License, and the "GNU GPL" refers to version 3 of the GNU -General Public License. - - "The Library" refers to a covered work governed by this License, -other than an Application or a Combined Work as defined below. - - An "Application" is any work that makes use of an interface provided -by the Library, but which is not otherwise based on the Library. -Defining a subclass of a class defined by the Library is deemed a mode -of using an interface provided by the Library. - - A "Combined Work" is a work produced by combining or linking an -Application with the Library. The particular version of the Library -with which the Combined Work was made is also called the "Linked -Version". - - The "Minimal Corresponding Source" for a Combined Work means the -Corresponding Source for the Combined Work, excluding any source code -for portions of the Combined Work that, considered in isolation, are -based on the Application, and not on the Linked Version. - - The "Corresponding Application Code" for a Combined Work means the -object code and/or source code for the Application, including any data -and utility programs needed for reproducing the Combined Work from the -Application, but excluding the System Libraries of the Combined Work. - - 1. Exception to Section 3 of the GNU GPL. - - You may convey a covered work under sections 3 and 4 of this License -without being bound by section 3 of the GNU GPL. - - 2. Conveying Modified Versions. - - If you modify a copy of the Library, and, in your modifications, a -facility refers to a function or data to be supplied by an Application -that uses the facility (other than as an argument passed when the -facility is invoked), then you may convey a copy of the modified -version: - - a) under this License, provided that you make a good faith effort to - ensure that, in the event an Application does not supply the - function or data, the facility still operates, and performs - whatever part of its purpose remains meaningful, or - - b) under the GNU GPL, with none of the additional permissions of - this License applicable to that copy. - - 3. Object Code Incorporating Material from Library Header Files. - - The object code form of an Application may incorporate material from -a header file that is part of the Library. You may convey such object -code under terms of your choice, provided that, if the incorporated -material is not limited to numerical parameters, data structure -layouts and accessors, or small macros, inline functions and templates -(ten or fewer lines in length), you do both of the following: - - a) Give prominent notice with each copy of the object code that the - Library is used in it and that the Library and its use are - covered by this License. - - b) Accompany the object code with a copy of the GNU GPL and this license - document. - - 4. Combined Works. - - You may convey a Combined Work under terms of your choice that, -taken together, effectively do not restrict modification of the -portions of the Library contained in the Combined Work and reverse -engineering for debugging such modifications, if you also do each of -the following: - - a) Give prominent notice with each copy of the Combined Work that - the Library is used in it and that the Library and its use are - covered by this License. - - b) Accompany the Combined Work with a copy of the GNU GPL and this license - document. - - c) For a Combined Work that displays copyright notices during - execution, include the copyright notice for the Library among - these notices, as well as a reference directing the user to the - copies of the GNU GPL and this license document. - - d) Do one of the following: - - 0) Convey the Minimal Corresponding Source under the terms of this - License, and the Corresponding Application Code in a form - suitable for, and under terms that permit, the user to - recombine or relink the Application with a modified version of - the Linked Version to produce a modified Combined Work, in the - manner specified by section 6 of the GNU GPL for conveying - Corresponding Source. - - 1) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (a) uses at run time - a copy of the Library already present on the user's computer - system, and (b) will operate properly with a modified version - of the Library that is interface-compatible with the Linked - Version. - - e) Provide Installation Information, but only if you would otherwise - be required to provide such information under section 6 of the - GNU GPL, and only to the extent that such information is - necessary to install and execute a modified version of the - Combined Work produced by recombining or relinking the - Application with a modified version of the Linked Version. (If - you use option 4d0, the Installation Information must accompany - the Minimal Corresponding Source and Corresponding Application - Code. If you use option 4d1, you must provide the Installation - Information in the manner specified by section 6 of the GNU GPL - for conveying Corresponding Source.) - - 5. Combined Libraries. - - You may place library facilities that are a work based on the -Library side by side in a single library together with other library -facilities that are not Applications and are not covered by this -License, and convey such a combined library under terms of your -choice, if you do both of the following: - - a) Accompany the combined library with a copy of the same work based - on the Library, uncombined with any other library facilities, - conveyed under the terms of this License. - - b) Give prominent notice with the combined library that part of it - is a work based on the Library, and explaining where to find the - accompanying uncombined form of the same work. - - 6. Revised Versions of the GNU Lesser General Public License. - - The Free Software Foundation may publish revised and/or new versions -of the GNU Lesser General Public License from time to time. Such new -versions will be similar in spirit to the present version, but may -differ in detail to address new problems or concerns. - - Each version is given a distinguishing version number. If the -Library as you received it specifies that a certain numbered version -of the GNU Lesser General Public License "or any later version" -applies to it, you have the option of following the terms and -conditions either of that published version or of any later version -published by the Free Software Foundation. If the Library as you -received it does not specify a version number of the GNU Lesser -General Public License, you may choose any version of the GNU Lesser -General Public License ever published by the Free Software Foundation. - - If the Library as you received it specifies that a proxy can decide -whether future versions of the GNU Lesser General Public License shall -apply, that proxy's public statement of acceptance of any version is -permanent authorization for you to choose that version for the -Library. diff --git a/doc/LICENSE b/doc/LICENSE new file mode 100644 index 0000000000..9de9c63df0 --- /dev/null +++ b/doc/LICENSE @@ -0,0 +1,102 @@ +Z PUBLIC LICENSE授权协议1.1 + +许可 + +Z PUBLIC LICENSE 由青岛易软天创网络科技有限公司(www.cnezsoft.com)起草,简称ZPL协议。 +任何人均可使用该协议来发布开源软件,并可对下面协议正文中以下划线标注的空白部分做相应修改, +除此之外的任何内容不得做任何修改。青岛易软天创网络科技有限公司拥有对该协议条款的最终解释权。 + +前言: + +禅道项目管理软件(以下简称该软件)由 青岛易软天创网络科技有限公司(www.cnezsoft.com)开发(以下简称我)。我依法拥有该软件的所有版权。 +本着共享开放的角度,我以开放源代码的形式发布该软件。您可以在遵守该协议的前提下使用该软件。 +自您安装该软件开始,您和我之间的合同关系自动成立。除非您停止使用该软件或与我有签署额外合同, +您须认真遵循该授权协议约定的每一条款。 + +我的联系方式: +联系人:徐先生 +电话: 4006-8899-23 +Email: co@cnezsoft.com +QQ: 1492153927 +地址: 青岛开发区井冈山路东方银座 C座 1106 + +约定: + +下述条款中所指该软件的标志包括如下方面: + +该软件源代码及文档中关于该软件的版权提示、文字、图片和链接。 +该软件运行时界面上呈现出来的有关该软件的文字、图片和链接。 + +不包括如下方面: + +该软件提供的演示数据中关于该软件的文字、图片和链接。 + +一、免责 + +该软件是以开放源代码的方式发行,您使用该软件无需任何费用,因此在使用该软件前,您须知晓: + +1.1 我没有对该软件提供任何技术支持的义务,您可联系我购买商业的技术支持。 +1.2 我对因使用该软件而产生直接或间接的任何问题不负任何责任。 +1.3 开源不等于免费,开源不等于无版权,开源软件的发展需要您我共同的努力。 + +二、自用该软件 + +2.1 您个人或您就职的公司(组织)可自由使用该软件,我不对您或您就职公司(组织)的性质做任何限制。 +2.2 您可以在您个人或您就职公司(组织)任意数量的电脑上运行该软件,我不对电脑的数量做任何限制。 +2.3 您可以对该软件源代码进行修改以适应您个人或您所在公司(组织)使用的要求,您做的改动无需对外发布。 +2.4 您个人或您就职公司(组织)使用该软件时,必须保留该软件的所有标志,不得以任何方式隐藏或遮掩任一标志。 + +三、为用户定制 + +3.1 您可以使用该软件为您的用户部署各种形式的应用,我不对应用的性质做任何限制。 +3.2 您可以使用该软件为您的用户部署任意数量的应用,我不对应用的数量做任何限制。 +3.3 您可以对该软件源代码进行修改以适应您的用户的要求,您做的改动无需对外发布。 +3.4 您对该软件源代码所做的修改可以源代码或二进制的方式提供给您的用户。 +3.5 您使用该软件为您的任一用户部署的任一应用都必须保留该软件所有的标志。 +3.6 您使用该软件为您的任一用户部署的任一应用都不得以任何方式隐藏或遮掩该软件任一标志。 + +四、提供在线服务 + +4.1 您可以使用该软件搭建在线服务,为您的用户提供服务,我不对该服务及该服务用户的性质做任何限制。 +4.2 您可以使用该软件搭建在线服务,为您的用户提供服务,我不对该服务的用户数量做任何限制。 +4.3 您可以对该软件源代码进行修改以适应在线服务的要求,您做的改动无需对外发布。 +4.4 您使用该软件搭建在线服务时,必须以明确的方式告知您的用户该服务是基于该软件搭建的。 +4.5 您使用该软件搭建在线服务为您的任一用户部署的任一应用必须保留该软件所有的标志。 +4.6 您使用该软件搭建在线服务为您的任一用户部署的任一应用不得以任何方式隐藏或遮掩该软件任一标志。 +4.7 您使用该软件搭建在线服务时,不得为您的用户提供去除、隐藏或遮掩该软件任一标志的功能。 + +五、无改动发布或集成该软件 + +5.1 我欢迎并感谢您将该软件发布在您的个人网站、企业官网或者其他的第三方网站。 +5.2 我欢迎并感谢您将该软件集成在其他系统中一起发布,比如云服务镜像、操作系统发行版等。 +5.3 您在发布或者集成该软件的时候,不得对该软件源码做任何改动。 +5.4 您在发布或者集成该软件的时候,须保留该软件的所有标志。 + +六、发布基于该软件的扩展 + +6.1 我欢迎并感谢您为该软件开发扩展。 +6.2 您开发的扩展中涉及到对该软件源代码改动的地方,须遵循如下条款: + +6.2.1 凡涉及到该软件源代码改动的地方,须提供源代码。 +6.2.2 凡涉及到该软件源代码改动的地方,须保留代码里面该软件原有的所有标志。 +6.2.3 您可以在代码中追加您自己的标志。 +6.2.4 第三方的用户可在遵循5.2所有条款下可继续在您开发的扩展基础上进行改动并发布。 +6.2.5 您可以对您开发的扩展进行收费。 + +6.3 您开发的扩展中独立开发的代码,可以源代码或二进制的方式进行发布,可免费或收费发布。 +6.4 您开发的扩展不得以任何方式去除、隐藏或遮掩该软件的任一标志。 + +七、发布基于该软件API的应用 + +7.1 我欢迎并感谢您为该软件开发基于API的各种应用,比如客户端软件等。 +7.2 您基于该软件API机制开发的应用,可以源代码或者二进制的方式进行发布,我对此没有任何限制。 +7.3 您基于该软件API机制开发的应用,授权协议可以自行约定,我对此没有任何限制。 +7.4 您基于该软件API机制开发的应用,可以免费或者收费发布,我对此没有任何限制。 + +八、授权例外 + +如果上述条款无法满足您使用该软件的要求,可联系我签署额外的合同以获得更灵活的授权许可。 + +九、合同约束 + +9.1 如果您违反了该协议的任一条款,该授权协议将自动终止,我保留通过法律手段追究责任的权利。 From 0dd2d53f406a8ef0d0e8b9d62e23deb9ca87fdf5 Mon Sep 17 00:00:00 2001 From: wangyidong Date: Wed, 28 Jan 2015 15:14:02 +0800 Subject: [PATCH 09/10] * change for task #2190. --- config/config.php | 4 ++-- lib/api/api.class.php | 4 ++-- lib/date/date.class.php | 4 ++-- lib/zdb/zdb.class.php | 4 ++-- lib/zfile/zfile.class.php | 4 ++-- module/action/control.php | 4 ++-- module/action/lang/en.php | 4 ++-- module/action/lang/zh-cn.php | 4 ++-- module/action/lang/zh-tw.php | 4 ++-- module/action/model.php | 4 ++-- module/action/view/trash.html.php | 4 ++-- module/admin/control.php | 4 ++-- module/admin/lang/en.php | 4 ++-- module/admin/lang/zh-cn.php | 4 ++-- module/admin/lang/zh-tw.php | 4 ++-- module/admin/model.php | 4 ++-- module/admin/view/bind.html.php | 4 ++-- module/admin/view/index.html.php | 4 ++-- module/admin/view/register.html.php | 4 ++-- module/api/control.php | 4 ++-- module/api/lang/en.php | 4 ++-- module/api/lang/zh-cn.php | 4 ++-- module/api/lang/zh-tw.php | 4 ++-- module/api/model.php | 4 ++-- module/backup/control.php | 4 ++-- module/backup/model.php | 4 ++-- module/backup/view/index.html.php | 4 ++-- module/bug/control.php | 4 ++-- module/bug/lang/en.php | 4 ++-- module/bug/lang/zh-cn.php | 4 ++-- module/bug/lang/zh-tw.php | 4 ++-- module/bug/model.php | 4 ++-- module/bug/view/activate.html.php | 4 ++-- module/bug/view/assignto.html.php | 4 ++-- module/bug/view/batchcreate.html.php | 4 ++-- module/bug/view/batchedit.html.php | 4 ++-- module/bug/view/browse.html.php | 4 ++-- module/bug/view/close.html.php | 4 ++-- module/bug/view/confirmbug.html.php | 4 ++-- module/bug/view/create.html.php | 4 ++-- module/bug/view/edit.html.php | 4 ++-- module/bug/view/export.html.php | 4 ++-- module/bug/view/m.browse.html.php | 4 ++-- module/bug/view/report.html.php | 4 ++-- module/bug/view/resolve.html.php | 4 ++-- module/bug/view/sendmail.html.php | 4 ++-- module/bug/view/view.html.php | 4 ++-- module/build/control.php | 4 ++-- module/build/lang/en.php | 4 ++-- module/build/lang/zh-cn.php | 4 ++-- module/build/lang/zh-tw.php | 4 ++-- module/build/model.php | 4 ++-- module/build/view/create.html.php | 4 ++-- module/build/view/edit.html.php | 4 ++-- module/build/view/linkbug.html.php | 4 ++-- module/build/view/linkstory.html.php | 4 ++-- module/build/view/view.html.php | 4 ++-- module/common/control.php | 4 ++-- module/common/lang/en.php | 4 ++-- module/common/lang/zh-cn.php | 4 ++-- module/common/lang/zh-tw.php | 4 ++-- module/common/model.php | 4 ++-- module/company/control.php | 4 ++-- module/company/lang/en.php | 4 ++-- module/company/lang/zh-cn.php | 4 ++-- module/company/lang/zh-tw.php | 4 ++-- module/company/model.php | 4 ++-- module/company/view/browse.html.php | 4 ++-- module/company/view/dynamic.html.php | 4 ++-- module/company/view/edit.html.php | 4 ++-- module/company/view/view.html.php | 4 ++-- module/convert/control.php | 4 ++-- module/convert/converter/bugfree.php | 4 ++-- module/convert/converter/bugfree1.php | 4 ++-- module/convert/converter/bugfree2.php | 4 ++-- module/convert/converter/redmine.php | 4 ++-- module/convert/converter/redmine1.1.php | 4 ++-- module/convert/lang/en.php | 4 ++-- module/convert/lang/zh-cn.php | 4 ++-- module/convert/lang/zh-tw.php | 4 ++-- module/convert/model.php | 4 ++-- module/convert/view/checkconfig.html.php | 4 ++-- module/convert/view/execute.html.php | 4 ++-- module/convert/view/index.html.php | 4 ++-- module/convert/view/selectsource.html.php | 4 ++-- module/convert/view/setconfig.html.php | 4 ++-- module/custom/control.php | 4 ++-- module/custom/model.php | 4 ++-- module/custom/view/set.html.php | 4 ++-- module/dept/control.php | 4 ++-- module/dept/lang/en.php | 4 ++-- module/dept/lang/zh-cn.php | 4 ++-- module/dept/lang/zh-tw.php | 4 ++-- module/dept/model.php | 4 ++-- module/dept/view/browse.html.php | 4 ++-- module/dept/view/edit.html.php | 4 ++-- module/doc/control.php | 4 ++-- module/doc/lang/en.php | 4 ++-- module/doc/lang/zh-cn.php | 4 ++-- module/doc/lang/zh-tw.php | 4 ++-- module/doc/model.php | 4 ++-- module/doc/view/browse.html.php | 4 ++-- module/doc/view/create.html.php | 4 ++-- module/doc/view/createlib.html.php | 4 ++-- module/doc/view/edit.html.php | 4 ++-- module/doc/view/editlib.html.php | 4 ++-- module/doc/view/view.html.php | 4 ++-- module/editor/control.php | 4 ++-- module/editor/model.php | 4 ++-- module/editor/view/edit.html.php | 4 ++-- module/editor/view/extend.html.php | 4 ++-- module/editor/view/index.html.php | 4 ++-- module/editor/view/newpage.html.php | 4 ++-- module/extension/control.php | 4 ++-- module/extension/lang/en.php | 4 ++-- module/extension/lang/zh-cn.php | 4 ++-- module/extension/lang/zh-tw.php | 4 ++-- module/extension/model.php | 4 ++-- module/extension/view/activate.html.php | 4 ++-- module/extension/view/browse.html.php | 4 ++-- module/extension/view/checkscore.html.php | 4 ++-- module/extension/view/deactivate.html.php | 4 ++-- module/extension/view/erase.html.php | 4 ++-- module/extension/view/install.html.php | 4 ++-- module/extension/view/obtain.html.php | 4 ++-- module/extension/view/structure.html.php | 4 ++-- module/extension/view/uninstall.html.php | 4 ++-- module/extension/view/upload.html.php | 4 ++-- module/extension/view/waring.htm.php | 4 ++-- module/file/control.php | 4 ++-- module/file/lang/en.php | 4 ++-- module/file/lang/zh-cn.php | 4 ++-- module/file/lang/zh-tw.php | 4 ++-- module/file/model.php | 4 ++-- module/file/view/edit.html.php | 4 ++-- module/file/view/export.html.php | 4 ++-- module/file/view/export2csv.html.php | 4 ++-- module/file/view/export2html.html.php | 4 ++-- module/file/view/export2xml.html.php | 4 ++-- module/file/view/uploadimages.html.php | 4 ++-- module/git/control.php | 4 ++-- module/git/lang/en.php | 4 ++-- module/git/lang/zh-cn.php | 4 ++-- module/git/lang/zh-tw.php | 4 ++-- module/git/model.php | 4 ++-- module/git/view/cat.html.php | 4 ++-- module/git/view/diff.html.php | 4 ++-- module/group/control.php | 4 ++-- module/group/lang/en.php | 4 ++-- module/group/lang/resource.php | 4 ++-- module/group/lang/zh-cn.php | 4 ++-- module/group/lang/zh-tw.php | 4 ++-- module/group/model.php | 4 ++-- module/group/view/browse.html.php | 4 ++-- module/group/view/copy.html.php | 4 ++-- module/group/view/create.html.php | 4 ++-- module/group/view/edit.html.php | 4 ++-- module/group/view/managemember.html.php | 4 ++-- module/group/view/managepriv.html.php | 4 ++-- module/group/view/privbygroup.html.php | 4 ++-- module/group/view/privbymodule.html.php | 4 ++-- module/index/control.php | 4 ++-- module/index/model.php | 4 ++-- module/install/control.php | 4 ++-- module/install/lang/en.php | 4 ++-- module/install/lang/zh-cn.php | 4 ++-- module/install/lang/zh-tw.php | 4 ++-- module/install/model.php | 4 ++-- module/install/view/index.html.php | 4 ++-- module/install/view/step1.html.php | 4 ++-- module/install/view/step2.html.php | 4 ++-- module/install/view/step3.html.php | 4 ++-- module/install/view/step4.html.php | 4 ++-- module/install/view/step5.html.php | 4 ++-- module/mail/control.php | 4 ++-- module/mail/model.php | 4 ++-- module/mail/view/detect.html.php | 4 ++-- module/mail/view/edit.html.php | 4 ++-- module/mail/view/save.html.php | 4 ++-- module/mail/view/test.html.php | 4 ++-- module/misc/control.php | 4 ++-- module/misc/lang/en.php | 4 ++-- module/misc/lang/zh-cn.php | 4 ++-- module/misc/lang/zh-tw.php | 4 ++-- module/misc/model.php | 4 ++-- module/my/control.php | 4 ++-- module/my/model.php | 4 ++-- module/my/view/bug.html.php | 4 ++-- module/my/view/changepassword.html.php | 4 ++-- module/my/view/dynamic.html.php | 4 ++-- module/my/view/editprofile.html.php | 4 ++-- module/my/view/index.html.php | 4 ++-- module/my/view/m.story.html.php | 4 ++-- module/my/view/m.task.html.php | 4 ++-- module/my/view/m.todo.html.php | 4 ++-- module/my/view/profile.html.php | 4 ++-- module/my/view/project.html.php | 4 ++-- module/my/view/story.html.php | 4 ++-- module/my/view/task.html.php | 4 ++-- module/my/view/team.html.php | 4 ++-- module/my/view/testcase.html.php | 4 ++-- module/my/view/testtask.html.php | 4 ++-- module/my/view/todo.html.php | 4 ++-- module/product/control.php | 4 ++-- module/product/lang/en.php | 4 ++-- module/product/lang/zh-cn.php | 4 ++-- module/product/lang/zh-tw.php | 4 ++-- module/product/model.php | 4 ++-- module/product/view/batchedit.html.php | 4 ++-- module/product/view/browse.html.php | 4 ++-- module/product/view/close.html.php | 4 ++-- module/product/view/create.html.php | 4 ++-- module/product/view/doc.html.php | 4 ++-- module/product/view/dynamic.html.php | 4 ++-- module/product/view/edit.html.php | 4 ++-- module/product/view/index.html.php | 4 ++-- module/product/view/m.index.html.php | 4 ++-- module/product/view/project.html.php | 4 ++-- module/product/view/roadmap.html.php | 4 ++-- module/product/view/view.html.php | 4 ++-- module/productplan/control.php | 4 ++-- module/productplan/lang/en.php | 4 ++-- module/productplan/lang/zh-cn.php | 4 ++-- module/productplan/lang/zh-tw.php | 4 ++-- module/productplan/model.php | 4 ++-- module/productplan/view/browse.html.php | 4 ++-- module/productplan/view/create.html.php | 4 ++-- module/productplan/view/edit.html.php | 4 ++-- module/productplan/view/linkbug.html.php | 4 ++-- module/productplan/view/linkstory.html.php | 4 ++-- module/productplan/view/view.html.php | 4 ++-- module/project/control.php | 2 +- module/project/lang/en.php | 4 ++-- module/project/lang/zh-cn.php | 4 ++-- module/project/lang/zh-tw.php | 4 ++-- module/project/model.php | 4 ++-- module/project/view/activate.html.php | 4 ++-- module/project/view/batchedit.html.php | 4 ++-- module/project/view/bug.html.php | 4 ++-- module/project/view/build.html.php | 4 ++-- module/project/view/burn.html.php | 4 ++-- module/project/view/close.html.php | 4 ++-- module/project/view/computeburn.html.php | 4 ++-- module/project/view/create.html.php | 4 ++-- module/project/view/doc.html.php | 4 ++-- module/project/view/dynamic.html.php | 4 ++-- module/project/view/edit.html.php | 4 ++-- module/project/view/grouptask.html.php | 4 ++-- module/project/view/importbug.html.php | 4 ++-- module/project/view/importtask.html.php | 4 ++-- module/project/view/index.html.php | 4 ++-- module/project/view/linkstory.html.php | 4 ++-- module/project/view/m.index.html.php | 4 ++-- module/project/view/managechilds.html.php | 4 ++-- module/project/view/managemembers.html.php | 4 ++-- module/project/view/manageproducts.html.php | 4 ++-- module/project/view/putoff.html.php | 4 ++-- module/project/view/sendmail.html.php | 4 ++-- module/project/view/start.html.php | 4 ++-- module/project/view/story.html.php | 4 ++-- module/project/view/suspend.html.php | 4 ++-- module/project/view/task.html.php | 4 ++-- module/project/view/team.html.php | 4 ++-- module/project/view/testtask.html.php | 4 ++-- module/project/view/view.html.php | 4 ++-- module/qa/control.php | 4 ++-- module/qa/lang/en.php | 4 ++-- module/qa/lang/zh-cn.php | 4 ++-- module/qa/lang/zh-tw.php | 4 ++-- module/qa/model.php | 4 ++-- module/qa/view/index.html.php | 4 ++-- module/release/control.php | 4 ++-- module/release/lang/en.php | 4 ++-- module/release/lang/zh-cn.php | 4 ++-- module/release/lang/zh-tw.php | 4 ++-- module/release/model.php | 4 ++-- module/release/view/browse.html.php | 4 ++-- module/release/view/create.html.php | 4 ++-- module/release/view/edit.html.php | 4 ++-- module/release/view/export.html.php | 4 ++-- module/release/view/linkbug.html.php | 4 ++-- module/release/view/linkstory.html.php | 4 ++-- module/release/view/view.html.php | 4 ++-- module/report/control.php | 4 ++-- module/report/lang/en.php | 4 ++-- module/report/lang/zh-cn.php | 4 ++-- module/report/lang/zh-tw.php | 4 ++-- module/report/model.php | 4 ++-- module/search/control.php | 4 ++-- module/search/lang/en.php | 4 ++-- module/search/lang/zh-cn.php | 4 ++-- module/search/lang/zh-tw.php | 4 ++-- module/search/model.php | 4 ++-- module/search/view/buildform.html.php | 4 ++-- module/setting/model.php | 4 ++-- module/story/control.php | 4 ++-- module/story/lang/en.php | 4 ++-- module/story/lang/zh-cn.php | 4 ++-- module/story/lang/zh-tw.php | 4 ++-- module/story/model.php | 4 ++-- module/story/view/activate.html.php | 4 ++-- module/story/view/batchclose.html.php | 4 ++-- module/story/view/batchcreate.html.php | 4 ++-- module/story/view/batchedit.html.php | 4 ++-- module/story/view/change.html.php | 4 ++-- module/story/view/close.html.php | 4 ++-- module/story/view/create.html.php | 4 ++-- module/story/view/edit.html.php | 4 ++-- module/story/view/export.html.php | 4 ++-- module/story/view/m.close.html.php | 4 ++-- module/story/view/m.review.html.php | 4 ++-- module/story/view/report.html.php | 4 ++-- module/story/view/review.html.php | 4 ++-- module/story/view/sendmail.html.php | 4 ++-- module/story/view/view.html.php | 4 ++-- module/story/view/zerocase.html.php | 4 ++-- module/svn/control.php | 4 ++-- module/svn/lang/en.php | 4 ++-- module/svn/lang/zh-cn.php | 4 ++-- module/svn/lang/zh-tw.php | 4 ++-- module/svn/model.php | 4 ++-- module/svn/syncer/syncer.php | 4 ++-- module/svn/view/cat.html.php | 4 ++-- module/svn/view/diff.html.php | 4 ++-- module/task/control.php | 4 ++-- module/task/lang/en.php | 4 ++-- module/task/lang/zh-cn.php | 4 ++-- module/task/lang/zh-tw.php | 4 ++-- module/task/model.php | 4 ++-- module/task/view/activate.html.php | 4 ++-- module/task/view/assignto.html.php | 4 ++-- module/task/view/batchcreate.html.php | 4 ++-- module/task/view/batchedit.html.php | 4 ++-- module/task/view/browse.html.php | 4 ++-- module/task/view/cancel.html.php | 4 ++-- module/task/view/close.html.php | 4 ++-- module/task/view/create.html.php | 4 ++-- module/task/view/edit.html.php | 4 ++-- module/task/view/editestimate.html.php | 4 ++-- module/task/view/export.html.php | 4 ++-- module/task/view/finish.html.php | 4 ++-- module/task/view/pause.html.php | 4 ++-- module/task/view/recordestimate.html.php | 4 ++-- module/task/view/report.html.php | 4 ++-- module/task/view/restart.html.php | 4 ++-- module/task/view/sendmail.html.php | 4 ++-- module/task/view/start.html.php | 4 ++-- module/task/view/view.html.php | 4 ++-- module/testcase/control.php | 4 ++-- module/testcase/lang/en.php | 4 ++-- module/testcase/lang/zh-cn.php | 4 ++-- module/testcase/lang/zh-tw.php | 4 ++-- module/testcase/model.php | 4 ++-- module/testcase/view/batchcreate.html.php | 4 ++-- module/testcase/view/batchedit.html.php | 4 ++-- module/testcase/view/browse.html.php | 4 ++-- module/testcase/view/create.html.php | 4 ++-- module/testcase/view/createbug.html.php | 4 ++-- module/testcase/view/edit.html.php | 4 ++-- module/testcase/view/export.html.php | 4 ++-- module/testcase/view/groupcase.html.php | 4 ++-- module/testcase/view/index.html.php | 4 ++-- module/testcase/view/view.html.php | 4 ++-- module/testtask/control.php | 4 ++-- module/testtask/lang/en.php | 4 ++-- module/testtask/lang/zh-cn.php | 4 ++-- module/testtask/lang/zh-tw.php | 4 ++-- module/testtask/model.php | 4 ++-- module/testtask/view/batchrun.html.php | 4 ++-- module/testtask/view/browse.html.php | 4 ++-- module/testtask/view/cases.html.php | 4 ++-- module/testtask/view/close.html.php | 4 ++-- module/testtask/view/create.html.php | 4 ++-- module/testtask/view/edit.html.php | 4 ++-- module/testtask/view/groupcase.html.php | 4 ++-- module/testtask/view/linkcase.html.php | 4 ++-- module/testtask/view/results.html.php | 4 ++-- module/testtask/view/runcase.html.php | 4 ++-- module/testtask/view/sendmail.html.php | 4 ++-- module/testtask/view/start.html.php | 4 ++-- module/testtask/view/view.html.php | 4 ++-- module/todo/control.php | 4 ++-- module/todo/lang/en.php | 4 ++-- module/todo/lang/zh-cn.php | 4 ++-- module/todo/lang/zh-tw.php | 4 ++-- module/todo/model.php | 4 ++-- module/todo/view/batchcreate.html.php | 4 ++-- module/todo/view/batchedit.html.php | 4 ++-- module/todo/view/create.html.php | 4 ++-- module/todo/view/edit.html.php | 4 ++-- module/todo/view/export.html.php | 4 ++-- module/todo/view/m.batchcreate.html.php | 4 ++-- module/todo/view/view.html.php | 4 ++-- module/tree/control.php | 4 ++-- module/tree/lang/en.php | 4 ++-- module/tree/lang/zh-cn.php | 4 ++-- module/tree/lang/zh-tw.php | 4 ++-- module/tree/model.php | 4 ++-- module/tree/view/browse.html.php | 4 ++-- module/tree/view/browsetask.html.php | 4 ++-- module/tree/view/edit.html.php | 4 ++-- module/upgrade/control.php | 4 ++-- module/upgrade/lang/en.php | 4 ++-- module/upgrade/lang/zh-cn.php | 4 ++-- module/upgrade/lang/zh-tw.php | 4 ++-- module/upgrade/model.php | 4 ++-- module/upgrade/view/confirm.html.php | 4 ++-- module/upgrade/view/execute.html.php | 4 ++-- module/upgrade/view/index.html.php | 4 ++-- module/upgrade/view/selectversion.html.php | 4 ++-- module/user/control.php | 4 ++-- module/user/lang/en.php | 4 ++-- module/user/lang/zh-cn.php | 4 ++-- module/user/lang/zh-tw.php | 4 ++-- module/user/model.php | 4 ++-- module/user/view/batchcreate.html.php | 4 ++-- module/user/view/batchedit.html.php | 4 ++-- module/user/view/bug.html.php | 4 ++-- module/user/view/create.html.php | 4 ++-- module/user/view/deny.html.php | 4 ++-- module/user/view/dynamic.html.php | 4 ++-- module/user/view/edit.html.php | 4 ++-- module/user/view/login.html.php | 4 ++-- module/user/view/m.login.html.php | 4 ++-- module/user/view/managecontacts.html.php | 4 ++-- module/user/view/profile.html.php | 4 ++-- module/user/view/project.html.php | 4 ++-- module/user/view/story.html.php | 4 ++-- module/user/view/task.html.php | 4 ++-- module/user/view/team.html.php | 4 ++-- module/user/view/testcase.html.php | 4 ++-- module/user/view/testtask.html.php | 4 ++-- module/user/view/todo.html.php | 4 ++-- tools/replace.sh | 17 +++++++++++++++++ www/index.php | 4 ++-- www/theme/default/m.style.css | 4 ++-- www/theme/default/style.css | 4 ++-- www/upgrade.php | 4 ++-- 438 files changed, 890 insertions(+), 873 deletions(-) create mode 100755 tools/replace.sh diff --git a/config/config.php b/config/config.php index 1c05c59294..d48c6ae099 100644 --- a/config/config.php +++ b/config/config.php @@ -4,8 +4,8 @@ * * Don't modify this file directly, copy the item to my.php and change it. * - * @copyright Copyright 2009-2013 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package config * @version $Id: config.php 5068 2013-07-08 02:41:22Z wyd621@gmail.com $ diff --git a/lib/api/api.class.php b/lib/api/api.class.php index 3c0bc23be1..f32f4687a2 100755 --- a/lib/api/api.class.php +++ b/lib/api/api.class.php @@ -2,8 +2,8 @@ /** * The api library of zentaopms. * - * @copyright Copyright 2009-2013 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package API * @version $Id: api.class.php 4132 2013-01-18 02:30:05Z wwccss $ diff --git a/lib/date/date.class.php b/lib/date/date.class.php index 12e385fff9..b196e5d2aa 100644 --- a/lib/date/date.class.php +++ b/lib/date/date.class.php @@ -2,8 +2,8 @@ /** * The date library of zentaopms. * - * @copyright Copyright 2009-2013 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package Date * @version $Id: date.class.php 2605 2013-01-09 07:22:58Z wwccss $ diff --git a/lib/zdb/zdb.class.php b/lib/zdb/zdb.class.php index cc43941d36..726ba6d288 100644 --- a/lib/zdb/zdb.class.php +++ b/lib/zdb/zdb.class.php @@ -2,8 +2,8 @@ /** * The zdb library of zentaopms, can be used to bakup and restore a database. * - * @copyright Copyright 2009-2013 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yidong Wang * @package Zdb * @version $Id$ diff --git a/lib/zfile/zfile.class.php b/lib/zfile/zfile.class.php index dab3c46c10..15e39c8bf5 100644 --- a/lib/zfile/zfile.class.php +++ b/lib/zfile/zfile.class.php @@ -2,8 +2,8 @@ /** * The zfile library of zentaopms. * - * @copyright Copyright 2009-2013 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package Zfile * @version $Id: zfile.class.php 2605 2013-01-09 07:22:58Z wwccss $ diff --git a/module/action/control.php b/module/action/control.php index 301a060b3d..f102b0dd47 100755 --- a/module/action/control.php +++ b/module/action/control.php @@ -2,8 +2,8 @@ /** * The control file of action module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package action * @version $Id$ diff --git a/module/action/lang/en.php b/module/action/lang/en.php index 0f64610a64..ac686960d9 100755 --- a/module/action/lang/en.php +++ b/module/action/lang/en.php @@ -2,8 +2,8 @@ /** * The action module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package action * @version $Id: en.php 4729 2013-05-03 07:53:55Z chencongzhi520@gmail.com $ diff --git a/module/action/lang/zh-cn.php b/module/action/lang/zh-cn.php index 0ec733e2fe..54c5f909d8 100755 --- a/module/action/lang/zh-cn.php +++ b/module/action/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The action module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package action * @version $Id: zh-cn.php 4955 2013-07-02 01:47:21Z chencongzhi520@gmail.com $ diff --git a/module/action/lang/zh-tw.php b/module/action/lang/zh-tw.php index 4178461d93..3c95e3e157 100755 --- a/module/action/lang/zh-tw.php +++ b/module/action/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The action module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package action * @version $Id: zh-tw.php 4955 2013-07-02 01:47:21Z chencongzhi520@gmail.com $ diff --git a/module/action/model.php b/module/action/model.php index 57e3e13346..484de5dafb 100755 --- a/module/action/model.php +++ b/module/action/model.php @@ -2,8 +2,8 @@ /** * The model file of action module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package action * @version $Id: model.php 5028 2013-07-06 02:59:41Z wyd621@gmail.com $ diff --git a/module/action/view/trash.html.php b/module/action/view/trash.html.php index adedc230ca..6c1520d0df 100755 --- a/module/action/view/trash.html.php +++ b/module/action/view/trash.html.php @@ -2,8 +2,8 @@ /** * The trash view file of action module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package action * @version $Id$ diff --git a/module/admin/control.php b/module/admin/control.php index 3ee44fb187..f8c5ab4968 100644 --- a/module/admin/control.php +++ b/module/admin/control.php @@ -2,8 +2,8 @@ /** * The control file of admin module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package admin * @version $Id: control.php 4460 2013-02-26 02:28:02Z chencongzhi520@gmail.com $ diff --git a/module/admin/lang/en.php b/module/admin/lang/en.php index 2d472c33c3..d97bc0b93d 100644 --- a/module/admin/lang/en.php +++ b/module/admin/lang/en.php @@ -2,8 +2,8 @@ /** * The admin module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package admin * @version $Id: en.php 4460 2013-02-26 02:28:02Z chencongzhi520@gmail.com $ diff --git a/module/admin/lang/zh-cn.php b/module/admin/lang/zh-cn.php index 072a784d86..67ef3426d3 100644 --- a/module/admin/lang/zh-cn.php +++ b/module/admin/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The admin module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package admin * @version $Id: zh-cn.php 4767 2013-05-05 06:10:13Z wwccss $ diff --git a/module/admin/lang/zh-tw.php b/module/admin/lang/zh-tw.php index 644edc4f20..f032ded047 100644 --- a/module/admin/lang/zh-tw.php +++ b/module/admin/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The admin module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package admin * @version $Id: zh-tw.php 4767 2013-05-05 06:10:13Z wwccss $ diff --git a/module/admin/model.php b/module/admin/model.php index 4a5a793ce4..e66ba3e7f6 100644 --- a/module/admin/model.php +++ b/module/admin/model.php @@ -2,8 +2,8 @@ /** * The model file of admin module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package admin * @version $Id: model.php 5148 2013-07-16 01:31:08Z chencongzhi520@gmail.com $ diff --git a/module/admin/view/bind.html.php b/module/admin/view/bind.html.php index 91953432f1..8f94fc17ac 100644 --- a/module/admin/view/bind.html.php +++ b/module/admin/view/bind.html.php @@ -2,8 +2,8 @@ /** * The view file of bug module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package admin * @version $Id: view.html.php 2568 2012-02-09 06:56:35Z shiyangyangwork@yahoo.cn $ diff --git a/module/admin/view/index.html.php b/module/admin/view/index.html.php index de329cdbc8..49b794c2c6 100644 --- a/module/admin/view/index.html.php +++ b/module/admin/view/index.html.php @@ -2,8 +2,8 @@ /** * The view file of bug module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package admin * @version $Id: view.html.php 2568 2012-02-09 06:56:35Z shiyangyangwork@yahoo.cn $ diff --git a/module/admin/view/register.html.php b/module/admin/view/register.html.php index 20cc3dc947..0dec9d916a 100644 --- a/module/admin/view/register.html.php +++ b/module/admin/view/register.html.php @@ -2,8 +2,8 @@ /** * The view file of bug module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package admin * @version $Id: view.html.php 2568 2012-02-09 06:56:35Z shiyangyangwork@yahoo.cn $ diff --git a/module/api/control.php b/module/api/control.php index c5e73773da..6daa0c33cc 100644 --- a/module/api/control.php +++ b/module/api/control.php @@ -2,8 +2,8 @@ /** * The control file of api of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package api * @version $Id: control.php 5143 2013-07-15 06:11:59Z zhujinyonging@gmail.com $ diff --git a/module/api/lang/en.php b/module/api/lang/en.php index ee08f8936b..eab5d489d2 100644 --- a/module/api/lang/en.php +++ b/module/api/lang/en.php @@ -2,8 +2,8 @@ /** * The api module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package api * @version $Id: English.php 824 2010-05-02 15:32:06Z wwccss $ diff --git a/module/api/lang/zh-cn.php b/module/api/lang/zh-cn.php index 54c2381342..83b2a13514 100644 --- a/module/api/lang/zh-cn.php +++ b/module/api/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The api module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package api * @version $Id: zh-cn.php 5129 2013-07-15 00:16:07Z zhujinyonging@gmail.com $ diff --git a/module/api/lang/zh-tw.php b/module/api/lang/zh-tw.php index 1a983c04ee..36ce2bf5ae 100644 --- a/module/api/lang/zh-tw.php +++ b/module/api/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The api module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package api * @version $Id: zh-tw.php 5129 2013-07-15 00:16:07Z zhujinyonging@gmail.com $ diff --git a/module/api/model.php b/module/api/model.php index 537bf05944..ab0a0f7cfd 100644 --- a/module/api/model.php +++ b/module/api/model.php @@ -2,8 +2,8 @@ /** * The model file of api module of ZenTaoCMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package api * @version $Id$ diff --git a/module/backup/control.php b/module/backup/control.php index 96dd23b546..1de19dc8f5 100644 --- a/module/backup/control.php +++ b/module/backup/control.php @@ -2,8 +2,8 @@ /** * The control file of backup of ZenTaoPMS. * - * @copyright Copyright 2009-2014 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yidong Wang * @package backup * @version $Id$ diff --git a/module/backup/model.php b/module/backup/model.php index a3a15881e7..fca9d3bdfa 100644 --- a/module/backup/model.php +++ b/module/backup/model.php @@ -2,8 +2,8 @@ /** * The model file of backup module of ZenTaoCMS. * - * @copyright Copyright 2009-2014 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yidong Wang * @package backup * @version $Id$ diff --git a/module/backup/view/index.html.php b/module/backup/view/index.html.php index 952581f3fd..76fadcded1 100644 --- a/module/backup/view/index.html.php +++ b/module/backup/view/index.html.php @@ -2,8 +2,8 @@ /** * The view file of backup module of ZenTaoPMS. * - * @copyright Copyright 2009-2014 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yidong Wang * @package backup * @version $Id: view.html.php 2568 2012-02-09 06:56:35Z shiyangyangwork@yahoo.cn $ diff --git a/module/bug/control.php b/module/bug/control.php index 96e07fdf41..161e103771 100644 --- a/module/bug/control.php +++ b/module/bug/control.php @@ -2,8 +2,8 @@ /** * The control file of bug currentModule of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package bug * @version $Id: control.php 5107 2013-07-12 01:46:12Z chencongzhi520@gmail.com $ diff --git a/module/bug/lang/en.php b/module/bug/lang/en.php index 78dc6f5ac7..24d948fd2e 100644 --- a/module/bug/lang/en.php +++ b/module/bug/lang/en.php @@ -2,8 +2,8 @@ /** * The bug module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package bug * @version $Id: en.php 4536 2013-03-02 13:39:37Z wwccss $ diff --git a/module/bug/lang/zh-cn.php b/module/bug/lang/zh-cn.php index f84aaa784f..668af63f0f 100644 --- a/module/bug/lang/zh-cn.php +++ b/module/bug/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The bug module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package bug * @version $Id: zh-cn.php 4536 2013-03-02 13:39:37Z wwccss $ diff --git a/module/bug/lang/zh-tw.php b/module/bug/lang/zh-tw.php index f6b1a0cb41..121ed23f21 100644 --- a/module/bug/lang/zh-tw.php +++ b/module/bug/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The bug module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package bug * @version $Id: zh-tw.php 4536 2013-03-02 13:39:37Z wwccss $ diff --git a/module/bug/model.php b/module/bug/model.php index d5cbe3e878..1b5a24ca1b 100644 --- a/module/bug/model.php +++ b/module/bug/model.php @@ -2,8 +2,8 @@ /** * The model file of bug module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package bug * @version $Id: model.php 5079 2013-07-10 00:44:34Z chencongzhi520@gmail.com $ diff --git a/module/bug/view/activate.html.php b/module/bug/view/activate.html.php index e5a61b6856..223a82dcf5 100644 --- a/module/bug/view/activate.html.php +++ b/module/bug/view/activate.html.php @@ -2,8 +2,8 @@ /** * The activate file of bug module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package bug * @version $Id: activate.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/bug/view/assignto.html.php b/module/bug/view/assignto.html.php index bd3e559fb1..7b6bfa89d4 100644 --- a/module/bug/view/assignto.html.php +++ b/module/bug/view/assignto.html.php @@ -2,8 +2,8 @@ /** * The complete file of task module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Jia Fu * @package task * @version $Id: complete.html.php 935 2010-07-06 07:49:24Z jajacn@126.com $ diff --git a/module/bug/view/batchcreate.html.php b/module/bug/view/batchcreate.html.php index bc81a58909..073ae712da 100644 --- a/module/bug/view/batchcreate.html.php +++ b/module/bug/view/batchcreate.html.php @@ -2,8 +2,8 @@ /** * The batch create view of story module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yangyang Shi * @package story * @version $Id$ diff --git a/module/bug/view/batchedit.html.php b/module/bug/view/batchedit.html.php index 0305c51f10..ff05fc2679 100644 --- a/module/bug/view/batchedit.html.php +++ b/module/bug/view/batchedit.html.php @@ -2,8 +2,8 @@ /** * The batch edit view of bug module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package bug * @version $Id$ diff --git a/module/bug/view/browse.html.php b/module/bug/view/browse.html.php index 81c759e5c2..390156dd14 100644 --- a/module/bug/view/browse.html.php +++ b/module/bug/view/browse.html.php @@ -2,8 +2,8 @@ /** * The browse view file of bug module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package bug * @version $Id: browse.html.php 5102 2013-07-12 00:59:54Z chencongzhi520@gmail.com $ diff --git a/module/bug/view/close.html.php b/module/bug/view/close.html.php index 5a94f73e6e..8557b8e6df 100644 --- a/module/bug/view/close.html.php +++ b/module/bug/view/close.html.php @@ -2,8 +2,8 @@ /** * The close file of bug module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package bug * @version $Id: close.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/bug/view/confirmbug.html.php b/module/bug/view/confirmbug.html.php index 91a0dee309..1e6d5bca9c 100755 --- a/module/bug/view/confirmbug.html.php +++ b/module/bug/view/confirmbug.html.php @@ -2,8 +2,8 @@ /** * The confirm file of bug module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package bug * @version $Id: resolve.html.php 1914 2011-06-24 10:11:25Z yidong@cnezsoft.com $ diff --git a/module/bug/view/create.html.php b/module/bug/view/create.html.php index 90ba471db5..c4fa1c0279 100644 --- a/module/bug/view/create.html.php +++ b/module/bug/view/create.html.php @@ -2,8 +2,8 @@ /** * The create view of bug module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package bug * @version $Id: create.html.php 4903 2013-06-26 05:32:59Z wyd621@gmail.com $ diff --git a/module/bug/view/edit.html.php b/module/bug/view/edit.html.php index 74dc7f598b..d8ff46c3db 100644 --- a/module/bug/view/edit.html.php +++ b/module/bug/view/edit.html.php @@ -2,8 +2,8 @@ /** * The edit file of bug module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package bug * @version $Id: edit.html.php 4259 2013-01-24 05:49:40Z wyd621@gmail.com $ diff --git a/module/bug/view/export.html.php b/module/bug/view/export.html.php index 03c77b8da6..4cbbdf9447 100755 --- a/module/bug/view/export.html.php +++ b/module/bug/view/export.html.php @@ -2,8 +2,8 @@ /** * The export view file of bug module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package task * @version $Id$ diff --git a/module/bug/view/m.browse.html.php b/module/bug/view/m.browse.html.php index 05964b5210..b8469bbf06 100755 --- a/module/bug/view/m.browse.html.php +++ b/module/bug/view/m.browse.html.php @@ -2,8 +2,8 @@ /** * The browse view file of bug module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package bug * @version $Id: browse.html.php 4660 2013-04-17 08:22:02Z chencongzhi520@gmail.com $ diff --git a/module/bug/view/report.html.php b/module/bug/view/report.html.php index c69152c884..a9e71356a2 100644 --- a/module/bug/view/report.html.php +++ b/module/bug/view/report.html.php @@ -2,8 +2,8 @@ /** * The report view file of bug module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package bug * @version $Id: report.html.php 4657 2013-04-17 02:01:26Z chencongzhi520@gmail.com $ diff --git a/module/bug/view/resolve.html.php b/module/bug/view/resolve.html.php index afed3b1c6c..31408dceaa 100644 --- a/module/bug/view/resolve.html.php +++ b/module/bug/view/resolve.html.php @@ -2,8 +2,8 @@ /** * The resolve file of bug module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package bug * @version $Id: resolve.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/bug/view/sendmail.html.php b/module/bug/view/sendmail.html.php index 003295c46f..21936175af 100644 --- a/module/bug/view/sendmail.html.php +++ b/module/bug/view/sendmail.html.php @@ -2,8 +2,8 @@ /** * The mail file of bug module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package bug * @version $Id: sendmail.html.php 4626 2013-04-10 05:34:36Z chencongzhi520@gmail.com $ diff --git a/module/bug/view/view.html.php b/module/bug/view/view.html.php index 7fe325eaf6..ad701c741c 100644 --- a/module/bug/view/view.html.php +++ b/module/bug/view/view.html.php @@ -2,8 +2,8 @@ /** * The view file of bug module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package bug * @version $Id: view.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/build/control.php b/module/build/control.php index d76b9cdb06..be939bc5e7 100644 --- a/module/build/control.php +++ b/module/build/control.php @@ -2,8 +2,8 @@ /** * The control file of build module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package build * @version $Id: control.php 4992 2013-07-03 07:21:59Z chencongzhi520@gmail.com $ diff --git a/module/build/lang/en.php b/module/build/lang/en.php index 23deced85e..d6f5074f54 100644 --- a/module/build/lang/en.php +++ b/module/build/lang/en.php @@ -2,8 +2,8 @@ /** * The build module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package build * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/build/lang/zh-cn.php b/module/build/lang/zh-cn.php index 033704ba3c..1637c5f3e5 100644 --- a/module/build/lang/zh-cn.php +++ b/module/build/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The build module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package build * @version $Id: zh-cn.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/build/lang/zh-tw.php b/module/build/lang/zh-tw.php index ab84af61ef..e44f5280f5 100644 --- a/module/build/lang/zh-tw.php +++ b/module/build/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The build module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package build * @version $Id: zh-tw.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/build/model.php b/module/build/model.php index 7cc98fffb1..8be0c2367f 100644 --- a/module/build/model.php +++ b/module/build/model.php @@ -2,8 +2,8 @@ /** * The model file of build module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package build * @version $Id: model.php 4970 2013-07-02 05:58:11Z wyd621@gmail.com $ diff --git a/module/build/view/create.html.php b/module/build/view/create.html.php index 4f23bb974d..af3a5d6b6e 100644 --- a/module/build/view/create.html.php +++ b/module/build/view/create.html.php @@ -2,8 +2,8 @@ /** * The create view of build module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package build * @version $Id: create.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/build/view/edit.html.php b/module/build/view/edit.html.php index d85fe82b11..2459fb2816 100644 --- a/module/build/view/edit.html.php +++ b/module/build/view/edit.html.php @@ -2,8 +2,8 @@ /** * The edit view of build module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package build * @version $Id: edit.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/build/view/linkbug.html.php b/module/build/view/linkbug.html.php index e32ea8a380..982894a37b 100644 --- a/module/build/view/linkbug.html.php +++ b/module/build/view/linkbug.html.php @@ -2,8 +2,8 @@ /** * The link bug view of build module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yidong Wang * @package build * @version $Id: linkbug.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/build/view/linkstory.html.php b/module/build/view/linkstory.html.php index 22cadbd7da..602016ff1e 100644 --- a/module/build/view/linkstory.html.php +++ b/module/build/view/linkstory.html.php @@ -2,8 +2,8 @@ /** * The link story view of build module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yidong Wang * @package build * @version $Id: linkstory.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/build/view/view.html.php b/module/build/view/view.html.php index 354b146bd8..e46dfbfe82 100644 --- a/module/build/view/view.html.php +++ b/module/build/view/view.html.php @@ -2,8 +2,8 @@ /** * The view file of build module's view method of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package build * @version $Id: view.html.php 4386 2013-02-19 07:37:45Z chencongzhi520@gmail.com $ diff --git a/module/common/control.php b/module/common/control.php index 95545adc30..24b5884b04 100644 --- a/module/common/control.php +++ b/module/common/control.php @@ -2,8 +2,8 @@ /** * The control file of common module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package common * @version $Id: control.php 5036 2013-07-06 05:26:44Z wyd621@gmail.com $ diff --git a/module/common/lang/en.php b/module/common/lang/en.php index d78cd935a5..0b1c0dbe47 100644 --- a/module/common/lang/en.php +++ b/module/common/lang/en.php @@ -2,8 +2,8 @@ /** * The common simplified chinese file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: en.php 5116 2013-07-12 06:37:48Z chencongzhi520@gmail.com $ diff --git a/module/common/lang/zh-cn.php b/module/common/lang/zh-cn.php index dda2df0c07..960b992861 100644 --- a/module/common/lang/zh-cn.php +++ b/module/common/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The common simplified chinese file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: zh-cn.php 5116 2013-07-12 06:37:48Z chencongzhi520@gmail.com $ diff --git a/module/common/lang/zh-tw.php b/module/common/lang/zh-tw.php index 96871f185c..f748b27feb 100644 --- a/module/common/lang/zh-tw.php +++ b/module/common/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The common simplified chinese file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: zh-tw.php 5116 2013-07-12 06:37:48Z chencongzhi520@gmail.com $ diff --git a/module/common/model.php b/module/common/model.php index 8b1c96a6d5..ba29907ca5 100644 --- a/module/common/model.php +++ b/module/common/model.php @@ -2,8 +2,8 @@ /** * The model file of common module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package common * @version $Id$ diff --git a/module/company/control.php b/module/company/control.php index 25190196e4..425bcce7c9 100644 --- a/module/company/control.php +++ b/module/company/control.php @@ -2,8 +2,8 @@ /** * The control file of company module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package company * @version $Id: control.php 5100 2013-07-12 00:25:23Z zhujinyonging@gmail.com $ diff --git a/module/company/lang/en.php b/module/company/lang/en.php index db6a7d39f7..4b30650cbc 100644 --- a/module/company/lang/en.php +++ b/module/company/lang/en.php @@ -2,8 +2,8 @@ /** * The company module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package company * @version $Id: en.php 4714 2013-05-02 08:10:58Z chencongzhi520@gmail.com $ diff --git a/module/company/lang/zh-cn.php b/module/company/lang/zh-cn.php index 9fe244f62e..476eabfea9 100644 --- a/module/company/lang/zh-cn.php +++ b/module/company/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The company module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package company * @version $Id: zh-cn.php 4714 2013-05-02 08:10:58Z chencongzhi520@gmail.com $ diff --git a/module/company/lang/zh-tw.php b/module/company/lang/zh-tw.php index 6d28363c48..d815ae5e34 100644 --- a/module/company/lang/zh-tw.php +++ b/module/company/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The company module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package company * @version $Id: zh-tw.php 4714 2013-05-02 08:10:58Z chencongzhi520@gmail.com $ diff --git a/module/company/model.php b/module/company/model.php index d5b33a8b31..25c10b3ff0 100644 --- a/module/company/model.php +++ b/module/company/model.php @@ -2,8 +2,8 @@ /** * The model file of company module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package company * @version $Id: model.php 5086 2013-07-10 02:25:22Z wyd621@gmail.com $ diff --git a/module/company/view/browse.html.php b/module/company/view/browse.html.php index a5b5d0dc28..674c6ced2b 100644 --- a/module/company/view/browse.html.php +++ b/module/company/view/browse.html.php @@ -2,8 +2,8 @@ /** * The browse view file of product dept of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package product * @version $Id: browse.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/company/view/dynamic.html.php b/module/company/view/dynamic.html.php index 8eb222c65a..00a9726422 100644 --- a/module/company/view/dynamic.html.php +++ b/module/company/view/dynamic.html.php @@ -2,8 +2,8 @@ /** * The action->dynamic view file of dashboard module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dashboard * @version $Id: action->dynamic.html.php 1477 2011-03-01 15:25:50Z wwccss $ diff --git a/module/company/view/edit.html.php b/module/company/view/edit.html.php index 30678c1dd4..6eeada657a 100644 --- a/module/company/view/edit.html.php +++ b/module/company/view/edit.html.php @@ -2,8 +2,8 @@ /** * The edit view of company module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package company * @version $Id: edit.html.php 4713 2013-05-02 08:04:38Z chencongzhi520@gmail.com $ diff --git a/module/company/view/view.html.php b/module/company/view/view.html.php index 0bdb7bcf65..e27ad63f25 100644 --- a/module/company/view/view.html.php +++ b/module/company/view/view.html.php @@ -2,8 +2,8 @@ /** * The view view of company module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package company * @version $Id: edit.html.php 4488 2013-02-27 02:54:49Z chencongzhi520@gmail.com $ diff --git a/module/convert/control.php b/module/convert/control.php index 96693a50b6..31229ff8f5 100644 --- a/module/convert/control.php +++ b/module/convert/control.php @@ -2,8 +2,8 @@ /** * The control file of convert currentModule of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package convert * @version $Id: control.php 4976 2013-07-02 08:15:31Z wyd621@gmail.com $ diff --git a/module/convert/converter/bugfree.php b/module/convert/converter/bugfree.php index 7f25c194cf..7b5a075598 100644 --- a/module/convert/converter/bugfree.php +++ b/module/convert/converter/bugfree.php @@ -2,8 +2,8 @@ /** * The baisc model file of bugfree convert of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package convert * @version $Id: bugfree.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/converter/bugfree1.php b/module/convert/converter/bugfree1.php index 0ec83a8e12..eab89130d6 100644 --- a/module/convert/converter/bugfree1.php +++ b/module/convert/converter/bugfree1.php @@ -2,8 +2,8 @@ /** * The model file of bugfree version 1 convert of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package convert * @version $Id: bugfree1.php 5028 2013-07-06 02:59:41Z wyd621@gmail.com $ diff --git a/module/convert/converter/bugfree2.php b/module/convert/converter/bugfree2.php index b467a3931b..45088a41e7 100644 --- a/module/convert/converter/bugfree2.php +++ b/module/convert/converter/bugfree2.php @@ -2,8 +2,8 @@ /** * The model file of bugfree2 convert of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package convert * @version $Id: bugfree2.php 5028 2013-07-06 02:59:41Z wyd621@gmail.com $ diff --git a/module/convert/converter/redmine.php b/module/convert/converter/redmine.php index caa4537cbd..003d1eb2bd 100644 --- a/module/convert/converter/redmine.php +++ b/module/convert/converter/redmine.php @@ -2,8 +2,8 @@ /** * The baisc model file of bugfree convert of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yangyang Shi * @package convert * @version $Id $ diff --git a/module/convert/converter/redmine1.1.php b/module/convert/converter/redmine1.1.php index 98c152c862..bd0ddd2f55 100644 --- a/module/convert/converter/redmine1.1.php +++ b/module/convert/converter/redmine1.1.php @@ -2,8 +2,8 @@ /** * The model file of redmine convert of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yangyang Shi * @package convert * @version $Id $ diff --git a/module/convert/lang/en.php b/module/convert/lang/en.php index 2b3a7b5eb5..127b38454b 100644 --- a/module/convert/lang/en.php +++ b/module/convert/lang/en.php @@ -2,8 +2,8 @@ /** * The convert module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package convert * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/lang/zh-cn.php b/module/convert/lang/zh-cn.php index f1a633cda5..e7356c064d 100644 --- a/module/convert/lang/zh-cn.php +++ b/module/convert/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The convert module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package convert * @version $Id: zh-cn.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/lang/zh-tw.php b/module/convert/lang/zh-tw.php index 9cb0999079..b9cafb2a9a 100644 --- a/module/convert/lang/zh-tw.php +++ b/module/convert/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The convert module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package convert * @version $Id: zh-tw.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/model.php b/module/convert/model.php index 9412f4fc3e..eb22bf1016 100644 --- a/module/convert/model.php +++ b/module/convert/model.php @@ -2,8 +2,8 @@ /** * The model file of convert module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package convert * @version $Id: model.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/view/checkconfig.html.php b/module/convert/view/checkconfig.html.php index 6313aaf1ac..b3c6bcab46 100644 --- a/module/convert/view/checkconfig.html.php +++ b/module/convert/view/checkconfig.html.php @@ -2,8 +2,8 @@ /** * The html template file of check config method of convert module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package convert * @version $Id: checkconfig.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/view/execute.html.php b/module/convert/view/execute.html.php index 9f52676a37..d3b068e45d 100644 --- a/module/convert/view/execute.html.php +++ b/module/convert/view/execute.html.php @@ -2,8 +2,8 @@ /** * The html template file of execute method of convert module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package convert * @version $Id: execute.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/view/index.html.php b/module/convert/view/index.html.php index 3150b49deb..9ad0810cc4 100644 --- a/module/convert/view/index.html.php +++ b/module/convert/view/index.html.php @@ -2,8 +2,8 @@ /** * The html template file of index method of convert module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: index.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/view/selectsource.html.php b/module/convert/view/selectsource.html.php index f040bf250e..05fda06386 100644 --- a/module/convert/view/selectsource.html.php +++ b/module/convert/view/selectsource.html.php @@ -2,8 +2,8 @@ /** * The html template file of select source method of convert module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package convert * @version $Id: selectsource.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/view/setconfig.html.php b/module/convert/view/setconfig.html.php index 1ad6728808..a2b480dc4b 100644 --- a/module/convert/view/setconfig.html.php +++ b/module/convert/view/setconfig.html.php @@ -2,8 +2,8 @@ /** * The html template file of setconfig method of convert module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package convert * @version $Id: setconfig.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/custom/control.php b/module/custom/control.php index 351760421b..cf58b5df71 100644 --- a/module/custom/control.php +++ b/module/custom/control.php @@ -2,8 +2,8 @@ /** * The control file of custom 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) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package custom * @version $Id$ diff --git a/module/custom/model.php b/module/custom/model.php index 719b3c1580..109843f9a6 100644 --- a/module/custom/model.php +++ b/module/custom/model.php @@ -2,8 +2,8 @@ /** * The model file of custom module of ZenTaoCMS. * - * @copyright Copyright 2009-2010 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package custom * @version $Id$ diff --git a/module/custom/view/set.html.php b/module/custom/view/set.html.php index b20c97d25f..349fa9b011 100644 --- a/module/custom/view/set.html.php +++ b/module/custom/view/set.html.php @@ -2,8 +2,8 @@ /** * The set view file of custom 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) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package custom * @version $Id$ diff --git a/module/dept/control.php b/module/dept/control.php index b5de6a8af8..4550392927 100644 --- a/module/dept/control.php +++ b/module/dept/control.php @@ -2,8 +2,8 @@ /** * The control file of dept module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dept * @version $Id: control.php 4157 2013-01-20 07:09:42Z wwccss $ diff --git a/module/dept/lang/en.php b/module/dept/lang/en.php index 74ef2ba10d..47c3ef0504 100644 --- a/module/dept/lang/en.php +++ b/module/dept/lang/en.php @@ -2,8 +2,8 @@ /** * The dept module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dept * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/dept/lang/zh-cn.php b/module/dept/lang/zh-cn.php index 60566584e4..ca279a03f9 100644 --- a/module/dept/lang/zh-cn.php +++ b/module/dept/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The dept module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dept * @version $Id: zh-cn.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/dept/lang/zh-tw.php b/module/dept/lang/zh-tw.php index 0f7ce3207e..71a8b78a4d 100644 --- a/module/dept/lang/zh-tw.php +++ b/module/dept/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The dept module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dept * @version $Id: zh-tw.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/dept/model.php b/module/dept/model.php index a776de2400..2e60e448b9 100644 --- a/module/dept/model.php +++ b/module/dept/model.php @@ -2,8 +2,8 @@ /** * The model file of dept module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dept * @version $Id: model.php 4210 2013-01-22 01:06:12Z zhujinyonging@gmail.com $ diff --git a/module/dept/view/browse.html.php b/module/dept/view/browse.html.php index 6f0bc7448c..9b95d9c59d 100644 --- a/module/dept/view/browse.html.php +++ b/module/dept/view/browse.html.php @@ -2,8 +2,8 @@ /** * The browse view file of dept module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dept * @version $Id: browse.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/dept/view/edit.html.php b/module/dept/view/edit.html.php index 393e0045f6..e75ae39abe 100644 --- a/module/dept/view/edit.html.php +++ b/module/dept/view/edit.html.php @@ -2,8 +2,8 @@ /** * The edit view of dept module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yidong Wang * @package dept * @version $Id: edit.html.php 4795 2013-06-04 05:59:58Z zhujinyonging@gmail.com $ diff --git a/module/doc/control.php b/module/doc/control.php index 0858973f5a..84cf6842d0 100644 --- a/module/doc/control.php +++ b/module/doc/control.php @@ -2,8 +2,8 @@ /** * The control file of doc module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package doc * @version $Id: control.php 933 2010-07-06 06:53:40Z wwccss $ diff --git a/module/doc/lang/en.php b/module/doc/lang/en.php index a5953c327f..940c744397 100644 --- a/module/doc/lang/en.php +++ b/module/doc/lang/en.php @@ -2,8 +2,8 @@ /** * The doc module english file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package doc * @version $Id: en.php 824 2010-05-02 15:32:06Z wwccss $ diff --git a/module/doc/lang/zh-cn.php b/module/doc/lang/zh-cn.php index e259f678e5..051ba62e59 100644 --- a/module/doc/lang/zh-cn.php +++ b/module/doc/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The doc module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package doc * @version $Id: zh-cn.php 824 2010-05-02 15:32:06Z wwccss $ diff --git a/module/doc/lang/zh-tw.php b/module/doc/lang/zh-tw.php index 03e04cf4a1..9b34f65789 100644 --- a/module/doc/lang/zh-tw.php +++ b/module/doc/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The doc module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package doc * @version $Id: zh-tw.php 824 2010-05-02 15:32:06Z wwccss $ diff --git a/module/doc/model.php b/module/doc/model.php index 846f25b850..3f548986c5 100644 --- a/module/doc/model.php +++ b/module/doc/model.php @@ -2,8 +2,8 @@ /** * The model file of doc module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package doc * @version $Id: model.php 881 2010-06-22 06:50:32Z chencongzhi520 $ diff --git a/module/doc/view/browse.html.php b/module/doc/view/browse.html.php index a4b120ca19..8f2a9f9654 100644 --- a/module/doc/view/browse.html.php +++ b/module/doc/view/browse.html.php @@ -2,8 +2,8 @@ /** * The browse view file of doc module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package lib * @version $Id: browse.html.php 958 2010-07-22 08:09:42Z wwccss $ diff --git a/module/doc/view/create.html.php b/module/doc/view/create.html.php index 9f505c2290..014139a46d 100644 --- a/module/doc/view/create.html.php +++ b/module/doc/view/create.html.php @@ -2,8 +2,8 @@ /** * The create view of doc module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Jia Fu * @package doc * @version $Id: create.html.php 975 2010-07-29 03:30:25Z jajacn@126.com $ diff --git a/module/doc/view/createlib.html.php b/module/doc/view/createlib.html.php index 9c95971fab..21615efe2e 100644 --- a/module/doc/view/createlib.html.php +++ b/module/doc/view/createlib.html.php @@ -2,8 +2,8 @@ /** * The createlib view of doc module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Jia Fu * @package doc * @version $Id: createlib.html.php 975 2010-07-29 03:30:25Z jajacn@126.com $ diff --git a/module/doc/view/edit.html.php b/module/doc/view/edit.html.php index 3e18678e18..615dd9f1a7 100644 --- a/module/doc/view/edit.html.php +++ b/module/doc/view/edit.html.php @@ -2,8 +2,8 @@ /** * The edit view of doc module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Jia Fu * @package doc * @version $Id: edit.html.php 975 2010-07-29 03:30:25Z jajacn@126.com $ diff --git a/module/doc/view/editlib.html.php b/module/doc/view/editlib.html.php index 32764c056e..14647c0158 100644 --- a/module/doc/view/editlib.html.php +++ b/module/doc/view/editlib.html.php @@ -2,8 +2,8 @@ /** * The editlib file of doc module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Jia Fu * @package doc * @version $Id: editlib.html.php 975 2010-07-29 03:30:25Z jajacn@126.com $ diff --git a/module/doc/view/view.html.php b/module/doc/view/view.html.php index a3deb486f6..46e906a29f 100644 --- a/module/doc/view/view.html.php +++ b/module/doc/view/view.html.php @@ -2,8 +2,8 @@ /** * The view of doc module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Jia Fu * @package doc * @version $Id: view.html.php 975 2010-07-29 03:30:25Z jajacn@126.com $ diff --git a/module/editor/control.php b/module/editor/control.php index 9849daba62..92108466f8 100644 --- a/module/editor/control.php +++ b/module/editor/control.php @@ -2,8 +2,8 @@ /** * The control file of editor of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yidong Wang * @package editor * @version $Id$ diff --git a/module/editor/model.php b/module/editor/model.php index 67930efddc..281101070b 100644 --- a/module/editor/model.php +++ b/module/editor/model.php @@ -2,8 +2,8 @@ /** * The model file of editor module of ZenTaoCMS. * - * @copyright Copyright 2009-2013 ÇൺÒ×ÈíÌ촴ÍøÂç¿Ƽ¼ÓÐÏ޹«˾ (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yidong Wang * @package editor * @version $Id$ diff --git a/module/editor/view/edit.html.php b/module/editor/view/edit.html.php index 82485f945c..3ec05d792c 100644 --- a/module/editor/view/edit.html.php +++ b/module/editor/view/edit.html.php @@ -2,8 +2,8 @@ /** * The editor view file of dir module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yidong Wang * @package editor * @version $Id$ diff --git a/module/editor/view/extend.html.php b/module/editor/view/extend.html.php index 777ed00f42..57e0acab2b 100644 --- a/module/editor/view/extend.html.php +++ b/module/editor/view/extend.html.php @@ -2,8 +2,8 @@ /** * The editor view file of dir module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yidong Wang * @package editor * @version $Id$ diff --git a/module/editor/view/index.html.php b/module/editor/view/index.html.php index 05f9d538e4..464a1a1c43 100644 --- a/module/editor/view/index.html.php +++ b/module/editor/view/index.html.php @@ -2,8 +2,8 @@ /** * The editor view file of dir module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yidong Wang * @package editor * @version $Id$ diff --git a/module/editor/view/newpage.html.php b/module/editor/view/newpage.html.php index d47a6253da..4a5b15e73b 100644 --- a/module/editor/view/newpage.html.php +++ b/module/editor/view/newpage.html.php @@ -2,8 +2,8 @@ /** * The editor view file of dir module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 ÇൺÒ×ÈíÌ촴ÍøÂç¿Ƽ¼ÓÐÏ޹«˾ (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yidong Wang * @package editor * @version $Id$ diff --git a/module/extension/control.php b/module/extension/control.php index 94b3b14063..1ab2345c80 100644 --- a/module/extension/control.php +++ b/module/extension/control.php @@ -2,8 +2,8 @@ /** * The control file of extension module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/lang/en.php b/module/extension/lang/en.php index 818c655782..dd5d184172 100644 --- a/module/extension/lang/en.php +++ b/module/extension/lang/en.php @@ -2,8 +2,8 @@ /** * The extension module en file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/lang/zh-cn.php b/module/extension/lang/zh-cn.php index 4501f8a581..f67003dea8 100644 --- a/module/extension/lang/zh-cn.php +++ b/module/extension/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The extension module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/lang/zh-tw.php b/module/extension/lang/zh-tw.php index e81de81f40..ee790424c8 100644 --- a/module/extension/lang/zh-tw.php +++ b/module/extension/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The extension module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/model.php b/module/extension/model.php index 9771174cb7..2457fa507f 100644 --- a/module/extension/model.php +++ b/module/extension/model.php @@ -2,8 +2,8 @@ /** * The model file of extension module of ZenTaoCMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/activate.html.php b/module/extension/view/activate.html.php index 6f66850b5d..5ae9ff85bc 100644 --- a/module/extension/view/activate.html.php +++ b/module/extension/view/activate.html.php @@ -2,8 +2,8 @@ /** * The deactivate view file of extension module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/browse.html.php b/module/extension/view/browse.html.php index 80c9a469f8..eb129bfcbb 100644 --- a/module/extension/view/browse.html.php +++ b/module/extension/view/browse.html.php @@ -2,8 +2,8 @@ /** * The browse view file of extension module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/checkscore.html.php b/module/extension/view/checkscore.html.php index 9e4101cca9..5f9059b2de 100644 --- a/module/extension/view/checkscore.html.php +++ b/module/extension/view/checkscore.html.php @@ -2,8 +2,8 @@ /** * The install view file of extension module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/deactivate.html.php b/module/extension/view/deactivate.html.php index 2d4a681ce6..f96b005098 100644 --- a/module/extension/view/deactivate.html.php +++ b/module/extension/view/deactivate.html.php @@ -2,8 +2,8 @@ /** * The deactivate view file of extension module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/erase.html.php b/module/extension/view/erase.html.php index bf2cae271f..ddaf7c4997 100644 --- a/module/extension/view/erase.html.php +++ b/module/extension/view/erase.html.php @@ -2,8 +2,8 @@ /** * The erase view file of extension module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/install.html.php b/module/extension/view/install.html.php index 00c92d3661..a954991a8e 100644 --- a/module/extension/view/install.html.php +++ b/module/extension/view/install.html.php @@ -2,8 +2,8 @@ /** * The install view file of extension module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/obtain.html.php b/module/extension/view/obtain.html.php index 01351257e2..fc337bd7ef 100644 --- a/module/extension/view/obtain.html.php +++ b/module/extension/view/obtain.html.php @@ -2,8 +2,8 @@ /** * The obtain view file of extension module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/structure.html.php b/module/extension/view/structure.html.php index 4d2af2e7c2..c73367a435 100644 --- a/module/extension/view/structure.html.php +++ b/module/extension/view/structure.html.php @@ -2,8 +2,8 @@ /** * The structure view file of extension module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yangyang Shi * @package extension * @version $Id$ diff --git a/module/extension/view/uninstall.html.php b/module/extension/view/uninstall.html.php index 5a54d3b0cf..f7fd186b76 100644 --- a/module/extension/view/uninstall.html.php +++ b/module/extension/view/uninstall.html.php @@ -2,8 +2,8 @@ /** * The uninstall view file of extension module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/upload.html.php b/module/extension/view/upload.html.php index cfaa465368..d41b49f7f1 100644 --- a/module/extension/view/upload.html.php +++ b/module/extension/view/upload.html.php @@ -2,8 +2,8 @@ /** * The upload view file of extension module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/waring.htm.php b/module/extension/view/waring.htm.php index 30eed2b406..df2f5e843b 100644 --- a/module/extension/view/waring.htm.php +++ b/module/extension/view/waring.htm.php @@ -2,8 +2,8 @@ /** * The install view file of extension module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/file/control.php b/module/file/control.php index c8fb502a3f..86ed7f9197 100644 --- a/module/file/control.php +++ b/module/file/control.php @@ -2,8 +2,8 @@ /** * The control file of file module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package file * @version $Id: control.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/file/lang/en.php b/module/file/lang/en.php index b562e0041e..1e8c2c477d 100644 --- a/module/file/lang/en.php +++ b/module/file/lang/en.php @@ -2,8 +2,8 @@ /** * The file module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package file * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/file/lang/zh-cn.php b/module/file/lang/zh-cn.php index ad962e4221..4de4e922ed 100644 --- a/module/file/lang/zh-cn.php +++ b/module/file/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The file module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package file * @version $Id: zh-cn.php 4630 2013-04-10 05:54:08Z chencongzhi520@gmail.com $ diff --git a/module/file/lang/zh-tw.php b/module/file/lang/zh-tw.php index 200e91fb03..fdb2e62c17 100644 --- a/module/file/lang/zh-tw.php +++ b/module/file/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The file module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package file * @version $Id: zh-tw.php 4630 2013-04-10 05:54:08Z chencongzhi520@gmail.com $ diff --git a/module/file/model.php b/module/file/model.php index e77d8e664a..215b64197c 100644 --- a/module/file/model.php +++ b/module/file/model.php @@ -2,8 +2,8 @@ /** * The model file of file module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package file * @version $Id: model.php 4976 2013-07-02 08:15:31Z wyd621@gmail.com $ diff --git a/module/file/view/edit.html.php b/module/file/view/edit.html.php index 5010578791..2fb14abdaa 100644 --- a/module/file/view/edit.html.php +++ b/module/file/view/edit.html.php @@ -2,8 +2,8 @@ /** * The export view file of file module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yangyang Shi * @package file * @version $Id$ diff --git a/module/file/view/export.html.php b/module/file/view/export.html.php index f1fc809706..06bb55c57a 100644 --- a/module/file/view/export.html.php +++ b/module/file/view/export.html.php @@ -2,8 +2,8 @@ /** * The export view file of file module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/file/view/export2csv.html.php b/module/file/view/export2csv.html.php index 2591de6ebd..d3dbd3fa37 100644 --- a/module/file/view/export2csv.html.php +++ b/module/file/view/export2csv.html.php @@ -2,8 +2,8 @@ /** * The export2csv view file of file module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/file/view/export2html.html.php b/module/file/view/export2html.html.php index 64d114d672..3e0079fc22 100644 --- a/module/file/view/export2html.html.php +++ b/module/file/view/export2html.html.php @@ -2,8 +2,8 @@ /** * The export2html view file of file module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/file/view/export2xml.html.php b/module/file/view/export2xml.html.php index 44077c15c8..654abb0047 100644 --- a/module/file/view/export2xml.html.php +++ b/module/file/view/export2xml.html.php @@ -2,8 +2,8 @@ /** * The export2xml view file of file module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/file/view/uploadimages.html.php b/module/file/view/uploadimages.html.php index 6058c37445..9c9885e026 100644 --- a/module/file/view/uploadimages.html.php +++ b/module/file/view/uploadimages.html.php @@ -2,8 +2,8 @@ /** * The uploadImages view file of file 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) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yidong Wang * @package file * @version $Id$ diff --git a/module/git/control.php b/module/git/control.php index 55ada5053f..58379db12f 100644 --- a/module/git/control.php +++ b/module/git/control.php @@ -2,8 +2,8 @@ /** * The control file of git currentModule of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package git * @version $Id$ diff --git a/module/git/lang/en.php b/module/git/lang/en.php index 49a91119ea..1145fb7eb3 100644 --- a/module/git/lang/en.php +++ b/module/git/lang/en.php @@ -2,8 +2,8 @@ /** * The git module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package git * @version $Id$ diff --git a/module/git/lang/zh-cn.php b/module/git/lang/zh-cn.php index 5575f0204e..851c72e63b 100644 --- a/module/git/lang/zh-cn.php +++ b/module/git/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The git module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package git * @version $Id$ diff --git a/module/git/lang/zh-tw.php b/module/git/lang/zh-tw.php index e6f7125948..3fabaabe12 100644 --- a/module/git/lang/zh-tw.php +++ b/module/git/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The git module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package git * @version $Id$ diff --git a/module/git/model.php b/module/git/model.php index 4e41b40c0d..8f81209e79 100644 --- a/module/git/model.php +++ b/module/git/model.php @@ -2,8 +2,8 @@ /** * The model file of git module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package git * @version $Id$ diff --git a/module/git/view/cat.html.php b/module/git/view/cat.html.php index 15406f134f..9cb9719676 100644 --- a/module/git/view/cat.html.php +++ b/module/git/view/cat.html.php @@ -2,8 +2,8 @@ /** * The cat view file of git module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/git/view/diff.html.php b/module/git/view/diff.html.php index 067c43e4de..f23548033b 100644 --- a/module/git/view/diff.html.php +++ b/module/git/view/diff.html.php @@ -2,8 +2,8 @@ /** * The diff view file of git module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/group/control.php b/module/group/control.php index d3a14f7193..fd38a53baa 100644 --- a/module/group/control.php +++ b/module/group/control.php @@ -2,8 +2,8 @@ /** * The control file of group module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package group * @version $Id: control.php 4648 2013-04-15 02:45:49Z chencongzhi520@gmail.com $ diff --git a/module/group/lang/en.php b/module/group/lang/en.php index c145e30cf8..ccb62755f9 100644 --- a/module/group/lang/en.php +++ b/module/group/lang/en.php @@ -2,8 +2,8 @@ /** * The group module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package group * @version $Id: en.php 4719 2013-05-03 02:20:28Z chencongzhi520@gmail.com $ diff --git a/module/group/lang/resource.php b/module/group/lang/resource.php index b54f1c8a2f..51368836a1 100644 --- a/module/group/lang/resource.php +++ b/module/group/lang/resource.php @@ -2,8 +2,8 @@ /** * The all avaliabe actions in ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package group * @version $Id$ diff --git a/module/group/lang/zh-cn.php b/module/group/lang/zh-cn.php index a4a6933050..c970aa457e 100644 --- a/module/group/lang/zh-cn.php +++ b/module/group/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The group module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package group * @version $Id: zh-cn.php 4719 2013-05-03 02:20:28Z chencongzhi520@gmail.com $ diff --git a/module/group/lang/zh-tw.php b/module/group/lang/zh-tw.php index 1de5433c6d..8e1d0f94c1 100644 --- a/module/group/lang/zh-tw.php +++ b/module/group/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The group module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package group * @version $Id: zh-tw.php 4719 2013-05-03 02:20:28Z chencongzhi520@gmail.com $ diff --git a/module/group/model.php b/module/group/model.php index 44891176a9..11dd9d63cc 100644 --- a/module/group/model.php +++ b/module/group/model.php @@ -2,8 +2,8 @@ /** * The model file of group module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package group * @version $Id: model.php 4976 2013-07-02 08:15:31Z wyd621@gmail.com $ diff --git a/module/group/view/browse.html.php b/module/group/view/browse.html.php index 66cdb3442a..1e4891d41b 100644 --- a/module/group/view/browse.html.php +++ b/module/group/view/browse.html.php @@ -2,8 +2,8 @@ /** * The browse view file of group module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package group * @version $Id: browse.html.php 4769 2013-05-05 07:24:21Z wwccss $ diff --git a/module/group/view/copy.html.php b/module/group/view/copy.html.php index 1e09cd7835..26c3027da2 100644 --- a/module/group/view/copy.html.php +++ b/module/group/view/copy.html.php @@ -2,8 +2,8 @@ /** * The copy view of group module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package group * @version $Id: copy.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/group/view/create.html.php b/module/group/view/create.html.php index a4a6863a67..9317d34094 100644 --- a/module/group/view/create.html.php +++ b/module/group/view/create.html.php @@ -2,8 +2,8 @@ /** * The create view of group module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package group * @version $Id: create.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/group/view/edit.html.php b/module/group/view/edit.html.php index 6027504f0f..58a8fbcd6b 100644 --- a/module/group/view/edit.html.php +++ b/module/group/view/edit.html.php @@ -2,8 +2,8 @@ /** * The edit view of group module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package group * @version $Id: edit.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/group/view/managemember.html.php b/module/group/view/managemember.html.php index e822158d46..b626ad3334 100644 --- a/module/group/view/managemember.html.php +++ b/module/group/view/managemember.html.php @@ -2,8 +2,8 @@ /** * The manage member view of group module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package group * @version $Id: managemember.html.php 4627 2013-04-10 05:42:20Z chencongzhi520@gmail.com $ diff --git a/module/group/view/managepriv.html.php b/module/group/view/managepriv.html.php index 8b8e69af1a..1d1932985d 100644 --- a/module/group/view/managepriv.html.php +++ b/module/group/view/managepriv.html.php @@ -2,8 +2,8 @@ /** * The manage privilege view of group module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package group * @version $Id: managepriv.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/group/view/privbygroup.html.php b/module/group/view/privbygroup.html.php index daf6aaf808..f7d6b633e8 100644 --- a/module/group/view/privbygroup.html.php +++ b/module/group/view/privbygroup.html.php @@ -2,8 +2,8 @@ /** * The manage privilege by group view of group module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package group * @version $Id: managepriv.html.php 1517 2011-03-07 10:02:57Z wwccss $ diff --git a/module/group/view/privbymodule.html.php b/module/group/view/privbymodule.html.php index 5f4bceb70d..00263a7a24 100644 --- a/module/group/view/privbymodule.html.php +++ b/module/group/view/privbymodule.html.php @@ -2,8 +2,8 @@ /** * The manage privilege by group view of group module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package group * @version $Id: managepriv.html.php 1517 2011-03-07 10:02:57Z wwccss $ diff --git a/module/index/control.php b/module/index/control.php index 379bfa15a3..0417040fb6 100644 --- a/module/index/control.php +++ b/module/index/control.php @@ -4,8 +4,8 @@ * * When requests the root of a website, this index module will be called. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: control.php 5036 2013-07-06 05:26:44Z wyd621@gmail.com $ diff --git a/module/index/model.php b/module/index/model.php index c2b6c94df9..cf012abaf9 100644 --- a/module/index/model.php +++ b/module/index/model.php @@ -2,8 +2,8 @@ /** * The model file of index module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package index * @version $Id: model.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/install/control.php b/module/install/control.php index e9fea5706d..57b019f9f6 100644 --- a/module/install/control.php +++ b/module/install/control.php @@ -2,8 +2,8 @@ /** * The control file of install currentModule of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package install * @version $Id: control.php 4297 2013-01-27 07:51:45Z wwccss $ diff --git a/module/install/lang/en.php b/module/install/lang/en.php index 4a0e4287a3..a1c644d1f7 100644 --- a/module/install/lang/en.php +++ b/module/install/lang/en.php @@ -2,8 +2,8 @@ /** * The install module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package install * @version $Id: en.php 4972 2013-07-02 06:50:10Z zhujinyonging@gmail.com $ diff --git a/module/install/lang/zh-cn.php b/module/install/lang/zh-cn.php index e906bb7291..7ed14f002b 100644 --- a/module/install/lang/zh-cn.php +++ b/module/install/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The install module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package install * @version $Id: zh-cn.php 4972 2013-07-02 06:50:10Z zhujinyonging@gmail.com $ diff --git a/module/install/lang/zh-tw.php b/module/install/lang/zh-tw.php index 407ca9cc19..6f4abb3132 100644 --- a/module/install/lang/zh-tw.php +++ b/module/install/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The install module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package install * @version $Id: zh-tw.php 4972 2013-07-02 06:50:10Z zhujinyonging@gmail.com $ diff --git a/module/install/model.php b/module/install/model.php index 979ac5e1c8..cc1ffc4d28 100644 --- a/module/install/model.php +++ b/module/install/model.php @@ -2,8 +2,8 @@ /** * The model file of install module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package install * @version $Id: model.php 5006 2013-07-03 08:52:21Z wyd621@gmail.com $ diff --git a/module/install/view/index.html.php b/module/install/view/index.html.php index b72726c8b3..f864986810 100644 --- a/module/install/view/index.html.php +++ b/module/install/view/index.html.php @@ -2,8 +2,8 @@ /** * The html template file of index method of install module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: index.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/install/view/step1.html.php b/module/install/view/step1.html.php index 30b211535a..3465aa7085 100644 --- a/module/install/view/step1.html.php +++ b/module/install/view/step1.html.php @@ -2,8 +2,8 @@ /** * The html template file of step1 method of install module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: step1.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/install/view/step2.html.php b/module/install/view/step2.html.php index f87c674841..e25b329dcf 100644 --- a/module/install/view/step2.html.php +++ b/module/install/view/step2.html.php @@ -2,8 +2,8 @@ /** * The html template file of step2 method of install module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: step2.html.php 4972 2013-07-02 06:50:10Z zhujinyonging@gmail.com $ diff --git a/module/install/view/step3.html.php b/module/install/view/step3.html.php index 9d53cfd87c..2d8ca16826 100644 --- a/module/install/view/step3.html.php +++ b/module/install/view/step3.html.php @@ -2,8 +2,8 @@ /** * The html template file of step3 method of install module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: step3.html.php 4297 2013-01-27 07:51:45Z wwccss $ diff --git a/module/install/view/step4.html.php b/module/install/view/step4.html.php index cee62216ef..ed1c064aa9 100644 --- a/module/install/view/step4.html.php +++ b/module/install/view/step4.html.php @@ -2,8 +2,8 @@ /** * The html template file of step4 method of install module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: step4.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/install/view/step5.html.php b/module/install/view/step5.html.php index d572fba5ae..a789ac1f06 100644 --- a/module/install/view/step5.html.php +++ b/module/install/view/step5.html.php @@ -2,8 +2,8 @@ /** * The html template file of index method of install module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: step5.html.php 2568 2012-02-18 15:53:35Z zhujinyong@cnezsoft.com$ diff --git a/module/mail/control.php b/module/mail/control.php index 35331d0223..cacf3bb2a5 100755 --- a/module/mail/control.php +++ b/module/mail/control.php @@ -2,8 +2,8 @@ /** * The control file of mail module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yangyang Shi * @package mail * @version $Id$ diff --git a/module/mail/model.php b/module/mail/model.php index 79e4c6f426..064b721558 100644 --- a/module/mail/model.php +++ b/module/mail/model.php @@ -2,8 +2,8 @@ /** * The model file of mail module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package mail * @version $Id: model.php 4750 2013-05-05 00:22:53Z chencongzhi520@gmail.com $ diff --git a/module/mail/view/detect.html.php b/module/mail/view/detect.html.php index 9b4d07dd2b..9f9cdfb2f7 100755 --- a/module/mail/view/detect.html.php +++ b/module/mail/view/detect.html.php @@ -2,8 +2,8 @@ /** * The detect view file of mail module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package mail * @version $Id$ diff --git a/module/mail/view/edit.html.php b/module/mail/view/edit.html.php index 4247385c10..0240ecaf1a 100755 --- a/module/mail/view/edit.html.php +++ b/module/mail/view/edit.html.php @@ -2,8 +2,8 @@ /** * The edit view file of mail module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package mail * @version $Id$ diff --git a/module/mail/view/save.html.php b/module/mail/view/save.html.php index 7d20518a7b..14bb9c15f4 100755 --- a/module/mail/view/save.html.php +++ b/module/mail/view/save.html.php @@ -2,8 +2,8 @@ /** * The save view file of mail module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package mail * @version $Id$ diff --git a/module/mail/view/test.html.php b/module/mail/view/test.html.php index 404312174f..53a3dd024f 100755 --- a/module/mail/view/test.html.php +++ b/module/mail/view/test.html.php @@ -2,8 +2,8 @@ /** * The test view file of mail module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package mail * @version $Id$ diff --git a/module/misc/control.php b/module/misc/control.php index 7ac198d8c2..7a5fa48dc5 100644 --- a/module/misc/control.php +++ b/module/misc/control.php @@ -2,8 +2,8 @@ /** * The control file of misc of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package misc * @version $Id: control.php 5128 2013-07-13 08:59:49Z chencongzhi520@gmail.com $ diff --git a/module/misc/lang/en.php b/module/misc/lang/en.php index dd05158e41..a2bc0ad9d8 100644 --- a/module/misc/lang/en.php +++ b/module/misc/lang/en.php @@ -2,8 +2,8 @@ /** * The misc module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package misc * @version $Id: English.php 824 2010-05-02 15:32:06Z wwccss $ diff --git a/module/misc/lang/zh-cn.php b/module/misc/lang/zh-cn.php index d194afef69..b5553cd907 100644 --- a/module/misc/lang/zh-cn.php +++ b/module/misc/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The misc module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package misc * @version $Id: zh-cn.php 5128 2013-07-13 08:59:49Z chencongzhi520@gmail.com $ diff --git a/module/misc/lang/zh-tw.php b/module/misc/lang/zh-tw.php index 5df6a7514e..ff662676c1 100644 --- a/module/misc/lang/zh-tw.php +++ b/module/misc/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The misc module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package misc * @version $Id: zh-tw.php 5128 2013-07-13 08:59:49Z chencongzhi520@gmail.com $ diff --git a/module/misc/model.php b/module/misc/model.php index 2b196bb01f..babefc2c1a 100644 --- a/module/misc/model.php +++ b/module/misc/model.php @@ -2,8 +2,8 @@ /** * The model file of misc module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package misc * @version $Id: model.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/my/control.php b/module/my/control.php index 0b35e150ff..126b5f8a6f 100644 --- a/module/my/control.php +++ b/module/my/control.php @@ -2,8 +2,8 @@ /** * The control file of dashboard module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dashboard * @version $Id: control.php 5020 2013-07-05 02:03:26Z wyd621@gmail.com $ diff --git a/module/my/model.php b/module/my/model.php index 6250ece372..ca60d7301a 100644 --- a/module/my/model.php +++ b/module/my/model.php @@ -2,8 +2,8 @@ /** * The model file of dashboard module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dashboard * @version $Id: model.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/my/view/bug.html.php b/module/my/view/bug.html.php index f954466247..b76bbbb976 100644 --- a/module/my/view/bug.html.php +++ b/module/my/view/bug.html.php @@ -2,8 +2,8 @@ /** * The bug view file of dashboard module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dashboard * @version $Id: bug.html.php 5107 2013-07-12 01:46:12Z chencongzhi520@gmail.com $ diff --git a/module/my/view/changepassword.html.php b/module/my/view/changepassword.html.php index 152fd3df10..00c1debac1 100755 --- a/module/my/view/changepassword.html.php +++ b/module/my/view/changepassword.html.php @@ -2,8 +2,8 @@ /** * The change password view of user module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package user * @version $Id: editprofile.html.php 2605 2012-02-21 07:22:58Z wwccss $ diff --git a/module/my/view/dynamic.html.php b/module/my/view/dynamic.html.php index 562895834b..e27ff8bd96 100644 --- a/module/my/view/dynamic.html.php +++ b/module/my/view/dynamic.html.php @@ -2,8 +2,8 @@ /** * The action->dynamic view file of dashboard module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dashboard * @version $Id: action->dynamic.html.php 1477 2011-03-01 15:25:50Z wwccss $ diff --git a/module/my/view/editprofile.html.php b/module/my/view/editprofile.html.php index 8e91c5c5da..12a609d980 100644 --- a/module/my/view/editprofile.html.php +++ b/module/my/view/editprofile.html.php @@ -2,8 +2,8 @@ /** * The edit view of user module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package user * @version $Id: editprofile.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/my/view/index.html.php b/module/my/view/index.html.php index 59b05c5a86..9cf1c038f2 100644 --- a/module/my/view/index.html.php +++ b/module/my/view/index.html.php @@ -2,8 +2,8 @@ /** * The html template file of index method of index module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: index.html.php 1947 2011-06-29 11:58:03Z wwccss $ diff --git a/module/my/view/m.story.html.php b/module/my/view/m.story.html.php index d46d99ed2a..a9aae21a74 100755 --- a/module/my/view/m.story.html.php +++ b/module/my/view/m.story.html.php @@ -2,8 +2,8 @@ /** * The story view file of dashboard module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yidong Wang * @package my * @version $Id: story.html.php 4735 2013-05-03 08:30:02Z chencongzhi520@gmail.com $ diff --git a/module/my/view/m.task.html.php b/module/my/view/m.task.html.php index 2f020c92db..a7ede48c37 100755 --- a/module/my/view/m.task.html.php +++ b/module/my/view/m.task.html.php @@ -2,8 +2,8 @@ /** * The task view file of dashboard module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yidong Wang * @package my * @version $Id: task.html.php 4735 2013-05-03 08:30:02Z chencongzhi520@gmail.com $ diff --git a/module/my/view/m.todo.html.php b/module/my/view/m.todo.html.php index 1cef8f5a5c..8f066b8297 100755 --- a/module/my/view/m.todo.html.php +++ b/module/my/view/m.todo.html.php @@ -2,8 +2,8 @@ /** * The todo view file of dashboard module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yidong Wang * @package my * @version $Id: todo.html.php 4735 2013-05-03 08:30:02Z chencongzhi520@gmail.com $ diff --git a/module/my/view/profile.html.php b/module/my/view/profile.html.php index bb468baa8e..4e488577b8 100644 --- a/module/my/view/profile.html.php +++ b/module/my/view/profile.html.php @@ -2,8 +2,8 @@ /** * The profile view file of my module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package my * @version $Id: profile.html.php 4694 2013-05-02 01:40:54Z chencongzhi520@gmail.com $ diff --git a/module/my/view/project.html.php b/module/my/view/project.html.php index 18297bb128..ff6879d9d2 100644 --- a/module/my/view/project.html.php +++ b/module/my/view/project.html.php @@ -2,8 +2,8 @@ /** * The project view file of dashboard module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dashboard * @version $Id: project.html.php 5095 2013-07-11 06:03:40Z chencongzhi520@gmail.com $ diff --git a/module/my/view/story.html.php b/module/my/view/story.html.php index 8caa20dbb3..0dc800dd85 100644 --- a/module/my/view/story.html.php +++ b/module/my/view/story.html.php @@ -2,8 +2,8 @@ /** * The story view file of dashboard module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dashboard * @version $Id: story.html.php 5116 2013-07-12 06:37:48Z chencongzhi520@gmail.com $ diff --git a/module/my/view/task.html.php b/module/my/view/task.html.php index 25469fc8ec..7daa3c2230 100644 --- a/module/my/view/task.html.php +++ b/module/my/view/task.html.php @@ -2,8 +2,8 @@ /** * The task view file of dashboard module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dashboard * @version $Id: task.html.php 5101 2013-07-12 00:44:27Z chencongzhi520@gmail.com $ diff --git a/module/my/view/team.html.php b/module/my/view/team.html.php index 86b93423c8..ad31f2758d 100644 --- a/module/my/view/team.html.php +++ b/module/my/view/team.html.php @@ -2,8 +2,8 @@ /** * The team view file of dashboard module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dashboard * @version $Id: team.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/my/view/testcase.html.php b/module/my/view/testcase.html.php index 1d26864c95..a162044cb0 100644 --- a/module/my/view/testcase.html.php +++ b/module/my/view/testcase.html.php @@ -2,8 +2,8 @@ /** * The test view file of dashboard module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dashboard * @version $Id: test.html.php 1191 2010-11-13 07:30:35Z jajacn@126.com $ diff --git a/module/my/view/testtask.html.php b/module/my/view/testtask.html.php index d4d7f926b9..61c61782f6 100644 --- a/module/my/view/testtask.html.php +++ b/module/my/view/testtask.html.php @@ -2,8 +2,8 @@ /** * The testtask view file of my module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dashboard * @version $Id$ diff --git a/module/my/view/todo.html.php b/module/my/view/todo.html.php index cb64a3f6f9..fbae9f58a1 100644 --- a/module/my/view/todo.html.php +++ b/module/my/view/todo.html.php @@ -2,8 +2,8 @@ /** * The todo view file of dashboard module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dashboard * @version $Id: todo.html.php 4735 2013-05-03 08:30:02Z chencongzhi520@gmail.com $ diff --git a/module/product/control.php b/module/product/control.php index 52fb491014..9a42ce8a53 100644 --- a/module/product/control.php +++ b/module/product/control.php @@ -2,8 +2,8 @@ /** * The control file of product module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package product * @version $Id: control.php 5144 2013-07-15 06:37:03Z chencongzhi520@gmail.com $ diff --git a/module/product/lang/en.php b/module/product/lang/en.php index 18dd46da5e..1786ddbee2 100644 --- a/module/product/lang/en.php +++ b/module/product/lang/en.php @@ -2,8 +2,8 @@ /** * The product module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package product * @version $Id: en.php 5091 2013-07-10 06:06:46Z chencongzhi520@gmail.com $ diff --git a/module/product/lang/zh-cn.php b/module/product/lang/zh-cn.php index 851797fd44..a7a3d1e5df 100644 --- a/module/product/lang/zh-cn.php +++ b/module/product/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The product module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package product * @version $Id: zh-cn.php 5091 2013-07-10 06:06:46Z chencongzhi520@gmail.com $ diff --git a/module/product/lang/zh-tw.php b/module/product/lang/zh-tw.php index d9a0e0ccb2..a9729090a4 100644 --- a/module/product/lang/zh-tw.php +++ b/module/product/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The product module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package product * @version $Id: zh-tw.php 5091 2013-07-10 06:06:46Z chencongzhi520@gmail.com $ diff --git a/module/product/model.php b/module/product/model.php index f9e47736db..3cf8c0b1af 100644 --- a/module/product/model.php +++ b/module/product/model.php @@ -2,8 +2,8 @@ /** * The model file of product module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package product * @version $Id: model.php 5118 2013-07-12 07:41:41Z chencongzhi520@gmail.com $ diff --git a/module/product/view/batchedit.html.php b/module/product/view/batchedit.html.php index b5f3be513a..38f0197526 100755 --- a/module/product/view/batchedit.html.php +++ b/module/product/view/batchedit.html.php @@ -2,8 +2,8 @@ /** * The batch edit file of product module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package ZenTaoPMS * @version $Id$ diff --git a/module/product/view/browse.html.php b/module/product/view/browse.html.php index efd88d4008..0b7238df50 100644 --- a/module/product/view/browse.html.php +++ b/module/product/view/browse.html.php @@ -2,8 +2,8 @@ /** * The browse view file of product module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package product * @version $Id: browse.html.php 4909 2013-06-26 07:23:50Z chencongzhi520@gmail.com $ diff --git a/module/product/view/close.html.php b/module/product/view/close.html.php index 8b99b04f31..41c41911da 100644 --- a/module/product/view/close.html.php +++ b/module/product/view/close.html.php @@ -2,8 +2,8 @@ /** * The close file of project module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package product * @version $Id: close.html.php 935 2013-01-16 07:49:24Z wwccss@gmail.com $ diff --git a/module/product/view/create.html.php b/module/product/view/create.html.php index f8b7dbb4e3..04cb35cbfe 100644 --- a/module/product/view/create.html.php +++ b/module/product/view/create.html.php @@ -2,8 +2,8 @@ /** * The create view of product module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package product * @version $Id: create.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/product/view/doc.html.php b/module/product/view/doc.html.php index d8d1249305..6871c99593 100644 --- a/module/product/view/doc.html.php +++ b/module/product/view/doc.html.php @@ -2,8 +2,8 @@ /** * The doc view file of product module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package product * @version $Id$ diff --git a/module/product/view/dynamic.html.php b/module/product/view/dynamic.html.php index cef7140bca..ac19ce9481 100755 --- a/module/product/view/dynamic.html.php +++ b/module/product/view/dynamic.html.php @@ -2,8 +2,8 @@ /** * The action->dynamic view file of dashboard module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dashboard * @version $Id: action->dynamic.html.php 1477 2011-03-01 15:25:50Z wwccss $ diff --git a/module/product/view/edit.html.php b/module/product/view/edit.html.php index 0745bc7d22..201494a4bf 100644 --- a/module/product/view/edit.html.php +++ b/module/product/view/edit.html.php @@ -2,8 +2,8 @@ /** * The edit view of product module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package product * @version $Id: edit.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/product/view/index.html.php b/module/product/view/index.html.php index e64843b7fe..57ce11a52e 100644 --- a/module/product/view/index.html.php +++ b/module/product/view/index.html.php @@ -2,8 +2,8 @@ /** * The html template file of index method of index module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yangyang Shi * @package ZenTaoPMS * @version $Id$ diff --git a/module/product/view/m.index.html.php b/module/product/view/m.index.html.php index 9f5ca2c7ca..551b502d86 100755 --- a/module/product/view/m.index.html.php +++ b/module/product/view/m.index.html.php @@ -2,8 +2,8 @@ /** * The html template file of index method of index module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yangyang Shi * @package ZenTaoPMS * @version $Id$ diff --git a/module/product/view/project.html.php b/module/product/view/project.html.php index 838d8957e8..488899e313 100644 --- a/module/product/view/project.html.php +++ b/module/product/view/project.html.php @@ -2,8 +2,8 @@ /** * The html template file of index method of index module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: index.html.php 2343 2011-11-21 05:24:56Z wwccss $ diff --git a/module/product/view/roadmap.html.php b/module/product/view/roadmap.html.php index ef0ee832e5..f901e9a994 100644 --- a/module/product/view/roadmap.html.php +++ b/module/product/view/roadmap.html.php @@ -2,8 +2,8 @@ /** * The roadmap view file of product module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package product * @version $Id: roadmap.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/product/view/view.html.php b/module/product/view/view.html.php index a5fbe2a599..ca66c7814c 100644 --- a/module/product/view/view.html.php +++ b/module/product/view/view.html.php @@ -2,8 +2,8 @@ /** * The view view of product module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package product * @version $Id: view.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/productplan/control.php b/module/productplan/control.php index ad3af86bf2..fd1e98064f 100644 --- a/module/productplan/control.php +++ b/module/productplan/control.php @@ -2,8 +2,8 @@ /** * The control file of productplan module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package productplan * @version $Id: control.php 4659 2013-04-17 06:45:08Z chencongzhi520@gmail.com $ diff --git a/module/productplan/lang/en.php b/module/productplan/lang/en.php index bf1d80f145..212c1cc996 100644 --- a/module/productplan/lang/en.php +++ b/module/productplan/lang/en.php @@ -2,8 +2,8 @@ /** * The productplan module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package productplan * @version $Id: en.php 4659 2013-04-17 06:45:08Z chencongzhi520@gmail.com $ diff --git a/module/productplan/lang/zh-cn.php b/module/productplan/lang/zh-cn.php index deeb14dfcb..30d31cabd4 100644 --- a/module/productplan/lang/zh-cn.php +++ b/module/productplan/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The productplan module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package productplan * @version $Id: zh-cn.php 4659 2013-04-17 06:45:08Z chencongzhi520@gmail.com $ diff --git a/module/productplan/lang/zh-tw.php b/module/productplan/lang/zh-tw.php index 7482b33fa8..e8175fad45 100644 --- a/module/productplan/lang/zh-tw.php +++ b/module/productplan/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The productplan module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package productplan * @version $Id: zh-tw.php 4659 2013-04-17 06:45:08Z chencongzhi520@gmail.com $ diff --git a/module/productplan/model.php b/module/productplan/model.php index fcb9918fa9..235e786c60 100644 --- a/module/productplan/model.php +++ b/module/productplan/model.php @@ -2,8 +2,8 @@ /** * The model file of productplan module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package productplan * @version $Id: model.php 4639 2013-04-11 02:06:35Z chencongzhi520@gmail.com $ diff --git a/module/productplan/view/browse.html.php b/module/productplan/view/browse.html.php index dd609ecf31..1a97eaa9e9 100644 --- a/module/productplan/view/browse.html.php +++ b/module/productplan/view/browse.html.php @@ -2,8 +2,8 @@ /** * The browse view file of plan module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package plan * @version $Id: browse.html.php 4707 2013-05-02 06:57:41Z chencongzhi520@gmail.com $ diff --git a/module/productplan/view/create.html.php b/module/productplan/view/create.html.php index 9e2969193c..89847d6a9a 100644 --- a/module/productplan/view/create.html.php +++ b/module/productplan/view/create.html.php @@ -2,8 +2,8 @@ /** * The create view of productplan module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package productplan * @version $Id: create.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/productplan/view/edit.html.php b/module/productplan/view/edit.html.php index bceef38f22..298614fbd4 100644 --- a/module/productplan/view/edit.html.php +++ b/module/productplan/view/edit.html.php @@ -2,8 +2,8 @@ /** * The edit view of productplan module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package productplan * @version $Id: edit.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/productplan/view/linkbug.html.php b/module/productplan/view/linkbug.html.php index d8518d1a14..8f0c693db4 100644 --- a/module/productplan/view/linkbug.html.php +++ b/module/productplan/view/linkbug.html.php @@ -2,8 +2,8 @@ /** * The link bug view of productplan module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package productplan * @version $Id: linkbug.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/productplan/view/linkstory.html.php b/module/productplan/view/linkstory.html.php index 8130061a6d..87a13da9f9 100644 --- a/module/productplan/view/linkstory.html.php +++ b/module/productplan/view/linkstory.html.php @@ -2,8 +2,8 @@ /** * The link story view of productplan module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package productplan * @version $Id: linkstory.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/productplan/view/view.html.php b/module/productplan/view/view.html.php index f2517fe603..eb9fa19a2d 100644 --- a/module/productplan/view/view.html.php +++ b/module/productplan/view/view.html.php @@ -2,8 +2,8 @@ /** * The view of productplan module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package productplan * @version $Id: view.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/project/control.php b/module/project/control.php index 1871076855..9dce75a816 100644 --- a/module/project/control.php +++ b/module/project/control.php @@ -2,7 +2,7 @@ /** * The control file of project module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) * @author Chunsheng Wang * @package project * @version $Id: control.php 5094 2013-07-10 08:46:15Z chencongzhi520@gmail.com $ diff --git a/module/project/lang/en.php b/module/project/lang/en.php index a3b4fb94c2..dd953a7d2e 100644 --- a/module/project/lang/en.php +++ b/module/project/lang/en.php @@ -2,8 +2,8 @@ /** * The project module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package project * @version $Id: en.php 5094 2013-07-10 08:46:15Z chencongzhi520@gmail.com $ diff --git a/module/project/lang/zh-cn.php b/module/project/lang/zh-cn.php index fa9bbfcee2..132a93d46d 100644 --- a/module/project/lang/zh-cn.php +++ b/module/project/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The project module zh-cn file of ZenTaoMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package project * @version $Id: zh-cn.php 5094 2013-07-10 08:46:15Z chencongzhi520@gmail.com $ diff --git a/module/project/lang/zh-tw.php b/module/project/lang/zh-tw.php index 5a94f116a2..77d414b077 100644 --- a/module/project/lang/zh-tw.php +++ b/module/project/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The project module zh-tw file of ZenTaoMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package project * @version $Id: zh-tw.php 5094 2013-07-10 08:46:15Z chencongzhi520@gmail.com $ diff --git a/module/project/model.php b/module/project/model.php index a80923c5c2..1a8c11220f 100644 --- a/module/project/model.php +++ b/module/project/model.php @@ -2,8 +2,8 @@ /** * The model file of project module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package project * @version $Id: model.php 5118 2013-07-12 07:41:41Z chencongzhi520@gmail.com $ diff --git a/module/project/view/activate.html.php b/module/project/view/activate.html.php index ef4af1ce41..08ba83b87e 100644 --- a/module/project/view/activate.html.php +++ b/module/project/view/activate.html.php @@ -2,8 +2,8 @@ /** * The suspend file of project module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package project * @version $Id: suspend.html.php 935 2013-01-16 07:49:24Z wwccss@gmail.com $ diff --git a/module/project/view/batchedit.html.php b/module/project/view/batchedit.html.php index 7e29610da0..e18bc2af9d 100755 --- a/module/project/view/batchedit.html.php +++ b/module/project/view/batchedit.html.php @@ -2,8 +2,8 @@ /** * The html template file of index method of index module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: index.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/project/view/bug.html.php b/module/project/view/bug.html.php index fe4a947429..d482484f59 100644 --- a/module/project/view/bug.html.php +++ b/module/project/view/bug.html.php @@ -2,8 +2,8 @@ /** * The bug view file of project module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package project * @version $Id: bug.html.php 4894 2013-06-25 01:28:39Z wyd621@gmail.com $ diff --git a/module/project/view/build.html.php b/module/project/view/build.html.php index dd3a6dc4fd..ff75aa09a4 100644 --- a/module/project/view/build.html.php +++ b/module/project/view/build.html.php @@ -2,8 +2,8 @@ /** * The build view file of project module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package project * @version $Id: build.html.php 4262 2013-01-24 08:48:56Z chencongzhi520@gmail.com $ diff --git a/module/project/view/burn.html.php b/module/project/view/burn.html.php index f829242794..cc3d945f72 100644 --- a/module/project/view/burn.html.php +++ b/module/project/view/burn.html.php @@ -2,8 +2,8 @@ /** * The burn view file of project module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package project * @version $Id: burn.html.php 4164 2013-01-20 08:27:55Z wwccss $ diff --git a/module/project/view/close.html.php b/module/project/view/close.html.php index 00abf7e476..2593751fa3 100644 --- a/module/project/view/close.html.php +++ b/module/project/view/close.html.php @@ -2,8 +2,8 @@ /** * The suspend file of project module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package project * @version $Id: suspend.html.php 935 2013-01-16 07:49:24Z wwccss@gmail.com $ diff --git a/module/project/view/computeburn.html.php b/module/project/view/computeburn.html.php index aa6f82f53e..be3b2f1e5a 100644 --- a/module/project/view/computeburn.html.php +++ b/module/project/view/computeburn.html.php @@ -2,8 +2,8 @@ /** * The computeburn view file of project module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Fu Jia * @package project * @version $Id: computeburn.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/project/view/create.html.php b/module/project/view/create.html.php index 08c09d6b07..989c49e937 100644 --- a/module/project/view/create.html.php +++ b/module/project/view/create.html.php @@ -2,8 +2,8 @@ /** * The create view of project module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package project * @version $Id: create.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/project/view/doc.html.php b/module/project/view/doc.html.php index c52a7aed24..201b073244 100644 --- a/module/project/view/doc.html.php +++ b/module/project/view/doc.html.php @@ -2,8 +2,8 @@ /** * The doc view file of product module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package product * @version $Id$ diff --git a/module/project/view/dynamic.html.php b/module/project/view/dynamic.html.php index 10a0b74cf0..4ea8c204df 100755 --- a/module/project/view/dynamic.html.php +++ b/module/project/view/dynamic.html.php @@ -2,8 +2,8 @@ /** * The action->dynamic view file of dashboard module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dashboard * @version $Id: action->dynamic.html.php 1477 2011-03-01 15:25:50Z wwccss $ diff --git a/module/project/view/edit.html.php b/module/project/view/edit.html.php index b46cb2e33a..0e4c23021b 100644 --- a/module/project/view/edit.html.php +++ b/module/project/view/edit.html.php @@ -2,8 +2,8 @@ /** * The edit view of project module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package project * @version $Id: edit.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/project/view/grouptask.html.php b/module/project/view/grouptask.html.php index 3728770241..ceb05c5f36 100644 --- a/module/project/view/grouptask.html.php +++ b/module/project/view/grouptask.html.php @@ -2,8 +2,8 @@ /** * The task group view file of project module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package project * @version $Id: grouptask.html.php 4143 2013-01-18 07:01:06Z wyd621@gmail.com $ diff --git a/module/project/view/importbug.html.php b/module/project/view/importbug.html.php index 95046c796c..7cf66311a7 100755 --- a/module/project/view/importbug.html.php +++ b/module/project/view/importbug.html.php @@ -2,8 +2,8 @@ /** * The import view file of task module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yangyang Shi * @package task * @version $Id$ diff --git a/module/project/view/importtask.html.php b/module/project/view/importtask.html.php index 8b5e9a3072..05ab63264d 100644 --- a/module/project/view/importtask.html.php +++ b/module/project/view/importtask.html.php @@ -2,8 +2,8 @@ /** * The importtask view file of project module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package project * @version $Id: importtask.html.php 4669 2013-04-23 02:28:08Z chencongzhi520@gmail.com $ diff --git a/module/project/view/index.html.php b/module/project/view/index.html.php index daa1ec9b4f..e30d7c1f01 100644 --- a/module/project/view/index.html.php +++ b/module/project/view/index.html.php @@ -2,8 +2,8 @@ /** * The html template file of index method of index module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: index.html.php 5094 2013-07-10 08:46:15Z chencongzhi520@gmail.com $ diff --git a/module/project/view/linkstory.html.php b/module/project/view/linkstory.html.php index 14b2b878c6..040c69a6c4 100644 --- a/module/project/view/linkstory.html.php +++ b/module/project/view/linkstory.html.php @@ -2,8 +2,8 @@ /** * The link story view of project module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package project * @version $Id: linkstory.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/project/view/m.index.html.php b/module/project/view/m.index.html.php index 82e6640da7..ed6efdbfab 100755 --- a/module/project/view/m.index.html.php +++ b/module/project/view/m.index.html.php @@ -2,8 +2,8 @@ /** * The html template file of index method of index module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: index.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/project/view/managechilds.html.php b/module/project/view/managechilds.html.php index 3a44d76931..84d974833c 100644 --- a/module/project/view/managechilds.html.php +++ b/module/project/view/managechilds.html.php @@ -2,8 +2,8 @@ /** * The manage child product view of project module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package project * @version $Id: managechilds.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/project/view/managemembers.html.php b/module/project/view/managemembers.html.php index 2321c5a178..158be18712 100644 --- a/module/project/view/managemembers.html.php +++ b/module/project/view/managemembers.html.php @@ -2,8 +2,8 @@ /** * The link user view of project module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package project * @version $Id: managemembers.html.php 4662 2013-04-18 02:34:33Z chencongzhi520@gmail.com $ diff --git a/module/project/view/manageproducts.html.php b/module/project/view/manageproducts.html.php index d1a1d20a91..fa7c58854c 100644 --- a/module/project/view/manageproducts.html.php +++ b/module/project/view/manageproducts.html.php @@ -2,8 +2,8 @@ /** * The manage product view of project module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package project * @version $Id: manageproducts.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/project/view/putoff.html.php b/module/project/view/putoff.html.php index 936bd3c543..833c31da3b 100644 --- a/module/project/view/putoff.html.php +++ b/module/project/view/putoff.html.php @@ -2,8 +2,8 @@ /** * The delay file of project module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package project * @version $Id: delay.html.php 935 2013-01-16 07:49:24Z wwccss@gmail.com $ diff --git a/module/project/view/sendmail.html.php b/module/project/view/sendmail.html.php index 8085db722d..524eb73b14 100644 --- a/module/project/view/sendmail.html.php +++ b/module/project/view/sendmail.html.php @@ -2,8 +2,8 @@ /** * The mail file of task module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yangyang Shi * @package task * @version $Id$ diff --git a/module/project/view/start.html.php b/module/project/view/start.html.php index 096c89993c..7402c71a9e 100644 --- a/module/project/view/start.html.php +++ b/module/project/view/start.html.php @@ -2,8 +2,8 @@ /** * The start file of project module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package project * @version $Id: start.html.php 935 2013-01-16 07:49:24Z wwccss@gmail.com $ diff --git a/module/project/view/story.html.php b/module/project/view/story.html.php index f24b6c8383..84c9cffa54 100644 --- a/module/project/view/story.html.php +++ b/module/project/view/story.html.php @@ -2,8 +2,8 @@ /** * The story view file of project module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package project * @version $Id: story.html.php 5117 2013-07-12 07:03:14Z chencongzhi520@gmail.com $ diff --git a/module/project/view/suspend.html.php b/module/project/view/suspend.html.php index 185459f4ff..92b67e57a4 100644 --- a/module/project/view/suspend.html.php +++ b/module/project/view/suspend.html.php @@ -2,8 +2,8 @@ /** * The suspend file of project module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package project * @version $Id: suspend.html.php 935 2013-01-16 07:49:24Z wwccss@gmail.com $ diff --git a/module/project/view/task.html.php b/module/project/view/task.html.php index ce6d891e73..f3e71fdcb5 100644 --- a/module/project/view/task.html.php +++ b/module/project/view/task.html.php @@ -2,8 +2,8 @@ /** * The task view file of project module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package project * @version $Id: task.html.php 4894 2013-06-25 01:28:39Z wyd621@gmail.com $ diff --git a/module/project/view/team.html.php b/module/project/view/team.html.php index fdaa9938b1..0d25c74060 100644 --- a/module/project/view/team.html.php +++ b/module/project/view/team.html.php @@ -2,8 +2,8 @@ /** * The team view file of project module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package project * @version $Id: team.html.php 4143 2013-01-18 07:01:06Z wyd621@gmail.com $ diff --git a/module/project/view/testtask.html.php b/module/project/view/testtask.html.php index b6cb4ddbac..e7a27c3692 100644 --- a/module/project/view/testtask.html.php +++ b/module/project/view/testtask.html.php @@ -2,8 +2,8 @@ /** * The browse view file of testtask module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package testtask * @version $Id: browse.html.php 1914 2011-06-24 10:11:25Z yidong@cnezsoft.com $ diff --git a/module/project/view/view.html.php b/module/project/view/view.html.php index 016e79696e..0f74b5ea56 100644 --- a/module/project/view/view.html.php +++ b/module/project/view/view.html.php @@ -2,8 +2,8 @@ /** * The view method view file of project module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package project * @version $Id: view.html.php 4594 2013-03-13 06:16:02Z wyd621@gmail.com $ diff --git a/module/qa/control.php b/module/qa/control.php index 59d06a4b67..5c7cbbf83c 100644 --- a/module/qa/control.php +++ b/module/qa/control.php @@ -2,8 +2,8 @@ /** * The control file of qa module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package qa * @version $Id: control.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/qa/lang/en.php b/module/qa/lang/en.php index b4cf228238..9b614f6fb8 100644 --- a/module/qa/lang/en.php +++ b/module/qa/lang/en.php @@ -2,8 +2,8 @@ /** * The qa module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package company * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/qa/lang/zh-cn.php b/module/qa/lang/zh-cn.php index 9335c6594a..26d90ed249 100644 --- a/module/qa/lang/zh-cn.php +++ b/module/qa/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The qa module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package company * @version $Id: zh-cn.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/qa/lang/zh-tw.php b/module/qa/lang/zh-tw.php index c512f9c2c7..20aaabf5b9 100644 --- a/module/qa/lang/zh-tw.php +++ b/module/qa/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The qa module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package company * @version $Id: zh-tw.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/qa/model.php b/module/qa/model.php index 66a1ce8648..16e129b70b 100644 --- a/module/qa/model.php +++ b/module/qa/model.php @@ -2,8 +2,8 @@ /** * The model file of qa module of ZenTaoCMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package qa * @version $Id$ diff --git a/module/qa/view/index.html.php b/module/qa/view/index.html.php index b2092b4646..de01c969de 100644 --- a/module/qa/view/index.html.php +++ b/module/qa/view/index.html.php @@ -2,8 +2,8 @@ /** * The index view file of company module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package company * @version $Id: index.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/release/control.php b/module/release/control.php index ce537f2f45..81cba17fa3 100644 --- a/module/release/control.php +++ b/module/release/control.php @@ -2,8 +2,8 @@ /** * The control file of release module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package release * @version $Id: control.php 4178 2013-01-20 09:32:11Z wwccss $ diff --git a/module/release/lang/en.php b/module/release/lang/en.php index 220cb52a65..c693223936 100644 --- a/module/release/lang/en.php +++ b/module/release/lang/en.php @@ -2,8 +2,8 @@ /** * The release module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package release * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/release/lang/zh-cn.php b/module/release/lang/zh-cn.php index f6a6ddbe8d..2c04c54e7c 100644 --- a/module/release/lang/zh-cn.php +++ b/module/release/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The release module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package release * @version $Id: zh-cn.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/release/lang/zh-tw.php b/module/release/lang/zh-tw.php index 2c6287c632..43dba5099c 100644 --- a/module/release/lang/zh-tw.php +++ b/module/release/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The release module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package release * @version $Id: zh-tw.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/release/model.php b/module/release/model.php index 33ef70a821..1d738c7916 100644 --- a/module/release/model.php +++ b/module/release/model.php @@ -2,8 +2,8 @@ /** * The model file of release module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package release * @version $Id: model.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/release/view/browse.html.php b/module/release/view/browse.html.php index afa555a9db..f6b4bccae2 100644 --- a/module/release/view/browse.html.php +++ b/module/release/view/browse.html.php @@ -2,8 +2,8 @@ /** * The browse view file of release module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package release * @version $Id: browse.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/release/view/create.html.php b/module/release/view/create.html.php index 0cbf509bd0..e1643b0817 100644 --- a/module/release/view/create.html.php +++ b/module/release/view/create.html.php @@ -2,8 +2,8 @@ /** * The create view of release module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package release * @version $Id: create.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/release/view/edit.html.php b/module/release/view/edit.html.php index 6ac880a19d..cb45dc66c6 100644 --- a/module/release/view/edit.html.php +++ b/module/release/view/edit.html.php @@ -2,8 +2,8 @@ /** * The edit view of release module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package release * @version $Id: edit.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/release/view/export.html.php b/module/release/view/export.html.php index 7a956eb5ac..4e6b5f6525 100755 --- a/module/release/view/export.html.php +++ b/module/release/view/export.html.php @@ -2,8 +2,8 @@ /** * The export stories or bugs to html view file of release module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/release/view/linkbug.html.php b/module/release/view/linkbug.html.php index 813e640be8..ea0602805e 100644 --- a/module/release/view/linkbug.html.php +++ b/module/release/view/linkbug.html.php @@ -2,8 +2,8 @@ /** * The link bug view of release module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yidong Wang * @package release * @version $Id: linkbug.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/release/view/linkstory.html.php b/module/release/view/linkstory.html.php index 2b111cd372..724ddb6007 100644 --- a/module/release/view/linkstory.html.php +++ b/module/release/view/linkstory.html.php @@ -2,8 +2,8 @@ /** * The link story view of release module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yidong Wang * @package release * @version $Id: linkstory.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/release/view/view.html.php b/module/release/view/view.html.php index 8e29e8f1b7..34df93ee15 100644 --- a/module/release/view/view.html.php +++ b/module/release/view/view.html.php @@ -2,8 +2,8 @@ /** * The view file of release module's view method of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package release * @version $Id: view.html.php 4386 2013-02-19 07:37:45Z chencongzhi520@gmail.com $ diff --git a/module/report/control.php b/module/report/control.php index 21281d2cea..2b22f53d14 100644 --- a/module/report/control.php +++ b/module/report/control.php @@ -2,8 +2,8 @@ /** * The control file of report module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package report * @version $Id: control.php 4622 2013-03-28 01:09:02Z chencongzhi520@gmail.com $ diff --git a/module/report/lang/en.php b/module/report/lang/en.php index f618014c6d..06777d1c4e 100644 --- a/module/report/lang/en.php +++ b/module/report/lang/en.php @@ -2,8 +2,8 @@ /** * The report module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package report * @version $Id: en.php 5080 2013-07-10 00:46:59Z wyd621@gmail.com $ diff --git a/module/report/lang/zh-cn.php b/module/report/lang/zh-cn.php index 9d38e3f0cf..18e91891f9 100644 --- a/module/report/lang/zh-cn.php +++ b/module/report/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The report module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package report * @version $Id: zh-cn.php 5080 2013-07-10 00:46:59Z wyd621@gmail.com $ diff --git a/module/report/lang/zh-tw.php b/module/report/lang/zh-tw.php index bc24b08818..b49ddc1231 100644 --- a/module/report/lang/zh-tw.php +++ b/module/report/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The report module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package report * @version $Id: zh-tw.php 5080 2013-07-10 00:46:59Z wyd621@gmail.com $ diff --git a/module/report/model.php b/module/report/model.php index 9716d089fb..557b9adfc3 100644 --- a/module/report/model.php +++ b/module/report/model.php @@ -2,8 +2,8 @@ /** * The model file of report module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package report * @version $Id: model.php 4726 2013-05-03 05:51:27Z chencongzhi520@gmail.com $ diff --git a/module/search/control.php b/module/search/control.php index d3f5b19663..ed3372790e 100644 --- a/module/search/control.php +++ b/module/search/control.php @@ -2,8 +2,8 @@ /** * The control file of search module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package search * @version $Id: control.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/search/lang/en.php b/module/search/lang/en.php index 46b873ab28..5715c7d6fc 100644 --- a/module/search/lang/en.php +++ b/module/search/lang/en.php @@ -2,8 +2,8 @@ /** * The search module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package search * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/search/lang/zh-cn.php b/module/search/lang/zh-cn.php index 3cba3e50a1..1395e10079 100644 --- a/module/search/lang/zh-cn.php +++ b/module/search/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The search module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package search * @version $Id: zh-cn.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/search/lang/zh-tw.php b/module/search/lang/zh-tw.php index 9037165969..702fb86ca8 100644 --- a/module/search/lang/zh-tw.php +++ b/module/search/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The search module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package search * @version $Id: zh-tw.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/search/model.php b/module/search/model.php index 52ea95c7ec..4cb0485303 100644 --- a/module/search/model.php +++ b/module/search/model.php @@ -2,8 +2,8 @@ /** * The model file of search module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package search * @version $Id: model.php 5082 2013-07-10 01:14:45Z wyd621@gmail.com $ diff --git a/module/search/view/buildform.html.php b/module/search/view/buildform.html.php index 772aa0e104..e42be3adc5 100644 --- a/module/search/view/buildform.html.php +++ b/module/search/view/buildform.html.php @@ -2,8 +2,8 @@ /** * The buildform view of search module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package search * @version $Id: buildform.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/setting/model.php b/module/setting/model.php index 00b059a569..2076d55cc8 100644 --- a/module/setting/model.php +++ b/module/setting/model.php @@ -2,8 +2,8 @@ /** * The model file of setting module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package setting * @version $Id: model.php 4976 2013-07-02 08:15:31Z wyd621@gmail.com $ diff --git a/module/story/control.php b/module/story/control.php index 99960b3f73..8417560bd6 100644 --- a/module/story/control.php +++ b/module/story/control.php @@ -2,8 +2,8 @@ /** * The control file of story module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package story * @version $Id: control.php 5145 2013-07-15 06:47:26Z chencongzhi520@gmail.com $ diff --git a/module/story/lang/en.php b/module/story/lang/en.php index 01035a9c0c..dcec7103c9 100644 --- a/module/story/lang/en.php +++ b/module/story/lang/en.php @@ -2,8 +2,8 @@ /** * The story module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package story * @version $Id: en.php 5141 2013-07-15 05:57:15Z chencongzhi520@gmail.com $ diff --git a/module/story/lang/zh-cn.php b/module/story/lang/zh-cn.php index 92394110d8..135399d120 100644 --- a/module/story/lang/zh-cn.php +++ b/module/story/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The story module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package story * @version $Id: zh-cn.php 5141 2013-07-15 05:57:15Z chencongzhi520@gmail.com $ diff --git a/module/story/lang/zh-tw.php b/module/story/lang/zh-tw.php index e969b0c2b5..8183a04d27 100644 --- a/module/story/lang/zh-tw.php +++ b/module/story/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The story module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package story * @version $Id: zh-tw.php 5141 2013-07-15 05:57:15Z chencongzhi520@gmail.com $ diff --git a/module/story/model.php b/module/story/model.php index e16e19fa18..390a272347 100644 --- a/module/story/model.php +++ b/module/story/model.php @@ -2,8 +2,8 @@ /** * The model file of story module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package story * @version $Id: model.php 5145 2013-07-15 06:47:26Z chencongzhi520@gmail.com $ diff --git a/module/story/view/activate.html.php b/module/story/view/activate.html.php index 6075f46eb6..50f761f74c 100644 --- a/module/story/view/activate.html.php +++ b/module/story/view/activate.html.php @@ -2,8 +2,8 @@ /** * The activate view file of story module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package story * @version $Id: activate.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/story/view/batchclose.html.php b/module/story/view/batchclose.html.php index 0f17a8a882..9b7d2681cf 100755 --- a/module/story/view/batchclose.html.php +++ b/module/story/view/batchclose.html.php @@ -2,8 +2,8 @@ /** * The batch close view of story module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package story * @version $Id$ diff --git a/module/story/view/batchcreate.html.php b/module/story/view/batchcreate.html.php index 1176e35639..add7d6dc3f 100644 --- a/module/story/view/batchcreate.html.php +++ b/module/story/view/batchcreate.html.php @@ -2,8 +2,8 @@ /** * The batch create view of story module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yangyang Shi * @package story * @version $Id$ diff --git a/module/story/view/batchedit.html.php b/module/story/view/batchedit.html.php index 431c04ad65..e2addf4669 100644 --- a/module/story/view/batchedit.html.php +++ b/module/story/view/batchedit.html.php @@ -2,8 +2,8 @@ /** * The batch edit view of story module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package story * @version $Id$ diff --git a/module/story/view/change.html.php b/module/story/view/change.html.php index f8911077eb..c4b0ec674c 100644 --- a/module/story/view/change.html.php +++ b/module/story/view/change.html.php @@ -2,8 +2,8 @@ /** * The change view file of story module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package story * @version $Id: change.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/story/view/close.html.php b/module/story/view/close.html.php index c4bb707e16..fcbf991817 100644 --- a/module/story/view/close.html.php +++ b/module/story/view/close.html.php @@ -2,8 +2,8 @@ /** * The close view file of story module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package story * @version $Id: close.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/story/view/create.html.php b/module/story/view/create.html.php index 1006c4327b..d5628fbdf7 100644 --- a/module/story/view/create.html.php +++ b/module/story/view/create.html.php @@ -2,8 +2,8 @@ /** * The create view of story module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package story * @version $Id: create.html.php 4902 2013-06-26 05:25:58Z wyd621@gmail.com $ diff --git a/module/story/view/edit.html.php b/module/story/view/edit.html.php index 64ddf3418e..38f21297f8 100644 --- a/module/story/view/edit.html.php +++ b/module/story/view/edit.html.php @@ -2,8 +2,8 @@ /** * The edit view file of story module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package story * @version $Id: edit.html.php 4645 2013-04-11 08:32:09Z chencongzhi520@gmail.com $ diff --git a/module/story/view/export.html.php b/module/story/view/export.html.php index 20502d44d5..bb334e40f5 100644 --- a/module/story/view/export.html.php +++ b/module/story/view/export.html.php @@ -2,8 +2,8 @@ /** * The export view file of story module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package story * @version $Id$ diff --git a/module/story/view/m.close.html.php b/module/story/view/m.close.html.php index 3cd0124920..b2fcbed259 100755 --- a/module/story/view/m.close.html.php +++ b/module/story/view/m.close.html.php @@ -2,8 +2,8 @@ /** * The close view file of story module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yidong Wang * @package story * @version $Id: close.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/story/view/m.review.html.php b/module/story/view/m.review.html.php index d65d55f0a9..4754e841f5 100755 --- a/module/story/view/m.review.html.php +++ b/module/story/view/m.review.html.php @@ -2,8 +2,8 @@ /** * The view file of review method of story module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package story * @version $Id: review.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/story/view/report.html.php b/module/story/view/report.html.php index 4868ced70a..b85c8d8b74 100644 --- a/module/story/view/report.html.php +++ b/module/story/view/report.html.php @@ -2,8 +2,8 @@ /** * The report view file of product module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package product * @version $Id: report.html.php 1594 2011-03-13 07:27:55Z wwccss $ diff --git a/module/story/view/review.html.php b/module/story/view/review.html.php index 9afe6bc9f8..48ac2c8799 100644 --- a/module/story/view/review.html.php +++ b/module/story/view/review.html.php @@ -2,8 +2,8 @@ /** * The view file of review method of story module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package story * @version $Id: review.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/story/view/sendmail.html.php b/module/story/view/sendmail.html.php index 60e1c9201f..1e62a3f1e6 100644 --- a/module/story/view/sendmail.html.php +++ b/module/story/view/sendmail.html.php @@ -2,8 +2,8 @@ /** * The mail file of story module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package bug * @version $Id: sendmail.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/story/view/view.html.php b/module/story/view/view.html.php index 67757eb9e5..2e85fe6b7a 100644 --- a/module/story/view/view.html.php +++ b/module/story/view/view.html.php @@ -2,8 +2,8 @@ /** * The view file of story module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package story * @version $Id: view.html.php 4952 2013-07-02 01:14:58Z chencongzhi520@gmail.com $ diff --git a/module/story/view/zerocase.html.php b/module/story/view/zerocase.html.php index a19a5f034b..451cf8023b 100644 --- a/module/story/view/zerocase.html.php +++ b/module/story/view/zerocase.html.php @@ -2,8 +2,8 @@ /** * The browse view file of product module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package product * @version $Id: browse.html.php 4909 2013-06-26 07:23:50Z chencongzhi520@gmail.com $ diff --git a/module/svn/control.php b/module/svn/control.php index 875be53ec1..d2d7a8393a 100644 --- a/module/svn/control.php +++ b/module/svn/control.php @@ -2,8 +2,8 @@ /** * The control file of svn currentModule of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package svn * @version $Id$ diff --git a/module/svn/lang/en.php b/module/svn/lang/en.php index 714ef8e325..356be8f5cb 100644 --- a/module/svn/lang/en.php +++ b/module/svn/lang/en.php @@ -2,8 +2,8 @@ /** * The svn module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package svn * @version $Id$ diff --git a/module/svn/lang/zh-cn.php b/module/svn/lang/zh-cn.php index 8f5553529c..e6e23155eb 100644 --- a/module/svn/lang/zh-cn.php +++ b/module/svn/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The svn module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package svn * @version $Id$ diff --git a/module/svn/lang/zh-tw.php b/module/svn/lang/zh-tw.php index cc4dae909d..4f45cbea4c 100644 --- a/module/svn/lang/zh-tw.php +++ b/module/svn/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The svn module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package svn * @version $Id$ diff --git a/module/svn/model.php b/module/svn/model.php index d0da2f8813..2e3a7079cb 100644 --- a/module/svn/model.php +++ b/module/svn/model.php @@ -2,8 +2,8 @@ /** * The model file of svn module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package svn * @version $Id$ diff --git a/module/svn/syncer/syncer.php b/module/svn/syncer/syncer.php index 12a4495022..24e13e2ee5 100644 --- a/module/svn/syncer/syncer.php +++ b/module/svn/syncer/syncer.php @@ -2,8 +2,8 @@ /** * The syncer of svn. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package svn * @version $Id$ diff --git a/module/svn/view/cat.html.php b/module/svn/view/cat.html.php index 8d3cdbd079..40dfdc073d 100644 --- a/module/svn/view/cat.html.php +++ b/module/svn/view/cat.html.php @@ -2,8 +2,8 @@ /** * The export view file of file module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/svn/view/diff.html.php b/module/svn/view/diff.html.php index f551025698..cb128f48b6 100644 --- a/module/svn/view/diff.html.php +++ b/module/svn/view/diff.html.php @@ -2,8 +2,8 @@ /** * The export view file of file module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/task/control.php b/module/task/control.php index 87aee74ce5..9e67263a4b 100644 --- a/module/task/control.php +++ b/module/task/control.php @@ -2,8 +2,8 @@ /** * The control file of task module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package task * @version $Id: control.php 5106 2013-07-12 01:28:54Z chencongzhi520@gmail.com $ diff --git a/module/task/lang/en.php b/module/task/lang/en.php index b115034c02..9865bdb9a0 100644 --- a/module/task/lang/en.php +++ b/module/task/lang/en.php @@ -2,8 +2,8 @@ /** * The task module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package task * @version $Id: en.php 5040 2013-07-06 06:22:18Z zhujinyonging@gmail.com $ diff --git a/module/task/lang/zh-cn.php b/module/task/lang/zh-cn.php index 71270e9c40..3a767bc103 100644 --- a/module/task/lang/zh-cn.php +++ b/module/task/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The task module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package task * @version $Id: zh-cn.php 5040 2013-07-06 06:22:18Z zhujinyonging@gmail.com $ diff --git a/module/task/lang/zh-tw.php b/module/task/lang/zh-tw.php index 340ee8017c..5ae641481b 100644 --- a/module/task/lang/zh-tw.php +++ b/module/task/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The task module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package task * @version $Id: zh-tw.php 5040 2013-07-06 06:22:18Z zhujinyonging@gmail.com $ diff --git a/module/task/model.php b/module/task/model.php index b870040654..935af6b810 100644 --- a/module/task/model.php +++ b/module/task/model.php @@ -2,8 +2,8 @@ /** * The model file of task module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package task * @version $Id: model.php 5154 2013-07-16 05:51:02Z chencongzhi520@gmail.com $ diff --git a/module/task/view/activate.html.php b/module/task/view/activate.html.php index aebe476e73..131416adf1 100644 --- a/module/task/view/activate.html.php +++ b/module/task/view/activate.html.php @@ -2,8 +2,8 @@ /** * The activate file of task module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Jia Fu * @package task * @version $Id: start.html.php 935 2010-07-06 07:49:24Z jajacn@126.com $ diff --git a/module/task/view/assignto.html.php b/module/task/view/assignto.html.php index 2f654eb66d..d6e4298c00 100644 --- a/module/task/view/assignto.html.php +++ b/module/task/view/assignto.html.php @@ -2,8 +2,8 @@ /** * The complete file of task module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Jia Fu * @package task * @version $Id: complete.html.php 935 2010-07-06 07:49:24Z jajacn@126.com $ diff --git a/module/task/view/batchcreate.html.php b/module/task/view/batchcreate.html.php index 3007f38eea..58dba0e996 100644 --- a/module/task/view/batchcreate.html.php +++ b/module/task/view/batchcreate.html.php @@ -2,8 +2,8 @@ /** * The batch create view of story module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yangyang Shi * @package story * @version $Id$ diff --git a/module/task/view/batchedit.html.php b/module/task/view/batchedit.html.php index 91ae0b99ca..ade15f2888 100755 --- a/module/task/view/batchedit.html.php +++ b/module/task/view/batchedit.html.php @@ -2,8 +2,8 @@ /** * The batch edit view of task module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package task * @version $Id$ diff --git a/module/task/view/browse.html.php b/module/task/view/browse.html.php index ddc4e503d1..d6cfb23e63 100644 --- a/module/task/view/browse.html.php +++ b/module/task/view/browse.html.php @@ -2,8 +2,8 @@ /** * The browse view file of task module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package task * @version $Id: browse.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/task/view/cancel.html.php b/module/task/view/cancel.html.php index 1ea8b578c9..b4fa848581 100644 --- a/module/task/view/cancel.html.php +++ b/module/task/view/cancel.html.php @@ -2,8 +2,8 @@ /** * The cancel file of task module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Jia Fu * @package task * @version $Id: cancel.html.php 935 2010-07-06 07:49:24Z jajacn@126.com $ diff --git a/module/task/view/close.html.php b/module/task/view/close.html.php index 7431a71704..e329f0ed96 100644 --- a/module/task/view/close.html.php +++ b/module/task/view/close.html.php @@ -2,8 +2,8 @@ /** * The close file of task module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author chunsheng wang * @package task * @version $Id: cancel.html.php 935 2010-07-06 07:49:24Z jajacn@126.com $ diff --git a/module/task/view/create.html.php b/module/task/view/create.html.php index 8d1d7630d9..7605570d34 100644 --- a/module/task/view/create.html.php +++ b/module/task/view/create.html.php @@ -2,8 +2,8 @@ /** * The create view of task module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package task * @version $Id: create.html.php 5090 2013-07-10 05:49:24Z zhujinyonging@gmail.com $ diff --git a/module/task/view/edit.html.php b/module/task/view/edit.html.php index 8ae7a7eafc..508b091e36 100644 --- a/module/task/view/edit.html.php +++ b/module/task/view/edit.html.php @@ -2,8 +2,8 @@ /** * The edit view of task module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package task * @version $Id: edit.html.php 4897 2013-06-26 01:13:16Z wyd621@gmail.com $ diff --git a/module/task/view/editestimate.html.php b/module/task/view/editestimate.html.php index 70532ff75a..1279325d7b 100644 --- a/module/task/view/editestimate.html.php +++ b/module/task/view/editestimate.html.php @@ -2,8 +2,8 @@ /** * The editEstimate view of task module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package task * @version $Id: editestimate.html.php 4263 2013-02-24 08:50:46Z zhujinyonging@gmail.com $ diff --git a/module/task/view/export.html.php b/module/task/view/export.html.php index 1917d296f7..e0b87fb0f9 100755 --- a/module/task/view/export.html.php +++ b/module/task/view/export.html.php @@ -2,8 +2,8 @@ /** * The export view file of task module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package task * @version $Id$ diff --git a/module/task/view/finish.html.php b/module/task/view/finish.html.php index c125be95cd..6451b6bcd8 100644 --- a/module/task/view/finish.html.php +++ b/module/task/view/finish.html.php @@ -2,8 +2,8 @@ /** * The complete file of task module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Jia Fu * @package task * @version $Id: complete.html.php 935 2010-07-06 07:49:24Z jajacn@126.com $ diff --git a/module/task/view/pause.html.php b/module/task/view/pause.html.php index ff5373ac55..b6a4540879 100644 --- a/module/task/view/pause.html.php +++ b/module/task/view/pause.html.php @@ -2,8 +2,8 @@ /** * The pause file of task module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yidong Wang * @package task * @version $Id$ diff --git a/module/task/view/recordestimate.html.php b/module/task/view/recordestimate.html.php index 166e4c0c06..93e1864807 100644 --- a/module/task/view/recordestimate.html.php +++ b/module/task/view/recordestimate.html.php @@ -2,8 +2,8 @@ /** * The record file of task module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package task * @version $Id: record.html.php 935 2013-01-08 07:49:24Z wwccss@gmail.com $ diff --git a/module/task/view/report.html.php b/module/task/view/report.html.php index 1cae0b1020..edbd641fef 100644 --- a/module/task/view/report.html.php +++ b/module/task/view/report.html.php @@ -2,8 +2,8 @@ /** * The report view file of task module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author wenjie * @package project * @version $Id: report.html.php 1594 2011-04-10 11:00:00Z wj $ diff --git a/module/task/view/restart.html.php b/module/task/view/restart.html.php index 7fd6794073..40d922ea4a 100644 --- a/module/task/view/restart.html.php +++ b/module/task/view/restart.html.php @@ -2,8 +2,8 @@ /** * The start file of task module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Jia Fu * @package task * @version $Id: start.html.php 935 2010-07-06 07:49:24Z jajacn@126.com $ diff --git a/module/task/view/sendmail.html.php b/module/task/view/sendmail.html.php index abdaa6d799..240e3e3ac0 100644 --- a/module/task/view/sendmail.html.php +++ b/module/task/view/sendmail.html.php @@ -2,8 +2,8 @@ /** * The mail file of task module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Jia Fu * @package task * @version $Id: sendmail.html.php 867 2010-06-17 09:32:58Z yuren_@126.com $ diff --git a/module/task/view/start.html.php b/module/task/view/start.html.php index 63d54c3ed3..f0ac64c756 100644 --- a/module/task/view/start.html.php +++ b/module/task/view/start.html.php @@ -2,8 +2,8 @@ /** * The start file of task module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Jia Fu * @package task * @version $Id: start.html.php 935 2010-07-06 07:49:24Z jajacn@126.com $ diff --git a/module/task/view/view.html.php b/module/task/view/view.html.php index 57906fb2c6..eb04ce563e 100644 --- a/module/task/view/view.html.php +++ b/module/task/view/view.html.php @@ -2,8 +2,8 @@ /** * The view file of task module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package task * @version $Id: view.html.php 4808 2013-06-17 05:48:13Z zhujinyonging@gmail.com $ diff --git a/module/testcase/control.php b/module/testcase/control.php index 3cc2b54488..f8cbb4b82b 100644 --- a/module/testcase/control.php +++ b/module/testcase/control.php @@ -2,8 +2,8 @@ /** * The control file of case currentModule of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package case * @version $Id: control.php 5112 2013-07-12 02:51:33Z chencongzhi520@gmail.com $ diff --git a/module/testcase/lang/en.php b/module/testcase/lang/en.php index 6aca0a8a6c..1dd820f9ec 100644 --- a/module/testcase/lang/en.php +++ b/module/testcase/lang/en.php @@ -2,8 +2,8 @@ /** * The testcase module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package testcase * @version $Id: en.php 4966 2013-07-02 02:59:25Z wyd621@gmail.com $ diff --git a/module/testcase/lang/zh-cn.php b/module/testcase/lang/zh-cn.php index ef35658d4a..865323c51e 100644 --- a/module/testcase/lang/zh-cn.php +++ b/module/testcase/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The testcase module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package testcase * @version $Id: zh-cn.php 4764 2013-05-05 04:07:04Z chencongzhi520@gmail.com $ diff --git a/module/testcase/lang/zh-tw.php b/module/testcase/lang/zh-tw.php index 31d670fae2..e147d9f3ad 100644 --- a/module/testcase/lang/zh-tw.php +++ b/module/testcase/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The testcase module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package testcase * @version $Id: zh-tw.php 4764 2013-05-05 04:07:04Z chencongzhi520@gmail.com $ diff --git a/module/testcase/model.php b/module/testcase/model.php index d75b24bcf2..29bec0caaf 100644 --- a/module/testcase/model.php +++ b/module/testcase/model.php @@ -2,8 +2,8 @@ /** * The model file of case module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package case * @version $Id: model.php 5108 2013-07-12 01:59:04Z chencongzhi520@gmail.com $ diff --git a/module/testcase/view/batchcreate.html.php b/module/testcase/view/batchcreate.html.php index b0934771ae..9bd599f812 100644 --- a/module/testcase/view/batchcreate.html.php +++ b/module/testcase/view/batchcreate.html.php @@ -2,8 +2,8 @@ /** * The batch create view of testcase module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yangyang Shi * @package testcase * @version $Id$ diff --git a/module/testcase/view/batchedit.html.php b/module/testcase/view/batchedit.html.php index 0c79d4bc44..deabd07f69 100644 --- a/module/testcase/view/batchedit.html.php +++ b/module/testcase/view/batchedit.html.php @@ -2,8 +2,8 @@ /** * The batch edit view of testcase module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package testcase * @version $Id$ diff --git a/module/testcase/view/browse.html.php b/module/testcase/view/browse.html.php index bab5215e53..580fc90b0f 100644 --- a/module/testcase/view/browse.html.php +++ b/module/testcase/view/browse.html.php @@ -2,8 +2,8 @@ /** * The browse view file of testcase module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package testcase * @version $Id: browse.html.php 5108 2013-07-12 01:59:04Z chencongzhi520@gmail.com $ diff --git a/module/testcase/view/create.html.php b/module/testcase/view/create.html.php index b5f707692e..dbcb4ba7b2 100644 --- a/module/testcase/view/create.html.php +++ b/module/testcase/view/create.html.php @@ -2,8 +2,8 @@ /** * The create view of case module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package case * @version $Id: create.html.php 4904 2013-06-26 05:37:45Z wyd621@gmail.com $ diff --git a/module/testcase/view/createbug.html.php b/module/testcase/view/createbug.html.php index 84cdbef581..954e658d6a 100644 --- a/module/testcase/view/createbug.html.php +++ b/module/testcase/view/createbug.html.php @@ -2,8 +2,8 @@ /** * The createByg view file of testcase module of ZenTaoPMS. * - * @copyright Copyright 2009-2014 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yidong Wang * @package testcase * @version $Id$ diff --git a/module/testcase/view/edit.html.php b/module/testcase/view/edit.html.php index e27e8e7062..155a45d109 100644 --- a/module/testcase/view/edit.html.php +++ b/module/testcase/view/edit.html.php @@ -2,8 +2,8 @@ /** * The edit file of case module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package case * @version $Id: edit.html.php 5000 2013-07-03 08:20:57Z chencongzhi520@gmail.com $ diff --git a/module/testcase/view/export.html.php b/module/testcase/view/export.html.php index 1cbcfa4bee..a0f2f47d34 100755 --- a/module/testcase/view/export.html.php +++ b/module/testcase/view/export.html.php @@ -2,8 +2,8 @@ /** * The export view file of testcase module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package testcase * @version $Id$ diff --git a/module/testcase/view/groupcase.html.php b/module/testcase/view/groupcase.html.php index eafca114e6..584f82b0a5 100644 --- a/module/testcase/view/groupcase.html.php +++ b/module/testcase/view/groupcase.html.php @@ -2,8 +2,8 @@ /** * The case group view file of testcase module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yidong Wang * @package testcase * @version $Id$ diff --git a/module/testcase/view/index.html.php b/module/testcase/view/index.html.php index f12f41842f..359ac31ca5 100644 --- a/module/testcase/view/index.html.php +++ b/module/testcase/view/index.html.php @@ -2,8 +2,8 @@ /** * The index view file of bug module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package bug * @version $Id: index.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/testcase/view/view.html.php b/module/testcase/view/view.html.php index 6c255ce2d3..94e1433504 100644 --- a/module/testcase/view/view.html.php +++ b/module/testcase/view/view.html.php @@ -2,8 +2,8 @@ /** * The view file of case module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package case * @version $Id: view.html.php 5000 2013-07-03 08:20:57Z chencongzhi520@gmail.com $ diff --git a/module/testtask/control.php b/module/testtask/control.php index ff95b90bd0..85d1de3e57 100644 --- a/module/testtask/control.php +++ b/module/testtask/control.php @@ -2,8 +2,8 @@ /** * The control file of testtask module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package testtask * @version $Id: control.php 5114 2013-07-12 06:02:59Z chencongzhi520@gmail.com $ diff --git a/module/testtask/lang/en.php b/module/testtask/lang/en.php index a76dd3cfcd..6457b0bddb 100644 --- a/module/testtask/lang/en.php +++ b/module/testtask/lang/en.php @@ -2,8 +2,8 @@ /** * The testtask module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package testtask * @version $Id: en.php 4490 2013-02-27 03:27:05Z wyd621@gmail.com $ diff --git a/module/testtask/lang/zh-cn.php b/module/testtask/lang/zh-cn.php index e592708a72..85184dd5bf 100644 --- a/module/testtask/lang/zh-cn.php +++ b/module/testtask/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The testtask module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package testtask * @version $Id: zh-cn.php 4490 2013-02-27 03:27:05Z wyd621@gmail.com $ diff --git a/module/testtask/lang/zh-tw.php b/module/testtask/lang/zh-tw.php index 5636c2888b..c6a20166db 100644 --- a/module/testtask/lang/zh-tw.php +++ b/module/testtask/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The testtask module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package testtask * @version $Id: zh-tw.php 4490 2013-02-27 03:27:05Z wyd621@gmail.com $ diff --git a/module/testtask/model.php b/module/testtask/model.php index f0d16536df..126cdabf4f 100644 --- a/module/testtask/model.php +++ b/module/testtask/model.php @@ -2,8 +2,8 @@ /** * The model file of test task module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package testtask * @version $Id: model.php 5114 2013-07-12 06:02:59Z chencongzhi520@gmail.com $ diff --git a/module/testtask/view/batchrun.html.php b/module/testtask/view/batchrun.html.php index 72da8e169a..8b82ef2ad7 100644 --- a/module/testtask/view/batchrun.html.php +++ b/module/testtask/view/batchrun.html.php @@ -2,8 +2,8 @@ /** * The batch edit view of testcase module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package testcase * @version $Id$ diff --git a/module/testtask/view/browse.html.php b/module/testtask/view/browse.html.php index 5b814f2716..6d966c11ed 100644 --- a/module/testtask/view/browse.html.php +++ b/module/testtask/view/browse.html.php @@ -2,8 +2,8 @@ /** * The browse view file of testtask module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package testtask * @version $Id: browse.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/testtask/view/cases.html.php b/module/testtask/view/cases.html.php index 3d5b7ab35b..6a6cd818dd 100644 --- a/module/testtask/view/cases.html.php +++ b/module/testtask/view/cases.html.php @@ -2,8 +2,8 @@ /** * The view file of case module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package case * @version $Id: view.html.php 594 2010-03-27 13:44:07Z wwccss $ diff --git a/module/testtask/view/close.html.php b/module/testtask/view/close.html.php index 5596253606..96cd3e6063 100644 --- a/module/testtask/view/close.html.php +++ b/module/testtask/view/close.html.php @@ -2,8 +2,8 @@ /** * The close file of testtask module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package testtask * @version $Id: close.html.php 935 2013-01-16 07:49:24Z wwccss@gmail.com $ diff --git a/module/testtask/view/create.html.php b/module/testtask/view/create.html.php index 98a887465b..84303181ee 100644 --- a/module/testtask/view/create.html.php +++ b/module/testtask/view/create.html.php @@ -2,8 +2,8 @@ /** * The create view of testtask module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package testtask * @version $Id: create.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/testtask/view/edit.html.php b/module/testtask/view/edit.html.php index 14a2d016e0..46b94e670b 100644 --- a/module/testtask/view/edit.html.php +++ b/module/testtask/view/edit.html.php @@ -2,8 +2,8 @@ /** * The edit view of testtask module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package testtask * @version $Id: edit.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/testtask/view/groupcase.html.php b/module/testtask/view/groupcase.html.php index 6a5cead17c..02f1b5cbf6 100644 --- a/module/testtask/view/groupcase.html.php +++ b/module/testtask/view/groupcase.html.php @@ -2,8 +2,8 @@ /** * The case group view file of testcase module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yidong Wang * @package testcase * @version $Id$ diff --git a/module/testtask/view/linkcase.html.php b/module/testtask/view/linkcase.html.php index 53a8ecbf06..febd961feb 100644 --- a/module/testtask/view/linkcase.html.php +++ b/module/testtask/view/linkcase.html.php @@ -2,8 +2,8 @@ /** * The linkcase view file of testtask module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package testtask * @version $Id: linkcase.html.php 4411 2013-02-22 00:56:04Z chencongzhi520@gmail.com $ diff --git a/module/testtask/view/results.html.php b/module/testtask/view/results.html.php index 23641ff28f..7bb28fad8f 100644 --- a/module/testtask/view/results.html.php +++ b/module/testtask/view/results.html.php @@ -2,8 +2,8 @@ /** * The resutls view file of testtask of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package testtask * @version $Id: results.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/testtask/view/runcase.html.php b/module/testtask/view/runcase.html.php index f95f5e0241..47dcca060f 100644 --- a/module/testtask/view/runcase.html.php +++ b/module/testtask/view/runcase.html.php @@ -2,8 +2,8 @@ /** * The runrun view file of testtask of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package testtask * @version $Id: runcase.html.php 4723 2013-05-03 05:19:29Z chencongzhi520@gmail.com $ diff --git a/module/testtask/view/sendmail.html.php b/module/testtask/view/sendmail.html.php index ee938b2ac8..2484d38280 100644 --- a/module/testtask/view/sendmail.html.php +++ b/module/testtask/view/sendmail.html.php @@ -2,8 +2,8 @@ /** * The mail file of testtask module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package bug * @version $Id: sendmail.html.php 3717 2012-12-10 00:37:07Z zhujinyonging@gmail.com $ diff --git a/module/testtask/view/start.html.php b/module/testtask/view/start.html.php index f496b0ac55..aeb6c20d4f 100644 --- a/module/testtask/view/start.html.php +++ b/module/testtask/view/start.html.php @@ -2,8 +2,8 @@ /** * The start file of testtask module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package testtask * @version $Id: start.html.php 935 2013-01-16 07:49:24Z wwccss@gmail.com $ diff --git a/module/testtask/view/view.html.php b/module/testtask/view/view.html.php index 02056dea76..04b1d9825e 100644 --- a/module/testtask/view/view.html.php +++ b/module/testtask/view/view.html.php @@ -2,8 +2,8 @@ /** * The view file of case module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package case * @version $Id: view.html.php 4141 2013-01-18 06:15:13Z zhujinyonging@gmail.com $ diff --git a/module/todo/control.php b/module/todo/control.php index 9ccfca1656..4316ce42a7 100644 --- a/module/todo/control.php +++ b/module/todo/control.php @@ -2,8 +2,8 @@ /** * The control file of todo module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package todo * @version $Id: control.php 4976 2013-07-02 08:15:31Z wyd621@gmail.com $ diff --git a/module/todo/lang/en.php b/module/todo/lang/en.php index 6036b661c6..43543f43af 100644 --- a/module/todo/lang/en.php +++ b/module/todo/lang/en.php @@ -2,8 +2,8 @@ /** * The todo module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package todo * @version $Id: en.php 4676 2013-04-26 06:08:23Z chencongzhi520@gmail.com $ diff --git a/module/todo/lang/zh-cn.php b/module/todo/lang/zh-cn.php index ce0ad45cec..4df597f304 100644 --- a/module/todo/lang/zh-cn.php +++ b/module/todo/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The todo module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package todo * @version $Id: zh-cn.php 5022 2013-07-05 06:50:39Z chencongzhi520@gmail.com $ diff --git a/module/todo/lang/zh-tw.php b/module/todo/lang/zh-tw.php index 555bbf1981..291fc0d72c 100644 --- a/module/todo/lang/zh-tw.php +++ b/module/todo/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The todo module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package todo * @version $Id: zh-tw.php 5022 2013-07-05 06:50:39Z chencongzhi520@gmail.com $ diff --git a/module/todo/model.php b/module/todo/model.php index 270b109936..c317e105f7 100644 --- a/module/todo/model.php +++ b/module/todo/model.php @@ -2,8 +2,8 @@ /** * The model file of todo module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package todo * @version $Id: model.php 5035 2013-07-06 05:21:58Z wyd621@gmail.com $ diff --git a/module/todo/view/batchcreate.html.php b/module/todo/view/batchcreate.html.php index 3011c21512..2b13769a0c 100755 --- a/module/todo/view/batchcreate.html.php +++ b/module/todo/view/batchcreate.html.php @@ -2,8 +2,8 @@ /** * The batch create view of todo module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package todo * @version $Id: create.html.php 2741 2012-04-07 07:24:21Z areyou123456 $ diff --git a/module/todo/view/batchedit.html.php b/module/todo/view/batchedit.html.php index c09a85c1bb..ed8b531483 100644 --- a/module/todo/view/batchedit.html.php +++ b/module/todo/view/batchedit.html.php @@ -2,8 +2,8 @@ /** * The batch edit view of todo module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package todo * @version $Id: create.html.php 2741 2012-04-07 07:24:21Z areyou123456 $ diff --git a/module/todo/view/create.html.php b/module/todo/view/create.html.php index 4a5bd9914d..e3f3c0a0f2 100644 --- a/module/todo/view/create.html.php +++ b/module/todo/view/create.html.php @@ -2,8 +2,8 @@ /** * The create view of todo module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package todo * @version $Id: create.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/todo/view/edit.html.php b/module/todo/view/edit.html.php index 2fecc00db6..464da0b5ba 100644 --- a/module/todo/view/edit.html.php +++ b/module/todo/view/edit.html.php @@ -2,8 +2,8 @@ /** * The create view of todo module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package todo * @version $Id: edit.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/todo/view/export.html.php b/module/todo/view/export.html.php index 608f255f2e..0be7a7537e 100755 --- a/module/todo/view/export.html.php +++ b/module/todo/view/export.html.php @@ -2,8 +2,8 @@ /** * The export view file of bug module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yangyang Shi * @package todo * @version $Id$ diff --git a/module/todo/view/m.batchcreate.html.php b/module/todo/view/m.batchcreate.html.php index 83a82303cf..7948943456 100755 --- a/module/todo/view/m.batchcreate.html.php +++ b/module/todo/view/m.batchcreate.html.php @@ -2,8 +2,8 @@ /** * The batch create view of todo module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package todo * @version $Id: create.html.php 2741 2012-04-07 07:24:21Z areyou123456 $ diff --git a/module/todo/view/view.html.php b/module/todo/view/view.html.php index 12955dd51e..b6edf6cc16 100644 --- a/module/todo/view/view.html.php +++ b/module/todo/view/view.html.php @@ -2,8 +2,8 @@ /** * The view file of view method of todo module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package todo * @version $Id: view.html.php 4955 2013-07-02 01:47:21Z chencongzhi520@gmail.com $ diff --git a/module/tree/control.php b/module/tree/control.php index 6ce4341a1d..560ce2c5e9 100644 --- a/module/tree/control.php +++ b/module/tree/control.php @@ -2,8 +2,8 @@ /** * The control file of tree module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package tree * @version $Id: control.php 5002 2013-07-03 08:25:39Z chencongzhi520@gmail.com $ diff --git a/module/tree/lang/en.php b/module/tree/lang/en.php index 8e22981b8b..b21e5f0ccb 100644 --- a/module/tree/lang/en.php +++ b/module/tree/lang/en.php @@ -2,8 +2,8 @@ /** * The tree module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package tree * @version $Id: en.php 5045 2013-07-06 07:04:40Z zhujinyonging@gmail.com $ diff --git a/module/tree/lang/zh-cn.php b/module/tree/lang/zh-cn.php index e803b8926a..d4373ac87f 100644 --- a/module/tree/lang/zh-cn.php +++ b/module/tree/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The tree module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package tree * @version $Id: zh-cn.php 4836 2013-06-19 05:39:40Z zhujinyonging@gmail.com $ diff --git a/module/tree/lang/zh-tw.php b/module/tree/lang/zh-tw.php index e3c4f98e28..ce047d2d1c 100644 --- a/module/tree/lang/zh-tw.php +++ b/module/tree/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The tree module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package tree * @version $Id: zh-tw.php 4836 2013-06-19 05:39:40Z zhujinyonging@gmail.com $ diff --git a/module/tree/model.php b/module/tree/model.php index 153ffb7ace..ff5c57bf38 100644 --- a/module/tree/model.php +++ b/module/tree/model.php @@ -2,8 +2,8 @@ /** * The model file of tree module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package tree * @version $Id: model.php 5149 2013-07-16 01:47:01Z zhujinyonging@gmail.com $ diff --git a/module/tree/view/browse.html.php b/module/tree/view/browse.html.php index d7a0d20210..4c2bbae4bc 100644 --- a/module/tree/view/browse.html.php +++ b/module/tree/view/browse.html.php @@ -2,8 +2,8 @@ /** * The browse view file of tree module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package tree * @version $Id: browse.html.php 4796 2013-06-06 02:21:59Z zhujinyonging@gmail.com $ diff --git a/module/tree/view/browsetask.html.php b/module/tree/view/browsetask.html.php index 3489dd1d6d..6825e7e9a1 100644 --- a/module/tree/view/browsetask.html.php +++ b/module/tree/view/browsetask.html.php @@ -2,8 +2,8 @@ /** * The browse view file of tree module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package tree * @version $Id: browse.html.php 4796 2013-06-06 02:21:59Z zhujinyonging@gmail.com $ diff --git a/module/tree/view/edit.html.php b/module/tree/view/edit.html.php index 929f4ce890..9b7fe094d6 100644 --- a/module/tree/view/edit.html.php +++ b/module/tree/view/edit.html.php @@ -2,8 +2,8 @@ /** * The edit view of tree module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package tree * @version $Id: edit.html.php 4795 2013-06-04 05:59:58Z zhujinyonging@gmail.com $ diff --git a/module/upgrade/control.php b/module/upgrade/control.php index 8d0be04273..ae52904e1f 100644 --- a/module/upgrade/control.php +++ b/module/upgrade/control.php @@ -2,8 +2,8 @@ /** * The control file of upgrade module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package upgrade * @version $Id: control.php 5119 2013-07-12 08:06:42Z wyd621@gmail.com $ diff --git a/module/upgrade/lang/en.php b/module/upgrade/lang/en.php index 94ce4f7800..b8630ff22e 100644 --- a/module/upgrade/lang/en.php +++ b/module/upgrade/lang/en.php @@ -2,8 +2,8 @@ /** * The upgrade module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package upgrade * @version $Id: en.php 5119 2013-07-12 08:06:42Z wyd621@gmail.com $ diff --git a/module/upgrade/lang/zh-cn.php b/module/upgrade/lang/zh-cn.php index 74437cd4f9..e3af036733 100644 --- a/module/upgrade/lang/zh-cn.php +++ b/module/upgrade/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The upgrade module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package upgrade * @version $Id: zh-cn.php 5119 2013-07-12 08:06:42Z wyd621@gmail.com $ diff --git a/module/upgrade/lang/zh-tw.php b/module/upgrade/lang/zh-tw.php index d60bd65f0b..73dd54b3c5 100644 --- a/module/upgrade/lang/zh-tw.php +++ b/module/upgrade/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The upgrade module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package upgrade * @version $Id: zh-tw.php 5119 2013-07-12 08:06:42Z wyd621@gmail.com $ diff --git a/module/upgrade/model.php b/module/upgrade/model.php index 3b911ec8ca..383ff9f5fc 100644 --- a/module/upgrade/model.php +++ b/module/upgrade/model.php @@ -2,8 +2,8 @@ /** * The model file of upgrade module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package upgrade * @version $Id: model.php 5019 2013-07-05 02:02:31Z wyd621@gmail.com $ diff --git a/module/upgrade/view/confirm.html.php b/module/upgrade/view/confirm.html.php index 930a23c7b3..760dc2e47a 100644 --- a/module/upgrade/view/confirm.html.php +++ b/module/upgrade/view/confirm.html.php @@ -2,8 +2,8 @@ /** * The html template file of confirm method of upgrade module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package upgrade * @version $Id: confirm.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/upgrade/view/execute.html.php b/module/upgrade/view/execute.html.php index cb27514bf6..eca1605af7 100644 --- a/module/upgrade/view/execute.html.php +++ b/module/upgrade/view/execute.html.php @@ -2,8 +2,8 @@ /** * The html template file of execute method of upgrade module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package upgrade * @version $Id: execute.html.php 5119 2013-07-12 08:06:42Z wyd621@gmail.com $ diff --git a/module/upgrade/view/index.html.php b/module/upgrade/view/index.html.php index 7d3147059e..e3b1e53995 100644 --- a/module/upgrade/view/index.html.php +++ b/module/upgrade/view/index.html.php @@ -2,8 +2,8 @@ /** * The html template file of index method of upgrade module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package upgrade * @version $Id: index.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/upgrade/view/selectversion.html.php b/module/upgrade/view/selectversion.html.php index cc5d253618..a76a23b227 100644 --- a/module/upgrade/view/selectversion.html.php +++ b/module/upgrade/view/selectversion.html.php @@ -2,8 +2,8 @@ /** * The html template file of select version method of upgrade module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package upgrade * @version $Id: selectversion.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/user/control.php b/module/user/control.php index bdd07faec4..58a7791ef3 100644 --- a/module/user/control.php +++ b/module/user/control.php @@ -2,8 +2,8 @@ /** * The control file of user module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package user * @version $Id: control.php 5005 2013-07-03 08:39:11Z chencongzhi520@gmail.com $ diff --git a/module/user/lang/en.php b/module/user/lang/en.php index 2ce418c494..b11a4906f0 100644 --- a/module/user/lang/en.php +++ b/module/user/lang/en.php @@ -2,8 +2,8 @@ /** * The user module English file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package user * @version $Id: en.php 5053 2013-07-06 08:17:37Z wyd621@gmail.com $ diff --git a/module/user/lang/zh-cn.php b/module/user/lang/zh-cn.php index afe37eb89d..338ac67d72 100644 --- a/module/user/lang/zh-cn.php +++ b/module/user/lang/zh-cn.php @@ -2,8 +2,8 @@ /** * The user module zh-cn file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package user * @version $Id: zh-cn.php 5053 2013-07-06 08:17:37Z wyd621@gmail.com $ diff --git a/module/user/lang/zh-tw.php b/module/user/lang/zh-tw.php index 8ef50e990c..8edcf2fdc2 100644 --- a/module/user/lang/zh-tw.php +++ b/module/user/lang/zh-tw.php @@ -2,8 +2,8 @@ /** * The user module zh-tw file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青島易軟天創網絡科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package user * @version $Id: zh-tw.php 5053 2013-07-06 08:17:37Z wyd621@gmail.com $ diff --git a/module/user/model.php b/module/user/model.php index f9f2eba19b..5b36374f0e 100644 --- a/module/user/model.php +++ b/module/user/model.php @@ -2,8 +2,8 @@ /** * The model file of user module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package user * @version $Id: model.php 5005 2013-07-03 08:39:11Z chencongzhi520@gmail.com $ diff --git a/module/user/view/batchcreate.html.php b/module/user/view/batchcreate.html.php index eed8f89eaf..a201151bcd 100644 --- a/module/user/view/batchcreate.html.php +++ b/module/user/view/batchcreate.html.php @@ -2,8 +2,8 @@ /** * The batch create view of user module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yangyang Shi * @package story * @version $Id$ diff --git a/module/user/view/batchedit.html.php b/module/user/view/batchedit.html.php index 7d596ffbea..2ad833b434 100644 --- a/module/user/view/batchedit.html.php +++ b/module/user/view/batchedit.html.php @@ -2,8 +2,8 @@ /** * The batch create view of user module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yangyang Shi * @package story * @version $Id$ diff --git a/module/user/view/bug.html.php b/module/user/view/bug.html.php index 73973b4133..ee2c923e43 100644 --- a/module/user/view/bug.html.php +++ b/module/user/view/bug.html.php @@ -2,8 +2,8 @@ /** * The bug view file of dashboard module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dashboard * @version $Id: bug.html.php 4771 2013-05-05 07:41:02Z chencongzhi520@gmail.com $ diff --git a/module/user/view/create.html.php b/module/user/view/create.html.php index 3d69982210..1d68c04705 100644 --- a/module/user/view/create.html.php +++ b/module/user/view/create.html.php @@ -2,8 +2,8 @@ /** * The create view of user module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package user * @version $Id: create.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/user/view/deny.html.php b/module/user/view/deny.html.php index 37bbc0f8d1..2e06c3ad77 100644 --- a/module/user/view/deny.html.php +++ b/module/user/view/deny.html.php @@ -2,8 +2,8 @@ /** * The html template file of deny method of user module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: deny.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/user/view/dynamic.html.php b/module/user/view/dynamic.html.php index 44ab52f910..5439510581 100644 --- a/module/user/view/dynamic.html.php +++ b/module/user/view/dynamic.html.php @@ -2,8 +2,8 @@ /** * The action->dynamic view file of dashboard module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dashboard * @version $Id: action->dynamic.html.php 1477 2011-03-01 15:25:50Z wwccss $ diff --git a/module/user/view/edit.html.php b/module/user/view/edit.html.php index ed3b9e31ca..667a94c3dd 100644 --- a/module/user/view/edit.html.php +++ b/module/user/view/edit.html.php @@ -2,8 +2,8 @@ /** * The edit view of user module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package user * @version $Id: edit.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/user/view/login.html.php b/module/user/view/login.html.php index 73b737e2a5..0487ccf2dd 100644 --- a/module/user/view/login.html.php +++ b/module/user/view/login.html.php @@ -2,8 +2,8 @@ /** * The html template file of login method of user module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: login.html.php 5084 2013-07-10 01:31:38Z wyd621@gmail.com $ diff --git a/module/user/view/m.login.html.php b/module/user/view/m.login.html.php index 25d102e37c..8d1e5966cd 100755 --- a/module/user/view/m.login.html.php +++ b/module/user/view/m.login.html.php @@ -2,8 +2,8 @@ /** * The html template file of login method of user module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Yidong Wang * @package ZenTaoPMS * @version $Id: login.html.php 4612 2013-03-18 07:46:16Z wwccss $ diff --git a/module/user/view/managecontacts.html.php b/module/user/view/managecontacts.html.php index 3538570632..16f218588d 100644 --- a/module/user/view/managecontacts.html.php +++ b/module/user/view/managecontacts.html.php @@ -2,8 +2,8 @@ /** * The contacts manage page of user module. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author chunsheng wang * @package user * @version $Id$ diff --git a/module/user/view/profile.html.php b/module/user/view/profile.html.php index b59f820ceb..8143ea8fa0 100644 --- a/module/user/view/profile.html.php +++ b/module/user/view/profile.html.php @@ -2,8 +2,8 @@ /** * The profile view file of user module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package user * @version $Id: profile.html.php 4976 2013-07-02 08:15:31Z wyd621@gmail.com $ diff --git a/module/user/view/project.html.php b/module/user/view/project.html.php index 30f7cc02b8..7a4c793b92 100644 --- a/module/user/view/project.html.php +++ b/module/user/view/project.html.php @@ -2,8 +2,8 @@ /** * The project view file of dashboard module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dashboard * @version $Id: project.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/user/view/story.html.php b/module/user/view/story.html.php index f8609844d6..7cf0a40109 100644 --- a/module/user/view/story.html.php +++ b/module/user/view/story.html.php @@ -2,8 +2,8 @@ /** * The story view file of dashboard module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Congzhi Chen * @package dashboard * @version $Id: story.html.php 4771 2013-05-05 07:41:02Z chencongzhi520@gmail.com $ diff --git a/module/user/view/task.html.php b/module/user/view/task.html.php index f2ede74e17..6f2a54eaee 100644 --- a/module/user/view/task.html.php +++ b/module/user/view/task.html.php @@ -2,8 +2,8 @@ /** * The task view file of dashboard module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dashboard * @version $Id: task.html.php 4771 2013-05-05 07:41:02Z chencongzhi520@gmail.com $ diff --git a/module/user/view/team.html.php b/module/user/view/team.html.php index 86b93423c8..ad31f2758d 100644 --- a/module/user/view/team.html.php +++ b/module/user/view/team.html.php @@ -2,8 +2,8 @@ /** * The team view file of dashboard module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dashboard * @version $Id: team.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/user/view/testcase.html.php b/module/user/view/testcase.html.php index 35d5a91915..2860d79e26 100755 --- a/module/user/view/testcase.html.php +++ b/module/user/view/testcase.html.php @@ -2,8 +2,8 @@ /** * The test view file of dashboard module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dashboard * @version $Id: test.html.php 1191 2010-11-13 07:30:35Z jajacn@126.com $ diff --git a/module/user/view/testtask.html.php b/module/user/view/testtask.html.php index 751abdfdae..7b3ab45ab8 100755 --- a/module/user/view/testtask.html.php +++ b/module/user/view/testtask.html.php @@ -2,8 +2,8 @@ /** * The testtask view file of my module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dashboard * @version $Id$ diff --git a/module/user/view/todo.html.php b/module/user/view/todo.html.php index 206773bf95..be335268fa 100644 --- a/module/user/view/todo.html.php +++ b/module/user/view/todo.html.php @@ -2,8 +2,8 @@ /** * The todo view file of dashboard module of ZenTaoPMS. * - * @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package dashboard * @version $Id: todo.html.php 4744 2013-05-04 02:41:05Z wyd621@gmail.com $ diff --git a/tools/replace.sh b/tools/replace.sh new file mode 100755 index 0000000000..8536f5eb8b --- /dev/null +++ b/tools/replace.sh @@ -0,0 +1,17 @@ +#replace title +foreachd(){ + for file in `ls $1` + do + if [ -d $1/$file ] + then + echo "into dir $1/$file" + foreachd $1/$file + elif [ -f $1/$file ] + then +# sed -i '1,11s/\@license.*$/\@license ZPL \(http:\/\/zpl\.pub\/page\/zplv11\.html\)/g' $1/$file + sed -i '1,11s/\@copyright.*$/\@copyright Copyright 2009-2015 青岛易软天创网络科技有限公司\(QingDao Nature Easy Soft Network Technology Co,LTD, www\.cnezsoft\.com\)/g' $1/$file + fi + done +} + +foreachd $1 diff --git a/www/index.php b/www/index.php index aa7ac09a6b..79c38fe0df 100644 --- a/www/index.php +++ b/www/index.php @@ -4,8 +4,8 @@ * * All request should be routed by this router. * - * @copyright Copyright 2009-2013 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: index.php 5036 2013-07-06 05:26:44Z wyd621@gmail.com $ diff --git a/www/theme/default/m.style.css b/www/theme/default/m.style.css index fca6616fc9..8206cb7ec0 100644 --- a/www/theme/default/m.style.css +++ b/www/theme/default/m.style.css @@ -1,8 +1,8 @@ /** * The css file of ZenTaoPMS. * -* @copyright Copyright 2009-2013 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com) -* @license LGPL (http://www.gnu.org/licenses/lgpl.html) +* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) +* @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package front * @version $Id: style.css 1454 2009-10-23 01:45:26Z wwccss $ diff --git a/www/theme/default/style.css b/www/theme/default/style.css index 2247c91213..aa7e5f12b7 100644 --- a/www/theme/default/style.css +++ b/www/theme/default/style.css @@ -1,8 +1,8 @@ /** * The css file of ZenTaoPMS. * -* @copyright Copyright 2009-2013 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com) -* @license LGPL (http://www.gnu.org/licenses/lgpl.html) +* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) +* @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package front * @version $Id: style.css 1454 2009-10-23 01:45:26Z wwccss $ diff --git a/www/upgrade.php b/www/upgrade.php index 6988cd9979..0b49f09f30 100644 --- a/www/upgrade.php +++ b/www/upgrade.php @@ -2,8 +2,8 @@ /** * The upgrade router file of ZenTaoPMS. * - * @copyright Copyright 2009-2013 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com) - * @license LGPL (http://www.gnu.org/licenses/lgpl.html) + * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL (http://zpl.pub/page/zplv11.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: upgrade.php 4677 2013-04-26 06:23:58Z chencongzhi520@gmail.com $ From fb4eed1c39cc98fc7602158164fbbd2d783af0f0 Mon Sep 17 00:00:00 2001 From: wangyidong Date: Wed, 28 Jan 2015 16:31:03 +0800 Subject: [PATCH 10/10] * finish task #2190. --- module/common/lang/en.php | 1 + module/common/lang/zh-cn.php | 959 +++++++++--------- module/install/control.php | 13 + module/install/js/license.js | 4 + module/install/lang/en.php | 3 +- module/install/lang/zh-cn.php | 2 + module/install/view/index.html.php | 2 +- module/install/view/license.html.php | 29 + module/upgrade/control.php | 26 + module/upgrade/js/license.js | 4 + module/upgrade/lang/en.php | 1 + module/upgrade/lang/zh-cn.php | 1 + .../view/{index.html.php => backup.html.php} | 0 module/upgrade/view/license.html.php | 29 + 14 files changed, 593 insertions(+), 481 deletions(-) create mode 100644 module/install/js/license.js create mode 100644 module/install/view/license.html.php create mode 100644 module/upgrade/js/license.js rename module/upgrade/view/{index.html.php => backup.html.php} (100%) create mode 100644 module/upgrade/view/license.html.php diff --git a/module/common/lang/en.php b/module/common/lang/en.php index 0b1c0dbe47..99a9166856 100644 --- a/module/common/lang/en.php +++ b/module/common/lang/en.php @@ -28,6 +28,7 @@ $lang->aboutZenTao = 'About'; $lang->profile = 'Profile'; $lang->changePassword = 'Password'; $lang->runInfo = "
Time: %s ms, Memory: %s KB, Queries: %s.
"; +$lang->agreement = "I Agree to the Z PUBLIC LICENSE 1.1, and promise to keep the logo, link of Zentao."; $lang->reset = 'Reset'; $lang->refresh = 'Refresh'; diff --git a/module/common/lang/zh-cn.php b/module/common/lang/zh-cn.php index 960b992861..2bcf595613 100644 --- a/module/common/lang/zh-cn.php +++ b/module/common/lang/zh-cn.php @@ -1,481 +1,482 @@ - - * @package ZenTaoPMS - * @version $Id: zh-cn.php 5116 2013-07-12 06:37:48Z chencongzhi520@gmail.com $ - * @link http://www.zentao.net - */ -$lang->arrow = '  '; -$lang->colon = '::'; -$lang->comma = ','; -$lang->dot = '。'; -$lang->at = ' 于 '; -$lang->downArrow = '↓'; -$lang->null = '空'; -$lang->ellipsis = '…'; - -$lang->zentaoPMS = '禅道'; -$lang->welcome = "%s项目管理系统"; -$lang->myControl = "我的地盘"; -$lang->currentPos = '当前位置:'; -$lang->logout = '退出'; -$lang->login = '登录'; -$lang->aboutZenTao = '关于'; -$lang->profile = '个人档案'; -$lang->changePassword = '更改密码'; -$lang->runInfo = "
时间: %s 毫秒, 内存: %s KB, 查询: %s.
"; - -$lang->reset = '重填'; -$lang->refresh = '刷新'; -$lang->edit = '编辑'; -$lang->copy = '复制'; -$lang->delete = '删除'; -$lang->close = '关闭'; -$lang->link = '关联'; -$lang->unlink = '移除'; -$lang->import = '导入'; -$lang->export = '导出'; -$lang->setFileName = '文件名:'; -$lang->activate = '激活'; -$lang->submitting = '稍候...'; -$lang->save = '保存'; -$lang->confirm = '确认'; -$lang->preview = '查看'; -$lang->goback = '返回'; -$lang->goPC = 'PC版'; -$lang->go = 'GO'; -$lang->more = '更多'; -$lang->day = '天'; - -$lang->actions = '操作'; -$lang->comment = '备注'; -$lang->history = '历史记录'; -$lang->attatch = '附件'; -$lang->reverse = '切换顺序'; -$lang->switchDisplay= '切换显示'; -$lang->switchHelp = '切换帮助'; -$lang->addFiles = '上传了附件 '; -$lang->files = '附件 '; -$lang->pasteText = '粘贴文本 '; -$lang->uploadImages = '多图上传 '; -$lang->timeout = '连接超时,请检查网络环境,或重试!'; -$lang->repairTable = '数据库表可能损坏,请用phpmyadmin或myisamchk检查修复。'; -$lang->duplicate = '已有相同标题的%s'; -$lang->unfold = '+'; -$lang->fold = '-'; - -$lang->selectAll = '全选'; -$lang->selectReverse = '反选'; -$lang->notFound = '抱歉,您访问的对象并不存在!'; -$lang->showAll = '[[全部显示]]'; -$lang->hideClosed = '[[显示进行中]]'; - -$lang->future = '未来'; -$lang->year = '年'; -$lang->workingHour = '工时'; - -$lang->idAB = 'ID'; -$lang->priAB = 'P'; -$lang->statusAB = '状态'; -$lang->openedByAB = '创建'; -$lang->assignedToAB = '指派'; -$lang->typeAB = '类型'; - -$lang->common = new stdclass(); -$lang->common->common = '公有模块'; - -/* 主导航菜单。*/ -$lang->menu = new stdclass(); -$lang->menu->my = ' 我的地盘|my|index'; -$lang->menu->product = '产品|product|index'; -$lang->menu->project = '项目|project|index'; -$lang->menu->qa = '测试|qa|index'; -$lang->menu->doc = '文档|doc|index'; -$lang->menu->report = '统计|report|index'; -$lang->menu->company = '组织|company|index'; -$lang->menu->admin = '后台|admin|index'; - -/* 查询条中可以选择的对象列表。*/ -$lang->searchObjects['bug'] = 'Bug'; -$lang->searchObjects['story'] = '需求'; -$lang->searchObjects['task'] = '任务'; -$lang->searchObjects['testcase'] = '用例'; -$lang->searchObjects['project'] = '项目'; -$lang->searchObjects['product'] = '产品'; -$lang->searchObjects['user'] = '用户'; -$lang->searchObjects['build'] = '版本'; -$lang->searchObjects['release'] = '发布'; -$lang->searchObjects['productplan'] = '产品计划'; -$lang->searchObjects['testtask'] = '测试版本'; -$lang->searchObjects['doc'] = '文档'; -$lang->searchTips = '编号(ctrl+g)'; - -/* 导入支持的编码格式。*/ -$lang->importEncodeList['gbk'] = 'GBK'; -$lang->importEncodeList['big5'] = 'BIG5'; -$lang->importEncodeList['utf-8'] = 'UTF-8'; - -/* 导出文件的类型列表。*/ -$lang->exportFileTypeList['csv'] = 'csv'; -$lang->exportFileTypeList['xml'] = 'xml'; -$lang->exportFileTypeList['html'] = 'html'; - -$lang->exportTypeList['all'] = '全部记录'; -$lang->exportTypeList['selected'] = '选中记录'; - -/* 语言 */ -$lang->lang = 'Language'; - -/* 风格列表。*/ -$lang->theme = '主题'; -$lang->themes['default'] = '默认'; -$lang->themes['green'] = '绿色'; -$lang->themes['red'] = '红色'; -$lang->themes['lightblue'] = '亮蓝'; -$lang->themes['blackberry'] = '黑莓'; - -/* 首页菜单设置。*/ -$lang->index = new stdclass(); -$lang->index->menu = new stdclass(); - -$lang->index->menu->product = '浏览产品|product|browse'; -$lang->index->menu->project = '浏览项目|project|browse'; - -/* 我的地盘菜单设置。*/ -$lang->my = new stdclass(); -$lang->my->menu = new stdclass(); - -$lang->my->menu->account = ' %s' . $lang->arrow . ''; -$lang->my->menu->index = '首页|my|index'; -$lang->my->menu->todo = array('link' => '待办|my|todo|', 'subModule' => 'todo'); -$lang->my->menu->task = array('link' => '任务|my|task|', 'subModule' => 'task'); -$lang->my->menu->bug = array('link' => 'Bug|my|bug|', 'subModule' => 'bug'); -$lang->my->menu->testtask = array('link' => '测试|my|testtask|', 'subModule' => 'testcase,testtask', 'alias' => 'testcase'); -$lang->my->menu->story = array('link' => '需求|my|story|', 'subModule' => 'story'); -$lang->my->menu->myProject = '项目|my|project|'; -$lang->my->menu->dynamic = '动态|my|dynamic|'; -$lang->my->menu->profile = array('link' => '档案|my|profile', 'alias' => 'editprofile'); -$lang->my->menu->changePassword = '密码|my|changepassword'; - -$lang->todo = new stdclass(); -$lang->todo->menu = $lang->my->menu; - -/* 产品视图设置。*/ -$lang->product = new stdclass(); -$lang->product->menu = new stdclass(); - -$lang->product->menu->list = '%s'; -$lang->product->menu->story = array('link' => '需求|product|browse|productID=%s', 'alias' => 'batchedit', 'subModule' => 'story'); -$lang->product->menu->dynamic = '动态|product|dynamic|productID=%s'; -$lang->product->menu->plan = array('link' => '计划|productplan|browse|productID=%s', 'subModule' => 'productplan'); -$lang->product->menu->release = array('link' => '发布|release|browse|productID=%s', 'subModule' => 'release'); -$lang->product->menu->roadmap = '路线图|product|roadmap|productID=%s'; -$lang->product->menu->doc = array('link' => '文档|product|doc|productID=%s', 'subModule' => 'doc'); -$lang->product->menu->module = '模块|tree|browse|productID=%s&view=story'; -$lang->product->menu->view = array('link' => '概况|product|view|productID=%s', 'alias' => 'edit'); -$lang->product->menu->project = '项目|product|project|status=all&productID=%s'; -$lang->product->menu->create = array('link' => ' 添加产品|product|create', 'float' => 'right'); -$lang->product->menu->all = array('link' => ' 所有产品|product|index|locate=no&productID=%s', 'float' => 'right'); - -$lang->story = new stdclass(); -$lang->productplan = new stdclass(); -$lang->release = new stdclass(); - -$lang->story->menu = $lang->product->menu; -$lang->productplan->menu = $lang->product->menu; -$lang->release->menu = $lang->product->menu; - -/* 项目视图菜单设置。*/ -$lang->project = new stdclass(); -$lang->project->menu = new stdclass(); - -$lang->project->menu->list = '%s'; -$lang->project->menu->task = array('link' => '任务|project|task|projectID=%s', 'subModule' => 'task,tree', 'alias' => 'grouptask,importtask,burn,importbug'); -$lang->project->menu->story = array('link' => '需求|project|story|projectID=%s', 'subModule' => 'story', 'alias' => 'linkstory'); -$lang->project->menu->bug = 'Bug|project|bug|projectID=%s'; -$lang->project->menu->dynamic = '动态|project|dynamic|projectID=%s'; -$lang->project->menu->build = array('link' => '版本|project|build|projectID=%s', 'subModule' => 'build'); -$lang->project->menu->testtask = '测试|project|testtask|projectID=%s'; -$lang->project->menu->team = array('link' => '团队|project|team|projectID=%s', 'alias' => 'managemembers'); -$lang->project->menu->doc = array('link' => '文档|project|doc|porjectID=%s', 'subModule' => 'doc'); -$lang->project->menu->product = '产品|project|manageproducts|projectID=%s'; -$lang->project->menu->view = array('link' => '概况|project|view|projectID=%s', 'alias' => 'edit,start,suspend,putoff,close'); -$lang->project->menu->create = array('link' => ' 添加项目|project|create', 'float' => 'right'); -$lang->project->menu->all = array('link' => ' 所有项目|project|index|locate=no&status=undone&projectID=%s', 'float' => 'right'); - -$lang->task = new stdclass(); -$lang->build = new stdclass(); -$lang->task->menu = $lang->project->menu; -$lang->build->menu = $lang->project->menu; - -/* QA视图菜单设置。*/ -$lang->bug = new stdclass(); -$lang->bug->menu = new stdclass(); - -$lang->bug->menu->product = '%s'; -$lang->bug->menu->bug = array('link' => 'Bug|bug|browse|productID=%s', 'alias' => 'view,create,batchcreate,edit,resolve,close,activate,report,batchedit,confirmbug,assignto', 'subModule' => 'tree'); -$lang->bug->menu->testcase = array('link' => '用例|testcase|browse|productID=%s'); -$lang->bug->menu->testtask = array('link' => '版本|testtask|browse|productID=%s'); - -$lang->testcase = new stdclass(); -$lang->testcase->menu = new stdclass(); - -$lang->testcase->menu->product = '%s'; -$lang->testcase->menu->bug = array('link' => 'Bug|bug|browse|productID=%s'); -$lang->testcase->menu->testcase = array('link' => '用例|testcase|browse|productID=%s', 'alias' => 'view,create,batchcreate,edit,batchedit,showimport,groupcase', 'subModule' => 'tree'); -$lang->testcase->menu->testtask = array('link' => '版本|testtask|browse|productID=%s', 'alias' => 'view,create,edit,linkcase,cases,start,close,batchrun,groupcase'); - -$lang->testtask = new stdclass(); -$lang->testtask->menu = $lang->testcase->menu; - -/* 文档视图菜单设置。*/ -$lang->doc = new stdclass(); -$lang->doc->menu = new stdclass(); - -$lang->doc->menu->list = '%s'; -$lang->doc->menu->browse = array('link' => '文档|doc|browse|libID=%s', 'alias' => 'view,create,edit'); -$lang->doc->menu->edit = '编辑|doc|editLib|libID=%s'; -$lang->doc->menu->module = '分类|tree|browse|libID=%s&viewType=doc'; -$lang->doc->menu->delete = array('link' => '删除|doc|deleteLib|libID=%s', 'target' => 'hiddenwin'); -$lang->doc->menu->create = array('link' => ' 添加文档库|doc|createLib', 'float' => 'right'); - -/* 统计视图菜单设置。*/ -$lang->report = new stdclass(); -$lang->report->menu = new stdclass(); - -$lang->report->menu->product = array('link' => '产品|report|productinfo'); -$lang->report->menu->prj = array('link' => '项目|report|projectdeviation'); -$lang->report->menu->test = array('link' => '测试|report|bugsummary', 'alias' => 'bugassign'); -$lang->report->menu->staff = array('link' => '组织|report|workload'); - -/* 组织结构视图菜单设置。*/ -$lang->company = new stdclass(); -$lang->company->menu = new stdclass(); -$lang->company->menu->name = '%s' . $lang->arrow; -$lang->company->menu->browseUser = array('link' => '用户|company|browse', 'subModule' => 'user'); -$lang->company->menu->dept = array('link' => '部门|dept|browse', 'subModule' => 'dept'); -$lang->company->menu->browseGroup = array('link' => '权限|group|browse', 'subModule' => 'group'); -$lang->company->menu->view = array('link' => '公司|company|view', 'alias' => 'edit'); -$lang->company->menu->dynamic = '动态|company|dynamic|'; -$lang->company->menu->addGroup = array('link' => ' 添加分组|group|create', 'float' => 'right'); -$lang->company->menu->batchAddUser = array('link' => ' 批量添加|user|batchCreate|dept=%s', 'subModule' => 'user', 'float' => 'right'); -$lang->company->menu->addUser = array('link' => ' 添加用户|user|create|dept=%s', 'subModule' => 'user', 'float' => 'right'); - -$lang->dept = new stdclass(); -$lang->group = new stdclass(); -$lang->user = new stdclass(); - -$lang->dept->menu = $lang->company->menu; -$lang->group->menu = $lang->company->menu; -$lang->user->menu = $lang->company->menu; - -/* 后台管理菜单设置。*/ -$lang->admin = new stdclass(); -$lang->admin->menu = new stdclass(); -$lang->admin->menu->index = array('link' => '首页|admin|index'); -$lang->admin->menu->extension = array('link' => '扩展|extension|browse', 'subModule' => 'extension,editor'); -$lang->admin->menu->custom = array('link' => '自定义|custom|index', 'subModule' => 'custom'); -$lang->admin->menu->mail = array('link' => '发信|mail|index', 'subModule' => 'mail'); -$lang->admin->menu->convert = array('link' => '导入|convert|index', 'subModule' => 'convert'); -$lang->admin->menu->backup = array('link' => '备份|backup|index', 'subModule' => 'backup'); -$lang->admin->menu->trashes = array('link' => '回收站|action|trash', 'subModule' => 'action'); - -$lang->convert = new stdclass(); -$lang->upgrade = new stdclass(); -$lang->action = new stdclass(); -$lang->backup = new stdclass(); -$lang->extension = new stdclass(); -$lang->custom = new stdclass(); -$lang->editor = new stdclass(); -$lang->mail = new stdclass(); - -$lang->convert->menu = $lang->admin->menu; -$lang->upgrade->menu = $lang->admin->menu; -$lang->action->menu = $lang->admin->menu; -$lang->backup->menu = $lang->admin->menu; -$lang->extension->menu = $lang->admin->menu; -$lang->custom->menu = $lang->admin->menu; -$lang->editor->menu = $lang->admin->menu; -$lang->mail->menu = $lang->admin->menu; - -/* 菜单分组。*/ -$lang->menugroup = new stdclass(); -$lang->menugroup->release = 'product'; -$lang->menugroup->story = 'product'; -$lang->menugroup->productplan = 'product'; -$lang->menugroup->task = 'project'; -$lang->menugroup->build = 'project'; -$lang->menugroup->convert = 'admin'; -$lang->menugroup->upgrade = 'admin'; -$lang->menugroup->user = 'company'; -$lang->menugroup->group = 'company'; -$lang->menugroup->bug = 'qa'; -$lang->menugroup->testcase = 'qa'; -$lang->menugroup->testtask = 'qa'; -$lang->menugroup->people = 'company'; -$lang->menugroup->dept = 'company'; -$lang->menugroup->todo = 'my'; -$lang->menugroup->action = 'admin'; -$lang->menugroup->backup = 'admin'; -$lang->menugroup->extension = 'admin'; -$lang->menugroup->custom = 'admin'; -$lang->menugroup->editor = 'admin'; -$lang->menugroup->mail = 'admin'; - -/* 错误提示信息。*/ -$lang->error = new stdclass(); -$lang->error->companyNotFound = "您访问的域名 %s 没有对应的公司。"; -$lang->error->length = array("『%s』长度错误,应当为『%s』", "『%s』长度应当不超过『%s』,且不小于『%s』。"); -$lang->error->reg = "『%s』不符合格式,应当为:『%s』。"; -$lang->error->unique = "『%s』已经有『%s』这条记录了。如果您确定该记录已删除,请到后台管理-回收站还原。。"; -$lang->error->gt = "『%s』应当大于『%s』。"; -$lang->error->ge = "『%s』应当不小于『%s』。"; -$lang->error->notempty = "『%s』不能为空。"; -$lang->error->empty = "『%s』必须为空。"; -$lang->error->equal = "『%s』必须为『%s』。"; -$lang->error->int = array("『%s』应当是数字。", "『%s』应当介于『%s-%s』之间。"); -$lang->error->float = "『%s』应当是数字,可以是小数。"; -$lang->error->email = "『%s』应当为合法的EMAIL。"; -$lang->error->date = "『%s』应当为合法的日期。"; -$lang->error->account = "『%s』应当为合法的用户名。"; -$lang->error->passwordsame = "两次密码应当相等。"; -$lang->error->passwordrule = "密码应该符合规则,长度至少为六位。"; -$lang->error->accessDenied = '您没有访问权限'; -$lang->error->pasteImg = '您的浏览器不支持粘贴图片!'; -$lang->error->noData = '没有数据'; - -/* 分页信息。*/ -$lang->pager = new stdclass(); -$lang->pager->noRecord = "暂时没有记录"; -$lang->pager->digest = "共 %s 条记录,%s %s/%s   "; -$lang->pager->recPerPage= "每页 %s 条"; -$lang->pager->first = ""; -$lang->pager->pre = ""; -$lang->pager->next = ""; -$lang->pager->last = ""; -$lang->pager->locate = "GO!"; - -$lang->zentaoSite = "官方网站"; -$lang->chinaScrum = "Scrum社区  "; -$lang->agileTraining = "培训 "; -$lang->donate = "捐赠 "; -$lang->proVersion = " 专业版!   "; -$lang->downNotify = "下载桌面提醒"; - -$lang->suhosinInfo = "警告:数据太多,请在php.ini中修改sohusin.post.max_vars和sohusin.request.max_vars(设置更大的数)。 保存并重新启动apache,否则会造成部分数据无法保存。"; -$lang->pasteTextInfo = "粘贴文本到文本域中,每行文字作为一条数据的标题。"; - -$lang->noResultsMatch = "没有匹配结果"; -$lang->searchMore = "搜索此关键字的更多结果:"; -$lang->selectAnOption = "选择一个选项"; -$lang->selectSomeOptions = "选择一些选项"; -$lang->chooseUsersToMail = "选择要发信通知的用户..."; - -/* 时间格式设置。*/ -define('DT_DATETIME1', 'Y-m-d H:i:s'); -define('DT_DATETIME2', 'y-m-d H:i'); -define('DT_MONTHTIME1', 'n/d H:i'); -define('DT_MONTHTIME2', 'n月d日 H:i'); -define('DT_DATE1', 'Y-m-d'); -define('DT_DATE2', 'Ymd'); -define('DT_DATE3', 'Y年m月d日'); -define('DT_DATE4', 'n月j日'); -define('DT_TIME1', 'H:i:s'); -define('DT_TIME2', 'H:i'); - -/* datepicker 时间*/ -$lang->datepicker = new stdclass(); - -$lang->datepicker->dpText = new stdclass(); -$lang->datepicker->dpText->TEXT_OR = '或 '; -$lang->datepicker->dpText->TEXT_PREV_YEAR = '去年'; -$lang->datepicker->dpText->TEXT_PREV_MONTH = '上月'; -$lang->datepicker->dpText->TEXT_PREV_WEEK = '上周'; -$lang->datepicker->dpText->TEXT_YESTERDAY = '昨天'; -$lang->datepicker->dpText->TEXT_THIS_MONTH = '本月'; -$lang->datepicker->dpText->TEXT_THIS_WEEK = '本周'; -$lang->datepicker->dpText->TEXT_TODAY = '今天'; -$lang->datepicker->dpText->TEXT_NEXT_YEAR = '明年'; -$lang->datepicker->dpText->TEXT_NEXT_MONTH = '下月'; -$lang->datepicker->dpText->TEXT_CLOSE = '关闭'; -$lang->datepicker->dpText->TEXT_DATE = '选择时间段'; -$lang->datepicker->dpText->TEXT_CHOOSE_DATE = '选择日期'; - -$lang->datepicker->dayNames = array('日', '一', '二', '三', '四', '五', '六'); -$lang->datepicker->abbrDayNames = array('日', '一', '二', '三', '四', '五', '六'); -$lang->datepicker->monthNames = array('一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'); - -/* Common action icons 通用动作图标 */ -$lang->icons['todo'] = 'check'; -$lang->icons['product'] = 'cube'; -$lang->icons['bug'] = 'bug'; -$lang->icons['task'] = 'check-sign'; -$lang->icons['tasks'] = 'tasks'; -$lang->icons['project'] = 'folder-close-alt'; -$lang->icons['doc'] = 'file-text'; -$lang->icons['doclib'] = 'folder-close'; -$lang->icons['story'] = 'lightbulb'; -$lang->icons['release'] = 'tags'; -$lang->icons['roadmap'] = 'code-fork'; -$lang->icons['plan'] = 'flag'; -$lang->icons['dynamic'] = 'volume-up'; -$lang->icons['build'] = 'tag'; -$lang->icons['test'] = 'check'; -$lang->icons['testtask'] = 'check'; -$lang->icons['group'] = 'group'; -$lang->icons['team'] = 'group'; -$lang->icons['company'] = 'building'; -$lang->icons['user'] = 'user'; -$lang->icons['dept'] = 'sitemap'; -$lang->icons['tree'] = 'sitemap'; -$lang->icons['usecase'] = 'sitemap'; -$lang->icons['testcase'] = 'smile'; -$lang->icons['result'] = 'flag-checkered'; -$lang->icons['mail'] = 'envelope'; -$lang->icons['trash'] = 'trash'; -$lang->icons['extension'] = 'th-large'; -$lang->icons['app'] = 'th-large'; - -$lang->icons['results'] = 'flag-checkered'; -$lang->icons['create'] = 'plus'; -$lang->icons['post'] = 'edit'; -$lang->icons['batchCreate'] = 'plus-sign'; -$lang->icons['batchEdit'] = 'edit-sign'; -$lang->icons['batchClose'] = 'off'; -$lang->icons['edit'] = 'pencil'; -$lang->icons['delete'] = 'remove'; -$lang->icons['copy'] = 'copy'; -$lang->icons['report'] = 'bar-chart'; -$lang->icons['export'] = 'download-alt'; -$lang->icons['report-file'] = 'file-powerpoint'; -$lang->icons['import'] = 'upload-alt'; -$lang->icons['finish'] = 'ok-sign'; -$lang->icons['resolve'] = 'ok-sign'; -$lang->icons['start'] = 'play'; -$lang->icons['restart'] = 'play'; -$lang->icons['run'] = 'play'; -$lang->icons['runCase'] = 'play'; -$lang->icons['batchRun'] = 'play-sign'; -$lang->icons['assign'] = 'hand-right'; -$lang->icons['assignTo'] = 'hand-right'; -$lang->icons['change'] = 'random'; -$lang->icons['link'] = 'link'; -$lang->icons['close'] = 'off'; -$lang->icons['activate'] = 'off'; -$lang->icons['review'] = 'search'; -$lang->icons['confirm'] = 'search'; -$lang->icons['putoff'] = 'calendar'; -$lang->icons['suspend'] = 'pause'; -$lang->icons['pause'] = 'pause'; -$lang->icons['cancel'] = 'ban-circle'; -$lang->icons['recordEstimate'] = 'time'; -$lang->icons['customFields'] = 'cogs'; -$lang->icons['manage'] = 'cog'; -$lang->icons['unlock'] = 'unlock-alt'; -$lang->icons['confirmStoryChange'] = 'search'; - -include (dirname(__FILE__) . '/menuOrder.php'); + * @author Chunsheng Wang + * @package ZenTaoPMS + * @version $Id: zh-cn.php 5116 2013-07-12 06:37:48Z chencongzhi520@gmail.com $ + * @link http://www.zentao.net + */ +$lang->arrow = '  '; +$lang->colon = '::'; +$lang->comma = ','; +$lang->dot = '。'; +$lang->at = ' 于 '; +$lang->downArrow = '↓'; +$lang->null = '空'; +$lang->ellipsis = '…'; + +$lang->zentaoPMS = '禅道'; +$lang->welcome = "%s项目管理系统"; +$lang->myControl = "我的地盘"; +$lang->currentPos = '当前位置:'; +$lang->logout = '退出'; +$lang->login = '登录'; +$lang->aboutZenTao = '关于'; +$lang->profile = '个人档案'; +$lang->changePassword = '更改密码'; +$lang->runInfo = "
时间: %s 毫秒, 内存: %s KB, 查询: %s.
"; +$lang->agreement = "已阅读并同意《Z PUBLIC LICENSE授权协议1.1》。未经许可,不得去除、隐藏或遮掩然之系统的任何标志及链接。"; + +$lang->reset = '重填'; +$lang->refresh = '刷新'; +$lang->edit = '编辑'; +$lang->copy = '复制'; +$lang->delete = '删除'; +$lang->close = '关闭'; +$lang->link = '关联'; +$lang->unlink = '移除'; +$lang->import = '导入'; +$lang->export = '导出'; +$lang->setFileName = '文件名:'; +$lang->activate = '激活'; +$lang->submitting = '稍候...'; +$lang->save = '保存'; +$lang->confirm = '确认'; +$lang->preview = '查看'; +$lang->goback = '返回'; +$lang->goPC = 'PC版'; +$lang->go = 'GO'; +$lang->more = '更多'; +$lang->day = '天'; + +$lang->actions = '操作'; +$lang->comment = '备注'; +$lang->history = '历史记录'; +$lang->attatch = '附件'; +$lang->reverse = '切换顺序'; +$lang->switchDisplay= '切换显示'; +$lang->switchHelp = '切换帮助'; +$lang->addFiles = '上传了附件 '; +$lang->files = '附件 '; +$lang->pasteText = '粘贴文本 '; +$lang->uploadImages = '多图上传 '; +$lang->timeout = '连接超时,请检查网络环境,或重试!'; +$lang->repairTable = '数据库表可能损坏,请用phpmyadmin或myisamchk检查修复。'; +$lang->duplicate = '已有相同标题的%s'; +$lang->unfold = '+'; +$lang->fold = '-'; + +$lang->selectAll = '全选'; +$lang->selectReverse = '反选'; +$lang->notFound = '抱歉,您访问的对象并不存在!'; +$lang->showAll = '[[全部显示]]'; +$lang->hideClosed = '[[显示进行中]]'; + +$lang->future = '未来'; +$lang->year = '年'; +$lang->workingHour = '工时'; + +$lang->idAB = 'ID'; +$lang->priAB = 'P'; +$lang->statusAB = '状态'; +$lang->openedByAB = '创建'; +$lang->assignedToAB = '指派'; +$lang->typeAB = '类型'; + +$lang->common = new stdclass(); +$lang->common->common = '公有模块'; + +/* 主导航菜单。*/ +$lang->menu = new stdclass(); +$lang->menu->my = ' 我的地盘|my|index'; +$lang->menu->product = '产品|product|index'; +$lang->menu->project = '项目|project|index'; +$lang->menu->qa = '测试|qa|index'; +$lang->menu->doc = '文档|doc|index'; +$lang->menu->report = '统计|report|index'; +$lang->menu->company = '组织|company|index'; +$lang->menu->admin = '后台|admin|index'; + +/* 查询条中可以选择的对象列表。*/ +$lang->searchObjects['bug'] = 'Bug'; +$lang->searchObjects['story'] = '需求'; +$lang->searchObjects['task'] = '任务'; +$lang->searchObjects['testcase'] = '用例'; +$lang->searchObjects['project'] = '项目'; +$lang->searchObjects['product'] = '产品'; +$lang->searchObjects['user'] = '用户'; +$lang->searchObjects['build'] = '版本'; +$lang->searchObjects['release'] = '发布'; +$lang->searchObjects['productplan'] = '产品计划'; +$lang->searchObjects['testtask'] = '测试版本'; +$lang->searchObjects['doc'] = '文档'; +$lang->searchTips = '编号(ctrl+g)'; + +/* 导入支持的编码格式。*/ +$lang->importEncodeList['gbk'] = 'GBK'; +$lang->importEncodeList['big5'] = 'BIG5'; +$lang->importEncodeList['utf-8'] = 'UTF-8'; + +/* 导出文件的类型列表。*/ +$lang->exportFileTypeList['csv'] = 'csv'; +$lang->exportFileTypeList['xml'] = 'xml'; +$lang->exportFileTypeList['html'] = 'html'; + +$lang->exportTypeList['all'] = '全部记录'; +$lang->exportTypeList['selected'] = '选中记录'; + +/* 语言 */ +$lang->lang = 'Language'; + +/* 风格列表。*/ +$lang->theme = '主题'; +$lang->themes['default'] = '默认'; +$lang->themes['green'] = '绿色'; +$lang->themes['red'] = '红色'; +$lang->themes['lightblue'] = '亮蓝'; +$lang->themes['blackberry'] = '黑莓'; + +/* 首页菜单设置。*/ +$lang->index = new stdclass(); +$lang->index->menu = new stdclass(); + +$lang->index->menu->product = '浏览产品|product|browse'; +$lang->index->menu->project = '浏览项目|project|browse'; + +/* 我的地盘菜单设置。*/ +$lang->my = new stdclass(); +$lang->my->menu = new stdclass(); + +$lang->my->menu->account = ' %s' . $lang->arrow . ''; +$lang->my->menu->index = '首页|my|index'; +$lang->my->menu->todo = array('link' => '待办|my|todo|', 'subModule' => 'todo'); +$lang->my->menu->task = array('link' => '任务|my|task|', 'subModule' => 'task'); +$lang->my->menu->bug = array('link' => 'Bug|my|bug|', 'subModule' => 'bug'); +$lang->my->menu->testtask = array('link' => '测试|my|testtask|', 'subModule' => 'testcase,testtask', 'alias' => 'testcase'); +$lang->my->menu->story = array('link' => '需求|my|story|', 'subModule' => 'story'); +$lang->my->menu->myProject = '项目|my|project|'; +$lang->my->menu->dynamic = '动态|my|dynamic|'; +$lang->my->menu->profile = array('link' => '档案|my|profile', 'alias' => 'editprofile'); +$lang->my->menu->changePassword = '密码|my|changepassword'; + +$lang->todo = new stdclass(); +$lang->todo->menu = $lang->my->menu; + +/* 产品视图设置。*/ +$lang->product = new stdclass(); +$lang->product->menu = new stdclass(); + +$lang->product->menu->list = '%s'; +$lang->product->menu->story = array('link' => '需求|product|browse|productID=%s', 'alias' => 'batchedit', 'subModule' => 'story'); +$lang->product->menu->dynamic = '动态|product|dynamic|productID=%s'; +$lang->product->menu->plan = array('link' => '计划|productplan|browse|productID=%s', 'subModule' => 'productplan'); +$lang->product->menu->release = array('link' => '发布|release|browse|productID=%s', 'subModule' => 'release'); +$lang->product->menu->roadmap = '路线图|product|roadmap|productID=%s'; +$lang->product->menu->doc = array('link' => '文档|product|doc|productID=%s', 'subModule' => 'doc'); +$lang->product->menu->module = '模块|tree|browse|productID=%s&view=story'; +$lang->product->menu->view = array('link' => '概况|product|view|productID=%s', 'alias' => 'edit'); +$lang->product->menu->project = '项目|product|project|status=all&productID=%s'; +$lang->product->menu->create = array('link' => ' 添加产品|product|create', 'float' => 'right'); +$lang->product->menu->all = array('link' => ' 所有产品|product|index|locate=no&productID=%s', 'float' => 'right'); + +$lang->story = new stdclass(); +$lang->productplan = new stdclass(); +$lang->release = new stdclass(); + +$lang->story->menu = $lang->product->menu; +$lang->productplan->menu = $lang->product->menu; +$lang->release->menu = $lang->product->menu; + +/* 项目视图菜单设置。*/ +$lang->project = new stdclass(); +$lang->project->menu = new stdclass(); + +$lang->project->menu->list = '%s'; +$lang->project->menu->task = array('link' => '任务|project|task|projectID=%s', 'subModule' => 'task,tree', 'alias' => 'grouptask,importtask,burn,importbug'); +$lang->project->menu->story = array('link' => '需求|project|story|projectID=%s', 'subModule' => 'story', 'alias' => 'linkstory'); +$lang->project->menu->bug = 'Bug|project|bug|projectID=%s'; +$lang->project->menu->dynamic = '动态|project|dynamic|projectID=%s'; +$lang->project->menu->build = array('link' => '版本|project|build|projectID=%s', 'subModule' => 'build'); +$lang->project->menu->testtask = '测试|project|testtask|projectID=%s'; +$lang->project->menu->team = array('link' => '团队|project|team|projectID=%s', 'alias' => 'managemembers'); +$lang->project->menu->doc = array('link' => '文档|project|doc|porjectID=%s', 'subModule' => 'doc'); +$lang->project->menu->product = '产品|project|manageproducts|projectID=%s'; +$lang->project->menu->view = array('link' => '概况|project|view|projectID=%s', 'alias' => 'edit,start,suspend,putoff,close'); +$lang->project->menu->create = array('link' => ' 添加项目|project|create', 'float' => 'right'); +$lang->project->menu->all = array('link' => ' 所有项目|project|index|locate=no&status=undone&projectID=%s', 'float' => 'right'); + +$lang->task = new stdclass(); +$lang->build = new stdclass(); +$lang->task->menu = $lang->project->menu; +$lang->build->menu = $lang->project->menu; + +/* QA视图菜单设置。*/ +$lang->bug = new stdclass(); +$lang->bug->menu = new stdclass(); + +$lang->bug->menu->product = '%s'; +$lang->bug->menu->bug = array('link' => 'Bug|bug|browse|productID=%s', 'alias' => 'view,create,batchcreate,edit,resolve,close,activate,report,batchedit,confirmbug,assignto', 'subModule' => 'tree'); +$lang->bug->menu->testcase = array('link' => '用例|testcase|browse|productID=%s'); +$lang->bug->menu->testtask = array('link' => '版本|testtask|browse|productID=%s'); + +$lang->testcase = new stdclass(); +$lang->testcase->menu = new stdclass(); + +$lang->testcase->menu->product = '%s'; +$lang->testcase->menu->bug = array('link' => 'Bug|bug|browse|productID=%s'); +$lang->testcase->menu->testcase = array('link' => '用例|testcase|browse|productID=%s', 'alias' => 'view,create,batchcreate,edit,batchedit,showimport,groupcase', 'subModule' => 'tree'); +$lang->testcase->menu->testtask = array('link' => '版本|testtask|browse|productID=%s', 'alias' => 'view,create,edit,linkcase,cases,start,close,batchrun,groupcase'); + +$lang->testtask = new stdclass(); +$lang->testtask->menu = $lang->testcase->menu; + +/* 文档视图菜单设置。*/ +$lang->doc = new stdclass(); +$lang->doc->menu = new stdclass(); + +$lang->doc->menu->list = '%s'; +$lang->doc->menu->browse = array('link' => '文档|doc|browse|libID=%s', 'alias' => 'view,create,edit'); +$lang->doc->menu->edit = '编辑|doc|editLib|libID=%s'; +$lang->doc->menu->module = '分类|tree|browse|libID=%s&viewType=doc'; +$lang->doc->menu->delete = array('link' => '删除|doc|deleteLib|libID=%s', 'target' => 'hiddenwin'); +$lang->doc->menu->create = array('link' => ' 添加文档库|doc|createLib', 'float' => 'right'); + +/* 统计视图菜单设置。*/ +$lang->report = new stdclass(); +$lang->report->menu = new stdclass(); + +$lang->report->menu->product = array('link' => '产品|report|productinfo'); +$lang->report->menu->prj = array('link' => '项目|report|projectdeviation'); +$lang->report->menu->test = array('link' => '测试|report|bugsummary', 'alias' => 'bugassign'); +$lang->report->menu->staff = array('link' => '组织|report|workload'); + +/* 组织结构视图菜单设置。*/ +$lang->company = new stdclass(); +$lang->company->menu = new stdclass(); +$lang->company->menu->name = '%s' . $lang->arrow; +$lang->company->menu->browseUser = array('link' => '用户|company|browse', 'subModule' => 'user'); +$lang->company->menu->dept = array('link' => '部门|dept|browse', 'subModule' => 'dept'); +$lang->company->menu->browseGroup = array('link' => '权限|group|browse', 'subModule' => 'group'); +$lang->company->menu->view = array('link' => '公司|company|view', 'alias' => 'edit'); +$lang->company->menu->dynamic = '动态|company|dynamic|'; +$lang->company->menu->addGroup = array('link' => ' 添加分组|group|create', 'float' => 'right'); +$lang->company->menu->batchAddUser = array('link' => ' 批量添加|user|batchCreate|dept=%s', 'subModule' => 'user', 'float' => 'right'); +$lang->company->menu->addUser = array('link' => ' 添加用户|user|create|dept=%s', 'subModule' => 'user', 'float' => 'right'); + +$lang->dept = new stdclass(); +$lang->group = new stdclass(); +$lang->user = new stdclass(); + +$lang->dept->menu = $lang->company->menu; +$lang->group->menu = $lang->company->menu; +$lang->user->menu = $lang->company->menu; + +/* 后台管理菜单设置。*/ +$lang->admin = new stdclass(); +$lang->admin->menu = new stdclass(); +$lang->admin->menu->index = array('link' => '首页|admin|index'); +$lang->admin->menu->extension = array('link' => '扩展|extension|browse', 'subModule' => 'extension,editor'); +$lang->admin->menu->custom = array('link' => '自定义|custom|index', 'subModule' => 'custom'); +$lang->admin->menu->mail = array('link' => '发信|mail|index', 'subModule' => 'mail'); +$lang->admin->menu->convert = array('link' => '导入|convert|index', 'subModule' => 'convert'); +$lang->admin->menu->backup = array('link' => '备份|backup|index', 'subModule' => 'backup'); +$lang->admin->menu->trashes = array('link' => '回收站|action|trash', 'subModule' => 'action'); + +$lang->convert = new stdclass(); +$lang->upgrade = new stdclass(); +$lang->action = new stdclass(); +$lang->backup = new stdclass(); +$lang->extension = new stdclass(); +$lang->custom = new stdclass(); +$lang->editor = new stdclass(); +$lang->mail = new stdclass(); + +$lang->convert->menu = $lang->admin->menu; +$lang->upgrade->menu = $lang->admin->menu; +$lang->action->menu = $lang->admin->menu; +$lang->backup->menu = $lang->admin->menu; +$lang->extension->menu = $lang->admin->menu; +$lang->custom->menu = $lang->admin->menu; +$lang->editor->menu = $lang->admin->menu; +$lang->mail->menu = $lang->admin->menu; + +/* 菜单分组。*/ +$lang->menugroup = new stdclass(); +$lang->menugroup->release = 'product'; +$lang->menugroup->story = 'product'; +$lang->menugroup->productplan = 'product'; +$lang->menugroup->task = 'project'; +$lang->menugroup->build = 'project'; +$lang->menugroup->convert = 'admin'; +$lang->menugroup->upgrade = 'admin'; +$lang->menugroup->user = 'company'; +$lang->menugroup->group = 'company'; +$lang->menugroup->bug = 'qa'; +$lang->menugroup->testcase = 'qa'; +$lang->menugroup->testtask = 'qa'; +$lang->menugroup->people = 'company'; +$lang->menugroup->dept = 'company'; +$lang->menugroup->todo = 'my'; +$lang->menugroup->action = 'admin'; +$lang->menugroup->backup = 'admin'; +$lang->menugroup->extension = 'admin'; +$lang->menugroup->custom = 'admin'; +$lang->menugroup->editor = 'admin'; +$lang->menugroup->mail = 'admin'; + +/* 错误提示信息。*/ +$lang->error = new stdclass(); +$lang->error->companyNotFound = "您访问的域名 %s 没有对应的公司。"; +$lang->error->length = array("『%s』长度错误,应当为『%s』", "『%s』长度应当不超过『%s』,且不小于『%s』。"); +$lang->error->reg = "『%s』不符合格式,应当为:『%s』。"; +$lang->error->unique = "『%s』已经有『%s』这条记录了。如果您确定该记录已删除,请到后台管理-回收站还原。。"; +$lang->error->gt = "『%s』应当大于『%s』。"; +$lang->error->ge = "『%s』应当不小于『%s』。"; +$lang->error->notempty = "『%s』不能为空。"; +$lang->error->empty = "『%s』必须为空。"; +$lang->error->equal = "『%s』必须为『%s』。"; +$lang->error->int = array("『%s』应当是数字。", "『%s』应当介于『%s-%s』之间。"); +$lang->error->float = "『%s』应当是数字,可以是小数。"; +$lang->error->email = "『%s』应当为合法的EMAIL。"; +$lang->error->date = "『%s』应当为合法的日期。"; +$lang->error->account = "『%s』应当为合法的用户名。"; +$lang->error->passwordsame = "两次密码应当相等。"; +$lang->error->passwordrule = "密码应该符合规则,长度至少为六位。"; +$lang->error->accessDenied = '您没有访问权限'; +$lang->error->pasteImg = '您的浏览器不支持粘贴图片!'; +$lang->error->noData = '没有数据'; + +/* 分页信息。*/ +$lang->pager = new stdclass(); +$lang->pager->noRecord = "暂时没有记录"; +$lang->pager->digest = "共 %s 条记录,%s %s/%s   "; +$lang->pager->recPerPage= "每页 %s 条"; +$lang->pager->first = ""; +$lang->pager->pre = ""; +$lang->pager->next = ""; +$lang->pager->last = ""; +$lang->pager->locate = "GO!"; + +$lang->zentaoSite = "官方网站"; +$lang->chinaScrum = "Scrum社区  "; +$lang->agileTraining = "培训 "; +$lang->donate = "捐赠 "; +$lang->proVersion = " 专业版!   "; +$lang->downNotify = "下载桌面提醒"; + +$lang->suhosinInfo = "警告:数据太多,请在php.ini中修改sohusin.post.max_vars和sohusin.request.max_vars(设置更大的数)。 保存并重新启动apache,否则会造成部分数据无法保存。"; +$lang->pasteTextInfo = "粘贴文本到文本域中,每行文字作为一条数据的标题。"; + +$lang->noResultsMatch = "没有匹配结果"; +$lang->searchMore = "搜索此关键字的更多结果:"; +$lang->selectAnOption = "选择一个选项"; +$lang->selectSomeOptions = "选择一些选项"; +$lang->chooseUsersToMail = "选择要发信通知的用户..."; + +/* 时间格式设置。*/ +define('DT_DATETIME1', 'Y-m-d H:i:s'); +define('DT_DATETIME2', 'y-m-d H:i'); +define('DT_MONTHTIME1', 'n/d H:i'); +define('DT_MONTHTIME2', 'n月d日 H:i'); +define('DT_DATE1', 'Y-m-d'); +define('DT_DATE2', 'Ymd'); +define('DT_DATE3', 'Y年m月d日'); +define('DT_DATE4', 'n月j日'); +define('DT_TIME1', 'H:i:s'); +define('DT_TIME2', 'H:i'); + +/* datepicker 时间*/ +$lang->datepicker = new stdclass(); + +$lang->datepicker->dpText = new stdclass(); +$lang->datepicker->dpText->TEXT_OR = '或 '; +$lang->datepicker->dpText->TEXT_PREV_YEAR = '去年'; +$lang->datepicker->dpText->TEXT_PREV_MONTH = '上月'; +$lang->datepicker->dpText->TEXT_PREV_WEEK = '上周'; +$lang->datepicker->dpText->TEXT_YESTERDAY = '昨天'; +$lang->datepicker->dpText->TEXT_THIS_MONTH = '本月'; +$lang->datepicker->dpText->TEXT_THIS_WEEK = '本周'; +$lang->datepicker->dpText->TEXT_TODAY = '今天'; +$lang->datepicker->dpText->TEXT_NEXT_YEAR = '明年'; +$lang->datepicker->dpText->TEXT_NEXT_MONTH = '下月'; +$lang->datepicker->dpText->TEXT_CLOSE = '关闭'; +$lang->datepicker->dpText->TEXT_DATE = '选择时间段'; +$lang->datepicker->dpText->TEXT_CHOOSE_DATE = '选择日期'; + +$lang->datepicker->dayNames = array('日', '一', '二', '三', '四', '五', '六'); +$lang->datepicker->abbrDayNames = array('日', '一', '二', '三', '四', '五', '六'); +$lang->datepicker->monthNames = array('一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'); + +/* Common action icons 通用动作图标 */ +$lang->icons['todo'] = 'check'; +$lang->icons['product'] = 'cube'; +$lang->icons['bug'] = 'bug'; +$lang->icons['task'] = 'check-sign'; +$lang->icons['tasks'] = 'tasks'; +$lang->icons['project'] = 'folder-close-alt'; +$lang->icons['doc'] = 'file-text'; +$lang->icons['doclib'] = 'folder-close'; +$lang->icons['story'] = 'lightbulb'; +$lang->icons['release'] = 'tags'; +$lang->icons['roadmap'] = 'code-fork'; +$lang->icons['plan'] = 'flag'; +$lang->icons['dynamic'] = 'volume-up'; +$lang->icons['build'] = 'tag'; +$lang->icons['test'] = 'check'; +$lang->icons['testtask'] = 'check'; +$lang->icons['group'] = 'group'; +$lang->icons['team'] = 'group'; +$lang->icons['company'] = 'building'; +$lang->icons['user'] = 'user'; +$lang->icons['dept'] = 'sitemap'; +$lang->icons['tree'] = 'sitemap'; +$lang->icons['usecase'] = 'sitemap'; +$lang->icons['testcase'] = 'smile'; +$lang->icons['result'] = 'flag-checkered'; +$lang->icons['mail'] = 'envelope'; +$lang->icons['trash'] = 'trash'; +$lang->icons['extension'] = 'th-large'; +$lang->icons['app'] = 'th-large'; + +$lang->icons['results'] = 'flag-checkered'; +$lang->icons['create'] = 'plus'; +$lang->icons['post'] = 'edit'; +$lang->icons['batchCreate'] = 'plus-sign'; +$lang->icons['batchEdit'] = 'edit-sign'; +$lang->icons['batchClose'] = 'off'; +$lang->icons['edit'] = 'pencil'; +$lang->icons['delete'] = 'remove'; +$lang->icons['copy'] = 'copy'; +$lang->icons['report'] = 'bar-chart'; +$lang->icons['export'] = 'download-alt'; +$lang->icons['report-file'] = 'file-powerpoint'; +$lang->icons['import'] = 'upload-alt'; +$lang->icons['finish'] = 'ok-sign'; +$lang->icons['resolve'] = 'ok-sign'; +$lang->icons['start'] = 'play'; +$lang->icons['restart'] = 'play'; +$lang->icons['run'] = 'play'; +$lang->icons['runCase'] = 'play'; +$lang->icons['batchRun'] = 'play-sign'; +$lang->icons['assign'] = 'hand-right'; +$lang->icons['assignTo'] = 'hand-right'; +$lang->icons['change'] = 'random'; +$lang->icons['link'] = 'link'; +$lang->icons['close'] = 'off'; +$lang->icons['activate'] = 'off'; +$lang->icons['review'] = 'search'; +$lang->icons['confirm'] = 'search'; +$lang->icons['putoff'] = 'calendar'; +$lang->icons['suspend'] = 'pause'; +$lang->icons['pause'] = 'pause'; +$lang->icons['cancel'] = 'ban-circle'; +$lang->icons['recordEstimate'] = 'time'; +$lang->icons['customFields'] = 'cogs'; +$lang->icons['manage'] = 'cog'; +$lang->icons['unlock'] = 'unlock-alt'; +$lang->icons['confirmStoryChange'] = 'search'; + +include (dirname(__FILE__) . '/menuOrder.php'); diff --git a/module/install/control.php b/module/install/control.php index 57b019f9f6..7a7abfc18a 100644 --- a/module/install/control.php +++ b/module/install/control.php @@ -43,6 +43,19 @@ class install extends control $this->display(); } + /** + * Checking agree license. + * + * @access public + * @return void + */ + public function license() + { + $this->view->title = $this->lang->install->welcome; + $this->view->license = file_get_contents($this->app->getBasePath() . 'doc/LICENSE'); + $this->display(); + } + /** * Check the system. * diff --git a/module/install/js/license.js b/module/install/js/license.js new file mode 100644 index 0000000000..99df7e1e08 --- /dev/null +++ b/module/install/js/license.js @@ -0,0 +1,4 @@ +$(document).ready(function() +{ + $('#agree').change(function(){$('.btn-install').attr('disabled', !$(this).prop('checked'));}); +}); diff --git a/module/install/lang/en.php b/module/install/lang/en.php index a1c644d1f7..ad0f17ae7f 100644 --- a/module/install/lang/en.php +++ b/module/install/lang/en.php @@ -21,6 +21,7 @@ $lang->install->start = 'Start install'; $lang->install->keepInstalling = 'Keep install this version'; $lang->install->seeLatestRelease = 'See the latest release.'; $lang->install->welcome = 'Welcome to use ZenTaoPMS.'; +$lang->install->license = 'ZentaoPMS use license of Z PUBLIC LICENSE(ZPL) 1.1'; $lang->install->desc = <<http://en.zentao.net twitter:zentaopms + The version of current release is %s。 EOT; - $lang->install->newReleased= "Notice:There is a new version %s, released on %s。"; $lang->install->choice = 'You can '; $lang->install->or = 'or'; diff --git a/module/install/lang/zh-cn.php b/module/install/lang/zh-cn.php index 7ed14f002b..058f39e770 100644 --- a/module/install/lang/zh-cn.php +++ b/module/install/lang/zh-cn.php @@ -21,6 +21,7 @@ $lang->install->start = '开始安装'; $lang->install->keepInstalling = '继续安装当前版本'; $lang->install->seeLatestRelease = '看看最新的版本'; $lang->install->welcome = '欢迎使用禅道项目管理软件!'; +$lang->install->license = '禅道项目管理软件使用 Z PUBLIC LICENSE(ZPL) 1.1 授权协议'; $lang->install->desc = <<install->register = '禅道社区注册'; $lang->install->joinZentao = <<您已经成功安装禅道管理系统%s,请及时删除install.php。

友情提示:为了您及时获得禅道的最新动态,请在禅道社区(www.zentao.net)进行登记。

+ EOT; diff --git a/module/install/view/index.html.php b/module/install/view/index.html.php index f864986810..7624916383 100644 --- a/module/install/view/index.html.php +++ b/module/install/view/index.html.php @@ -50,7 +50,7 @@
- createLink('install', 'step1'), $lang->install->start, '', "class='btn btn-primary'");?> + install->start, '', "class='btn btn-primary'");?>
diff --git a/module/install/view/license.html.php b/module/install/view/license.html.php new file mode 100644 index 0000000000..a0fcaf9f26 --- /dev/null +++ b/module/install/view/license.html.php @@ -0,0 +1,29 @@ + + * @package install + * @version $Id$ + */ +?> + +
+ +
+ diff --git a/module/upgrade/control.php b/module/upgrade/control.php index ae52904e1f..63cdf35da1 100644 --- a/module/upgrade/control.php +++ b/module/upgrade/control.php @@ -18,6 +18,32 @@ class upgrade extends control * @return void */ public function index() + { + $this->locate(inlink('license')); + } + + /** + * Check agree license. + * + * @access public + * @return void + */ + public function license() + { + if($this->get->agree == true) $this->locate(inlink('backup')); + + $this->view->title = $this->lang->upgrade->common; + $this->view->license = file_get_contents($this->app->getBasePath() . 'doc/LICENSE'); + $this->display(); + } + + /** + * Backup. + * + * @access public + * @return void + */ + public function backup() { $this->view->title = $this->lang->upgrade->common; $this->display(); diff --git a/module/upgrade/js/license.js b/module/upgrade/js/license.js new file mode 100644 index 0000000000..99df7e1e08 --- /dev/null +++ b/module/upgrade/js/license.js @@ -0,0 +1,4 @@ +$(document).ready(function() +{ + $('#agree').change(function(){$('.btn-install').attr('disabled', !$(this).prop('checked'));}); +}); diff --git a/module/upgrade/lang/en.php b/module/upgrade/lang/en.php index b8630ff22e..15c9920565 100644 --- a/module/upgrade/lang/en.php +++ b/module/upgrade/lang/en.php @@ -14,6 +14,7 @@ $lang->upgrade->result = 'Result'; $lang->upgrade->fail = 'Fail'; $lang->upgrade->success = 'Success'; $lang->upgrade->tohome = 'Go to index'; +$lang->upgrade->license = 'The license of ZentaoPMS has changed to Z PUBLIC LICENSE(ZPL) 1.1.'; $lang->upgrade->warnning= 'Warning'; $lang->upgrade->warnningContent = << diff --git a/module/upgrade/lang/zh-cn.php b/module/upgrade/lang/zh-cn.php index e3af036733..a65e86a58b 100644 --- a/module/upgrade/lang/zh-cn.php +++ b/module/upgrade/lang/zh-cn.php @@ -14,6 +14,7 @@ $lang->upgrade->result = '升级结果'; $lang->upgrade->fail = '升级失败'; $lang->upgrade->success = '升级成功'; $lang->upgrade->tohome = '返回首页'; +$lang->upgrade->license = '禅道项目管理软件已更换授权协议至 Z PUBLIC LICENSE(ZPL) 1.1'; $lang->upgrade->warnning= '警告'; $lang->upgrade->warnningContent = <<升级有危险,请先备份数据库,以防万一。

diff --git a/module/upgrade/view/index.html.php b/module/upgrade/view/backup.html.php similarity index 100% rename from module/upgrade/view/index.html.php rename to module/upgrade/view/backup.html.php diff --git a/module/upgrade/view/license.html.php b/module/upgrade/view/license.html.php new file mode 100644 index 0000000000..ef93c00f85 --- /dev/null +++ b/module/upgrade/view/license.html.php @@ -0,0 +1,29 @@ + + * @package upgrade + * @version $Id: selectversion.html.php 1292 2014-06-05 03:03:52Z guanxiying $ + */ +?> + +
+ +
+