From 6f5689de1a89702eed4bcbda1f373591ec535513 Mon Sep 17 00:00:00 2001 From: wangyidong Date: Tue, 31 May 2022 16:16:50 +0800 Subject: [PATCH 01/53] * adjust for create testcase-edit link in different tab. --- module/testcase/model.php | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/module/testcase/model.php b/module/testcase/model.php index 51504e3f0a..8214d2bba0 100644 --- a/module/testcase/model.php +++ b/module/testcase/model.php @@ -2104,7 +2104,13 @@ class testcaseModel extends model if(!$case->needconfirm) { - if(!isonlybody()) $menu .= $this->buildMenu('testcase', 'edit', $params, $case, 'view', '', '', 'showinonlybody'); + if(!isonlybody()) + { + $editParams = $params; + if($this->app->tab == 'project') $editParams .= "&comment=false&projectID={$this->session->project}"; + if($this->app->tab == 'execution') $editParams .= "&comment=false&executionID={$this->session->execution}"; + $menu .= $this->buildMenu('testcase', 'edit', $editParams, $case, 'view', '', '', 'showinonlybody'); + } if(!$case->isLibCase && $case->auto != 'unit') { $menu .= $this->buildMenu('testcase', 'create', "productID=$case->product&branch=$case->branch&moduleID=$case->module&from=testcase¶m=$case->id", $case, 'view', 'copy'); @@ -2142,7 +2148,12 @@ class testcaseModel extends model $menu .= $this->buildMenu('testtask', 'results', "runID=0&$params", $case, 'browse', '', '', 'iframe', true, "data-width='95%'"); $menu .= $this->buildMenu('testtask', 'runCase', "runID=0&$params&version=$case->version", $case, 'browse', 'play', '', 'runCase iframe', false, "data-width='95%'"); - $menu .= $this->buildMenu('testcase', 'edit', "caseID=$case->id", $case, 'browse'); + + $editParams = $params; + if($this->app->tab == 'project') $editParams .= "&comment=false&projectID={$this->session->project}"; + if($this->app->tab == 'execution') $editParams .= "&comment=false&executionID={$this->session->execution}"; + $menu .= $this->buildMenu('testcase', 'edit', $editParams, $case, 'browse'); + if($this->config->testcase->needReview || !empty($this->config->testcase->forceReview)) { common::printIcon('testcase', 'review', $params, $case, 'browse', 'glasses', '', 'iframe'); From 2400dfc83ad50011965a6fe80e5d8fddfd9a024e Mon Sep 17 00:00:00 2001 From: wangyidong Date: Wed, 1 Jun 2022 14:48:35 +0800 Subject: [PATCH 02/53] * code for task #55568. --- module/bug/model.php | 10 ++++++++++ module/execution/model.php | 10 ++++++++++ module/product/model.php | 7 +++++-- module/project/model.php | 23 ++++++++++++++++++++++- module/story/model.php | 9 ++++++++- module/task/model.php | 16 ++++++++++++++++ module/testcase/model.php | 6 ++++++ module/testtask/model.php | 6 ++++++ 8 files changed, 83 insertions(+), 4 deletions(-) diff --git a/module/bug/model.php b/module/bug/model.php index 393a42c28a..7225a3ea8c 100644 --- a/module/bug/model.php +++ b/module/bug/model.php @@ -938,10 +938,12 @@ class bugModel extends model ->setDefault('lastEditedBy', $this->app->user->account) ->setDefault('lastEditedDate', $now) ->setDefault('assignedDate', $now) + ->stripTags($this->config->bug->editor->assignto['id'], $this->config->allowedTags) ->remove('comment,showModule') ->join('mailto', ',') ->get(); + $bug = $this->loadModel('file')->processImgURL($bug, $this->config->bug->editor->assignto['id'], $this->post->uid); $this->dao->update(TABLE_BUG) ->data($bug) ->autoCheck() @@ -973,10 +975,12 @@ class bugModel extends model ->setDefault('lastEditedBy', $this->app->user->account) ->setDefault('lastEditedDate', $now) ->setDefault('assignedDate', $now) + ->stripTags($this->config->bug->editor->confirmbug['id'], $this->config->allowedTags) ->remove('comment') ->join('mailto', ',') ->get(); + $bug = $this->loadModel('file')->processImgURL($bug, $this->config->bug->editor->confirmbug['id'], $this->post->uid); $this->dao->update(TABLE_BUG)->data($bug)->autoCheck()->checkFlow()->where('id')->eq($bugID)->exec(); if(!dao::isError()) @@ -1044,8 +1048,10 @@ class bugModel extends model ->setDefault('resolvedDate', $now) ->setDefault('assignedTo', $oldBug->openedBy) ->removeIF($this->post->resolution != 'duplicate', 'duplicateBug') + ->stripTags($this->config->bug->editor->resolve['id'], $this->config->allowedTags) ->remove('files,labels') ->get(); + $bug = $this->loadModel('file')->processImgURL($bug, $this->config->bug->editor->resolve['id'], $this->post->uid); /* Set comment lang for alert error. */ $this->lang->bug->comment = $this->lang->comment; @@ -1319,6 +1325,7 @@ class bugModel extends model ->setDefault('lastEditedDate', $now) ->setDefault('activatedDate', $now) ->setDefault('activatedCount', (int)$oldBug->activatedCount) + ->stripTags($this->config->bug->editor->activate['id'], $this->config->allowedTags) ->add('id', $bugID) ->add('resolution', '') ->add('status', 'active') @@ -1334,6 +1341,7 @@ class bugModel extends model ->remove('comment,files,labels') ->get(); + $bug = $this->loadModel('file')->processImgURL($bug, $this->config->bug->editor->activate['id'], $this->post->uid); $this->dao->update(TABLE_BUG)->data($bug)->autoCheck()->checkFlow()->where('id')->eq((int)$bugID)->exec(); $this->dao->update(TABLE_BUG)->set('activatedCount = activatedCount + 1')->where('id')->eq((int)$bugID)->exec(); @@ -1380,9 +1388,11 @@ class bugModel extends model ->setDefault('lastEditedDate', $now) ->setDefault('closedBy', $this->app->user->account) ->setDefault('closedDate', $now) + ->stripTags($this->config->bug->editor->close['id'], $this->config->allowedTags) ->remove('comment') ->get(); + $bug = $this->loadModel('file')->processImgURL($bug, $this->config->bug->editor->close['id'], $this->post->uid); $this->dao->update(TABLE_BUG)->data($bug)->autoCheck()->checkFlow()->where('id')->eq((int)$bugID)->exec(); if($oldBug->execution) { diff --git a/module/execution/model.php b/module/execution/model.php index 5f8e1727b2..fc027051bf 100644 --- a/module/execution/model.php +++ b/module/execution/model.php @@ -815,9 +815,11 @@ class executionModel extends model ->setDefault('status', 'doing') ->setDefault('lastEditedBy', $this->app->user->account) ->setDefault('lastEditedDate', $now) + ->stripTags($this->config->execution->editor->start['id'], $this->config->allowedTags) ->remove('comment') ->get(); + $execution = $this->loadModel('file')->processImgURL($execution, $this->config->execution->editor->start['id'], $this->post->uid); $this->dao->update(TABLE_EXECUTION)->data($execution) ->autoCheck() ->check($this->config->execution->start->requiredFields, 'notempty') @@ -846,6 +848,7 @@ class executionModel extends model $execution = fixer::input('post') ->add('id', $executionID) + ->stripTags($this->config->execution->editor->putoff['id'], $this->config->allowedTags) ->setDefault('lastEditedBy', $this->app->user->account) ->setDefault('lastEditedDate', $now) ->remove('comment') @@ -854,6 +857,7 @@ class executionModel extends model if($this->config->systemMode == 'new') $this->checkBeginAndEndDate($oldExecution->project, $execution->begin, $execution->end); if(dao::isError()) return false; + $execution = $this->loadModel('file')->processImgURL($execution, $this->config->execution->editor->putoff['id'], $this->post->uid); $this->dao->update(TABLE_EXECUTION)->data($execution) ->autoCheck() ->checkFlow() @@ -881,8 +885,10 @@ class executionModel extends model ->setDefault('lastEditedBy', $this->app->user->account) ->setDefault('lastEditedDate', $now) ->setDefault('suspendedDate', helper::today()) + ->stripTags($this->config->execution->editor->suspend['id'], $this->config->allowedTags) ->remove('comment')->get(); + $execution = $this->loadModel('file')->processImgURL($execution, $this->config->execution->editor->suspend['id'], $this->post->uid); $this->dao->update(TABLE_EXECUTION)->data($execution) ->autoCheck() ->checkFlow() @@ -910,6 +916,7 @@ class executionModel extends model ->setDefault('status', 'doing') ->setDefault('lastEditedBy', $this->app->user->account) ->setDefault('lastEditedDate', $now) + ->stripTags($this->config->execution->editor->activate['id'], $this->config->allowedTags) ->remove('comment,readjustTime,readjustTask') ->get(); @@ -919,6 +926,7 @@ class executionModel extends model unset($execution->end); } + $execution = $this->loadModel('file')->processImgURL($execution, $this->config->execution->editor->activate['id'], $this->post->uid); $this->dao->update(TABLE_EXECUTION)->data($execution) ->autoCheck() ->checkFlow() @@ -992,11 +1000,13 @@ class executionModel extends model ->setDefault('closedDate', $now) ->setDefault('lastEditedBy', $this->app->user->account) ->setDefault('lastEditedDate', $now) + ->stripTags($this->config->execution->editor->close['id'], $this->config->allowedTags) ->remove('comment') ->get(); $this->lang->error->ge = $this->lang->execution->ge; + $execution = $this->loadModel('file')->processImgURL($execution, $this->config->execution->editor->close['id'], $this->post->uid); $this->dao->update(TABLE_EXECUTION)->data($execution) ->autoCheck() ->check($this->config->execution->close->requiredFields,'notempty') diff --git a/module/product/model.php b/module/product/model.php index a2eabf8c8b..79c49b78d5 100644 --- a/module/product/model.php +++ b/module/product/model.php @@ -864,11 +864,14 @@ class productModel extends model { $oldProduct = $this->getById($productID); $now = helper::now(); - $product= fixer::input('post') + $product = fixer::input('post') ->add('id', $productID) ->setDefault('status', 'closed') - ->remove('comment')->get(); + ->stripTags($this->config->product->editor->close['id'], $this->config->allowedTags) + ->remove('comment') + ->get(); + $product = $this->loadModel('file')->processImgURL($product, $this->config->product->editor->close['id'], $this->post->uid); $this->dao->update(TABLE_PRODUCT)->data($product) ->autoCheck() ->checkFlow() diff --git a/module/project/model.php b/module/project/model.php index 86027b4422..ad0f4503d1 100644 --- a/module/project/model.php +++ b/module/project/model.php @@ -1559,13 +1559,18 @@ class projectModel extends model $oldProject = $this->getById($projectID, $type); $now = helper::now(); + $editorIdList = $this->config->project->editor->start['id']; + if($this->app->rawModule == 'program') $editorIdList = $this->config->program->editor->start['id']; + $project = fixer::input('post') ->add('id', $projectID) ->setDefault('status', 'doing') ->setDefault('lastEditedBy', $this->app->user->account) ->setDefault('lastEditedDate', $now) + ->stripTags($editorIdList, $this->config->allowedTags) ->remove('comment')->get(); + $project = $this->loadModel('file')->processImgURL($project, $editorIdList, $this->post->uid); $this->dao->update(TABLE_PROJECT)->data($project) ->autoCheck() ->check($this->config->project->start->requiredFields, 'notempty') @@ -1617,15 +1622,20 @@ class projectModel extends model */ public function suspend($projectID) { + $editorIdList = $this->config->project->editor->suspend['id']; + if($this->app->rawModule == 'program') $editorIdList = $this->config->program->editor->suspend['id']; + $oldProject = $this->getById($projectID); - $project = fixer::input('post') + $project = fixer::input('post') ->add('id', $projectID) ->setDefault('status', 'suspended') ->setDefault('lastEditedBy', $this->app->user->account) ->setDefault('lastEditedDate', helper::now()) ->setDefault('suspendedDate', helper::today()) + ->stripTags($editorIdList, $this->config->allowedTags) ->remove('comment')->get(); + $project = $this->loadModel('file')->processImgURL($project, $editorIdList, $this->post->uid); $this->dao->update(TABLE_PROJECT)->data($project) ->autoCheck() ->checkFlow() @@ -1647,6 +1657,9 @@ class projectModel extends model $oldProject = $this->getById($projectID); $now = helper::now(); + $editorIdList = $this->config->project->editor->activate['id']; + if($this->app->rawModule == 'program') $editorIdList = $this->config->program->editor->activate['id']; + $project = fixer::input('post') ->add('id', $projectID) ->setDefault('realEnd','') @@ -1654,6 +1667,7 @@ class projectModel extends model ->setDefault('lastEditedBy', $this->app->user->account) ->setDefault('lastEditedDate', $now) ->setIF($oldProject->realBegan == '0000-00-00', 'realBegan', helper::today()) + ->stripTags($editorIdList, $this->config->allowedTags) ->remove('comment,readjustTime,readjustTask') ->get(); @@ -1663,6 +1677,7 @@ class projectModel extends model unset($project->end); } + $project = $this->loadModel('file')->processImgURL($project, $editorIdList, $this->post->uid); $this->dao->update(TABLE_PROJECT)->data($project) ->autoCheck() ->checkFlow() @@ -1719,6 +1734,9 @@ class projectModel extends model $oldProject = $this->getById($projectID); $now = helper::now(); + $editorIdList = $this->config->project->editor->close['id']; + if($this->app->rawModule == 'program') $editorIdList = $this->config->program->editor->close['id']; + $project = fixer::input('post') ->add('id', $projectID) ->setDefault('status', 'closed') @@ -1726,11 +1744,14 @@ class projectModel extends model ->setDefault('closedDate', $now) ->setDefault('lastEditedBy', $this->app->user->account) ->setDefault('lastEditedDate', $now) + ->stripTags($editorIdList, $this->config->allowedTags) ->remove('comment') ->get(); $this->lang->error->ge = $this->lang->project->ge; + $project = $this->loadModel('file')->processImgURL($project, $editorIdList, $this->post->uid); + $this->dao->update(TABLE_PROJECT)->data($project) ->autoCheck() ->check($this->config->project->close->requiredFields, 'notempty') diff --git a/module/story/model.php b/module/story/model.php index 5cab21203e..349e454cf1 100644 --- a/module/story/model.php +++ b/module/story/model.php @@ -830,7 +830,6 @@ class storyModel extends model if(isset($story->stage) and $oldStory->stage != $story->stage) $story->stagedBy = (strpos('tested|verified|released|closed', $story->stage) !== false) ? $this->app->user->account : ''; $story = $this->loadModel('file')->processImgURL($story, $this->config->story->editor->edit['id'], $this->post->uid); - if(isset($_POST['reviewer'])) { $_POST['reviewer'] = array_filter($_POST['reviewer']); @@ -1327,6 +1326,7 @@ class storyModel extends model ->setDefault('lastEditedDate', $now) ->setDefault('status', $oldStory->status) ->setDefault('reviewedDate', $date) + ->stripTags($this->config->story->editor->review['id'], $this->config->allowedTags) ->setIF($this->post->result == 'revert', 'version', $this->post->preVersion) ->removeIF($this->post->result != 'reject', 'closedReason, duplicateStory, childStories') ->removeIF($this->post->result == 'reject' and $this->post->closedReason != 'duplicate', 'duplicateStory') @@ -1335,6 +1335,7 @@ class storyModel extends model ->add('id', $storyID) ->remove('result,preVersion,comment') ->get(); + $story = $this->loadModel('file')->processImgURL($story, $this->config->story->editor->review['id'], $this->post->uid); /* Fix bug #671. */ $this->lang->story->closedReason = $this->lang->story->rejectedReason; @@ -1562,6 +1563,7 @@ class storyModel extends model ->setDefault('closedDate', $now) ->setDefault('closedBy', $this->app->user->account) ->setDefault('assignedDate', $now) + ->stripTags($this->config->story->editor->close['id'], $this->config->allowedTags) ->removeIF($this->post->closedReason != 'duplicate', 'duplicateStory') ->removeIF($this->post->closedReason != 'subdivided', 'childStories') ->get(); @@ -1577,6 +1579,7 @@ class storyModel extends model } $this->lang->story->comment = $this->lang->comment; + $story = $this->loadModel('file')->processImgURL($story, $this->config->story->editor->close['id'], $this->post->uid); $this->dao->update(TABLE_STORY)->data($story, 'comment') ->autoCheck() ->batchCheck($this->config->story->close->requiredFields, 'notempty') @@ -1990,9 +1993,11 @@ class storyModel extends model ->add('lastEditedBy', $this->app->user->account) ->add('lastEditedDate', $now) ->add('assignedDate', $now) + ->stripTags($this->config->story->editor->assignto['id'], $this->config->allowedTags) ->remove('comment') ->get(); + $story = $this->loadModel('file')->processImgURL($story, $this->config->story->editor->assignto['id'], $this->post->uid); $this->dao->update(TABLE_STORY)->data($story)->autoCheck()->checkFlow()->where('id')->eq((int)$storyID)->exec(); if(!dao::isError()) return common::createChanges($oldStory, $story); return false; @@ -2053,8 +2058,10 @@ class storyModel extends model ->setDefault('lastEditedDate', $now) ->setDefault('assignedDate', $now) ->setDefault('activatedDate', $now) + ->stripTags($this->config->story->editor->activate['id'], $this->config->allowedTags) ->remove('comment') ->get(); + $story = $this->loadModel('file')->processImgURL($story, $this->config->story->editor->activate['id'], $this->post->uid); $this->dao->update(TABLE_STORY)->data($story)->autoCheck()->checkFlow()->where('id')->eq($storyID)->exec(); if($this->post->status == 'active') $this->dao->delete()->from(TABLE_STORYREVIEW)->where('story')->eq($storyID)->exec(); diff --git a/module/task/model.php b/module/task/model.php index 40de45d730..e196488f0e 100644 --- a/module/task/model.php +++ b/module/task/model.php @@ -1459,6 +1459,7 @@ class taskModel extends model ->setDefault('lastEditedBy', $this->app->user->account) ->setDefault('lastEditedDate', $now) ->setDefault('assignedDate', $now) + ->stripTags($this->config->task->editor->assignto['id'], $this->config->allowedTags) ->remove('comment,showModule') ->get(); if($oldTask->status != 'done' and $oldTask->status != 'closed' and isset($task->left) and $task->left == 0) @@ -1483,6 +1484,7 @@ class taskModel extends model if($oldTask->parent > 0) $this->updateParentStatus($taskID); + $task = $this->file->processImgURL($task, $this->config->task->editor->assignto['id'], $this->post->uid); $this->dao->update(TABLE_TASK) ->data($task) ->autoCheck() @@ -1519,6 +1521,8 @@ class taskModel extends model } if(dao::isError()) return false; + $editorIdList = $this->config->task->editor->start['id']; + if($this->app->getMethodName() == 'restart') $editorIdList = $this->config->task->editor->restart['id']; $now = helper::now(); $task = fixer::input('post') ->add('id', $taskID) @@ -1526,9 +1530,11 @@ class taskModel extends model ->setDefault('lastEditedDate', $now) ->setDefault('status', 'doing') ->setIF($oldTask->assignedTo != $this->app->user->account, 'assignedDate', $now) + ->stripTags($editorIdList, $this->config->allowedTags) ->removeIF(!empty($oldTask->team), 'consumed,left') ->remove('comment')->get(); + $task = $this->file->processImgURL($task, $editorIdList, $this->post->uid); if($this->post->left == 0) { if(isset($task->consumed) and $task->consumed == 0) @@ -1757,6 +1763,7 @@ class taskModel extends model ->setDefault('status', 'done') ->setDefault('finishedBy, lastEditedBy', $this->app->user->account) ->setDefault('finishedDate, lastEditedDate', $now) + ->stripTags($this->config->task->editor->finish['id'], $this->config->allowedTags) ->removeIF(!empty($oldTask->team), 'finishedBy,status,left') ->remove('comment,files,labels,currentConsumed') ->get(); @@ -1851,6 +1858,7 @@ class taskModel extends model if($task->finishedDate == substr($now, 0, 10)) $task->finishedDate = $now; + $task = $this->file->processImgURL($task, $this->config->task->editor->finish['id'], $this->post->uid); $this->dao->update(TABLE_TASK)->data($task) ->autoCheck() ->checkFlow() @@ -1890,9 +1898,11 @@ class taskModel extends model ->setDefault('status', 'pause') ->setDefault('lastEditedBy', $this->app->user->account) ->setDefault('lastEditedDate', helper::now()) + ->stripTags($this->config->task->editor->pause['id'], $this->config->allowedTags) ->remove('comment') ->get(); + $task = $this->file->processImgURL($task, $this->config->task->editor->pause['id'], $this->post->uid); $this->dao->update(TABLE_TASK)->data($task)->autoCheck()->checkFlow()->where('id')->eq((int)$taskID)->exec(); if($oldTask->parent > 0) $this->updateParentStatus($taskID); @@ -1926,12 +1936,14 @@ class taskModel extends model ->setDefault('assignedDate', $now) ->setDefault('closedBy, lastEditedBy', $this->app->user->account) ->setDefault('closedDate, lastEditedDate', $now) + ->stripTags($this->config->task->editor->close['id'], $this->config->allowedTags) ->setIF($oldTask->status == 'done', 'closedReason', 'done') ->setIF($oldTask->status == 'cancel', 'closedReason', 'cancel') ->remove('_recPerPage') ->remove('comment') ->get(); + $task = $this->file->processImgURL($task, $this->config->task->editor->close['id'], $this->post->uid); $this->dao->update(TABLE_TASK)->data($task)->autoCheck()->checkFlow()->where('id')->eq((int)$taskID)->exec(); if(!dao::isError()) @@ -1974,9 +1986,11 @@ class taskModel extends model ->setDefault('finishedDate', '0000-00-00') ->setDefault('canceledBy, lastEditedBy', $this->app->user->account) ->setDefault('canceledDate, lastEditedDate', $now) + ->stripTags($this->config->task->editor->cancel['id'], $this->config->allowedTags) ->remove('comment') ->get(); + $task = $this->file->processImgURL($task, $this->config->task->editor->cancel['id'], $this->post->uid); $this->dao->update(TABLE_TASK)->data($task)->autoCheck()->checkFlow()->where('id')->eq((int)$taskID)->exec(); if($oldTask->fromBug) $this->dao->update(TABLE_BUG)->set('toTask')->eq(0)->where('id')->eq($oldTask->fromBug)->exec(); if($oldTask->parent > 0) $this->updateParentStatus($taskID); @@ -2038,6 +2052,7 @@ class taskModel extends model ->setDefault('lastEditedDate', helper::now()) ->setDefault('assignedDate', helper::now()) ->setDefault('activatedDate', helper::now()) + ->stripTags($this->config->task->editor->activate['id'], $this->config->allowedTags) ->remove('comment') ->get(); @@ -2058,6 +2073,7 @@ class taskModel extends model $task = $this->computeHours4Multiple($oldTask, $task); } + $task = $this->file->processImgURL($task, $this->config->task->editor->activate['id'], $this->post->uid); $this->dao->update(TABLE_TASK)->data($task) ->autoCheck() ->batchCheck($this->config->task->activate->requiredFields, 'notempty') diff --git a/module/testcase/model.php b/module/testcase/model.php index 8214d2bba0..31d44cc61a 100644 --- a/module/testcase/model.php +++ b/module/testcase/model.php @@ -61,6 +61,7 @@ class testcaseModel extends model ->setIF($this->config->systemMode == 'new' and $this->app->tab == 'project', 'project', $this->session->project) ->setIF($this->app->tab == 'execution', 'execution', $this->session->execution) ->setIF($this->post->story != false, 'storyVersion', $this->loadModel('story')->getVersion((int)$this->post->story)) + ->stripTags($this->config->testcase->editor->create['id'], $this->config->allowedTags) ->remove('steps,expects,files,labels,stepType,forceNotReview') ->setDefault('story', 0) ->cleanInt('story,product,branch,module') @@ -77,6 +78,7 @@ class testcaseModel extends model /* Value of story may be showmore. */ $case->story = (int)$case->story; + $case = $this->loadModel('file')->processImgURL($case, $this->config->testcase->editor->create['id'], $this->post->uid); $this->dao->insert(TABLE_CASE)->data($case)->autoCheck()->batchCheck($this->config->testcase->create->requiredFields, 'notempty')->checkFlow()->exec(); if(!$this->dao->isError()) { @@ -749,6 +751,7 @@ class testcaseModel extends model ->join('linkCase', ',') ->setForce('status', $status) ->cleanInt('story,product,branch,module') + ->stripTags($this->config->testcase->editor->edit['id'], $this->config->allowedTags) ->remove('comment,steps,expects,files,labels,stepType') ->get(); @@ -761,6 +764,7 @@ class testcaseModel extends model array_splice($requiredFieldsArr, $fieldIndex, 1); $requiredFields = implode(',', $requiredFieldsArr); } + $case = $this->loadModel('file')->processImgURL($case, $this->config->testcase->editor->edit['id'], $this->post->uid); $this->dao->update(TABLE_CASE)->data($case)->autoCheck()->batchCheck($requiredFields, 'notempty')->checkFlow()->where('id')->eq((int)$caseID)->exec(); if(!$this->dao->isError()) { @@ -864,10 +868,12 @@ class testcaseModel extends model ->setDefault('reviewedDate', substr($now, 0, 10)) ->setDefault('lastEditedBy', $this->app->user->account) ->setDefault('lastEditedDate', $now) + ->stripTags($this->config->testcase->editor->review['id'], $this->config->allowedTags) ->setForce('status', $status) ->join('reviewedBy', ',') ->get(); + $case = $this->loadModel('file')->processImgURL($case, $this->config->testcase->editor->review['id'], $this->post->uid); $this->dao->update(TABLE_CASE)->data($case)->autoCheck()->checkFlow()->where('id')->eq($caseID)->exec(); if(dao::isError()) return false; diff --git a/module/testtask/model.php b/module/testtask/model.php index 6946e7f513..210568b3d7 100644 --- a/module/testtask/model.php +++ b/module/testtask/model.php @@ -772,8 +772,10 @@ class testtaskModel extends model $testtask = fixer::input('post') ->add('id', $taskID) ->setDefault('status', 'doing') + ->stripTags($this->config->testtask->editor->start['id'], $this->config->allowedTags) ->remove('comment')->get(); + $testtask = $this->loadModel('file')->processImgURL($testtask, $this->config->testtask->editor->start['id'], $this->post->uid); $this->dao->update(TABLE_TESTTASK)->data($testtask) ->autoCheck() ->checkFlow() @@ -838,8 +840,10 @@ class testtaskModel extends model $testtask = fixer::input('post') ->add('id', $taskID) ->setDefault('status', 'blocked') + ->stripTags($this->config->testtask->editor->block['id'], $this->config->allowedTags) ->remove('comment')->get(); + $testtask = $this->loadModel('file')->processImgURL($testtask, $this->config->testtask->editor->block['id'], $this->post->uid); $this->dao->update(TABLE_TESTTASK)->data($testtask) ->autoCheck() ->checkFlow() @@ -861,8 +865,10 @@ class testtaskModel extends model $oldTesttask = $this->getById($taskID); $testtask = fixer::input('post') ->setDefault('status', 'doing') + ->stripTags($this->config->testtask->editor->activate['id'], $this->config->allowedTags) ->remove('comment')->get(); + $testtask = $this->loadModel('file')->processImgURL($testtask, $this->config->testtask->editor->activate['id'], $this->post->uid); $this->dao->update(TABLE_TESTTASK)->data($testtask) ->autoCheck() ->checkFlow() From 58e50c287c6f920e764d899eb91e085f62e8a6cf Mon Sep 17 00:00:00 2001 From: wangyidong Date: Wed, 1 Jun 2022 17:16:45 +0800 Subject: [PATCH 03/53] * code for task #55554. --- module/common/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/common/model.php b/module/common/model.php index 77b1299f44..9b02ce923f 100644 --- a/module/common/model.php +++ b/module/common/model.php @@ -1920,7 +1920,7 @@ EOD; if(strtolower($key) == 'closeddate' && $value == '') continue; if(strtolower($key) == 'actualcloseddate' && $value == '') continue; - if(isset($old->$key) and $value != stripslashes($old->$key)) + if(array_key_exists($key, $old) and $value != stripslashes($old->$key)) { $diff = ''; if(substr_count($value, "\n") > 1 or From 065f5e738a8f83fe4fc474adeea122138dade1f3 Mon Sep 17 00:00:00 2001 From: wangyuting2 <851424971@qq.com> Date: Thu, 2 Jun 2022 11:00:17 +0800 Subject: [PATCH 04/53] * Finish task #55566. --- module/testcase/model.php | 97 ++++++++++++++---------- module/testcase/view/showimport.html.php | 36 ++++++--- 2 files changed, 84 insertions(+), 49 deletions(-) diff --git a/module/testcase/model.php b/module/testcase/model.php index 31d44cc61a..1e0547889a 100644 --- a/module/testcase/model.php +++ b/module/testcase/model.php @@ -1255,11 +1255,26 @@ class testcaseModel extends model ->fetchGroup('case'); $oldCases = $this->dao->select('*')->from(TABLE_CASE)->where('id')->in($_POST['id'])->fetchAll('id'); } + + $cases = array(); + $line = 1; + $fieldNames = array(); $storyVersionPairs = $this->story->getVersions($data->story); - $cases = array(); - $line = 1; - $fieldNames = array(); + if($this->config->edition != 'open') + { + $extendFields = $this->getFlowExtendFields(); + $notEmptyRule = $this->loadModel('workflowrule')->getByTypeAndRule('system', 'notempty'); + + foreach($extendFields as $extendField) + { + if(strpos(",$extendField->rules,", ",$notEmptyRule->id,") !== false) + { + $this->config->testcase->create->requiredFields .= ',' . $extendField->field; + } + } + } + foreach($data->product as $key => $product) { $caseData = new stdclass(); @@ -1276,6 +1291,18 @@ class testcaseModel extends model $caseData->frequency = 1; $caseData->precondition = $data->precondition[$key]; + if($this->config->edition != 'open') + { + foreach($extendFields as $extendField) + { + $dataArray = $_POST[$extendField->field]; + $caseData->{$extendField->field} = $dataArray[$key]; + if(is_array($caseData->{$extendField->field})) $caseData->{$extendField->field} = join(',', $caseData->{$extendField->field}); + + $caseData->{$extendField->field} = htmlSpecialString($caseData->{$extendField->field}); + } + } + if(isset($this->config->testcase->create->requiredFields)) { $requiredFields = explode(',', $this->config->testcase->create->requiredFields); @@ -1287,16 +1314,6 @@ class testcaseModel extends model } } - if(isset($this->config->testcase->appendFields)) - { - foreach(explode(',', $this->config->testcase->appendFields) as $appendField) - { - if(empty($appendField)) continue; - $caseData->$appendField = zget($_POST[$appendField], $key, ''); - if(is_array($caseData->$appendField)) $caseData->$appendField = join(',', $caseData->$appendField); - } - } - $cases[$key] = $caseData; $line++; } @@ -1369,34 +1386,38 @@ class testcaseModel extends model $caseData->lastEditedBy = $this->app->user->account; $caseData->lastEditedDate = $now; if($stepChanged and !$forceNotReview) $caseData->status = 'wait'; - $this->dao->update(TABLE_CASE)->data($caseData)->where('id')->eq($caseID)->autoCheck()->exec(); - if($stepChanged) + $this->dao->update(TABLE_CASE)->data($caseData)->where('id')->eq($caseID)->autoCheck()->checkFlow()->exec(); + + if(!dao::isError()) { - $parentStepID = 0; - foreach($steps as $id => $step) + if($stepChanged) { - $step = (array)$step; - if(empty($step['desc'])) continue; - $stepData = new stdclass(); - $stepData->type = ($step['type'] == 'item' and $parentStepID == 0) ? 'step' : $step['type']; - $stepData->parent = ($stepData->type == 'item') ? $parentStepID : 0; - $stepData->case = $caseID; - $stepData->version = $version; - $stepData->desc = $step['desc']; - $stepData->expect = $step['expect']; - $this->dao->insert(TABLE_CASESTEP)->data($stepData)->autoCheck()->exec(); - if($stepData->type == 'group') $parentStepID = $this->dao->lastInsertID(); - if($stepData->type == 'step') $parentStepID = 0; + $parentStepID = 0; + foreach($steps as $id => $step) + { + $step = (array)$step; + if(empty($step['desc'])) continue; + $stepData = new stdclass(); + $stepData->type = ($step['type'] == 'item' and $parentStepID == 0) ? 'step' : $step['type']; + $stepData->parent = ($stepData->type == 'item') ? $parentStepID : 0; + $stepData->case = $caseID; + $stepData->version = $version; + $stepData->desc = $step['desc']; + $stepData->expect = $step['expect']; + $this->dao->insert(TABLE_CASESTEP)->data($stepData)->autoCheck()->exec(); + if($stepData->type == 'group') $parentStepID = $this->dao->lastInsertID(); + if($stepData->type == 'step') $parentStepID = 0; + } } + $oldCase->steps = $this->joinStep($oldStep); + $caseData->steps = $this->joinStep($steps); + $changes = common::createChanges($oldCase, $caseData); + + $this->updateCase2Project($oldCase, $caseData, $caseID); + + $actionID = $this->action->create('case', $caseID, 'Edited'); + $this->action->logHistory($actionID, $changes); } - $oldCase->steps = $this->joinStep($oldStep); - $caseData->steps = $this->joinStep($steps); - $changes = common::createChanges($oldCase, $caseData); - - $this->updateCase2Project($oldCase, $caseData, $caseID); - - $actionID = $this->action->create('case', $caseID, 'Edited'); - $this->action->logHistory($actionID, $changes); } } else @@ -1408,7 +1429,7 @@ class testcaseModel extends model $caseData->branch = isset($data->branch[$key]) ? $data->branch[$key] : $branch; if($caseData->story) $caseData->storyVersion = zget($storyVersionPairs, $caseData->story, 1); $caseData->status = !$forceNotReview ? 'wait' : 'normal'; - $this->dao->insert(TABLE_CASE)->data($caseData)->autoCheck()->exec(); + $this->dao->insert(TABLE_CASE)->data($caseData)->autoCheck()->checkFlow()->exec(); if(!dao::isError()) { diff --git a/module/testcase/view/showimport.html.php b/module/testcase/view/showimport.html.php index 0a66864f54..44d00ea281 100644 --- a/module/testcase/view/showimport.html.php +++ b/module/testcase/view/showimport.html.php @@ -45,11 +45,19 @@ $(function() '>testcase->stage?> '>testcase->precondition?> '>testcase->keywords?> - - - testcase->{$appendField->field}?> - - + show) continue; + + $width = ($field->width && $field->width != 'auto' ? $field->width . 'px' : 'auto'); + $required = strpos(",$field->rules,", ",$notEmptyRule->id,") !== false ? 'required' : ''; + echo "$field->name"; + } + } + ?> @@ -106,12 +114,18 @@ $(function() - - loadModel('flow');?> - - - - + loadModel('flow'); + foreach($appendFields as $field) + { + if(!$field->show) continue; + $value = $field->defaultValue ? $field->defaultValue : zget($case, $field->field, ''); + echo ''; + } + } + ?>
testcase->stageList, !empty($case->stage) ? $case->stage : ((!empty($case->id) and isset($cases[$case->id])) ? $cases[$case->id]->stage : ''), "multiple='multiple' class='form-control chosen'")?> precondition) ? htmlSpecialString($case->precondition) : "", "class='form-control'")?> keywords) ? $case->keywords : '', "class='form-control'")?>flow->buildControl($appendField, zget($case, $appendField->field, ''), "{$appendField->field}[$key]");?>' . $this->flow->buildControl($field, $value, "$field->field[$key]", true) . ' From fb786e9cf6b89c991279134f01a2bdc523252727 Mon Sep 17 00:00:00 2001 From: wangyidong Date: Thu, 2 Jun 2022 15:02:14 +0800 Subject: [PATCH 05/53] * remove useless flow action. --- db/update17.0.beta2.sql | 3 +++ module/task/model.php | 16 ++++++++-------- 2 files changed, 11 insertions(+), 8 deletions(-) create mode 100644 db/update17.0.beta2.sql diff --git a/db/update17.0.beta2.sql b/db/update17.0.beta2.sql new file mode 100644 index 0000000000..7cf03128bf --- /dev/null +++ b/db/update17.0.beta2.sql @@ -0,0 +1,3 @@ +DELETE FROM `zt_workflowaction` WHERE `module`='story' AND `action`='browse'; +DELETE FROM `zt_workflowaction` WHERE `module`='task' AND `action`='browse'; +DELETE FROM `zt_workflowaction` WHERE `module`='build' AND `action`='browse'; diff --git a/module/task/model.php b/module/task/model.php index e196488f0e..4143e6f5ea 100644 --- a/module/task/model.php +++ b/module/task/model.php @@ -113,7 +113,7 @@ class taskModel extends model } } - $task = $this->file->processImgURL($task, $this->config->task->editor->create['id'], $this->post->uid); + $task = $this->loadModel('file')->processImgURL($task, $this->config->task->editor->create['id'], $this->post->uid); /* Fix Bug #1525 */ $executionType = $this->dao->select('*')->from(TABLE_PROJECT)->where('id')->eq($executionID)->fetch('type'); @@ -1484,7 +1484,7 @@ class taskModel extends model if($oldTask->parent > 0) $this->updateParentStatus($taskID); - $task = $this->file->processImgURL($task, $this->config->task->editor->assignto['id'], $this->post->uid); + $task = $this->loadModel('file')->processImgURL($task, $this->config->task->editor->assignto['id'], $this->post->uid); $this->dao->update(TABLE_TASK) ->data($task) ->autoCheck() @@ -1534,7 +1534,7 @@ class taskModel extends model ->removeIF(!empty($oldTask->team), 'consumed,left') ->remove('comment')->get(); - $task = $this->file->processImgURL($task, $editorIdList, $this->post->uid); + $task = $this->loadModel('file')->processImgURL($task, $editorIdList, $this->post->uid); if($this->post->left == 0) { if(isset($task->consumed) and $task->consumed == 0) @@ -1858,7 +1858,7 @@ class taskModel extends model if($task->finishedDate == substr($now, 0, 10)) $task->finishedDate = $now; - $task = $this->file->processImgURL($task, $this->config->task->editor->finish['id'], $this->post->uid); + $task = $this->loadModel('file')->processImgURL($task, $this->config->task->editor->finish['id'], $this->post->uid); $this->dao->update(TABLE_TASK)->data($task) ->autoCheck() ->checkFlow() @@ -1902,7 +1902,7 @@ class taskModel extends model ->remove('comment') ->get(); - $task = $this->file->processImgURL($task, $this->config->task->editor->pause['id'], $this->post->uid); + $task = $this->loadModel('file')->processImgURL($task, $this->config->task->editor->pause['id'], $this->post->uid); $this->dao->update(TABLE_TASK)->data($task)->autoCheck()->checkFlow()->where('id')->eq((int)$taskID)->exec(); if($oldTask->parent > 0) $this->updateParentStatus($taskID); @@ -1943,7 +1943,7 @@ class taskModel extends model ->remove('comment') ->get(); - $task = $this->file->processImgURL($task, $this->config->task->editor->close['id'], $this->post->uid); + $task = $this->loadModel('file')->processImgURL($task, $this->config->task->editor->close['id'], $this->post->uid); $this->dao->update(TABLE_TASK)->data($task)->autoCheck()->checkFlow()->where('id')->eq((int)$taskID)->exec(); if(!dao::isError()) @@ -1990,7 +1990,7 @@ class taskModel extends model ->remove('comment') ->get(); - $task = $this->file->processImgURL($task, $this->config->task->editor->cancel['id'], $this->post->uid); + $task = $this->loadModel('file')->processImgURL($task, $this->config->task->editor->cancel['id'], $this->post->uid); $this->dao->update(TABLE_TASK)->data($task)->autoCheck()->checkFlow()->where('id')->eq((int)$taskID)->exec(); if($oldTask->fromBug) $this->dao->update(TABLE_BUG)->set('toTask')->eq(0)->where('id')->eq($oldTask->fromBug)->exec(); if($oldTask->parent > 0) $this->updateParentStatus($taskID); @@ -2073,7 +2073,7 @@ class taskModel extends model $task = $this->computeHours4Multiple($oldTask, $task); } - $task = $this->file->processImgURL($task, $this->config->task->editor->activate['id'], $this->post->uid); + $task = $this->loadModel('file')->processImgURL($task, $this->config->task->editor->activate['id'], $this->post->uid); $this->dao->update(TABLE_TASK)->data($task) ->autoCheck() ->batchCheck($this->config->task->activate->requiredFields, 'notempty') From 644a4f1a595f2fdb785b37512f41682f8fba473e Mon Sep 17 00:00:00 2001 From: wangyidong Date: Thu, 2 Jun 2022 15:13:24 +0800 Subject: [PATCH 06/53] * rename sql. --- db/{update17.0.beta2.sql => update17.0.sql} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename db/{update17.0.beta2.sql => update17.0.sql} (100%) diff --git a/db/update17.0.beta2.sql b/db/update17.0.sql similarity index 100% rename from db/update17.0.beta2.sql rename to db/update17.0.sql From 2c4c1a4779c0b38201586350029230744f6fba75 Mon Sep 17 00:00:00 2001 From: wangyuting2 <851424971@qq.com> Date: Thu, 2 Jun 2022 16:10:04 +0800 Subject: [PATCH 07/53] * Finish task #12469. --- framework/model.class.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/framework/model.class.php b/framework/model.class.php index aa59671506..caf535c15a 100644 --- a/framework/model.class.php +++ b/framework/model.class.php @@ -103,10 +103,10 @@ class model extends baseModel if($action->extensionType == 'override') return $this->loadModel('flow')->buildActionMenu($moduleName, $action, $data, $type); $conditions = json_decode($action->conditions); - if($action->extensionType == 'extend' && $conditions) + if($action->extensionType == 'extend') { - $enabled = $this->loadModel('flow')->checkConditions($conditions, $data); - $label = $action->name; + $title = $action->name; + if($conditions) $enabled = $this->loadModel('flow')->checkConditions($conditions, $data); } else { From 53b1eabf0e7a809535b100b900efe78647901878 Mon Sep 17 00:00:00 2001 From: daitingting Date: Mon, 6 Jun 2022 07:46:12 +0000 Subject: [PATCH 08/53] * Return empty string when the time is empty. --- framework/helper.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/helper.class.php b/framework/helper.class.php index ddc4aecb30..c944daa477 100644 --- a/framework/helper.class.php +++ b/framework/helper.class.php @@ -285,7 +285,7 @@ function formatTime($time, $format = '') { $time = str_replace('0000-00-00', '', $time); $time = str_replace('00:00:00', '', $time); - if(trim($time) == '') return ; + if(trim($time) == '') return ''; if($format) return date($format, strtotime($time)); return trim($time); } From 2b4cbd97c4491a11576025cd50efe64bd2f68644 Mon Sep 17 00:00:00 2001 From: daitingting Date: Tue, 7 Jun 2022 02:52:36 +0000 Subject: [PATCH 09/53] * Finish task #56054. --- lib/front/front.class.php | 2 +- www/theme/default/style.css | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/front/front.class.php b/lib/front/front.class.php index d9078b82f8..0cb90123a9 100644 --- a/lib/front/front.class.php +++ b/lib/front/front.class.php @@ -91,7 +91,7 @@ class html extends baseHTML $string .= "'; } return $string; diff --git a/www/theme/default/style.css b/www/theme/default/style.css index d5a77c6729..54794862cd 100644 --- a/www/theme/default/style.css +++ b/www/theme/default/style.css @@ -91,3 +91,4 @@ a.showMoreImage:hover {opacity: 1;} #headerActions .dropdown-menu:before, #headerActions .dropdown-menu:hover:before {position: absolute; top: -9px; right: 50%; width: 0; height: 0; content: ' '; border-color: transparent transparent #fff transparent; border-style: solid; border-width: 0 10px 10px 10px;} .icon-size-width:before {content: "\e9c5"; transform: rotate(90deg); -ms-transform: rotate(90deg); -moz-transform: rotate(90deg); -webkit-transform: rotate(90deg); -o-transform: rotate(90deg);} +.checkbox-primary > label{overflow: hidden;} From 02e7d183c7f7cb503677f63655ed7e7ed69404f2 Mon Sep 17 00:00:00 2001 From: zhouxudong Date: Tue, 7 Jun 2022 07:01:44 +0000 Subject: [PATCH 10/53] * Finish task #56379. --- module/kanban/lang/en.php | 4 ++-- module/kanban/lang/zh-cn.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/module/kanban/lang/en.php b/module/kanban/lang/en.php index 661b6b5100..a536b8e3df 100644 --- a/module/kanban/lang/en.php +++ b/module/kanban/lang/en.php @@ -275,10 +275,10 @@ $lang->kanbanspace->empty = 'No Space'; $lang->kanbanspace->aclList['open'] = 'Open (Accessible with kanban view permissions)'; $lang->kanbanspace->aclList['private'] = 'Private (For the space owner, team and whitelist members only)'; -$lang->kanbanspace->featureBar['private'] = 'Private Space'; +$lang->kanbanspace->featureBar['involved'] = 'Involved'; $lang->kanbanspace->featureBar['cooperation'] = 'Cooperation Space'; $lang->kanbanspace->featureBar['public'] = 'Public Space'; -$lang->kanbanspace->featureBar['involved'] = 'Involved'; +$lang->kanbanspace->featureBar['private'] = 'Private Space'; $lang->kanbanspace->typeList['private'] = 'Private Space'; $lang->kanbanspace->typeList['cooperation'] = 'Cooperation Space'; diff --git a/module/kanban/lang/zh-cn.php b/module/kanban/lang/zh-cn.php index a706e5927f..30e70ec19d 100644 --- a/module/kanban/lang/zh-cn.php +++ b/module/kanban/lang/zh-cn.php @@ -275,10 +275,10 @@ $lang->kanbanspace->empty = '暂时没有空间'; $lang->kanbanspace->aclList['open'] = '公开(有看板空间视图权限即可访问)'; $lang->kanbanspace->aclList['private'] = '私有(只有看板空间负责人、团队成员、白名单可访问)'; -$lang->kanbanspace->featureBar['private'] = '私人空间'; +$lang->kanbanspace->featureBar['involved'] = '我参与的'; $lang->kanbanspace->featureBar['cooperation'] = '协作空间'; $lang->kanbanspace->featureBar['public'] = '公共空间'; -$lang->kanbanspace->featureBar['involved'] = '我参与的'; +$lang->kanbanspace->featureBar['private'] = '私人空间'; $lang->kanbanspace->typeList['private'] = '私人空间'; $lang->kanbanspace->typeList['cooperation'] = '协作空间'; From c7b1da840f46914bfe48bb8561da80fb3b96f5cb Mon Sep 17 00:00:00 2001 From: tianshujie Date: Tue, 7 Jun 2022 15:14:24 +0800 Subject: [PATCH 11/53] * Fix bug #56476. --- module/task/js/create.js | 2 +- module/task/view/create.html.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/module/task/js/create.js b/module/task/js/create.js index 7dfed22038..ec3449172a 100644 --- a/module/task/js/create.js +++ b/module/task/js/create.js @@ -555,7 +555,7 @@ $('#modalTeam .btn').click(function() } else { - if(config.onlybody == 'yes') + if(config.onlybody == 'yes' && vision == 'lite') { $('.close').parent().click(); } diff --git a/module/task/view/create.html.php b/module/task/view/create.html.php index 6c274f41c4..2f642ad3c9 100644 --- a/module/task/view/create.html.php +++ b/module/task/view/create.html.php @@ -16,6 +16,7 @@ id));?> task->error->teamMember);?> +vision);?> From 6e05fa0cfa69c63178821e44ac7c991e37cde5f9 Mon Sep 17 00:00:00 2001 From: wangyuting2 <851424971@qq.com> Date: Tue, 7 Jun 2022 15:16:38 +0800 Subject: [PATCH 12/53] * Add openEntry function for js class. --- lib/front/front.class.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/lib/front/front.class.php b/lib/front/front.class.php index 0cb90123a9..6913efb848 100644 --- a/lib/front/front.class.php +++ b/lib/front/front.class.php @@ -391,6 +391,19 @@ class html extends baseHTML */ class js extends baseJS { + /** + * Open a new app window. + * + * @param string $app + * @param string $url + * @static + * @access public + * @return string + */ + static public function openEntry($app, $url) + { + return self::start() . "$.apps.open('$url', '$app')" . self::end(); + } } /** From 4ecda5bee6c6c1a417418f6feeeea716812b0f72 Mon Sep 17 00:00:00 2001 From: zhouxudong Date: Tue, 7 Jun 2022 07:44:21 +0000 Subject: [PATCH 13/53] * Finish task #56380 #56379. --- module/kanban/view/createspace.html.php | 2 +- module/kanban/view/editspace.html.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/module/kanban/view/createspace.html.php b/module/kanban/view/createspace.html.php index 4d385cf203..bd8af29a43 100644 --- a/module/kanban/view/createspace.html.php +++ b/module/kanban/view/createspace.html.php @@ -20,7 +20,7 @@
- + diff --git a/module/kanban/view/editspace.html.php b/module/kanban/view/editspace.html.php index df5eaeeca7..b775bf3808 100644 --- a/module/kanban/view/editspace.html.php +++ b/module/kanban/view/editspace.html.php @@ -20,7 +20,7 @@
kanbanspace->type;?>
- + From b4a27adf49e9483d1b1c0625080a7bce7884c000 Mon Sep 17 00:00:00 2001 From: zhouxudong Date: Tue, 7 Jun 2022 08:16:04 +0000 Subject: [PATCH 14/53] * Finish task #56379 #56382 #56380. --- module/kanban/css/space.css | 1 + module/kanban/lang/en.php | 2 +- module/kanban/lang/zh-cn.php | 2 +- module/kanban/view/space.html.php | 1 + 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/module/kanban/css/space.css b/module/kanban/css/space.css index 0af2b80557..d7f725d1b3 100644 --- a/module/kanban/css/space.css +++ b/module/kanban/css/space.css @@ -8,6 +8,7 @@ .space .menu {margin-left: 5px; margin-right:5px;} .space .table-empty-tip {padding: 40px 10px;} .space .spaceTitle.pull-left {overflow: hidden; white-space: nowrap; max-width: calc(100% - 255px)} +.desc-style {font-size: 13px; color: #838A9D; margin: 10px 0 16px 0;} .kanbans > .col {width: 25% !important;} @media screen and (max-width: 1500px) {.kanbans > .col {width: 25%;}} diff --git a/module/kanban/lang/en.php b/module/kanban/lang/en.php index a536b8e3df..2e85b9cf10 100644 --- a/module/kanban/lang/en.php +++ b/module/kanban/lang/en.php @@ -280,9 +280,9 @@ $lang->kanbanspace->featureBar['cooperation'] = 'Cooperation Space'; $lang->kanbanspace->featureBar['public'] = 'Public Space'; $lang->kanbanspace->featureBar['private'] = 'Private Space'; -$lang->kanbanspace->typeList['private'] = 'Private Space'; $lang->kanbanspace->typeList['cooperation'] = 'Cooperation Space'; $lang->kanbanspace->typeList['public'] = 'Public Space'; +$lang->kanbanspace->typeList['private'] = 'Private Space'; $lang->kanbancolumn = new stdclass(); $lang->kanbancolumn->name = $lang->kanban->columnName; diff --git a/module/kanban/lang/zh-cn.php b/module/kanban/lang/zh-cn.php index 30e70ec19d..18534a0637 100644 --- a/module/kanban/lang/zh-cn.php +++ b/module/kanban/lang/zh-cn.php @@ -280,9 +280,9 @@ $lang->kanbanspace->featureBar['cooperation'] = '协作空间'; $lang->kanbanspace->featureBar['public'] = '公共空间'; $lang->kanbanspace->featureBar['private'] = '私人空间'; -$lang->kanbanspace->typeList['private'] = '私人空间'; $lang->kanbanspace->typeList['cooperation'] = '协作空间'; $lang->kanbanspace->typeList['public'] = '公共空间'; +$lang->kanbanspace->typeList['private'] = '私人空间'; $lang->kanbancolumn = new stdclass(); $lang->kanbancolumn->name = $lang->kanban->columnName; diff --git a/module/kanban/view/space.html.php b/module/kanban/view/space.html.php index c98e90e271..3d29541658 100644 --- a/module/kanban/view/space.html.php +++ b/module/kanban/view/space.html.php @@ -47,6 +47,7 @@ name;?> +

desc;?>

status == 'closed' ? 'disabled' : '';?> From dd10aa75f00b281f6e86f64c2124ec44ca2ffec4 Mon Sep 17 00:00:00 2001 From: zhouxudong Date: Wed, 8 Jun 2022 01:06:07 +0000 Subject: [PATCH 15/53] * Finish task #56366 #56379 #56382 #56380 --- module/kanban/css/space.css | 4 ++-- module/kanban/lang/en.php | 1 + module/kanban/lang/zh-cn.php | 1 + module/kanban/view/space.html.php | 21 +++++++++++++-------- 4 files changed, 17 insertions(+), 10 deletions(-) diff --git a/module/kanban/css/space.css b/module/kanban/css/space.css index d7f725d1b3..bc779ee065 100644 --- a/module/kanban/css/space.css +++ b/module/kanban/css/space.css @@ -7,8 +7,8 @@ #spaceList .spaceActions > a{margin-left: 10px;} .space .menu {margin-left: 5px; margin-right:5px;} .space .table-empty-tip {padding: 40px 10px;} -.space .spaceTitle.pull-left {overflow: hidden; white-space: nowrap; max-width: calc(100% - 255px)} -.desc-style {font-size: 13px; color: #838A9D; margin: 10px 0 16px 0;} +.space .spaceTitle.pull-left {overflow: hidden; white-space: nowrap; max-width: calc(100% - 150px)} +.desc-style {font-size: 13px; color: #838A9D; margin: -5px 0 16px 18px;} .kanbans > .col {width: 25% !important;} @media screen and (max-width: 1500px) {.kanbans > .col {width: 25%;}} diff --git a/module/kanban/lang/en.php b/module/kanban/lang/en.php index 2e85b9cf10..ada1af7205 100644 --- a/module/kanban/lang/en.php +++ b/module/kanban/lang/en.php @@ -26,6 +26,7 @@ $lang->kanban->columnWidth = 'Column Width'; $lang->kanban->setColumnWidth = 'Set Column Width'; $lang->kanban->deleteLane = 'Delete Lane'; $lang->kanban->createColumn = 'Create Column'; +$lang->kanban->emptyDesc = 'No description'; $lang->kanban->editColumn = 'Edit Column'; $lang->kanban->sortColumn = 'Sort Column'; $lang->kanban->deleteColumn = 'Delete Column'; diff --git a/module/kanban/lang/zh-cn.php b/module/kanban/lang/zh-cn.php index 18534a0637..8fab1ef0f2 100644 --- a/module/kanban/lang/zh-cn.php +++ b/module/kanban/lang/zh-cn.php @@ -26,6 +26,7 @@ $lang->kanban->columnWidth = '列宽度'; $lang->kanban->setColumnWidth = '设置列宽度'; $lang->kanban->deleteLane = '删除泳道'; $lang->kanban->createColumn = '创建看板列'; +$lang->kanban->emptyDesc = '暂无描述'; $lang->kanban->editColumn = '编辑看板列'; $lang->kanban->sortColumn = '看板列排序'; $lang->kanban->deleteColumn = '删除看板列'; diff --git a/module/kanban/view/space.html.php b/module/kanban/view/space.html.php index 3d29541658..bd42d1074a 100644 --- a/module/kanban/view/space.html.php +++ b/module/kanban/view/space.html.php @@ -47,18 +47,23 @@ name;?>
-

desc;?>

+

desc) ? $lang->kanban->emptyDesc : $space->desc;?>

status == 'closed' ? 'disabled' : '';?> status != 'closed' and $browseType != 'involved' and !empty($unclosedSpace)) common::printLink('kanban', 'create', "spaceID={$space->id}&type={$space->type}", ' ' . $lang->kanban->create, '', "class='iframe' data-width='75%'", '', true);?> - id}", ' ' . $lang->kanban->setting, '', "class='iframe' data-width='75%'", '', true);?> - - id}", ' ' . $lang->activate, '', "class='iframe'", '', true);?> - - id}", ' ' . $lang->close, '', "class='iframe'", '', true);?> - - id}", ' ' . $lang->delete, 'hiddenwin', '', '', true);?> +
+ kanban->setting;?> +
kanbans)):?> From b528156589fd24d563ea96611bbe00e47ce45658 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=99=E5=B9=BF=E6=98=8E?= Date: Wed, 8 Jun 2022 09:34:46 +0800 Subject: [PATCH 16/53] * Change license. --- api/v1/entries/bug.php | 2 +- api/v1/entries/bugactive.php | 2 +- api/v1/entries/bugassign.php | 2 +- api/v1/entries/bugclose.php | 2 +- api/v1/entries/bugconfirm.php | 2 +- api/v1/entries/bugrecordestimate.php | 2 +- api/v1/entries/bugresolve.php | 2 +- api/v1/entries/bugs.php | 2 +- api/v1/entries/build.php | 2 +- api/v1/entries/builds.php | 2 +- api/v1/entries/ciresults.php | 2 +- api/v1/entries/config.php | 2 +- api/v1/entries/configs.php | 2 +- api/v1/entries/department.php | 2 +- api/v1/entries/departments.php | 2 +- api/v1/entries/doc.php | 2 +- api/v1/entries/doclibs.php | 2 +- api/v1/entries/docs.php | 2 +- api/v1/entries/error.php | 2 +- api/v1/entries/execution.php | 2 +- api/v1/entries/executionbugs.php | 2 +- api/v1/entries/executionbuilds.php | 2 +- api/v1/entries/executioncases.php | 2 +- api/v1/entries/executions.php | 2 +- api/v1/entries/executionstories.php | 2 +- api/v1/entries/feedback.php | 2 +- api/v1/entries/feedbackassignto.php | 2 +- api/v1/entries/feedbackclose.php | 2 +- api/v1/entries/feedbacks.php | 2 +- api/v1/entries/file.php | 2 +- api/v1/entries/files.php | 2 +- api/v1/entries/gitlabwebhook.php | 2 +- api/v1/entries/groups.php | 2 +- api/v1/entries/issue.php | 2 +- api/v1/entries/issues.php | 2 +- api/v1/entries/langs.php | 2 +- api/v1/entries/meetings.php | 2 +- api/v1/entries/modules.php | 2 +- api/v1/entries/options.php | 2 +- api/v1/entries/ping.php | 2 +- api/v1/entries/product.php | 2 +- api/v1/entries/productissue.php | 2 +- api/v1/entries/productissues.php | 2 +- api/v1/entries/productplan.php | 2 +- api/v1/entries/productplanlinkbugs.php | 2 +- api/v1/entries/productplanlinkstories.php | 2 +- api/v1/entries/productplans.php | 2 +- api/v1/entries/productplanunlinkbugs.php | 2 +- api/v1/entries/productplanunlinkstories.php | 2 +- api/v1/entries/productprojects.php | 2 +- api/v1/entries/products.php | 2 +- api/v1/entries/program.php | 2 +- api/v1/entries/programs.php | 2 +- api/v1/entries/project.php | 2 +- api/v1/entries/projectbugs.php | 2 +- api/v1/entries/projectcases.php | 2 +- api/v1/entries/projectreleases.php | 2 +- api/v1/entries/projects.php | 2 +- api/v1/entries/projectstories.php | 2 +- api/v1/entries/release.php | 2 +- api/v1/entries/releases.php | 2 +- api/v1/entries/reports.php | 2 +- api/v1/entries/reporules.php | 2 +- api/v1/entries/repos.php | 2 +- api/v1/entries/risk.php | 2 +- api/v1/entries/risks.php | 2 +- api/v1/entries/stakeholders.php | 2 +- api/v1/entries/stories.php | 2 +- api/v1/entries/story.php | 2 +- api/v1/entries/storyactive.php | 2 +- api/v1/entries/storyassignto.php | 2 +- api/v1/entries/storychange.php | 2 +- api/v1/entries/storyclose.php | 2 +- api/v1/entries/storyrecall.php | 2 +- api/v1/entries/storyrecordestimate.php | 2 +- api/v1/entries/storyreview.php | 2 +- api/v1/entries/tabs.php | 2 +- api/v1/entries/task.php | 2 +- api/v1/entries/taskactive.php | 2 +- api/v1/entries/taskassignto.php | 2 +- api/v1/entries/taskbatchcreate.php | 2 +- api/v1/entries/taskclose.php | 2 +- api/v1/entries/taskcomponent.php | 2 +- api/v1/entries/taskfinish.php | 2 +- api/v1/entries/taskpause.php | 2 +- api/v1/entries/taskrecordestimate.php | 2 +- api/v1/entries/tasks.php | 2 +- api/v1/entries/taskstart.php | 2 +- api/v1/entries/testcase.php | 2 +- api/v1/entries/testcases.php | 2 +- api/v1/entries/testresults.php | 2 +- api/v1/entries/testsuite.php | 2 +- api/v1/entries/testsuites.php | 2 +- api/v1/entries/testtask.php | 2 +- api/v1/entries/testtasks.php | 2 +- api/v1/entries/todo.php | 2 +- api/v1/entries/todoactivate.php | 2 +- api/v1/entries/todofinish.php | 2 +- api/v1/entries/todos.php | 2 +- api/v1/entries/tokens.php | 2 +- api/v1/entries/user.php | 2 +- api/v1/entries/users.php | 2 +- api/v1/entries/views.php | 2 +- api/v1/entries/zfile.php | 2 +- api/v1/entries/zfilecontent.php | 2 +- api/v1/entries/zfolder.php | 2 +- api/v1/entries/zfolders.php | 2 +- config/zentaopms.php | 2 +- extension/lite/attend/ext/view/personal.html.php | 2 +- extension/lite/block/ext/view/welcome.html.php | 2 +- extension/lite/execution/ext/view/create.html.php | 2 +- extension/lite/group/ext/view/create.html.php | 2 +- extension/lite/install/ext/view/step6.html.php | 2 +- extension/lite/kanban/ext/view/import.html.php | 2 +- extension/lite/my/ext/view/task.html.php | 2 +- extension/lite/product/ext/view/browse.html.php | 2 +- extension/lite/project/ext/view/browse.html.php | 2 +- extension/lite/project/ext/view/create.html.php | 2 +- extension/lite/project/ext/view/execution.html.php | 2 +- extension/lite/project/ext/view/team.html.php | 2 +- extension/lite/story/ext/view/batchcreate.html.php | 2 +- extension/lite/story/ext/view/batchedit.html.php | 2 +- extension/lite/story/ext/view/create.html.php | 2 +- extension/lite/story/ext/view/edit.html.php | 2 +- extension/lite/story/ext/view/view.html.php | 2 +- extension/lite/task/ext/lang/en/lite.php | 2 +- extension/lite/task/ext/lang/zh-cn/lite.php | 2 +- extension/lite/task/ext/view/batchcreate.html.php | 2 +- extension/lite/task/ext/view/create.html.php | 2 +- extension/lite/tree/ext/view/browsetask.html.php | 2 +- extension/lite/user/ext/view/execution.html.php | 2 +- lib/api/api.class.php | 2 +- lib/date/date.class.php | 2 +- lib/zdb/zdb.class.php | 2 +- lib/zfile/zfile.class.php | 2 +- module/action/control.php | 2 +- module/action/lang/de.php | 2 +- module/action/lang/en.php | 2 +- module/action/lang/fr.php | 2 +- module/action/lang/zh-cn.php | 2 +- module/action/lang/zh-tw.php | 2 +- module/action/model.php | 2 +- module/action/view/trash.html.php | 2 +- module/admin/control.php | 2 +- module/admin/lang/de.php | 2 +- module/admin/lang/en.php | 2 +- module/admin/lang/fr.php | 2 +- module/admin/lang/zh-cn.php | 2 +- module/admin/lang/zh-tw.php | 2 +- module/admin/model.php | 2 +- module/admin/view/bind.html.php | 2 +- module/admin/view/certifyztemail.html.php | 2 +- module/admin/view/certifyztmobile.html.php | 2 +- module/admin/view/checkweak.html.php | 2 +- module/admin/view/index.html.php | 2 +- module/admin/view/log.html.php | 2 +- module/admin/view/register.html.php | 2 +- module/admin/view/safe.html.php | 2 +- module/admin/view/sso.html.php | 2 +- module/admin/view/ztcompany.html.php | 2 +- module/api/control.php | 2 +- module/api/lang/de.php | 2 +- module/api/lang/en.php | 2 +- module/api/lang/fr.php | 2 +- module/api/lang/zh-cn.php | 2 +- module/api/lang/zh-tw.php | 2 +- module/api/model.php | 2 +- module/api/view/create.html.php | 2 +- module/api/view/createlib.html.php | 2 +- module/api/view/createrelease.html.php | 2 +- module/api/view/createstruct.html.php | 2 +- module/api/view/edit.html.php | 2 +- module/api/view/editlib.html.php | 2 +- module/api/view/editstruct.html.php | 2 +- module/api/view/index.html.php | 2 +- module/api/view/releases.html.php | 2 +- module/api/view/struct.html.php | 2 +- module/automation/control.php | 2 +- module/automation/lang/en.php | 2 +- module/automation/lang/zh-cn.php | 2 +- module/automation/lang/zh-tw.php | 2 +- module/automation/model.php | 2 +- module/automation/view/browse.html.php | 2 +- module/backup/control.php | 2 +- module/backup/model.php | 2 +- module/backup/view/index.html.php | 2 +- module/backup/view/setting.html.php | 2 +- module/block/config.php | 2 +- module/block/control.php | 2 +- module/block/lang/de.php | 2 +- module/block/lang/en.php | 2 +- module/block/lang/fr.php | 2 +- module/block/lang/vi.php | 2 +- module/block/lang/zh-cn.php | 2 +- module/block/lang/zh-tw.php | 2 +- module/block/model.php | 2 +- module/block/view/admin.html.php | 2 +- module/block/view/bugblock.html.php | 2 +- module/block/view/buildblock.html.php | 2 +- module/block/view/caseblock.html.php | 2 +- module/block/view/dashboard.html.php | 2 +- module/block/view/executionblock.html.php | 2 +- module/block/view/executionoverviewblock.html.php | 2 +- module/block/view/listblock.html.php | 2 +- module/block/view/main.html.php | 2 +- module/block/view/overviewblock.html.php | 2 +- module/block/view/planblock.html.php | 2 +- module/block/view/printassigntomeblock.html.php | 2 +- module/block/view/productblock.html.php | 2 +- module/block/view/productoverviewblock.html.php | 2 +- module/block/view/productstatisticblock.html.php | 2 +- module/block/view/publicform.html.php | 2 +- module/block/view/qaoverviewblock.html.php | 2 +- module/block/view/releaseblock.html.php | 2 +- module/block/view/requirementblock.html.php | 2 +- module/block/view/scrumlistblock.html.php | 2 +- module/block/view/scrumoverviewblock.html.php | 2 +- module/block/view/scrumproductblock.html.php | 2 +- module/block/view/scrumroadmapblock.html.php | 2 +- module/block/view/scrumtestblock.html.php | 2 +- module/block/view/set.html.php | 2 +- module/block/view/setmodule.html.php | 2 +- module/block/view/sprintblock.html.php | 2 +- module/block/view/statisticblock.html.php | 2 +- module/block/view/storyblock.html.php | 2 +- module/block/view/taskblock.html.php | 2 +- module/block/view/testtaskblock.html.php | 2 +- module/block/view/todoblock.html.php | 2 +- module/block/view/todolist.html.php | 2 +- module/block/view/welcome.html.php | 2 +- module/branch/control.php | 2 +- module/branch/model.php | 2 +- module/branch/view/batchedit.html.php | 2 +- module/branch/view/create.html.php | 2 +- module/branch/view/edit.html.php | 2 +- module/branch/view/manage.html.php | 2 +- module/bug/control.php | 2 +- module/bug/lang/de.php | 2 +- module/bug/lang/en.php | 2 +- module/bug/lang/fr.php | 2 +- module/bug/lang/zh-cn.php | 2 +- module/bug/lang/zh-tw.php | 2 +- module/bug/model.php | 2 +- module/bug/view/activate.html.php | 2 +- module/bug/view/assignto.html.php | 2 +- module/bug/view/batchactivate.html.php | 2 +- module/bug/view/batchcreate.html.php | 2 +- module/bug/view/batchedit.html.php | 2 +- module/bug/view/browse.html.php | 2 +- module/bug/view/close.html.php | 2 +- module/bug/view/confirmbug.html.php | 2 +- module/bug/view/create.html.php | 2 +- module/bug/view/edit.html.php | 2 +- module/bug/view/export.html.php | 2 +- module/bug/view/linkbugs.html.php | 2 +- module/bug/view/report.html.php | 2 +- module/bug/view/resolve.html.php | 2 +- module/bug/view/sendmail.html.php | 2 +- module/bug/view/view.html.php | 2 +- module/build/control.php | 2 +- module/build/lang/de.php | 2 +- module/build/lang/en.php | 2 +- module/build/lang/fr.php | 2 +- module/build/lang/zh-cn.php | 2 +- module/build/lang/zh-tw.php | 2 +- module/build/model.php | 2 +- module/build/view/create.html.php | 2 +- module/build/view/edit.html.php | 2 +- module/build/view/linkbug.html.php | 2 +- module/build/view/linkstory.html.php | 2 +- module/build/view/view.html.php | 2 +- module/caselib/control.php | 2 +- module/caselib/lang/de.php | 2 +- module/caselib/lang/en.php | 2 +- module/caselib/lang/fr.php | 2 +- module/caselib/lang/zh-cn.php | 2 +- module/caselib/lang/zh-tw.php | 2 +- module/caselib/model.php | 2 +- module/caselib/view/batchcreatecase.html.php | 2 +- module/caselib/view/browse.html.php | 2 +- module/caselib/view/create.html.php | 2 +- module/caselib/view/createcase.html.php | 2 +- module/caselib/view/edit.html.php | 2 +- module/caselib/view/view.html.php | 2 +- module/ci/control.php | 2 +- module/common/lang/de.php | 2 +- module/common/lang/en.php | 2 +- module/common/lang/fr.php | 2 +- module/common/lang/zh-cn.php | 2 +- module/common/lang/zh-tw.php | 2 +- module/common/model.php | 2 +- module/common/view/customfield.html.php | 2 +- module/company/control.php | 2 +- module/company/lang/de.php | 2 +- module/company/lang/en.php | 2 +- module/company/lang/fr.php | 2 +- module/company/lang/zh-cn.php | 2 +- module/company/lang/zh-tw.php | 2 +- module/company/model.php | 2 +- module/company/view/browse.html.php | 2 +- module/company/view/dynamic.html.php | 2 +- module/company/view/edit.html.php | 2 +- module/company/view/view.html.php | 2 +- module/compile/control.php | 2 +- module/compile/model.php | 2 +- module/compile/view/browse.html.php | 2 +- module/compile/view/logs.html.php | 2 +- module/convert/control.php | 2 +- module/convert/converter/bugfree.php | 2 +- module/convert/converter/bugfree1.php | 2 +- module/convert/converter/bugfree2.php | 2 +- module/convert/converter/redmine.php | 2 +- module/convert/converter/redmine1.1.php | 2 +- module/convert/lang/de.php | 2 +- module/convert/lang/en.php | 2 +- module/convert/lang/fr.php | 2 +- module/convert/lang/zh-cn.php | 2 +- module/convert/lang/zh-tw.php | 2 +- module/convert/model.php | 2 +- module/convert/view/checkconfig.html.php | 2 +- module/convert/view/convertjira.html.php | 2 +- module/convert/view/execute.html.php | 2 +- module/convert/view/importnotice.html.php | 2 +- module/convert/view/index.html.php | 2 +- module/convert/view/initjirauser.html.php | 2 +- module/convert/view/mapjira2zentao.html.php | 2 +- module/convert/view/selectsource.html.php | 2 +- module/convert/view/setconfig.html.php | 2 +- module/cron/control.php | 2 +- module/cron/model.php | 2 +- module/cron/view/create.html.php | 2 +- module/cron/view/edit.html.php | 2 +- module/cron/view/index.html.php | 2 +- module/cron/view/openprocess.html.php | 2 +- module/custom/control.php | 2 +- module/custom/model.php | 2 +- module/custom/view/ajaxmenu.html.php | 2 +- module/custom/view/browsestoryconcept.html.php | 2 +- module/custom/view/editstoryconcept.html.php | 2 +- module/custom/view/execution.html.php | 2 +- module/custom/view/flow.html.php | 2 +- module/custom/view/kanban.html.php | 2 +- module/custom/view/mode.html.php | 2 +- module/custom/view/product.html.php | 2 +- module/custom/view/required.html.php | 2 +- module/custom/view/score.html.php | 2 +- module/custom/view/set.html.php | 2 +- module/custom/view/setstoryconcept.html.php | 2 +- module/custom/view/timezone.html.php | 2 +- module/custom/view/working.html.php | 2 +- module/dept/control.php | 2 +- module/dept/lang/de.php | 2 +- module/dept/lang/en.php | 2 +- module/dept/lang/fr.php | 2 +- module/dept/lang/zh-cn.php | 2 +- module/dept/lang/zh-tw.php | 2 +- module/dept/model.php | 2 +- module/dept/view/browse.html.php | 2 +- module/dept/view/edit.html.php | 2 +- module/design/control.php | 2 +- module/design/lang/de.php | 2 +- module/design/lang/en.php | 2 +- module/design/lang/fr.php | 2 +- module/design/lang/vi.php | 2 +- module/design/lang/zh-cn.php | 2 +- module/design/lang/zh-tw.php | 2 +- module/design/model.php | 2 +- module/design/view/assignto.html.php | 2 +- module/design/view/batchcreate.html.php | 2 +- module/design/view/browse.html.php | 2 +- module/design/view/create.html.php | 2 +- module/design/view/edit.html.php | 2 +- module/design/view/linkcommit.html.php | 2 +- module/design/view/view.html.php | 2 +- module/design/view/viewcommit.html.php | 2 +- module/dev/view/editor.html.php | 2 +- module/dev/view/translate.html.php | 2 +- module/doc/control.php | 2 +- module/doc/lang/de.php | 2 +- module/doc/lang/en.php | 2 +- module/doc/lang/fr.php | 2 +- module/doc/lang/zh-cn.php | 2 +- module/doc/lang/zh-tw.php | 2 +- module/doc/model.php | 2 +- module/doc/view/alllibs.html.php | 2 +- module/doc/view/browse.html.php | 2 +- module/doc/view/create.html.php | 2 +- module/doc/view/createlib.html.php | 2 +- module/doc/view/edit.html.php | 2 +- module/doc/view/editlib.html.php | 2 +- module/doc/view/index.html.php | 2 +- module/doc/view/objectlibs.html.php | 2 +- module/doc/view/selectlibtype.html.php | 2 +- module/doc/view/sendmail.html.php | 2 +- module/doc/view/showfiles.html.php | 2 +- module/doc/view/tablecontents.html.php | 2 +- module/doc/view/view.html.php | 2 +- module/entry/control.php | 2 +- module/entry/model.php | 2 +- module/entry/view/browse.html.php | 2 +- module/entry/view/create.html.php | 2 +- module/entry/view/edit.html.php | 2 +- module/entry/view/header.html.php | 2 +- module/entry/view/log.html.php | 2 +- module/execution/lang/de.php | 2 +- module/execution/lang/en.php | 2 +- module/execution/lang/fr.php | 2 +- module/execution/lang/zh-cn.php | 2 +- module/execution/lang/zh-tw.php | 2 +- module/execution/model.php | 2 +- module/execution/view/activate.html.php | 2 +- module/execution/view/ajaxkanbansetting.html.php | 2 +- module/execution/view/all.html.php | 2 +- module/execution/view/batchedit.html.php | 2 +- module/execution/view/bug.html.php | 2 +- module/execution/view/build.html.php | 2 +- module/execution/view/burn.html.php | 2 +- module/execution/view/close.html.php | 2 +- module/execution/view/computeburn.html.php | 2 +- module/execution/view/create.html.php | 2 +- module/execution/view/doc.html.php | 2 +- module/execution/view/dynamic.html.php | 2 +- module/execution/view/edit.html.php | 2 +- module/execution/view/export.html.php | 2 +- module/execution/view/fixfirst.html.php | 2 +- module/execution/view/grouptask.html.php | 2 +- module/execution/view/importbug.html.php | 2 +- module/execution/view/importtask.html.php | 2 +- module/execution/view/index.html.php | 2 +- module/execution/view/kanban.html.php | 2 +- module/execution/view/linkstory.html.php | 2 +- module/execution/view/managemembers.html.php | 2 +- module/execution/view/manageproducts.html.php | 2 +- module/execution/view/putoff.html.php | 2 +- module/execution/view/start.html.php | 2 +- module/execution/view/story.html.php | 2 +- module/execution/view/storyestimate.html.php | 2 +- module/execution/view/suspend.html.php | 2 +- module/execution/view/task.html.php | 2 +- module/execution/view/team.html.php | 2 +- module/execution/view/testtask.html.php | 2 +- module/execution/view/tree.html.php | 2 +- module/execution/view/view.html.php | 2 +- module/extension/control.php | 2 +- module/extension/lang/de.php | 2 +- module/extension/lang/en.php | 2 +- module/extension/lang/fr.php | 2 +- module/extension/lang/zh-cn.php | 2 +- module/extension/lang/zh-tw.php | 2 +- module/extension/model.php | 2 +- module/extension/view/activate.html.php | 2 +- module/extension/view/browse.html.php | 2 +- module/extension/view/checkscore.html.php | 2 +- module/extension/view/deactivate.html.php | 2 +- module/extension/view/erase.html.php | 2 +- module/extension/view/install.html.php | 2 +- module/extension/view/obtain.html.php | 2 +- module/extension/view/safe.html.php | 2 +- module/extension/view/structure.html.php | 2 +- module/extension/view/uninstall.html.php | 2 +- module/extension/view/upload.html.php | 2 +- module/extension/view/waring.htm.php | 2 +- module/file/control.php | 2 +- module/file/lang/de.php | 2 +- module/file/lang/en.php | 2 +- module/file/lang/fr.php | 2 +- module/file/lang/zh-cn.php | 2 +- module/file/lang/zh-tw.php | 2 +- module/file/model.php | 2 +- module/file/view/edit.html.php | 2 +- module/file/view/export.html.php | 2 +- module/file/view/export2csv.html.php | 2 +- module/file/view/export2html.html.php | 2 +- module/file/view/export2xml.html.php | 2 +- module/file/view/uploadimages.html.php | 2 +- module/git/control.php | 2 +- module/git/lang/de.php | 2 +- module/git/lang/en.php | 2 +- module/git/lang/fr.php | 2 +- module/git/lang/zh-cn.php | 2 +- module/git/lang/zh-tw.php | 2 +- module/git/model.php | 2 +- module/git/view/cat.html.php | 2 +- module/git/view/diff.html.php | 2 +- module/gitlab/control.php | 2 +- module/gitlab/model.php | 2 +- module/gitlab/view/binduser.html.php | 2 +- module/gitlab/view/browse.html.php | 2 +- module/gitlab/view/browsebranch.html.php | 2 +- module/gitlab/view/browsebranchpriv.html.php | 2 +- module/gitlab/view/browsegroup.html.php | 2 +- module/gitlab/view/browseproject.html.php | 2 +- module/gitlab/view/browsetag.html.php | 2 +- module/gitlab/view/browsetagpriv.html.php | 2 +- module/gitlab/view/browseuser.html.php | 2 +- module/gitlab/view/create.html.php | 2 +- module/gitlab/view/createbranch.html.php | 2 +- module/gitlab/view/createbranchpriv.html.php | 2 +- module/gitlab/view/creategroup.html.php | 2 +- module/gitlab/view/createproject.html.php | 2 +- module/gitlab/view/createtag.html.php | 2 +- module/gitlab/view/createtagpriv.html.php | 2 +- module/gitlab/view/createuser.html.php | 2 +- module/gitlab/view/edit.html.php | 2 +- module/gitlab/view/editgroup.html.php | 2 +- module/gitlab/view/editproject.html.php | 2 +- module/gitlab/view/edittagpriv.html.php | 2 +- module/gitlab/view/edituser.html.php | 2 +- module/gitlab/view/importissue.html.php | 2 +- module/gitlab/view/view.html.php | 2 +- module/group/control.php | 2 +- module/group/lang/de.php | 2 +- module/group/lang/en.php | 2 +- module/group/lang/fr.php | 2 +- module/group/lang/resource.php | 2 +- module/group/lang/zh-cn.php | 2 +- module/group/lang/zh-tw.php | 2 +- module/group/model.php | 2 +- module/group/view/browse.html.php | 2 +- module/group/view/copy.html.php | 2 +- module/group/view/create.html.php | 2 +- module/group/view/edit.html.php | 2 +- module/group/view/managemember.html.php | 2 +- module/group/view/managepriv.html.php | 2 +- module/group/view/manageprojectadmin.html.php | 2 +- module/group/view/manageview.html.php | 2 +- module/group/view/privbygroup.html.php | 2 +- module/group/view/privbymodule.html.php | 2 +- module/holiday/control.php | 2 +- module/holiday/model.php | 2 +- module/holiday/view/browse.html.php | 2 +- module/holiday/view/create.html.php | 2 +- module/holiday/view/edit.html.php | 2 +- module/index/control.php | 2 +- module/index/model.php | 2 +- module/index/view/index.html.php | 2 +- module/install/control.php | 2 +- module/install/lang/de.php | 2 +- module/install/lang/en.php | 2 +- module/install/lang/fr.php | 2 +- module/install/lang/zh-cn.php | 2 +- module/install/lang/zh-tw.php | 2 +- module/install/model.php | 2 +- module/install/view/index.html.php | 2 +- module/install/view/license.html.php | 2 +- module/install/view/step1.html.php | 2 +- module/install/view/step2.html.php | 2 +- module/install/view/step3.html.php | 2 +- module/install/view/step4.html.php | 2 +- module/install/view/step5.html.php | 2 +- module/install/view/step6.html.php | 2 +- module/jenkins/control.php | 2 +- module/jenkins/model.php | 2 +- module/jenkins/view/browse.html.php | 2 +- module/jenkins/view/create.html.php | 2 +- module/jenkins/view/edit.html.php | 2 +- module/job/control.php | 2 +- module/job/model.php | 2 +- module/job/view/browse.html.php | 2 +- module/job/view/create.html.php | 2 +- module/job/view/edit.html.php | 2 +- module/job/view/view.html.php | 2 +- module/kanban/control.php | 2 +- module/kanban/model.php | 2 +- module/kanban/view/activate.html.php | 2 +- module/kanban/view/activatecard.html.php | 2 +- module/kanban/view/activatespace.html.php | 2 +- module/kanban/view/batchcreatecard.html.php | 2 +- module/kanban/view/close.html.php | 2 +- module/kanban/view/closespace.html.php | 2 +- module/kanban/view/create.html.php | 2 +- module/kanban/view/createcard.html.php | 2 +- module/kanban/view/createcolumn.html.php | 2 +- module/kanban/view/createexeclane.html.php | 2 +- module/kanban/view/createregion.html.php | 2 +- module/kanban/view/createspace.html.php | 2 +- module/kanban/view/edit.html.php | 2 +- module/kanban/view/editcard.html.php | 2 +- module/kanban/view/editregion.html.php | 2 +- module/kanban/view/editspace.html.php | 2 +- module/kanban/view/enablearchived.html.php | 2 +- module/kanban/view/import.html.php | 2 +- module/kanban/view/importbuild.html.php | 2 +- module/kanban/view/importcard.html.php | 2 +- module/kanban/view/importexecution.html.php | 2 +- module/kanban/view/importplan.html.php | 2 +- module/kanban/view/importrelease.html.php | 2 +- module/kanban/view/performable.html.php | 2 +- module/kanban/view/sendmail.html.php | 2 +- module/kanban/view/setcolumn.html.php | 2 +- module/kanban/view/setcolumnwidth.html.php | 2 +- module/kanban/view/setlane.html.php | 2 +- module/kanban/view/setlaneheight.html.php | 2 +- module/kanban/view/setwip.html.php | 2 +- module/kanban/view/space.html.php | 2 +- module/kanban/view/splitcolumn.html.php | 2 +- module/kanban/view/view.html.php | 2 +- module/kanban/view/viewarchivedcard.html.php | 2 +- module/kanban/view/viewarchivedcolumn.html.php | 2 +- module/kanban/view/viewcard.html.php | 2 +- module/mail/control.php | 2 +- module/mail/model.php | 2 +- module/mail/view/browse.html.php | 2 +- module/mail/view/detect.html.php | 2 +- module/mail/view/edit.html.php | 2 +- module/mail/view/index.html.php | 2 +- module/mail/view/save.html.php | 2 +- module/mail/view/sendcloud.html.php | 2 +- module/mail/view/sendclouduser.html.php | 2 +- module/mail/view/test.html.php | 2 +- module/mail/view/ztcloud.html.php | 2 +- module/message/control.php | 2 +- module/message/model.php | 2 +- module/message/view/browser.html.php | 2 +- module/message/view/setting.html.php | 2 +- module/misc/control.php | 2 +- module/misc/lang/de.php | 2 +- module/misc/lang/en.php | 2 +- module/misc/lang/fr.php | 2 +- module/misc/lang/zh-cn.php | 2 +- module/misc/lang/zh-tw.php | 2 +- module/misc/model.php | 2 +- module/mr/model.php | 2 +- module/mr/view/approval.html.php | 2 +- module/mr/view/link.html.php | 2 +- module/mr/view/linkbug.html.php | 2 +- module/mr/view/linkstory.html.php | 2 +- module/mr/view/linktask.html.php | 2 +- module/my/control.php | 2 +- module/my/model.php | 2 +- module/my/view/bug.html.php | 2 +- module/my/view/buildcontactlists.html.php | 2 +- module/my/view/changepassword.html.php | 2 +- module/my/view/doc.html.php | 2 +- module/my/view/dynamic.html.php | 2 +- module/my/view/editprofile.html.php | 2 +- module/my/view/execution.html.php | 2 +- module/my/view/index.html.php | 2 +- module/my/view/managecontacts.html.php | 2 +- module/my/view/preference.html.php | 2 +- module/my/view/profile.html.php | 2 +- module/my/view/project.html.php | 2 +- module/my/view/score.html.php | 2 +- module/my/view/task.html.php | 2 +- module/my/view/team.html.php | 2 +- module/my/view/testcase.html.php | 2 +- module/my/view/testtask.html.php | 2 +- module/my/view/todo.html.php | 2 +- module/personnel/control.php | 2 +- module/personnel/model.php | 2 +- module/personnel/view/accessible.html.php | 2 +- module/personnel/view/addwhitelist.html.php | 2 +- module/personnel/view/invest.html.php | 2 +- module/personnel/view/whitelist.html.php | 2 +- module/pipeline/model.php | 2 +- module/product/control.php | 2 +- module/product/lang/de.php | 2 +- module/product/lang/en.php | 2 +- module/product/lang/fr.php | 2 +- module/product/lang/zh-cn.php | 2 +- module/product/lang/zh-tw.php | 2 +- module/product/model.php | 2 +- module/product/view/all.html.php | 2 +- module/product/view/batchedit.html.php | 2 +- module/product/view/browse.html.php | 2 +- module/product/view/build.html.php | 2 +- module/product/view/close.html.php | 2 +- module/product/view/create.html.php | 2 +- module/product/view/dashboard.html.php | 2 +- module/product/view/dynamic.html.php | 2 +- module/product/view/edit.html.php | 2 +- module/product/view/export.html.php | 2 +- module/product/view/index.html.php | 2 +- module/product/view/kanban.html.php | 2 +- module/product/view/manageline.html.php | 2 +- module/product/view/project.html.php | 2 +- module/product/view/roadmap.html.php | 2 +- module/product/view/showerrornone.html.php | 2 +- module/product/view/view.html.php | 2 +- module/productplan/control.php | 2 +- module/productplan/lang/de.php | 2 +- module/productplan/lang/en.php | 2 +- module/productplan/lang/fr.php | 2 +- module/productplan/lang/zh-cn.php | 2 +- module/productplan/lang/zh-tw.php | 2 +- module/productplan/model.php | 2 +- module/productplan/view/batchchangestatus.html.php | 2 +- module/productplan/view/batchedit.html.php | 2 +- module/productplan/view/browse.html.php | 2 +- module/productplan/view/browsebykanban.html.php | 2 +- module/productplan/view/browsebylist.html.php | 2 +- module/productplan/view/close.html.php | 2 +- module/productplan/view/create.html.php | 2 +- module/productplan/view/edit.html.php | 2 +- module/productplan/view/linkbug.html.php | 2 +- module/productplan/view/linkstory.html.php | 2 +- module/productplan/view/start.html.php | 2 +- module/productplan/view/view.html.php | 2 +- module/program/view/browse.html.php | 2 +- module/program/view/create.html.php | 2 +- module/program/view/createstakeholder.html.php | 2 +- module/program/view/edit.html.php | 2 +- module/program/view/export.html.php | 2 +- module/program/view/index.html.php | 2 +- module/program/view/kanban.html.php | 2 +- module/program/view/product.html.php | 2 +- module/program/view/project.html.php | 2 +- module/program/view/stakeholder.html.php | 2 +- module/programplan/control.php | 2 +- module/programplan/lang/de.php | 2 +- module/programplan/lang/en.php | 2 +- module/programplan/lang/fr.php | 2 +- module/programplan/lang/vi.php | 2 +- module/programplan/lang/zh-cn.php | 2 +- module/programplan/lang/zh-tw.php | 2 +- module/programplan/model.php | 2 +- module/programplan/view/browse.html.php | 2 +- module/programplan/view/create.html.php | 2 +- module/programplan/view/edit.html.php | 2 +- module/programplan/view/gantt.html.php | 2 +- module/programplan/view/list.html.php | 2 +- module/project/view/activate.html.php | 2 +- module/project/view/batchedit.html.php | 2 +- module/project/view/browse.html.php | 2 +- module/project/view/browsebycard.html.php | 2 +- module/project/view/browsebylist.html.php | 2 +- module/project/view/bug.html.php | 2 +- module/project/view/build.html.php | 2 +- module/project/view/close.html.php | 2 +- module/project/view/create.html.php | 2 +- module/project/view/createstakeholder.html.php | 2 +- module/project/view/dynamic.html.php | 2 +- module/project/view/edit.html.php | 2 +- module/project/view/export.html.php | 2 +- module/project/view/group.html.php | 2 +- module/project/view/index.html.php | 2 +- module/project/view/kanban.html.php | 2 +- module/project/view/managepriv.html.php | 2 +- module/project/view/manageproducts.html.php | 2 +- module/project/view/manageview.html.php | 2 +- module/project/view/programtitle.html.php | 2 +- module/project/view/start.html.php | 2 +- module/project/view/suspend.html.php | 2 +- module/project/view/team.html.php | 2 +- module/project/view/testtask.html.php | 2 +- module/project/view/view.html.php | 2 +- module/projectbuild/lang/de.php | 2 +- module/projectbuild/lang/en.php | 2 +- module/projectbuild/lang/fr.php | 2 +- module/projectbuild/lang/vi.php | 2 +- module/projectbuild/lang/zh-cn.php | 2 +- module/projectbuild/lang/zh-tw.php | 2 +- module/projectrelease/control.php | 2 +- module/projectrelease/lang/de.php | 2 +- module/projectrelease/lang/en.php | 2 +- module/projectrelease/lang/fr.php | 2 +- module/projectrelease/lang/vi.php | 2 +- module/projectrelease/lang/zh-cn.php | 2 +- module/projectrelease/lang/zh-tw.php | 2 +- module/projectrelease/model.php | 2 +- module/projectrelease/view/browse.html.php | 2 +- module/projectrelease/view/create.html.php | 2 +- module/projectrelease/view/edit.html.php | 2 +- module/projectrelease/view/export.html.php | 2 +- module/projectrelease/view/linkbug.html.php | 2 +- module/projectrelease/view/linkstory.html.php | 2 +- module/projectrelease/view/notify.html.php | 2 +- module/projectrelease/view/view.html.php | 2 +- module/projectstory/model.php | 2 +- module/qa/control.php | 2 +- module/qa/lang/de.php | 2 +- module/qa/lang/en.php | 2 +- module/qa/lang/fr.php | 2 +- module/qa/lang/zh-cn.php | 2 +- module/qa/lang/zh-tw.php | 2 +- module/qa/model.php | 2 +- module/qa/view/index.html.php | 2 +- module/release/control.php | 2 +- module/release/lang/de.php | 2 +- module/release/lang/en.php | 2 +- module/release/lang/fr.php | 2 +- module/release/lang/zh-cn.php | 2 +- module/release/lang/zh-tw.php | 2 +- module/release/model.php | 2 +- module/release/view/browse.html.php | 2 +- module/release/view/create.html.php | 2 +- module/release/view/edit.html.php | 2 +- module/release/view/export.html.php | 2 +- module/release/view/linkbug.html.php | 2 +- module/release/view/linkstory.html.php | 2 +- module/release/view/notify.html.php | 2 +- module/release/view/sendmail.html.php | 2 +- module/release/view/view.html.php | 2 +- module/repo/view/edit.html.php | 2 +- module/repo/view/maintain.html.php | 2 +- module/repo/view/setrules.html.php | 2 +- module/report/control.php | 2 +- module/report/lang/de.php | 2 +- module/report/lang/en.php | 2 +- module/report/lang/fr.php | 2 +- module/report/lang/zh-cn.php | 2 +- module/report/lang/zh-tw.php | 2 +- module/report/model.php | 2 +- module/score/view/reset.html.php | 2 +- module/score/view/rule.html.php | 2 +- module/search/control.php | 2 +- module/search/lang/de.php | 2 +- module/search/lang/en.php | 2 +- module/search/lang/fr.php | 2 +- module/search/lang/zh-cn.php | 2 +- module/search/lang/zh-tw.php | 2 +- module/search/model.php | 2 +- module/search/view/buildform.html.php | 2 +- module/search/view/savequery.html.php | 2 +- module/setting/control.php | 2 +- module/setting/model.php | 2 +- module/sonarqube/control.php | 2 +- module/sonarqube/model.php | 2 +- module/sonarqube/view/browse.html.php | 2 +- module/sonarqube/view/browseissue.html.php | 2 +- module/sonarqube/view/browseproject.html.php | 2 +- module/sonarqube/view/create.html.php | 2 +- module/sonarqube/view/createproject.html.php | 2 +- module/sonarqube/view/edit.html.php | 2 +- module/sonarqube/view/reportview.html.php | 2 +- module/sso/control.php | 2 +- module/sso/lang/de.php | 2 +- module/sso/lang/en.php | 2 +- module/sso/lang/fr.php | 2 +- module/sso/lang/zh-cn.php | 2 +- module/sso/lang/zh-tw.php | 2 +- module/sso/view/bind.html.php | 2 +- module/sso/view/error.html.php | 2 +- module/stage/control.php | 2 +- module/stage/lang/de.php | 2 +- module/stage/lang/en.php | 2 +- module/stage/lang/fr.php | 2 +- module/stage/lang/vi.php | 2 +- module/stage/lang/zh-cn.php | 2 +- module/stage/lang/zh-tw.php | 2 +- module/stage/model.php | 2 +- module/stage/view/batchcreate.html.php | 2 +- module/stage/view/browse.html.php | 2 +- module/stage/view/create.html.php | 2 +- module/stage/view/edit.html.php | 2 +- module/stage/view/settype.html.php | 2 +- module/stakeholder/view/batchcreate.html.php | 2 +- module/stakeholder/view/browse.html.php | 2 +- module/stakeholder/view/communicate.html.php | 2 +- module/stakeholder/view/create.html.php | 2 +- module/stakeholder/view/expect.html.php | 2 +- module/stakeholder/view/userissue.html.php | 2 +- module/stakeholder/view/view.html.php | 2 +- module/story/control.php | 2 +- module/story/lang/de.php | 2 +- module/story/lang/en.php | 2 +- module/story/lang/fr.php | 2 +- module/story/lang/zh-cn.php | 2 +- module/story/lang/zh-tw.php | 2 +- module/story/model.php | 2 +- module/story/view/activate.html.php | 2 +- module/story/view/assignto.html.php | 2 +- module/story/view/batchclose.html.php | 2 +- module/story/view/batchcreate.html.php | 2 +- module/story/view/batchedit.html.php | 2 +- module/story/view/change.html.php | 2 +- module/story/view/close.html.php | 2 +- module/story/view/create.html.php | 2 +- module/story/view/edit.html.php | 2 +- module/story/view/export.html.php | 2 +- module/story/view/linkstory.html.php | 2 +- module/story/view/report.html.php | 2 +- module/story/view/review.html.php | 2 +- module/story/view/sendmail.html.php | 2 +- module/story/view/view.html.php | 2 +- module/story/view/zerocase.html.php | 2 +- module/svn/control.php | 2 +- module/svn/lang/de.php | 2 +- module/svn/lang/en.php | 2 +- module/svn/lang/fr.php | 2 +- module/svn/lang/zh-cn.php | 2 +- module/svn/lang/zh-tw.php | 2 +- module/svn/model.php | 2 +- module/svn/syncer/syncer.php | 2 +- module/svn/view/cat.html.php | 2 +- module/svn/view/diff.html.php | 2 +- module/task/control.php | 2 +- module/task/lang/de.php | 2 +- module/task/lang/en.php | 2 +- module/task/lang/fr.php | 2 +- module/task/lang/zh-cn.php | 2 +- module/task/lang/zh-tw.php | 2 +- module/task/model.php | 2 +- module/task/view/activate.html.php | 2 +- module/task/view/assignto.html.php | 2 +- module/task/view/batchcreate.html.php | 2 +- module/task/view/batchedit.html.php | 2 +- module/task/view/cancel.html.php | 2 +- module/task/view/close.html.php | 2 +- module/task/view/create.html.php | 2 +- module/task/view/edit.html.php | 2 +- module/task/view/editestimate.html.php | 2 +- module/task/view/export.html.php | 2 +- module/task/view/finish.html.php | 2 +- module/task/view/pause.html.php | 2 +- module/task/view/recordestimate.html.php | 2 +- module/task/view/report.html.php | 2 +- module/task/view/restart.html.php | 2 +- module/task/view/sendmail.html.php | 2 +- module/task/view/start.html.php | 2 +- module/task/view/view.html.php | 2 +- module/testcase/control.php | 2 +- module/testcase/lang/de.php | 2 +- module/testcase/lang/en.php | 2 +- module/testcase/lang/fr.php | 2 +- module/testcase/lang/zh-cn.php | 2 +- module/testcase/lang/zh-tw.php | 2 +- module/testcase/model.php | 2 +- module/testcase/view/batchcreate.html.php | 2 +- module/testcase/view/batchedit.html.php | 2 +- module/testcase/view/browse.html.php | 2 +- module/testcase/view/create.html.php | 2 +- module/testcase/view/createbug.html.php | 2 +- module/testcase/view/edit.html.php | 2 +- module/testcase/view/export.html.php | 2 +- module/testcase/view/groupcase.html.php | 2 +- module/testcase/view/importfromlib.html.php | 2 +- module/testcase/view/index.html.php | 2 +- module/testcase/view/linkcases.html.php | 2 +- module/testcase/view/review.html.php | 2 +- module/testcase/view/view.html.php | 2 +- module/testreport/control.php | 2 +- module/testreport/model.php | 2 +- module/testreport/view/browse.html.php | 2 +- module/testreport/view/create.html.php | 2 +- module/testreport/view/edit.html.php | 2 +- module/testreport/view/selecttask.html.php | 2 +- module/testreport/view/view.html.php | 2 +- module/testsuite/control.php | 2 +- module/testsuite/lang/de.php | 2 +- module/testsuite/lang/en.php | 2 +- module/testsuite/lang/fr.php | 2 +- module/testsuite/lang/zh-cn.php | 2 +- module/testsuite/lang/zh-tw.php | 2 +- module/testsuite/model.php | 2 +- module/testsuite/view/browse.html.php | 2 +- module/testsuite/view/create.html.php | 2 +- module/testsuite/view/edit.html.php | 2 +- module/testsuite/view/linkcase.html.php | 2 +- module/testsuite/view/view.html.php | 2 +- module/testtask/control.php | 2 +- module/testtask/lang/de.php | 2 +- module/testtask/lang/en.php | 2 +- module/testtask/lang/fr.php | 2 +- module/testtask/lang/zh-cn.php | 2 +- module/testtask/lang/zh-tw.php | 2 +- module/testtask/model.php | 2 +- module/testtask/view/activate.html.php | 2 +- module/testtask/view/batchrun.html.php | 2 +- module/testtask/view/block.html.php | 2 +- module/testtask/view/browse.html.php | 2 +- module/testtask/view/browseunits.html.php | 2 +- module/testtask/view/cases.html.php | 2 +- module/testtask/view/close.html.php | 2 +- module/testtask/view/create.html.php | 2 +- module/testtask/view/edit.html.php | 2 +- module/testtask/view/groupcase.html.php | 2 +- module/testtask/view/importunitresult.html.php | 2 +- module/testtask/view/linkcase.html.php | 2 +- module/testtask/view/report.html.php | 2 +- module/testtask/view/results.html.php | 2 +- module/testtask/view/runcase.html.php | 2 +- module/testtask/view/sendmail.html.php | 2 +- module/testtask/view/start.html.php | 2 +- module/testtask/view/unitcases.html.php | 2 +- module/testtask/view/view.html.php | 2 +- module/todo/control.php | 2 +- module/todo/lang/de.php | 2 +- module/todo/lang/en.php | 2 +- module/todo/lang/fr.php | 2 +- module/todo/lang/zh-cn.php | 2 +- module/todo/lang/zh-tw.php | 2 +- module/todo/model.php | 2 +- module/todo/view/assignto.html.php | 2 +- module/todo/view/batchcreate.html.php | 2 +- module/todo/view/batchedit.html.php | 2 +- module/todo/view/create.html.php | 2 +- module/todo/view/edit.html.php | 2 +- module/todo/view/export.html.php | 2 +- module/todo/view/view.html.php | 2 +- module/tree/control.php | 2 +- module/tree/lang/de.php | 2 +- module/tree/lang/en.php | 2 +- module/tree/lang/fr.php | 2 +- module/tree/lang/zh-cn.php | 2 +- module/tree/lang/zh-tw.php | 2 +- module/tree/model.php | 2 +- module/tree/view/browse.html.php | 2 +- module/tree/view/browsetask.html.php | 2 +- module/tree/view/edit.html.php | 2 +- module/tutorial/control.php | 2 +- module/tutorial/lang/de.php | 2 +- module/tutorial/lang/en.php | 2 +- module/tutorial/lang/fr.php | 2 +- module/tutorial/lang/zh-cn.php | 2 +- module/tutorial/lang/zh-tw.php | 2 +- module/tutorial/model.php | 2 +- module/tutorial/view/index.html.php | 2 +- module/tutorial/view/start.html.php | 2 +- module/upgrade/control.php | 2 +- module/upgrade/lang/de.php | 2 +- module/upgrade/lang/en.php | 2 +- module/upgrade/lang/fr.php | 2 +- module/upgrade/lang/zh-cn.php | 2 +- module/upgrade/lang/zh-tw.php | 2 +- module/upgrade/model.php | 2 +- module/upgrade/view/afterexec.html.php | 2 +- module/upgrade/view/backup.html.php | 2 +- module/upgrade/view/checkextension.html.php | 2 +- module/upgrade/view/confirm.html.php | 2 +- module/upgrade/view/consistency.html.php | 2 +- module/upgrade/view/execute.html.php | 2 +- module/upgrade/view/license.html.php | 2 +- module/upgrade/view/mergeprogram.html.php | 2 +- module/upgrade/view/mergerepo.html.php | 2 +- module/upgrade/view/mergetips.html.php | 2 +- module/upgrade/view/moveextfiles.html.php | 2 +- module/upgrade/view/renameobject.html.php | 2 +- module/upgrade/view/selectversion.html.php | 2 +- module/upgrade/view/to15guide.html.php | 2 +- module/user/control.php | 2 +- module/user/lang/de.php | 2 +- module/user/lang/en.php | 2 +- module/user/lang/fr.php | 2 +- module/user/lang/zh-cn.php | 2 +- module/user/lang/zh-tw.php | 2 +- module/user/model.php | 2 +- module/user/view/batchcreate.html.php | 2 +- module/user/view/batchedit.html.php | 2 +- module/user/view/bug.html.php | 2 +- module/user/view/create.html.php | 2 +- module/user/view/cropavatar.html.php | 2 +- module/user/view/delete.html.php | 2 +- module/user/view/deny.html.php | 2 +- module/user/view/dynamic.html.php | 2 +- module/user/view/edit.html.php | 2 +- module/user/view/execution.html.php | 2 +- module/user/view/issue.html.php | 2 +- module/user/view/login.html.php | 2 +- module/user/view/profile.html.php | 2 +- module/user/view/reset.html.php | 2 +- module/user/view/story.html.php | 2 +- module/user/view/task.html.php | 2 +- module/user/view/team.html.php | 2 +- module/user/view/testcase.html.php | 2 +- module/user/view/testtask.html.php | 2 +- module/user/view/todo.html.php | 2 +- module/webhook/control.php | 2 +- module/webhook/model.php | 2 +- module/webhook/view/browse.html.php | 2 +- module/webhook/view/choosedept.html.php | 2 +- module/webhook/view/create.html.php | 2 +- module/webhook/view/edit.html.php | 2 +- module/webhook/view/header.html.php | 2 +- module/webhook/view/log.html.php | 2 +- module/weekly/lang/de.php | 2 +- module/weekly/lang/en.php | 2 +- module/weekly/lang/fr.php | 2 +- module/weekly/lang/vi.php | 2 +- module/weekly/lang/zh-cn.php | 2 +- module/weekly/lang/zh-tw.php | 2 +- module/weekly/view/index.html.php | 2 +- roadrunner/cron-worker.php | 2 +- sdk/php/zentao.php | 2 +- test/lib/init.php | 2 +- test/lib/utils.php | 2 +- www/api.php | 2 +- www/index.php | 2 +- www/init.php | 2 +- www/install.php.tmp | 2 +- www/theme/default/style.css | 2 +- www/upgrade.php.tmp | 2 +- xuanxuan/extension/xuan/admin/ext/view/xuanxuan.html.php | 2 +- xuanxuan/extension/xuan/client/ext/view/browse.html.php | 2 +- xuanxuan/extension/xuan/client/ext/view/safe.html.php | 2 +- xuanxuan/extension/xuan/setting/ext/view/xuanxuan.html.php | 2 +- 1086 files changed, 1086 insertions(+), 1086 deletions(-) diff --git a/api/v1/entries/bug.php b/api/v1/entries/bug.php index 8b770710a2..7a9107c662 100644 --- a/api/v1/entries/bug.php +++ b/api/v1/entries/bug.php @@ -3,7 +3,7 @@ * The bug entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/bugactive.php b/api/v1/entries/bugactive.php index 4f2f69b86b..7b2375cb4e 100644 --- a/api/v1/entries/bugactive.php +++ b/api/v1/entries/bugactive.php @@ -3,7 +3,7 @@ * The bug active entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/bugassign.php b/api/v1/entries/bugassign.php index 3b505d0a12..3fbc260946 100644 --- a/api/v1/entries/bugassign.php +++ b/api/v1/entries/bugassign.php @@ -3,7 +3,7 @@ * The bug assign entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/bugclose.php b/api/v1/entries/bugclose.php index 4a95bbda36..cbe5409d87 100644 --- a/api/v1/entries/bugclose.php +++ b/api/v1/entries/bugclose.php @@ -3,7 +3,7 @@ * The bug close entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/bugconfirm.php b/api/v1/entries/bugconfirm.php index 20d8f3f1e3..c7bf5f9f67 100644 --- a/api/v1/entries/bugconfirm.php +++ b/api/v1/entries/bugconfirm.php @@ -3,7 +3,7 @@ * The bug confirm entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/bugrecordestimate.php b/api/v1/entries/bugrecordestimate.php index 60f9723958..e556612317 100644 --- a/api/v1/entries/bugrecordestimate.php +++ b/api/v1/entries/bugrecordestimate.php @@ -3,7 +3,7 @@ * The bug recordEstimate entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/bugresolve.php b/api/v1/entries/bugresolve.php index 9526b47f0e..4786f79bb0 100644 --- a/api/v1/entries/bugresolve.php +++ b/api/v1/entries/bugresolve.php @@ -3,7 +3,7 @@ * The bug resolve entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/bugs.php b/api/v1/entries/bugs.php index 4694e85145..70a1cb8178 100644 --- a/api/v1/entries/bugs.php +++ b/api/v1/entries/bugs.php @@ -3,7 +3,7 @@ * The bugs entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/build.php b/api/v1/entries/build.php index fc3e7fed5a..7f8118d200 100644 --- a/api/v1/entries/build.php +++ b/api/v1/entries/build.php @@ -3,7 +3,7 @@ * The build entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/builds.php b/api/v1/entries/builds.php index e303c9a4e1..59c4dd2241 100644 --- a/api/v1/entries/builds.php +++ b/api/v1/entries/builds.php @@ -3,7 +3,7 @@ * The builds entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/ciresults.php b/api/v1/entries/ciresults.php index 12cbc5d82b..be12c0b5cf 100644 --- a/api/v1/entries/ciresults.php +++ b/api/v1/entries/ciresults.php @@ -3,7 +3,7 @@ * The ciresults entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/config.php b/api/v1/entries/config.php index 5c370b8db5..5d3a6fa87e 100644 --- a/api/v1/entries/config.php +++ b/api/v1/entries/config.php @@ -3,7 +3,7 @@ * The config entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/configs.php b/api/v1/entries/configs.php index f9df6375fe..a170e4953b 100644 --- a/api/v1/entries/configs.php +++ b/api/v1/entries/configs.php @@ -3,7 +3,7 @@ * The configs entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/department.php b/api/v1/entries/department.php index 774bef0363..f64f5ba238 100644 --- a/api/v1/entries/department.php +++ b/api/v1/entries/department.php @@ -3,7 +3,7 @@ * The department entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/departments.php b/api/v1/entries/departments.php index c03b4f8b30..bae1f2bd53 100644 --- a/api/v1/entries/departments.php +++ b/api/v1/entries/departments.php @@ -3,7 +3,7 @@ * The departments entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/doc.php b/api/v1/entries/doc.php index fcedf4ebe7..7f57b4a46e 100644 --- a/api/v1/entries/doc.php +++ b/api/v1/entries/doc.php @@ -3,7 +3,7 @@ * The doc entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/doclibs.php b/api/v1/entries/doclibs.php index f9131fe3b7..3a769511c3 100644 --- a/api/v1/entries/doclibs.php +++ b/api/v1/entries/doclibs.php @@ -3,7 +3,7 @@ * The doclibs entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/docs.php b/api/v1/entries/docs.php index 86453efe5d..3a7c7a84cd 100644 --- a/api/v1/entries/docs.php +++ b/api/v1/entries/docs.php @@ -3,7 +3,7 @@ * The docs entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/error.php b/api/v1/entries/error.php index f242886439..da8c2baa7b 100644 --- a/api/v1/entries/error.php +++ b/api/v1/entries/error.php @@ -3,7 +3,7 @@ * The error entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/execution.php b/api/v1/entries/execution.php index fcd380534b..a761858bc1 100644 --- a/api/v1/entries/execution.php +++ b/api/v1/entries/execution.php @@ -3,7 +3,7 @@ * The execution entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/executionbugs.php b/api/v1/entries/executionbugs.php index 026f8d6bda..0f61508fda 100644 --- a/api/v1/entries/executionbugs.php +++ b/api/v1/entries/executionbugs.php @@ -3,7 +3,7 @@ * The execution bugs entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/executionbuilds.php b/api/v1/entries/executionbuilds.php index 97ddd77f62..d533472322 100644 --- a/api/v1/entries/executionbuilds.php +++ b/api/v1/entries/executionbuilds.php @@ -3,7 +3,7 @@ * The execution builds entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/executioncases.php b/api/v1/entries/executioncases.php index be10d28b97..bc6466b5cb 100644 --- a/api/v1/entries/executioncases.php +++ b/api/v1/entries/executioncases.php @@ -3,7 +3,7 @@ * The execution cases entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/executions.php b/api/v1/entries/executions.php index 630f9db4bb..a7235feb1e 100644 --- a/api/v1/entries/executions.php +++ b/api/v1/entries/executions.php @@ -3,7 +3,7 @@ * The executions entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/executionstories.php b/api/v1/entries/executionstories.php index 2c16ac7dd2..0a60efa402 100644 --- a/api/v1/entries/executionstories.php +++ b/api/v1/entries/executionstories.php @@ -3,7 +3,7 @@ * The execution entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version 1 diff --git a/api/v1/entries/feedback.php b/api/v1/entries/feedback.php index a53b5220a1..fb81887249 100644 --- a/api/v1/entries/feedback.php +++ b/api/v1/entries/feedback.php @@ -3,7 +3,7 @@ * The product entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/feedbackassignto.php b/api/v1/entries/feedbackassignto.php index 037b7b12d3..25d4ca9c72 100644 --- a/api/v1/entries/feedbackassignto.php +++ b/api/v1/entries/feedbackassignto.php @@ -3,7 +3,7 @@ * The feedback assignto entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/feedbackclose.php b/api/v1/entries/feedbackclose.php index 315223f0a3..277028b845 100644 --- a/api/v1/entries/feedbackclose.php +++ b/api/v1/entries/feedbackclose.php @@ -3,7 +3,7 @@ * The feedback close entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/feedbacks.php b/api/v1/entries/feedbacks.php index 92e58c9ece..aad8778257 100644 --- a/api/v1/entries/feedbacks.php +++ b/api/v1/entries/feedbacks.php @@ -3,7 +3,7 @@ * The executions entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/file.php b/api/v1/entries/file.php index 833739c02a..95645756d9 100644 --- a/api/v1/entries/file.php +++ b/api/v1/entries/file.php @@ -3,7 +3,7 @@ * The file entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/files.php b/api/v1/entries/files.php index fb78caa8a1..41ecdcd1c4 100644 --- a/api/v1/entries/files.php +++ b/api/v1/entries/files.php @@ -3,7 +3,7 @@ * The files entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/gitlabwebhook.php b/api/v1/entries/gitlabwebhook.php index 148a679abd..57766664c4 100644 --- a/api/v1/entries/gitlabwebhook.php +++ b/api/v1/entries/gitlabwebhook.php @@ -3,7 +3,7 @@ * The repo entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author xiawenlong * @package repo * @version 1 diff --git a/api/v1/entries/groups.php b/api/v1/entries/groups.php index 48e5729431..0989aa2e42 100644 --- a/api/v1/entries/groups.php +++ b/api/v1/entries/groups.php @@ -3,7 +3,7 @@ * The groups entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/issue.php b/api/v1/entries/issue.php index 211b43a1b5..8593f307d2 100644 --- a/api/v1/entries/issue.php +++ b/api/v1/entries/issue.php @@ -3,7 +3,7 @@ * The issue entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/issues.php b/api/v1/entries/issues.php index 444dc2e0b5..0a210d375c 100644 --- a/api/v1/entries/issues.php +++ b/api/v1/entries/issues.php @@ -3,7 +3,7 @@ * The issues entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/langs.php b/api/v1/entries/langs.php index 2add7ff10e..38a69904ba 100644 --- a/api/v1/entries/langs.php +++ b/api/v1/entries/langs.php @@ -3,7 +3,7 @@ * The langs entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/meetings.php b/api/v1/entries/meetings.php index 6466ded6a0..4d66efc050 100644 --- a/api/v1/entries/meetings.php +++ b/api/v1/entries/meetings.php @@ -3,7 +3,7 @@ * The meetings entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/modules.php b/api/v1/entries/modules.php index f38e90383a..67f5097e9b 100644 --- a/api/v1/entries/modules.php +++ b/api/v1/entries/modules.php @@ -3,7 +3,7 @@ * The modules entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/options.php b/api/v1/entries/options.php index 651ebd7d7b..c665f8caa8 100644 --- a/api/v1/entries/options.php +++ b/api/v1/entries/options.php @@ -3,7 +3,7 @@ * The options entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/ping.php b/api/v1/entries/ping.php index 1b27d54262..96a3132de1 100644 --- a/api/v1/entries/ping.php +++ b/api/v1/entries/ping.php @@ -3,7 +3,7 @@ * The ping entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/product.php b/api/v1/entries/product.php index ae8f4e374b..67d8de598d 100644 --- a/api/v1/entries/product.php +++ b/api/v1/entries/product.php @@ -3,7 +3,7 @@ * The product entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/productissue.php b/api/v1/entries/productissue.php index ed999bd2bd..d40c0a2c7d 100644 --- a/api/v1/entries/productissue.php +++ b/api/v1/entries/productissue.php @@ -4,7 +4,7 @@ * It is only used by Gitlab. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/productissues.php b/api/v1/entries/productissues.php index f63e2e04e3..e97289608b 100644 --- a/api/v1/entries/productissues.php +++ b/api/v1/entries/productissues.php @@ -4,7 +4,7 @@ * It is only used by Gitlab. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/productplan.php b/api/v1/entries/productplan.php index 87b2588011..74cae20ed6 100644 --- a/api/v1/entries/productplan.php +++ b/api/v1/entries/productplan.php @@ -3,7 +3,7 @@ * The productplan entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/productplanlinkbugs.php b/api/v1/entries/productplanlinkbugs.php index 33f6f7812d..b2707d1c1a 100644 --- a/api/v1/entries/productplanlinkbugs.php +++ b/api/v1/entries/productplanlinkbugs.php @@ -3,7 +3,7 @@ * The productplanlinkbugs entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/productplanlinkstories.php b/api/v1/entries/productplanlinkstories.php index 2f34d21df9..ce065eba6a 100644 --- a/api/v1/entries/productplanlinkstories.php +++ b/api/v1/entries/productplanlinkstories.php @@ -3,7 +3,7 @@ * The productplanlinkstories entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/productplans.php b/api/v1/entries/productplans.php index f56cf3ae96..b0f20aa8b9 100644 --- a/api/v1/entries/productplans.php +++ b/api/v1/entries/productplans.php @@ -3,7 +3,7 @@ * The productplans entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/productplanunlinkbugs.php b/api/v1/entries/productplanunlinkbugs.php index 31db16064e..e728415a69 100644 --- a/api/v1/entries/productplanunlinkbugs.php +++ b/api/v1/entries/productplanunlinkbugs.php @@ -3,7 +3,7 @@ * The productplanunlinkbugs entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/productplanunlinkstories.php b/api/v1/entries/productplanunlinkstories.php index 4f77dee06c..8ed3b47ec7 100644 --- a/api/v1/entries/productplanunlinkstories.php +++ b/api/v1/entries/productplanunlinkstories.php @@ -3,7 +3,7 @@ * The productplanunlinkstories entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/productprojects.php b/api/v1/entries/productprojects.php index 8826d1a5bd..27da212ac7 100644 --- a/api/v1/entries/productprojects.php +++ b/api/v1/entries/productprojects.php @@ -3,7 +3,7 @@ * The product projects entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/products.php b/api/v1/entries/products.php index 1763eef7cc..91d9fddae3 100644 --- a/api/v1/entries/products.php +++ b/api/v1/entries/products.php @@ -3,7 +3,7 @@ * The products entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/program.php b/api/v1/entries/program.php index d42ed1a9fe..9df63a1df7 100644 --- a/api/v1/entries/program.php +++ b/api/v1/entries/program.php @@ -3,7 +3,7 @@ * The program entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/programs.php b/api/v1/entries/programs.php index 10629532c2..348ba5b861 100644 --- a/api/v1/entries/programs.php +++ b/api/v1/entries/programs.php @@ -3,7 +3,7 @@ * The programs entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/project.php b/api/v1/entries/project.php index 61b8cf819a..c26e70fea1 100644 --- a/api/v1/entries/project.php +++ b/api/v1/entries/project.php @@ -3,7 +3,7 @@ * The project entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/projectbugs.php b/api/v1/entries/projectbugs.php index 8ee1827387..523ae9b2a5 100644 --- a/api/v1/entries/projectbugs.php +++ b/api/v1/entries/projectbugs.php @@ -3,7 +3,7 @@ * The project bugs entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/projectcases.php b/api/v1/entries/projectcases.php index d237ce1b6e..f65bc6c713 100644 --- a/api/v1/entries/projectcases.php +++ b/api/v1/entries/projectcases.php @@ -3,7 +3,7 @@ * The project cases entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/projectreleases.php b/api/v1/entries/projectreleases.php index c124bbb94a..a8aa679d60 100644 --- a/api/v1/entries/projectreleases.php +++ b/api/v1/entries/projectreleases.php @@ -3,7 +3,7 @@ * The projectreleases entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/projects.php b/api/v1/entries/projects.php index a4a6819daa..4143178945 100644 --- a/api/v1/entries/projects.php +++ b/api/v1/entries/projects.php @@ -3,7 +3,7 @@ * The project entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/projectstories.php b/api/v1/entries/projectstories.php index be44915f19..8204c2e819 100644 --- a/api/v1/entries/projectstories.php +++ b/api/v1/entries/projectstories.php @@ -3,7 +3,7 @@ * The project entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package project * @version 1 diff --git a/api/v1/entries/release.php b/api/v1/entries/release.php index 41ab4c6661..706bfb89b1 100644 --- a/api/v1/entries/release.php +++ b/api/v1/entries/release.php @@ -3,7 +3,7 @@ * The release entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/releases.php b/api/v1/entries/releases.php index e56e1742b6..732bc98ae4 100644 --- a/api/v1/entries/releases.php +++ b/api/v1/entries/releases.php @@ -3,7 +3,7 @@ * The productplans entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/reports.php b/api/v1/entries/reports.php index d55f98932b..29d25f8671 100644 --- a/api/v1/entries/reports.php +++ b/api/v1/entries/reports.php @@ -3,7 +3,7 @@ * The reports entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/reporules.php b/api/v1/entries/reporules.php index 693d9ce90c..1f8b33d4ac 100644 --- a/api/v1/entries/reporules.php +++ b/api/v1/entries/reporules.php @@ -3,7 +3,7 @@ * The reporules entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package entries * @version 1 diff --git a/api/v1/entries/repos.php b/api/v1/entries/repos.php index a45c974513..d8e8d8da6d 100644 --- a/api/v1/entries/repos.php +++ b/api/v1/entries/repos.php @@ -3,7 +3,7 @@ * The repos entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/risk.php b/api/v1/entries/risk.php index 89ed1a1b2c..fed9f5dd47 100644 --- a/api/v1/entries/risk.php +++ b/api/v1/entries/risk.php @@ -3,7 +3,7 @@ * The risk entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/risks.php b/api/v1/entries/risks.php index a18ef97f88..789076d1fa 100644 --- a/api/v1/entries/risks.php +++ b/api/v1/entries/risks.php @@ -3,7 +3,7 @@ * The risks entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/stakeholders.php b/api/v1/entries/stakeholders.php index fe57064421..f52e075570 100644 --- a/api/v1/entries/stakeholders.php +++ b/api/v1/entries/stakeholders.php @@ -3,7 +3,7 @@ * The stakeholder entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/stories.php b/api/v1/entries/stories.php index 1e95c50e69..d83104dd7e 100644 --- a/api/v1/entries/stories.php +++ b/api/v1/entries/stories.php @@ -3,7 +3,7 @@ * The stories entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/story.php b/api/v1/entries/story.php index 08f6e1bcf9..810b8dab12 100644 --- a/api/v1/entries/story.php +++ b/api/v1/entries/story.php @@ -3,7 +3,7 @@ * The story entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/storyactive.php b/api/v1/entries/storyactive.php index 59c86d27a4..81de31647e 100644 --- a/api/v1/entries/storyactive.php +++ b/api/v1/entries/storyactive.php @@ -3,7 +3,7 @@ * The bug change point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/storyassignto.php b/api/v1/entries/storyassignto.php index e101cb17e1..819ee62995 100644 --- a/api/v1/entries/storyassignto.php +++ b/api/v1/entries/storyassignto.php @@ -3,7 +3,7 @@ * The story assignto entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/storychange.php b/api/v1/entries/storychange.php index a9751265d5..1c773124f8 100644 --- a/api/v1/entries/storychange.php +++ b/api/v1/entries/storychange.php @@ -3,7 +3,7 @@ * The bug change point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/storyclose.php b/api/v1/entries/storyclose.php index 4d4141b88a..018598015a 100644 --- a/api/v1/entries/storyclose.php +++ b/api/v1/entries/storyclose.php @@ -3,7 +3,7 @@ * The story close entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/storyrecall.php b/api/v1/entries/storyrecall.php index 99e06cc210..c66f43de87 100644 --- a/api/v1/entries/storyrecall.php +++ b/api/v1/entries/storyrecall.php @@ -3,7 +3,7 @@ * The story recall entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/storyrecordestimate.php b/api/v1/entries/storyrecordestimate.php index bb4a86197b..0b59251a1b 100644 --- a/api/v1/entries/storyrecordestimate.php +++ b/api/v1/entries/storyrecordestimate.php @@ -3,7 +3,7 @@ * The story recordEstimate entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/storyreview.php b/api/v1/entries/storyreview.php index d2bbef826d..99b044bb03 100644 --- a/api/v1/entries/storyreview.php +++ b/api/v1/entries/storyreview.php @@ -3,7 +3,7 @@ * The story review of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/tabs.php b/api/v1/entries/tabs.php index 162293dcb3..f1dc209023 100644 --- a/api/v1/entries/tabs.php +++ b/api/v1/entries/tabs.php @@ -3,7 +3,7 @@ * The tabs entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/task.php b/api/v1/entries/task.php index a4b2f8c43e..ad738b1dc8 100644 --- a/api/v1/entries/task.php +++ b/api/v1/entries/task.php @@ -3,7 +3,7 @@ * The task entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/taskactive.php b/api/v1/entries/taskactive.php index d2cf375993..446624ae6c 100644 --- a/api/v1/entries/taskactive.php +++ b/api/v1/entries/taskactive.php @@ -3,7 +3,7 @@ * The task active entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/taskassignto.php b/api/v1/entries/taskassignto.php index bf153f51ee..9b7eacbde0 100644 --- a/api/v1/entries/taskassignto.php +++ b/api/v1/entries/taskassignto.php @@ -3,7 +3,7 @@ * The task assignto entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/taskbatchcreate.php b/api/v1/entries/taskbatchcreate.php index 92fa3d2c47..df808e24b9 100644 --- a/api/v1/entries/taskbatchcreate.php +++ b/api/v1/entries/taskbatchcreate.php @@ -3,7 +3,7 @@ * The task batch create entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/taskclose.php b/api/v1/entries/taskclose.php index 774c115c53..e8fdf435c0 100644 --- a/api/v1/entries/taskclose.php +++ b/api/v1/entries/taskclose.php @@ -3,7 +3,7 @@ * The task close entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/taskcomponent.php b/api/v1/entries/taskcomponent.php index 50b83afef8..e90896a41f 100644 --- a/api/v1/entries/taskcomponent.php +++ b/api/v1/entries/taskcomponent.php @@ -3,7 +3,7 @@ * The task component entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/taskfinish.php b/api/v1/entries/taskfinish.php index 2c12a46cc6..fb79cef614 100644 --- a/api/v1/entries/taskfinish.php +++ b/api/v1/entries/taskfinish.php @@ -3,7 +3,7 @@ * The task finish entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/taskpause.php b/api/v1/entries/taskpause.php index 7548fa25e0..1118a94ee3 100644 --- a/api/v1/entries/taskpause.php +++ b/api/v1/entries/taskpause.php @@ -3,7 +3,7 @@ * The task pause entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/taskrecordestimate.php b/api/v1/entries/taskrecordestimate.php index b6e87b068d..a3f6acaca4 100644 --- a/api/v1/entries/taskrecordestimate.php +++ b/api/v1/entries/taskrecordestimate.php @@ -3,7 +3,7 @@ * The task recordEstimate entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/tasks.php b/api/v1/entries/tasks.php index 26905efb41..1448547ec1 100644 --- a/api/v1/entries/tasks.php +++ b/api/v1/entries/tasks.php @@ -3,7 +3,7 @@ * The tasks entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/taskstart.php b/api/v1/entries/taskstart.php index d21d4bb37a..51d8e4788d 100644 --- a/api/v1/entries/taskstart.php +++ b/api/v1/entries/taskstart.php @@ -3,7 +3,7 @@ * The task start entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/testcase.php b/api/v1/entries/testcase.php index 327b0f41a8..f2a7eb91fd 100644 --- a/api/v1/entries/testcase.php +++ b/api/v1/entries/testcase.php @@ -3,7 +3,7 @@ * The testcase entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/testcases.php b/api/v1/entries/testcases.php index 2b4e49bc7e..4393930741 100644 --- a/api/v1/entries/testcases.php +++ b/api/v1/entries/testcases.php @@ -3,7 +3,7 @@ * The testcases entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/testresults.php b/api/v1/entries/testresults.php index a169f5e1ea..d02d351cb1 100644 --- a/api/v1/entries/testresults.php +++ b/api/v1/entries/testresults.php @@ -3,7 +3,7 @@ * The testresults entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/testsuite.php b/api/v1/entries/testsuite.php index a3074a07d9..8db677e838 100644 --- a/api/v1/entries/testsuite.php +++ b/api/v1/entries/testsuite.php @@ -3,7 +3,7 @@ * The testsuite entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/testsuites.php b/api/v1/entries/testsuites.php index 53ff546a33..fa5cd826cf 100644 --- a/api/v1/entries/testsuites.php +++ b/api/v1/entries/testsuites.php @@ -3,7 +3,7 @@ * The testsuites entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/testtask.php b/api/v1/entries/testtask.php index 50a3236333..53efbe56ed 100644 --- a/api/v1/entries/testtask.php +++ b/api/v1/entries/testtask.php @@ -3,7 +3,7 @@ * The testtask entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/testtasks.php b/api/v1/entries/testtasks.php index cc34ac7e28..74220d1890 100644 --- a/api/v1/entries/testtasks.php +++ b/api/v1/entries/testtasks.php @@ -3,7 +3,7 @@ * The testtasks entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/todo.php b/api/v1/entries/todo.php index 466ca67b6c..03f50b884d 100644 --- a/api/v1/entries/todo.php +++ b/api/v1/entries/todo.php @@ -3,7 +3,7 @@ * The todo entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/todoactivate.php b/api/v1/entries/todoactivate.php index 77005d42e3..714ad3e0fc 100644 --- a/api/v1/entries/todoactivate.php +++ b/api/v1/entries/todoactivate.php @@ -3,7 +3,7 @@ * The todo activate entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/todofinish.php b/api/v1/entries/todofinish.php index ebb60dbde8..103ce59856 100644 --- a/api/v1/entries/todofinish.php +++ b/api/v1/entries/todofinish.php @@ -3,7 +3,7 @@ * The todo finish entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/todos.php b/api/v1/entries/todos.php index ac116d4d3e..6df31f9dfa 100644 --- a/api/v1/entries/todos.php +++ b/api/v1/entries/todos.php @@ -3,7 +3,7 @@ * The todos entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/tokens.php b/api/v1/entries/tokens.php index db71ddd816..636e08826d 100644 --- a/api/v1/entries/tokens.php +++ b/api/v1/entries/tokens.php @@ -3,7 +3,7 @@ * The tokens entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/user.php b/api/v1/entries/user.php index 5c371e7ae3..65ee9e0110 100644 --- a/api/v1/entries/user.php +++ b/api/v1/entries/user.php @@ -3,7 +3,7 @@ * The user entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/users.php b/api/v1/entries/users.php index efbdb05b85..26a8305130 100644 --- a/api/v1/entries/users.php +++ b/api/v1/entries/users.php @@ -3,7 +3,7 @@ * The users entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/views.php b/api/v1/entries/views.php index bb229944d2..8696e91c78 100644 --- a/api/v1/entries/views.php +++ b/api/v1/entries/views.php @@ -3,7 +3,7 @@ * The views entry point of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/zfile.php b/api/v1/entries/zfile.php index 3fdb8cc5a4..26d414f07e 100644 --- a/api/v1/entries/zfile.php +++ b/api/v1/entries/zfile.php @@ -3,7 +3,7 @@ * The file entry point for yueku. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/zfilecontent.php b/api/v1/entries/zfilecontent.php index 592572ff29..13b622d097 100644 --- a/api/v1/entries/zfilecontent.php +++ b/api/v1/entries/zfilecontent.php @@ -3,7 +3,7 @@ * The file entry point for yueku. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/zfolder.php b/api/v1/entries/zfolder.php index 6cc5e5f6ef..c6a105a173 100644 --- a/api/v1/entries/zfolder.php +++ b/api/v1/entries/zfolder.php @@ -3,7 +3,7 @@ * The root folder entry point for yueku. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/zfolders.php b/api/v1/entries/zfolders.php index e31c4e0228..75fccf24b4 100644 --- a/api/v1/entries/zfolders.php +++ b/api/v1/entries/zfolders.php @@ -3,7 +3,7 @@ * The root folder entry point for yueku. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package entries * @version 1 diff --git a/config/zentaopms.php b/config/zentaopms.php index 86ef7cdbe9..e768482d7f 100644 --- a/config/zentaopms.php +++ b/config/zentaopms.php @@ -3,7 +3,7 @@ * The config file of zentaophp. Don't modify this file directly, copy the item to my.php and change it. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) -* @license ZPL (http://zpl.pub/page/zplv12.html) +* @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package config * @version $Id: zentaopms.php 5068 2017-06-20 15:35:22Z pengjx $ diff --git a/extension/lite/attend/ext/view/personal.html.php b/extension/lite/attend/ext/view/personal.html.php index 784ba54c82..1e7bdfb205 100644 --- a/extension/lite/attend/ext/view/personal.html.php +++ b/extension/lite/attend/ext/view/personal.html.php @@ -3,7 +3,7 @@ * The personal view file of attend module of Ranzhi. * * @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author liyuchun * @package attend * @version $Id$ diff --git a/extension/lite/block/ext/view/welcome.html.php b/extension/lite/block/ext/view/welcome.html.php index ebad8c75c6..a9ad236cb9 100644 --- a/extension/lite/block/ext/view/welcome.html.php +++ b/extension/lite/block/ext/view/welcome.html.php @@ -3,7 +3,7 @@ * The welcome view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/extension/lite/execution/ext/view/create.html.php b/extension/lite/execution/ext/view/create.html.php index 9aa6408671..992730e2d0 100644 --- a/extension/lite/execution/ext/view/create.html.php +++ b/extension/lite/execution/ext/view/create.html.php @@ -3,7 +3,7 @@ * The create view of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version $Id: create.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/extension/lite/group/ext/view/create.html.php b/extension/lite/group/ext/view/create.html.php index c37f04af1e..2e66ce0c79 100644 --- a/extension/lite/group/ext/view/create.html.php +++ b/extension/lite/group/ext/view/create.html.php @@ -3,7 +3,7 @@ * The create view of group module for lite vision of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package group * @version $Id: create.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/extension/lite/install/ext/view/step6.html.php b/extension/lite/install/ext/view/step6.html.php index d0cf2848d3..19940e51b9 100644 --- a/extension/lite/install/ext/view/step6.html.php +++ b/extension/lite/install/ext/view/step6.html.php @@ -3,7 +3,7 @@ * The html template file of index method of install module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: step5.html.php 2568 2012-02-18 15:53:35Z zhujinyong@cnezsoft.com$ diff --git a/extension/lite/kanban/ext/view/import.html.php b/extension/lite/kanban/ext/view/import.html.php index ec508ac7f7..4938da88f8 100644 --- a/extension/lite/kanban/ext/view/import.html.php +++ b/extension/lite/kanban/ext/view/import.html.php @@ -3,7 +3,7 @@ * The import file of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Fangzhou Hu * @package kanban * @version $Id: import.html.php 935 2022-01-19 14:15:24Z hufangzhou@easycorp.ltd $ diff --git a/extension/lite/my/ext/view/task.html.php b/extension/lite/my/ext/view/task.html.php index 075b047e80..0773805374 100644 --- a/extension/lite/my/ext/view/task.html.php +++ b/extension/lite/my/ext/view/task.html.php @@ -3,7 +3,7 @@ * The task view file of dashboard module for lite vision of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Wenrui LI * @package dashboard * @version $Id: task.html.php 5101 2013-07-12 00:44:27Z chencongzhi520@gmail.com $ diff --git a/extension/lite/product/ext/view/browse.html.php b/extension/lite/product/ext/view/browse.html.php index 2735bcf69a..64f1cedba6 100644 --- a/extension/lite/product/ext/view/browse.html.php +++ b/extension/lite/product/ext/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of product module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package product * @version $Id: browse.html.php 4909 2013-06-26 07:23:50Z chencongzhi520@gmail.com $ diff --git a/extension/lite/project/ext/view/browse.html.php b/extension/lite/project/ext/view/browse.html.php index e25fd4772f..62a9361a75 100644 --- a/extension/lite/project/ext/view/browse.html.php +++ b/extension/lite/project/ext/view/browse.html.php @@ -3,7 +3,7 @@ * The prjbrowse view file of project module for lite vision of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Wenrui LI * @package project * @version $Id: prjbrowse.html.php 4769 2013-05-05 07:24:21Z wwccss $ diff --git a/extension/lite/project/ext/view/create.html.php b/extension/lite/project/ext/view/create.html.php index 2ea5b66046..48cc6682f4 100644 --- a/extension/lite/project/ext/view/create.html.php +++ b/extension/lite/project/ext/view/create.html.php @@ -3,7 +3,7 @@ * The create view file of project module for lite vision of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Wenrui LI * @package project * @version $Id: create.html.php 4769 2013-05-05 07:24:21Z wwccss $ diff --git a/extension/lite/project/ext/view/execution.html.php b/extension/lite/project/ext/view/execution.html.php index 6fc9eafed7..bab86fd682 100644 --- a/extension/lite/project/ext/view/execution.html.php +++ b/extension/lite/project/ext/view/execution.html.php @@ -3,7 +3,7 @@ * The html template file of all method of execution module for lite vision of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Wenrui LI * @package execution * @version $Id: index.html.php 5094 2013-07-10 08:46:15Z chencongzhi520@gmail.com $ diff --git a/extension/lite/project/ext/view/team.html.php b/extension/lite/project/ext/view/team.html.php index 74c975c412..92121418e5 100644 --- a/extension/lite/project/ext/view/team.html.php +++ b/extension/lite/project/ext/view/team.html.php @@ -3,7 +3,7 @@ * The team view file of project module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Qiyu Xie * @package project * @version $Id: team.html.php 4143 2021-08-11 11:01:06Z $ diff --git a/extension/lite/story/ext/view/batchcreate.html.php b/extension/lite/story/ext/view/batchcreate.html.php index 1fcfb127be..a6b636a87b 100644 --- a/extension/lite/story/ext/view/batchcreate.html.php +++ b/extension/lite/story/ext/view/batchcreate.html.php @@ -3,7 +3,7 @@ * The batch create view of story module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yangyang Shi * @package story * @version $Id$ diff --git a/extension/lite/story/ext/view/batchedit.html.php b/extension/lite/story/ext/view/batchedit.html.php index 2a87557ee3..e10ee0e190 100644 --- a/extension/lite/story/ext/view/batchedit.html.php +++ b/extension/lite/story/ext/view/batchedit.html.php @@ -3,7 +3,7 @@ * The batch edit view of story module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package story * @version $Id$ diff --git a/extension/lite/story/ext/view/create.html.php b/extension/lite/story/ext/view/create.html.php index 1f6bfd7cfb..3df9f3de65 100644 --- a/extension/lite/story/ext/view/create.html.php +++ b/extension/lite/story/ext/view/create.html.php @@ -3,7 +3,7 @@ * The create view of story module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package story * @version $Id: create.html.php 4902 2013-06-26 05:25:58Z wyd621@gmail.com $ diff --git a/extension/lite/story/ext/view/edit.html.php b/extension/lite/story/ext/view/edit.html.php index 77db321046..60d4e0908a 100644 --- a/extension/lite/story/ext/view/edit.html.php +++ b/extension/lite/story/ext/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view file of story module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package story * @version $Id: edit.html.php 4645 2013-04-11 08:32:09Z chencongzhi520@gmail.com $ diff --git a/extension/lite/story/ext/view/view.html.php b/extension/lite/story/ext/view/view.html.php index fe957d658d..a546a2a83e 100644 --- a/extension/lite/story/ext/view/view.html.php +++ b/extension/lite/story/ext/view/view.html.php @@ -3,7 +3,7 @@ * The view file of story module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package story * @version $Id: view.html.php 4952 2013-07-02 01:14:58Z chencongzhi520@gmail.com $ diff --git a/extension/lite/task/ext/lang/en/lite.php b/extension/lite/task/ext/lang/en/lite.php index 0d39e3d67b..2bdd9e2b06 100644 --- a/extension/lite/task/ext/lang/en/lite.php +++ b/extension/lite/task/ext/lang/en/lite.php @@ -3,7 +3,7 @@ * The task module en file of ZenTaoPMS. * * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package task * @version $Id: en.php 5040 2022-02-28 09:36:18Z $ diff --git a/extension/lite/task/ext/lang/zh-cn/lite.php b/extension/lite/task/ext/lang/zh-cn/lite.php index 8a87f3c205..c2f259de95 100644 --- a/extension/lite/task/ext/lang/zh-cn/lite.php +++ b/extension/lite/task/ext/lang/zh-cn/lite.php @@ -3,7 +3,7 @@ * The task module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package task * @version $Id: zh-cn.php 5040 2013-07-06 06:22:18Z zhujinyonging@gmail.com $ diff --git a/extension/lite/task/ext/view/batchcreate.html.php b/extension/lite/task/ext/view/batchcreate.html.php index b3f9af9942..4f221550e8 100644 --- a/extension/lite/task/ext/view/batchcreate.html.php +++ b/extension/lite/task/ext/view/batchcreate.html.php @@ -3,7 +3,7 @@ * The batch create view of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yangyang Shi * @package task * @version $Id$ diff --git a/extension/lite/task/ext/view/create.html.php b/extension/lite/task/ext/view/create.html.php index 79d8a9078b..95bf8196af 100644 --- a/extension/lite/task/ext/view/create.html.php +++ b/extension/lite/task/ext/view/create.html.php @@ -3,7 +3,7 @@ * The create view of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package task * @version $Id: create.html.php 5090 2013-07-10 05:49:24Z zhujinyonging@gmail.com $ diff --git a/extension/lite/tree/ext/view/browsetask.html.php b/extension/lite/tree/ext/view/browsetask.html.php index 3f96cf0465..fe9bfc9d08 100644 --- a/extension/lite/tree/ext/view/browsetask.html.php +++ b/extension/lite/tree/ext/view/browsetask.html.php @@ -3,7 +3,7 @@ * The browse view file of tree module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package tree * @version $Id: browse.html.php 4796 2013-06-06 02:21:59Z zhujinyonging@gmail.com $ diff --git a/extension/lite/user/ext/view/execution.html.php b/extension/lite/user/ext/view/execution.html.php index fca1be387c..a294ff798e 100644 --- a/extension/lite/user/ext/view/execution.html.php +++ b/extension/lite/user/ext/view/execution.html.php @@ -3,7 +3,7 @@ * The project view file of dashboard module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package dashboard * @version $Id: project.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/lib/api/api.class.php b/lib/api/api.class.php index b5145945ee..0eeb64428b 100755 --- a/lib/api/api.class.php +++ b/lib/api/api.class.php @@ -3,7 +3,7 @@ * The api library of zentaopms. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 5737e68cb2..83f09e4de9 100644 --- a/lib/date/date.class.php +++ b/lib/date/date.class.php @@ -3,7 +3,7 @@ * The date library of zentaopms. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 7522203d8b..9a2f5ce577 100644 --- a/lib/zdb/zdb.class.php +++ b/lib/zdb/zdb.class.php @@ -3,7 +3,7 @@ * The zdb library of zentaopms, can be used to bakup and restore a database. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package Zdb * @version $Id$ diff --git a/lib/zfile/zfile.class.php b/lib/zfile/zfile.class.php index 3951ad20e2..4b3210ee2c 100644 --- a/lib/zfile/zfile.class.php +++ b/lib/zfile/zfile.class.php @@ -3,7 +3,7 @@ * The zfile library of zentaopms. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 46f6b93c3d..6b1c71c29c 100755 --- a/module/action/control.php +++ b/module/action/control.php @@ -3,7 +3,7 @@ * The control file of action module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package action * @version $Id$ diff --git a/module/action/lang/de.php b/module/action/lang/de.php index f1efa44c41..b2528f069b 100644 --- a/module/action/lang/de.php +++ b/module/action/lang/de.php @@ -3,7 +3,7 @@ * The action module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package action * @version $Id: de.php 4729 2013-05-03 07:53:55Z chencongzhi520@gmail.com $ diff --git a/module/action/lang/en.php b/module/action/lang/en.php index 7f67123d50..aeb6a0ca36 100755 --- a/module/action/lang/en.php +++ b/module/action/lang/en.php @@ -3,7 +3,7 @@ * The action module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/fr.php b/module/action/lang/fr.php index 36ddf6c25f..9b6a0e21a6 100644 --- a/module/action/lang/fr.php +++ b/module/action/lang/fr.php @@ -3,7 +3,7 @@ * The action module fr file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package action * @version $Id: fr.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 953a74feb7..c6ba8de779 100755 --- a/module/action/lang/zh-cn.php +++ b/module/action/lang/zh-cn.php @@ -3,7 +3,7 @@ * The action module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 6be07b8f96..db85848dd6 100755 --- a/module/action/lang/zh-tw.php +++ b/module/action/lang/zh-tw.php @@ -3,7 +3,7 @@ * The action module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 20eb2b8f15..cc47a63f9a 100755 --- a/module/action/model.php +++ b/module/action/model.php @@ -3,7 +3,7 @@ * The model file of action module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 a2d0f1b123..9027be468e 100755 --- a/module/action/view/trash.html.php +++ b/module/action/view/trash.html.php @@ -3,7 +3,7 @@ * The trash view file of action module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package action * @version $Id$ diff --git a/module/admin/control.php b/module/admin/control.php index b29a8ec5b1..5c71d2aeb1 100644 --- a/module/admin/control.php +++ b/module/admin/control.php @@ -3,7 +3,7 @@ * The control file of admin module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/de.php b/module/admin/lang/de.php index eb244aac68..72cf92511a 100644 --- a/module/admin/lang/de.php +++ b/module/admin/lang/de.php @@ -3,7 +3,7 @@ * The admin module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/en.php b/module/admin/lang/en.php index a416f743b0..cae467c1c8 100644 --- a/module/admin/lang/en.php +++ b/module/admin/lang/en.php @@ -3,7 +3,7 @@ * The admin module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/fr.php b/module/admin/lang/fr.php index daba420ed0..4bbb315837 100644 --- a/module/admin/lang/fr.php +++ b/module/admin/lang/fr.php @@ -3,7 +3,7 @@ * The admin module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 9c412d4b62..fcfb4a5542 100644 --- a/module/admin/lang/zh-cn.php +++ b/module/admin/lang/zh-cn.php @@ -3,7 +3,7 @@ * The admin module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 ba17bccad6..ae0f49173f 100644 --- a/module/admin/lang/zh-tw.php +++ b/module/admin/lang/zh-tw.php @@ -3,7 +3,7 @@ * The admin module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 fcb74b5bb7..afb3cfe39c 100644 --- a/module/admin/model.php +++ b/module/admin/model.php @@ -3,7 +3,7 @@ * The model file of admin module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 f98d4329b4..6f574eacbe 100644 --- a/module/admin/view/bind.html.php +++ b/module/admin/view/bind.html.php @@ -3,7 +3,7 @@ * The view file of bug module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/certifyztemail.html.php b/module/admin/view/certifyztemail.html.php index a7a92c696a..fd71720e84 100644 --- a/module/admin/view/certifyztemail.html.php +++ b/module/admin/view/certifyztemail.html.php @@ -3,7 +3,7 @@ * The certifyztmobile view file of admin module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package admin * @version $Id$ diff --git a/module/admin/view/certifyztmobile.html.php b/module/admin/view/certifyztmobile.html.php index b4f6de971c..5f28a4d007 100644 --- a/module/admin/view/certifyztmobile.html.php +++ b/module/admin/view/certifyztmobile.html.php @@ -3,7 +3,7 @@ * The certifyztmobile view file of admin module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package admin * @version $Id$ diff --git a/module/admin/view/checkweak.html.php b/module/admin/view/checkweak.html.php index ff7f3f8f19..9ffd967147 100644 --- a/module/admin/view/checkweak.html.php +++ b/module/admin/view/checkweak.html.php @@ -3,7 +3,7 @@ * The safe view file of admin module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package admin * @version $Id$ diff --git a/module/admin/view/index.html.php b/module/admin/view/index.html.php index 129be4e884..801ec81385 100644 --- a/module/admin/view/index.html.php +++ b/module/admin/view/index.html.php @@ -3,7 +3,7 @@ * The view file of bug module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/log.html.php b/module/admin/view/log.html.php index b538b90b11..6d59eb17fe 100644 --- a/module/admin/view/log.html.php +++ b/module/admin/view/log.html.php @@ -3,7 +3,7 @@ * The log view file of admin module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package admin * @version $Id$ diff --git a/module/admin/view/register.html.php b/module/admin/view/register.html.php index ba914c8ef7..20bb8649ff 100644 --- a/module/admin/view/register.html.php +++ b/module/admin/view/register.html.php @@ -3,7 +3,7 @@ * The view file of bug module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/safe.html.php b/module/admin/view/safe.html.php index 2868a02f65..c3f4538055 100644 --- a/module/admin/view/safe.html.php +++ b/module/admin/view/safe.html.php @@ -3,7 +3,7 @@ * The safe view file of admin module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package admin * @version $Id$ diff --git a/module/admin/view/sso.html.php b/module/admin/view/sso.html.php index 5be91c71b6..ac78233c99 100644 --- a/module/admin/view/sso.html.php +++ b/module/admin/view/sso.html.php @@ -3,7 +3,7 @@ * The sso view file of admin module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package admin * @version $Id$ diff --git a/module/admin/view/ztcompany.html.php b/module/admin/view/ztcompany.html.php index 9cd5285164..2021369a70 100644 --- a/module/admin/view/ztcompany.html.php +++ b/module/admin/view/ztcompany.html.php @@ -3,7 +3,7 @@ * The ztcomany view file of admin module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package admin * @version $Id$ diff --git a/module/api/control.php b/module/api/control.php index 6c10a1a171..96b8c60b72 100755 --- a/module/api/control.php +++ b/module/api/control.php @@ -3,7 +3,7 @@ * The control file of api of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package api * @version $Id: control.php 5143 2013-07-15 06:11:59Z thanatos thanatos915@163.com $ diff --git a/module/api/lang/de.php b/module/api/lang/de.php index 3ad7b2fc62..bb64888b79 100644 --- a/module/api/lang/de.php +++ b/module/api/lang/de.php @@ -3,7 +3,7 @@ * The api module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package api * @version $Id: English.php 824 2010-05-02 15:32:06Z wwccss $ diff --git a/module/api/lang/en.php b/module/api/lang/en.php index 20aefb7498..6b97cdab41 100644 --- a/module/api/lang/en.php +++ b/module/api/lang/en.php @@ -3,7 +3,7 @@ * The api module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package api * @version $Id: English.php 824 2010-05-02 15:32:06Z wwccss $ diff --git a/module/api/lang/fr.php b/module/api/lang/fr.php index 18a34a5571..7e1bb45d44 100644 --- a/module/api/lang/fr.php +++ b/module/api/lang/fr.php @@ -3,7 +3,7 @@ * The api module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 e49b961316..1d32eb3f39 100755 --- a/module/api/lang/zh-cn.php +++ b/module/api/lang/zh-cn.php @@ -3,7 +3,7 @@ * The api module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 e56d998aee..8c1731988b 100644 --- a/module/api/lang/zh-tw.php +++ b/module/api/lang/zh-tw.php @@ -3,7 +3,7 @@ * The api module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 1206ffbf28..f55ce3335f 100644 --- a/module/api/model.php +++ b/module/api/model.php @@ -3,7 +3,7 @@ * The model file of api module of ZenTaoCMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package api * @version $Id$ diff --git a/module/api/view/create.html.php b/module/api/view/create.html.php index 7b8d29d638..351fc15806 100644 --- a/module/api/view/create.html.php +++ b/module/api/view/create.html.php @@ -3,7 +3,7 @@ * The create view of doc module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Jia Fu * @package doc * @version $Id: create.html.php 975 2010-07-29 03:30:25Z jajacn@126.com $ diff --git a/module/api/view/createlib.html.php b/module/api/view/createlib.html.php index 8e215817d9..22cb76990b 100644 --- a/module/api/view/createlib.html.php +++ b/module/api/view/createlib.html.php @@ -3,7 +3,7 @@ * The createlib view of doc module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Jia Fu * @package doc * @version $Id: createlib.html.php 975 2010-07-29 03:30:25Z jajacn@126.com $ diff --git a/module/api/view/createrelease.html.php b/module/api/view/createrelease.html.php index 25d8c8956d..d1f148c5e5 100644 --- a/module/api/view/createrelease.html.php +++ b/module/api/view/createrelease.html.php @@ -3,7 +3,7 @@ * The createlib view of doc module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Jia Fu * @package doc * @version $Id: createlib.html.php 975 2010-07-29 03:30:25Z jajacn@126.com $ diff --git a/module/api/view/createstruct.html.php b/module/api/view/createstruct.html.php index 532907d95b..b129371264 100644 --- a/module/api/view/createstruct.html.php +++ b/module/api/view/createstruct.html.php @@ -3,7 +3,7 @@ * The create struct view of doc module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Thanatos * @package doc * @link http://www.zentao.net diff --git a/module/api/view/edit.html.php b/module/api/view/edit.html.php index 7afc810963..5ec26d0c80 100644 --- a/module/api/view/edit.html.php +++ b/module/api/view/edit.html.php @@ -3,7 +3,7 @@ * The create view of doc module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Jia Fu * @package doc * @version $Id: create.html.php 975 2010-07-29 03:30:25Z jajacn@126.com $ diff --git a/module/api/view/editlib.html.php b/module/api/view/editlib.html.php index 73baddb4b1..74984efe28 100644 --- a/module/api/view/editlib.html.php +++ b/module/api/view/editlib.html.php @@ -3,7 +3,7 @@ * The createlib view of doc module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Jia Fu * @package doc * @version $Id: createlib.html.php 975 2010-07-29 03:30:25Z jajacn@126.com $ diff --git a/module/api/view/editstruct.html.php b/module/api/view/editstruct.html.php index 2a44d81eb3..7d440bbe9f 100644 --- a/module/api/view/editstruct.html.php +++ b/module/api/view/editstruct.html.php @@ -3,7 +3,7 @@ * The create struct view of doc module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Thanatos * @package doc * @link http://www.zentao.net diff --git a/module/api/view/index.html.php b/module/api/view/index.html.php index 7ac4c80c56..1032b8b5a3 100644 --- a/module/api/view/index.html.php +++ b/module/api/view/index.html.php @@ -3,7 +3,7 @@ * The index view file of doc module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package doc * @version $Id$ diff --git a/module/api/view/releases.html.php b/module/api/view/releases.html.php index aca80bb3c8..c9f37fc80b 100644 --- a/module/api/view/releases.html.php +++ b/module/api/view/releases.html.php @@ -3,7 +3,7 @@ * The index view file of doc module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Thanatos * @package doc * @version $Id$ diff --git a/module/api/view/struct.html.php b/module/api/view/struct.html.php index 15d5f30b6c..fa190f1d82 100644 --- a/module/api/view/struct.html.php +++ b/module/api/view/struct.html.php @@ -3,7 +3,7 @@ * The index view file of doc module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Thanatos * @package doc * @version $Id$ diff --git a/module/automation/control.php b/module/automation/control.php index 8c7ad1eedf..56c142f8c7 100644 --- a/module/automation/control.php +++ b/module/automation/control.php @@ -3,7 +3,7 @@ * The control file of automation module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package automation * @version $Id: control.php 4460 2013-02-26 02:28:02Z chencongzhi520@gmail.com $ diff --git a/module/automation/lang/en.php b/module/automation/lang/en.php index 1353de470d..e7a8abfc5a 100644 --- a/module/automation/lang/en.php +++ b/module/automation/lang/en.php @@ -3,7 +3,7 @@ * The automation module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package automation * @version $Id: zh-cn.php 4767 2013-05-05 06:10:13Z wwccss $ diff --git a/module/automation/lang/zh-cn.php b/module/automation/lang/zh-cn.php index f128edee00..0de14eb45f 100644 --- a/module/automation/lang/zh-cn.php +++ b/module/automation/lang/zh-cn.php @@ -3,7 +3,7 @@ * The automation module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package automation * @version $Id: zh-cn.php 4767 2013-05-05 06:10:13Z wwccss $ diff --git a/module/automation/lang/zh-tw.php b/module/automation/lang/zh-tw.php index afc173fc3c..04bb48fee0 100644 --- a/module/automation/lang/zh-tw.php +++ b/module/automation/lang/zh-tw.php @@ -3,7 +3,7 @@ * The automation module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package automation * @version $Id: zh-tw.php 4767 2013-05-05 06:10:13Z wwccss $ diff --git a/module/automation/model.php b/module/automation/model.php index 720c9b4b80..d3ef0b0bfd 100644 --- a/module/automation/model.php +++ b/module/automation/model.php @@ -3,7 +3,7 @@ * The model file of automation module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package automation * @version $Id: model.php 5148 2013-07-16 01:31:08Z chencongzhi520@gmail.com $ diff --git a/module/automation/view/browse.html.php b/module/automation/view/browse.html.php index b2ee1c9786..f9a33394be 100644 --- a/module/automation/view/browse.html.php +++ b/module/automation/view/browse.html.php @@ -3,7 +3,7 @@ * The view file of automation module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package automation * @version $Id: view.html.php 2568 2012-02-09 06:56:35Z shiyangyangwork@yahoo.cn $ diff --git a/module/backup/control.php b/module/backup/control.php index 0f39f398d3..425979221b 100644 --- a/module/backup/control.php +++ b/module/backup/control.php @@ -3,7 +3,7 @@ * The control file of backup of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package backup * @version $Id$ diff --git a/module/backup/model.php b/module/backup/model.php index f430dc6afa..ea9845d7e1 100644 --- a/module/backup/model.php +++ b/module/backup/model.php @@ -3,7 +3,7 @@ * The model file of backup module of ZenTaoCMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package backup * @version $Id$ diff --git a/module/backup/view/index.html.php b/module/backup/view/index.html.php index 8097a4e1b7..d4cf7432dc 100644 --- a/module/backup/view/index.html.php +++ b/module/backup/view/index.html.php @@ -3,7 +3,7 @@ * The view file of backup module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package backup * @version $Id: view.html.php 2568 2012-02-09 06:56:35Z shiyangyangwork@yahoo.cn $ diff --git a/module/backup/view/setting.html.php b/module/backup/view/setting.html.php index 7e6773306b..ce444509f7 100644 --- a/module/backup/view/setting.html.php +++ b/module/backup/view/setting.html.php @@ -3,7 +3,7 @@ * The setting view file of backup module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package backup * @version $Id$ diff --git a/module/block/config.php b/module/block/config.php index f633f2f1a8..d7e67a8018 100644 --- a/module/block/config.php +++ b/module/block/config.php @@ -3,7 +3,7 @@ * The config file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/control.php b/module/block/control.php index 23bb4ac43e..69be9d2132 100644 --- a/module/block/control.php +++ b/module/block/control.php @@ -3,7 +3,7 @@ * The control file of block of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/lang/de.php b/module/block/lang/de.php index 48edd9f2e0..bcdce456f8 100644 --- a/module/block/lang/de.php +++ b/module/block/lang/de.php @@ -3,7 +3,7 @@ * The de file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/lang/en.php b/module/block/lang/en.php index 6346a414c7..2305bbaf89 100644 --- a/module/block/lang/en.php +++ b/module/block/lang/en.php @@ -3,7 +3,7 @@ * The en file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/lang/fr.php b/module/block/lang/fr.php index cb5d1d043c..01dce64926 100644 --- a/module/block/lang/fr.php +++ b/module/block/lang/fr.php @@ -3,7 +3,7 @@ * The fr file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/lang/vi.php b/module/block/lang/vi.php index 8d0a89bde2..3e8b03852b 100644 --- a/module/block/lang/vi.php +++ b/module/block/lang/vi.php @@ -3,7 +3,7 @@ * The vi file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/lang/zh-cn.php b/module/block/lang/zh-cn.php index 28e4d7d9f4..c4e2c7acf3 100644 --- a/module/block/lang/zh-cn.php +++ b/module/block/lang/zh-cn.php @@ -3,7 +3,7 @@ * The zh-cn file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/lang/zh-tw.php b/module/block/lang/zh-tw.php index 421aeb9ac0..b35995f1d0 100644 --- a/module/block/lang/zh-tw.php +++ b/module/block/lang/zh-tw.php @@ -3,7 +3,7 @@ * The zh-tw file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/model.php b/module/block/model.php index c676ecb089..f33c92f9d2 100644 --- a/module/block/model.php +++ b/module/block/model.php @@ -3,7 +3,7 @@ * The model file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/admin.html.php b/module/block/view/admin.html.php index 5c46b3f9ff..4cdc25de43 100644 --- a/module/block/view/admin.html.php +++ b/module/block/view/admin.html.php @@ -3,7 +3,7 @@ * The admin view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/bugblock.html.php b/module/block/view/bugblock.html.php index afdab88b10..dfe1f767fc 100644 --- a/module/block/view/bugblock.html.php +++ b/module/block/view/bugblock.html.php @@ -3,7 +3,7 @@ * The bug block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/buildblock.html.php b/module/block/view/buildblock.html.php index becad6f076..99d2b50d47 100644 --- a/module/block/view/buildblock.html.php +++ b/module/block/view/buildblock.html.php @@ -3,7 +3,7 @@ * The build block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/caseblock.html.php b/module/block/view/caseblock.html.php index e794f2e14e..71422061d2 100644 --- a/module/block/view/caseblock.html.php +++ b/module/block/view/caseblock.html.php @@ -4,7 +4,7 @@ * The case block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/dashboard.html.php b/module/block/view/dashboard.html.php index 0213f7c781..f2e77309ea 100644 --- a/module/block/view/dashboard.html.php +++ b/module/block/view/dashboard.html.php @@ -3,7 +3,7 @@ * The dashboard view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/executionblock.html.php b/module/block/view/executionblock.html.php index 6611c5feff..c181fb1931 100644 --- a/module/block/view/executionblock.html.php +++ b/module/block/view/executionblock.html.php @@ -3,7 +3,7 @@ * The execution block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/executionoverviewblock.html.php b/module/block/view/executionoverviewblock.html.php index 3dec05c370..cdb66b3ecf 100644 --- a/module/block/view/executionoverviewblock.html.php +++ b/module/block/view/executionoverviewblock.html.php @@ -3,7 +3,7 @@ * The execution overview block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Tingting Dai * @package block * @version $Id$ diff --git a/module/block/view/listblock.html.php b/module/block/view/listblock.html.php index 9e9cf211e4..0504b4a937 100644 --- a/module/block/view/listblock.html.php +++ b/module/block/view/listblock.html.php @@ -3,7 +3,7 @@ * The list block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/main.html.php b/module/block/view/main.html.php index 0cadfe729d..2d53abdaad 100644 --- a/module/block/view/main.html.php +++ b/module/block/view/main.html.php @@ -3,7 +3,7 @@ * The main view file of block module of ZentaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/overviewblock.html.php b/module/block/view/overviewblock.html.php index 66bec1b5fb..2b80b15286 100644 --- a/module/block/view/overviewblock.html.php +++ b/module/block/view/overviewblock.html.php @@ -3,7 +3,7 @@ * The overview block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package block * @version $Id$ diff --git a/module/block/view/planblock.html.php b/module/block/view/planblock.html.php index 646a6bd57c..26e4448036 100644 --- a/module/block/view/planblock.html.php +++ b/module/block/view/planblock.html.php @@ -3,7 +3,7 @@ * The plan block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/printassigntomeblock.html.php b/module/block/view/printassigntomeblock.html.php index 5feadbc6d8..6802998e0e 100644 --- a/module/block/view/printassigntomeblock.html.php +++ b/module/block/view/printassigntomeblock.html.php @@ -3,7 +3,7 @@ * The assigntome block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/productblock.html.php b/module/block/view/productblock.html.php index 148eb41cd0..8d37809c52 100644 --- a/module/block/view/productblock.html.php +++ b/module/block/view/productblock.html.php @@ -3,7 +3,7 @@ * The product block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/productoverviewblock.html.php b/module/block/view/productoverviewblock.html.php index 9d7b18bb1b..bef6b612dd 100644 --- a/module/block/view/productoverviewblock.html.php +++ b/module/block/view/productoverviewblock.html.php @@ -3,7 +3,7 @@ * The overview block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package block * @version $Id$ diff --git a/module/block/view/productstatisticblock.html.php b/module/block/view/productstatisticblock.html.php index 82d5bb893d..489322b648 100644 --- a/module/block/view/productstatisticblock.html.php +++ b/module/block/view/productstatisticblock.html.php @@ -3,7 +3,7 @@ * The report block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package block * @version $Id$ diff --git a/module/block/view/publicform.html.php b/module/block/view/publicform.html.php index 537dd8e250..561657089d 100644 --- a/module/block/view/publicform.html.php +++ b/module/block/view/publicform.html.php @@ -3,7 +3,7 @@ * The public form items of block of Zentao. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/qaoverviewblock.html.php b/module/block/view/qaoverviewblock.html.php index 347043424e..e165d2fc18 100644 --- a/module/block/view/qaoverviewblock.html.php +++ b/module/block/view/qaoverviewblock.html.php @@ -3,7 +3,7 @@ * The project overview block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Tingting Dai * @package block * @version $Id$ diff --git a/module/block/view/releaseblock.html.php b/module/block/view/releaseblock.html.php index f8e37278d5..9a0de1a672 100644 --- a/module/block/view/releaseblock.html.php +++ b/module/block/view/releaseblock.html.php @@ -3,7 +3,7 @@ * The release block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/requirementblock.html.php b/module/block/view/requirementblock.html.php index 2d64099f90..9f7b2edcd1 100644 --- a/module/block/view/requirementblock.html.php +++ b/module/block/view/requirementblock.html.php @@ -3,7 +3,7 @@ * The requirement block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/scrumlistblock.html.php b/module/block/view/scrumlistblock.html.php index 91d1020917..693b90dc73 100644 --- a/module/block/view/scrumlistblock.html.php +++ b/module/block/view/scrumlistblock.html.php @@ -3,7 +3,7 @@ * The project list block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/scrumoverviewblock.html.php b/module/block/view/scrumoverviewblock.html.php index cf05b83451..ad0373969e 100644 --- a/module/block/view/scrumoverviewblock.html.php +++ b/module/block/view/scrumoverviewblock.html.php @@ -3,7 +3,7 @@ * The scrum overview block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/scrumproductblock.html.php b/module/block/view/scrumproductblock.html.php index 5140e8146b..46e2c1cf21 100644 --- a/module/block/view/scrumproductblock.html.php +++ b/module/block/view/scrumproductblock.html.php @@ -3,7 +3,7 @@ * The product overview block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/scrumroadmapblock.html.php b/module/block/view/scrumroadmapblock.html.php index d85f159714..b1d002b938 100644 --- a/module/block/view/scrumroadmapblock.html.php +++ b/module/block/view/scrumroadmapblock.html.php @@ -3,7 +3,7 @@ * The roadmap view file of product module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package product * @version $Id: roadmap.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/block/view/scrumtestblock.html.php b/module/block/view/scrumtestblock.html.php index 09a283bba1..cd6b6c0005 100644 --- a/module/block/view/scrumtestblock.html.php +++ b/module/block/view/scrumtestblock.html.php @@ -3,7 +3,7 @@ * The testtask block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/set.html.php b/module/block/view/set.html.php index 70b92e4475..c5eec66831 100644 --- a/module/block/view/set.html.php +++ b/module/block/view/set.html.php @@ -3,7 +3,7 @@ * The set view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/setmodule.html.php b/module/block/view/setmodule.html.php index c4c858826a..ae8a7d7bdb 100644 --- a/module/block/view/setmodule.html.php +++ b/module/block/view/setmodule.html.php @@ -3,7 +3,7 @@ * The setmodule view of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id: html.php 7488 2013-12-26 07:26:10Z zhujinyong $ diff --git a/module/block/view/sprintblock.html.php b/module/block/view/sprintblock.html.php index c3b79d19ce..f83d79b16a 100644 --- a/module/block/view/sprintblock.html.php +++ b/module/block/view/sprintblock.html.php @@ -3,7 +3,7 @@ * The sprint block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/statisticblock.html.php b/module/block/view/statisticblock.html.php index c7357605de..5dda0afd56 100644 --- a/module/block/view/statisticblock.html.php +++ b/module/block/view/statisticblock.html.php @@ -3,7 +3,7 @@ * The report block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package block * @version $Id$ diff --git a/module/block/view/storyblock.html.php b/module/block/view/storyblock.html.php index 68e9c7ece8..8984eef098 100644 --- a/module/block/view/storyblock.html.php +++ b/module/block/view/storyblock.html.php @@ -3,7 +3,7 @@ * The story block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/taskblock.html.php b/module/block/view/taskblock.html.php index 0b513de61b..e3ec3e39c9 100644 --- a/module/block/view/taskblock.html.php +++ b/module/block/view/taskblock.html.php @@ -3,7 +3,7 @@ * The task block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/testtaskblock.html.php b/module/block/view/testtaskblock.html.php index 342abd3916..77a2812618 100644 --- a/module/block/view/testtaskblock.html.php +++ b/module/block/view/testtaskblock.html.php @@ -3,7 +3,7 @@ * The testtask block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/todoblock.html.php b/module/block/view/todoblock.html.php index 05772fa2fa..34752568ad 100644 --- a/module/block/view/todoblock.html.php +++ b/module/block/view/todoblock.html.php @@ -3,7 +3,7 @@ * The todo block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/todolist.html.php b/module/block/view/todolist.html.php index 90238ebbb7..798074dd94 100644 --- a/module/block/view/todolist.html.php +++ b/module/block/view/todolist.html.php @@ -3,7 +3,7 @@ * The story block view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/welcome.html.php b/module/block/view/welcome.html.php index 1ddbb25f40..ae044e4beb 100644 --- a/module/block/view/welcome.html.php +++ b/module/block/view/welcome.html.php @@ -3,7 +3,7 @@ * The welcome view file of block module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/branch/control.php b/module/branch/control.php index a5f2c22080..a1b60626b0 100644 --- a/module/branch/control.php +++ b/module/branch/control.php @@ -3,7 +3,7 @@ * The control file of branch of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package branch * @version $Id$ diff --git a/module/branch/model.php b/module/branch/model.php index 6e87a07734..dfee13c1ff 100644 --- a/module/branch/model.php +++ b/module/branch/model.php @@ -3,7 +3,7 @@ * The model file of branch module of ZenTaoCMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package branch * @version $Id$ diff --git a/module/branch/view/batchedit.html.php b/module/branch/view/batchedit.html.php index 895310d75b..039956ddd6 100644 --- a/module/branch/view/batchedit.html.php +++ b/module/branch/view/batchedit.html.php @@ -3,7 +3,7 @@ * The batchedit of branch module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Qiyu Xie * @package branch * @version $Id: batchedit.html.php 4903 2021-11-09 13:14:59Z hfz $ diff --git a/module/branch/view/create.html.php b/module/branch/view/create.html.php index 899dc015ac..4f2a1bdd00 100644 --- a/module/branch/view/create.html.php +++ b/module/branch/view/create.html.php @@ -3,7 +3,7 @@ * The create view file of branch module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Qiyu Xie * @package branch * @version $Id$ diff --git a/module/branch/view/edit.html.php b/module/branch/view/edit.html.php index 69d6fcf4ee..e4c551bb69 100644 --- a/module/branch/view/edit.html.php +++ b/module/branch/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view file of branch module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Qiyu Xie * @package branch * @version $Id$ diff --git a/module/branch/view/manage.html.php b/module/branch/view/manage.html.php index 28a2027f52..b35e75fbfe 100644 --- a/module/branch/view/manage.html.php +++ b/module/branch/view/manage.html.php @@ -3,7 +3,7 @@ * The manage view file of branch module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Qiyu Xie * @package branch * @version $Id$ diff --git a/module/bug/control.php b/module/bug/control.php index d28b6fc25f..86b8fe8e4a 100755 --- a/module/bug/control.php +++ b/module/bug/control.php @@ -3,7 +3,7 @@ * The control file of bug currentModule of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/de.php b/module/bug/lang/de.php index 1f24eae1ec..e81d986012 100644 --- a/module/bug/lang/de.php +++ b/module/bug/lang/de.php @@ -3,7 +3,7 @@ * The bug module german file of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package bug * @version $Id: de.php 4536 2013-03-02 13:39:37Z wwccss $ diff --git a/module/bug/lang/en.php b/module/bug/lang/en.php index d8d7c8fd71..2eb571c3cc 100644 --- a/module/bug/lang/en.php +++ b/module/bug/lang/en.php @@ -3,7 +3,7 @@ * The bug module English file of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package bug * @version $Id: en.php 4536 2013-03-02 13:39:37Z wwccss $ diff --git a/module/bug/lang/fr.php b/module/bug/lang/fr.php index fce872856d..46b28c5293 100644 --- a/module/bug/lang/fr.php +++ b/module/bug/lang/fr.php @@ -3,7 +3,7 @@ * The bug module french file of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package bug * @version $Id: fr.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 c61ed60d23..1152d37730 100644 --- a/module/bug/lang/zh-cn.php +++ b/module/bug/lang/zh-cn.php @@ -3,7 +3,7 @@ * The bug module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 3a4e4f26c6..94c028a058 100644 --- a/module/bug/lang/zh-tw.php +++ b/module/bug/lang/zh-tw.php @@ -3,7 +3,7 @@ * The bug module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 de5edeb1bf..1beea4755b 100644 --- a/module/bug/model.php +++ b/module/bug/model.php @@ -3,7 +3,7 @@ * The model file of bug module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 55f7eda56e..e511362d73 100644 --- a/module/bug/view/activate.html.php +++ b/module/bug/view/activate.html.php @@ -3,7 +3,7 @@ * The activate file of bug module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 454c943aad..5ee126fa96 100644 --- a/module/bug/view/assignto.html.php +++ b/module/bug/view/assignto.html.php @@ -3,7 +3,7 @@ * The complete file of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/batchactivate.html.php b/module/bug/view/batchactivate.html.php index 7d861c682a..0a2331d82e 100644 --- a/module/bug/view/batchactivate.html.php +++ b/module/bug/view/batchactivate.html.php @@ -3,7 +3,7 @@ * The batch activate view of bug module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package bug * @version $Id$ diff --git a/module/bug/view/batchcreate.html.php b/module/bug/view/batchcreate.html.php index 17a5c284a1..2d1e76e151 100755 --- a/module/bug/view/batchcreate.html.php +++ b/module/bug/view/batchcreate.html.php @@ -3,7 +3,7 @@ * The batch create view of story module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yangyang Shi * @package story * @version $Id$ diff --git a/module/bug/view/batchedit.html.php b/module/bug/view/batchedit.html.php index 985b4645c4..fd93758fac 100644 --- a/module/bug/view/batchedit.html.php +++ b/module/bug/view/batchedit.html.php @@ -3,7 +3,7 @@ * The batch edit view of bug module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package bug * @version $Id$ diff --git a/module/bug/view/browse.html.php b/module/bug/view/browse.html.php index ff5a3ab2e3..87cd8ca1e3 100644 --- a/module/bug/view/browse.html.php +++ b/module/bug/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of bug module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 6d2f80c941..66d496959b 100644 --- a/module/bug/view/close.html.php +++ b/module/bug/view/close.html.php @@ -3,7 +3,7 @@ * The close file of bug module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 3d54a18561..48f3c8cb17 100755 --- a/module/bug/view/confirmbug.html.php +++ b/module/bug/view/confirmbug.html.php @@ -3,7 +3,7 @@ * The confirm file of bug module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 50ee11aa13..f5c9c27df0 100644 --- a/module/bug/view/create.html.php +++ b/module/bug/view/create.html.php @@ -3,7 +3,7 @@ * The create view of bug module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 8716ea05fa..0cc74022e8 100644 --- a/module/bug/view/edit.html.php +++ b/module/bug/view/edit.html.php @@ -3,7 +3,7 @@ * The edit file of bug module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 886943b648..7051848163 100755 --- a/module/bug/view/export.html.php +++ b/module/bug/view/export.html.php @@ -3,7 +3,7 @@ * The export view file of bug module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package task * @version $Id$ diff --git a/module/bug/view/linkbugs.html.php b/module/bug/view/linkbugs.html.php index 7ead53687b..686ac00815 100644 --- a/module/bug/view/linkbugs.html.php +++ b/module/bug/view/linkbugs.html.php @@ -3,7 +3,7 @@ * The link bug view of bug module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Fei Chen * @package bug * @version $Id: linkbugs.html.php 4129 2016-03-08 09:00:12Z chenfei $ diff --git a/module/bug/view/report.html.php b/module/bug/view/report.html.php index 24111bc15f..3dd047639f 100644 --- a/module/bug/view/report.html.php +++ b/module/bug/view/report.html.php @@ -3,7 +3,7 @@ * The report view file of bug module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 35d128ceae..8c3253ac4f 100644 --- a/module/bug/view/resolve.html.php +++ b/module/bug/view/resolve.html.php @@ -3,7 +3,7 @@ * The resolve file of bug module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 bbc9fb1bd4..5be4036052 100644 --- a/module/bug/view/sendmail.html.php +++ b/module/bug/view/sendmail.html.php @@ -3,7 +3,7 @@ * The mail file of bug module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 97c6003ba1..9b792b497d 100644 --- a/module/bug/view/view.html.php +++ b/module/bug/view/view.html.php @@ -3,7 +3,7 @@ * The view file of bug module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 1105dc34a3..33cdbc325d 100644 --- a/module/build/control.php +++ b/module/build/control.php @@ -3,7 +3,7 @@ * The control file of build module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/de.php b/module/build/lang/de.php index 8f68f4650b..3849fc2e15 100644 --- a/module/build/lang/de.php +++ b/module/build/lang/de.php @@ -3,7 +3,7 @@ * The build module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package build * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/build/lang/en.php b/module/build/lang/en.php index 70ccd580f8..370942ad00 100644 --- a/module/build/lang/en.php +++ b/module/build/lang/en.php @@ -3,7 +3,7 @@ * The build module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package build * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/build/lang/fr.php b/module/build/lang/fr.php index c8bc850f73..4cae7199ca 100644 --- a/module/build/lang/fr.php +++ b/module/build/lang/fr.php @@ -3,7 +3,7 @@ * The build module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 34647aec6d..b2d9b21a4e 100644 --- a/module/build/lang/zh-cn.php +++ b/module/build/lang/zh-cn.php @@ -3,7 +3,7 @@ * The build module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 56f796195d..ad7905e57b 100644 --- a/module/build/lang/zh-tw.php +++ b/module/build/lang/zh-tw.php @@ -3,7 +3,7 @@ * The build module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 a0e965c109..cc0eeeb631 100644 --- a/module/build/model.php +++ b/module/build/model.php @@ -3,7 +3,7 @@ * The model file of build module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 996195e756..aaa0bf0a44 100644 --- a/module/build/view/create.html.php +++ b/module/build/view/create.html.php @@ -3,7 +3,7 @@ * The create view of build module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 7745491568..4b75bde857 100644 --- a/module/build/view/edit.html.php +++ b/module/build/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view of build module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 bdd39c2c5a..43a1df24b1 100644 --- a/module/build/view/linkbug.html.php +++ b/module/build/view/linkbug.html.php @@ -3,7 +3,7 @@ * The link bug view of build module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 56e906e431..bb7ed5b585 100644 --- a/module/build/view/linkstory.html.php +++ b/module/build/view/linkstory.html.php @@ -3,7 +3,7 @@ * The link story view of build module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 b2dad81742..526a1bba21 100644 --- a/module/build/view/view.html.php +++ b/module/build/view/view.html.php @@ -3,7 +3,7 @@ * The view file of build module's view method of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package build * @version $Id: view.html.php 4386 2013-02-19 07:37:45Z chencongzhi520@gmail.com $ diff --git a/module/caselib/control.php b/module/caselib/control.php index 8d31fe904e..ba31de3061 100644 --- a/module/caselib/control.php +++ b/module/caselib/control.php @@ -3,7 +3,7 @@ * The control file of caselib module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package caselib * @version $Id: control.php 5114 2013-07-12 06:02:59Z chencongzhi520@gmail.com $ diff --git a/module/caselib/lang/de.php b/module/caselib/lang/de.php index a05ac03614..be54ca263a 100644 --- a/module/caselib/lang/de.php +++ b/module/caselib/lang/de.php @@ -3,7 +3,7 @@ * The caselib module en file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package caselib * @version $Id: zh-cn.php 4490 2013-02-27 03:27:05Z wyd621@gmail.com $ diff --git a/module/caselib/lang/en.php b/module/caselib/lang/en.php index 2044aa3fc7..1c266b02e6 100644 --- a/module/caselib/lang/en.php +++ b/module/caselib/lang/en.php @@ -3,7 +3,7 @@ * The caselib module en file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package caselib * @version $Id: zh-cn.php 4490 2013-02-27 03:27:05Z wyd621@gmail.com $ diff --git a/module/caselib/lang/fr.php b/module/caselib/lang/fr.php index 352f54cd62..a65a9b162c 100644 --- a/module/caselib/lang/fr.php +++ b/module/caselib/lang/fr.php @@ -3,7 +3,7 @@ * The caselib module en file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package caselib * @version $Id: zh-cn.php 4490 2013-02-27 03:27:05Z wyd621@gmail.com $ diff --git a/module/caselib/lang/zh-cn.php b/module/caselib/lang/zh-cn.php index 114092a784..13c162b35e 100644 --- a/module/caselib/lang/zh-cn.php +++ b/module/caselib/lang/zh-cn.php @@ -3,7 +3,7 @@ * The caselib module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package caselib * @version $Id: zh-cn.php 4490 2013-02-27 03:27:05Z wyd621@gmail.com $ diff --git a/module/caselib/lang/zh-tw.php b/module/caselib/lang/zh-tw.php index dcdeee7314..d4e0ef7f93 100644 --- a/module/caselib/lang/zh-tw.php +++ b/module/caselib/lang/zh-tw.php @@ -3,7 +3,7 @@ * The caselib module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package caselib * @version $Id: zh-tw.php 4490 2013-02-27 03:27:05Z wyd621@gmail.com $ diff --git a/module/caselib/model.php b/module/caselib/model.php index c087eb1974..d24373e174 100644 --- a/module/caselib/model.php +++ b/module/caselib/model.php @@ -3,7 +3,7 @@ * The model file of caselib module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package caselib * @version $Id: model.php 5114 2013-07-12 06:02:59Z chencongzhi520@gmail.com $ diff --git a/module/caselib/view/batchcreatecase.html.php b/module/caselib/view/batchcreatecase.html.php index 19bf7f080d..0f2ef328e2 100644 --- a/module/caselib/view/batchcreatecase.html.php +++ b/module/caselib/view/batchcreatecase.html.php @@ -3,7 +3,7 @@ * The batch create case view of caselib module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package caselib * @version $Id$ diff --git a/module/caselib/view/browse.html.php b/module/caselib/view/browse.html.php index 980fcde929..e0b500b20d 100644 --- a/module/caselib/view/browse.html.php +++ b/module/caselib/view/browse.html.php @@ -3,7 +3,7 @@ * The library view file of caselib module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package caselib * @version $Id: library.html.php 5108 2013-07-12 01:59:04Z chencongzhi520@gmail.com $ diff --git a/module/caselib/view/create.html.php b/module/caselib/view/create.html.php index 7d028d4dd9..4a0b1de0ed 100644 --- a/module/caselib/view/create.html.php +++ b/module/caselib/view/create.html.php @@ -3,7 +3,7 @@ * The createlib view of caselib module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package caselib * @version $Id: create.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/caselib/view/createcase.html.php b/module/caselib/view/createcase.html.php index f1e4629c8c..6780836746 100644 --- a/module/caselib/view/createcase.html.php +++ b/module/caselib/view/createcase.html.php @@ -3,7 +3,7 @@ * The create case view of caselib module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package caselib * @version $Id: createcase.html.php 4904 2013-06-26 05:37:45Z wyd621@gmail.com $ diff --git a/module/caselib/view/edit.html.php b/module/caselib/view/edit.html.php index 49fc7577f9..c2b322b5a7 100644 --- a/module/caselib/view/edit.html.php +++ b/module/caselib/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view of caselib module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package caselib * @version $Id: edit.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/caselib/view/view.html.php b/module/caselib/view/view.html.php index 0bc7645556..ec9a207a59 100644 --- a/module/caselib/view/view.html.php +++ b/module/caselib/view/view.html.php @@ -3,7 +3,7 @@ * The view lib file of caselib module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package caselib * @version $Id: view.html.php 4141 2013-01-18 06:15:13Z zhujinyonging@gmail.com $ diff --git a/module/ci/control.php b/module/ci/control.php index 8c16c1ab1d..ddcf0b0c03 100644 --- a/module/ci/control.php +++ b/module/ci/control.php @@ -3,7 +3,7 @@ * The control file of ci module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chenqi * @package product * @version $Id: ${FILE_NAME} 5144 2020/1/8 8:10 下午 chenqi@cnezsoft.com $ diff --git a/module/common/lang/de.php b/module/common/lang/de.php index 60dd8fe3fa..6c36b37718 100644 --- a/module/common/lang/de.php +++ b/module/common/lang/de.php @@ -3,7 +3,7 @@ * The common simplified chinese file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: de.php 5116 2013-07-12 06:37:48Z chencongzhi520@gmail.com $ diff --git a/module/common/lang/en.php b/module/common/lang/en.php index 17333a4d9a..4ef7491350 100644 --- a/module/common/lang/en.php +++ b/module/common/lang/en.php @@ -3,7 +3,7 @@ * The common simplified chinese file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/fr.php b/module/common/lang/fr.php index 1045cb2117..1d685d1fcc 100644 --- a/module/common/lang/fr.php +++ b/module/common/lang/fr.php @@ -3,7 +3,7 @@ * The common simplified chinese file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: fr.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 6e1bdaa473..c4b925f4b8 100644 --- a/module/common/lang/zh-cn.php +++ b/module/common/lang/zh-cn.php @@ -3,7 +3,7 @@ * The common simplified chinese file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 1ef0a50c8a..bd2f32e755 100644 --- a/module/common/lang/zh-tw.php +++ b/module/common/lang/zh-tw.php @@ -3,7 +3,7 @@ * The common simplified chinese file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 e1141b7368..018212885b 100644 --- a/module/common/model.php +++ b/module/common/model.php @@ -3,7 +3,7 @@ * The model file of common module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package common * @version $Id$ diff --git a/module/common/view/customfield.html.php b/module/common/view/customfield.html.php index 5ec1ec90dc..e9ef5eec1c 100644 --- a/module/common/view/customfield.html.php +++ b/module/common/view/customfield.html.php @@ -3,7 +3,7 @@ * The custom field view file of common module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package common * @version $Id$ diff --git a/module/company/control.php b/module/company/control.php index 17010e0d32..b9378fa0dd 100644 --- a/module/company/control.php +++ b/module/company/control.php @@ -3,7 +3,7 @@ * The control file of company module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/de.php b/module/company/lang/de.php index 5da8625db2..a29aa6197d 100644 --- a/module/company/lang/de.php +++ b/module/company/lang/de.php @@ -3,7 +3,7 @@ * The company module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/en.php b/module/company/lang/en.php index 54be6c1852..dcfbeac13e 100644 --- a/module/company/lang/en.php +++ b/module/company/lang/en.php @@ -3,7 +3,7 @@ * The company module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/fr.php b/module/company/lang/fr.php index ac66b9a2dc..2eace20330 100644 --- a/module/company/lang/fr.php +++ b/module/company/lang/fr.php @@ -3,7 +3,7 @@ * The company module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 23b1c0e37a..784d650fb9 100644 --- a/module/company/lang/zh-cn.php +++ b/module/company/lang/zh-cn.php @@ -3,7 +3,7 @@ * The company module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 2730969001..1c1e9d9022 100644 --- a/module/company/lang/zh-tw.php +++ b/module/company/lang/zh-tw.php @@ -3,7 +3,7 @@ * The company module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 be7f081894..e67c14b1f3 100644 --- a/module/company/model.php +++ b/module/company/model.php @@ -3,7 +3,7 @@ * The model file of company module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 1dbbf15f06..88062666a7 100755 --- a/module/company/view/browse.html.php +++ b/module/company/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of product dept of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 f8d518eed8..3f46e9720d 100644 --- a/module/company/view/dynamic.html.php +++ b/module/company/view/dynamic.html.php @@ -3,7 +3,7 @@ * The action->dynamic view file of dashboard module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 2acb543854..3a399305eb 100644 --- a/module/company/view/edit.html.php +++ b/module/company/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view of company module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 2809e684b8..d03ca2d0a5 100644 --- a/module/company/view/view.html.php +++ b/module/company/view/view.html.php @@ -3,7 +3,7 @@ * The view view of company module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package company * @version $Id: edit.html.php 4488 2013-02-27 02:54:49Z chencongzhi520@gmail.com $ diff --git a/module/compile/control.php b/module/compile/control.php index aa81b14e1d..15afc7ca19 100644 --- a/module/compile/control.php +++ b/module/compile/control.php @@ -3,7 +3,7 @@ * The control file of compile of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package compile * @version $Id$ diff --git a/module/compile/model.php b/module/compile/model.php index 83c5d0ab22..2a1143e964 100644 --- a/module/compile/model.php +++ b/module/compile/model.php @@ -3,7 +3,7 @@ * The model file of compile module of ZenTaoCMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package compile * @version $Id$ diff --git a/module/compile/view/browse.html.php b/module/compile/view/browse.html.php index 5dd9c2a77d..ed6855de45 100644 --- a/module/compile/view/browse.html.php +++ b/module/compile/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of compile module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chenqi * @package compile * @version $Id$ diff --git a/module/compile/view/logs.html.php b/module/compile/view/logs.html.php index 4b5e528505..510eca38a7 100644 --- a/module/compile/view/logs.html.php +++ b/module/compile/view/logs.html.php @@ -3,7 +3,7 @@ * The browse view file of compile module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chenqi * @package compile * @version $Id$ diff --git a/module/convert/control.php b/module/convert/control.php index b92c713b29..b8f5f87c6f 100644 --- a/module/convert/control.php +++ b/module/convert/control.php @@ -3,7 +3,7 @@ * The control file of convert currentModule of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 43f4a6dfe1..305e7c7fbc 100644 --- a/module/convert/converter/bugfree.php +++ b/module/convert/converter/bugfree.php @@ -3,7 +3,7 @@ * The baisc model file of bugfree convert of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 e77262a8da..3672b36f98 100644 --- a/module/convert/converter/bugfree1.php +++ b/module/convert/converter/bugfree1.php @@ -3,7 +3,7 @@ * The model file of bugfree version 1 convert of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 26e7ebd6ac..2e33fdd31f 100644 --- a/module/convert/converter/bugfree2.php +++ b/module/convert/converter/bugfree2.php @@ -3,7 +3,7 @@ * The model file of bugfree2 convert of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 4ed5d3c50c..ab067c18d1 100644 --- a/module/convert/converter/redmine.php +++ b/module/convert/converter/redmine.php @@ -3,7 +3,7 @@ * The baisc model file of bugfree convert of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yangyang Shi * @package convert * @version $Id $ diff --git a/module/convert/converter/redmine1.1.php b/module/convert/converter/redmine1.1.php index 7114f3ebf9..284aa213c6 100644 --- a/module/convert/converter/redmine1.1.php +++ b/module/convert/converter/redmine1.1.php @@ -3,7 +3,7 @@ * The model file of redmine convert of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yangyang Shi * @package convert * @version $Id $ diff --git a/module/convert/lang/de.php b/module/convert/lang/de.php index 5dd7c2af27..bba1dff3b0 100644 --- a/module/convert/lang/de.php +++ b/module/convert/lang/de.php @@ -3,7 +3,7 @@ * The convert module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package convert * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/lang/en.php b/module/convert/lang/en.php index b28d08d0f9..6d269275d1 100644 --- a/module/convert/lang/en.php +++ b/module/convert/lang/en.php @@ -3,7 +3,7 @@ * The convert module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package convert * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/lang/fr.php b/module/convert/lang/fr.php index b7da15239b..a82c1a6867 100644 --- a/module/convert/lang/fr.php +++ b/module/convert/lang/fr.php @@ -3,7 +3,7 @@ * The convert module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 4893ba7692..fa4d6d7168 100644 --- a/module/convert/lang/zh-cn.php +++ b/module/convert/lang/zh-cn.php @@ -3,7 +3,7 @@ * The convert module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 0d4da243f2..ba3a4ccf7b 100644 --- a/module/convert/lang/zh-tw.php +++ b/module/convert/lang/zh-tw.php @@ -3,7 +3,7 @@ * The convert module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 9f5b684fa8..ba6deea7f0 100644 --- a/module/convert/model.php +++ b/module/convert/model.php @@ -3,7 +3,7 @@ * The model file of convert module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 a678a52b47..add4ac222b 100644 --- a/module/convert/view/checkconfig.html.php +++ b/module/convert/view/checkconfig.html.php @@ -3,7 +3,7 @@ * The html template file of check config method of convert module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package convert * @version $Id: checkconfig.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/view/convertjira.html.php b/module/convert/view/convertjira.html.php index 35d3bcd4b6..2146006502 100644 --- a/module/convert/view/convertjira.html.php +++ b/module/convert/view/convertjira.html.php @@ -3,7 +3,7 @@ * The html template file of execute method of convert module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package convert * @version $Id: execute.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 972bda8c07..2ba747ec03 100644 --- a/module/convert/view/execute.html.php +++ b/module/convert/view/execute.html.php @@ -3,7 +3,7 @@ * The html template file of execute method of convert module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package convert * @version $Id: execute.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/view/importnotice.html.php b/module/convert/view/importnotice.html.php index 094d0887c1..3f85c4157e 100644 --- a/module/convert/view/importnotice.html.php +++ b/module/convert/view/importnotice.html.php @@ -3,7 +3,7 @@ * The html template file of importNotice method of convert module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 eb2fb5860b..4dd7ac1ce6 100644 --- a/module/convert/view/index.html.php +++ b/module/convert/view/index.html.php @@ -3,7 +3,7 @@ * The html template file of index method of convert module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: index.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/view/initjirauser.html.php b/module/convert/view/initjirauser.html.php index a3164f8ee3..5472ed801b 100644 --- a/module/convert/view/initjirauser.html.php +++ b/module/convert/view/initjirauser.html.php @@ -3,7 +3,7 @@ * The init jira user view of user module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package user * @version $Id: create.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/convert/view/mapjira2zentao.html.php b/module/convert/view/mapjira2zentao.html.php index 47a9d55006..2bffb91e42 100644 --- a/module/convert/view/mapjira2zentao.html.php +++ b/module/convert/view/mapjira2zentao.html.php @@ -3,7 +3,7 @@ * The html template file of importNotice method of convert module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package convert * @version $Id: execute.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 ad0722b725..16e2317a78 100644 --- a/module/convert/view/selectsource.html.php +++ b/module/convert/view/selectsource.html.php @@ -3,7 +3,7 @@ * The html template file of select source method of convert module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 c36a2d4e64..f32d8d4ab6 100644 --- a/module/convert/view/setconfig.html.php +++ b/module/convert/view/setconfig.html.php @@ -3,7 +3,7 @@ * The html template file of setconfig method of convert module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package convert * @version $Id: setconfig.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/cron/control.php b/module/cron/control.php index 71f1a21e88..5c128aa519 100644 --- a/module/cron/control.php +++ b/module/cron/control.php @@ -3,7 +3,7 @@ * The control file of cron of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package cron * @version $Id$ diff --git a/module/cron/model.php b/module/cron/model.php index e857b4dcca..05a3ecc1e6 100644 --- a/module/cron/model.php +++ b/module/cron/model.php @@ -3,7 +3,7 @@ * The model file of cron module of ZenTaoCMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package cron * @version $Id$ diff --git a/module/cron/view/create.html.php b/module/cron/view/create.html.php index afed61d995..1468cf3a73 100644 --- a/module/cron/view/create.html.php +++ b/module/cron/view/create.html.php @@ -3,7 +3,7 @@ * The index view file of cron module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package cron * @version $Id$ diff --git a/module/cron/view/edit.html.php b/module/cron/view/edit.html.php index 24b6207096..2503315212 100644 --- a/module/cron/view/edit.html.php +++ b/module/cron/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view file of cron module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package cron * @version $Id$ diff --git a/module/cron/view/index.html.php b/module/cron/view/index.html.php index bedf432683..85a702693c 100644 --- a/module/cron/view/index.html.php +++ b/module/cron/view/index.html.php @@ -3,7 +3,7 @@ * The index view file of cron module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package cron * @version $Id$ diff --git a/module/cron/view/openprocess.html.php b/module/cron/view/openprocess.html.php index bfae38f650..dd31c43424 100644 --- a/module/cron/view/openprocess.html.php +++ b/module/cron/view/openprocess.html.php @@ -3,7 +3,7 @@ * The openprocess view file of cron module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package cron * @version $Id$ diff --git a/module/custom/control.php b/module/custom/control.php index b3c48cc761..6408bda205 100644 --- a/module/custom/control.php +++ b/module/custom/control.php @@ -3,7 +3,7 @@ * The control file of custom of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package custom * @version $Id$ diff --git a/module/custom/model.php b/module/custom/model.php index 0948715a05..ee0142728f 100644 --- a/module/custom/model.php +++ b/module/custom/model.php @@ -3,7 +3,7 @@ * The model file of custom module of ZenTaoCMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package custom * @version $Id$ diff --git a/module/custom/view/ajaxmenu.html.php b/module/custom/view/ajaxmenu.html.php index 3b596b6794..11238d2506 100644 --- a/module/custom/view/ajaxmenu.html.php +++ b/module/custom/view/ajaxmenu.html.php @@ -3,7 +3,7 @@ * The menu view of custom module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Hao Sun * @package user * @version $Id: edit.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/custom/view/browsestoryconcept.html.php b/module/custom/view/browsestoryconcept.html.php index f8c4ad0857..0e76130f29 100644 --- a/module/custom/view/browsestoryconcept.html.php +++ b/module/custom/view/browsestoryconcept.html.php @@ -3,7 +3,7 @@ * The html template file of setstoryconcept method of user module of ZenTaoPMS. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Guangming Sun * @package ZenTaoPMS * @version $Id: browsestoryconcept.html.php 4129 2020-09-01 01:58:14Z sgm $ diff --git a/module/custom/view/editstoryconcept.html.php b/module/custom/view/editstoryconcept.html.php index 8fc0d95713..f9dd8f1692 100644 --- a/module/custom/view/editstoryconcept.html.php +++ b/module/custom/view/editstoryconcept.html.php @@ -3,7 +3,7 @@ * The html template file of setstoryconcept method of user module of ZenTaoPMS. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Guangming Sun * @package ZenTaoPMS * @version $Id: setstoryconcept.html.php 4129 2020-09-01 01:58:14Z sgm $ diff --git a/module/custom/view/execution.html.php b/module/custom/view/execution.html.php index 5d655f9ec7..d0d855bd29 100644 --- a/module/custom/view/execution.html.php +++ b/module/custom/view/execution.html.php @@ -2,7 +2,7 @@ /** * The execution view file of custom module of ZenTaoPMS. * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Liyuchun * @package custom * @version $Id$ diff --git a/module/custom/view/flow.html.php b/module/custom/view/flow.html.php index 5dd266ad68..2065b7f7bf 100644 --- a/module/custom/view/flow.html.php +++ b/module/custom/view/flow.html.php @@ -3,7 +3,7 @@ * The html template file of deny method of user module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: deny.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/custom/view/kanban.html.php b/module/custom/view/kanban.html.php index 787c1b1eea..686e176bd0 100644 --- a/module/custom/view/kanban.html.php +++ b/module/custom/view/kanban.html.php @@ -2,7 +2,7 @@ /** * The kanban view file of custom module of ZenTaoPMS. * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Liyuchun * @package custom * @version $Id$ diff --git a/module/custom/view/mode.html.php b/module/custom/view/mode.html.php index d5a864adcb..fc073c1adb 100644 --- a/module/custom/view/mode.html.php +++ b/module/custom/view/mode.html.php @@ -3,7 +3,7 @@ * The set view file of custom module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Tingting Dai * @package custom * @version $Id$ diff --git a/module/custom/view/product.html.php b/module/custom/view/product.html.php index 994f4158d7..981e1bf433 100644 --- a/module/custom/view/product.html.php +++ b/module/custom/view/product.html.php @@ -2,7 +2,7 @@ /** * The product view file of custom module of ZenTaoPMS. * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Liyuchun * @package custom * @version $Id$ diff --git a/module/custom/view/required.html.php b/module/custom/view/required.html.php index c2ecd276fc..ed872b61b5 100644 --- a/module/custom/view/required.html.php +++ b/module/custom/view/required.html.php @@ -3,7 +3,7 @@ * The required view file of custom module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package custom * @version $Id$ diff --git a/module/custom/view/score.html.php b/module/custom/view/score.html.php index 1de99377c4..b6e374a85e 100644 --- a/module/custom/view/score.html.php +++ b/module/custom/view/score.html.php @@ -2,7 +2,7 @@ /** * The score view file of custom module of ZenTaoPMS. * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Memory * @package custom * @version $Id$ diff --git a/module/custom/view/set.html.php b/module/custom/view/set.html.php index b59712c35d..2f3732a4a4 100644 --- a/module/custom/view/set.html.php +++ b/module/custom/view/set.html.php @@ -3,7 +3,7 @@ * The set view file of custom module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package custom * @version $Id$ diff --git a/module/custom/view/setstoryconcept.html.php b/module/custom/view/setstoryconcept.html.php index dd083b92f9..450c583bb5 100644 --- a/module/custom/view/setstoryconcept.html.php +++ b/module/custom/view/setstoryconcept.html.php @@ -3,7 +3,7 @@ * The html template file of setstoryconcept method of user module of ZenTaoPMS. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Guangming Sun * @package ZenTaoPMS * @version $Id: setstoryconcept.html.php 4129 2020-09-01 01:58:14Z sgm $ diff --git a/module/custom/view/timezone.html.php b/module/custom/view/timezone.html.php index 3f802adc1e..4c840fc413 100644 --- a/module/custom/view/timezone.html.php +++ b/module/custom/view/timezone.html.php @@ -3,7 +3,7 @@ * The timezone view file of custom module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package custom * @version $Id$ diff --git a/module/custom/view/working.html.php b/module/custom/view/working.html.php index 52c08d0833..5be842e86d 100644 --- a/module/custom/view/working.html.php +++ b/module/custom/view/working.html.php @@ -3,7 +3,7 @@ * The set view file of custom module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Tingting Dai * @package custom * @version $Id$ diff --git a/module/dept/control.php b/module/dept/control.php index 4d1ab141ba..b317ad6395 100644 --- a/module/dept/control.php +++ b/module/dept/control.php @@ -3,7 +3,7 @@ * The control file of dept module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package dept * @version $Id: control.php 4157 2013-01-20 07:09:42Z wwccss $ diff --git a/module/dept/lang/de.php b/module/dept/lang/de.php index da757d0565..d491b26200 100644 --- a/module/dept/lang/de.php +++ b/module/dept/lang/de.php @@ -3,7 +3,7 @@ * The dept module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package dept * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/dept/lang/en.php b/module/dept/lang/en.php index fb11074f13..dcb998c2be 100644 --- a/module/dept/lang/en.php +++ b/module/dept/lang/en.php @@ -3,7 +3,7 @@ * The dept module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package dept * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/dept/lang/fr.php b/module/dept/lang/fr.php index b098cd76c8..cf16e757d6 100644 --- a/module/dept/lang/fr.php +++ b/module/dept/lang/fr.php @@ -3,7 +3,7 @@ * The dept module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 3073c19e25..957d6df880 100644 --- a/module/dept/lang/zh-cn.php +++ b/module/dept/lang/zh-cn.php @@ -3,7 +3,7 @@ * The dept module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 2ca09b5eb7..d885bd7d8f 100644 --- a/module/dept/lang/zh-tw.php +++ b/module/dept/lang/zh-tw.php @@ -3,7 +3,7 @@ * The dept module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 ae8d912786..a25e9931c8 100644 --- a/module/dept/model.php +++ b/module/dept/model.php @@ -3,7 +3,7 @@ * The model file of dept module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 8a7eaf808c..bb070b8365 100644 --- a/module/dept/view/browse.html.php +++ b/module/dept/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of dept module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 aef6145c96..e04af7df6f 100644 --- a/module/dept/view/edit.html.php +++ b/module/dept/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view of dept module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package dept * @version $Id: edit.html.php 4795 2013-06-04 05:59:58Z zhujinyonging@gmail.com $ diff --git a/module/design/control.php b/module/design/control.php index d7c7a47295..68001b7b4e 100644 --- a/module/design/control.php +++ b/module/design/control.php @@ -3,7 +3,7 @@ * The control file of design module of ZenTaoPMS. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package design * @version $Id: control.php 5107 2020-09-02 09:46:12Z tianshujie@easycorp.ltd $ diff --git a/module/design/lang/de.php b/module/design/lang/de.php index 27564bc73a..59f2f8e778 100644 --- a/module/design/lang/de.php +++ b/module/design/lang/de.php @@ -3,7 +3,7 @@ * The English file of design module. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package design * @version $Id: en.php 4729 2020-09-01 07:53:55Z tianshujie@easycorp.ltd $ diff --git a/module/design/lang/en.php b/module/design/lang/en.php index 8aba9b5c9f..a65a2942f3 100644 --- a/module/design/lang/en.php +++ b/module/design/lang/en.php @@ -3,7 +3,7 @@ * The English file of design module. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package design * @version $Id: en.php 4729 2020-09-01 07:53:55Z tianshujie@easycorp.ltd $ diff --git a/module/design/lang/fr.php b/module/design/lang/fr.php index 27564bc73a..59f2f8e778 100644 --- a/module/design/lang/fr.php +++ b/module/design/lang/fr.php @@ -3,7 +3,7 @@ * The English file of design module. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package design * @version $Id: en.php 4729 2020-09-01 07:53:55Z tianshujie@easycorp.ltd $ diff --git a/module/design/lang/vi.php b/module/design/lang/vi.php index 27564bc73a..59f2f8e778 100644 --- a/module/design/lang/vi.php +++ b/module/design/lang/vi.php @@ -3,7 +3,7 @@ * The English file of design module. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package design * @version $Id: en.php 4729 2020-09-01 07:53:55Z tianshujie@easycorp.ltd $ diff --git a/module/design/lang/zh-cn.php b/module/design/lang/zh-cn.php index f98c52a288..3c88aabcef 100644 --- a/module/design/lang/zh-cn.php +++ b/module/design/lang/zh-cn.php @@ -3,7 +3,7 @@ * The zh-cn file of design module. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package design * @version $Id: zh-cn.php 4729 2020-09-01 07:53:55Z tianshujie@easycorp.ltd $ diff --git a/module/design/lang/zh-tw.php b/module/design/lang/zh-tw.php index 4f1c051d9a..39f44025f9 100644 --- a/module/design/lang/zh-tw.php +++ b/module/design/lang/zh-tw.php @@ -3,7 +3,7 @@ * The zh-tw file of design module. * * @copyright Copyright 2009-2020 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package design * @version $Id: zh-tw.php 4729 2020-09-01 07:53:55Z tianshujie@easycorp.ltd $ diff --git a/module/design/model.php b/module/design/model.php index 4a83455ffb..883e2e75af 100644 --- a/module/design/model.php +++ b/module/design/model.php @@ -3,7 +3,7 @@ * The model file of design module of ZenTaoPMS. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package design * @version $Id: model.php 5107 2020-09-02 09:46:12Z tianshujie@easycorp.ltd $ diff --git a/module/design/view/assignto.html.php b/module/design/view/assignto.html.php index aa68967212..7e4b67a7e1 100644 --- a/module/design/view/assignto.html.php +++ b/module/design/view/assignto.html.php @@ -3,7 +3,7 @@ * The assignTo of design module of ZenTaoPMS. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package design * @version $Id: assignto.html.php 4903 2020-09-02 09:32:59Z tianshujie@easycorp.ltd $ diff --git a/module/design/view/batchcreate.html.php b/module/design/view/batchcreate.html.php index 73a1245522..fb95d4f73a 100644 --- a/module/design/view/batchcreate.html.php +++ b/module/design/view/batchcreate.html.php @@ -3,7 +3,7 @@ * The batchCreate view of design module of ZenTaoPMS. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package design * @version $Id: batchcreate.html.php 4903 2020-09-02 09:32:59Z tianshujie@easycorp.ltd $ diff --git a/module/design/view/browse.html.php b/module/design/view/browse.html.php index 7ebc91caec..7d36ba2577 100644 --- a/module/design/view/browse.html.php +++ b/module/design/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of design module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package design * @version $Id: browse.html.php 5102 2020-09-03 10:59:54Z tianshujie@easycorp.ltd $ diff --git a/module/design/view/create.html.php b/module/design/view/create.html.php index 4a0be47622..73ca29d0e7 100644 --- a/module/design/view/create.html.php +++ b/module/design/view/create.html.php @@ -3,7 +3,7 @@ * The create view of design module of ZenTaoPMS. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package design * @version $Id: create.html.php 4903 2020-09-02 09:32:59Z tianshujie@easycorp.ltd $ diff --git a/module/design/view/edit.html.php b/module/design/view/edit.html.php index 78a8c1367b..d9ef43d25c 100644 --- a/module/design/view/edit.html.php +++ b/module/design/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view of design module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package design * @version $Id: edit.html.php 4903 2020-09-02 09:32:59Z tianshujie@easycorp.ltd $ diff --git a/module/design/view/linkcommit.html.php b/module/design/view/linkcommit.html.php index d82820ee49..b41bc697f8 100644 --- a/module/design/view/linkcommit.html.php +++ b/module/design/view/linkcommit.html.php @@ -3,7 +3,7 @@ * The linkCommit view of design module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package design * @version $Id: linkcommit.html.php 4903 2020-09-02 09:32:59Z tianshujie@easycorp.ltd $ diff --git a/module/design/view/view.html.php b/module/design/view/view.html.php index 1f8ded1892..cd1df33c21 100644 --- a/module/design/view/view.html.php +++ b/module/design/view/view.html.php @@ -3,7 +3,7 @@ * The view of design module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package design * @version $Id: view.html.php 4903 2020-09-02 09:32:59Z tianshujie@easycorp.ltd $ diff --git a/module/design/view/viewcommit.html.php b/module/design/view/viewcommit.html.php index 052201b658..f56fceca8e 100644 --- a/module/design/view/viewcommit.html.php +++ b/module/design/view/viewcommit.html.php @@ -3,7 +3,7 @@ * The viewCommit view of design module of ZenTaoPMS. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package design * @version $Id: viewcommit.html.php 4903 2020-09-02 09:32:59Z tianshujie@easycorp.ltd $ diff --git a/module/dev/view/editor.html.php b/module/dev/view/editor.html.php index f3ddc4380e..267b44f946 100644 --- a/module/dev/view/editor.html.php +++ b/module/dev/view/editor.html.php @@ -3,7 +3,7 @@ * The editor view file of dev module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package dev * @version $Id$ diff --git a/module/dev/view/translate.html.php b/module/dev/view/translate.html.php index 08cb55fd89..218f72d663 100644 --- a/module/dev/view/translate.html.php +++ b/module/dev/view/translate.html.php @@ -3,7 +3,7 @@ * The translate view file of dev module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package dev * @version $Id$ diff --git a/module/doc/control.php b/module/doc/control.php index 80c7c0b55a..7beb174523 100644 --- a/module/doc/control.php +++ b/module/doc/control.php @@ -3,7 +3,7 @@ * The control file of doc module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package doc * @version $Id: control.php 933 2010-07-06 06:53:40Z wwccss $ diff --git a/module/doc/lang/de.php b/module/doc/lang/de.php index 92dca380b6..22b87d8319 100644 --- a/module/doc/lang/de.php +++ b/module/doc/lang/de.php @@ -3,7 +3,7 @@ * The doc module english file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package doc * @version $Id: en.php 824 2010-05-02 15:32:06Z wwccss $ diff --git a/module/doc/lang/en.php b/module/doc/lang/en.php index ac26a6ddbb..6c35ee430f 100644 --- a/module/doc/lang/en.php +++ b/module/doc/lang/en.php @@ -3,7 +3,7 @@ * The doc module english file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package doc * @version $Id: en.php 824 2010-05-02 15:32:06Z wwccss $ diff --git a/module/doc/lang/fr.php b/module/doc/lang/fr.php index 4e30f2e26b..94df7cd163 100644 --- a/module/doc/lang/fr.php +++ b/module/doc/lang/fr.php @@ -3,7 +3,7 @@ * The doc module english file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 1fd47b0c4d..5168e3a7e0 100644 --- a/module/doc/lang/zh-cn.php +++ b/module/doc/lang/zh-cn.php @@ -3,7 +3,7 @@ * The doc module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 2e9ea61fdc..66cd39fd15 100644 --- a/module/doc/lang/zh-tw.php +++ b/module/doc/lang/zh-tw.php @@ -3,7 +3,7 @@ * The doc module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 3d232a5524..03894601b2 100644 --- a/module/doc/model.php +++ b/module/doc/model.php @@ -3,7 +3,7 @@ * The model file of doc module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package doc * @version $Id: model.php 881 2010-06-22 06:50:32Z chencongzhi520 $ diff --git a/module/doc/view/alllibs.html.php b/module/doc/view/alllibs.html.php index 000ce20421..0a0bc18995 100644 --- a/module/doc/view/alllibs.html.php +++ b/module/doc/view/alllibs.html.php @@ -3,7 +3,7 @@ * The allLibs view file of doc module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package doc * @version $Id$ diff --git a/module/doc/view/browse.html.php b/module/doc/view/browse.html.php index 5e242d730b..0ff02125cb 100644 --- a/module/doc/view/browse.html.php +++ b/module/doc/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of doc module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 55190bbf02..920acc1c8e 100644 --- a/module/doc/view/create.html.php +++ b/module/doc/view/create.html.php @@ -3,7 +3,7 @@ * The create view of doc module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 b0a84345ee..ca1cc0d3be 100644 --- a/module/doc/view/createlib.html.php +++ b/module/doc/view/createlib.html.php @@ -3,7 +3,7 @@ * The createlib view of doc module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 2f2f1fa464..988f681b75 100644 --- a/module/doc/view/edit.html.php +++ b/module/doc/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view of doc module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 b7fbea8ac6..52ef90a3f2 100644 --- a/module/doc/view/editlib.html.php +++ b/module/doc/view/editlib.html.php @@ -3,7 +3,7 @@ * The editlib file of doc module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/index.html.php b/module/doc/view/index.html.php index f3861e2316..3905110240 100644 --- a/module/doc/view/index.html.php +++ b/module/doc/view/index.html.php @@ -3,7 +3,7 @@ * The index view file of doc module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package doc * @version $Id$ diff --git a/module/doc/view/objectlibs.html.php b/module/doc/view/objectlibs.html.php index 9798313fec..14c08100d1 100644 --- a/module/doc/view/objectlibs.html.php +++ b/module/doc/view/objectlibs.html.php @@ -3,7 +3,7 @@ * The objectLibs view file of doc module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package doc * @version $Id$ diff --git a/module/doc/view/selectlibtype.html.php b/module/doc/view/selectlibtype.html.php index 2659207437..d6f9d31277 100644 --- a/module/doc/view/selectlibtype.html.php +++ b/module/doc/view/selectlibtype.html.php @@ -3,7 +3,7 @@ * The select lib type view file of doc module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.zentao.net) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yuchun Li * @package doc * @version $Id: selectlibtype.html.php 958 2021-09-3 17:09:42Z liyuchun $ diff --git a/module/doc/view/sendmail.html.php b/module/doc/view/sendmail.html.php index df974bebde..eddb32436f 100644 --- a/module/doc/view/sendmail.html.php +++ b/module/doc/view/sendmail.html.php @@ -3,7 +3,7 @@ * The sendmail file of doc module of ZenTaoPMS. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package doc * @version $Id: sendmail.html.php 3717 2020-11-03 15:35:07Z tianshujie@easycorp.ltd $ diff --git a/module/doc/view/showfiles.html.php b/module/doc/view/showfiles.html.php index 8c229e8471..40ed7c6bd0 100644 --- a/module/doc/view/showfiles.html.php +++ b/module/doc/view/showfiles.html.php @@ -3,7 +3,7 @@ * The showFiles view file of doc module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package doc * @version $Id$ diff --git a/module/doc/view/tablecontents.html.php b/module/doc/view/tablecontents.html.php index a153373de7..22bb337328 100644 --- a/module/doc/view/tablecontents.html.php +++ b/module/doc/view/tablecontents.html.php @@ -3,7 +3,7 @@ * The table contents view file of doc module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Fangzhou Hu * @package doc * @version $Id$ diff --git a/module/doc/view/view.html.php b/module/doc/view/view.html.php index 6d511bd910..51de0a8dba 100644 --- a/module/doc/view/view.html.php +++ b/module/doc/view/view.html.php @@ -3,7 +3,7 @@ * The view of doc module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Jia Fu * @package doc * @version $Id: view.html.php 975 2010-07-29 03:30:25Z jajacn@126.com $ diff --git a/module/entry/control.php b/module/entry/control.php index a5aa18d2ef..8a8866ec99 100644 --- a/module/entry/control.php +++ b/module/entry/control.php @@ -3,7 +3,7 @@ * The control file of entry module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package entry * @version $Id$ diff --git a/module/entry/model.php b/module/entry/model.php index 92e2cd3107..ede9fd1cb9 100644 --- a/module/entry/model.php +++ b/module/entry/model.php @@ -3,7 +3,7 @@ * The model file of entry module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package entry * @version $Id$ diff --git a/module/entry/view/browse.html.php b/module/entry/view/browse.html.php index 3dc711095a..253d44329b 100644 --- a/module/entry/view/browse.html.php +++ b/module/entry/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of entry module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package entry * @version $Id$ diff --git a/module/entry/view/create.html.php b/module/entry/view/create.html.php index fcf8960f12..1889c2ae0e 100644 --- a/module/entry/view/create.html.php +++ b/module/entry/view/create.html.php @@ -3,7 +3,7 @@ * The create view file of entry module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package entry * @version $Id$ diff --git a/module/entry/view/edit.html.php b/module/entry/view/edit.html.php index ea51acba64..18bd0c4e48 100644 --- a/module/entry/view/edit.html.php +++ b/module/entry/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view file of entry module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package entry * @version $Id$ diff --git a/module/entry/view/header.html.php b/module/entry/view/header.html.php index ba427ff7ec..546ccbcf8b 100644 --- a/module/entry/view/header.html.php +++ b/module/entry/view/header.html.php @@ -3,7 +3,7 @@ * The header view file of entry module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package entry * @version $Id$ diff --git a/module/entry/view/log.html.php b/module/entry/view/log.html.php index 2e54673f9c..746219d9af 100644 --- a/module/entry/view/log.html.php +++ b/module/entry/view/log.html.php @@ -3,7 +3,7 @@ * The log view file of entry module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package entry * @version $Id$ diff --git a/module/execution/lang/de.php b/module/execution/lang/de.php index 2d99e9baee..af7b7a1916 100644 --- a/module/execution/lang/de.php +++ b/module/execution/lang/de.php @@ -3,7 +3,7 @@ * The project module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package project * @version $Id: en.php 5094 2013-07-10 08:46:15Z chencongzhi520@gmail.com $ diff --git a/module/execution/lang/en.php b/module/execution/lang/en.php index e7f31a3056..2b60d8bcc5 100644 --- a/module/execution/lang/en.php +++ b/module/execution/lang/en.php @@ -3,7 +3,7 @@ * The execution module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version $Id: en.php 5094 2013-07-10 08:46:15Z chencongzhi520@gmail.com $ diff --git a/module/execution/lang/fr.php b/module/execution/lang/fr.php index 4c980ef16e..abab610727 100644 --- a/module/execution/lang/fr.php +++ b/module/execution/lang/fr.php @@ -3,7 +3,7 @@ * The project module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package project * @version $Id: en.php 5094 2013-07-10 08:46:15Z chencongzhi520@gmail.com $ diff --git a/module/execution/lang/zh-cn.php b/module/execution/lang/zh-cn.php index 7722eb13d6..05de487dd9 100644 --- a/module/execution/lang/zh-cn.php +++ b/module/execution/lang/zh-cn.php @@ -3,7 +3,7 @@ * The execution module zh-cn file of ZenTaoMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version $Id: zh-cn.php 5094 2013-07-10 08:46:15Z chencongzhi520@gmail.com $ diff --git a/module/execution/lang/zh-tw.php b/module/execution/lang/zh-tw.php index 39047bd819..60a2825b04 100644 --- a/module/execution/lang/zh-tw.php +++ b/module/execution/lang/zh-tw.php @@ -3,7 +3,7 @@ * The execution module zh-tw file of ZenTaoMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version $Id: zh-tw.php 5094 2013-07-10 08:46:15Z chencongzhi520@gmail.com $ diff --git a/module/execution/model.php b/module/execution/model.php index 1cc5b1f52d..1e9a657952 100644 --- a/module/execution/model.php +++ b/module/execution/model.php @@ -3,7 +3,7 @@ * The model file of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version $Id: model.php 5118 2013-07-12 07:41:41Z chencongzhi520@gmail.com $ diff --git a/module/execution/view/activate.html.php b/module/execution/view/activate.html.php index 7cb5cd726b..c393a22fef 100644 --- a/module/execution/view/activate.html.php +++ b/module/execution/view/activate.html.php @@ -3,7 +3,7 @@ * The suspend file of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version $Id: suspend.html.php 935 2013-01-16 07:49:24Z wwccss@gmail.com $ diff --git a/module/execution/view/ajaxkanbansetting.html.php b/module/execution/view/ajaxkanbansetting.html.php index 973ddb0ece..f5ebc9761a 100644 --- a/module/execution/view/ajaxkanbansetting.html.php +++ b/module/execution/view/ajaxkanbansetting.html.php @@ -3,7 +3,7 @@ * The kanban setting view file of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package execution * @version $Id$ diff --git a/module/execution/view/all.html.php b/module/execution/view/all.html.php index bfaa86024e..9527047390 100644 --- a/module/execution/view/all.html.php +++ b/module/execution/view/all.html.php @@ -3,7 +3,7 @@ * The html template file of all method of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package execution * @version $Id: index.html.php 5094 2013-07-10 08:46:15Z chencongzhi520@gmail.com $ diff --git a/module/execution/view/batchedit.html.php b/module/execution/view/batchedit.html.php index 2dbc771ad0..ff8ae7e6de 100755 --- a/module/execution/view/batchedit.html.php +++ b/module/execution/view/batchedit.html.php @@ -3,7 +3,7 @@ * The html template file of index method of index module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: index.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/execution/view/bug.html.php b/module/execution/view/bug.html.php index a3831983d7..51b1ff1411 100644 --- a/module/execution/view/bug.html.php +++ b/module/execution/view/bug.html.php @@ -3,7 +3,7 @@ * The bug view file of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version $Id: bug.html.php 4894 2013-06-25 01:28:39Z wyd621@gmail.com $ diff --git a/module/execution/view/build.html.php b/module/execution/view/build.html.php index b74accd8c1..7d0852e272 100644 --- a/module/execution/view/build.html.php +++ b/module/execution/view/build.html.php @@ -3,7 +3,7 @@ * The build view file of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version $Id: build.html.php 4262 2013-01-24 08:48:56Z chencongzhi520@gmail.com $ diff --git a/module/execution/view/burn.html.php b/module/execution/view/burn.html.php index e059b7ce32..b3a070293d 100644 --- a/module/execution/view/burn.html.php +++ b/module/execution/view/burn.html.php @@ -3,7 +3,7 @@ * The burn view file of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version $Id: burn.html.php 4164 2013-01-20 08:27:55Z wwccss $ diff --git a/module/execution/view/close.html.php b/module/execution/view/close.html.php index 11ebcd1ed4..656df44408 100644 --- a/module/execution/view/close.html.php +++ b/module/execution/view/close.html.php @@ -3,7 +3,7 @@ * The suspend file of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version $Id: suspend.html.php 935 2013-01-16 07:49:24Z wwccss@gmail.com $ diff --git a/module/execution/view/computeburn.html.php b/module/execution/view/computeburn.html.php index ea9ea7d339..648efa27f1 100644 --- a/module/execution/view/computeburn.html.php +++ b/module/execution/view/computeburn.html.php @@ -3,7 +3,7 @@ * The computeburn view file of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Fu Jia * @package execution * @version $Id: computeburn.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/execution/view/create.html.php b/module/execution/view/create.html.php index 1be01f0fd3..fed828e89b 100644 --- a/module/execution/view/create.html.php +++ b/module/execution/view/create.html.php @@ -3,7 +3,7 @@ * The create view of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version $Id: create.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/execution/view/doc.html.php b/module/execution/view/doc.html.php index b33414af04..cd72d9d63a 100644 --- a/module/execution/view/doc.html.php +++ b/module/execution/view/doc.html.php @@ -3,7 +3,7 @@ * The doc view file of product module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package product * @version $Id$ diff --git a/module/execution/view/dynamic.html.php b/module/execution/view/dynamic.html.php index b7f7185db3..726119788e 100755 --- a/module/execution/view/dynamic.html.php +++ b/module/execution/view/dynamic.html.php @@ -3,7 +3,7 @@ * The action->dynamic view file of dashboard module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package dashboard * @version $Id: action->dynamic.html.php 1477 2011-03-01 15:25:50Z wwccss $ diff --git a/module/execution/view/edit.html.php b/module/execution/view/edit.html.php index 0e7c0ffa9c..cdf0c5b3c5 100644 --- a/module/execution/view/edit.html.php +++ b/module/execution/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version $Id: edit.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/execution/view/export.html.php b/module/execution/view/export.html.php index 00ddbfa15f..17c70d5f72 100644 --- a/module/execution/view/export.html.php +++ b/module/execution/view/export.html.php @@ -3,7 +3,7 @@ * The export view file of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version $Id$ diff --git a/module/execution/view/fixfirst.html.php b/module/execution/view/fixfirst.html.php index 922daff6e4..94c1e84580 100644 --- a/module/execution/view/fixfirst.html.php +++ b/module/execution/view/fixfirst.html.php @@ -3,7 +3,7 @@ * The fixFirst view file of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package execution * @version $Id$ diff --git a/module/execution/view/grouptask.html.php b/module/execution/view/grouptask.html.php index 2c8696c569..1f3b0e9c65 100644 --- a/module/execution/view/grouptask.html.php +++ b/module/execution/view/grouptask.html.php @@ -3,7 +3,7 @@ * The task group view file of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version $Id: grouptask.html.php 4143 2013-01-18 07:01:06Z wyd621@gmail.com $ diff --git a/module/execution/view/importbug.html.php b/module/execution/view/importbug.html.php index 250c0fa67d..c614a421af 100755 --- a/module/execution/view/importbug.html.php +++ b/module/execution/view/importbug.html.php @@ -3,7 +3,7 @@ * The import view file of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yangyang Shi * @package task * @version $Id$ diff --git a/module/execution/view/importtask.html.php b/module/execution/view/importtask.html.php index e03a6f48d7..64d0e78230 100644 --- a/module/execution/view/importtask.html.php +++ b/module/execution/view/importtask.html.php @@ -3,7 +3,7 @@ * The importtask view file of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version $Id: importtask.html.php 4669 2013-04-23 02:28:08Z chencongzhi520@gmail.com $ diff --git a/module/execution/view/index.html.php b/module/execution/view/index.html.php index 08567d241d..0745d09e89 100644 --- a/module/execution/view/index.html.php +++ b/module/execution/view/index.html.php @@ -3,7 +3,7 @@ * The html template file of index method of index module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: index.html.php 5094 2013-07-10 08:46:15Z chencongzhi520@gmail.com $ diff --git a/module/execution/view/kanban.html.php b/module/execution/view/kanban.html.php index 81d1ddb848..ebc5d9c238 100644 --- a/module/execution/view/kanban.html.php +++ b/module/execution/view/kanban.html.php @@ -3,7 +3,7 @@ * The kanban file of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Mengyi Liu * @package execution * @version $Id: kanban.html.php 935 2022-01-11 16:49:24Z $ diff --git a/module/execution/view/linkstory.html.php b/module/execution/view/linkstory.html.php index cc3a436cda..284a5d380d 100644 --- a/module/execution/view/linkstory.html.php +++ b/module/execution/view/linkstory.html.php @@ -3,7 +3,7 @@ * The link story view of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version $Id: linkstory.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/execution/view/managemembers.html.php b/module/execution/view/managemembers.html.php index a733ea97ca..a2e8243761 100644 --- a/module/execution/view/managemembers.html.php +++ b/module/execution/view/managemembers.html.php @@ -3,7 +3,7 @@ * The link user view of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version $Id: managemembers.html.php 4662 2013-04-18 02:34:33Z chencongzhi520@gmail.com $ diff --git a/module/execution/view/manageproducts.html.php b/module/execution/view/manageproducts.html.php index fb462be2a4..2b91869c02 100644 --- a/module/execution/view/manageproducts.html.php +++ b/module/execution/view/manageproducts.html.php @@ -3,7 +3,7 @@ * The manage product view of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version $Id: manageproducts.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/execution/view/putoff.html.php b/module/execution/view/putoff.html.php index a6a21cb80e..35153b958c 100644 --- a/module/execution/view/putoff.html.php +++ b/module/execution/view/putoff.html.php @@ -3,7 +3,7 @@ * The delay file of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version $Id: delay.html.php 935 2013-01-16 07:49:24Z wwccss@gmail.com $ diff --git a/module/execution/view/start.html.php b/module/execution/view/start.html.php index 8a67e8954b..c3299692e1 100644 --- a/module/execution/view/start.html.php +++ b/module/execution/view/start.html.php @@ -3,7 +3,7 @@ * The start file of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version $Id: start.html.php 935 2013-01-16 07:49:24Z wwccss@gmail.com $ diff --git a/module/execution/view/story.html.php b/module/execution/view/story.html.php index 8f92741b8c..1648f2668d 100644 --- a/module/execution/view/story.html.php +++ b/module/execution/view/story.html.php @@ -3,7 +3,7 @@ * The story view file of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version $Id: story.html.php 5117 2013-07-12 07:03:14Z chencongzhi520@gmail.com $ diff --git a/module/execution/view/storyestimate.html.php b/module/execution/view/storyestimate.html.php index 1ca8f19b73..f9816af146 100644 --- a/module/execution/view/storyestimate.html.php +++ b/module/execution/view/storyestimate.html.php @@ -3,7 +3,7 @@ * The create storyestimate view of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Liyuchun * @package execution * @version $Id diff --git a/module/execution/view/suspend.html.php b/module/execution/view/suspend.html.php index b061a5e683..436266f76f 100644 --- a/module/execution/view/suspend.html.php +++ b/module/execution/view/suspend.html.php @@ -3,7 +3,7 @@ * The suspend file of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version $Id: suspend.html.php 935 2013-01-16 07:49:24Z wwccss@gmail.com $ diff --git a/module/execution/view/task.html.php b/module/execution/view/task.html.php index 7aa13a09ec..3e8bfdad69 100644 --- a/module/execution/view/task.html.php +++ b/module/execution/view/task.html.php @@ -3,7 +3,7 @@ * The task view file of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version $Id: task.html.php 4894 2013-06-25 01:28:39Z wyd621@gmail.com $ diff --git a/module/execution/view/team.html.php b/module/execution/view/team.html.php index fa07c65c84..f59e38737d 100644 --- a/module/execution/view/team.html.php +++ b/module/execution/view/team.html.php @@ -3,7 +3,7 @@ * The team view file of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version $Id: team.html.php 4143 2013-01-18 07:01:06Z wyd621@gmail.com $ diff --git a/module/execution/view/testtask.html.php b/module/execution/view/testtask.html.php index 8b42199e3d..446952589e 100644 --- a/module/execution/view/testtask.html.php +++ b/module/execution/view/testtask.html.php @@ -3,7 +3,7 @@ * The browse view file of testtask module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package testtask * @version $Id: browse.html.php 1914 2011-06-24 10:11:25Z yidong@cnezsoft.com $ diff --git a/module/execution/view/tree.html.php b/module/execution/view/tree.html.php index 95226cf5c1..6daf00bab6 100644 --- a/module/execution/view/tree.html.php +++ b/module/execution/view/tree.html.php @@ -3,7 +3,7 @@ * The execution tree view file of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Hao Sun * @package execution * @version $Id: tree.html.php 4894 2013-06-25 01:28:39Z wyd621@gmail.com $ diff --git a/module/execution/view/view.html.php b/module/execution/view/view.html.php index 87e758c145..b485cf9e1a 100644 --- a/module/execution/view/view.html.php +++ b/module/execution/view/view.html.php @@ -3,7 +3,7 @@ * The view method view file of execution module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package execution * @version $Id: view.html.php 4594 2013-03-13 06:16:02Z wyd621@gmail.com $ diff --git a/module/extension/control.php b/module/extension/control.php index 8057c874f8..50a29213c1 100644 --- a/module/extension/control.php +++ b/module/extension/control.php @@ -3,7 +3,7 @@ * The control file of extension module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/lang/de.php b/module/extension/lang/de.php index d19f603477..f3cf411b88 100644 --- a/module/extension/lang/de.php +++ b/module/extension/lang/de.php @@ -3,7 +3,7 @@ * The extension module en file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/lang/en.php b/module/extension/lang/en.php index b8e7b030c4..cab7c355d6 100644 --- a/module/extension/lang/en.php +++ b/module/extension/lang/en.php @@ -3,7 +3,7 @@ * The extension module en file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/lang/fr.php b/module/extension/lang/fr.php index b383567c32..e21b4a6084 100644 --- a/module/extension/lang/fr.php +++ b/module/extension/lang/fr.php @@ -3,7 +3,7 @@ * The extension module en file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/lang/zh-cn.php b/module/extension/lang/zh-cn.php index 09fd3255db..2a59aee166 100644 --- a/module/extension/lang/zh-cn.php +++ b/module/extension/lang/zh-cn.php @@ -3,7 +3,7 @@ * The extension module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/lang/zh-tw.php b/module/extension/lang/zh-tw.php index cd15001edf..551690cb27 100644 --- a/module/extension/lang/zh-tw.php +++ b/module/extension/lang/zh-tw.php @@ -3,7 +3,7 @@ * The extension module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/model.php b/module/extension/model.php index 2a17a5e7ae..89b67c6a89 100644 --- a/module/extension/model.php +++ b/module/extension/model.php @@ -3,7 +3,7 @@ * The model file of extension module of ZenTaoCMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/activate.html.php b/module/extension/view/activate.html.php index b2e5962654..be2785f6cd 100644 --- a/module/extension/view/activate.html.php +++ b/module/extension/view/activate.html.php @@ -3,7 +3,7 @@ * The deactivate view file of extension module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/browse.html.php b/module/extension/view/browse.html.php index 7e052847de..d9247e1694 100644 --- a/module/extension/view/browse.html.php +++ b/module/extension/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of extension module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/checkscore.html.php b/module/extension/view/checkscore.html.php index 8dd0446e6c..2afe287f69 100644 --- a/module/extension/view/checkscore.html.php +++ b/module/extension/view/checkscore.html.php @@ -3,7 +3,7 @@ * The install view file of extension module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/deactivate.html.php b/module/extension/view/deactivate.html.php index 2932bc045e..dc6902979c 100644 --- a/module/extension/view/deactivate.html.php +++ b/module/extension/view/deactivate.html.php @@ -3,7 +3,7 @@ * The deactivate view file of extension module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/erase.html.php b/module/extension/view/erase.html.php index 0512b98a01..debe46c95a 100644 --- a/module/extension/view/erase.html.php +++ b/module/extension/view/erase.html.php @@ -3,7 +3,7 @@ * The erase view file of extension module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/install.html.php b/module/extension/view/install.html.php index cfb7e75280..9564e0575b 100644 --- a/module/extension/view/install.html.php +++ b/module/extension/view/install.html.php @@ -3,7 +3,7 @@ * The install view file of extension module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/obtain.html.php b/module/extension/view/obtain.html.php index 740b08e67e..62bb31ac34 100644 --- a/module/extension/view/obtain.html.php +++ b/module/extension/view/obtain.html.php @@ -3,7 +3,7 @@ * The obtain view file of extension module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/safe.html.php b/module/extension/view/safe.html.php index 2bdde08739..3792558c90 100644 --- a/module/extension/view/safe.html.php +++ b/module/extension/view/safe.html.php @@ -3,7 +3,7 @@ * The browse view file of extension module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/structure.html.php b/module/extension/view/structure.html.php index f48e56e7b0..a93ff27c94 100644 --- a/module/extension/view/structure.html.php +++ b/module/extension/view/structure.html.php @@ -3,7 +3,7 @@ * The structure view file of extension module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yangyang Shi * @package extension * @version $Id$ diff --git a/module/extension/view/uninstall.html.php b/module/extension/view/uninstall.html.php index 200a6c990d..0e6517a29b 100644 --- a/module/extension/view/uninstall.html.php +++ b/module/extension/view/uninstall.html.php @@ -3,7 +3,7 @@ * The uninstall view file of extension module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/upload.html.php b/module/extension/view/upload.html.php index 359a0305f7..6ef7f302af 100644 --- a/module/extension/view/upload.html.php +++ b/module/extension/view/upload.html.php @@ -3,7 +3,7 @@ * The upload view file of extension module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/waring.htm.php b/module/extension/view/waring.htm.php index a112eac3bd..37be01e098 100644 --- a/module/extension/view/waring.htm.php +++ b/module/extension/view/waring.htm.php @@ -3,7 +3,7 @@ * The install view file of extension module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/file/control.php b/module/file/control.php index ab839b6c81..84d94381a5 100644 --- a/module/file/control.php +++ b/module/file/control.php @@ -3,7 +3,7 @@ * The control file of file module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package file * @version $Id: control.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/file/lang/de.php b/module/file/lang/de.php index 7d9f60e419..c626585101 100644 --- a/module/file/lang/de.php +++ b/module/file/lang/de.php @@ -3,7 +3,7 @@ * The file module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package file * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/file/lang/en.php b/module/file/lang/en.php index d48da55706..3b9edcb037 100644 --- a/module/file/lang/en.php +++ b/module/file/lang/en.php @@ -3,7 +3,7 @@ * The file module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package file * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/file/lang/fr.php b/module/file/lang/fr.php index fe42f40460..b5f13d4585 100644 --- a/module/file/lang/fr.php +++ b/module/file/lang/fr.php @@ -3,7 +3,7 @@ * The file module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 31112ac912..390413b4c3 100644 --- a/module/file/lang/zh-cn.php +++ b/module/file/lang/zh-cn.php @@ -3,7 +3,7 @@ * The file module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 52768a7be0..c62d24d5a4 100644 --- a/module/file/lang/zh-tw.php +++ b/module/file/lang/zh-tw.php @@ -3,7 +3,7 @@ * The file module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 4ab9025187..f237503b87 100644 --- a/module/file/model.php +++ b/module/file/model.php @@ -3,7 +3,7 @@ * The model file of file module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 5154440288..616d193217 100644 --- a/module/file/view/edit.html.php +++ b/module/file/view/edit.html.php @@ -3,7 +3,7 @@ * The export view file of file module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yangyang Shi * @package file * @version $Id$ diff --git a/module/file/view/export.html.php b/module/file/view/export.html.php index fcf3cc95ac..56bb761eab 100644 --- a/module/file/view/export.html.php +++ b/module/file/view/export.html.php @@ -3,7 +3,7 @@ * The export view file of file module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/file/view/export2csv.html.php b/module/file/view/export2csv.html.php index 275b7aa63d..c528c9db11 100644 --- a/module/file/view/export2csv.html.php +++ b/module/file/view/export2csv.html.php @@ -3,7 +3,7 @@ * The export2csv view file of file module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/file/view/export2html.html.php b/module/file/view/export2html.html.php index 5a444ca870..c569c5dcef 100644 --- a/module/file/view/export2html.html.php +++ b/module/file/view/export2html.html.php @@ -3,7 +3,7 @@ * The export2html view file of file module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/file/view/export2xml.html.php b/module/file/view/export2xml.html.php index 66a50b9632..5d151d77e2 100644 --- a/module/file/view/export2xml.html.php +++ b/module/file/view/export2xml.html.php @@ -3,7 +3,7 @@ * The export2xml view file of file module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/file/view/uploadimages.html.php b/module/file/view/uploadimages.html.php index 38a56a8572..ca6a58ea69 100644 --- a/module/file/view/uploadimages.html.php +++ b/module/file/view/uploadimages.html.php @@ -3,7 +3,7 @@ * The uploadImages view file of file module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package file * @version $Id$ diff --git a/module/git/control.php b/module/git/control.php index efb83ec105..5f88b07fc2 100644 --- a/module/git/control.php +++ b/module/git/control.php @@ -3,7 +3,7 @@ * The control file of git currentModule of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package git * @version $Id$ diff --git a/module/git/lang/de.php b/module/git/lang/de.php index 5d40eda782..4b89a02315 100644 --- a/module/git/lang/de.php +++ b/module/git/lang/de.php @@ -3,7 +3,7 @@ * The git module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package git * @version $Id$ diff --git a/module/git/lang/en.php b/module/git/lang/en.php index 26455d9468..40661f5b63 100644 --- a/module/git/lang/en.php +++ b/module/git/lang/en.php @@ -3,7 +3,7 @@ * The git module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package git * @version $Id$ diff --git a/module/git/lang/fr.php b/module/git/lang/fr.php index 80878d1075..6ed831edb5 100644 --- a/module/git/lang/fr.php +++ b/module/git/lang/fr.php @@ -3,7 +3,7 @@ * The git module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package git * @version $Id$ diff --git a/module/git/lang/zh-cn.php b/module/git/lang/zh-cn.php index e5181335cc..0dbbc64d88 100644 --- a/module/git/lang/zh-cn.php +++ b/module/git/lang/zh-cn.php @@ -3,7 +3,7 @@ * The git module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package git * @version $Id$ diff --git a/module/git/lang/zh-tw.php b/module/git/lang/zh-tw.php index 9e52166dcc..c61b2ed4f8 100644 --- a/module/git/lang/zh-tw.php +++ b/module/git/lang/zh-tw.php @@ -3,7 +3,7 @@ * The git module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package git * @version $Id$ diff --git a/module/git/model.php b/module/git/model.php index b5247a16f9..807284331b 100644 --- a/module/git/model.php +++ b/module/git/model.php @@ -3,7 +3,7 @@ * The model file of git module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package git * @version $Id$ diff --git a/module/git/view/cat.html.php b/module/git/view/cat.html.php index 79658033b7..55a1c48463 100644 --- a/module/git/view/cat.html.php +++ b/module/git/view/cat.html.php @@ -3,7 +3,7 @@ * The cat view file of git module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/git/view/diff.html.php b/module/git/view/diff.html.php index bae715eb15..d9bfcfbd6b 100644 --- a/module/git/view/diff.html.php +++ b/module/git/view/diff.html.php @@ -3,7 +3,7 @@ * The diff view file of git module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/gitlab/control.php b/module/gitlab/control.php index e3faaf7ada..2ffb00ddf5 100644 --- a/module/gitlab/control.php +++ b/module/gitlab/control.php @@ -3,7 +3,7 @@ * The control file of gitlab module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chenqi * @package product * @version $Id: ${FILE_NAME} 5144 2020/1/8 8:10 下午 chenqi@cnezsoft.com $ diff --git a/module/gitlab/model.php b/module/gitlab/model.php index 5701df2163..9caf709078 100644 --- a/module/gitlab/model.php +++ b/module/gitlab/model.php @@ -3,7 +3,7 @@ * The model file of gitlab module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chenqi * @package product * @version $Id: $ diff --git a/module/gitlab/view/binduser.html.php b/module/gitlab/view/binduser.html.php index 2508ffa7c7..b7921b6104 100644 --- a/module/gitlab/view/binduser.html.php +++ b/module/gitlab/view/binduser.html.php @@ -3,7 +3,7 @@ * The batch create view of story module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yangyang Shi * @package story * @version $Id$ diff --git a/module/gitlab/view/browse.html.php b/module/gitlab/view/browse.html.php index 72e987e4ad..dad0136744 100644 --- a/module/gitlab/view/browse.html.php +++ b/module/gitlab/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of gitlab module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/browsebranch.html.php b/module/gitlab/view/browsebranch.html.php index dd6448fb4f..f92dbeda91 100644 --- a/module/gitlab/view/browsebranch.html.php +++ b/module/gitlab/view/browsebranch.html.php @@ -3,7 +3,7 @@ * The browse view file of gitlab module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Zeng * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/browsebranchpriv.html.php b/module/gitlab/view/browsebranchpriv.html.php index ff40ef0c0f..5914946d3b 100644 --- a/module/gitlab/view/browsebranchpriv.html.php +++ b/module/gitlab/view/browsebranchpriv.html.php @@ -3,7 +3,7 @@ * The browse view file of gitlab protext branch of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yanyi Cao * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/browsegroup.html.php b/module/gitlab/view/browsegroup.html.php index f111588d33..eaf2f136eb 100644 --- a/module/gitlab/view/browsegroup.html.php +++ b/module/gitlab/view/browsegroup.html.php @@ -3,7 +3,7 @@ * The browse view file of gitlab module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/browseproject.html.php b/module/gitlab/view/browseproject.html.php index 686511c634..4c93ff448c 100644 --- a/module/gitlab/view/browseproject.html.php +++ b/module/gitlab/view/browseproject.html.php @@ -3,7 +3,7 @@ * The browse view file of gitlab module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/browsetag.html.php b/module/gitlab/view/browsetag.html.php index 517aea6750..0cbcaebe98 100644 --- a/module/gitlab/view/browsetag.html.php +++ b/module/gitlab/view/browsetag.html.php @@ -3,7 +3,7 @@ * The browse view file of gitlab module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Zeng * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/browsetagpriv.html.php b/module/gitlab/view/browsetagpriv.html.php index c3862ddccd..9a5cb7f90f 100644 --- a/module/gitlab/view/browsetagpriv.html.php +++ b/module/gitlab/view/browsetagpriv.html.php @@ -3,7 +3,7 @@ * The browse view file of gitlab module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Zeng * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/browseuser.html.php b/module/gitlab/view/browseuser.html.php index 22d00db2cb..4b1cdaee89 100644 --- a/module/gitlab/view/browseuser.html.php +++ b/module/gitlab/view/browseuser.html.php @@ -3,7 +3,7 @@ * The browse view file of gitlab module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/create.html.php b/module/gitlab/view/create.html.php index 5ca19ad88e..e9f62b4625 100644 --- a/module/gitlab/view/create.html.php +++ b/module/gitlab/view/create.html.php @@ -3,7 +3,7 @@ * The create view file of gitlab module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/createbranch.html.php b/module/gitlab/view/createbranch.html.php index 93ca54547c..96d6e3da6a 100644 --- a/module/gitlab/view/createbranch.html.php +++ b/module/gitlab/view/createbranch.html.php @@ -3,7 +3,7 @@ * The create branch view file of gitlab module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yuchun Li * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/createbranchpriv.html.php b/module/gitlab/view/createbranchpriv.html.php index db316291ba..301565c05f 100644 --- a/module/gitlab/view/createbranchpriv.html.php +++ b/module/gitlab/view/createbranchpriv.html.php @@ -3,7 +3,7 @@ * The create view file of protext branch of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yanyi Cao * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/creategroup.html.php b/module/gitlab/view/creategroup.html.php index eb040c8556..0d9428d96d 100644 --- a/module/gitlab/view/creategroup.html.php +++ b/module/gitlab/view/creategroup.html.php @@ -3,7 +3,7 @@ * The create view file of gitlab module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/createproject.html.php b/module/gitlab/view/createproject.html.php index 59c3fb620a..c7a5f1eace 100644 --- a/module/gitlab/view/createproject.html.php +++ b/module/gitlab/view/createproject.html.php @@ -3,7 +3,7 @@ * The create view file of gitlab module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/createtag.html.php b/module/gitlab/view/createtag.html.php index a578bd52cb..1d984f97e4 100644 --- a/module/gitlab/view/createtag.html.php +++ b/module/gitlab/view/createtag.html.php @@ -3,7 +3,7 @@ * The create view file of protext tag of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yanyi Cao * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/createtagpriv.html.php b/module/gitlab/view/createtagpriv.html.php index 68cb9e1821..bcdeb10d48 100644 --- a/module/gitlab/view/createtagpriv.html.php +++ b/module/gitlab/view/createtagpriv.html.php @@ -3,7 +3,7 @@ * The create view file of protect tag of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yuchun Li * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/createuser.html.php b/module/gitlab/view/createuser.html.php index 452e83f495..02f376c140 100644 --- a/module/gitlab/view/createuser.html.php +++ b/module/gitlab/view/createuser.html.php @@ -3,7 +3,7 @@ * The create view file of gitlab module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/edit.html.php b/module/gitlab/view/edit.html.php index c22bdd0a96..4e89c6584d 100644 --- a/module/gitlab/view/edit.html.php +++ b/module/gitlab/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view file of gitlab module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/editgroup.html.php b/module/gitlab/view/editgroup.html.php index 589f5ba5c4..60ed3d89bc 100644 --- a/module/gitlab/view/editgroup.html.php +++ b/module/gitlab/view/editgroup.html.php @@ -3,7 +3,7 @@ * The create view file of gitlab module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/editproject.html.php b/module/gitlab/view/editproject.html.php index af366d1ccd..30222e1dd3 100644 --- a/module/gitlab/view/editproject.html.php +++ b/module/gitlab/view/editproject.html.php @@ -3,7 +3,7 @@ * The create view file of gitlab module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/edittagpriv.html.php b/module/gitlab/view/edittagpriv.html.php index 6e710d19ad..96fc314e90 100644 --- a/module/gitlab/view/edittagpriv.html.php +++ b/module/gitlab/view/edittagpriv.html.php @@ -3,7 +3,7 @@ * The edit view file of protect tag of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yuchun Li * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/edituser.html.php b/module/gitlab/view/edituser.html.php index baaa4d07cc..a4ddf193ce 100644 --- a/module/gitlab/view/edituser.html.php +++ b/module/gitlab/view/edituser.html.php @@ -3,7 +3,7 @@ * The create view file of gitlab module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/importissue.html.php b/module/gitlab/view/importissue.html.php index 79f8d537f3..a2417f6bef 100644 --- a/module/gitlab/view/importissue.html.php +++ b/module/gitlab/view/importissue.html.php @@ -3,7 +3,7 @@ * The batch create view of story module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yangyang Shi * @package story * @version $Id$ diff --git a/module/gitlab/view/view.html.php b/module/gitlab/view/view.html.php index 49cff2e5c6..3db31c9a99 100644 --- a/module/gitlab/view/view.html.php +++ b/module/gitlab/view/view.html.php @@ -3,7 +3,7 @@ * The view file of GitLab module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author dave.li * @package GitLab * @version $Id: view.html.php 4728 2013-05-03 06:14:34Z david18810279601@gmail.com $ diff --git a/module/group/control.php b/module/group/control.php index 8fb10dfa8e..89ba047eec 100644 --- a/module/group/control.php +++ b/module/group/control.php @@ -3,7 +3,7 @@ * The control file of group module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/de.php b/module/group/lang/de.php index 11310a9f58..d1739a3f26 100644 --- a/module/group/lang/de.php +++ b/module/group/lang/de.php @@ -3,7 +3,7 @@ * The group module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/en.php b/module/group/lang/en.php index f0dbde9d8e..eec3266d60 100644 --- a/module/group/lang/en.php +++ b/module/group/lang/en.php @@ -3,7 +3,7 @@ * The group module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/fr.php b/module/group/lang/fr.php index 714cda9ba0..755dee99c3 100644 --- a/module/group/lang/fr.php +++ b/module/group/lang/fr.php @@ -3,7 +3,7 @@ * The group module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 dfc318bd1b..3f45110100 100644 --- a/module/group/lang/resource.php +++ b/module/group/lang/resource.php @@ -3,7 +3,7 @@ * The all avaliabe actions in ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package group * @version $Id$ diff --git a/module/group/lang/zh-cn.php b/module/group/lang/zh-cn.php index 91900afb13..78d1cf3f2f 100644 --- a/module/group/lang/zh-cn.php +++ b/module/group/lang/zh-cn.php @@ -3,7 +3,7 @@ * The group module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 3203e311af..36f3813fb5 100644 --- a/module/group/lang/zh-tw.php +++ b/module/group/lang/zh-tw.php @@ -3,7 +3,7 @@ * The group module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 3c884c4086..25aa7da357 100644 --- a/module/group/model.php +++ b/module/group/model.php @@ -3,7 +3,7 @@ * The model file of group module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 0464eb7493..3c849473f1 100644 --- a/module/group/view/browse.html.php +++ b/module/group/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of group module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 3712eb46e0..37aee78d8a 100644 --- a/module/group/view/copy.html.php +++ b/module/group/view/copy.html.php @@ -3,7 +3,7 @@ * The copy view of group module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 d99539be7a..1d14f92f53 100644 --- a/module/group/view/create.html.php +++ b/module/group/view/create.html.php @@ -3,7 +3,7 @@ * The create view of group module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 d07ae0a257..75eb004257 100644 --- a/module/group/view/edit.html.php +++ b/module/group/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view of group module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 5080605fa7..2caab43f03 100644 --- a/module/group/view/managemember.html.php +++ b/module/group/view/managemember.html.php @@ -3,7 +3,7 @@ * The manage member view of group module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 d89dbd8064..7cb07f3a25 100644 --- a/module/group/view/managepriv.html.php +++ b/module/group/view/managepriv.html.php @@ -3,7 +3,7 @@ * The manage privilege view of group module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package group * @version $Id: managepriv.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/group/view/manageprojectadmin.html.php b/module/group/view/manageprojectadmin.html.php index 8c60123064..3deb788da2 100644 --- a/module/group/view/manageprojectadmin.html.php +++ b/module/group/view/manageprojectadmin.html.php @@ -3,7 +3,7 @@ * The manage member view of group module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/manageview.html.php b/module/group/view/manageview.html.php index ddaa99e4e2..183b097175 100644 --- a/module/group/view/manageview.html.php +++ b/module/group/view/manageview.html.php @@ -3,7 +3,7 @@ * The manage view by group view of group module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package group * @version $Id: managepriv.html.php 1517 2011-03-07 10:02:57Z wwccss $ diff --git a/module/group/view/privbygroup.html.php b/module/group/view/privbygroup.html.php index 22a6fcba6b..3e501b70d4 100644 --- a/module/group/view/privbygroup.html.php +++ b/module/group/view/privbygroup.html.php @@ -3,7 +3,7 @@ * The manage privilege by group view of group module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 2f2dad1269..c0d519be1b 100644 --- a/module/group/view/privbymodule.html.php +++ b/module/group/view/privbymodule.html.php @@ -3,7 +3,7 @@ * The manage privilege by group view of group module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package group * @version $Id: managepriv.html.php 1517 2011-03-07 10:02:57Z wwccss $ diff --git a/module/holiday/control.php b/module/holiday/control.php index 385e4b6091..2084f79e12 100644 --- a/module/holiday/control.php +++ b/module/holiday/control.php @@ -3,7 +3,7 @@ * The control file of holiday module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package holiday * @version $Id diff --git a/module/holiday/model.php b/module/holiday/model.php index e1eb0503a3..901665d999 100644 --- a/module/holiday/model.php +++ b/module/holiday/model.php @@ -3,7 +3,7 @@ * The model file of holiday module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package holiday * @version $Id diff --git a/module/holiday/view/browse.html.php b/module/holiday/view/browse.html.php index b8e880aa61..15514911b0 100644 --- a/module/holiday/view/browse.html.php +++ b/module/holiday/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of holiday module of ZenTao. * * @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author chujilu * @package holiday * @version $Id$ diff --git a/module/holiday/view/create.html.php b/module/holiday/view/create.html.php index f764d14933..32d0be3430 100644 --- a/module/holiday/view/create.html.php +++ b/module/holiday/view/create.html.php @@ -3,7 +3,7 @@ * The create view file of holiday module of ZenTao. * * @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author chujilu * @package holiday * @version $Id$ diff --git a/module/holiday/view/edit.html.php b/module/holiday/view/edit.html.php index bcb7e739f6..83b1ed9fdf 100644 --- a/module/holiday/view/edit.html.php +++ b/module/holiday/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view file of holiday module of ZenTao. * * @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author chujilu * @package holiday * @version $Id$ diff --git a/module/index/control.php b/module/index/control.php index 93e7920ba7..bea386182a 100644 --- a/module/index/control.php +++ b/module/index/control.php @@ -5,7 +5,7 @@ * When requests the root of a website, this index module will be called. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 19befcbb54..eb031f2769 100644 --- a/module/index/model.php +++ b/module/index/model.php @@ -3,7 +3,7 @@ * The model file of index module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package index * @version $Id: model.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/index/view/index.html.php b/module/index/view/index.html.php index 4465748c54..6c72bd0f55 100644 --- a/module/index/view/index.html.php +++ b/module/index/view/index.html.php @@ -3,7 +3,7 @@ * The html template file of index method of index module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Hao Sun * @package ZenTaoPMS * @version $Id: index.html.php 1947 2011-06-29 11:58:03Z wwccss $ diff --git a/module/install/control.php b/module/install/control.php index f8704081e3..49ee4a585f 100644 --- a/module/install/control.php +++ b/module/install/control.php @@ -3,7 +3,7 @@ * The control file of install currentModule of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package install * @version $Id: control.php 4297 2013-01-27 07:51:45Z wwccss $ diff --git a/module/install/lang/de.php b/module/install/lang/de.php index 3c5d313576..b6693a6550 100644 --- a/module/install/lang/de.php +++ b/module/install/lang/de.php @@ -3,7 +3,7 @@ * The install module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/en.php b/module/install/lang/en.php index 6cfad99730..a24529479b 100644 --- a/module/install/lang/en.php +++ b/module/install/lang/en.php @@ -3,7 +3,7 @@ * The install module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/fr.php b/module/install/lang/fr.php index 2ff0d5a146..a04fdc4d7d 100644 --- a/module/install/lang/fr.php +++ b/module/install/lang/fr.php @@ -3,7 +3,7 @@ * The install module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 12c9a71906..f87fd94c91 100644 --- a/module/install/lang/zh-cn.php +++ b/module/install/lang/zh-cn.php @@ -3,7 +3,7 @@ * The install module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 8203e2fe47..a99690d7d5 100644 --- a/module/install/lang/zh-tw.php +++ b/module/install/lang/zh-tw.php @@ -3,7 +3,7 @@ * The install module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 b5cc286e0f..5e59a69eb7 100644 --- a/module/install/model.php +++ b/module/install/model.php @@ -3,7 +3,7 @@ * The model file of install module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 83cd12720b..e3d2d83d56 100644 --- a/module/install/view/index.html.php +++ b/module/install/view/index.html.php @@ -3,7 +3,7 @@ * The html template file of index method of install module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: index.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/install/view/license.html.php b/module/install/view/license.html.php index 28e7f61e88..2ce27386b9 100644 --- a/module/install/view/license.html.php +++ b/module/install/view/license.html.php @@ -3,7 +3,7 @@ * The html file of license method of install module of ZentaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package install * @version $Id$ diff --git a/module/install/view/step1.html.php b/module/install/view/step1.html.php index 61233e3865..91175d2bf4 100644 --- a/module/install/view/step1.html.php +++ b/module/install/view/step1.html.php @@ -3,7 +3,7 @@ * The html template file of step1 method of install module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 f6bf917b4c..9fe41c5bf9 100644 --- a/module/install/view/step2.html.php +++ b/module/install/view/step2.html.php @@ -3,7 +3,7 @@ * The html template file of step2 method of install module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 80ff6dd2c1..c3e40f34a2 100644 --- a/module/install/view/step3.html.php +++ b/module/install/view/step3.html.php @@ -3,7 +3,7 @@ * The html template file of step3 method of install module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 fa81c945f9..07d92298a0 100644 --- a/module/install/view/step4.html.php +++ b/module/install/view/step4.html.php @@ -3,7 +3,7 @@ * The to20 view file of install module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yuchun Li * @package install * @version $Id$ diff --git a/module/install/view/step5.html.php b/module/install/view/step5.html.php index 686b740b81..e4d67b5657 100644 --- a/module/install/view/step5.html.php +++ b/module/install/view/step5.html.php @@ -3,7 +3,7 @@ * The html template file of step4 method of install module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: step4.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/install/view/step6.html.php b/module/install/view/step6.html.php index 563e0fbf43..e0cdd7283f 100644 --- a/module/install/view/step6.html.php +++ b/module/install/view/step6.html.php @@ -3,7 +3,7 @@ * The html template file of index method of install module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: step5.html.php 2568 2012-02-18 15:53:35Z zhujinyong@cnezsoft.com$ diff --git a/module/jenkins/control.php b/module/jenkins/control.php index d63e246350..d10d2a7b08 100644 --- a/module/jenkins/control.php +++ b/module/jenkins/control.php @@ -4,7 +4,7 @@ * The control file of jenkins module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chenqi * @package product * @version $Id: ${FILE_NAME} 5144 2020/1/8 8:10 下午 chenqi@cnezsoft.com $ diff --git a/module/jenkins/model.php b/module/jenkins/model.php index bb8a8f5dce..9479c04525 100644 --- a/module/jenkins/model.php +++ b/module/jenkins/model.php @@ -3,7 +3,7 @@ * The model file of jenkins module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chenqi * @package product * @version $Id: $ diff --git a/module/jenkins/view/browse.html.php b/module/jenkins/view/browse.html.php index b4fb15896c..c5df52757c 100644 --- a/module/jenkins/view/browse.html.php +++ b/module/jenkins/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of jenkins module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package jenkins * @version $Id$ diff --git a/module/jenkins/view/create.html.php b/module/jenkins/view/create.html.php index 725f5bf3a5..db552421ee 100644 --- a/module/jenkins/view/create.html.php +++ b/module/jenkins/view/create.html.php @@ -3,7 +3,7 @@ * The create view file of jenkins module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package jenkins * @version $Id$ diff --git a/module/jenkins/view/edit.html.php b/module/jenkins/view/edit.html.php index a5a6c98d94..1b36e02005 100644 --- a/module/jenkins/view/edit.html.php +++ b/module/jenkins/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view file of jenkins module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package jenkins * @version $Id$ diff --git a/module/job/control.php b/module/job/control.php index eddf5b5099..7bd9f3d9db 100644 --- a/module/job/control.php +++ b/module/job/control.php @@ -3,7 +3,7 @@ * The control file of job of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package job * @version $Id$ diff --git a/module/job/model.php b/module/job/model.php index 751924af9e..44db499813 100644 --- a/module/job/model.php +++ b/module/job/model.php @@ -3,7 +3,7 @@ * The model file of job module of ZenTaoCMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package job * @version $Id$ diff --git a/module/job/view/browse.html.php b/module/job/view/browse.html.php index ce50ed120e..9f45c569b7 100644 --- a/module/job/view/browse.html.php +++ b/module/job/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of job module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chenqi * @package job * @version $Id$ diff --git a/module/job/view/create.html.php b/module/job/view/create.html.php index 9a3f95cdde..4ff6acc683 100644 --- a/module/job/view/create.html.php +++ b/module/job/view/create.html.php @@ -3,7 +3,7 @@ * The create view file of job module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chenqi * @package job * @version $Id$ diff --git a/module/job/view/edit.html.php b/module/job/view/edit.html.php index ade02dfa41..25062cec43 100644 --- a/module/job/view/edit.html.php +++ b/module/job/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view file of job module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chenqi * @package job * @version $Id$ diff --git a/module/job/view/view.html.php b/module/job/view/view.html.php index 95a6d3cd61..6819fc5159 100644 --- a/module/job/view/view.html.php +++ b/module/job/view/view.html.php @@ -3,7 +3,7 @@ * The view file of job module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package job * @version $Id$ diff --git a/module/kanban/control.php b/module/kanban/control.php index 04e357b827..2f21bc4d90 100644 --- a/module/kanban/control.php +++ b/module/kanban/control.php @@ -3,7 +3,7 @@ * The control file of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yuchun Li * @package kanban * @version $Id: control.php 4460 2021-10-26 11:03:02Z chencongzhi520@gmail.com $ diff --git a/module/kanban/model.php b/module/kanban/model.php index df7c270ae0..177f383697 100644 --- a/module/kanban/model.php +++ b/module/kanban/model.php @@ -3,7 +3,7 @@ * The model file of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package kanban * @version $Id: model.php 5118 2021-10-22 10:18:41Z $ diff --git a/module/kanban/view/activate.html.php b/module/kanban/view/activate.html.php index a8d9ead62f..9d7787de83 100644 --- a/module/kanban/view/activate.html.php +++ b/module/kanban/view/activate.html.php @@ -3,7 +3,7 @@ * The activate file of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Mengyi Liu * @package kanban * @version $Id: activate.html.php 935 2022-05-25 13:18:24Z $ diff --git a/module/kanban/view/activatecard.html.php b/module/kanban/view/activatecard.html.php index 7b61fe028d..eab6e51b85 100644 --- a/module/kanban/view/activatecard.html.php +++ b/module/kanban/view/activatecard.html.php @@ -3,7 +3,7 @@ * The activate card file of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Mengyi Liu * @package kanban * @version $Id: close.html.php 935 2021-12-09 10:49:24Z $ diff --git a/module/kanban/view/activatespace.html.php b/module/kanban/view/activatespace.html.php index ee96b52254..f9485b4e4d 100644 --- a/module/kanban/view/activatespace.html.php +++ b/module/kanban/view/activatespace.html.php @@ -3,7 +3,7 @@ * The closespace file of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package kanban * @version $Id: activatespace.html.php 935 2021-12-15 11:22:24Z $ diff --git a/module/kanban/view/batchcreatecard.html.php b/module/kanban/view/batchcreatecard.html.php index 1fcc0cf70e..48f7075f09 100644 --- a/module/kanban/view/batchcreatecard.html.php +++ b/module/kanban/view/batchcreatecard.html.php @@ -3,7 +3,7 @@ * The batch create view of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Xin Zhou * @package kanban * @version $Id$ diff --git a/module/kanban/view/close.html.php b/module/kanban/view/close.html.php index 2ddc601a6f..bdf9f9cac6 100644 --- a/module/kanban/view/close.html.php +++ b/module/kanban/view/close.html.php @@ -3,7 +3,7 @@ * The close file of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Mengyi Liu * @package kanban * @version $Id: close.html.php 935 2021-12-09 10:49:24Z $ diff --git a/module/kanban/view/closespace.html.php b/module/kanban/view/closespace.html.php index f8910f48eb..3abe550219 100644 --- a/module/kanban/view/closespace.html.php +++ b/module/kanban/view/closespace.html.php @@ -3,7 +3,7 @@ * The closespace file of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package kanban * @version $Id: closespace.html.php 935 2021-12-15 11:22:24Z $ diff --git a/module/kanban/view/create.html.php b/module/kanban/view/create.html.php index ee4a6f5aab..d4365dd9f0 100644 --- a/module/kanban/view/create.html.php +++ b/module/kanban/view/create.html.php @@ -3,7 +3,7 @@ * The create file of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package kanban * @version $Id: create.html.php 935 2021-12-09 13:48:24Z $ diff --git a/module/kanban/view/createcard.html.php b/module/kanban/view/createcard.html.php index 2580cd8e5c..418bdf6166 100644 --- a/module/kanban/view/createcard.html.php +++ b/module/kanban/view/createcard.html.php @@ -3,7 +3,7 @@ * The create card view of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package kanban * @version $Id: createcard.html.php 5090 2021-12-13 13:49:24Z tainshujie@cnezsoft.com $ diff --git a/module/kanban/view/createcolumn.html.php b/module/kanban/view/createcolumn.html.php index 5795e594d8..fe9135cc23 100644 --- a/module/kanban/view/createcolumn.html.php +++ b/module/kanban/view/createcolumn.html.php @@ -3,7 +3,7 @@ * The create lane view file of kanban module of ZentaoPMS. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Guangming Sun * @package kanban * @version $Id$ diff --git a/module/kanban/view/createexeclane.html.php b/module/kanban/view/createexeclane.html.php index b5b161456d..3d12d3822e 100644 --- a/module/kanban/view/createexeclane.html.php +++ b/module/kanban/view/createexeclane.html.php @@ -3,7 +3,7 @@ * The createexeclane file of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package kanban * @version $Id: createexeclane.html.php 935 2022-01-12 17:22:24Z $ diff --git a/module/kanban/view/createregion.html.php b/module/kanban/view/createregion.html.php index bd50d0fdd1..946fb2647c 100644 --- a/module/kanban/view/createregion.html.php +++ b/module/kanban/view/createregion.html.php @@ -3,7 +3,7 @@ * The createregion file of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package kanban * @version $Id: createregion.html.php 935 2021-12-15 16:23:24Z $ diff --git a/module/kanban/view/createspace.html.php b/module/kanban/view/createspace.html.php index 4d385cf203..fd343889cc 100644 --- a/module/kanban/view/createspace.html.php +++ b/module/kanban/view/createspace.html.php @@ -3,7 +3,7 @@ * The createspace file of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package kanban * @version $Id: createspace.html.php 935 2021-12-08 14:04:24Z $ diff --git a/module/kanban/view/edit.html.php b/module/kanban/view/edit.html.php index bb636f0379..fc7d525785 100644 --- a/module/kanban/view/edit.html.php +++ b/module/kanban/view/edit.html.php @@ -3,7 +3,7 @@ * The edit file of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Mengyi Liu * @package kanban * @version $Id: edit.html.php 935 2021-12-09 16:15:24Z $ diff --git a/module/kanban/view/editcard.html.php b/module/kanban/view/editcard.html.php index 1a39158fa1..a4a498ac33 100644 --- a/module/kanban/view/editcard.html.php +++ b/module/kanban/view/editcard.html.php @@ -3,7 +3,7 @@ * The editcard of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package kanban * @version $Id: editcard.html.php 4903 2021-12-13 14:25:59Z $ diff --git a/module/kanban/view/editregion.html.php b/module/kanban/view/editregion.html.php index ebd5e92308..f91f394aa8 100644 --- a/module/kanban/view/editregion.html.php +++ b/module/kanban/view/editregion.html.php @@ -3,7 +3,7 @@ * The editregion file of task module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Mengyi Liu * @package kanban * @version $Id: editregion.html.php 935 2021-10-26 16:24:24Z liumengyi@easycorp.ltd $ diff --git a/module/kanban/view/editspace.html.php b/module/kanban/view/editspace.html.php index df5eaeeca7..4bdcb978fc 100644 --- a/module/kanban/view/editspace.html.php +++ b/module/kanban/view/editspace.html.php @@ -3,7 +3,7 @@ * The editspace file of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Mengyi Liu * @package kanban * @version $Id: editspace.html.php 935 2021-12-08 15:46:24Z $ diff --git a/module/kanban/view/enablearchived.html.php b/module/kanban/view/enablearchived.html.php index 4ad241bb50..0f99a13eac 100644 --- a/module/kanban/view/enablearchived.html.php +++ b/module/kanban/view/enablearchived.html.php @@ -3,7 +3,7 @@ * The enableArchived file of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Runyu Zheng * @package kanban * @version $Id: enableArchived.html.php 935 2022-01-21 11:02:24Z $ diff --git a/module/kanban/view/import.html.php b/module/kanban/view/import.html.php index 74a44f1915..5164fc0d62 100644 --- a/module/kanban/view/import.html.php +++ b/module/kanban/view/import.html.php @@ -3,7 +3,7 @@ * The import file of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Fangzhou Hu * @package kanban * @version $Id: import.html.php 935 2022-01-19 14:15:24Z hufangzhou@easycorp.ltd $ diff --git a/module/kanban/view/importbuild.html.php b/module/kanban/view/importbuild.html.php index 867663c420..f3411de9d3 100644 --- a/module/kanban/view/importbuild.html.php +++ b/module/kanban/view/importbuild.html.php @@ -3,7 +3,7 @@ * The import build view of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Qiyu Xie * @package kanban * @version $Id: importbuild.html.php 5090 2022-01-19 14:19:24Z xieqiyu@cnezsoft.com $ diff --git a/module/kanban/view/importcard.html.php b/module/kanban/view/importcard.html.php index 98c28ea56f..07e40bbf93 100644 --- a/module/kanban/view/importcard.html.php +++ b/module/kanban/view/importcard.html.php @@ -3,7 +3,7 @@ * The import card view of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Qiyu Xie * @package kanban * @version $Id: importcard.html.php 5090 2022-01-19 14:19:24Z xieqiyu@cnezsoft.com $ diff --git a/module/kanban/view/importexecution.html.php b/module/kanban/view/importexecution.html.php index 9b18b79bee..7814a9f02b 100644 --- a/module/kanban/view/importexecution.html.php +++ b/module/kanban/view/importexecution.html.php @@ -3,7 +3,7 @@ * The import execution view of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Qiyu Xie * @package kanban * @version $Id: importexecution.html.php 5090 2022-01-19 14:19:24Z xieqiyu@cnezsoft.com $ diff --git a/module/kanban/view/importplan.html.php b/module/kanban/view/importplan.html.php index 72db45c585..951af291cb 100644 --- a/module/kanban/view/importplan.html.php +++ b/module/kanban/view/importplan.html.php @@ -3,7 +3,7 @@ * The import plan view of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Qiyu Xie * @package kanban * @version $Id: importplan.html.php 5090 2022-01-19 14:19:24Z xieqiyu@cnezsoft.com $ diff --git a/module/kanban/view/importrelease.html.php b/module/kanban/view/importrelease.html.php index 7497e95afe..61b457584c 100644 --- a/module/kanban/view/importrelease.html.php +++ b/module/kanban/view/importrelease.html.php @@ -3,7 +3,7 @@ * The import release view of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Qiyu Xie * @package kanban * @version $Id: importrelease.html.php 5090 2022-01-19 14:19:24Z xieqiyu@cnezsoft.com $ diff --git a/module/kanban/view/performable.html.php b/module/kanban/view/performable.html.php index 455bfd7935..02c79dc717 100644 --- a/module/kanban/view/performable.html.php +++ b/module/kanban/view/performable.html.php @@ -3,7 +3,7 @@ * The performable file of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yue Ma * @package kanban * @version $Id: performable.html.php 935 2022-01-1 14:20:24Z $ diff --git a/module/kanban/view/sendmail.html.php b/module/kanban/view/sendmail.html.php index 939287afb9..55beb9d46a 100644 --- a/module/kanban/view/sendmail.html.php +++ b/module/kanban/view/sendmail.html.php @@ -3,7 +3,7 @@ * The mail file of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package kanban * @version $Id: sendmail.html.php 867 2022-05-17 13:50:58Z $ diff --git a/module/kanban/view/setcolumn.html.php b/module/kanban/view/setcolumn.html.php index f04b0c5acd..d7040c1232 100644 --- a/module/kanban/view/setcolumn.html.php +++ b/module/kanban/view/setcolumn.html.php @@ -3,7 +3,7 @@ * The set column file of task module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Thanatos * @package kanban * @version $Id: setcolumn.html.php 935 2021-10-26 16:24:24Z xiawenlong@easycorp.ltd $ diff --git a/module/kanban/view/setcolumnwidth.html.php b/module/kanban/view/setcolumnwidth.html.php index fe3d8658bb..dca9a1463a 100644 --- a/module/kanban/view/setcolumnwidth.html.php +++ b/module/kanban/view/setcolumnwidth.html.php @@ -3,7 +3,7 @@ * The setlaneheight file of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package kanban * @version $Id: setlaneheight.html.php 935 2022-01-11 10:49:24Z $ diff --git a/module/kanban/view/setlane.html.php b/module/kanban/view/setlane.html.php index fc7e06787b..6a5fc60020 100644 --- a/module/kanban/view/setlane.html.php +++ b/module/kanban/view/setlane.html.php @@ -3,7 +3,7 @@ * The set lane file of task module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yuchun Li * @package kanban * @version $Id: setlane.html.php 935 2021-10-26 16:24:24Z liyuchun@easycorp.ltd $ diff --git a/module/kanban/view/setlaneheight.html.php b/module/kanban/view/setlaneheight.html.php index c76a407076..e389de7ae1 100644 --- a/module/kanban/view/setlaneheight.html.php +++ b/module/kanban/view/setlaneheight.html.php @@ -3,7 +3,7 @@ * The setlaneheight file of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package kanban * @version $Id: setlaneheight.html.php 935 2022-01-11 10:49:24Z $ diff --git a/module/kanban/view/setwip.html.php b/module/kanban/view/setwip.html.php index 4e1c6b34bd..19d2537cb0 100644 --- a/module/kanban/view/setwip.html.php +++ b/module/kanban/view/setwip.html.php @@ -3,7 +3,7 @@ * The set WIP file of task module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yuchun Li * @package kanban * @version $Id: setwip.html.php 935 2021-10-25 10:56:24Z liyuchun@easycorp.ltd $ diff --git a/module/kanban/view/space.html.php b/module/kanban/view/space.html.php index c98e90e271..18ce3502b2 100644 --- a/module/kanban/view/space.html.php +++ b/module/kanban/view/space.html.php @@ -3,7 +3,7 @@ * The space file of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package kanban * @version $Id: space.html.php 935 2021-12-07 14:31:24Z $ diff --git a/module/kanban/view/splitcolumn.html.php b/module/kanban/view/splitcolumn.html.php index f1e3aa2d2f..38f61bf032 100644 --- a/module/kanban/view/splitcolumn.html.php +++ b/module/kanban/view/splitcolumn.html.php @@ -3,7 +3,7 @@ * The splitcolumn view file of kanban module of ZentaoPMS. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @autdor Shujie Tian * @package kanban * @version $Id: splitcolumn.html.php 935 2021-12-16 10:24:24Z $ diff --git a/module/kanban/view/view.html.php b/module/kanban/view/view.html.php index d77c5837dc..6ef55a7713 100644 --- a/module/kanban/view/view.html.php +++ b/module/kanban/view/view.html.php @@ -3,7 +3,7 @@ * The view file of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Guangming Sun * @package kanban * @version $Id: view.html.php 935 2021-12-09 10:49:24Z $ diff --git a/module/kanban/view/viewarchivedcard.html.php b/module/kanban/view/viewarchivedcard.html.php index e0b1562718..663e625f32 100644 --- a/module/kanban/view/viewarchivedcard.html.php +++ b/module/kanban/view/viewarchivedcard.html.php @@ -3,7 +3,7 @@ * The viewarchivedcard file of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package kanban * @version $Id: viewarchivedcard.html.php 935 2021-12-22 15:44:24Z $ diff --git a/module/kanban/view/viewarchivedcolumn.html.php b/module/kanban/view/viewarchivedcolumn.html.php index 0d44d35a62..f6a959f129 100644 --- a/module/kanban/view/viewarchivedcolumn.html.php +++ b/module/kanban/view/viewarchivedcolumn.html.php @@ -3,7 +3,7 @@ * The viewarchivedcolumn file of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package kanban * @version $Id: viewarchivedcolumn.html.php 935 2021-12-22 10:49:24Z $ diff --git a/module/kanban/view/viewcard.html.php b/module/kanban/view/viewcard.html.php index da15bbabe8..3272adc081 100644 --- a/module/kanban/view/viewcard.html.php +++ b/module/kanban/view/viewcard.html.php @@ -3,7 +3,7 @@ * The viewcard of kanban module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Mengyi Liu * @package kanban * @version $Id: viewcard.html.php 4903 2021-12-13 16:25:59Z $ diff --git a/module/mail/control.php b/module/mail/control.php index ac448f684f..502b134c48 100755 --- a/module/mail/control.php +++ b/module/mail/control.php @@ -3,7 +3,7 @@ * The control file of mail module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yangyang Shi * @package mail * @version $Id$ diff --git a/module/mail/model.php b/module/mail/model.php index 8459d4fbe7..de56f0c8b8 100644 --- a/module/mail/model.php +++ b/module/mail/model.php @@ -3,7 +3,7 @@ * The model file of mail module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/browse.html.php b/module/mail/view/browse.html.php index c7f3507962..22c8bfa6db 100644 --- a/module/mail/view/browse.html.php +++ b/module/mail/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of mail module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package mail * @version $Id$ diff --git a/module/mail/view/detect.html.php b/module/mail/view/detect.html.php index c34a2e199a..22eb8d234c 100755 --- a/module/mail/view/detect.html.php +++ b/module/mail/view/detect.html.php @@ -3,7 +3,7 @@ * The detect view file of mail module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package mail * @version $Id$ diff --git a/module/mail/view/edit.html.php b/module/mail/view/edit.html.php index d265fdd02f..aecb2be6c7 100755 --- a/module/mail/view/edit.html.php +++ b/module/mail/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view file of mail module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package mail * @version $Id$ diff --git a/module/mail/view/index.html.php b/module/mail/view/index.html.php index b9bbb7fb81..21e95f215b 100755 --- a/module/mail/view/index.html.php +++ b/module/mail/view/index.html.php @@ -3,7 +3,7 @@ * The index view file of mail module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package mail * @version $Id$ diff --git a/module/mail/view/save.html.php b/module/mail/view/save.html.php index ba9482bfd1..3e4db91574 100755 --- a/module/mail/view/save.html.php +++ b/module/mail/view/save.html.php @@ -3,7 +3,7 @@ * The save view file of mail module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package mail * @version $Id$ diff --git a/module/mail/view/sendcloud.html.php b/module/mail/view/sendcloud.html.php index f68274a6cf..cd5bd76b8b 100755 --- a/module/mail/view/sendcloud.html.php +++ b/module/mail/view/sendcloud.html.php @@ -3,7 +3,7 @@ * The sendcloud view file of mail module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package mail * @version $Id$ diff --git a/module/mail/view/sendclouduser.html.php b/module/mail/view/sendclouduser.html.php index 7e6c43991a..993614f04e 100644 --- a/module/mail/view/sendclouduser.html.php +++ b/module/mail/view/sendclouduser.html.php @@ -3,7 +3,7 @@ * The sendcloud user view file of mail module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package mail * @version $Id$ diff --git a/module/mail/view/test.html.php b/module/mail/view/test.html.php index 7e06279357..6a0d2d8708 100755 --- a/module/mail/view/test.html.php +++ b/module/mail/view/test.html.php @@ -3,7 +3,7 @@ * The test view file of mail module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package mail * @version $Id$ diff --git a/module/mail/view/ztcloud.html.php b/module/mail/view/ztcloud.html.php index 492b9a45ea..7b6d7c59ff 100644 --- a/module/mail/view/ztcloud.html.php +++ b/module/mail/view/ztcloud.html.php @@ -3,7 +3,7 @@ * The ztcloud view file of mail module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package mail * @version $Id$ diff --git a/module/message/control.php b/module/message/control.php index 39dd149033..7051dc4b66 100644 --- a/module/message/control.php +++ b/module/message/control.php @@ -3,7 +3,7 @@ * The control file of message of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package message * @version $Id$ diff --git a/module/message/model.php b/module/message/model.php index 1eb12a21fa..1dc6e67a57 100644 --- a/module/message/model.php +++ b/module/message/model.php @@ -3,7 +3,7 @@ * The model file of message module of ZenTaoCMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package message * @version $Id$ diff --git a/module/message/view/browser.html.php b/module/message/view/browser.html.php index 939f0170ee..e49858936a 100644 --- a/module/message/view/browser.html.php +++ b/module/message/view/browser.html.php @@ -3,7 +3,7 @@ * The browser view file of message module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package message * @version $Id$ diff --git a/module/message/view/setting.html.php b/module/message/view/setting.html.php index d059b229d7..f6da46e892 100644 --- a/module/message/view/setting.html.php +++ b/module/message/view/setting.html.php @@ -3,7 +3,7 @@ * The setting view file of message module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package message * @version $Id$ diff --git a/module/misc/control.php b/module/misc/control.php index 1c78599c81..d48f86d46d 100644 --- a/module/misc/control.php +++ b/module/misc/control.php @@ -3,7 +3,7 @@ * The control file of misc of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/de.php b/module/misc/lang/de.php index 901cd084bd..0c7fb19e29 100644 --- a/module/misc/lang/de.php +++ b/module/misc/lang/de.php @@ -3,7 +3,7 @@ * The misc module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package misc * @version $Id: English.php 824 2010-05-02 15:32:06Z wwccss $ diff --git a/module/misc/lang/en.php b/module/misc/lang/en.php index 7d329a1dc9..cb49574f67 100644 --- a/module/misc/lang/en.php +++ b/module/misc/lang/en.php @@ -3,7 +3,7 @@ * The misc module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package misc * @version $Id: English.php 824 2010-05-02 15:32:06Z wwccss $ diff --git a/module/misc/lang/fr.php b/module/misc/lang/fr.php index 3271ed9f1d..55bfbc72d2 100644 --- a/module/misc/lang/fr.php +++ b/module/misc/lang/fr.php @@ -3,7 +3,7 @@ * The misc module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 a7d3675ec5..d7b44a8e5f 100644 --- a/module/misc/lang/zh-cn.php +++ b/module/misc/lang/zh-cn.php @@ -3,7 +3,7 @@ * The misc module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 349912c577..e06025e31e 100644 --- a/module/misc/lang/zh-tw.php +++ b/module/misc/lang/zh-tw.php @@ -3,7 +3,7 @@ * The misc module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 fc53e03fdc..4bc703c842 100644 --- a/module/misc/model.php +++ b/module/misc/model.php @@ -2,7 +2,7 @@ /** * The model file of misc module of ZenTaoPMS. * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package misc * @version $Id: model.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/mr/model.php b/module/mr/model.php index 67835dcdec..c0ac785798 100644 --- a/module/mr/model.php +++ b/module/mr/model.php @@ -3,7 +3,7 @@ * The model file of mr module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author dingguodong * @package mr * @version $Id$ diff --git a/module/mr/view/approval.html.php b/module/mr/view/approval.html.php index bb47c9a38f..c1b3b9c58d 100644 --- a/module/mr/view/approval.html.php +++ b/module/mr/view/approval.html.php @@ -3,7 +3,7 @@ * The MR approval file of MR module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author dingguodong * @package mr * @version $Id$ diff --git a/module/mr/view/link.html.php b/module/mr/view/link.html.php index 86411732ed..aab6c6c025 100644 --- a/module/mr/view/link.html.php +++ b/module/mr/view/link.html.php @@ -3,7 +3,7 @@ * The view of mr link module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author gang zeng * @package repo * @version $Id: link.html.php $ diff --git a/module/mr/view/linkbug.html.php b/module/mr/view/linkbug.html.php index e070284cb2..fa8dd99f93 100644 --- a/module/mr/view/linkbug.html.php +++ b/module/mr/view/linkbug.html.php @@ -3,7 +3,7 @@ * The link bug view of productplan module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package mr * @version $Id: linkbug.html.php$ diff --git a/module/mr/view/linkstory.html.php b/module/mr/view/linkstory.html.php index e12ac68d2f..8c9b881f95 100644 --- a/module/mr/view/linkstory.html.php +++ b/module/mr/view/linkstory.html.php @@ -3,7 +3,7 @@ * The link story view of mr module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author gang zeng * @package mr * @version $Id: linkstory.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/mr/view/linktask.html.php b/module/mr/view/linktask.html.php index a22da0aeec..c80ee37df5 100644 --- a/module/mr/view/linktask.html.php +++ b/module/mr/view/linktask.html.php @@ -3,7 +3,7 @@ * The link task view of productplan module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package mr * @version $Id: linktask.html.php$ diff --git a/module/my/control.php b/module/my/control.php index 42e999364f..9d859e6173 100755 --- a/module/my/control.php +++ b/module/my/control.php @@ -3,7 +3,7 @@ * The control file of dashboard module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 280f51d2c3..6e2c4afc0c 100644 --- a/module/my/model.php +++ b/module/my/model.php @@ -3,7 +3,7 @@ * The model file of dashboard module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 849203b8ff..73b5287207 100644 --- a/module/my/view/bug.html.php +++ b/module/my/view/bug.html.php @@ -3,7 +3,7 @@ * The bug view file of dashboard module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/buildcontactlists.html.php b/module/my/view/buildcontactlists.html.php index 68e2f81877..81f0d6041c 100644 --- a/module/my/view/buildcontactlists.html.php +++ b/module/my/view/buildcontactlists.html.php @@ -3,7 +3,7 @@ * The build contact lists view file of my module of ZentaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Fei Chen * @package my * @version $Id$ diff --git a/module/my/view/changepassword.html.php b/module/my/view/changepassword.html.php index 4fce8a8c93..ee05c50bdc 100755 --- a/module/my/view/changepassword.html.php +++ b/module/my/view/changepassword.html.php @@ -3,7 +3,7 @@ * The change password view of user module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package user * @version $Id: editprofile.html.php 2605 2012-02-21 07:22:58Z wwccss $ diff --git a/module/my/view/doc.html.php b/module/my/view/doc.html.php index 0123f087d0..26ab269475 100644 --- a/module/my/view/doc.html.php +++ b/module/my/view/doc.html.php @@ -3,7 +3,7 @@ * The project view file of my module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package my * @version $Id diff --git a/module/my/view/dynamic.html.php b/module/my/view/dynamic.html.php index a615804a70..e7bd8c9736 100644 --- a/module/my/view/dynamic.html.php +++ b/module/my/view/dynamic.html.php @@ -3,7 +3,7 @@ * The action->dynamic view file of dashboard module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 641353b222..bfbb8b26fe 100644 --- a/module/my/view/editprofile.html.php +++ b/module/my/view/editprofile.html.php @@ -3,7 +3,7 @@ * The edit view of user module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/execution.html.php b/module/my/view/execution.html.php index 3dd9c02937..2ba50c8401 100644 --- a/module/my/view/execution.html.php +++ b/module/my/view/execution.html.php @@ -3,7 +3,7 @@ * The execution view file of my module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package my * @version $Id diff --git a/module/my/view/index.html.php b/module/my/view/index.html.php index ce507842fd..f74db4408f 100644 --- a/module/my/view/index.html.php +++ b/module/my/view/index.html.php @@ -3,7 +3,7 @@ * The html template file of index method of index module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: index.html.php 1947 2011-06-29 11:58:03Z wwccss $ diff --git a/module/my/view/managecontacts.html.php b/module/my/view/managecontacts.html.php index 5c3a6fdf21..d2725ba7e4 100644 --- a/module/my/view/managecontacts.html.php +++ b/module/my/view/managecontacts.html.php @@ -3,7 +3,7 @@ * The contacts manage page of my module. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author chunsheng wang * @package my * @version $Id$ diff --git a/module/my/view/preference.html.php b/module/my/view/preference.html.php index 8ff62c1863..7c9aa1f077 100755 --- a/module/my/view/preference.html.php +++ b/module/my/view/preference.html.php @@ -3,7 +3,7 @@ * The preference view of user module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package user * @version $Id: editprofile.html.php 2605 2012-02-21 07:22:58Z wwccss $ diff --git a/module/my/view/profile.html.php b/module/my/view/profile.html.php index 33e9c60d5a..c7fb41fa20 100644 --- a/module/my/view/profile.html.php +++ b/module/my/view/profile.html.php @@ -3,7 +3,7 @@ * The profile view file of my module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 0f6bbd5308..b8c3dd7d10 100644 --- a/module/my/view/project.html.php +++ b/module/my/view/project.html.php @@ -3,7 +3,7 @@ * The project view file of my module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package my * @version $Id diff --git a/module/my/view/score.html.php b/module/my/view/score.html.php index 2987dc86c4..7ba030fbe4 100644 --- a/module/my/view/score.html.php +++ b/module/my/view/score.html.php @@ -2,7 +2,7 @@ /** * The score view file of my module of ZenTaoPMS. * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Memory * @package my * @version $Id$ diff --git a/module/my/view/task.html.php b/module/my/view/task.html.php index 0ff5835dd6..bfac17fb76 100644 --- a/module/my/view/task.html.php +++ b/module/my/view/task.html.php @@ -3,7 +3,7 @@ * The task view file of dashboard module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 c99df1ccde..e04bf28e5c 100644 --- a/module/my/view/team.html.php +++ b/module/my/view/team.html.php @@ -3,7 +3,7 @@ * The browse view file of product dept of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package product * @version $Id: browse.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/my/view/testcase.html.php b/module/my/view/testcase.html.php index 604a4c0236..fa8f4bd958 100644 --- a/module/my/view/testcase.html.php +++ b/module/my/view/testcase.html.php @@ -3,7 +3,7 @@ * The test view file of dashboard module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 caf1c73096..91789c415d 100644 --- a/module/my/view/testtask.html.php +++ b/module/my/view/testtask.html.php @@ -3,7 +3,7 @@ * The testtask view file of my module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package dashboard * @version $Id$ diff --git a/module/my/view/todo.html.php b/module/my/view/todo.html.php index cdad0a940f..b592801163 100644 --- a/module/my/view/todo.html.php +++ b/module/my/view/todo.html.php @@ -3,7 +3,7 @@ * The todo view file of dashboard module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package dashboard * @version $Id: todo.html.php 4735 2013-05-03 08:30:02Z chencongzhi520@gmail.com $ diff --git a/module/personnel/control.php b/module/personnel/control.php index aa29526bac..961e4a0861 100644 --- a/module/personnel/control.php +++ b/module/personnel/control.php @@ -3,7 +3,7 @@ * The control file of personnel of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package personnel * @version $Id$ diff --git a/module/personnel/model.php b/module/personnel/model.php index e566e6d0b1..74fef82d0f 100644 --- a/module/personnel/model.php +++ b/module/personnel/model.php @@ -3,7 +3,7 @@ * The model file of personnel of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package personnel * @version $Id$ diff --git a/module/personnel/view/accessible.html.php b/module/personnel/view/accessible.html.php index 4fd59b91a9..dbd8f47000 100644 --- a/module/personnel/view/accessible.html.php +++ b/module/personnel/view/accessible.html.php @@ -3,7 +3,7 @@ * The html template file of accessible method of personnel module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id diff --git a/module/personnel/view/addwhitelist.html.php b/module/personnel/view/addwhitelist.html.php index 715b06fede..58ad5aadc2 100644 --- a/module/personnel/view/addwhitelist.html.php +++ b/module/personnel/view/addwhitelist.html.php @@ -3,7 +3,7 @@ * The create addwhitelist view of personnel module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package personnel * @version $Id diff --git a/module/personnel/view/invest.html.php b/module/personnel/view/invest.html.php index 14ce02aea2..f73ce3385b 100644 --- a/module/personnel/view/invest.html.php +++ b/module/personnel/view/invest.html.php @@ -3,7 +3,7 @@ * The html template file of invest method of personnel module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id diff --git a/module/personnel/view/whitelist.html.php b/module/personnel/view/whitelist.html.php index 767b8726d4..819aadaf69 100644 --- a/module/personnel/view/whitelist.html.php +++ b/module/personnel/view/whitelist.html.php @@ -3,7 +3,7 @@ * The whitelist view of personnel module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package personnel * @version $Id diff --git a/module/pipeline/model.php b/module/pipeline/model.php index 1e42120602..8629542dba 100644 --- a/module/pipeline/model.php +++ b/module/pipeline/model.php @@ -3,7 +3,7 @@ * The model file of pipeline module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chenqi * @package product * @version $Id: $ diff --git a/module/product/control.php b/module/product/control.php index 190c2291c2..1ffd110586 100644 --- a/module/product/control.php +++ b/module/product/control.php @@ -3,7 +3,7 @@ * The control file of product module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/de.php b/module/product/lang/de.php index f1c5e89f03..82ce9b7741 100644 --- a/module/product/lang/de.php +++ b/module/product/lang/de.php @@ -3,7 +3,7 @@ * The product module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/en.php b/module/product/lang/en.php index 9241d7a001..75ae14a2d3 100644 --- a/module/product/lang/en.php +++ b/module/product/lang/en.php @@ -3,7 +3,7 @@ * The product module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/fr.php b/module/product/lang/fr.php index 04ee9db4de..3ae3d261f3 100644 --- a/module/product/lang/fr.php +++ b/module/product/lang/fr.php @@ -3,7 +3,7 @@ * The product module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 cf134f4c43..92e8713714 100644 --- a/module/product/lang/zh-cn.php +++ b/module/product/lang/zh-cn.php @@ -3,7 +3,7 @@ * The product module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 7b79893077..7d74628237 100644 --- a/module/product/lang/zh-tw.php +++ b/module/product/lang/zh-tw.php @@ -3,7 +3,7 @@ * The product module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 dd6871899a..71c3632f5b 100644 --- a/module/product/model.php +++ b/module/product/model.php @@ -3,7 +3,7 @@ * The model file of product module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/all.html.php b/module/product/view/all.html.php index 7b29353309..fd01baae99 100644 --- a/module/product/view/all.html.php +++ b/module/product/view/all.html.php @@ -3,7 +3,7 @@ * The html productlist file of productlist method of product module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yangyang Shi * @package ZenTaoPMS * @version $Id diff --git a/module/product/view/batchedit.html.php b/module/product/view/batchedit.html.php index 5ff2efc7e4..3c66baaa1c 100755 --- a/module/product/view/batchedit.html.php +++ b/module/product/view/batchedit.html.php @@ -3,7 +3,7 @@ * The batch edit file of product module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package ZenTaoPMS * @version $Id$ diff --git a/module/product/view/browse.html.php b/module/product/view/browse.html.php index a92adadb01..56c8bc8ad5 100644 --- a/module/product/view/browse.html.php +++ b/module/product/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of product module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/build.html.php b/module/product/view/build.html.php index 97c8302663..d596a2e558 100644 --- a/module/product/view/build.html.php +++ b/module/product/view/build.html.php @@ -3,7 +3,7 @@ * The build view file of product module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package product * @version $Id diff --git a/module/product/view/close.html.php b/module/product/view/close.html.php index c9d7ca5a85..c7f0825a6b 100644 --- a/module/product/view/close.html.php +++ b/module/product/view/close.html.php @@ -3,7 +3,7 @@ * The close file of project module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 f6ee68c235..f1b946f36d 100644 --- a/module/product/view/create.html.php +++ b/module/product/view/create.html.php @@ -3,7 +3,7 @@ * The create view of product module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package product * @version $Id: create.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/product/view/dashboard.html.php b/module/product/view/dashboard.html.php index 7b814901ff..262bf4e010 100644 --- a/module/product/view/dashboard.html.php +++ b/module/product/view/dashboard.html.php @@ -3,7 +3,7 @@ * The view view of product module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package product * @version $Id: view.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/product/view/dynamic.html.php b/module/product/view/dynamic.html.php index 22a202c115..a1b485e2b9 100755 --- a/module/product/view/dynamic.html.php +++ b/module/product/view/dynamic.html.php @@ -3,7 +3,7 @@ * The action->dynamic view file of dashboard module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 ab03001dbb..c1a0489139 100644 --- a/module/product/view/edit.html.php +++ b/module/product/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view of product module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package product * @version $Id: edit.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/product/view/export.html.php b/module/product/view/export.html.php index c599799e2b..4ee856ab8c 100644 --- a/module/product/view/export.html.php +++ b/module/product/view/export.html.php @@ -3,7 +3,7 @@ * The export view file of product module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package product * @version $Id$ diff --git a/module/product/view/index.html.php b/module/product/view/index.html.php index 476ec8f915..32d3126d70 100644 --- a/module/product/view/index.html.php +++ b/module/product/view/index.html.php @@ -3,7 +3,7 @@ * The index view file of product module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package product * @version $Id$ diff --git a/module/product/view/kanban.html.php b/module/product/view/kanban.html.php index 6e9228e03e..7820cd0f7e 100644 --- a/module/product/view/kanban.html.php +++ b/module/product/view/kanban.html.php @@ -3,7 +3,7 @@ * The html product kanban file of kanban method of product module of ZenTaoPMS. * * @copyright Copyright 2021-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Hao Sun * @package ZenTaoPMS * @version $Id diff --git a/module/product/view/manageline.html.php b/module/product/view/manageline.html.php index d2e32023d8..2a9e8bbfee 100644 --- a/module/product/view/manageline.html.php +++ b/module/product/view/manageline.html.php @@ -3,7 +3,7 @@ * The html productlist file of productlist method of product module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yangyang Shi * @package ZenTaoPMS * @version $Id diff --git a/module/product/view/project.html.php b/module/product/view/project.html.php index 200bffb3c7..8aa91d65fc 100644 --- a/module/product/view/project.html.php +++ b/module/product/view/project.html.php @@ -3,7 +3,7 @@ * The html template file of index method of index module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 fdfb13fba3..d6f6e98a73 100644 --- a/module/product/view/roadmap.html.php +++ b/module/product/view/roadmap.html.php @@ -3,7 +3,7 @@ * The roadmap view file of product module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package product * @version $Id: roadmap.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/product/view/showerrornone.html.php b/module/product/view/showerrornone.html.php index 1e14ec5acd..14cdb6e4da 100644 --- a/module/product/view/showerrornone.html.php +++ b/module/product/view/showerrornone.html.php @@ -3,7 +3,7 @@ * The none view file of product module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package product * @version $Id$ diff --git a/module/product/view/view.html.php b/module/product/view/view.html.php index 9a092582f1..a263b9f767 100644 --- a/module/product/view/view.html.php +++ b/module/product/view/view.html.php @@ -3,7 +3,7 @@ * The view view of product module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 9f1f2335d5..4ab9a2f4f9 100644 --- a/module/productplan/control.php +++ b/module/productplan/control.php @@ -3,7 +3,7 @@ * The control file of productplan module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/de.php b/module/productplan/lang/de.php index f2cc6ab8b5..c35344d0c6 100644 --- a/module/productplan/lang/de.php +++ b/module/productplan/lang/de.php @@ -3,7 +3,7 @@ * The productplan module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/en.php b/module/productplan/lang/en.php index d2ec557010..91185d2618 100644 --- a/module/productplan/lang/en.php +++ b/module/productplan/lang/en.php @@ -3,7 +3,7 @@ * The productplan module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/fr.php b/module/productplan/lang/fr.php index c2ce442c2a..cfb814d55e 100644 --- a/module/productplan/lang/fr.php +++ b/module/productplan/lang/fr.php @@ -3,7 +3,7 @@ * The productplan module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 13835ce068..71fcabf9ba 100644 --- a/module/productplan/lang/zh-cn.php +++ b/module/productplan/lang/zh-cn.php @@ -3,7 +3,7 @@ * The productplan module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 36feac7ab2..c61e96f418 100644 --- a/module/productplan/lang/zh-tw.php +++ b/module/productplan/lang/zh-tw.php @@ -3,7 +3,7 @@ * The productplan module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 0f443f65fc..cd3aad00d5 100644 --- a/module/productplan/model.php +++ b/module/productplan/model.php @@ -3,7 +3,7 @@ * The model file of productplan module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/batchchangestatus.html.php b/module/productplan/view/batchchangestatus.html.php index cb806191dd..94d08de44f 100755 --- a/module/productplan/view/batchchangestatus.html.php +++ b/module/productplan/view/batchchangestatus.html.php @@ -3,7 +3,7 @@ * The batch close view of productplan module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Xin Zhou * @package productplan * @version $Id$ diff --git a/module/productplan/view/batchedit.html.php b/module/productplan/view/batchedit.html.php index 28705b43d8..9ddb2d21b1 100644 --- a/module/productplan/view/batchedit.html.php +++ b/module/productplan/view/batchedit.html.php @@ -3,7 +3,7 @@ * The batchEdit view file of productplan module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package productplan * @version $Id$ diff --git a/module/productplan/view/browse.html.php b/module/productplan/view/browse.html.php index c206d4b389..62624f0cf4 100644 --- a/module/productplan/view/browse.html.php +++ b/module/productplan/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of plan module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/browsebykanban.html.php b/module/productplan/view/browsebykanban.html.php index e5e3e8a0fb..d0bd238a4c 100644 --- a/module/productplan/view/browsebykanban.html.php +++ b/module/productplan/view/browsebykanban.html.php @@ -3,7 +3,7 @@ * The browsebykanban view file of plan module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package plan * @version $Id: browsebykanban.html.php 4707 2021-12-27 16:07:41Z $ diff --git a/module/productplan/view/browsebylist.html.php b/module/productplan/view/browsebylist.html.php index 316cc62398..b55be677e0 100644 --- a/module/productplan/view/browsebylist.html.php +++ b/module/productplan/view/browsebylist.html.php @@ -2,7 +2,7 @@ /** * The browsebylist view file of plan module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package plan * @version $Id: browsebylist.html.php 4707 2013-05-02 06:57:41Z chencongzhi520@gmail.com $ diff --git a/module/productplan/view/close.html.php b/module/productplan/view/close.html.php index 04aae9a226..c241f86e15 100644 --- a/module/productplan/view/close.html.php +++ b/module/productplan/view/close.html.php @@ -3,7 +3,7 @@ * The close view file of productplan module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Xin Zhou * @package productplan * @link http://www.zentao.net diff --git a/module/productplan/view/create.html.php b/module/productplan/view/create.html.php index d89262cc47..41527ef8dc 100644 --- a/module/productplan/view/create.html.php +++ b/module/productplan/view/create.html.php @@ -3,7 +3,7 @@ * The create view of productplan module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 5ffab0ae95..2335ac36ad 100644 --- a/module/productplan/view/edit.html.php +++ b/module/productplan/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view of productplan module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 5468ec1fd4..e46cfdb781 100644 --- a/module/productplan/view/linkbug.html.php +++ b/module/productplan/view/linkbug.html.php @@ -3,7 +3,7 @@ * The link bug view of productplan module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 b2c29697fc..7bdb9727fa 100644 --- a/module/productplan/view/linkstory.html.php +++ b/module/productplan/view/linkstory.html.php @@ -3,7 +3,7 @@ * The link story view of productplan module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/start.html.php b/module/productplan/view/start.html.php index 48e63d5ea0..633f57951b 100644 --- a/module/productplan/view/start.html.php +++ b/module/productplan/view/start.html.php @@ -3,7 +3,7 @@ * The start view of productplan module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author MengYi Liu * @package productplan * @version $Id: start.html.php 4728 2021-12-28 09:57:34Z $ diff --git a/module/productplan/view/view.html.php b/module/productplan/view/view.html.php index a2afbd0b85..46de339e8b 100644 --- a/module/productplan/view/view.html.php +++ b/module/productplan/view/view.html.php @@ -3,7 +3,7 @@ * The view of productplan module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package productplan * @version $Id: view.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/program/view/browse.html.php b/module/program/view/browse.html.php index 87f36f0e7f..866f83b314 100644 --- a/module/program/view/browse.html.php +++ b/module/program/view/browse.html.php @@ -3,7 +3,7 @@ * The html template file of PGMBrowse method of program module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id diff --git a/module/program/view/create.html.php b/module/program/view/create.html.php index 97f4289b22..41f1888441 100644 --- a/module/program/view/create.html.php +++ b/module/program/view/create.html.php @@ -3,7 +3,7 @@ * The pgmcreate view of project module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package project * @version $Id: pgmcreate.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/program/view/createstakeholder.html.php b/module/program/view/createstakeholder.html.php index e4b020d943..e56ee6b93e 100644 --- a/module/program/view/createstakeholder.html.php +++ b/module/program/view/createstakeholder.html.php @@ -3,7 +3,7 @@ * The create stakeholder view of program module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package product * @version $Id: browse.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/program/view/edit.html.php b/module/program/view/edit.html.php index c9427131b6..97c72caec3 100644 --- a/module/program/view/edit.html.php +++ b/module/program/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view of program module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package program * @version $Id: create.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/program/view/export.html.php b/module/program/view/export.html.php index b1c32b73eb..cffa8aa8f6 100644 --- a/module/program/view/export.html.php +++ b/module/program/view/export.html.php @@ -3,7 +3,7 @@ * The export view file of project module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package project * @version $Id$ diff --git a/module/program/view/index.html.php b/module/program/view/index.html.php index 842d271025..56395fcf7b 100644 --- a/module/program/view/index.html.php +++ b/module/program/view/index.html.php @@ -3,7 +3,7 @@ * The html template file of index method of index module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: index.html.php 5094 2013-07-10 08:46:15Z chencongzhi520@gmail.com $ diff --git a/module/program/view/kanban.html.php b/module/program/view/kanban.html.php index 2ade64655c..c8c2223832 100644 --- a/module/program/view/kanban.html.php +++ b/module/program/view/kanban.html.php @@ -3,7 +3,7 @@ * The html product kanban file of kanban method of product module of ZenTaoPMS. * * @copyright Copyright 2021-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Hao Sun * @package ZenTaoPMS * @version $Id diff --git a/module/program/view/product.html.php b/module/program/view/product.html.php index 6618fc12d3..f689619cd2 100644 --- a/module/program/view/product.html.php +++ b/module/program/view/product.html.php @@ -3,7 +3,7 @@ * The html product list file of product method of program module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yangyang Shi * @package ZenTaoPMS * @version $Id diff --git a/module/program/view/project.html.php b/module/program/view/project.html.php index f5f336d3d9..07f321a54c 100644 --- a/module/program/view/project.html.php +++ b/module/program/view/project.html.php @@ -3,7 +3,7 @@ * The pgmproject view file of program module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package program * @version $Id: pgmproject.html.php 4769 2013-05-05 07:24:21Z wwccss $ diff --git a/module/program/view/stakeholder.html.php b/module/program/view/stakeholder.html.php index 86a6ebe8d4..1ddadb4c97 100644 --- a/module/program/view/stakeholder.html.php +++ b/module/program/view/stakeholder.html.php @@ -3,7 +3,7 @@ * The stakeholder view of program module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package product * @version $Id: browse.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/programplan/control.php b/module/programplan/control.php index 08884b9877..c7341a4415 100644 --- a/module/programplan/control.php +++ b/module/programplan/control.php @@ -3,7 +3,7 @@ * The control file of programplan currentModule of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package programplan * @version $Id: control.php 5107 2013-07-12 01:46:12Z chencongzhi520@gmail.com $ diff --git a/module/programplan/lang/de.php b/module/programplan/lang/de.php index 37a10b3e13..a510addfb1 100644 --- a/module/programplan/lang/de.php +++ b/module/programplan/lang/de.php @@ -3,7 +3,7 @@ * The programplan module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package programplan * @version $Id: en.php 4729 2013-05-03 07:53:55Z chencongzhi520@gmail.com $ diff --git a/module/programplan/lang/en.php b/module/programplan/lang/en.php index b9ead0dd32..bf377f1fe6 100644 --- a/module/programplan/lang/en.php +++ b/module/programplan/lang/en.php @@ -3,7 +3,7 @@ * The programplan module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package programplan * @version $Id: en.php 4729 2013-05-03 07:53:55Z chencongzhi520@gmail.com $ diff --git a/module/programplan/lang/fr.php b/module/programplan/lang/fr.php index 37a10b3e13..a510addfb1 100644 --- a/module/programplan/lang/fr.php +++ b/module/programplan/lang/fr.php @@ -3,7 +3,7 @@ * The programplan module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package programplan * @version $Id: en.php 4729 2013-05-03 07:53:55Z chencongzhi520@gmail.com $ diff --git a/module/programplan/lang/vi.php b/module/programplan/lang/vi.php index 37a10b3e13..a510addfb1 100644 --- a/module/programplan/lang/vi.php +++ b/module/programplan/lang/vi.php @@ -3,7 +3,7 @@ * The programplan module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package programplan * @version $Id: en.php 4729 2013-05-03 07:53:55Z chencongzhi520@gmail.com $ diff --git a/module/programplan/lang/zh-cn.php b/module/programplan/lang/zh-cn.php index 2f5390d35e..80cf9ec318 100644 --- a/module/programplan/lang/zh-cn.php +++ b/module/programplan/lang/zh-cn.php @@ -3,7 +3,7 @@ * The programplan module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package programplan * @version $Id: zh-cn.php 4729 2013-05-03 07:53:55Z chencongzhi520@gmail.com $ diff --git a/module/programplan/lang/zh-tw.php b/module/programplan/lang/zh-tw.php index 3a638b8c2c..adca9c3c0e 100644 --- a/module/programplan/lang/zh-tw.php +++ b/module/programplan/lang/zh-tw.php @@ -3,7 +3,7 @@ * The programplan module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package programplan * @version $Id: zh-tw.php 4729 2013-05-03 07:53:55Z chencongzhi520@gmail.com $ diff --git a/module/programplan/model.php b/module/programplan/model.php index ed8eb2df8a..6fd97294ba 100755 --- a/module/programplan/model.php +++ b/module/programplan/model.php @@ -3,7 +3,7 @@ * The model file of programplan module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package programplan * @version $Id: model.php 5079 2013-07-10 00:44:34Z chencongzhi520@gmail.com $ diff --git a/module/programplan/view/browse.html.php b/module/programplan/view/browse.html.php index b38b2cf2d9..db2d1507b9 100644 --- a/module/programplan/view/browse.html.php +++ b/module/programplan/view/browse.html.php @@ -3,7 +3,7 @@ * The browse of programplan module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package programplan * @version $Id: browse.html.php 4903 2013-06-26 05:32:59Z wyd621@gmail.com $ diff --git a/module/programplan/view/create.html.php b/module/programplan/view/create.html.php index c95a562a64..8f6e2231f8 100644 --- a/module/programplan/view/create.html.php +++ b/module/programplan/view/create.html.php @@ -3,7 +3,7 @@ * The create of programplan module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package programplan * @version $Id: create.html.php 4903 2013-06-26 05:32:59Z wyd621@gmail.com $ diff --git a/module/programplan/view/edit.html.php b/module/programplan/view/edit.html.php index e9141ff653..f03876fa8b 100644 --- a/module/programplan/view/edit.html.php +++ b/module/programplan/view/edit.html.php @@ -3,7 +3,7 @@ * The edit of programplan module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package programplan * @version $Id: edit.html.php 4903 2013-06-26 05:32:59Z wyd621@gmail.com $ diff --git a/module/programplan/view/gantt.html.php b/module/programplan/view/gantt.html.php index e900dd3c77..3a48c367e9 100644 --- a/module/programplan/view/gantt.html.php +++ b/module/programplan/view/gantt.html.php @@ -3,7 +3,7 @@ * The gantt of programplan module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package programplan * @version $Id: gantt.html.php 4903 2013-06-26 05:32:59Z wyd621@gmail.com $ diff --git a/module/programplan/view/list.html.php b/module/programplan/view/list.html.php index 4a2200b0b6..5edec61319 100644 --- a/module/programplan/view/list.html.php +++ b/module/programplan/view/list.html.php @@ -3,7 +3,7 @@ * The list of programplan module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package programplan * @version $Id: list.html.php 4903 2013-06-26 05:32:59Z wyd621@gmail.com $ diff --git a/module/project/view/activate.html.php b/module/project/view/activate.html.php index 082fe99d56..6880924684 100644 --- a/module/project/view/activate.html.php +++ b/module/project/view/activate.html.php @@ -3,7 +3,7 @@ * The suspend file of project module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 25a066f270..09317bfe03 100644 --- a/module/project/view/batchedit.html.php +++ b/module/project/view/batchedit.html.php @@ -3,7 +3,7 @@ * The prjbatchedit view file of project module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package project * @version $Id: prjbatchedit.html.php 4769 2021-02-020 11:13:21Z $ diff --git a/module/project/view/browse.html.php b/module/project/view/browse.html.php index 03552f0b13..7058bc02d9 100644 --- a/module/project/view/browse.html.php +++ b/module/project/view/browse.html.php @@ -3,7 +3,7 @@ * The prjbrowse view file of project module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package project * @version $Id: prjbrowse.html.php 4769 2013-05-05 07:24:21Z wwccss $ diff --git a/module/project/view/browsebycard.html.php b/module/project/view/browsebycard.html.php index 4b5c860d15..c17b996bf2 100644 --- a/module/project/view/browsebycard.html.php +++ b/module/project/view/browsebycard.html.php @@ -3,7 +3,7 @@ * The browsebycard view file of project module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package project * @version $Id: browsebycard.html.php 4769 2021-07-23 11:29:21Z $ diff --git a/module/project/view/browsebylist.html.php b/module/project/view/browsebylist.html.php index 7de66d983b..7d4c70bea8 100644 --- a/module/project/view/browsebylist.html.php +++ b/module/project/view/browsebylist.html.php @@ -3,7 +3,7 @@ * The browsebylist view file of project module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package project * @version $Id: browsebylist.html.php 4769 2021-07-23 11:16:21Z $ diff --git a/module/project/view/bug.html.php b/module/project/view/bug.html.php index 7f20454148..d65f47a987 100644 --- a/module/project/view/bug.html.php +++ b/module/project/view/bug.html.php @@ -3,7 +3,7 @@ * The bug view file of project module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 1efdd1c355..77fb579822 100644 --- a/module/project/view/build.html.php +++ b/module/project/view/build.html.php @@ -3,7 +3,7 @@ * The build view file of project module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/close.html.php b/module/project/view/close.html.php index 0fd52dabdd..9d9f3c291e 100644 --- a/module/project/view/close.html.php +++ b/module/project/view/close.html.php @@ -3,7 +3,7 @@ * The suspend file of project module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/create.html.php b/module/project/view/create.html.php index 444a8cf859..4a314a448c 100755 --- a/module/project/view/create.html.php +++ b/module/project/view/create.html.php @@ -3,7 +3,7 @@ * The create view file of project module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package project * @version $Id: create.html.php 4769 2013-05-05 07:24:21Z wwccss $ diff --git a/module/project/view/createstakeholder.html.php b/module/project/view/createstakeholder.html.php index 969b0f7322..8ab38af548 100644 --- a/module/project/view/createstakeholder.html.php +++ b/module/project/view/createstakeholder.html.php @@ -3,7 +3,7 @@ * The create stakeholder view of project module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package product * @version $Id: browse.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/project/view/dynamic.html.php b/module/project/view/dynamic.html.php index 11e7b048d5..54c5ead26f 100755 --- a/module/project/view/dynamic.html.php +++ b/module/project/view/dynamic.html.php @@ -3,7 +3,7 @@ * The action->dynamic view file of dashboard module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 741b6ac9e2..dc1572bd5b 100755 --- a/module/project/view/edit.html.php +++ b/module/project/view/edit.html.php @@ -3,7 +3,7 @@ * The prjedit view file of project module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package project * @version $Id diff --git a/module/project/view/export.html.php b/module/project/view/export.html.php index b1c32b73eb..cffa8aa8f6 100644 --- a/module/project/view/export.html.php +++ b/module/project/view/export.html.php @@ -3,7 +3,7 @@ * The export view file of project module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package project * @version $Id$ diff --git a/module/project/view/group.html.php b/module/project/view/group.html.php index 827b65f735..684d18ba80 100644 --- a/module/project/view/group.html.php +++ b/module/project/view/group.html.php @@ -3,7 +3,7 @@ * The prigroup view file of project module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package project * @version $Id: prigroup.html.php 4769 2013-05-05 07:24:21Z wwccss $ diff --git a/module/project/view/index.html.php b/module/project/view/index.html.php index f9ec0d0536..37257bd067 100644 --- a/module/project/view/index.html.php +++ b/module/project/view/index.html.php @@ -3,7 +3,7 @@ * The html template file of index method of index module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/kanban.html.php b/module/project/view/kanban.html.php index 661a1f40a1..9319fd1121 100644 --- a/module/project/view/kanban.html.php +++ b/module/project/view/kanban.html.php @@ -3,7 +3,7 @@ * The html product kanban file of kanban method of product module of ZenTaoPMS. * * @copyright Copyright 2021-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Hao Sun * @package ZenTaoPMS * @version $Id diff --git a/module/project/view/managepriv.html.php b/module/project/view/managepriv.html.php index 789745151a..16a63d8b34 100644 --- a/module/project/view/managepriv.html.php +++ b/module/project/view/managepriv.html.php @@ -3,7 +3,7 @@ * The manage privilege view of group module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package group * @version $Id: managepriv.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/project/view/manageproducts.html.php b/module/project/view/manageproducts.html.php index 433de3a69d..8b3e43d17f 100644 --- a/module/project/view/manageproducts.html.php +++ b/module/project/view/manageproducts.html.php @@ -3,7 +3,7 @@ * The manage prjmanageproducts view of project module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package project * @version $Id diff --git a/module/project/view/manageview.html.php b/module/project/view/manageview.html.php index 7c260cfc60..9f91ec410b 100644 --- a/module/project/view/manageview.html.php +++ b/module/project/view/manageview.html.php @@ -3,7 +3,7 @@ * The manage view by project view of group module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package group * @version $Id: managepriv.html.php 1517 2011-03-07 10:02:57Z wwccss $ diff --git a/module/project/view/programtitle.html.php b/module/project/view/programtitle.html.php index 2bc8ae2eca..ede2754b34 100644 --- a/module/project/view/programtitle.html.php +++ b/module/project/view/programtitle.html.php @@ -3,7 +3,7 @@ * The prjprojecttitle view file of project module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package project * @version $Id: prjprojecttitle.html.php 4769 2013-05-05 07:24:21Z wwccss $ diff --git a/module/project/view/start.html.php b/module/project/view/start.html.php index b54562efab..5fb7d710d1 100644 --- a/module/project/view/start.html.php +++ b/module/project/view/start.html.php @@ -3,7 +3,7 @@ * The prjstart view file of project module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package project * @version $Id: prjstart.html.php 4769 2013-05-05 07:24:21Z wwccss $ diff --git a/module/project/view/suspend.html.php b/module/project/view/suspend.html.php index fefae82bd5..13af8429c0 100644 --- a/module/project/view/suspend.html.php +++ b/module/project/view/suspend.html.php @@ -3,7 +3,7 @@ * The suspend file of project module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/team.html.php b/module/project/view/team.html.php index 527dac4e7f..d07eed789c 100644 --- a/module/project/view/team.html.php +++ b/module/project/view/team.html.php @@ -3,7 +3,7 @@ * The team view file of project module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Qiyu Xie * @package project * @version $Id: team.html.php 4143 2021-08-11 11:01:06Z $ diff --git a/module/project/view/testtask.html.php b/module/project/view/testtask.html.php index f0124f1269..459b1db36f 100644 --- a/module/project/view/testtask.html.php +++ b/module/project/view/testtask.html.php @@ -3,7 +3,7 @@ * The browse view file of testtask module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 cca23ade7a..d047d7516a 100644 --- a/module/project/view/view.html.php +++ b/module/project/view/view.html.php @@ -3,7 +3,7 @@ * The view method view file of project module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package project * @version $Id: view.html.php 4594 2013-03-13 06:16:02Z wyd621@gmail.com $ diff --git a/module/projectbuild/lang/de.php b/module/projectbuild/lang/de.php index 91d431abba..4cab34b277 100644 --- a/module/projectbuild/lang/de.php +++ b/module/projectbuild/lang/de.php @@ -3,7 +3,7 @@ * The project build module en file of ZenTaoPMS. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yuchun Li * @package projectrelease * @version $Id: zh-cn.php 4129 2020-11-27 01:58:14Z wwccss $ diff --git a/module/projectbuild/lang/en.php b/module/projectbuild/lang/en.php index 91d431abba..4cab34b277 100644 --- a/module/projectbuild/lang/en.php +++ b/module/projectbuild/lang/en.php @@ -3,7 +3,7 @@ * The project build module en file of ZenTaoPMS. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yuchun Li * @package projectrelease * @version $Id: zh-cn.php 4129 2020-11-27 01:58:14Z wwccss $ diff --git a/module/projectbuild/lang/fr.php b/module/projectbuild/lang/fr.php index 91d431abba..4cab34b277 100644 --- a/module/projectbuild/lang/fr.php +++ b/module/projectbuild/lang/fr.php @@ -3,7 +3,7 @@ * The project build module en file of ZenTaoPMS. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yuchun Li * @package projectrelease * @version $Id: zh-cn.php 4129 2020-11-27 01:58:14Z wwccss $ diff --git a/module/projectbuild/lang/vi.php b/module/projectbuild/lang/vi.php index 91d431abba..4cab34b277 100644 --- a/module/projectbuild/lang/vi.php +++ b/module/projectbuild/lang/vi.php @@ -3,7 +3,7 @@ * The project build module en file of ZenTaoPMS. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yuchun Li * @package projectrelease * @version $Id: zh-cn.php 4129 2020-11-27 01:58:14Z wwccss $ diff --git a/module/projectbuild/lang/zh-cn.php b/module/projectbuild/lang/zh-cn.php index 802e90f069..757b4af2ec 100644 --- a/module/projectbuild/lang/zh-cn.php +++ b/module/projectbuild/lang/zh-cn.php @@ -3,7 +3,7 @@ * The project build module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yuchun Li * @package projectrelease * @version $Id: zh-cn.php 4129 2020-11-27 01:58:14Z wwccss $ diff --git a/module/projectbuild/lang/zh-tw.php b/module/projectbuild/lang/zh-tw.php index a3e2b33848..4d282c0f5f 100644 --- a/module/projectbuild/lang/zh-tw.php +++ b/module/projectbuild/lang/zh-tw.php @@ -3,7 +3,7 @@ * The project build module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2020 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yuchun Li * @package projectrelease * @version $Id: zh-tw.php 4129 2020-11-27 01:58:14Z wwccss $ diff --git a/module/projectrelease/control.php b/module/projectrelease/control.php index eb2ffe6ede..47035b9c25 100644 --- a/module/projectrelease/control.php +++ b/module/projectrelease/control.php @@ -3,7 +3,7 @@ * The control file of release module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package release * @version $Id: control.php 4178 2013-01-20 09:32:11Z wwccss $ diff --git a/module/projectrelease/lang/de.php b/module/projectrelease/lang/de.php index 6244d80627..eaf4dbe0d3 100644 --- a/module/projectrelease/lang/de.php +++ b/module/projectrelease/lang/de.php @@ -3,7 +3,7 @@ * The release module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yuchun Li * @package release * @version $Id: zh-cn.php 4129 2020-11-27 01:58:14Z wwccss $ diff --git a/module/projectrelease/lang/en.php b/module/projectrelease/lang/en.php index ac2778188d..6a0f04de94 100644 --- a/module/projectrelease/lang/en.php +++ b/module/projectrelease/lang/en.php @@ -3,7 +3,7 @@ * The release module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yuchun Li * @package release * @version $Id: zh-cn.php 4129 2020-11-27 01:58:14Z wwccss $ diff --git a/module/projectrelease/lang/fr.php b/module/projectrelease/lang/fr.php index 083d0258fb..db2436b343 100644 --- a/module/projectrelease/lang/fr.php +++ b/module/projectrelease/lang/fr.php @@ -3,7 +3,7 @@ * The release module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yuchun Li * @package release * @version $Id: zh-cn.php 4129 2020-11-27 01:58:14Z wwccss $ diff --git a/module/projectrelease/lang/vi.php b/module/projectrelease/lang/vi.php index 0e3ada97dc..5052d28d41 100644 --- a/module/projectrelease/lang/vi.php +++ b/module/projectrelease/lang/vi.php @@ -3,7 +3,7 @@ * The release module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yuchun Li * @package release * @version $Id: zh-cn.php 4129 2020-11-27 01:58:14Z wwccss $ diff --git a/module/projectrelease/lang/zh-cn.php b/module/projectrelease/lang/zh-cn.php index baf428e459..7f4f9e8d59 100644 --- a/module/projectrelease/lang/zh-cn.php +++ b/module/projectrelease/lang/zh-cn.php @@ -3,7 +3,7 @@ * The release module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yuchun Li * @package release * @version $Id: zh-cn.php 4129 2020-11-27 01:58:14Z wwccss $ diff --git a/module/projectrelease/lang/zh-tw.php b/module/projectrelease/lang/zh-tw.php index c5615ae7e1..b51af122f0 100644 --- a/module/projectrelease/lang/zh-tw.php +++ b/module/projectrelease/lang/zh-tw.php @@ -3,7 +3,7 @@ * The release module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2020 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yuchun Li * @package release * @version $Id: zh-tw.php 4129 2020-11-27 01:58:14Z wwccss $ diff --git a/module/projectrelease/model.php b/module/projectrelease/model.php index 5f39246a35..e7211f1165 100644 --- a/module/projectrelease/model.php +++ b/module/projectrelease/model.php @@ -3,7 +3,7 @@ * The model file of release module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package release * @version $Id: model.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/projectrelease/view/browse.html.php b/module/projectrelease/view/browse.html.php index d1cdf912d6..8f5eea32ac 100644 --- a/module/projectrelease/view/browse.html.php +++ b/module/projectrelease/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of release module of ZenTaoPMS. * * @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yuchun Li * @package release * @version $Id: browse.html.php 4129 2020-11-25 11:58:14Z wwccss $ diff --git a/module/projectrelease/view/create.html.php b/module/projectrelease/view/create.html.php index 2f1bc25005..d2d593070d 100644 --- a/module/projectrelease/view/create.html.php +++ b/module/projectrelease/view/create.html.php @@ -3,7 +3,7 @@ * The create view of release module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package release * @version $Id: create.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/projectrelease/view/edit.html.php b/module/projectrelease/view/edit.html.php index 5487ac56fc..1856280824 100644 --- a/module/projectrelease/view/edit.html.php +++ b/module/projectrelease/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view of release module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package release * @version $Id: edit.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/projectrelease/view/export.html.php b/module/projectrelease/view/export.html.php index b82858bee7..879cde6537 100755 --- a/module/projectrelease/view/export.html.php +++ b/module/projectrelease/view/export.html.php @@ -3,7 +3,7 @@ * The export stories or bugs to html view file of release module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/projectrelease/view/linkbug.html.php b/module/projectrelease/view/linkbug.html.php index 9ed6c81f62..b18043f7e9 100644 --- a/module/projectrelease/view/linkbug.html.php +++ b/module/projectrelease/view/linkbug.html.php @@ -3,7 +3,7 @@ * The link bug view of release module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package release * @version $Id: linkbug.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/projectrelease/view/linkstory.html.php b/module/projectrelease/view/linkstory.html.php index c6caa3ac06..b2d0b2f6fc 100644 --- a/module/projectrelease/view/linkstory.html.php +++ b/module/projectrelease/view/linkstory.html.php @@ -3,7 +3,7 @@ * The link story view of release module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package release * @version $Id: linkstory.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/projectrelease/view/notify.html.php b/module/projectrelease/view/notify.html.php index 58c4b23017..17307c4fad 100644 --- a/module/projectrelease/view/notify.html.php +++ b/module/projectrelease/view/notify.html.php @@ -3,7 +3,7 @@ * The notify file of release module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Guangming Sun * @package bug * @version $Id: notify.html.php 4129 2021-12-01 01:58:14Z wwccss $ diff --git a/module/projectrelease/view/view.html.php b/module/projectrelease/view/view.html.php index 4f6d1ce6e1..bd57d2881e 100644 --- a/module/projectrelease/view/view.html.php +++ b/module/projectrelease/view/view.html.php @@ -3,7 +3,7 @@ * The view file of release module's view method of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package release * @version $Id: view.html.php 4386 2013-02-19 07:37:45Z chencongzhi520@gmail.com $ diff --git a/module/projectstory/model.php b/module/projectstory/model.php index 834b23e358..0c888300e9 100644 --- a/module/projectstory/model.php +++ b/module/projectstory/model.php @@ -3,7 +3,7 @@ * The model file of projectStory module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package projectStory * @version $Id diff --git a/module/qa/control.php b/module/qa/control.php index f520f1c4d6..b532d065e7 100644 --- a/module/qa/control.php +++ b/module/qa/control.php @@ -3,7 +3,7 @@ * The control file of qa module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package qa * @version $Id: control.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/qa/lang/de.php b/module/qa/lang/de.php index 6becfe71c6..33d041cfd5 100644 --- a/module/qa/lang/de.php +++ b/module/qa/lang/de.php @@ -3,7 +3,7 @@ * The qa module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package company * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/qa/lang/en.php b/module/qa/lang/en.php index 82934725fa..1a96a8a47c 100644 --- a/module/qa/lang/en.php +++ b/module/qa/lang/en.php @@ -3,7 +3,7 @@ * The qa module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package company * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/qa/lang/fr.php b/module/qa/lang/fr.php index 2ca6ab5c9f..e963098bd8 100644 --- a/module/qa/lang/fr.php +++ b/module/qa/lang/fr.php @@ -3,7 +3,7 @@ * The qa module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 eb6b7390cf..7006910f40 100644 --- a/module/qa/lang/zh-cn.php +++ b/module/qa/lang/zh-cn.php @@ -3,7 +3,7 @@ * The qa module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 1be7510bcf..1dc8a10390 100644 --- a/module/qa/lang/zh-tw.php +++ b/module/qa/lang/zh-tw.php @@ -3,7 +3,7 @@ * The qa module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 92e8924375..bcf0c5144f 100644 --- a/module/qa/model.php +++ b/module/qa/model.php @@ -3,7 +3,7 @@ * The model file of qa module of ZenTaoCMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package qa * @version $Id$ diff --git a/module/qa/view/index.html.php b/module/qa/view/index.html.php index e4e30165b4..ad50f4f654 100644 --- a/module/qa/view/index.html.php +++ b/module/qa/view/index.html.php @@ -3,7 +3,7 @@ * The index view file of company module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 105f01bf84..88b9f90428 100644 --- a/module/release/control.php +++ b/module/release/control.php @@ -3,7 +3,7 @@ * The control file of release module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package release * @version $Id: control.php 4178 2013-01-20 09:32:11Z wwccss $ diff --git a/module/release/lang/de.php b/module/release/lang/de.php index d131e43f06..201b41bfeb 100644 --- a/module/release/lang/de.php +++ b/module/release/lang/de.php @@ -3,7 +3,7 @@ * The release module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package release * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/release/lang/en.php b/module/release/lang/en.php index 5ebeea5f34..4515046dd2 100644 --- a/module/release/lang/en.php +++ b/module/release/lang/en.php @@ -3,7 +3,7 @@ * The release module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package release * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/release/lang/fr.php b/module/release/lang/fr.php index f1d3203f0d..03f0aba8ba 100644 --- a/module/release/lang/fr.php +++ b/module/release/lang/fr.php @@ -3,7 +3,7 @@ * The release module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 149a5921c2..82ac63726b 100644 --- a/module/release/lang/zh-cn.php +++ b/module/release/lang/zh-cn.php @@ -3,7 +3,7 @@ * The release module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 a6243c3f1b..7ad01d0a80 100644 --- a/module/release/lang/zh-tw.php +++ b/module/release/lang/zh-tw.php @@ -3,7 +3,7 @@ * The release module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 67a0c2fe0a..6b65153bbc 100644 --- a/module/release/model.php +++ b/module/release/model.php @@ -3,7 +3,7 @@ * The model file of release module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 4444a5242b..4389086d9d 100644 --- a/module/release/view/browse.html.php +++ b/module/release/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of release module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 70466f980c..006f3d7685 100644 --- a/module/release/view/create.html.php +++ b/module/release/view/create.html.php @@ -3,7 +3,7 @@ * The create view of release module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 7919355340..806dca3bbd 100644 --- a/module/release/view/edit.html.php +++ b/module/release/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view of release module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 b82858bee7..879cde6537 100755 --- a/module/release/view/export.html.php +++ b/module/release/view/export.html.php @@ -3,7 +3,7 @@ * The export stories or bugs to html view file of release module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/release/view/linkbug.html.php b/module/release/view/linkbug.html.php index ac3effbfe9..83766f0ecd 100644 --- a/module/release/view/linkbug.html.php +++ b/module/release/view/linkbug.html.php @@ -3,7 +3,7 @@ * The link bug view of release module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 a2979b2f87..fe4a9e9062 100644 --- a/module/release/view/linkstory.html.php +++ b/module/release/view/linkstory.html.php @@ -3,7 +3,7 @@ * The link story view of release module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/notify.html.php b/module/release/view/notify.html.php index 58c4b23017..17307c4fad 100644 --- a/module/release/view/notify.html.php +++ b/module/release/view/notify.html.php @@ -3,7 +3,7 @@ * The notify file of release module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Guangming Sun * @package bug * @version $Id: notify.html.php 4129 2021-12-01 01:58:14Z wwccss $ diff --git a/module/release/view/sendmail.html.php b/module/release/view/sendmail.html.php index 73ca450be9..4c770ff160 100644 --- a/module/release/view/sendmail.html.php +++ b/module/release/view/sendmail.html.php @@ -3,7 +3,7 @@ * The mail file of release module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package release * @version $Id: sendmail.html.php 867 2021-08-12 13:37:58Z $ diff --git a/module/release/view/view.html.php b/module/release/view/view.html.php index 71a3c84d30..e5a5fb71fe 100644 --- a/module/release/view/view.html.php +++ b/module/release/view/view.html.php @@ -3,7 +3,7 @@ * The view file of release module's view method of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package release * @version $Id: view.html.php 4386 2013-02-19 07:37:45Z chencongzhi520@gmail.com $ diff --git a/module/repo/view/edit.html.php b/module/repo/view/edit.html.php index 31f5e558c3..aa8e1c0cc2 100644 --- a/module/repo/view/edit.html.php +++ b/module/repo/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view file of repo module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package repo * @version $Id$ diff --git a/module/repo/view/maintain.html.php b/module/repo/view/maintain.html.php index 5854740348..7322608fc6 100644 --- a/module/repo/view/maintain.html.php +++ b/module/repo/view/maintain.html.php @@ -3,7 +3,7 @@ * The browse view file of repo module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package repo * @version $Id$ diff --git a/module/repo/view/setrules.html.php b/module/repo/view/setrules.html.php index 9e5c399769..fa7f1f5e6f 100644 --- a/module/repo/view/setrules.html.php +++ b/module/repo/view/setrules.html.php @@ -3,7 +3,7 @@ * The setRules view file of repo module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package repo * @version $Id$ diff --git a/module/report/control.php b/module/report/control.php index 735b387311..54169d2412 100644 --- a/module/report/control.php +++ b/module/report/control.php @@ -3,7 +3,7 @@ * The control file of report module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/de.php b/module/report/lang/de.php index 3ad1a361c2..7c03a03406 100644 --- a/module/report/lang/de.php +++ b/module/report/lang/de.php @@ -3,7 +3,7 @@ * The report module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/en.php b/module/report/lang/en.php index 54f2ce32d1..4ac071ab3d 100644 --- a/module/report/lang/en.php +++ b/module/report/lang/en.php @@ -3,7 +3,7 @@ * The report module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/fr.php b/module/report/lang/fr.php index aacf898479..c0f4db4949 100644 --- a/module/report/lang/fr.php +++ b/module/report/lang/fr.php @@ -3,7 +3,7 @@ * The report module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 18413a8978..2dad8a7c71 100644 --- a/module/report/lang/zh-cn.php +++ b/module/report/lang/zh-cn.php @@ -3,7 +3,7 @@ * The report module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 919635c2c3..52d5fa07f3 100644 --- a/module/report/lang/zh-tw.php +++ b/module/report/lang/zh-tw.php @@ -3,7 +3,7 @@ * The report module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 69047be94a..47952f7bd6 100644 --- a/module/report/model.php +++ b/module/report/model.php @@ -3,7 +3,7 @@ * The model file of report module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package report * @version $Id: model.php 4726 2013-05-03 05:51:27Z chencongzhi520@gmail.com $ diff --git a/module/score/view/reset.html.php b/module/score/view/reset.html.php index 0b8647cf6e..1aeb116b45 100644 --- a/module/score/view/reset.html.php +++ b/module/score/view/reset.html.php @@ -2,7 +2,7 @@ /** * The reset view file of score module of ZenTaoPMS. * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Memory * @package score * @version $Id$ diff --git a/module/score/view/rule.html.php b/module/score/view/rule.html.php index c668e44a9d..e7022912bc 100644 --- a/module/score/view/rule.html.php +++ b/module/score/view/rule.html.php @@ -2,7 +2,7 @@ /** * The reset view file of score module of ZenTaoPMS. * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Memory * @package score * @version $Id$ diff --git a/module/search/control.php b/module/search/control.php index 14425eb982..3ab8650aa6 100644 --- a/module/search/control.php +++ b/module/search/control.php @@ -3,7 +3,7 @@ * The control file of search module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package search * @version $Id: control.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/search/lang/de.php b/module/search/lang/de.php index 6097774685..2e1772e506 100644 --- a/module/search/lang/de.php +++ b/module/search/lang/de.php @@ -3,7 +3,7 @@ * The search module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package search * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/search/lang/en.php b/module/search/lang/en.php index 08ff3534ec..4a910bf497 100644 --- a/module/search/lang/en.php +++ b/module/search/lang/en.php @@ -3,7 +3,7 @@ * The search module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package search * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/search/lang/fr.php b/module/search/lang/fr.php index 47970e082f..4c51f032fd 100644 --- a/module/search/lang/fr.php +++ b/module/search/lang/fr.php @@ -3,7 +3,7 @@ * The search module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 0b2c62b643..7dbf53572e 100644 --- a/module/search/lang/zh-cn.php +++ b/module/search/lang/zh-cn.php @@ -3,7 +3,7 @@ * The search module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 9e7280d345..832c5c0d40 100644 --- a/module/search/lang/zh-tw.php +++ b/module/search/lang/zh-tw.php @@ -3,7 +3,7 @@ * The search module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 5605abff9c..c060a090b3 100644 --- a/module/search/model.php +++ b/module/search/model.php @@ -3,7 +3,7 @@ * The model file of search module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 d2e6cbe7da..af4faf8584 100644 --- a/module/search/view/buildform.html.php +++ b/module/search/view/buildform.html.php @@ -3,7 +3,7 @@ * The buildform view of search module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package search * @version $Id: buildform.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/search/view/savequery.html.php b/module/search/view/savequery.html.php index 6f1de90691..2b787cdf21 100644 --- a/module/search/view/savequery.html.php +++ b/module/search/view/savequery.html.php @@ -3,7 +3,7 @@ * The save query view file of search module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package search * @version $Id$ diff --git a/module/setting/control.php b/module/setting/control.php index 49ac2b1349..2b133c5ae0 100644 --- a/module/setting/control.php +++ b/module/setting/control.php @@ -3,7 +3,7 @@ * The control file of setting of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package setting * @version $Id$ diff --git a/module/setting/model.php b/module/setting/model.php index 1b28086680..f5269a6391 100644 --- a/module/setting/model.php +++ b/module/setting/model.php @@ -3,7 +3,7 @@ * The model file of setting module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package setting * @version $Id: model.php 4976 2013-07-02 08:15:31Z wyd621@gmail.com $ diff --git a/module/sonarqube/control.php b/module/sonarqube/control.php index b40685e53c..1a3d1920fb 100644 --- a/module/sonarqube/control.php +++ b/module/sonarqube/control.php @@ -3,7 +3,7 @@ * The control file of sonarqube module of ZenTaoPMS. * * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yanyi Cao * @package sonarqube * @version $Id: ${FILE_NAME} 5144 2022/1/11 8:55 上午 caoyanyi@easycorp.ltd $ diff --git a/module/sonarqube/model.php b/module/sonarqube/model.php index 60fc32ae02..2d77dfe5d9 100644 --- a/module/sonarqube/model.php +++ b/module/sonarqube/model.php @@ -3,7 +3,7 @@ * The model file of sonarqube module of ZenTaoPMS. * * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yanyi Cao * @package sonarqube * @version $Id: $ diff --git a/module/sonarqube/view/browse.html.php b/module/sonarqube/view/browse.html.php index d13ac1fd5a..f27170c5dd 100644 --- a/module/sonarqube/view/browse.html.php +++ b/module/sonarqube/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of sonarqube module of ZenTaoPMS. * * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yanyi Cao * @package sonarqube * @version $Id$ diff --git a/module/sonarqube/view/browseissue.html.php b/module/sonarqube/view/browseissue.html.php index 1ab0416bc0..a5240f0eef 100644 --- a/module/sonarqube/view/browseissue.html.php +++ b/module/sonarqube/view/browseissue.html.php @@ -3,7 +3,7 @@ * The browse view file of sonarqube module of ZenTaoPMS. * * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Zeng * @package sonarqube * @version $Id$ diff --git a/module/sonarqube/view/browseproject.html.php b/module/sonarqube/view/browseproject.html.php index 5d61030b09..4100918d22 100644 --- a/module/sonarqube/view/browseproject.html.php +++ b/module/sonarqube/view/browseproject.html.php @@ -3,7 +3,7 @@ * The browse view file of sonarqube module of ZenTaoPMS. * * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Zeng * @package sonarqube * @version $Id$ diff --git a/module/sonarqube/view/create.html.php b/module/sonarqube/view/create.html.php index c52905396b..aa14609a25 100644 --- a/module/sonarqube/view/create.html.php +++ b/module/sonarqube/view/create.html.php @@ -3,7 +3,7 @@ * The create view file of sonarqube module of ZenTaoPMS. * * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Zeng * @package sonarqube * @version $Id$ diff --git a/module/sonarqube/view/createproject.html.php b/module/sonarqube/view/createproject.html.php index b418e2aaa9..6d55022244 100644 --- a/module/sonarqube/view/createproject.html.php +++ b/module/sonarqube/view/createproject.html.php @@ -3,7 +3,7 @@ * The create view file of protect tag of ZenTaoPMS. * * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Zeng * @package sonarqube * @version $Id$ diff --git a/module/sonarqube/view/edit.html.php b/module/sonarqube/view/edit.html.php index 3649ea1bc3..6ae674f599 100644 --- a/module/sonarqube/view/edit.html.php +++ b/module/sonarqube/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view file of sonarqube module of ZenTaoPMS. * * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Zeng * @package sonarqube * @version $Id$ diff --git a/module/sonarqube/view/reportview.html.php b/module/sonarqube/view/reportview.html.php index fc3d013056..9596241eba 100644 --- a/module/sonarqube/view/reportview.html.php +++ b/module/sonarqube/view/reportview.html.php @@ -3,7 +3,7 @@ * The reprot file of sonarqubemodule of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yuchun Li * @package sonarqube * @version $Id: reprotview.html.php 935 2022-01-25 10:52:24Z liyuchun@easycorp.ltd $ diff --git a/module/sso/control.php b/module/sso/control.php index e073bece90..24a2f2ad1e 100644 --- a/module/sso/control.php +++ b/module/sso/control.php @@ -3,7 +3,7 @@ * The control file of sso module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package sso * @version $Id: control.php 4460 2013-02-26 02:28:02Z chencongzhi520@gmail.com $ diff --git a/module/sso/lang/de.php b/module/sso/lang/de.php index 28ad947731..25e209187e 100644 --- a/module/sso/lang/de.php +++ b/module/sso/lang/de.php @@ -3,7 +3,7 @@ * The sso module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package sso * @version $Id$ diff --git a/module/sso/lang/en.php b/module/sso/lang/en.php index 4e6dbd5754..e6cbb5c1bd 100644 --- a/module/sso/lang/en.php +++ b/module/sso/lang/en.php @@ -3,7 +3,7 @@ * The sso module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package sso * @version $Id$ diff --git a/module/sso/lang/fr.php b/module/sso/lang/fr.php index 796611c219..1df5494675 100644 --- a/module/sso/lang/fr.php +++ b/module/sso/lang/fr.php @@ -3,7 +3,7 @@ * The sso module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package sso * @version $Id$ diff --git a/module/sso/lang/zh-cn.php b/module/sso/lang/zh-cn.php index 2cad5b1681..594d52383f 100644 --- a/module/sso/lang/zh-cn.php +++ b/module/sso/lang/zh-cn.php @@ -3,7 +3,7 @@ * The sso module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package sso * @version $Id$ diff --git a/module/sso/lang/zh-tw.php b/module/sso/lang/zh-tw.php index 16c485b13d..bb60d2d67e 100644 --- a/module/sso/lang/zh-tw.php +++ b/module/sso/lang/zh-tw.php @@ -3,7 +3,7 @@ * The sso module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package sso * @version $Id$ diff --git a/module/sso/view/bind.html.php b/module/sso/view/bind.html.php index 69f8a1120e..7006206b92 100644 --- a/module/sso/view/bind.html.php +++ b/module/sso/view/bind.html.php @@ -3,7 +3,7 @@ * The bind view file of sso module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package sso * @version $Id$ diff --git a/module/sso/view/error.html.php b/module/sso/view/error.html.php index cd6e33b62c..5c79a2b5cc 100644 --- a/module/sso/view/error.html.php +++ b/module/sso/view/error.html.php @@ -3,7 +3,7 @@ * The html template file of deny method of user module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: deny.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/stage/control.php b/module/stage/control.php index 15132571d3..0aacdc3c2a 100644 --- a/module/stage/control.php +++ b/module/stage/control.php @@ -3,7 +3,7 @@ * The control file of stage currentModule of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package stage * @version $Id: control.php 5107 2013-07-12 01:46:12Z chencongzhi520@gmail.com $ diff --git a/module/stage/lang/de.php b/module/stage/lang/de.php index f11a49dfd9..61ee052a0e 100644 --- a/module/stage/lang/de.php +++ b/module/stage/lang/de.php @@ -3,7 +3,7 @@ * The stage module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package stage * @version $Id: en.php 4729 2013-05-03 07:53:55Z chencongzhi520@gmail.com $ diff --git a/module/stage/lang/en.php b/module/stage/lang/en.php index 1d7d97afbf..9df06fe194 100644 --- a/module/stage/lang/en.php +++ b/module/stage/lang/en.php @@ -3,7 +3,7 @@ * The stage module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package stage * @version $Id: en.php 4729 2013-05-03 07:53:55Z chencongzhi520@gmail.com $ diff --git a/module/stage/lang/fr.php b/module/stage/lang/fr.php index f11a49dfd9..61ee052a0e 100644 --- a/module/stage/lang/fr.php +++ b/module/stage/lang/fr.php @@ -3,7 +3,7 @@ * The stage module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package stage * @version $Id: en.php 4729 2013-05-03 07:53:55Z chencongzhi520@gmail.com $ diff --git a/module/stage/lang/vi.php b/module/stage/lang/vi.php index f11a49dfd9..61ee052a0e 100644 --- a/module/stage/lang/vi.php +++ b/module/stage/lang/vi.php @@ -3,7 +3,7 @@ * The stage module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package stage * @version $Id: en.php 4729 2013-05-03 07:53:55Z chencongzhi520@gmail.com $ diff --git a/module/stage/lang/zh-cn.php b/module/stage/lang/zh-cn.php index 1911adaf2a..d24012760b 100644 --- a/module/stage/lang/zh-cn.php +++ b/module/stage/lang/zh-cn.php @@ -3,7 +3,7 @@ * The stage module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package stage * @version $Id: zh-cn.php 4729 2013-05-03 07:53:55Z chencongzhi520@gmail.com $ diff --git a/module/stage/lang/zh-tw.php b/module/stage/lang/zh-tw.php index e4e73d5f49..51980457a4 100644 --- a/module/stage/lang/zh-tw.php +++ b/module/stage/lang/zh-tw.php @@ -3,7 +3,7 @@ * The stage module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package stage * @version $Id: zh-tw.php 4729 2013-05-03 07:53:55Z chencongzhi520@gmail.com $ diff --git a/module/stage/model.php b/module/stage/model.php index 564730200d..8b7fdc6ac6 100644 --- a/module/stage/model.php +++ b/module/stage/model.php @@ -3,7 +3,7 @@ * The model file of stage module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package stage * @version $Id: model.php 5079 2013-07-10 00:44:34Z chencongzhi520@gmail.com $ diff --git a/module/stage/view/batchcreate.html.php b/module/stage/view/batchcreate.html.php index 72687b7b35..fe1ecdef7d 100644 --- a/module/stage/view/batchcreate.html.php +++ b/module/stage/view/batchcreate.html.php @@ -3,7 +3,7 @@ * The batchCreate view of stage module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package stage * @version $Id: batchCreate.html.php 4903 2013-06-26 05:32:59Z wyd621@gmail.com $ diff --git a/module/stage/view/browse.html.php b/module/stage/view/browse.html.php index b60412afff..957cbd8c8a 100644 --- a/module/stage/view/browse.html.php +++ b/module/stage/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view of stage module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package stage * @version $Id: browse.html.php 4903 2013-06-26 05:32:59Z wyd621@gmail.com $ diff --git a/module/stage/view/create.html.php b/module/stage/view/create.html.php index 3d53f89f39..4a9e7b36e4 100644 --- a/module/stage/view/create.html.php +++ b/module/stage/view/create.html.php @@ -3,7 +3,7 @@ * The create view of stage module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package stage * @version $Id: create.html.php 4903 2013-06-26 05:32:59Z wyd621@gmail.com $ diff --git a/module/stage/view/edit.html.php b/module/stage/view/edit.html.php index 05c393bdbb..0792e89fe5 100644 --- a/module/stage/view/edit.html.php +++ b/module/stage/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view of stage module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package stage * @version $Id: edit.html.php 4903 2013-06-26 05:32:59Z wyd621@gmail.com $ diff --git a/module/stage/view/settype.html.php b/module/stage/view/settype.html.php index 75d234e5be..421acc1e31 100644 --- a/module/stage/view/settype.html.php +++ b/module/stage/view/settype.html.php @@ -3,7 +3,7 @@ * The setType view of stage module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package stage * @version $Id: setType.html.php 4903 2013-06-26 05:32:59Z wyd621@gmail.com $ diff --git a/module/stakeholder/view/batchcreate.html.php b/module/stakeholder/view/batchcreate.html.php index 26b04d6cb6..bf9dd6f158 100644 --- a/module/stakeholder/view/batchcreate.html.php +++ b/module/stakeholder/view/batchcreate.html.php @@ -3,7 +3,7 @@ * The batch create stakeholder view of stakeholder module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package product * @version $Id: browse.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/stakeholder/view/browse.html.php b/module/stakeholder/view/browse.html.php index f51394f4b6..ab07e6a035 100644 --- a/module/stakeholder/view/browse.html.php +++ b/module/stakeholder/view/browse.html.php @@ -3,7 +3,7 @@ * The view view of stakeholder module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package product * @version $Id: browse.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/stakeholder/view/communicate.html.php b/module/stakeholder/view/communicate.html.php index 140e0d5fb8..085e606589 100644 --- a/module/stakeholder/view/communicate.html.php +++ b/module/stakeholder/view/communicate.html.php @@ -3,7 +3,7 @@ * The complete file of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Jia Fu * @package task * @version $Id: complete.html.php 935 2010-07-06 07:49:24Z jajacn@126.com $ diff --git a/module/stakeholder/view/create.html.php b/module/stakeholder/view/create.html.php index 30fc5378cd..35422f6229 100644 --- a/module/stakeholder/view/create.html.php +++ b/module/stakeholder/view/create.html.php @@ -3,7 +3,7 @@ * The view view of stakeholder module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package product * @version $Id: browse.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/stakeholder/view/expect.html.php b/module/stakeholder/view/expect.html.php index 8ec23b666f..7552a51291 100644 --- a/module/stakeholder/view/expect.html.php +++ b/module/stakeholder/view/expect.html.php @@ -3,7 +3,7 @@ * The complete file of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Jia Fu * @package task * @version $Id: complete.html.php 935 2010-07-06 07:49:24Z jajacn@126.com $ diff --git a/module/stakeholder/view/userissue.html.php b/module/stakeholder/view/userissue.html.php index 8cd666e3eb..dd5fcdb27f 100644 --- a/module/stakeholder/view/userissue.html.php +++ b/module/stakeholder/view/userissue.html.php @@ -3,7 +3,7 @@ * The view view of stakeholder module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology C - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package company * @version $Id: edit.html.php 4488 2013-02-27 02:54:49Z chencongzhi520@gmail.com $ diff --git a/module/stakeholder/view/view.html.php b/module/stakeholder/view/view.html.php index 38698e9da5..33433fa372 100644 --- a/module/stakeholder/view/view.html.php +++ b/module/stakeholder/view/view.html.php @@ -3,7 +3,7 @@ * The view view of stakeholder module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology C - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package company * @version $Id: edit.html.php 4488 2013-02-27 02:54:49Z chencongzhi520@gmail.com $ diff --git a/module/story/control.php b/module/story/control.php index 06f78c29c3..f2a03a421e 100644 --- a/module/story/control.php +++ b/module/story/control.php @@ -3,7 +3,7 @@ * The control file of story module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/de.php b/module/story/lang/de.php index cc03af2f52..3427df5f50 100644 --- a/module/story/lang/de.php +++ b/module/story/lang/de.php @@ -3,7 +3,7 @@ * The story module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/en.php b/module/story/lang/en.php index 77f3a2789a..fdbc475167 100644 --- a/module/story/lang/en.php +++ b/module/story/lang/en.php @@ -3,7 +3,7 @@ * The story module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/fr.php b/module/story/lang/fr.php index ddf90f0679..f5c617a7d0 100644 --- a/module/story/lang/fr.php +++ b/module/story/lang/fr.php @@ -3,7 +3,7 @@ * The story module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 ce3c57d13f..6a71ff233e 100644 --- a/module/story/lang/zh-cn.php +++ b/module/story/lang/zh-cn.php @@ -3,7 +3,7 @@ * The story module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 ce380f2a41..3fc632a185 100644 --- a/module/story/lang/zh-tw.php +++ b/module/story/lang/zh-tw.php @@ -3,7 +3,7 @@ * The story module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 ee636eab7b..4df640aa05 100644 --- a/module/story/model.php +++ b/module/story/model.php @@ -3,7 +3,7 @@ * The model file of story module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 6d4b3f5933..e07f98c552 100644 --- a/module/story/view/activate.html.php +++ b/module/story/view/activate.html.php @@ -3,7 +3,7 @@ * The activate view file of story module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package story * @version $Id: activate.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/story/view/assignto.html.php b/module/story/view/assignto.html.php index a523af0712..9aeb9a59a9 100644 --- a/module/story/view/assignto.html.php +++ b/module/story/view/assignto.html.php @@ -3,7 +3,7 @@ * The complete file of story module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package story * @version $Id: complete.html.php 935 2010-07-06 07:49:24Z jajacn@126.com $ diff --git a/module/story/view/batchclose.html.php b/module/story/view/batchclose.html.php index e7594d9013..504d5673d8 100755 --- a/module/story/view/batchclose.html.php +++ b/module/story/view/batchclose.html.php @@ -3,7 +3,7 @@ * The batch close view of story module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package story * @version $Id$ diff --git a/module/story/view/batchcreate.html.php b/module/story/view/batchcreate.html.php index 794781efed..5bd7802f66 100755 --- a/module/story/view/batchcreate.html.php +++ b/module/story/view/batchcreate.html.php @@ -3,7 +3,7 @@ * The batch create view of story module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yangyang Shi * @package story * @version $Id$ diff --git a/module/story/view/batchedit.html.php b/module/story/view/batchedit.html.php index b898ae068f..78ba3cc0ab 100644 --- a/module/story/view/batchedit.html.php +++ b/module/story/view/batchedit.html.php @@ -3,7 +3,7 @@ * The batch edit view of story module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package story * @version $Id$ diff --git a/module/story/view/change.html.php b/module/story/view/change.html.php index 4135f51cc9..03cf6d0ec8 100644 --- a/module/story/view/change.html.php +++ b/module/story/view/change.html.php @@ -3,7 +3,7 @@ * The change view file of story module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 38f3a33302..71375559c9 100644 --- a/module/story/view/close.html.php +++ b/module/story/view/close.html.php @@ -3,7 +3,7 @@ * The close view file of story module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 fcda244707..cbf7cb1113 100644 --- a/module/story/view/create.html.php +++ b/module/story/view/create.html.php @@ -3,7 +3,7 @@ * The create view of story module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 401800657f..2b9b148f7a 100644 --- a/module/story/view/edit.html.php +++ b/module/story/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view file of story module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 2038a7200e..8e008a4956 100644 --- a/module/story/view/export.html.php +++ b/module/story/view/export.html.php @@ -3,7 +3,7 @@ * The export view file of story module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package story * @version $Id$ diff --git a/module/story/view/linkstory.html.php b/module/story/view/linkstory.html.php index 3c9d8effda..a91fbd510c 100644 --- a/module/story/view/linkstory.html.php +++ b/module/story/view/linkstory.html.php @@ -3,7 +3,7 @@ * The link story view of story module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Fei Chen * @package story * @version $Id: linkstory.html.php 4129 2016-03-09 08:58:13Z chenfei $ diff --git a/module/story/view/report.html.php b/module/story/view/report.html.php index 90183db74c..2c57fdf393 100644 --- a/module/story/view/report.html.php +++ b/module/story/view/report.html.php @@ -3,7 +3,7 @@ * The report view file of product module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 a32cd350d9..aa28912d7e 100644 --- a/module/story/view/review.html.php +++ b/module/story/view/review.html.php @@ -3,7 +3,7 @@ * The view file of review method of story module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 c29caa7fc7..7683112545 100644 --- a/module/story/view/sendmail.html.php +++ b/module/story/view/sendmail.html.php @@ -3,7 +3,7 @@ * The mail file of story module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 2080c2758a..f84af9abfa 100644 --- a/module/story/view/view.html.php +++ b/module/story/view/view.html.php @@ -3,7 +3,7 @@ * The view file of story module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 9694f36be8..37dfa0bd6a 100644 --- a/module/story/view/zerocase.html.php +++ b/module/story/view/zerocase.html.php @@ -3,7 +3,7 @@ * The browse view file of product module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 0cd0cc92a3..d7b05b72d2 100644 --- a/module/svn/control.php +++ b/module/svn/control.php @@ -3,7 +3,7 @@ * The control file of svn currentModule of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package svn * @version $Id$ diff --git a/module/svn/lang/de.php b/module/svn/lang/de.php index 441b61921a..ee6f85314d 100644 --- a/module/svn/lang/de.php +++ b/module/svn/lang/de.php @@ -3,7 +3,7 @@ * The svn module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package svn * @version $Id$ diff --git a/module/svn/lang/en.php b/module/svn/lang/en.php index a009cf168e..e10c7a65b9 100644 --- a/module/svn/lang/en.php +++ b/module/svn/lang/en.php @@ -3,7 +3,7 @@ * The svn module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package svn * @version $Id$ diff --git a/module/svn/lang/fr.php b/module/svn/lang/fr.php index 33079eedb1..8a5eb0e925 100644 --- a/module/svn/lang/fr.php +++ b/module/svn/lang/fr.php @@ -3,7 +3,7 @@ * The svn module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package svn * @version $Id$ diff --git a/module/svn/lang/zh-cn.php b/module/svn/lang/zh-cn.php index 510abc1109..861a1a1d75 100644 --- a/module/svn/lang/zh-cn.php +++ b/module/svn/lang/zh-cn.php @@ -3,7 +3,7 @@ * The svn module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package svn * @version $Id$ diff --git a/module/svn/lang/zh-tw.php b/module/svn/lang/zh-tw.php index 285ed2e212..638eab6883 100644 --- a/module/svn/lang/zh-tw.php +++ b/module/svn/lang/zh-tw.php @@ -3,7 +3,7 @@ * The svn module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package svn * @version $Id$ diff --git a/module/svn/model.php b/module/svn/model.php index 090a3246a7..ff6cb05862 100644 --- a/module/svn/model.php +++ b/module/svn/model.php @@ -3,7 +3,7 @@ * The model file of svn module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package svn * @version $Id$ diff --git a/module/svn/syncer/syncer.php b/module/svn/syncer/syncer.php index 7ddf35f5d2..7baf5487a5 100644 --- a/module/svn/syncer/syncer.php +++ b/module/svn/syncer/syncer.php @@ -3,7 +3,7 @@ * The syncer of svn. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package svn * @version $Id$ diff --git a/module/svn/view/cat.html.php b/module/svn/view/cat.html.php index 14efa08220..6984cdfe99 100644 --- a/module/svn/view/cat.html.php +++ b/module/svn/view/cat.html.php @@ -3,7 +3,7 @@ * The export view file of file module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/svn/view/diff.html.php b/module/svn/view/diff.html.php index 90c316bd9c..121963cd73 100644 --- a/module/svn/view/diff.html.php +++ b/module/svn/view/diff.html.php @@ -3,7 +3,7 @@ * The export view file of file module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/task/control.php b/module/task/control.php index 515ce21e2d..3450325326 100755 --- a/module/task/control.php +++ b/module/task/control.php @@ -3,7 +3,7 @@ * The control file of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/de.php b/module/task/lang/de.php index b48f5fcfe2..80d16fef16 100644 --- a/module/task/lang/de.php +++ b/module/task/lang/de.php @@ -3,7 +3,7 @@ * The task module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/en.php b/module/task/lang/en.php index 981477749e..e58b0af3cb 100755 --- a/module/task/lang/en.php +++ b/module/task/lang/en.php @@ -3,7 +3,7 @@ * The task module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/fr.php b/module/task/lang/fr.php index acf50cea8a..eb881365e9 100644 --- a/module/task/lang/fr.php +++ b/module/task/lang/fr.php @@ -3,7 +3,7 @@ * The task module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 bf39e02466..cbac8bd7c4 100755 --- a/module/task/lang/zh-cn.php +++ b/module/task/lang/zh-cn.php @@ -3,7 +3,7 @@ * The task module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 fd1e4663c8..1fac878008 100644 --- a/module/task/lang/zh-tw.php +++ b/module/task/lang/zh-tw.php @@ -3,7 +3,7 @@ * The task module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 d268ea4afa..dbf9d00354 100644 --- a/module/task/model.php +++ b/module/task/model.php @@ -3,7 +3,7 @@ * The model file of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 922d3b23c9..32c9ad1d09 100644 --- a/module/task/view/activate.html.php +++ b/module/task/view/activate.html.php @@ -3,7 +3,7 @@ * The activate file of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 b58b8e8e65..d07e307723 100644 --- a/module/task/view/assignto.html.php +++ b/module/task/view/assignto.html.php @@ -3,7 +3,7 @@ * The complete file of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 60b617f62d..56a5f43e49 100755 --- a/module/task/view/batchcreate.html.php +++ b/module/task/view/batchcreate.html.php @@ -3,7 +3,7 @@ * The batch create view of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yangyang Shi * @package task * @version $Id$ diff --git a/module/task/view/batchedit.html.php b/module/task/view/batchedit.html.php index 348188b2f3..656b743588 100755 --- a/module/task/view/batchedit.html.php +++ b/module/task/view/batchedit.html.php @@ -3,7 +3,7 @@ * The batch edit view of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package task * @version $Id$ diff --git a/module/task/view/cancel.html.php b/module/task/view/cancel.html.php index 4c6ef39043..d76832f603 100644 --- a/module/task/view/cancel.html.php +++ b/module/task/view/cancel.html.php @@ -3,7 +3,7 @@ * The cancel file of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 61795a3205..1554394f01 100644 --- a/module/task/view/close.html.php +++ b/module/task/view/close.html.php @@ -3,7 +3,7 @@ * The close file of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 6c274f41c4..11974fb3b7 100644 --- a/module/task/view/create.html.php +++ b/module/task/view/create.html.php @@ -3,7 +3,7 @@ * The create view of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 f2366880e7..792e3e548d 100644 --- a/module/task/view/edit.html.php +++ b/module/task/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 d0604847ee..bc3d1d8de8 100644 --- a/module/task/view/editestimate.html.php +++ b/module/task/view/editestimate.html.php @@ -3,7 +3,7 @@ * The editEstimate view of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 d14fab7cb8..51cfd4df9a 100755 --- a/module/task/view/export.html.php +++ b/module/task/view/export.html.php @@ -3,7 +3,7 @@ * The export view file of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package task * @version $Id$ diff --git a/module/task/view/finish.html.php b/module/task/view/finish.html.php index 47791f0368..85210631e4 100644 --- a/module/task/view/finish.html.php +++ b/module/task/view/finish.html.php @@ -3,7 +3,7 @@ * The complete file of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 5e221cee4e..a17e3f2596 100644 --- a/module/task/view/pause.html.php +++ b/module/task/view/pause.html.php @@ -3,7 +3,7 @@ * The pause file of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package task * @version $Id$ diff --git a/module/task/view/recordestimate.html.php b/module/task/view/recordestimate.html.php index 27858044a1..a374ee899e 100644 --- a/module/task/view/recordestimate.html.php +++ b/module/task/view/recordestimate.html.php @@ -3,7 +3,7 @@ * The record file of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 8aa3de6eef..e8b534589b 100644 --- a/module/task/view/report.html.php +++ b/module/task/view/report.html.php @@ -3,7 +3,7 @@ * The report view file of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author wenjie * @package execution * @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 b0701ff44a..b17dc38216 100644 --- a/module/task/view/restart.html.php +++ b/module/task/view/restart.html.php @@ -3,7 +3,7 @@ * The start file of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 7bab3c9557..e98028b957 100644 --- a/module/task/view/sendmail.html.php +++ b/module/task/view/sendmail.html.php @@ -3,7 +3,7 @@ * The mail file of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 6221cc92d8..6298764cbb 100644 --- a/module/task/view/start.html.php +++ b/module/task/view/start.html.php @@ -3,7 +3,7 @@ * The start file of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 a701242662..dbdb6f9ae0 100644 --- a/module/task/view/view.html.php +++ b/module/task/view/view.html.php @@ -3,7 +3,7 @@ * The view file of task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 2f217de6af..aec7d434e3 100644 --- a/module/testcase/control.php +++ b/module/testcase/control.php @@ -3,7 +3,7 @@ * The control file of case currentModule of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/de.php b/module/testcase/lang/de.php index 20dff21239..04aaf818a5 100644 --- a/module/testcase/lang/de.php +++ b/module/testcase/lang/de.php @@ -3,7 +3,7 @@ * The testcase module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/en.php b/module/testcase/lang/en.php index a22a1f8911..3f7b95cf59 100644 --- a/module/testcase/lang/en.php +++ b/module/testcase/lang/en.php @@ -3,7 +3,7 @@ * The testcase module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/fr.php b/module/testcase/lang/fr.php index a0656ba95e..0da54b785f 100644 --- a/module/testcase/lang/fr.php +++ b/module/testcase/lang/fr.php @@ -3,7 +3,7 @@ * The testcase module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 49ee34858f..948d269c61 100644 --- a/module/testcase/lang/zh-cn.php +++ b/module/testcase/lang/zh-cn.php @@ -3,7 +3,7 @@ * The testcase module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 789d7f5cb9..dbb9536ad1 100644 --- a/module/testcase/lang/zh-tw.php +++ b/module/testcase/lang/zh-tw.php @@ -3,7 +3,7 @@ * The testcase module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 ba07b6894d..9ea00ab570 100644 --- a/module/testcase/model.php +++ b/module/testcase/model.php @@ -3,7 +3,7 @@ * The model file of case module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 804a882dd7..83d199362c 100644 --- a/module/testcase/view/batchcreate.html.php +++ b/module/testcase/view/batchcreate.html.php @@ -3,7 +3,7 @@ * The batch create view of testcase module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yangyang Shi * @package testcase * @version $Id$ diff --git a/module/testcase/view/batchedit.html.php b/module/testcase/view/batchedit.html.php index e4ab1fabde..2ae9aff67c 100644 --- a/module/testcase/view/batchedit.html.php +++ b/module/testcase/view/batchedit.html.php @@ -3,7 +3,7 @@ * The batch edit view of testcase module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package testcase * @version $Id$ diff --git a/module/testcase/view/browse.html.php b/module/testcase/view/browse.html.php index 5d37e3bb13..c21a5d3401 100644 --- a/module/testcase/view/browse.html.php +++ b/module/testcase/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of testcase module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 3494299c20..832fd27b24 100644 --- a/module/testcase/view/create.html.php +++ b/module/testcase/view/create.html.php @@ -3,7 +3,7 @@ * The create view of case module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 356b82169c..32d94fa41d 100644 --- a/module/testcase/view/createbug.html.php +++ b/module/testcase/view/createbug.html.php @@ -3,7 +3,7 @@ * The createByg view file of testcase module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package testcase * @version $Id$ diff --git a/module/testcase/view/edit.html.php b/module/testcase/view/edit.html.php index 4ff3e7e53e..3e458ea401 100644 --- a/module/testcase/view/edit.html.php +++ b/module/testcase/view/edit.html.php @@ -3,7 +3,7 @@ * The edit file of case module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 810835117b..134c633516 100644 --- a/module/testcase/view/export.html.php +++ b/module/testcase/view/export.html.php @@ -3,7 +3,7 @@ * The export view file of testcase module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package testcase * @version $Id$ diff --git a/module/testcase/view/groupcase.html.php b/module/testcase/view/groupcase.html.php index e0f3adfddb..5eaf3fb0df 100644 --- a/module/testcase/view/groupcase.html.php +++ b/module/testcase/view/groupcase.html.php @@ -3,7 +3,7 @@ * The case group view file of testcase module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package testcase * @version $Id$ diff --git a/module/testcase/view/importfromlib.html.php b/module/testcase/view/importfromlib.html.php index 374871dfba..36a654ca81 100644 --- a/module/testcase/view/importfromlib.html.php +++ b/module/testcase/view/importfromlib.html.php @@ -3,7 +3,7 @@ * The importfromlib view file of testcase module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package testcase * @version $Id diff --git a/module/testcase/view/index.html.php b/module/testcase/view/index.html.php index 2b4994194a..e2368fca58 100644 --- a/module/testcase/view/index.html.php +++ b/module/testcase/view/index.html.php @@ -3,7 +3,7 @@ * The index view file of bug module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package bug * @version $Id: index.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/testcase/view/linkcases.html.php b/module/testcase/view/linkcases.html.php index ab5e4db49f..1784144146 100644 --- a/module/testcase/view/linkcases.html.php +++ b/module/testcase/view/linkcases.html.php @@ -3,7 +3,7 @@ * The linkcases view file of testcase module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Fei Chen * @package testcase * @version $Id: linkcases.html.php 4411 2016-03-09 11:02:04Z Chen Fei $ diff --git a/module/testcase/view/review.html.php b/module/testcase/view/review.html.php index 9b2c19169c..592894dc88 100644 --- a/module/testcase/view/review.html.php +++ b/module/testcase/view/review.html.php @@ -3,7 +3,7 @@ * The view file of review method of testcase module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package testcase * @version $Id: review.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 afd9e223d8..3dd9d6e329 100644 --- a/module/testcase/view/view.html.php +++ b/module/testcase/view/view.html.php @@ -3,7 +3,7 @@ * The view file of case module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package case * @version $Id: view.html.php 5000 2013-07-03 08:20:57Z chencongzhi520@gmail.com $ diff --git a/module/testreport/control.php b/module/testreport/control.php index 57e7b88168..bf5c7349b6 100644 --- a/module/testreport/control.php +++ b/module/testreport/control.php @@ -3,7 +3,7 @@ * The control file of testreport of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package testreport * @version $Id$ diff --git a/module/testreport/model.php b/module/testreport/model.php index 300a932aaa..91a93400e6 100644 --- a/module/testreport/model.php +++ b/module/testreport/model.php @@ -3,7 +3,7 @@ * The model file of testreport module of ZenTaoCMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package testreport * @version $Id$ diff --git a/module/testreport/view/browse.html.php b/module/testreport/view/browse.html.php index 845142d9fd..ce8a5ae73a 100644 --- a/module/testreport/view/browse.html.php +++ b/module/testreport/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of testreport module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package testreport * @version $Id$ diff --git a/module/testreport/view/create.html.php b/module/testreport/view/create.html.php index 353affdd93..99a525a438 100644 --- a/module/testreport/view/create.html.php +++ b/module/testreport/view/create.html.php @@ -3,7 +3,7 @@ * The create view file of testreport module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package testreport * @version $Id$ diff --git a/module/testreport/view/edit.html.php b/module/testreport/view/edit.html.php index 9081388c71..f5fbc35909 100644 --- a/module/testreport/view/edit.html.php +++ b/module/testreport/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view file of testreport module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package testreport * @version $Id$ diff --git a/module/testreport/view/selecttask.html.php b/module/testreport/view/selecttask.html.php index a9a41090c8..bd1844ea13 100644 --- a/module/testreport/view/selecttask.html.php +++ b/module/testreport/view/selecttask.html.php @@ -3,7 +3,7 @@ * The select task file of testreport module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Guangming Sun * @package testreport * @version $Id: resolve.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/testreport/view/view.html.php b/module/testreport/view/view.html.php index 13d198d6d3..d249ff2434 100644 --- a/module/testreport/view/view.html.php +++ b/module/testreport/view/view.html.php @@ -3,7 +3,7 @@ * The view view file of testreport module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package testreport * @version $Id$ diff --git a/module/testsuite/control.php b/module/testsuite/control.php index d27e771410..f7eb90298d 100644 --- a/module/testsuite/control.php +++ b/module/testsuite/control.php @@ -3,7 +3,7 @@ * The control file of testsuite module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package testsuite * @version $Id: control.php 5114 2013-07-12 06:02:59Z chencongzhi520@gmail.com $ diff --git a/module/testsuite/lang/de.php b/module/testsuite/lang/de.php index 6982ff58b4..f07248683f 100644 --- a/module/testsuite/lang/de.php +++ b/module/testsuite/lang/de.php @@ -3,7 +3,7 @@ * The testsuite module en file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package testsuite * @version $Id: zh-cn.php 4490 2013-02-27 03:27:05Z wyd621@gmail.com $ diff --git a/module/testsuite/lang/en.php b/module/testsuite/lang/en.php index 3171bf426d..ffc5aa4288 100644 --- a/module/testsuite/lang/en.php +++ b/module/testsuite/lang/en.php @@ -3,7 +3,7 @@ * The testsuite module en file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package testsuite * @version $Id: zh-cn.php 4490 2013-02-27 03:27:05Z wyd621@gmail.com $ diff --git a/module/testsuite/lang/fr.php b/module/testsuite/lang/fr.php index fed630f012..afbd4c4831 100644 --- a/module/testsuite/lang/fr.php +++ b/module/testsuite/lang/fr.php @@ -3,7 +3,7 @@ * The testsuite module en file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package testsuite * @version $Id: zh-cn.php 4490 2013-02-27 03:27:05Z wyd621@gmail.com $ diff --git a/module/testsuite/lang/zh-cn.php b/module/testsuite/lang/zh-cn.php index 349fe18e86..e4de93b4b5 100644 --- a/module/testsuite/lang/zh-cn.php +++ b/module/testsuite/lang/zh-cn.php @@ -3,7 +3,7 @@ * The testsuite module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package testsuite * @version $Id: zh-cn.php 4490 2013-02-27 03:27:05Z wyd621@gmail.com $ diff --git a/module/testsuite/lang/zh-tw.php b/module/testsuite/lang/zh-tw.php index 2ce0b38183..b47de45f05 100644 --- a/module/testsuite/lang/zh-tw.php +++ b/module/testsuite/lang/zh-tw.php @@ -3,7 +3,7 @@ * The testsuite module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package testsuite * @version $Id: zh-tw.php 4490 2013-02-27 03:27:05Z wyd621@gmail.com $ diff --git a/module/testsuite/model.php b/module/testsuite/model.php index d3d60f92aa..11177d1f3a 100644 --- a/module/testsuite/model.php +++ b/module/testsuite/model.php @@ -3,7 +3,7 @@ * The model file of test suite module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package testsuite * @version $Id: model.php 5114 2013-07-12 06:02:59Z chencongzhi520@gmail.com $ diff --git a/module/testsuite/view/browse.html.php b/module/testsuite/view/browse.html.php index 6503d4d34a..9ee9039c04 100644 --- a/module/testsuite/view/browse.html.php +++ b/module/testsuite/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of testsuite module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package testsuite * @version $Id: browse.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/testsuite/view/create.html.php b/module/testsuite/view/create.html.php index b4ca902e85..7fd53a8e33 100644 --- a/module/testsuite/view/create.html.php +++ b/module/testsuite/view/create.html.php @@ -3,7 +3,7 @@ * The create view of testsuite module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package testsuite * @version $Id: create.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/testsuite/view/edit.html.php b/module/testsuite/view/edit.html.php index 6b826c3510..dd9da27d28 100644 --- a/module/testsuite/view/edit.html.php +++ b/module/testsuite/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view of testsuite module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package testsuite * @version $Id: edit.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/testsuite/view/linkcase.html.php b/module/testsuite/view/linkcase.html.php index 67dced905a..712f2736af 100644 --- a/module/testsuite/view/linkcase.html.php +++ b/module/testsuite/view/linkcase.html.php @@ -3,7 +3,7 @@ * The linkcase view file of testsuite module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package testsuite * @version $Id: linkcase.html.php 4411 2013-02-22 00:56:04Z chencongzhi520@gmail.com $ diff --git a/module/testsuite/view/view.html.php b/module/testsuite/view/view.html.php index efdb7d4a9f..cc70c47329 100644 --- a/module/testsuite/view/view.html.php +++ b/module/testsuite/view/view.html.php @@ -3,7 +3,7 @@ * The view file of testsuite module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package testsuite * @version $Id: view.html.php 4141 2013-01-18 06:15:13Z zhujinyonging@gmail.com $ diff --git a/module/testtask/control.php b/module/testtask/control.php index 9d9affa53b..2fe9e653be 100644 --- a/module/testtask/control.php +++ b/module/testtask/control.php @@ -3,7 +3,7 @@ * The control file of testtask module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/de.php b/module/testtask/lang/de.php index 9f25dddd63..7341872ad1 100644 --- a/module/testtask/lang/de.php +++ b/module/testtask/lang/de.php @@ -3,7 +3,7 @@ * The testtask module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/en.php b/module/testtask/lang/en.php index 35343d0cbf..ad663e95e9 100644 --- a/module/testtask/lang/en.php +++ b/module/testtask/lang/en.php @@ -3,7 +3,7 @@ * The testtask module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/fr.php b/module/testtask/lang/fr.php index e3953766cf..e2ac5a5b89 100644 --- a/module/testtask/lang/fr.php +++ b/module/testtask/lang/fr.php @@ -3,7 +3,7 @@ * The testtask module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 f1c0cf09bd..2ac854ba7b 100644 --- a/module/testtask/lang/zh-cn.php +++ b/module/testtask/lang/zh-cn.php @@ -3,7 +3,7 @@ * The testtask module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 c96e2df1be..137e686a7b 100644 --- a/module/testtask/lang/zh-tw.php +++ b/module/testtask/lang/zh-tw.php @@ -3,7 +3,7 @@ * The testtask module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 9c8720028c..36009064b8 100644 --- a/module/testtask/model.php +++ b/module/testtask/model.php @@ -3,7 +3,7 @@ * The model file of test task module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/activate.html.php b/module/testtask/view/activate.html.php index 68f38ff3cf..9fc1179260 100644 --- a/module/testtask/view/activate.html.php +++ b/module/testtask/view/activate.html.php @@ -3,7 +3,7 @@ * The start file of testtask module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/batchrun.html.php b/module/testtask/view/batchrun.html.php index 13dab61fc0..3088003410 100644 --- a/module/testtask/view/batchrun.html.php +++ b/module/testtask/view/batchrun.html.php @@ -3,7 +3,7 @@ * The batch edit view of testcase module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package testcase * @version $Id$ diff --git a/module/testtask/view/block.html.php b/module/testtask/view/block.html.php index 9d8d88385b..efef5f7c3e 100644 --- a/module/testtask/view/block.html.php +++ b/module/testtask/view/block.html.php @@ -3,7 +3,7 @@ * The start file of testtask module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/browse.html.php b/module/testtask/view/browse.html.php index fbd46f6bb1..b207d96364 100644 --- a/module/testtask/view/browse.html.php +++ b/module/testtask/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of testtask module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package testtask * @version $Id: browse.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/testtask/view/browseunits.html.php b/module/testtask/view/browseunits.html.php index 62f0279fdd..a72d8b621b 100644 --- a/module/testtask/view/browseunits.html.php +++ b/module/testtask/view/browseunits.html.php @@ -3,7 +3,7 @@ * The browse view file of testtask module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 e821bce3c3..15cb6bde7c 100644 --- a/module/testtask/view/cases.html.php +++ b/module/testtask/view/cases.html.php @@ -3,7 +3,7 @@ * The view file of case module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 7c3cdb886c..f13019dbb3 100644 --- a/module/testtask/view/close.html.php +++ b/module/testtask/view/close.html.php @@ -3,7 +3,7 @@ * The close file of testtask module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 38ff5fcd55..9e326013a0 100644 --- a/module/testtask/view/create.html.php +++ b/module/testtask/view/create.html.php @@ -3,7 +3,7 @@ * The create view of testtask module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 57a3b6487d..05e2ac7bd4 100644 --- a/module/testtask/view/edit.html.php +++ b/module/testtask/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view of testtask module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 852b74292a..6b647d950d 100644 --- a/module/testtask/view/groupcase.html.php +++ b/module/testtask/view/groupcase.html.php @@ -3,7 +3,7 @@ * The case group view file of testcase module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package testcase * @version $Id$ diff --git a/module/testtask/view/importunitresult.html.php b/module/testtask/view/importunitresult.html.php index 73ded709a6..4921565247 100644 --- a/module/testtask/view/importunitresult.html.php +++ b/module/testtask/view/importunitresult.html.php @@ -3,7 +3,7 @@ * The create view of testtask module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/linkcase.html.php b/module/testtask/view/linkcase.html.php index 727c6568fa..d2b5e898c5 100644 --- a/module/testtask/view/linkcase.html.php +++ b/module/testtask/view/linkcase.html.php @@ -3,7 +3,7 @@ * The linkcase view file of testtask module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/report.html.php b/module/testtask/view/report.html.php index 2a8ca5c66b..a9cf43155a 100644 --- a/module/testtask/view/report.html.php +++ b/module/testtask/view/report.html.php @@ -3,7 +3,7 @@ * The report view file of testtask module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package testtask * @version $Id: report.html.php 4657 2013-04-17 02:01:26Z chencongzhi520@gmail.com $ diff --git a/module/testtask/view/results.html.php b/module/testtask/view/results.html.php index e20e688ea6..23b245be51 100644 --- a/module/testtask/view/results.html.php +++ b/module/testtask/view/results.html.php @@ -3,7 +3,7 @@ * The resutls view file of testtask of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 8626c51821..fd0dafe213 100644 --- a/module/testtask/view/runcase.html.php +++ b/module/testtask/view/runcase.html.php @@ -3,7 +3,7 @@ * The runrun view file of testtask of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 11c88e80e5..22e8e6aa08 100644 --- a/module/testtask/view/sendmail.html.php +++ b/module/testtask/view/sendmail.html.php @@ -3,7 +3,7 @@ * The mail file of testtesttask module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 fe9cf19be8..cfdeaf4e24 100644 --- a/module/testtask/view/start.html.php +++ b/module/testtask/view/start.html.php @@ -3,7 +3,7 @@ * The start file of testtask module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/unitcases.html.php b/module/testtask/view/unitcases.html.php index 795f4c2e68..f5b3c98dda 100644 --- a/module/testtask/view/unitcases.html.php +++ b/module/testtask/view/unitcases.html.php @@ -3,7 +3,7 @@ * The unit view file of testcase module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package testcase * @version $Id$ diff --git a/module/testtask/view/view.html.php b/module/testtask/view/view.html.php index 7bb7fa2871..972cb14d0e 100644 --- a/module/testtask/view/view.html.php +++ b/module/testtask/view/view.html.php @@ -3,7 +3,7 @@ * The view file of case module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 4705e05c8b..1f94c8fb75 100644 --- a/module/todo/control.php +++ b/module/todo/control.php @@ -3,7 +3,7 @@ * The control file of todo module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/de.php b/module/todo/lang/de.php index 4fc9836de8..5f49777b5b 100644 --- a/module/todo/lang/de.php +++ b/module/todo/lang/de.php @@ -3,7 +3,7 @@ * The todo module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/en.php b/module/todo/lang/en.php index c3a58f7db6..23d9fe7fbe 100644 --- a/module/todo/lang/en.php +++ b/module/todo/lang/en.php @@ -3,7 +3,7 @@ * The todo module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/fr.php b/module/todo/lang/fr.php index 9154e1d034..91770707ae 100644 --- a/module/todo/lang/fr.php +++ b/module/todo/lang/fr.php @@ -3,7 +3,7 @@ * The todo module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 5fb2578c24..c822faaa64 100644 --- a/module/todo/lang/zh-cn.php +++ b/module/todo/lang/zh-cn.php @@ -3,7 +3,7 @@ * The todo module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 ca4777a325..14751aa5b9 100644 --- a/module/todo/lang/zh-tw.php +++ b/module/todo/lang/zh-tw.php @@ -3,7 +3,7 @@ * The todo module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 d3a569fac3..62842cdd52 100644 --- a/module/todo/model.php +++ b/module/todo/model.php @@ -3,7 +3,7 @@ * The model file of todo module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/assignto.html.php b/module/todo/view/assignto.html.php index 3f670d6813..99a56e6fe5 100755 --- a/module/todo/view/assignto.html.php +++ b/module/todo/view/assignto.html.php @@ -3,7 +3,7 @@ * The batch create view of todo module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Congzhi Chen * @package todo * @version $Id: create.html.php 2741 2012-04-07 07:24:21 $ diff --git a/module/todo/view/batchcreate.html.php b/module/todo/view/batchcreate.html.php index 6a16e94fb3..3ecd04ea88 100755 --- a/module/todo/view/batchcreate.html.php +++ b/module/todo/view/batchcreate.html.php @@ -3,7 +3,7 @@ * The batch create view of todo module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 bcd65fdc2f..fb610e94de 100644 --- a/module/todo/view/batchedit.html.php +++ b/module/todo/view/batchedit.html.php @@ -3,7 +3,7 @@ * The batch edit view of todo module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 b565b6bdb1..f092e01b62 100644 --- a/module/todo/view/create.html.php +++ b/module/todo/view/create.html.php @@ -3,7 +3,7 @@ * The create view of todo module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 ab453962dd..55d0fbf793 100644 --- a/module/todo/view/edit.html.php +++ b/module/todo/view/edit.html.php @@ -3,7 +3,7 @@ * The create view of todo module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 19848d152e..6fa24606a3 100755 --- a/module/todo/view/export.html.php +++ b/module/todo/view/export.html.php @@ -3,7 +3,7 @@ * The export view file of bug module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yangyang Shi * @package todo * @version $Id$ diff --git a/module/todo/view/view.html.php b/module/todo/view/view.html.php index 2fcf9715a0..be5197a7df 100644 --- a/module/todo/view/view.html.php +++ b/module/todo/view/view.html.php @@ -3,7 +3,7 @@ * The view file of view method of todo module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 6ba17a19fe..b0e92e677f 100644 --- a/module/tree/control.php +++ b/module/tree/control.php @@ -4,7 +4,7 @@ * The control file of tree module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/de.php b/module/tree/lang/de.php index 87be35fac9..df134dfcec 100644 --- a/module/tree/lang/de.php +++ b/module/tree/lang/de.php @@ -3,7 +3,7 @@ * The tree module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/en.php b/module/tree/lang/en.php index 9fb6632a2e..529f5277de 100644 --- a/module/tree/lang/en.php +++ b/module/tree/lang/en.php @@ -3,7 +3,7 @@ * The tree module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/fr.php b/module/tree/lang/fr.php index 327ac0fb43..dfe41b2b46 100644 --- a/module/tree/lang/fr.php +++ b/module/tree/lang/fr.php @@ -3,7 +3,7 @@ * The tree module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 5d6c89c0f1..9fec103ec4 100644 --- a/module/tree/lang/zh-cn.php +++ b/module/tree/lang/zh-cn.php @@ -3,7 +3,7 @@ * The tree module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 8c507dfed0..96f2d5c574 100644 --- a/module/tree/lang/zh-tw.php +++ b/module/tree/lang/zh-tw.php @@ -3,7 +3,7 @@ * The tree module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 e9f0eb6be8..aabb12b286 100644 --- a/module/tree/model.php +++ b/module/tree/model.php @@ -3,7 +3,7 @@ * The model file of tree module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 71b8687341..1269cc4e67 100644 --- a/module/tree/view/browse.html.php +++ b/module/tree/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of tree module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 6a4b0a33dd..aa00426b9d 100644 --- a/module/tree/view/browsetask.html.php +++ b/module/tree/view/browsetask.html.php @@ -3,7 +3,7 @@ * The browse view file of tree module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 e4018a81ca..cd05f431d2 100644 --- a/module/tree/view/edit.html.php +++ b/module/tree/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view of tree module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package tree * @version $Id: edit.html.php 4795 2013-06-04 05:59:58Z zhujinyonging@gmail.com $ diff --git a/module/tutorial/control.php b/module/tutorial/control.php index 5ec68c3d0c..a07fd934b3 100644 --- a/module/tutorial/control.php +++ b/module/tutorial/control.php @@ -3,7 +3,7 @@ * The control file of tutorial module of ZenTaoPMS. * * @copyright Copyright 2009-2016 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Hao Sun * @package tutorial * @version $Id: control.php 5002 2013-07-03 08:25:39Z chencongzhi520@gmail.com $ diff --git a/module/tutorial/lang/de.php b/module/tutorial/lang/de.php index a487c5f52f..ee74a53131 100644 --- a/module/tutorial/lang/de.php +++ b/module/tutorial/lang/de.php @@ -3,7 +3,7 @@ * The tutorial lang file of ZenTaoPMS. * * @copyright Copyright 2009-2016 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Hao Sun * @package ZenTaoPMS * @version $Id: zh-cn.php 5116 2013-07-12 06:37:48Z sunhao@cnezsoft.com $ diff --git a/module/tutorial/lang/en.php b/module/tutorial/lang/en.php index 18742840c3..74c13847cb 100644 --- a/module/tutorial/lang/en.php +++ b/module/tutorial/lang/en.php @@ -3,7 +3,7 @@ * The tutorial lang file of ZenTaoPMS. * * @copyright Copyright 2009-2016 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Hao Sun * @package ZenTaoPMS * @version $Id: zh-cn.php 5116 2013-07-12 06:37:48Z sunhao@cnezsoft.com $ diff --git a/module/tutorial/lang/fr.php b/module/tutorial/lang/fr.php index a3e4cb4648..a11d28eff5 100644 --- a/module/tutorial/lang/fr.php +++ b/module/tutorial/lang/fr.php @@ -3,7 +3,7 @@ * The tutorial lang file of ZenTaoPMS. * * @copyright Copyright 2009-2016 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Hao Sun * @package ZenTaoPMS * @version $Id: zh-cn.php 5116 2013-07-12 06:37:48Z sunhao@cnezsoft.com $ diff --git a/module/tutorial/lang/zh-cn.php b/module/tutorial/lang/zh-cn.php index a698817db8..9d6db8f129 100644 --- a/module/tutorial/lang/zh-cn.php +++ b/module/tutorial/lang/zh-cn.php @@ -3,7 +3,7 @@ * The tutorial lang file of ZenTaoPMS. * * @copyright Copyright 2009-2016 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Hao Sun * @package ZenTaoPMS * @version $Id: zh-cn.php 5116 2013-07-12 06:37:48Z sunhao@cnezsoft.com $ diff --git a/module/tutorial/lang/zh-tw.php b/module/tutorial/lang/zh-tw.php index e926425113..e2ed59092d 100644 --- a/module/tutorial/lang/zh-tw.php +++ b/module/tutorial/lang/zh-tw.php @@ -3,7 +3,7 @@ * The tutorial lang file of ZenTaoPMS. * * @copyright Copyright 2009-2016 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Hao Sun * @package ZenTaoPMS * @version $Id: zh-tw.php 5116 2013-07-12 06:37:48Z sunhao@cnezsoft.com $ diff --git a/module/tutorial/model.php b/module/tutorial/model.php index 004fc8feeb..f094439b5d 100644 --- a/module/tutorial/model.php +++ b/module/tutorial/model.php @@ -3,7 +3,7 @@ * The model file of tutorial module of ZenTaoCMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package tutorial * @version $Id$ diff --git a/module/tutorial/view/index.html.php b/module/tutorial/view/index.html.php index f0136f8685..42c012ba3b 100644 --- a/module/tutorial/view/index.html.php +++ b/module/tutorial/view/index.html.php @@ -3,7 +3,7 @@ * The index view file of tutorial module of ZenTaoPMS. * * @copyright Copyright 2009-2016 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Hao Sun * @package tutorial * @version $Id: browse.html.php 4728 2013-05-03 06:14:34Z sunhao@cnezsoft.com $ diff --git a/module/tutorial/view/start.html.php b/module/tutorial/view/start.html.php index e8a9463f2e..87376555e0 100644 --- a/module/tutorial/view/start.html.php +++ b/module/tutorial/view/start.html.php @@ -3,7 +3,7 @@ * The start view file of tutorial module of ZenTaoPMS. * * @copyright Copyright 2009-2016 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Hao Sun * @package tutorial * @version $Id: browse.html.php 4728 2013-05-03 06:14:34Z sunhao@cnezsoft.com $ diff --git a/module/upgrade/control.php b/module/upgrade/control.php index ae4b2b9de1..0d9743d22e 100644 --- a/module/upgrade/control.php +++ b/module/upgrade/control.php @@ -3,7 +3,7 @@ * The control file of upgrade module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/de.php b/module/upgrade/lang/de.php index 57782dd881..7e4312c9ad 100644 --- a/module/upgrade/lang/de.php +++ b/module/upgrade/lang/de.php @@ -3,7 +3,7 @@ * The upgrade module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/en.php b/module/upgrade/lang/en.php index e9fe9f80ea..4620c5a3c3 100644 --- a/module/upgrade/lang/en.php +++ b/module/upgrade/lang/en.php @@ -3,7 +3,7 @@ * The upgrade module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/fr.php b/module/upgrade/lang/fr.php index 9a7c497b65..bea24c5e35 100644 --- a/module/upgrade/lang/fr.php +++ b/module/upgrade/lang/fr.php @@ -3,7 +3,7 @@ * The upgrade module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 e88539e414..35e00dcc9f 100644 --- a/module/upgrade/lang/zh-cn.php +++ b/module/upgrade/lang/zh-cn.php @@ -3,7 +3,7 @@ * The upgrade module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 3d176575c8..2abfeea421 100644 --- a/module/upgrade/lang/zh-tw.php +++ b/module/upgrade/lang/zh-tw.php @@ -3,7 +3,7 @@ * The upgrade module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 04df92eac1..35551f4c89 100644 --- a/module/upgrade/model.php +++ b/module/upgrade/model.php @@ -3,7 +3,7 @@ * The model file of upgrade module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/afterexec.html.php b/module/upgrade/view/afterexec.html.php index 9d45361424..32ff8e7d4b 100644 --- a/module/upgrade/view/afterexec.html.php +++ b/module/upgrade/view/afterexec.html.php @@ -3,7 +3,7 @@ * The html template file of execute method of upgrade module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/backup.html.php b/module/upgrade/view/backup.html.php index 7cb039e165..97fc78213e 100644 --- a/module/upgrade/view/backup.html.php +++ b/module/upgrade/view/backup.html.php @@ -3,7 +3,7 @@ * The html template file of index method of upgrade module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package upgrade * @version $Id: index.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/upgrade/view/checkextension.html.php b/module/upgrade/view/checkextension.html.php index 7236fa23ed..48fcd0b097 100644 --- a/module/upgrade/view/checkextension.html.php +++ b/module/upgrade/view/checkextension.html.php @@ -3,7 +3,7 @@ * The checkExtension view file of upgrade module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package upgrade * @version $Id$ diff --git a/module/upgrade/view/confirm.html.php b/module/upgrade/view/confirm.html.php index cbbd696363..052e6519df 100644 --- a/module/upgrade/view/confirm.html.php +++ b/module/upgrade/view/confirm.html.php @@ -3,7 +3,7 @@ * The html template file of confirm method of upgrade module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package upgrade * @version $Id: confirm.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/upgrade/view/consistency.html.php b/module/upgrade/view/consistency.html.php index 9cd1b43527..b6b1527dab 100644 --- a/module/upgrade/view/consistency.html.php +++ b/module/upgrade/view/consistency.html.php @@ -3,7 +3,7 @@ * The checkExtension view file of upgrade module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package upgrade * @version $Id$ diff --git a/module/upgrade/view/execute.html.php b/module/upgrade/view/execute.html.php index 629c9b6de4..8668911865 100644 --- a/module/upgrade/view/execute.html.php +++ b/module/upgrade/view/execute.html.php @@ -3,7 +3,7 @@ * The html template file of execute method of upgrade module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/license.html.php b/module/upgrade/view/license.html.php index d6927f692d..9f0b41ae57 100644 --- a/module/upgrade/view/license.html.php +++ b/module/upgrade/view/license.html.php @@ -3,7 +3,7 @@ * The html file of license method of upgrade module of ZentaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package upgrade * @version $Id: selectversion.html.php 1292 2014-06-05 03:03:52Z guanxiying $ diff --git a/module/upgrade/view/mergeprogram.html.php b/module/upgrade/view/mergeprogram.html.php index 3e982def50..2fa3b6812e 100644 --- a/module/upgrade/view/mergeprogram.html.php +++ b/module/upgrade/view/mergeprogram.html.php @@ -3,7 +3,7 @@ * The mergeProgram view file of upgrade module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package upgrade * @version $Id$ diff --git a/module/upgrade/view/mergerepo.html.php b/module/upgrade/view/mergerepo.html.php index 6d97b18d0a..3b490dcefe 100644 --- a/module/upgrade/view/mergerepo.html.php +++ b/module/upgrade/view/mergerepo.html.php @@ -3,7 +3,7 @@ * The mergerepo view file of upgrade module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package upgrade * @version $Id$ diff --git a/module/upgrade/view/mergetips.html.php b/module/upgrade/view/mergetips.html.php index ccbfcd7e8f..f991d5cc02 100644 --- a/module/upgrade/view/mergetips.html.php +++ b/module/upgrade/view/mergetips.html.php @@ -3,7 +3,7 @@ * The to20 view file of upgrade module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package upgrade * @version $Id$ diff --git a/module/upgrade/view/moveextfiles.html.php b/module/upgrade/view/moveextfiles.html.php index a5f79e1995..e00429634d 100644 --- a/module/upgrade/view/moveextfiles.html.php +++ b/module/upgrade/view/moveextfiles.html.php @@ -3,7 +3,7 @@ * The moveextfiles view file of upgrade module of ZenTaoPMS. * * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Shujie Tian * @package upgrade * @version $Id: moveextfiles.html.php 5119 2022-02-21 13:22:42Z $ diff --git a/module/upgrade/view/renameobject.html.php b/module/upgrade/view/renameobject.html.php index 952f8d44bd..5cbf408bb8 100644 --- a/module/upgrade/view/renameobject.html.php +++ b/module/upgrade/view/renameobject.html.php @@ -3,7 +3,7 @@ * The html template file of renameObject method of upgrade module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Guangming Sun * @package upgrade * @version $Id: renameobject.html.php 4129 2021-11-30 13:07:14Z sunguangming $ diff --git a/module/upgrade/view/selectversion.html.php b/module/upgrade/view/selectversion.html.php index 34d988284d..db4a87fa3f 100644 --- a/module/upgrade/view/selectversion.html.php +++ b/module/upgrade/view/selectversion.html.php @@ -3,7 +3,7 @@ * The html template file of select version method of upgrade module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package upgrade * @version $Id: selectversion.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/upgrade/view/to15guide.html.php b/module/upgrade/view/to15guide.html.php index f1d56423fd..3c7ee6df8f 100644 --- a/module/upgrade/view/to15guide.html.php +++ b/module/upgrade/view/to15guide.html.php @@ -3,7 +3,7 @@ * The to20 view file of upgrade module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package upgrade * @version $Id$ diff --git a/module/user/control.php b/module/user/control.php index a7fcae9a2c..85a8db3d6c 100755 --- a/module/user/control.php +++ b/module/user/control.php @@ -3,7 +3,7 @@ * The control file of user module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/de.php b/module/user/lang/de.php index 5e3bf4ef5f..d9336200e2 100644 --- a/module/user/lang/de.php +++ b/module/user/lang/de.php @@ -3,7 +3,7 @@ * The user module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/en.php b/module/user/lang/en.php index 105f762522..88505f426e 100644 --- a/module/user/lang/en.php +++ b/module/user/lang/en.php @@ -3,7 +3,7 @@ * The user module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/fr.php b/module/user/lang/fr.php index 8d44bab0e2..8f41ef6329 100644 --- a/module/user/lang/fr.php +++ b/module/user/lang/fr.php @@ -3,7 +3,7 @@ * The user module English file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 662b2f6e64..16be98a0c4 100644 --- a/module/user/lang/zh-cn.php +++ b/module/user/lang/zh-cn.php @@ -3,7 +3,7 @@ * The user module zh-cn file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 4fb85233db..4d19575364 100644 --- a/module/user/lang/zh-tw.php +++ b/module/user/lang/zh-tw.php @@ -3,7 +3,7 @@ * The user module zh-tw file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 52cc9b3269..27fe098394 100644 --- a/module/user/model.php +++ b/module/user/model.php @@ -3,7 +3,7 @@ * The model file of user module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 6dbc565b1e..87ad325974 100644 --- a/module/user/view/batchcreate.html.php +++ b/module/user/view/batchcreate.html.php @@ -3,7 +3,7 @@ * The batch create view of user module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yangyang Shi * @package story * @version $Id$ diff --git a/module/user/view/batchedit.html.php b/module/user/view/batchedit.html.php index 527c8e5882..64b44b5ee7 100644 --- a/module/user/view/batchedit.html.php +++ b/module/user/view/batchedit.html.php @@ -3,7 +3,7 @@ * The batch create view of user module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yangyang Shi * @package story * @version $Id$ diff --git a/module/user/view/bug.html.php b/module/user/view/bug.html.php index 5079528866..0e8e5711f2 100644 --- a/module/user/view/bug.html.php +++ b/module/user/view/bug.html.php @@ -3,7 +3,7 @@ * The bug view file of dashboard module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 8d248a899d..ddae050193 100644 --- a/module/user/view/create.html.php +++ b/module/user/view/create.html.php @@ -3,7 +3,7 @@ * The create view of user module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/cropavatar.html.php b/module/user/view/cropavatar.html.php index 1ad22383b9..24fadecd4f 100644 --- a/module/user/view/cropavatar.html.php +++ b/module/user/view/cropavatar.html.php @@ -3,7 +3,7 @@ * The crop avatar view file of user module of ZentaoPms. * * @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package user * @version $Id: cropavatar.html.php 8669 2021-01-18 16:58:48Z sunguangming$ diff --git a/module/user/view/delete.html.php b/module/user/view/delete.html.php index ca9c4fe1f4..5731ed36e3 100644 --- a/module/user/view/delete.html.php +++ b/module/user/view/delete.html.php @@ -3,7 +3,7 @@ * The delete view file of user module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package user * @version $Id$ diff --git a/module/user/view/deny.html.php b/module/user/view/deny.html.php index 4f5dee48da..3f606f1a6e 100644 --- a/module/user/view/deny.html.php +++ b/module/user/view/deny.html.php @@ -3,7 +3,7 @@ * The html template file of deny method of user module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 e84f294dcb..de4d6b9c38 100644 --- a/module/user/view/dynamic.html.php +++ b/module/user/view/dynamic.html.php @@ -3,7 +3,7 @@ * The action->dynamic view file of dashboard module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 2e7d720c74..875bf6eddd 100644 --- a/module/user/view/edit.html.php +++ b/module/user/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view of user module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/execution.html.php b/module/user/view/execution.html.php index 6d5c6bd895..136045b699 100644 --- a/module/user/view/execution.html.php +++ b/module/user/view/execution.html.php @@ -3,7 +3,7 @@ * The project view file of dashboard module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package dashboard * @version $Id: project.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/user/view/issue.html.php b/module/user/view/issue.html.php index b149e8ee0b..35ac266185 100644 --- a/module/user/view/issue.html.php +++ b/module/user/view/issue.html.php @@ -3,7 +3,7 @@ * The risk view file of dashboard module of ZenTaoPMS. * * @copyright Copyright 2009-2021 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yuchun Li * @package dashboard * @version $Id: risk.html.php 4771 2021-01-13 14:18:02Z $ diff --git a/module/user/view/login.html.php b/module/user/view/login.html.php index fc8960ddf7..24d840c7fa 100644 --- a/module/user/view/login.html.php +++ b/module/user/view/login.html.php @@ -3,7 +3,7 @@ * The html template file of login method of user module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/profile.html.php b/module/user/view/profile.html.php index 5bae632811..23c8d98c82 100644 --- a/module/user/view/profile.html.php +++ b/module/user/view/profile.html.php @@ -3,7 +3,7 @@ * The profile view file of user module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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/reset.html.php b/module/user/view/reset.html.php index 4803257d7f..3160a488d8 100644 --- a/module/user/view/reset.html.php +++ b/module/user/view/reset.html.php @@ -3,7 +3,7 @@ * The reset view file of user module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package user * @version $Id$ diff --git a/module/user/view/story.html.php b/module/user/view/story.html.php index e1827571b2..7cabefed50 100644 --- a/module/user/view/story.html.php +++ b/module/user/view/story.html.php @@ -3,7 +3,7 @@ * The story view file of dashboard module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 c52df556c1..78057afb7f 100644 --- a/module/user/view/task.html.php +++ b/module/user/view/task.html.php @@ -3,7 +3,7 @@ * The task view file of dashboard module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 c8c8ce4304..6d03e1e279 100644 --- a/module/user/view/team.html.php +++ b/module/user/view/team.html.php @@ -3,7 +3,7 @@ * The team view file of dashboard module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 9e3cb8914f..35776a437a 100755 --- a/module/user/view/testcase.html.php +++ b/module/user/view/testcase.html.php @@ -3,7 +3,7 @@ * The test view file of dashboard module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @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 ae38474ac2..68f29b3a7f 100755 --- a/module/user/view/testtask.html.php +++ b/module/user/view/testtask.html.php @@ -3,7 +3,7 @@ * The testtask view file of my module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package dashboard * @version $Id$ diff --git a/module/user/view/todo.html.php b/module/user/view/todo.html.php index 0417eaf548..d13e9139bb 100644 --- a/module/user/view/todo.html.php +++ b/module/user/view/todo.html.php @@ -3,7 +3,7 @@ * The todo view file of dashboard module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package dashboard * @version $Id: todo.html.php 4744 2013-05-04 02:41:05Z wyd621@gmail.com $ diff --git a/module/webhook/control.php b/module/webhook/control.php index 5483282e15..16e612a601 100644 --- a/module/webhook/control.php +++ b/module/webhook/control.php @@ -3,7 +3,7 @@ * The control file of webhook module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package webhook * @version $Id$ diff --git a/module/webhook/model.php b/module/webhook/model.php index 209f021344..ed26b44ea0 100644 --- a/module/webhook/model.php +++ b/module/webhook/model.php @@ -3,7 +3,7 @@ * The model file of webhook module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package webhook * @version $Id$ diff --git a/module/webhook/view/browse.html.php b/module/webhook/view/browse.html.php index e297af5fa7..cf1d4f2735 100644 --- a/module/webhook/view/browse.html.php +++ b/module/webhook/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of webhook module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package webhook * @version $Id$ diff --git a/module/webhook/view/choosedept.html.php b/module/webhook/view/choosedept.html.php index d580e01fa2..2ccf6fc9cc 100644 --- a/module/webhook/view/choosedept.html.php +++ b/module/webhook/view/choosedept.html.php @@ -3,7 +3,7 @@ * The choose dept view file of webhook module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package webhook * @version $Id$ diff --git a/module/webhook/view/create.html.php b/module/webhook/view/create.html.php index 9221d2df84..895e387a29 100644 --- a/module/webhook/view/create.html.php +++ b/module/webhook/view/create.html.php @@ -3,7 +3,7 @@ * The create view file of webhook module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package webhook * @version $Id$ diff --git a/module/webhook/view/edit.html.php b/module/webhook/view/edit.html.php index 2109b61809..2e5b2def2d 100644 --- a/module/webhook/view/edit.html.php +++ b/module/webhook/view/edit.html.php @@ -3,7 +3,7 @@ * The edit view file of webhook module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package webhook * @version $Id$ diff --git a/module/webhook/view/header.html.php b/module/webhook/view/header.html.php index b00b76db9a..ef63c7605e 100644 --- a/module/webhook/view/header.html.php +++ b/module/webhook/view/header.html.php @@ -3,7 +3,7 @@ * The header view file of webhook module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package webhook * @version $Id$ diff --git a/module/webhook/view/log.html.php b/module/webhook/view/log.html.php index a7ddaedc4e..e2ee827805 100644 --- a/module/webhook/view/log.html.php +++ b/module/webhook/view/log.html.php @@ -3,7 +3,7 @@ * The log view file of log module of ZenTaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package log * @version $Id$ diff --git a/module/weekly/lang/de.php b/module/weekly/lang/de.php index c0f42439ff..4ec836cbd4 100644 --- a/module/weekly/lang/de.php +++ b/module/weekly/lang/de.php @@ -3,7 +3,7 @@ * The weekly module lang file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package weekly * @version $Id diff --git a/module/weekly/lang/en.php b/module/weekly/lang/en.php index c0f42439ff..4ec836cbd4 100644 --- a/module/weekly/lang/en.php +++ b/module/weekly/lang/en.php @@ -3,7 +3,7 @@ * The weekly module lang file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package weekly * @version $Id diff --git a/module/weekly/lang/fr.php b/module/weekly/lang/fr.php index c0f42439ff..4ec836cbd4 100644 --- a/module/weekly/lang/fr.php +++ b/module/weekly/lang/fr.php @@ -3,7 +3,7 @@ * The weekly module lang file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package weekly * @version $Id diff --git a/module/weekly/lang/vi.php b/module/weekly/lang/vi.php index c0f42439ff..4ec836cbd4 100644 --- a/module/weekly/lang/vi.php +++ b/module/weekly/lang/vi.php @@ -3,7 +3,7 @@ * The weekly module lang file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package weekly * @version $Id diff --git a/module/weekly/lang/zh-cn.php b/module/weekly/lang/zh-cn.php index d0fc86ef86..8de8f8e5d4 100644 --- a/module/weekly/lang/zh-cn.php +++ b/module/weekly/lang/zh-cn.php @@ -3,7 +3,7 @@ * The weekly module lang file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package weekly * @version $Id diff --git a/module/weekly/lang/zh-tw.php b/module/weekly/lang/zh-tw.php index 20f44ed51f..2cea975d65 100644 --- a/module/weekly/lang/zh-tw.php +++ b/module/weekly/lang/zh-tw.php @@ -3,7 +3,7 @@ * The weekly module lang file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青島易軟天創網絡科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package weekly * @version $Id diff --git a/module/weekly/view/index.html.php b/module/weekly/view/index.html.php index ceaf917100..bb9911f3e5 100644 --- a/module/weekly/view/index.html.php +++ b/module/weekly/view/index.html.php @@ -3,7 +3,7 @@ * The html template file of index method of index module of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: index.html.php 5094 2013-07-10 08:46:15Z chencongzhi520@gmail.com $ diff --git a/roadrunner/cron-worker.php b/roadrunner/cron-worker.php index f58bdd732e..2e35841221 100644 --- a/roadrunner/cron-worker.php +++ b/roadrunner/cron-worker.php @@ -5,7 +5,7 @@ * All request of entries should be routed by this router. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package ZenTaoPMS * @version $Id: index.php 5036 2013-07-06 05:26:44Z wyd621@gmail.com $ diff --git a/sdk/php/zentao.php b/sdk/php/zentao.php index efd080a5f6..859dd72b7a 100644 --- a/sdk/php/zentao.php +++ b/sdk/php/zentao.php @@ -4,7 +4,7 @@ * This is the PHP-SDK class of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author * @package api * @version v1.0.0 diff --git a/test/lib/init.php b/test/lib/init.php index 16afc25970..d2e68b9639 100644 --- a/test/lib/init.php +++ b/test/lib/init.php @@ -6,7 +6,7 @@ * All request of entries should be routed by this router. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Guanxing * @package ZenTaoPMS * @version $Id: $ diff --git a/test/lib/utils.php b/test/lib/utils.php index fbe3b538cc..8195f00ae8 100644 --- a/test/lib/utils.php +++ b/test/lib/utils.php @@ -3,7 +3,7 @@ * Utils for ZenTaoPMS testing. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Guanxing * @package ZenTaoPMS * @version $Id: $ diff --git a/www/api.php b/www/api.php index 6fab206621..c61192a19b 100644 --- a/www/api.php +++ b/www/api.php @@ -5,7 +5,7 @@ * All request of entries should be routed by this router. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package ZenTaoPMS * @version $Id: index.php 5036 2013-07-06 05:26:44Z wyd621@gmail.com $ diff --git a/www/index.php b/www/index.php index 6e1527e16d..a4e830c101 100644 --- a/www/index.php +++ b/www/index.php @@ -5,7 +5,7 @@ * All request should be routed by this router. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: index.php 5036 2013-07-06 05:26:44Z wyd621@gmail.com $ diff --git a/www/init.php b/www/init.php index 23acb0c613..bca2a66026 100644 --- a/www/init.php +++ b/www/init.php @@ -6,7 +6,7 @@ * All request of entries should be routed by this router. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Guanxing * @package ZenTaoPMS * @version $Id: $ diff --git a/www/install.php.tmp b/www/install.php.tmp index 6d7e9fdfd1..ee4eaa9343 100644 --- a/www/install.php.tmp +++ b/www/install.php.tmp @@ -3,7 +3,7 @@ * The install router file of ZenTaoPMS. * * @copyright Copyright 2009-2013 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: install.php 4677 2013-04-26 06:23:58Z chencongzhi520@gmail.com $ diff --git a/www/theme/default/style.css b/www/theme/default/style.css index d5a77c6729..85e28ea2f5 100644 --- a/www/theme/default/style.css +++ b/www/theme/default/style.css @@ -2,7 +2,7 @@ * The css file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) -* @license ZPL (http://zpl.pub/page/zplv12.html) +* @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package front * @version $Id: style.css 1454 2009-10-23 01:45:26Z wwccss $ diff --git a/www/upgrade.php.tmp b/www/upgrade.php.tmp index b51a015ad8..a287283338 100644 --- a/www/upgrade.php.tmp +++ b/www/upgrade.php.tmp @@ -3,7 +3,7 @@ * The upgrade router file of ZenTaoPMS. * * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: upgrade.php 4677 2013-04-26 06:23:58Z chencongzhi520@gmail.com $ diff --git a/xuanxuan/extension/xuan/admin/ext/view/xuanxuan.html.php b/xuanxuan/extension/xuan/admin/ext/view/xuanxuan.html.php index 4e2bd97515..aa1468fde9 100644 --- a/xuanxuan/extension/xuan/admin/ext/view/xuanxuan.html.php +++ b/xuanxuan/extension/xuan/admin/ext/view/xuanxuan.html.php @@ -3,7 +3,7 @@ * The index view file of index module of XXB. * * @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package index * @version $Id: index.html.php 4205 2016-10-24 08:19:13Z liugang $ diff --git a/xuanxuan/extension/xuan/client/ext/view/browse.html.php b/xuanxuan/extension/xuan/client/ext/view/browse.html.php index 18567b875d..df251ff201 100644 --- a/xuanxuan/extension/xuan/client/ext/view/browse.html.php +++ b/xuanxuan/extension/xuan/client/ext/view/browse.html.php @@ -3,7 +3,7 @@ * The browse view file of client module of XXB. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Memory * @package client * @version $Id$ diff --git a/xuanxuan/extension/xuan/client/ext/view/safe.html.php b/xuanxuan/extension/xuan/client/ext/view/safe.html.php index ea1adc207d..238210412a 100644 --- a/xuanxuan/extension/xuan/client/ext/view/safe.html.php +++ b/xuanxuan/extension/xuan/client/ext/view/safe.html.php @@ -3,7 +3,7 @@ * The safe view file of client module of ZentaoPMS. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Yidong Wang * @package client * @version $Id$ diff --git a/xuanxuan/extension/xuan/setting/ext/view/xuanxuan.html.php b/xuanxuan/extension/xuan/setting/ext/view/xuanxuan.html.php index af63fb354a..ea5e3f2c4f 100644 --- a/xuanxuan/extension/xuan/setting/ext/view/xuanxuan.html.php +++ b/xuanxuan/extension/xuan/setting/ext/view/xuanxuan.html.php @@ -3,7 +3,7 @@ * The configure xuanxuan view file of setting module of RanZhi. * * @copyright Copyright 2009-2017 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) + * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL * @author Gang Liu * @package setting * @version $Id$ From 56419e17a86b317774f876587f9910f9829ec652 Mon Sep 17 00:00:00 2001 From: zhouxudong Date: Wed, 8 Jun 2022 01:39:24 +0000 Subject: [PATCH 17/53] * Finish task #56379. --- module/kanban/css/space.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/kanban/css/space.css b/module/kanban/css/space.css index bc779ee065..90577df686 100644 --- a/module/kanban/css/space.css +++ b/module/kanban/css/space.css @@ -8,7 +8,7 @@ .space .menu {margin-left: 5px; margin-right:5px;} .space .table-empty-tip {padding: 40px 10px;} .space .spaceTitle.pull-left {overflow: hidden; white-space: nowrap; max-width: calc(100% - 150px)} -.desc-style {font-size: 13px; color: #838A9D; margin: -5px 0 16px 18px;} +.desc-style {font-size: 13px; color: #838A9D; margin: -5px 0 5px 18px;} .kanbans > .col {width: 25% !important;} @media screen and (max-width: 1500px) {.kanbans > .col {width: 25%;}} From 757b86bf3369a5047da0155e3971e7ee360f4bb9 Mon Sep 17 00:00:00 2001 From: zhouxudong Date: Wed, 8 Jun 2022 01:52:34 +0000 Subject: [PATCH 18/53] * Finish task #56379. --- module/kanban/css/space.css | 1 + module/kanban/view/space.html.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/module/kanban/css/space.css b/module/kanban/css/space.css index 90577df686..8eabd3cb10 100644 --- a/module/kanban/css/space.css +++ b/module/kanban/css/space.css @@ -9,6 +9,7 @@ .space .table-empty-tip {padding: 40px 10px;} .space .spaceTitle.pull-left {overflow: hidden; white-space: nowrap; max-width: calc(100% - 150px)} .desc-style {font-size: 13px; color: #838A9D; margin: -5px 0 5px 18px;} +.menu-style {margin-left: -25px; min-width: 80px} .kanbans > .col {width: 25% !important;} @media screen and (max-width: 1500px) {.kanbans > .col {width: 25%;}} diff --git a/module/kanban/view/space.html.php b/module/kanban/view/space.html.php index bd42d1074a..a4c478d57c 100644 --- a/module/kanban/view/space.html.php +++ b/module/kanban/view/space.html.php @@ -54,7 +54,7 @@ status != 'closed' and $browseType != 'involved' and !empty($unclosedSpace)) common::printLink('kanban', 'create', "spaceID={$space->id}&type={$space->type}", ' ' . $lang->kanban->create, '', "class='iframe' data-width='75%'", '', true);?>
kanban->setting;?> -
+
+ +
" . $lang->searchAB, '', "class='btn btn-link querybox-toggle'"); echo html::a('javascript:fullScreen()', " " . $lang->kanban->fullScreen, '', "class='btn btn-link'"); $actions = ''; $printCreateRegion = (common::hasPriv('kanban', 'createRegion') and $groupBy == 'default'); diff --git a/module/kanban/model.php b/module/kanban/model.php index df7c270ae0..cf4bb3e966 100644 --- a/module/kanban/model.php +++ b/module/kanban/model.php @@ -808,13 +808,14 @@ class kanbanModel extends model * @param string $orderBy * @param int $regionID * @param string $groupBy + * @param string $searchValue * * @access public * @return array */ - public function getRDKanban($executionID, $browseType = 'all', $orderBy = 'id_desc', $regionID = 0, $groupBy = 'default') + public function getRDKanban($executionID, $browseType = 'all', $orderBy = 'id_desc', $regionID = 0, $groupBy = 'default', $searchValue = '') { - if($groupBy != 'default') return $this->getKanban4Group($executionID, $browseType, $groupBy); + if($groupBy != 'default') return $this->getKanban4Group($executionID, $browseType, $groupBy, $searchValue); $kanbanData = array(); $actions = array('sortGroup'); @@ -823,7 +824,7 @@ class kanbanModel extends model $groupGroup = $this->getGroupGroupByRegions($regionIDList); $laneGroup = $this->getLaneGroupByRegions($regionIDList, $browseType); $columnGroup = $this->getRDColumnGroupByRegions($regionIDList, array_keys($laneGroup)); - $cardGroup = $this->getCardGroupByExecution($executionID, $browseType, $orderBy); + $cardGroup = $this->getCardGroupByExecution($executionID, $browseType, $orderBy, $searchValue); foreach($regions as $regionID => $regionName) { @@ -838,13 +839,16 @@ class kanbanModel extends model $lanes = zget($laneGroup, $group->id, array()); if(!$lanes) continue; - foreach($lanes as $lane) + foreach($lanes as $key => $lane) { $this->refreshCards($lane); $lane->items = isset($cardGroup[$lane->id]) ? $cardGroup[$lane->id] : array(); $lane->defaultCardType = $lane->type; + if(!empty($searchValue) and count($lane->items) == 0) unset($lanes[$key]); } + $lanes = array_values($lanes); + if(!empty($searchValue) and empty($lanes)) continue; $group->columns = zget($columnGroup, $group->id, array()); $group->lanes = $lanes; $group->actions = array(); @@ -1250,10 +1254,12 @@ class kanbanModel extends model * @param int $kanbanID * @param string $browseType all|task|bug|story * @param string $orderBy + * @param string $searchValue + * * @access public * @return array */ - public function getCardGroupByExecution($executionID, $browseType = 'all', $orderBy = 'id_asc') + public function getCardGroupByExecution($executionID, $browseType = 'all', $orderBy = 'id_asc', $searchValue = '') { $cards = $this->dao->select('t1.*, t2.type as columnType') ->from(TABLE_KANBANCELL)->alias('t1') @@ -1297,12 +1303,14 @@ class kanbanModel extends model if($cell->type == 'task') { + if(!empty($searchValue) and strpos($object->name, $searchValue) === false) continue; $cardData['name'] = $object->name; $cardData['status'] = $object->status; $cardData['left'] = $object->left; } else { + if(!empty($searchValue) and strpos($object->title, $searchValue) === false) continue; $cardData['title'] = $object->title; } $cardGroup[$laneID][$cell->columnType][] = $cardData; @@ -1406,12 +1414,14 @@ class kanbanModel extends model if($lane->type == 'task') { + if(!empty($searchValue) and strpos($object->name, $searchValue) === false) continue; $cardData['name'] = $object->name; $cardData['status'] = $object->status; $cardData['left'] = $object->left; } else { + if(!empty($searchValue) and strpos($object->title, $searchValue) === false) continue; $cardData['title'] = $object->title; } @@ -1440,10 +1450,12 @@ class kanbanModel extends model * @param int $executionID * @param string $browseType * @param string $groupBy + * @param string $searchValue + * * @access public * @return array */ - public function getKanban4Group($executionID, $browseType, $groupBy) + public function getKanban4Group($executionID, $browseType, $groupBy, $searchValue = '') { /* Get card data. */ $cardList = array(); @@ -1551,21 +1563,24 @@ class kanbanModel extends model if($browseType == 'task') { + if(!empty($searchValue) and strpos($object->name, $searchValue) === false) continue; $cardData['name'] = $object->name; $cardData['status'] = $object->status; $cardData['left'] = $object->left; } else { + if(!empty($searchValue) and strpos($object->title, $searchValue) === false) continue; $cardData['title'] = $object->title; } $laneData['cards'][$column->columnType][] = $cardData; $cardOrder ++; } - if(!isset($laneData['cards'][$column->columnType])) $laneData['cards'][$column->columnType] = array(); + if(empty($searchValue) and !isset($laneData['cards'][$column->columnType])) $laneData['cards'][$column->columnType] = array(); } + if(!empty($searchValue) and empty($laneData['cards'])) continue;; $kanbanGroup[$groupBy]['id'] = $groupBy . $laneID; $kanbanGroup[$groupBy]['columns'] = array_values($columnData); $kanbanGroup[$groupBy]['lanes'][] = $laneData; From 304f50eef00bbc7abfe2a1c169c46948c6cc516c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=99=E5=B9=BF=E6=98=8E?= Date: Wed, 8 Jun 2022 10:34:19 +0800 Subject: [PATCH 21/53] * Remove unused file and change license. --- COPYING | 15 +- doc/COPYING | 674 ------------------ doc/COPYING.LESSER | 165 ----- doc/FLOWCHART.url | 5 - doc/HELP.url | 5 - doc/LICENSE.CN | 7 +- doc/LICENSE.EN | 10 +- doc/README | 31 - doc/README.zh_CN | 44 -- doc/THIRDPARTY | 14 - doc/TODO | 1 - doc/UPGRADE | 1 - doc/VIDEO.url | 5 - doc/doxygen/doxygen.conf | 1417 -------------------------------------- doc/phpdoc/blank.tpl | 13 - doc/phpdoc/header.tpl | 11 - doc/phpdoc/index.tpl | 23 - doc/phpdoc/top_frame.tpl | 21 - 18 files changed, 14 insertions(+), 2448 deletions(-) delete mode 100644 doc/COPYING delete mode 100644 doc/COPYING.LESSER delete mode 100755 doc/FLOWCHART.url delete mode 100755 doc/HELP.url delete mode 100644 doc/README delete mode 100644 doc/README.zh_CN delete mode 100644 doc/THIRDPARTY delete mode 100644 doc/TODO delete mode 100644 doc/UPGRADE delete mode 100755 doc/VIDEO.url delete mode 100644 doc/doxygen/doxygen.conf delete mode 100644 doc/phpdoc/blank.tpl delete mode 100644 doc/phpdoc/header.tpl delete mode 100644 doc/phpdoc/index.tpl delete mode 100644 doc/phpdoc/top_frame.tpl diff --git a/COPYING b/COPYING index b3484e3a6a..eedc91483b 100644 --- a/COPYING +++ b/COPYING @@ -1,11 +1,6 @@ -本仓库的源代码由以下双重许可涵盖: - (1) Z PUBLIC LICENSE(以下简称ZPL) v1.2。 - (2) Affero General Public License(以下简称AGPL) 授权协议。 -默认授权协议为ZPL协议。 -您也可以选择遵守AGPL协议使用我们的源代码。 +The source code of zentao is covered by the following dual licenses: -The source code of this repository is covered by the following dual licenses: -(1) Z PUBLIC LICENSE(ZPL) v1.2 -(2) Affero General Public License(AGPL) -The default license agreement is the ZPL. -Or you can choose to use our source code under the AGPL. +(1) ZPL 1.2: http://zpl.pub/page/zplv12.html +(2) AGPL 3.0: https://www.gnu.org/licenses/agpl-3.0.en.html + +You can choose ZPL or AGPL to use zentao. diff --git a/doc/COPYING b/doc/COPYING deleted file mode 100644 index 94a9ed024d..0000000000 --- a/doc/COPYING +++ /dev/null @@ -1,674 +0,0 @@ - GNU 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. - - Preamble - - 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. - - 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. - - 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 - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "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. - - 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. - - 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. - - 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. - - 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. - - 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. - - 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. - - 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. - - 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 -. diff --git a/doc/COPYING.LESSER b/doc/COPYING.LESSER deleted file mode 100644 index fc8a5de7ed..0000000000 --- a/doc/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/FLOWCHART.url b/doc/FLOWCHART.url deleted file mode 100755 index 84ca9fb3d6..0000000000 --- a/doc/FLOWCHART.url +++ /dev/null @@ -1,5 +0,0 @@ -[InternetShortcut] -URL=http://www.zentao.net/help-read-79236.html -IDList= -[{000214A0-0000-0000-C000-000000000046}] -Prop3=19,2 diff --git a/doc/HELP.url b/doc/HELP.url deleted file mode 100755 index 84ca9fb3d6..0000000000 --- a/doc/HELP.url +++ /dev/null @@ -1,5 +0,0 @@ -[InternetShortcut] -URL=http://www.zentao.net/help-read-79236.html -IDList= -[{000214A0-0000-0000-C000-000000000046}] -Prop3=19,2 diff --git a/doc/LICENSE.CN b/doc/LICENSE.CN index 37c4a5952f..710bcd5712 100644 --- a/doc/LICENSE.CN +++ b/doc/LICENSE.CN @@ -1,12 +1,9 @@ 禅道项目管理软件使用 Z PUBLIC LICENSE(以下简称ZPL) 1.2 和 Affero General Public License(以下简称AGPL) 双授权协议。 -默认使用ZPL协议,您也可以选择遵守AGPL协议使用我们的软件。 - -ZenTao Project Management Software is licensed under the Z PUBLIC LICENSE (ZPL) 1.2 and the Affero General Public License (AGPL). -The ZPL is applied by default, or you can choose to use our software under the AGPL. +您可以选择ZPL协议或AGPL协议使用我们的软件。 ----------------------------------------------------------------------------------------------------------------------------------------------------------------- -Z PUBLIC LICENSE 1.2 +Z PUBLIC LICENSE(ZPL) 1.2 许可 diff --git a/doc/LICENSE.EN b/doc/LICENSE.EN index 714eef045c..e6c758402d 100644 --- a/doc/LICENSE.EN +++ b/doc/LICENSE.EN @@ -1,9 +1,13 @@ -ZenTao Project Management Software is licensed under the Z PUBLIC LICENSE (ZPL) 1.2 and the Affero General Public License (AGPL). -The ZPL is applied by default, or you can choose to use our software under the AGPL. +The source code of zentao is covered by the following dual licenses: + +(1) ZPL 1.2: http://zpl.pub/page/zplv12.html +(2) AGPL 3.0: https://www.gnu.org/licenses/agpl-3.0.en.html + +The default license agreement is the ZPL, or you can choose to use our source code under the AGPL. ----------------------------------------------------------------------------------------------------------------------------------------------------------------- -Z PUBLIC LICENSE 1.2 +Z PUBLIC LICENSE(ZPL) 1.2 Authorization diff --git a/doc/README b/doc/README deleted file mode 100644 index 5a40d5777b..0000000000 --- a/doc/README +++ /dev/null @@ -1,31 +0,0 @@ -ZenTao is a Scrum tool which is licensed under ZPL 1.2. - -The key feature of ZenTao: - -1. Product management(product backlog) - - story management - plan management - release management - -2. Project management(sprint backlog) - - task management - team management - build management - burn down chart - -3. QA management - - bug tracking - test case management - test task management - -4. Document management - -5. User management - -6. Todo management - -ZenTao official website: https://www.zentao.pm/ -ZenTao demo site: http://demo.zentao.pm/ diff --git a/doc/README.zh_CN b/doc/README.zh_CN deleted file mode 100644 index 152d4fe9a6..0000000000 --- a/doc/README.zh_CN +++ /dev/null @@ -1,44 +0,0 @@ -一、什么是禅道项目管理软件 - -禅道项目管理软件(ZenTaoPMS)是一款国产的,基于LGPL协议,开源免费的项目管理软件,它集产品管理、项目管理、测试管理于一体,同时还包含了事务管理、组织管理等诸多功能,是中小型企业项目管理的首选。官方网站:www.ZenTaoPMS.com - -禅道项目管理软件使用PHP + MySQL开发,基于自主的PHP开发框架──ZenTaoPHP而成。第三方开发者或者企业可以非常方便的开发插件或者进行定制。 - -禅道在手,项目无忧! - -禅道项目管理软件由QingDao Nature Easy Soft Network Technology Co,LTD (http://www.cnezsoft.com)开发。 - -二、禅道的含义 - -Zen是“禅”的意思,Tao是“道”的意思。ZenTao合意为禅与道。这个名称是我在读《编程之禅》和《编程之道》的时候受到启发,决定采用这个比较有中国味道的名字。 - -三、禅道项目管理软件的来由: - -说到这个问题,要从BugFree谈起。自从04年发布BugFree以来到2007年,BugFree陆续发布了五六个版本,在Bug管理方面基本上已经完备。但这个时候产生了一些新的问题。很多网友拿着BugFree进行改动,改造为其他的管理系统。还经常有网友问,BugFree可以不可以加入项目管理的功能。我也一直在思考这些问题。后来我加入了阿里巴巴,在中国雅虎‘、阿里妈妈、淘宝三年的工作经历中,参加了大大小小的项目。也深为项目管理所困惑。于是就产生了做一个工具来解决项目管理的问题。 - -由于种种原因,我这个愿望在阿里巴巴并没有实现。说来也是一件幸事,这样我可以把它开源来发布。从今年初我就开始着手考虑这套管理软件的设计。整整花了半年的时间在考虑。7月份从阿里巴巴辞职之后,我开始有有了相对比较多的一点时间来进行这套系统的开发。同时也非常感谢现在的这家单位,为我开发禅道项目管理软件提供了大力的支持。 - -四、为什么还要做禅道项目管理软件: - -很多朋友会问,已经有很多的开源项目管理软件或者系统了,为什么还要自己做一个呢?主要原因是我认为现在的开源项目管理软件对这个问题解决的并不好,比如缺乏需求管理,bug管理等功能。而且很多开源的项目管理软件使用起来也不方便。 - -市场上也有很多商业的软件,但收费都不菲,而且也未必见得好用。 - -现在也有很多在线的项目管理服务,比如国外的basecamp,国内的易度,忙吧等。但我的观点,这些在线的项目管理软件功能有限,缺乏定制,访问速度无法保证,而且缺乏保密。 - -五、禅道项目管理软件的特点: - -集成了产品管理、项目管理、测试管理、人员管理、发布管理、事务管理等功能于一体。你只需要一个软件就可以完成项目管理的最核心的任务。 -开源免费,降低企业部署的成本。 -功能注重实效,使用方便,没有太多复杂的概念。我设计的理念是一个没有做过项目管理的人经过10分钟的培训可以使用它进行项目管理。:) -基于PHP+MySQL开发,企业自主改动方便。并且基于ZenTaoPHP框架,为第三方开发者的加入打下了坚实的基础。 -主要理念基于scrum,同时结合了PMP里面的很多概念。 -支持多公司,多项目,多产品,多团队的开发。 -灵活的权限设置。 -支持产品与项目之间的矩阵关系。 - -六、禅道项目管理软件需要您的帮助 - -禅道项目管理软件需要您的帮助,无论您是开发人员,抑或是项目经理,或者是产品经理,还是测试人员,又或者是开源爱好者,您都可以在禅道项目管理软件找到参与的地方。我们会以非常open的心态打造一个禅道项目管理软件的社区。我相信,禅道社区的成功,才是禅道项目管理软件的成功。 - -大家如果想加入,可以和我联系:chunsheng@cnezsoft.com diff --git a/doc/THIRDPARTY b/doc/THIRDPARTY deleted file mode 100644 index 91d202cdc7..0000000000 --- a/doc/THIRDPARTY +++ /dev/null @@ -1,14 +0,0 @@ -禅道项目管理软件使用了很多第三方的开源类库,在此向“巨人们 ”表示敬意! - -CSS框架 :YUI 3 beta 中的 CSS套件,包括basic.css, reset.css, font.css和grid.css。官方网站:http://developer.yahoo.com/yui/3/ -JS框架 :JQUERY 1.3版本。官方网站:http://www.jquery.com -JQUER插件:alert chosen colorize flot jquerytools sparkline treetable validation autocomplete colorbox datepicker reverseorder tablesorter treeview - -编辑器:kindeditor -MAIL类 :phpmailer 5.1,官方网站: http://phpmailer.sourceforge.net -HTTP类 :snoopy 官方网站:http://snoopy.sourceforge.net/ -报表框架 :fushioncharts free 官方网站:http://www.fusioncharts.com/free/ - -zip压缩:pclzip - -yaml类:spyc diff --git a/doc/TODO b/doc/TODO deleted file mode 100644 index b33e2b2ae7..0000000000 --- a/doc/TODO +++ /dev/null @@ -1 +0,0 @@ -Please see http://pms.zentao.net/product/ diff --git a/doc/UPGRADE b/doc/UPGRADE deleted file mode 100644 index 62b48fef36..0000000000 --- a/doc/UPGRADE +++ /dev/null @@ -1 +0,0 @@ -升级,请参考 http://www.zentao.net/book/zentaopmshelp/41.html diff --git a/doc/VIDEO.url b/doc/VIDEO.url deleted file mode 100755 index 15b86db009..0000000000 --- a/doc/VIDEO.url +++ /dev/null @@ -1,5 +0,0 @@ -[InternetShortcut] -URL=http://www.zentao.net/video-browse.html -IDList= -[{000214A0-0000-0000-C000-000000000046}] -Prop3=19,2 diff --git a/doc/doxygen/doxygen.conf b/doc/doxygen/doxygen.conf deleted file mode 100644 index f1cc53309f..0000000000 --- a/doc/doxygen/doxygen.conf +++ /dev/null @@ -1,1417 +0,0 @@ -# Doxyfile 1.5.6 - -# This file describes the settings to be used by the documentation system -# doxygen (www.doxygen.org) for a project -# -# All text after a hash (#) is considered a comment and will be ignored -# The format is: -# TAG = value [value, ...] -# For lists items can also be appended using: -# TAG += value [value, ...] -# Values that contain spaces should be placed between quotes (" ") - -#--------------------------------------------------------------------------- -# Project related configuration options -#--------------------------------------------------------------------------- - -# This tag specifies the encoding used for all characters in the config file -# that follow. The default is UTF-8 which is also the encoding used for all -# text before the first occurrence of this tag. Doxygen uses libiconv (or the -# iconv built into libc) for the transcoding. See -# http://www.gnu.org/software/libiconv for the list of possible encodings. - -DOXYFILE_ENCODING = UTF-8 - -# The PROJECT_NAME tag is a single word (or a sequence of words surrounded -# by quotes) that should identify the project. - -PROJECT_NAME = ZenTaoPMS - -# The PROJECT_NUMBER tag can be used to enter a project or revision number. -# This could be handy for archiving the generated documentation or -# if some version control system is used. - -PROJECT_NUMBER = 1.4 - -# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) -# base path where the generated documentation will be put. -# If a relative path is entered, it will be relative to the location -# where doxygen was started. If left blank the current directory will be used. - -OUTPUT_DIRECTORY = ./api.doxygen - -# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create -# 4096 sub-directories (in 2 levels) under the output directory of each output -# format and will distribute the generated files over these directories. -# Enabling this option can be useful when feeding doxygen a huge amount of -# source files, where putting all generated files in the same directory would -# otherwise cause performance problems for the file system. - -CREATE_SUBDIRS = NO - -# The OUTPUT_LANGUAGE tag is used to specify the language in which all -# documentation generated by doxygen is written. Doxygen will use this -# information to generate all constant output in the proper language. -# The default language is English, other supported languages are: -# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, -# Croatian, Czech, Danish, Dutch, Farsi, Finnish, French, German, Greek, -# Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages), -# Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish, -# Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish, -# and Ukrainian. - -OUTPUT_LANGUAGE = English - -# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will -# include brief member descriptions after the members that are listed in -# the file and class documentation (similar to JavaDoc). -# Set to NO to disable this. - -BRIEF_MEMBER_DESC = YES - -# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend -# the brief description of a member or function before the detailed description. -# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the -# brief descriptions will be completely suppressed. - -REPEAT_BRIEF = YES - -# This tag implements a quasi-intelligent brief description abbreviator -# that is used to form the text in various listings. Each string -# in this list, if found as the leading text of the brief description, will be -# stripped from the text and the result after processing the whole list, is -# used as the annotated text. Otherwise, the brief description is used as-is. -# If left blank, the following values are used ("$name" is automatically -# replaced with the name of the entity): "The $name class" "The $name widget" -# "The $name file" "is" "provides" "specifies" "contains" -# "represents" "a" "an" "the" - -ABBREVIATE_BRIEF = - -# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then -# Doxygen will generate a detailed section even if there is only a brief -# description. - -ALWAYS_DETAILED_SEC = NO - -# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all -# inherited members of a class in the documentation of that class as if those -# members were ordinary class members. Constructors, destructors and assignment -# operators of the base classes will not be shown. - -INLINE_INHERITED_MEMB = NO - -# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full -# path before files name in the file list and in the header files. If set -# to NO the shortest path that makes the file name unique will be used. - -FULL_PATH_NAMES = YES - -# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag -# can be used to strip a user-defined part of the path. Stripping is -# only done if one of the specified strings matches the left-hand part of -# the path. The tag can be used to show relative paths in the file list. -# If left blank the directory from which doxygen is run is used as the -# path to strip. - -STRIP_FROM_PATH = - -# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of -# the path mentioned in the documentation of a class, which tells -# the reader which header file to include in order to use a class. -# If left blank only the name of the header file containing the class -# definition is used. Otherwise one should specify the include paths that -# are normally passed to the compiler using the -I flag. - -STRIP_FROM_INC_PATH = - -# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter -# (but less readable) file names. This can be useful is your file systems -# doesn't support long names like on DOS, Mac, or CD-ROM. - -SHORT_NAMES = NO - -# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen -# will interpret the first line (until the first dot) of a JavaDoc-style -# comment as the brief description. If set to NO, the JavaDoc -# comments will behave just like regular Qt-style comments -# (thus requiring an explicit @brief command for a brief description.) - -JAVADOC_AUTOBRIEF = YES - -# If the QT_AUTOBRIEF tag is set to YES then Doxygen will -# interpret the first line (until the first dot) of a Qt-style -# comment as the brief description. If set to NO, the comments -# will behave just like regular Qt-style comments (thus requiring -# an explicit \brief command for a brief description.) - -QT_AUTOBRIEF = NO - -# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen -# treat a multi-line C++ special comment block (i.e. a block of //! or /// -# comments) as a brief description. This used to be the default behaviour. -# The new default is to treat a multi-line C++ comment block as a detailed -# description. Set this tag to YES if you prefer the old behaviour instead. - -MULTILINE_CPP_IS_BRIEF = NO - -# If the DETAILS_AT_TOP tag is set to YES then Doxygen -# will output the detailed description near the top, like JavaDoc. -# If set to NO, the detailed description appears after the member -# documentation. - -DETAILS_AT_TOP = NO - -# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented -# member inherits the documentation from any documented member that it -# re-implements. - -INHERIT_DOCS = YES - -# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce -# a new page for each member. If set to NO, the documentation of a member will -# be part of the file/class/namespace that contains it. - -SEPARATE_MEMBER_PAGES = NO - -# The TAB_SIZE tag can be used to set the number of spaces in a tab. -# Doxygen uses this value to replace tabs by spaces in code fragments. - -TAB_SIZE = 8 - -# This tag can be used to specify a number of aliases that acts -# as commands in the documentation. An alias has the form "name=value". -# For example adding "sideeffect=\par Side Effects:\n" will allow you to -# put the command \sideeffect (or @sideeffect) in the documentation, which -# will result in a user-defined paragraph with heading "Side Effects:". -# You can put \n's in the value part of an alias to insert newlines. - -ALIASES = - -# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C -# sources only. Doxygen will then generate output that is more tailored for C. -# For instance, some of the names that are used will be different. The list -# of all members will be omitted, etc. - -OPTIMIZE_OUTPUT_FOR_C = NO - -# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java -# sources only. Doxygen will then generate output that is more tailored for -# Java. For instance, namespaces will be presented as packages, qualified -# scopes will look different, etc. - -OPTIMIZE_OUTPUT_JAVA = NO - -# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran -# sources only. Doxygen will then generate output that is more tailored for -# Fortran. - -OPTIMIZE_FOR_FORTRAN = NO - -# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL -# sources. Doxygen will then generate output that is tailored for -# VHDL. - -OPTIMIZE_OUTPUT_VHDL = NO - -# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want -# to include (a tag file for) the STL sources as input, then you should -# set this tag to YES in order to let doxygen match functions declarations and -# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. -# func(std::string) {}). This also make the inheritance and collaboration -# diagrams that involve STL classes more complete and accurate. - -BUILTIN_STL_SUPPORT = NO - -# If you use Microsoft's C++/CLI language, you should set this option to YES to -# enable parsing support. - -CPP_CLI_SUPPORT = NO - -# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. -# Doxygen will parse them like normal C++ but will assume all classes use public -# instead of private inheritance when no explicit protection keyword is present. - -SIP_SUPPORT = NO - -# For Microsoft's IDL there are propget and propput attributes to indicate getter -# and setter methods for a property. Setting this option to YES (the default) -# will make doxygen to replace the get and set methods by a property in the -# documentation. This will only work if the methods are indeed getting or -# setting a simple type. If this is not the case, or you want to show the -# methods anyway, you should set this option to NO. - -IDL_PROPERTY_SUPPORT = YES - -# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC -# tag is set to YES, then doxygen will reuse the documentation of the first -# member in the group (if any) for the other members of the group. By default -# all members of a group must be documented explicitly. - -DISTRIBUTE_GROUP_DOC = NO - -# Set the SUBGROUPING tag to YES (the default) to allow class member groups of -# the same type (for instance a group of public functions) to be put as a -# subgroup of that type (e.g. under the Public Functions section). Set it to -# NO to prevent subgrouping. Alternatively, this can be done per class using -# the \nosubgrouping command. - -SUBGROUPING = YES - -# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum -# is documented as struct, union, or enum with the name of the typedef. So -# typedef struct TypeS {} TypeT, will appear in the documentation as a struct -# with name TypeT. When disabled the typedef will appear as a member of a file, -# namespace, or class. And the struct will be named TypeS. This can typically -# be useful for C code in case the coding convention dictates that all compound -# types are typedef'ed and only the typedef is referenced, never the tag name. - -TYPEDEF_HIDES_STRUCT = NO - -#--------------------------------------------------------------------------- -# Build related configuration options -#--------------------------------------------------------------------------- - -# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in -# documentation are documented, even if no documentation was available. -# Private class members and static file members will be hidden unless -# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES - -EXTRACT_ALL = YES - -# If the EXTRACT_PRIVATE tag is set to YES all private members of a class -# will be included in the documentation. - -EXTRACT_PRIVATE = YES - -# If the EXTRACT_STATIC tag is set to YES all static members of a file -# will be included in the documentation. - -EXTRACT_STATIC = YES - -# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) -# defined locally in source files will be included in the documentation. -# If set to NO only classes defined in header files are included. - -EXTRACT_LOCAL_CLASSES = YES - -# This flag is only useful for Objective-C code. When set to YES local -# methods, which are defined in the implementation section but not in -# the interface are included in the documentation. -# If set to NO (the default) only methods in the interface are included. - -EXTRACT_LOCAL_METHODS = YES - -# If this flag is set to YES, the members of anonymous namespaces will be -# extracted and appear in the documentation as a namespace called -# 'anonymous_namespace{file}', where file will be replaced with the base -# name of the file that contains the anonymous namespace. By default -# anonymous namespace are hidden. - -EXTRACT_ANON_NSPACES = NO - -# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all -# undocumented members of documented classes, files or namespaces. -# If set to NO (the default) these members will be included in the -# various overviews, but no documentation section is generated. -# This option has no effect if EXTRACT_ALL is enabled. - -HIDE_UNDOC_MEMBERS = YES - -# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all -# undocumented classes that are normally visible in the class hierarchy. -# If set to NO (the default) these classes will be included in the various -# overviews. This option has no effect if EXTRACT_ALL is enabled. - -HIDE_UNDOC_CLASSES = YES - -# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all -# friend (class|struct|union) declarations. -# If set to NO (the default) these declarations will be included in the -# documentation. - -HIDE_FRIEND_COMPOUNDS = NO - -# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any -# documentation blocks found inside the body of a function. -# If set to NO (the default) these blocks will be appended to the -# function's detailed documentation block. - -HIDE_IN_BODY_DOCS = NO - -# The INTERNAL_DOCS tag determines if documentation -# that is typed after a \internal command is included. If the tag is set -# to NO (the default) then the documentation will be excluded. -# Set it to YES to include the internal documentation. - -INTERNAL_DOCS = NO - -# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate -# file names in lower-case letters. If set to YES upper-case letters are also -# allowed. This is useful if you have classes or files whose names only differ -# in case and if your file system supports case sensitive file names. Windows -# and Mac users are advised to set this option to NO. - -CASE_SENSE_NAMES = YES - -# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen -# will show members with their full class and namespace scopes in the -# documentation. If set to YES the scope will be hidden. - -HIDE_SCOPE_NAMES = NO - -# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen -# will put a list of the files that are included by a file in the documentation -# of that file. - -SHOW_INCLUDE_FILES = YES - -# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] -# is inserted in the documentation for inline members. - -INLINE_INFO = YES - -# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen -# will sort the (detailed) documentation of file and class members -# alphabetically by member name. If set to NO the members will appear in -# declaration order. - -SORT_MEMBER_DOCS = YES - -# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the -# brief documentation of file, namespace and class members alphabetically -# by member name. If set to NO (the default) the members will appear in -# declaration order. - -SORT_BRIEF_DOCS = NO - -# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the -# hierarchy of group names into alphabetical order. If set to NO (the default) -# the group names will appear in their defined order. - -SORT_GROUP_NAMES = NO - -# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be -# sorted by fully-qualified names, including namespaces. If set to -# NO (the default), the class list will be sorted only by class name, -# not including the namespace part. -# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. -# Note: This option applies only to the class list, not to the -# alphabetical list. - -SORT_BY_SCOPE_NAME = NO - -# The GENERATE_TODOLIST tag can be used to enable (YES) or -# disable (NO) the todo list. This list is created by putting \todo -# commands in the documentation. - -GENERATE_TODOLIST = YES - -# The GENERATE_TESTLIST tag can be used to enable (YES) or -# disable (NO) the test list. This list is created by putting \test -# commands in the documentation. - -GENERATE_TESTLIST = YES - -# The GENERATE_BUGLIST tag can be used to enable (YES) or -# disable (NO) the bug list. This list is created by putting \bug -# commands in the documentation. - -GENERATE_BUGLIST = YES - -# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or -# disable (NO) the deprecated list. This list is created by putting -# \deprecated commands in the documentation. - -GENERATE_DEPRECATEDLIST= YES - -# The ENABLED_SECTIONS tag can be used to enable conditional -# documentation sections, marked by \if sectionname ... \endif. - -ENABLED_SECTIONS = - -# The MAX_INITIALIZER_LINES tag determines the maximum number of lines -# the initial value of a variable or define consists of for it to appear in -# the documentation. If the initializer consists of more lines than specified -# here it will be hidden. Use a value of 0 to hide initializers completely. -# The appearance of the initializer of individual variables and defines in the -# documentation can be controlled using \showinitializer or \hideinitializer -# command in the documentation regardless of this setting. - -MAX_INITIALIZER_LINES = 30 - -# Set the SHOW_USED_FILES tag to NO to disable the list of files generated -# at the bottom of the documentation of classes and structs. If set to YES the -# list will mention the files that were used to generate the documentation. - -SHOW_USED_FILES = YES - -# If the sources in your project are distributed over multiple directories -# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy -# in the documentation. The default is NO. - -SHOW_DIRECTORIES = NO - -# Set the SHOW_FILES tag to NO to disable the generation of the Files page. -# This will remove the Files entry from the Quick Index and from the -# Folder Tree View (if specified). The default is YES. - -SHOW_FILES = YES - -# Set the SHOW_NAMESPACES tag to NO to disable the generation of the -# Namespaces page. This will remove the Namespaces entry from the Quick Index -# and from the Folder Tree View (if specified). The default is YES. - -SHOW_NAMESPACES = YES - -# The FILE_VERSION_FILTER tag can be used to specify a program or script that -# doxygen should invoke to get the current version for each file (typically from -# the version control system). Doxygen will invoke the program by executing (via -# popen()) the command , where is the value of -# the FILE_VERSION_FILTER tag, and is the name of an input file -# provided by doxygen. Whatever the program writes to standard output -# is used as the file version. See the manual for examples. - -FILE_VERSION_FILTER = - -#--------------------------------------------------------------------------- -# configuration options related to warning and progress messages -#--------------------------------------------------------------------------- - -# The QUIET tag can be used to turn on/off the messages that are generated -# by doxygen. Possible values are YES and NO. If left blank NO is used. - -QUIET = NO - -# The WARNINGS tag can be used to turn on/off the warning messages that are -# generated by doxygen. Possible values are YES and NO. If left blank -# NO is used. - -WARNINGS = YES - -# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings -# for undocumented members. If EXTRACT_ALL is set to YES then this flag will -# automatically be disabled. - -WARN_IF_UNDOCUMENTED = YES - -# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for -# potential errors in the documentation, such as not documenting some -# parameters in a documented function, or documenting parameters that -# don't exist or using markup commands wrongly. - -WARN_IF_DOC_ERROR = YES - -# This WARN_NO_PARAMDOC option can be abled to get warnings for -# functions that are documented, but have no documentation for their parameters -# or return value. If set to NO (the default) doxygen will only warn about -# wrong or incomplete parameter documentation, but not about the absence of -# documentation. - -WARN_NO_PARAMDOC = NO - -# The WARN_FORMAT tag determines the format of the warning messages that -# doxygen can produce. The string should contain the $file, $line, and $text -# tags, which will be replaced by the file and line number from which the -# warning originated and the warning text. Optionally the format may contain -# $version, which will be replaced by the version of the file (if it could -# be obtained via FILE_VERSION_FILTER) - -WARN_FORMAT = "$file:$line: $text" - -# The WARN_LOGFILE tag can be used to specify a file to which warning -# and error messages should be written. If left blank the output is written -# to stderr. - -WARN_LOGFILE = - -#--------------------------------------------------------------------------- -# configuration options related to the input files -#--------------------------------------------------------------------------- - -# The INPUT tag can be used to specify the files and/or directories that contain -# documented source files. You may enter file names like "myfile.cpp" or -# directories like "/usr/src/myproject". Separate the files or directories -# with spaces. - -INPUT = framework lib module www bin config - -# This tag can be used to specify the character encoding of the source files -# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is -# also the default input encoding. Doxygen uses libiconv (or the iconv built -# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for -# the list of possible encodings. - -INPUT_ENCODING = UTF-8 - -# If the value of the INPUT tag contains directories, you can use the -# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp -# and *.h) to filter out the source-files in the directories. If left -# blank the following patterns are tested: -# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx -# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 - -FILE_PATTERNS = - -# The RECURSIVE tag can be used to turn specify whether or not subdirectories -# should be searched for input files as well. Possible values are YES and NO. -# If left blank NO is used. - -RECURSIVE = YES - -# The EXCLUDE tag can be used to specify files and/or directories that should -# excluded from the INPUT source files. This way you can easily exclude a -# subdirectory from a directory tree whose root is specified with the INPUT tag. - -EXCLUDE = - -# The EXCLUDE_SYMLINKS tag can be used select whether or not files or -# directories that are symbolic links (a Unix filesystem feature) are excluded -# from the input. - -EXCLUDE_SYMLINKS = NO - -# If the value of the INPUT tag contains directories, you can use the -# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude -# certain files from those directories. Note that the wildcards are matched -# against the file with absolute path, so to exclude all test directories -# for example use the pattern */test/* - -EXCLUDE_PATTERNS = - -# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names -# (namespaces, classes, functions, etc.) that should be excluded from the -# output. The symbol name can be a fully qualified name, a word, or if the -# wildcard * is used, a substring. Examples: ANamespace, AClass, -# AClass::ANamespace, ANamespace::*Test - -EXCLUDE_SYMBOLS = - -# The EXAMPLE_PATH tag can be used to specify one or more files or -# directories that contain example code fragments that are included (see -# the \include command). - -EXAMPLE_PATH = - -# If the value of the EXAMPLE_PATH tag contains directories, you can use the -# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp -# and *.h) to filter out the source-files in the directories. If left -# blank all files are included. - -EXAMPLE_PATTERNS = - -# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be -# searched for input files to be used with the \include or \dontinclude -# commands irrespective of the value of the RECURSIVE tag. -# Possible values are YES and NO. If left blank NO is used. - -EXAMPLE_RECURSIVE = NO - -# The IMAGE_PATH tag can be used to specify one or more files or -# directories that contain image that are included in the documentation (see -# the \image command). - -IMAGE_PATH = - -# The INPUT_FILTER tag can be used to specify a program that doxygen should -# invoke to filter for each input file. Doxygen will invoke the filter program -# by executing (via popen()) the command , where -# is the value of the INPUT_FILTER tag, and is the name of an -# input file. Doxygen will then use the output that the filter program writes -# to standard output. If FILTER_PATTERNS is specified, this tag will be -# ignored. - -INPUT_FILTER = - -# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern -# basis. Doxygen will compare the file name with each pattern and apply the -# filter if there is a match. The filters are a list of the form: -# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further -# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER -# is applied to all files. - -FILTER_PATTERNS = - -# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using -# INPUT_FILTER) will be used to filter the input files when producing source -# files to browse (i.e. when SOURCE_BROWSER is set to YES). - -FILTER_SOURCE_FILES = NO - -#--------------------------------------------------------------------------- -# configuration options related to source browsing -#--------------------------------------------------------------------------- - -# If the SOURCE_BROWSER tag is set to YES then a list of source files will -# be generated. Documented entities will be cross-referenced with these sources. -# Note: To get rid of all source code in the generated output, make sure also -# VERBATIM_HEADERS is set to NO. - -SOURCE_BROWSER = YES - -# Setting the INLINE_SOURCES tag to YES will include the body -# of functions and classes directly in the documentation. - -INLINE_SOURCES = YES - -# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct -# doxygen to hide any special comment blocks from generated source code -# fragments. Normal C and C++ comments will always remain visible. - -STRIP_CODE_COMMENTS = YES - -# If the REFERENCED_BY_RELATION tag is set to YES -# then for each documented function all documented -# functions referencing it will be listed. - -REFERENCED_BY_RELATION = NO - -# If the REFERENCES_RELATION tag is set to YES -# then for each documented function all documented entities -# called/used by that function will be listed. - -REFERENCES_RELATION = NO - -# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) -# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from -# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will -# link to the source code. Otherwise they will link to the documentstion. - -REFERENCES_LINK_SOURCE = YES - -# If the USE_HTAGS tag is set to YES then the references to source code -# will point to the HTML generated by the htags(1) tool instead of doxygen -# built-in source browser. The htags tool is part of GNU's global source -# tagging system (see http://www.gnu.org/software/global/global.html). You -# will need version 4.8.6 or higher. - -USE_HTAGS = NO - -# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen -# will generate a verbatim copy of the header file for each class for -# which an include is specified. Set to NO to disable this. - -VERBATIM_HEADERS = YES - -#--------------------------------------------------------------------------- -# configuration options related to the alphabetical class index -#--------------------------------------------------------------------------- - -# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index -# of all compounds will be generated. Enable this if the project -# contains a lot of classes, structs, unions or interfaces. - -ALPHABETICAL_INDEX = NO - -# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then -# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns -# in which this list will be split (can be a number in the range [1..20]) - -COLS_IN_ALPHA_INDEX = 5 - -# In case all classes in a project start with a common prefix, all -# classes will be put under the same header in the alphabetical index. -# The IGNORE_PREFIX tag can be used to specify one or more prefixes that -# should be ignored while generating the index headers. - -IGNORE_PREFIX = - -#--------------------------------------------------------------------------- -# configuration options related to the HTML output -#--------------------------------------------------------------------------- - -# If the GENERATE_HTML tag is set to YES (the default) Doxygen will -# generate HTML output. - -GENERATE_HTML = YES - -# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `html' will be used as the default path. - -HTML_OUTPUT = html - -# The HTML_FILE_EXTENSION tag can be used to specify the file extension for -# each generated HTML page (for example: .htm,.php,.asp). If it is left blank -# doxygen will generate files with .html extension. - -HTML_FILE_EXTENSION = .html - -# The HTML_HEADER tag can be used to specify a personal HTML header for -# each generated HTML page. If it is left blank doxygen will generate a -# standard header. - -HTML_HEADER = - -# The HTML_FOOTER tag can be used to specify a personal HTML footer for -# each generated HTML page. If it is left blank doxygen will generate a -# standard footer. - -HTML_FOOTER = - -# The HTML_STYLESHEET tag can be used to specify a user-defined cascading -# style sheet that is used by each HTML page. It can be used to -# fine-tune the look of the HTML output. If the tag is left blank doxygen -# will generate a default style sheet. Note that doxygen will try to copy -# the style sheet file to the HTML output directory, so don't put your own -# stylesheet in the HTML output directory as well, or it will be erased! - -HTML_STYLESHEET = - -# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, -# files or namespaces will be aligned in HTML using tables. If set to -# NO a bullet list will be used. - -HTML_ALIGN_MEMBERS = YES - -# If the GENERATE_HTMLHELP tag is set to YES, additional index files -# will be generated that can be used as input for tools like the -# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) -# of the generated HTML documentation. - -GENERATE_HTMLHELP = NO - -# If the GENERATE_DOCSET tag is set to YES, additional index files -# will be generated that can be used as input for Apple's Xcode 3 -# integrated development environment, introduced with OSX 10.5 (Leopard). -# To create a documentation set, doxygen will generate a Makefile in the -# HTML output directory. Running make will produce the docset in that -# directory and running "make install" will install the docset in -# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find -# it at startup. - -GENERATE_DOCSET = NO - -# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the -# feed. A documentation feed provides an umbrella under which multiple -# documentation sets from a single provider (such as a company or product suite) -# can be grouped. - -DOCSET_FEEDNAME = "Doxygen generated docs" - -# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that -# should uniquely identify the documentation set bundle. This should be a -# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen -# will append .docset to the name. - -DOCSET_BUNDLE_ID = org.doxygen.Project - -# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML -# documentation will contain sections that can be hidden and shown after the -# page has loaded. For this to work a browser that supports -# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox -# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). - -HTML_DYNAMIC_SECTIONS = YES - -# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can -# be used to specify the file name of the resulting .chm file. You -# can add a path in front of the file if the result should not be -# written to the html output directory. - -CHM_FILE = - -# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can -# be used to specify the location (absolute path including file name) of -# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run -# the HTML help compiler on the generated index.hhp. - -HHC_LOCATION = - -# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag -# controls if a separate .chi index file is generated (YES) or that -# it should be included in the master .chm file (NO). - -GENERATE_CHI = NO - -# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING -# is used to encode HtmlHelp index (hhk), content (hhc) and project file -# content. - -CHM_INDEX_ENCODING = - -# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag -# controls whether a binary table of contents is generated (YES) or a -# normal table of contents (NO) in the .chm file. - -BINARY_TOC = NO - -# The TOC_EXPAND flag can be set to YES to add extra items for group members -# to the contents of the HTML help documentation and to the tree view. - -TOC_EXPAND = NO - -# The DISABLE_INDEX tag can be used to turn on/off the condensed index at -# top of each HTML page. The value NO (the default) enables the index and -# the value YES disables it. - -DISABLE_INDEX = NO - -# This tag can be used to set the number of enum values (range [1..20]) -# that doxygen will group on one line in the generated HTML documentation. - -ENUM_VALUES_PER_LINE = 4 - -# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index -# structure should be generated to display hierarchical information. -# If the tag value is set to FRAME, a side panel will be generated -# containing a tree-like index structure (just like the one that -# is generated for HTML Help). For this to work a browser that supports -# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, -# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are -# probably better off using the HTML help feature. Other possible values -# for this tag are: HIERARCHIES, which will generate the Groups, Directories, -# and Class Hiererachy pages using a tree view instead of an ordered list; -# ALL, which combines the behavior of FRAME and HIERARCHIES; and NONE, which -# disables this behavior completely. For backwards compatibility with previous -# releases of Doxygen, the values YES and NO are equivalent to FRAME and NONE -# respectively. - -GENERATE_TREEVIEW = YES - -# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be -# used to set the initial width (in pixels) of the frame in which the tree -# is shown. - -TREEVIEW_WIDTH = 250 - -# Use this tag to change the font size of Latex formulas included -# as images in the HTML documentation. The default is 10. Note that -# when you change the font size after a successful doxygen run you need -# to manually remove any form_*.png images from the HTML output directory -# to force them to be regenerated. - -FORMULA_FONTSIZE = 10 - -#--------------------------------------------------------------------------- -# configuration options related to the LaTeX output -#--------------------------------------------------------------------------- - -# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will -# generate Latex output. - -GENERATE_LATEX = YES - -# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `latex' will be used as the default path. - -LATEX_OUTPUT = latex - -# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be -# invoked. If left blank `latex' will be used as the default command name. - -LATEX_CMD_NAME = latex - -# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to -# generate index for LaTeX. If left blank `makeindex' will be used as the -# default command name. - -MAKEINDEX_CMD_NAME = makeindex - -# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact -# LaTeX documents. This may be useful for small projects and may help to -# save some trees in general. - -COMPACT_LATEX = NO - -# The PAPER_TYPE tag can be used to set the paper type that is used -# by the printer. Possible values are: a4, a4wide, letter, legal and -# executive. If left blank a4wide will be used. - -PAPER_TYPE = a4wide - -# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX -# packages that should be included in the LaTeX output. - -EXTRA_PACKAGES = - -# The LATEX_HEADER tag can be used to specify a personal LaTeX header for -# the generated latex document. The header should contain everything until -# the first chapter. If it is left blank doxygen will generate a -# standard header. Notice: only use this tag if you know what you are doing! - -LATEX_HEADER = - -# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated -# is prepared for conversion to pdf (using ps2pdf). The pdf file will -# contain links (just like the HTML output) instead of page references -# This makes the output suitable for online browsing using a pdf viewer. - -PDF_HYPERLINKS = YES - -# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of -# plain latex in the generated Makefile. Set this option to YES to get a -# higher quality PDF documentation. - -USE_PDFLATEX = YES - -# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. -# command to the generated LaTeX files. This will instruct LaTeX to keep -# running if errors occur, instead of asking the user for help. -# This option is also used when generating formulas in HTML. - -LATEX_BATCHMODE = NO - -# If LATEX_HIDE_INDICES is set to YES then doxygen will not -# include the index chapters (such as File Index, Compound Index, etc.) -# in the output. - -LATEX_HIDE_INDICES = NO - -#--------------------------------------------------------------------------- -# configuration options related to the RTF output -#--------------------------------------------------------------------------- - -# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output -# The RTF output is optimized for Word 97 and may not look very pretty with -# other RTF readers or editors. - -GENERATE_RTF = YES - -# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `rtf' will be used as the default path. - -RTF_OUTPUT = rtf - -# If the COMPACT_RTF tag is set to YES Doxygen generates more compact -# RTF documents. This may be useful for small projects and may help to -# save some trees in general. - -COMPACT_RTF = NO - -# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated -# will contain hyperlink fields. The RTF file will -# contain links (just like the HTML output) instead of page references. -# This makes the output suitable for online browsing using WORD or other -# programs which support those fields. -# Note: wordpad (write) and others do not support links. - -RTF_HYPERLINKS = YES - -# Load stylesheet definitions from file. Syntax is similar to doxygen's -# config file, i.e. a series of assignments. You only have to provide -# replacements, missing definitions are set to their default value. - -RTF_STYLESHEET_FILE = - -# Set optional variables used in the generation of an rtf document. -# Syntax is similar to doxygen's config file. - -RTF_EXTENSIONS_FILE = - -#--------------------------------------------------------------------------- -# configuration options related to the man page output -#--------------------------------------------------------------------------- - -# If the GENERATE_MAN tag is set to YES (the default) Doxygen will -# generate man pages - -GENERATE_MAN = NO - -# The MAN_OUTPUT tag is used to specify where the man pages will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `man' will be used as the default path. - -MAN_OUTPUT = man - -# The MAN_EXTENSION tag determines the extension that is added to -# the generated man pages (default is the subroutine's section .3) - -MAN_EXTENSION = .3 - -# If the MAN_LINKS tag is set to YES and Doxygen generates man output, -# then it will generate one additional man file for each entity -# documented in the real man page(s). These additional files -# only source the real man page, but without them the man command -# would be unable to find the correct page. The default is NO. - -MAN_LINKS = NO - -#--------------------------------------------------------------------------- -# configuration options related to the XML output -#--------------------------------------------------------------------------- - -# If the GENERATE_XML tag is set to YES Doxygen will -# generate an XML file that captures the structure of -# the code including all documentation. - -GENERATE_XML = NO - -# The XML_OUTPUT tag is used to specify where the XML pages will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be -# put in front of it. If left blank `xml' will be used as the default path. - -XML_OUTPUT = xml - -# The XML_SCHEMA tag can be used to specify an XML schema, -# which can be used by a validating XML parser to check the -# syntax of the XML files. - -XML_SCHEMA = - -# The XML_DTD tag can be used to specify an XML DTD, -# which can be used by a validating XML parser to check the -# syntax of the XML files. - -XML_DTD = - -# If the XML_PROGRAMLISTING tag is set to YES Doxygen will -# dump the program listings (including syntax highlighting -# and cross-referencing information) to the XML output. Note that -# enabling this will significantly increase the size of the XML output. - -XML_PROGRAMLISTING = YES - -#--------------------------------------------------------------------------- -# configuration options for the AutoGen Definitions output -#--------------------------------------------------------------------------- - -# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will -# generate an AutoGen Definitions (see autogen.sf.net) file -# that captures the structure of the code including all -# documentation. Note that this feature is still experimental -# and incomplete at the moment. - -GENERATE_AUTOGEN_DEF = NO - -#--------------------------------------------------------------------------- -# configuration options related to the Perl module output -#--------------------------------------------------------------------------- - -# If the GENERATE_PERLMOD tag is set to YES Doxygen will -# generate a Perl module file that captures the structure of -# the code including all documentation. Note that this -# feature is still experimental and incomplete at the -# moment. - -GENERATE_PERLMOD = NO - -# If the PERLMOD_LATEX tag is set to YES Doxygen will generate -# the necessary Makefile rules, Perl scripts and LaTeX code to be able -# to generate PDF and DVI output from the Perl module output. - -PERLMOD_LATEX = NO - -# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be -# nicely formatted so it can be parsed by a human reader. This is useful -# if you want to understand what is going on. On the other hand, if this -# tag is set to NO the size of the Perl module output will be much smaller -# and Perl will parse it just the same. - -PERLMOD_PRETTY = YES - -# The names of the make variables in the generated doxyrules.make file -# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. -# This is useful so different doxyrules.make files included by the same -# Makefile don't overwrite each other's variables. - -PERLMOD_MAKEVAR_PREFIX = - -#--------------------------------------------------------------------------- -# Configuration options related to the preprocessor -#--------------------------------------------------------------------------- - -# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will -# evaluate all C-preprocessor directives found in the sources and include -# files. - -ENABLE_PREPROCESSING = YES - -# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro -# names in the source code. If set to NO (the default) only conditional -# compilation will be performed. Macro expansion can be done in a controlled -# way by setting EXPAND_ONLY_PREDEF to YES. - -MACRO_EXPANSION = NO - -# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES -# then the macro expansion is limited to the macros specified with the -# PREDEFINED and EXPAND_AS_DEFINED tags. - -EXPAND_ONLY_PREDEF = NO - -# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files -# in the INCLUDE_PATH (see below) will be search if a #include is found. - -SEARCH_INCLUDES = YES - -# The INCLUDE_PATH tag can be used to specify one or more directories that -# contain include files that are not input files but should be processed by -# the preprocessor. - -INCLUDE_PATH = - -# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard -# patterns (like *.h and *.hpp) to filter out the header-files in the -# directories. If left blank, the patterns specified with FILE_PATTERNS will -# be used. - -INCLUDE_FILE_PATTERNS = - -# The PREDEFINED tag can be used to specify one or more macro names that -# are defined before the preprocessor is started (similar to the -D option of -# gcc). The argument of the tag is a list of macros of the form: name -# or name=definition (no spaces). If the definition and the = are -# omitted =1 is assumed. To prevent a macro definition from being -# undefined via #undef or recursively expanded use the := operator -# instead of the = operator. - -PREDEFINED = - -# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then -# this tag can be used to specify a list of macro names that should be expanded. -# The macro definition that is found in the sources will be used. -# Use the PREDEFINED tag if you want to use a different macro definition. - -EXPAND_AS_DEFINED = - -# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then -# doxygen's preprocessor will remove all function-like macros that are alone -# on a line, have an all uppercase name, and do not end with a semicolon. Such -# function macros are typically used for boiler-plate code, and will confuse -# the parser if not removed. - -SKIP_FUNCTION_MACROS = YES - -#--------------------------------------------------------------------------- -# Configuration::additions related to external references -#--------------------------------------------------------------------------- - -# The TAGFILES option can be used to specify one or more tagfiles. -# Optionally an initial location of the external documentation -# can be added for each tagfile. The format of a tag file without -# this location is as follows: -# TAGFILES = file1 file2 ... -# Adding location for the tag files is done as follows: -# TAGFILES = file1=loc1 "file2 = loc2" ... -# where "loc1" and "loc2" can be relative or absolute paths or -# URLs. If a location is present for each tag, the installdox tool -# does not have to be run to correct the links. -# Note that each tag file must have a unique name -# (where the name does NOT include the path) -# If a tag file is not located in the directory in which doxygen -# is run, you must also specify the path to the tagfile here. - -TAGFILES = - -# When a file name is specified after GENERATE_TAGFILE, doxygen will create -# a tag file that is based on the input files it reads. - -GENERATE_TAGFILE = - -# If the ALLEXTERNALS tag is set to YES all external classes will be listed -# in the class index. If set to NO only the inherited external classes -# will be listed. - -ALLEXTERNALS = NO - -# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed -# in the modules index. If set to NO, only the current project's groups will -# be listed. - -EXTERNAL_GROUPS = YES - -# The PERL_PATH should be the absolute path and name of the perl script -# interpreter (i.e. the result of `which perl'). - -PERL_PATH = /usr/bin/perl - -#--------------------------------------------------------------------------- -# Configuration options related to the dot tool -#--------------------------------------------------------------------------- - -# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will -# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base -# or super classes. Setting the tag to NO turns the diagrams off. Note that -# this option is superseded by the HAVE_DOT option below. This is only a -# fallback. It is recommended to install and use dot, since it yields more -# powerful graphs. - -CLASS_DIAGRAMS = YES - -# You can define message sequence charts within doxygen comments using the \msc -# command. Doxygen will then run the mscgen tool (see -# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the -# documentation. The MSCGEN_PATH tag allows you to specify the directory where -# the mscgen tool resides. If left empty the tool is assumed to be found in the -# default search path. - -MSCGEN_PATH = - -# If set to YES, the inheritance and collaboration graphs will hide -# inheritance and usage relations if the target is undocumented -# or is not a class. - -HIDE_UNDOC_RELATIONS = YES - -# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is -# available from the path. This tool is part of Graphviz, a graph visualization -# toolkit from AT&T and Lucent Bell Labs. The other options in this section -# have no effect if this option is set to NO (the default) - -HAVE_DOT = NO - -# By default doxygen will write a font called FreeSans.ttf to the output -# directory and reference it in all dot files that doxygen generates. This -# font does not include all possible unicode characters however, so when you need -# these (or just want a differently looking font) you can specify the font name -# using DOT_FONTNAME. You need need to make sure dot is able to find the font, -# which can be done by putting it in a standard location or by setting the -# DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory -# containing the font. - -DOT_FONTNAME = FreeSans - -# By default doxygen will tell dot to use the output directory to look for the -# FreeSans.ttf font (which doxygen will put there itself). If you specify a -# different font using DOT_FONTNAME you can set the path where dot -# can find it using this tag. - -DOT_FONTPATH = - -# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen -# will generate a graph for each documented class showing the direct and -# indirect inheritance relations. Setting this tag to YES will force the -# the CLASS_DIAGRAMS tag to NO. - -CLASS_GRAPH = YES - -# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen -# will generate a graph for each documented class showing the direct and -# indirect implementation dependencies (inheritance, containment, and -# class references variables) of the class with other documented classes. - -COLLABORATION_GRAPH = YES - -# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen -# will generate a graph for groups, showing the direct groups dependencies - -GROUP_GRAPHS = YES - -# If the UML_LOOK tag is set to YES doxygen will generate inheritance and -# collaboration diagrams in a style similar to the OMG's Unified Modeling -# Language. - -UML_LOOK = NO - -# If set to YES, the inheritance and collaboration graphs will show the -# relations between templates and their instances. - -TEMPLATE_RELATIONS = NO - -# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT -# tags are set to YES then doxygen will generate a graph for each documented -# file showing the direct and indirect include dependencies of the file with -# other documented files. - -INCLUDE_GRAPH = YES - -# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and -# HAVE_DOT tags are set to YES then doxygen will generate a graph for each -# documented header file showing the documented files that directly or -# indirectly include this file. - -INCLUDED_BY_GRAPH = YES - -# If the CALL_GRAPH and HAVE_DOT options are set to YES then -# doxygen will generate a call dependency graph for every global function -# or class method. Note that enabling this option will significantly increase -# the time of a run. So in most cases it will be better to enable call graphs -# for selected functions only using the \callgraph command. - -CALL_GRAPH = NO - -# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then -# doxygen will generate a caller dependency graph for every global function -# or class method. Note that enabling this option will significantly increase -# the time of a run. So in most cases it will be better to enable caller -# graphs for selected functions only using the \callergraph command. - -CALLER_GRAPH = NO - -# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen -# will graphical hierarchy of all classes instead of a textual one. - -GRAPHICAL_HIERARCHY = YES - -# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES -# then doxygen will show the dependencies a directory has on other directories -# in a graphical way. The dependency relations are determined by the #include -# relations between the files in the directories. - -DIRECTORY_GRAPH = YES - -# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images -# generated by dot. Possible values are png, jpg, or gif -# If left blank png will be used. - -DOT_IMAGE_FORMAT = png - -# The tag DOT_PATH can be used to specify the path where the dot tool can be -# found. If left blank, it is assumed the dot tool can be found in the path. - -DOT_PATH = - -# The DOTFILE_DIRS tag can be used to specify one or more directories that -# contain dot files that are included in the documentation (see the -# \dotfile command). - -DOTFILE_DIRS = - -# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of -# nodes that will be shown in the graph. If the number of nodes in a graph -# becomes larger than this value, doxygen will truncate the graph, which is -# visualized by representing a node as a red box. Note that doxygen if the -# number of direct children of the root node in a graph is already larger than -# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note -# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. - -DOT_GRAPH_MAX_NODES = 50 - -# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the -# graphs generated by dot. A depth value of 3 means that only nodes reachable -# from the root by following a path via at most 3 edges will be shown. Nodes -# that lay further from the root node will be omitted. Note that setting this -# option to 1 or 2 may greatly reduce the computation time needed for large -# code bases. Also note that the size of a graph can be further restricted by -# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. - -MAX_DOT_GRAPH_DEPTH = 0 - -# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent -# background. This is enabled by default, which results in a transparent -# background. Warning: Depending on the platform used, enabling this option -# may lead to badly anti-aliased labels on the edges of a graph (i.e. they -# become hard to read). - -DOT_TRANSPARENT = YES - -# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output -# files in one run (i.e. multiple -o and -T options on the command line). This -# makes dot run faster, but since only newer versions of dot (>1.8.10) -# support this, this feature is disabled by default. - -DOT_MULTI_TARGETS = NO - -# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will -# generate a legend page explaining the meaning of the various boxes and -# arrows in the dot generated graphs. - -GENERATE_LEGEND = YES - -# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will -# remove the intermediate dot files that are used to generate -# the various graphs. - -DOT_CLEANUP = YES - -#--------------------------------------------------------------------------- -# Configuration::additions related to the search engine -#--------------------------------------------------------------------------- - -# The SEARCHENGINE tag specifies whether or not a search engine should be -# used. If set to NO the values of all tags below this one will be ignored. - -SEARCHENGINE = YES diff --git a/doc/phpdoc/blank.tpl b/doc/phpdoc/blank.tpl deleted file mode 100644 index 13b04d7481..0000000000 --- a/doc/phpdoc/blank.tpl +++ /dev/null @@ -1,13 +0,0 @@ - - - {$maintitle} - - - - -

{$maintitle}

-Welcome to {$package}!
-
-This documentation was generated by phpDocumentor v{$phpdocversion}
- - diff --git a/doc/phpdoc/header.tpl b/doc/phpdoc/header.tpl deleted file mode 100644 index 113367583b..0000000000 --- a/doc/phpdoc/header.tpl +++ /dev/null @@ -1,11 +0,0 @@ - - - - - {$title} - - - - - {if $top3}
{/if} - diff --git a/doc/phpdoc/index.tpl b/doc/phpdoc/index.tpl deleted file mode 100644 index e70e7c14ff..0000000000 --- a/doc/phpdoc/index.tpl +++ /dev/null @@ -1,23 +0,0 @@ - - - - - {$title} - - - - - - - - - - - <H2>Frame Alert</H2> - <P>This document is designed to be viewed using the frames feature. - If you see this message, you are using a non-frame-capable web client.</P> - - - diff --git a/doc/phpdoc/top_frame.tpl b/doc/phpdoc/top_frame.tpl deleted file mode 100644 index cfbb0604a6..0000000000 --- a/doc/phpdoc/top_frame.tpl +++ /dev/null @@ -1,21 +0,0 @@ - - - - -{$title} - - - - - -{if count($packages) > 1} -Packages - -{/if} -www.zentao.net - - From 5511a51882a6d0c5edb535db4827ed27d8766334 Mon Sep 17 00:00:00 2001 From: liumengyi Date: Wed, 8 Jun 2022 10:35:41 +0800 Subject: [PATCH 22/53] * Fix bug #23340. --- module/task/model.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/module/task/model.php b/module/task/model.php index d0203c576b..8d295377cd 100644 --- a/module/task/model.php +++ b/module/task/model.php @@ -295,7 +295,11 @@ class taskModel extends model if($storyID == 'ditto') $storyID = $preStory; $preStory = $storyID; - if(!isset($tasks->story[$key - 1]) and $key > 1 and !empty($tasks->name[$key - 1])) $taskNames[] = $tasks->name[$key - 1]; + if(!isset($tasks->story[$key - 1]) and $key > 1 and !empty($tasks->name[$key - 1])) + { + $storyIDs[] = 0; + $taskNames[] = $tasks->name[$key - 1]; + } $inNames = in_array($tasks->name[$key], $taskNames); if(!$inNames || ($inNames && !in_array($storyID, $storyIDs))) From 9cb0df56c6345964a151ecc3f4682c25b8d3cd6e Mon Sep 17 00:00:00 2001 From: tianshujie Date: Wed, 8 Jun 2022 11:05:32 +0800 Subject: [PATCH 23/53] * Finish task #56453. --- module/action/config.php | 13 +++++ module/action/control.php | 15 +++++- module/action/css/trash.css | 3 +- module/action/lang/en.php | 1 + module/action/lang/zh-cn.php | 1 + module/action/model.php | 89 +++++++++++++++++++++++++++++++ module/action/view/trash.html.php | 7 ++- 7 files changed, 124 insertions(+), 5 deletions(-) diff --git a/module/action/config.php b/module/action/config.php index 00ed8dfa4d..0e2a4fb2c5 100755 --- a/module/action/config.php +++ b/module/action/config.php @@ -67,3 +67,16 @@ $config->action->preferredTypeNum = 10; $config->action->preferredType = new stdclass(); $config->action->preferredType->new = array('user', 'story', 'task', 'bug', 'case', 'doc', 'program', 'product', 'project', 'execution'); $config->action->preferredType->classic = array('user', 'story', 'task', 'bug', 'case', 'doc', 'product', 'execution', 'productplan', 'build'); + +global $lang; +$config->trash = new stdclass(); +$config->trash->search['module'] = 'trash'; +$config->trash->search['fields']['objectName'] = $lang->action->objectName; +$config->trash->search['fields']['objectID'] = $lang->action->objectID; +$config->trash->search['fields']['actor'] = $lang->action->actor; +$config->trash->search['fields']['date'] = $lang->action->date; + +$config->trash->search['params']['objectName'] = array('operator' => 'include', 'control' => 'input', 'values' => ''); +$config->trash->search['params']['objectID'] = array('operator' => 'include', 'control' => 'input', 'values' => ''); +$config->trash->search['params']['actor'] = array('operator' => '=', 'control' => 'select', 'values' => 'users'); +$config->trash->search['params']['date'] = array('operator' => '=', 'control' => 'input', 'values' => '', 'class' => 'date'); diff --git a/module/action/control.php b/module/action/control.php index 46f6b93c3d..99c6d611eb 100755 --- a/module/action/control.php +++ b/module/action/control.php @@ -40,6 +40,8 @@ class action extends control * * @param string $browseType * @param string $type all|hidden + * @param bool $byQuery + * @param int $queryID * @param string $orderBy * @param int $recTotal * @param int $recPerPage @@ -47,7 +49,7 @@ class action extends control * @access public * @return void */ - public function trash($browseType = 'all', $type = 'all', $orderBy = 'id_desc', $recTotal = 0, $recPerPage = 20, $pageID = 1) + public function trash($browseType = 'all', $type = 'all', $byQuery = false, $queryID = 0, $orderBy = 'id_desc', $recTotal = 0, $recPerPage = 20, $pageID = 1) { $this->loadModel('backup'); @@ -81,13 +83,18 @@ class action extends control $this->session->set('practiceLibList', $uri, 'assetlib'); $this->session->set('componentLibList', $uri, 'assetlib'); + /* Build the search form. */ + $queryID = (int)$queryID; + $actionURL = $this->createLink('action', 'trash', "browseType=$browseType&type=$type&byQuery=true&queryID=myQueryID"); + $this->action->buildTrashSearchForm($queryID, $actionURL); + /* Get deleted objects. */ $this->app->loadClass('pager', $static = true); $pager = pager::init($recTotal, $recPerPage, $pageID); /* Append id for secend sort. */ $sort = common::appendOrder($orderBy); - $trashes = $this->action->getTrashes($browseType, $type, $sort, $pager); + $trashes = $byQuery ? $this->action->getTrashesBySearch($browseType, $type, $queryID, $sort, $pager) : $this->action->getTrashes($browseType, $type, $sort, $pager); $objectTypeList = $this->action->getTrashObjectTypes($type); $objectTypeList = array_keys($objectTypeList); @@ -96,6 +103,7 @@ class action extends control $preferredTypeConfig = $this->config->systemMode == 'new' ? $this->config->action->preferredType->new : $this->config->action->preferredType->classic; foreach($objectTypeList as $objectType) { + if(!isset($this->config->objectTables[$objectType])) continue; in_array($objectType, $preferredTypeConfig) ? $preferredType[$objectType] = $objectType : $moreType[$objectType] = $objectType; } if(count($preferredType) < $this->config->action->preferredTypeNum) @@ -117,6 +125,9 @@ class action extends control $this->view->preferredType = $preferredType; $this->view->moreType = $moreType; $this->view->preferredTypeConfig = $preferredTypeConfig; + $this->view->byQuery = $byQuery; + $this->view->queryID = $queryID; + $this->display(); } diff --git a/module/action/css/trash.css b/module/action/css/trash.css index 2f9190111c..e5b7a61042 100755 --- a/module/action/css/trash.css +++ b/module/action/css/trash.css @@ -1,7 +1,8 @@ .table-footer .table-actions {width: auto; visibility: visible; opacity: 1;} .table-footer .table-actions .text {line-height: 28px;} -table tbody tr td {overflow: hidden; text-overflow: ellipsis; white-space: nowrap;} +#mainContent table tbody tr td {overflow: hidden; text-overflow: ellipsis; white-space: nowrap;} #mainMenu .btn-toolbar .btn-group .dropdown-menu .btn-active-text:hover .text {color: #fff} .dropdown-menu .btn-active-text:hover .text:after {border-bottom: 0px;} +#querybox #searchform{border-bottom: 1px solid #ddd; margin-bottom: 20px;} diff --git a/module/action/lang/en.php b/module/action/lang/en.php index 7f67123d50..c4495ab917 100755 --- a/module/action/lang/en.php +++ b/module/action/lang/en.php @@ -42,6 +42,7 @@ $lang->action->hideAll = 'Hide All'; $lang->action->editComment = 'Edit Comment'; $lang->action->create = 'Add Comment'; $lang->action->comment = 'Comment'; +$lang->action->byQuery = 'Search'; $lang->action->undeleteAction = 'Reset Data'; $lang->action->hideOneAction = 'Hide Data'; diff --git a/module/action/lang/zh-cn.php b/module/action/lang/zh-cn.php index 953a74feb7..66c8cb9aa3 100755 --- a/module/action/lang/zh-cn.php +++ b/module/action/lang/zh-cn.php @@ -42,6 +42,7 @@ $lang->action->hideAll = '全部隐藏'; $lang->action->editComment = '修改备注'; $lang->action->create = '添加备注'; $lang->action->comment = '备注'; +$lang->action->byQuery = '搜索'; $lang->action->undeleteAction = '还原数据'; $lang->action->hideOneAction = '隐藏数据'; diff --git a/module/action/model.php b/module/action/model.php index 20eb2b8f15..5dfe9b582c 100755 --- a/module/action/model.php +++ b/module/action/model.php @@ -683,6 +683,79 @@ class actionModel extends model return $trashes; } + /** + * Get deleted objects by search. + * + * @param string $objectType + * @param string $type all|hidden + * @param int $queryID + * @param string $orderBy + * @param object $pager + * @access public + * @return void + */ + public function getTrashesBySearch($objectType, $type, $queryID, $orderBy, $pager = null) + { + if($queryID and $queryID != 'myQueryID') + { + $query = $this->loadModel('search')->getQuery($queryID); + if($query) + { + $this->session->set('trashQuery', $query->sql); + $this->session->set('trashForm', $query->form); + } + else + { + $this->session->set('trashQuery', ' 1 = 1'); + } + } + else + { + if($this->session->trashQuery == false) $this->session->set('trashQuery', ' 1 = 1'); + } + + $extra = $type == 'hidden' ? self::BE_HIDDEN : self::CAN_UNDELETED; + $trashQuery = $this->session->trashQuery; + $trashQuery = preg_replace("/`objectID`/", 't1.`objectID`', $trashQuery); + $trashQuery = preg_replace("/`actor`/", 't1.`actor`', $trashQuery); + $trashQuery = preg_replace("/`date`/", 't1.`date`', $trashQuery); + $table = $this->config->objectTables[$objectType]; + $nameField = isset($this->config->action->objectNameFields[$objectType]) ? 't2.' . "`{$this->config->action->objectNameFields[$objectType]}`" : ''; + + if($nameField) $trashQuery = preg_replace("/`objectName`/", $nameField, $trashQuery); + + if($objectType != 'pipeline') + { + $trashes = $this->dao->select("t1.*, $nameField as objectName")->from(TABLE_ACTION)->alias('t1') + ->leftJoin($table)->alias('t2')->on('t1.objectID=t2.id') + ->where('t1.action')->eq('deleted') + ->andWhere($trashQuery) + ->andWhere('t1.extra')->eq($extra) + ->andWhere('t1.vision')->eq($this->config->vision) + ->beginIF($objectType != 'all')->andWhere('t1.objectType')->eq($objectType)->fi() + ->orderBy($orderBy) + ->page($pager) + ->fetchAll('objectID'); + } + else + { + $trashes = $this->dao->select("t1.*, t1.objectType as type, t2.name as objectName, t2.type as objectType")->from(TABLE_ACTION)->alias('t1') + ->leftJoin(TABLE_PIPELINE)->alias('t2')->on('t1.objectID=t2.id') + ->where('t1.action')->eq('deleted') + ->andWhere($trashQuery) + ->andWhere('t1.extra')->eq($extra) + ->andWhere('t1.vision')->eq($this->config->vision) + ->andWhere('(t2.type')->eq('gitlab') + ->orWhere('t2.type')->eq('jenkins') + ->markRight(1) + ->orderBy($orderBy) + ->page($pager) + ->fetchAll('objectID'); + } + + return $trashes; + } + /** * Get object type list of trashes. * @@ -1931,4 +2004,20 @@ class actionModel extends model return $actions; } + + /** + * Build search form. + * + * @param int $queryID + * @param string $actionURL + * @access public + * @return void + */ + public function buildTrashSearchForm($queryID, $actionURL) + { + $this->config->trash->search['actionURL'] = $actionURL; + $this->config->trash->search['queryID'] = $queryID; + + $this->loadModel('search')->setSearchParams($this->config->trash->search); + } } diff --git a/module/action/view/trash.html.php b/module/action/view/trash.html.php index a2d0f1b123..6dd085a687 100755 --- a/module/action/view/trash.html.php +++ b/module/action/view/trash.html.php @@ -55,17 +55,20 @@ echo '
'; } ?> + + action->byQuery;?> +
goback, '', "class='btn'");?> " . $lang->action->dynamic->hidden, '', "class='btn btn-danger'");?>
- +
kanbanspace->type;?>
- recTotal}&recPerPage={$pager->recPerPage}"; ?> + recTotal}&recPerPage={$pager->recPerPage}"; ?> From d1e74eb74a5ed859a9dd7da30db67c3239e0f60a Mon Sep 17 00:00:00 2001 From: liumengyi Date: Wed, 8 Jun 2022 13:10:13 +0800 Subject: [PATCH 24/53] * Fix bug of task #56454. --- module/execution/js/kanban.js | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/module/execution/js/kanban.js b/module/execution/js/kanban.js index f9ea3db8ab..d1a7ac0bec 100644 --- a/module/execution/js/kanban.js +++ b/module/execution/js/kanban.js @@ -478,8 +478,7 @@ function renderStoryItem(item, $item, col) .attr('href', $.createLink('story', 'view', 'storyID=' + item.id + '&version=0¶m=' + execution.id, '', true)).attr('data-toggle', 'modal').attr('data-width', '95%'); $title.appendTo($item); } - var reg = new RegExp('((' + rdSearchValue + ')+)', "g"); - var title = rdSearchValue != '' ? "" + item.title.replace(reg, "$1") + "": "" + item.title + ""; + var title = rdSearchValue != '' ? "" + item.title.replaceAll(rdSearchValue, "" + rdSearchValue + "") + "": "" + item.title + ""; $title.attr('title', item.title).find('.text').replaceWith(title); } @@ -544,8 +543,7 @@ function renderBugItem(item, $item, col) .attr('href', $.createLink('bug', 'view', 'bugID=' + item.id, '', true)).attr('data-toggle', 'modal').attr('data-width', '80%'); $title.appendTo($item); } - var reg = new RegExp('((' + rdSearchValue + ')+)', "g"); - var title = rdSearchValue != '' ? "" + item.title.replace(reg, "$1") + "": "" + item.title + ""; + var title = rdSearchValue != '' ? "" + item.title.replaceAll(rdSearchValue, "" + rdSearchValue + "") + "": "" + item.title + ""; $title.attr('title', item.title).find('.text').replaceWith(title); } @@ -612,8 +610,7 @@ function renderTaskItem(item, $item, col) .attr('href', $.createLink('task', 'view', 'taskID=' + item.id, '', true)).attr('data-toggle', 'modal').attr('data-width', '80%'); $title.appendTo($item); } - var reg = new RegExp('((' + rdSearchValue + ')+)', "g"); - var name = rdSearchValue != '' ? "" + item.name.replace(reg, "$1") + "": "" + item.name + ""; + var name = rdSearchValue != '' ? "" + item.name.replaceAll(rdSearchValue, "" + rdSearchValue + "") + "": "" + item.name + ""; $title.attr('title', item.name).find('.text').replaceWith(name); } @@ -801,7 +798,13 @@ function updateRegion(regionID, regionData = []) if(data == null) { $("div[data-id^=" + regionID + "].region").hide(); + return false; } + else + { + $("div[data-id^=" + regionID + "].region").show(); + } + $region.empty(); $region.data('zui.kanban').render(data); resetRegionHeight('open'); return true; @@ -1614,7 +1617,7 @@ function toggleRDSearchBox() function searchCards(value) { rdSearchValue = value; - $.get(createLink('execution', 'ajaxUpdateKanban', "executionID=" + executionID + "&entertime=" + entertime + "&browseType=" + browseType + "&groupBy=" + groupBy + '&from=RD&searchValue=' + value), function(data) + $.get(createLink('execution', 'ajaxUpdateKanban', "executionID=" + executionID + "&entertime=0&browseType=" + browseType + "&groupBy=" + groupBy + '&from=RD&searchValue=' + value), function(data) { kanbanData = $.parseJSON(data); $('#kanban').children('.region').children("div[id^='kanban']").each(function() From cbdefb47fd13e63b371739ec722965b6d553d57d Mon Sep 17 00:00:00 2001 From: liumengyi Date: Wed, 8 Jun 2022 13:18:21 +0800 Subject: [PATCH 25/53] * Fix bug of task #56454. --- module/execution/js/kanban.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/js/kanban.js b/module/execution/js/kanban.js index d1a7ac0bec..a1241aec2e 100644 --- a/module/execution/js/kanban.js +++ b/module/execution/js/kanban.js @@ -1602,8 +1602,8 @@ function resetRegionHeight(fold) */ function toggleRDSearchBox() { - $('#rdSearchBox').fadeToggle(); rdSearchValue = ''; + $('#rdSearchBox').toggle(); if($('#rdSearchBox').css('display') == 'block') { $(".querybox-toggle").css("color", "#0c64eb"); From 2a9f945c775179adc58c220242453ce5ffd12227 Mon Sep 17 00:00:00 2001 From: liumengyi Date: Wed, 8 Jun 2022 13:25:06 +0800 Subject: [PATCH 26/53] * Fix bug #23407. --- module/execution/css/taskkanban.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/css/taskkanban.css b/module/execution/css/taskkanban.css index 0127f0157c..166278d2f0 100644 --- a/module/execution/css/taskkanban.css +++ b/module/execution/css/taskkanban.css @@ -54,7 +54,7 @@ #type_chosen .icon-kanban {padding-right: 10px; font-size: 15px;} .dropdown-menu a {text-align: left;} -.scrollbar-hover {max-height: 2000px; overflow: scroll !important;} +.scrollbar-hover {overflow: scroll !important;} .c-type {width: 150px !important; overflow: unset;} .c-group {width: 190px !important; overflow: unset;} .c-type {margin-left: 0px !important;} From 0fe197894b1edd0d17278cca160aa2f410c35038 Mon Sep 17 00:00:00 2001 From: liumengyi Date: Wed, 8 Jun 2022 13:44:27 +0800 Subject: [PATCH 27/53] * Fix bug of task #56454. --- module/execution/js/kanban.js | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/module/execution/js/kanban.js b/module/execution/js/kanban.js index a1241aec2e..81dab0d584 100644 --- a/module/execution/js/kanban.js +++ b/module/execution/js/kanban.js @@ -1619,13 +1619,23 @@ function searchCards(value) rdSearchValue = value; $.get(createLink('execution', 'ajaxUpdateKanban', "executionID=" + executionID + "&entertime=0&browseType=" + browseType + "&groupBy=" + groupBy + '&from=RD&searchValue=' + value), function(data) { - kanbanData = $.parseJSON(data); + var kanbanData = $.parseJSON(data); + var hideAll = true; $('#kanban').children('.region').children("div[id^='kanban']").each(function() { var regionID = $(this).attr('data-id'); if(kanbanData != null) data = groupBy == 'default' ? kanbanData[regionID] : kanbanData[groupBy]; - updateRegion(regionID, data); + hideAll = hideAll && !updateRegion(regionID, data); }); + + if(hideAll && rdSearchValue != '') + { + if($('.table-empty-tip').length == 0) $('#kanban').append('

' + kanbanLang.empty + '

'); + } + else + { + $('.table-empty-tip').remove(); + } }); } From bf33186b82443e0c443cd5a7bc61e810a4c0ff89 Mon Sep 17 00:00:00 2001 From: liumengyi Date: Wed, 8 Jun 2022 13:45:14 +0800 Subject: [PATCH 28/53] * Add annotation. --- module/execution/js/kanban.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/module/execution/js/kanban.js b/module/execution/js/kanban.js index 81dab0d584..500a765daa 100644 --- a/module/execution/js/kanban.js +++ b/module/execution/js/kanban.js @@ -1614,6 +1614,13 @@ function toggleRDSearchBox() } } +/** + * Search all cards. + * + * @param string $value + * @access public + * @return void + */ function searchCards(value) { rdSearchValue = value; From d64e16d4ef1c69c70c625696b64555fecef4ec5e Mon Sep 17 00:00:00 2001 From: mayue Date: Wed, 8 Jun 2022 13:48:36 +0800 Subject: [PATCH 29/53] * Finish story#9206. --- module/custom/view/required.html.php | 1 + 1 file changed, 1 insertion(+) diff --git a/module/custom/view/required.html.php b/module/custom/view/required.html.php index 4ed45dbd28..4615d1b6eb 100644 --- a/module/custom/view/required.html.php +++ b/module/custom/view/required.html.php @@ -16,6 +16,7 @@
custom->requiredModules); foreach($config->custom->requiredModules as $requiredModule) { $requiredModuleName = zget($lang->custom->moduleName, $requiredModule, $lang->$requiredModule->common); From d0e34c1f19576856299e770be3410b770ed44cd0 Mon Sep 17 00:00:00 2001 From: liumengyi Date: Wed, 8 Jun 2022 13:50:15 +0800 Subject: [PATCH 30/53] * Code optimize. --- module/execution/view/kanban.html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/view/kanban.html.php b/module/execution/view/kanban.html.php index 36f97dfc73..aa64075abd 100644 --- a/module/execution/view/kanban.html.php +++ b/module/execution/view/kanban.html.php @@ -139,7 +139,7 @@ js::set('hasTaskButton', $hasTaskButton);
Date: Wed, 8 Jun 2022 14:13:58 +0800 Subject: [PATCH 31/53] * Adjust the makefile for deb and rpm package name. --- Makefile | 19 +++++++++---------- tools/packDeb.php | 2 +- tools/packRpm.php | 4 +--- 3 files changed, 11 insertions(+), 14 deletions(-) diff --git a/Makefile b/Makefile index 9e8da19a96..e747c93624 100644 --- a/Makefile +++ b/Makefile @@ -23,6 +23,7 @@ clean: rm -fr zentaoxx rm -fr tmp/ rm -f *.sh + rm -f *.deb *.rpm common: mkdir zentaopms cp -fr api zentaopms/ @@ -176,7 +177,7 @@ deb: cp ZenTaoPMS.${VERSION}.zip buildroot/opt cd buildroot/opt; unzip ZenTaoPMS.${VERSION}.zip; mv zentaopms zentao; rm ZenTaoPMS.${VERSION}.zip sed -i 's/index.php/\/zentao\/index.php/' buildroot/opt/zentao/www/.htaccess - sudo dpkg -b buildroot/ ZenTaoPMS_${VERSION}_1_all.deb + sudo dpkg -b buildroot/ ZenTaoPMS.${VERSION}.1.all.deb rm -rf buildroot rpm: mkdir ~/rpmbuild/SPECS -p @@ -252,6 +253,9 @@ ciCommon: rm -fr zentaopms zentaoxx zentaoxx.*.zip make en rm -fr zentaopms zentaoxx zentaoxx.*.zip + rm -f $(BUILD_PATH)/ZenTao*.zip $(RELEASE_PATH)/ZenTaoPMS.$(VERSION).zip $(RELEASE_PATH)/ZenTaoALM.$(VERSION).int.zip + cp ZenTaoPMS.$(VERSION).zip $(BUILD_PATH) + cp ZenTaoPMS.$(VERSION).zip ZenTaoALM.$(VERSION).int.zip $(RELEASE_PATH) ci: make ciCommon php tools/packZip.php $(VERSION) @@ -263,12 +267,7 @@ ci: php tools/packRpm.php $(VERSION) sh rpm.sh rm -rf tmp/ - rm -f zentaobiz*.zip zentaomax*.zip $(BUILD_PATH)/ZenTaoPMS.$(VERSION).zip $(RELEASE_PATH)/ZenTaoALM.$(VERSION)*.zip $(RELEASE_PATH)/ZenTaoPMS.$(VERSION)*.zip $(RELEASE_PATH)/*.deb $(RELEASE_PATH)/*.rpm *.sh - cp ZenTaoPMS.$(VERSION).zip $(BUILD_PATH) - mv *.zip *.deb *.rpm $(RELEASE_PATH) -lite: - make ciCommon - php tools/packZip.php $(VERSION) $(LITEVERSION) - rm -f zentaobiz*.zip zentaomax*.zip $(BUILD_PATH)/ZenTaoPMS.$(VERSION).zip $(RELEASE_PATH)/ZenTaoALM.$(VERSION)*.zip $(RELEASE_PATH)/ZenTaoPMS.$(VERSION)*.zip $(RELEASE_PATH)/ZenTaoALM.$(LITEVERSION)*.zip $(RELEASE_PATH)/ZenTaoPMS.$(LITEVERSION)*.zip *.sh - cp ZenTaoPMS.$(VERSION).zip $(BUILD_PATH) - mv *.zip $(RELEASE_PATH) + rm -f zentaobiz*.zip zentaomax*.zip $(RELEASE_PATH)/ZenTaoALM.$(VERSION)*.zip $(RELEASE_PATH)/ZenTaoPMS.$(VERSION)*.zip $(RELEASE_PATH)/*.deb $(RELEASE_PATH)/*.rpm *.sh $(RELEASE_PATH)/pmsPack/*.zip $(RELEASE_PATH)/pmsPack/deb/* $(RELEASE_PATH)/pmsPack/rpm/* + mv ZenTaoALM.$(VERSION).int.php*.zip ZenTaoPMS.$(VERSION).php*.zip $(RELEASE_PATH)/pmsPack + mv *.deb $(RELEASE_PATH)/pmsPack/deb + mv *.rpm $(RELEASE_PATH)/pmsPack/rpm diff --git a/tools/packDeb.php b/tools/packDeb.php index b38b578ff3..25545d2555 100644 --- a/tools/packDeb.php +++ b/tools/packDeb.php @@ -54,7 +54,7 @@ foreach(array('zh-cn', 'en') as $langType) $command .= "sed -i 's/index.php/\/zentao\/index.php/' zentao/www/.htaccess\n"; $command .= "cd ../../\n"; - $command .= "sudo dpkg -b buildroot/ {$packPrefix}_{$version}_php{$phpVersion}_1_all.deb\n"; + $command .= "sudo dpkg -b buildroot/ {$packPrefix}.{$version}.php{$phpVersion}.1.all.deb\n"; $command .= "mv *.deb ../../\n"; $command .= "rm -rf buildroot\n"; diff --git a/tools/packRpm.php b/tools/packRpm.php index 66d40ceb6f..349b307df6 100644 --- a/tools/packRpm.php +++ b/tools/packRpm.php @@ -60,9 +60,7 @@ foreach(array('zh-cn', 'en') as $langType) $command .= "cd ../../\n"; $command .= "rpmbuild --define \"_topdir \${PWD}/rpmbuild\" -ba rpmbuild/SPECS/zentaopms.spec\n"; - $command .= "cp rpmbuild/RPMS/noarch/$dirName-$version-1.noarch.rpm ./{$dirName}-{$version}-php{$phpVersion}-1.noarch.rpm\n"; - - $command .= "mv {$dirName}-{$version}-php{$phpVersion}-1.noarch.rpm ../../\n"; + $command .= "cp rpmbuild/RPMS/noarch/$dirName-$version-1.noarch.rpm ../../{$packPrefix}.{$version}.php{$phpVersion}.1.noarch.rpm\n"; $command .= "rm -rf rpmbuild\n"; From 3fb390115c93062be8ece6db00c2ac5caad25e1a Mon Sep 17 00:00:00 2001 From: wangyuting2 <851424971@qq.com> Date: Wed, 8 Jun 2022 14:23:42 +0800 Subject: [PATCH 32/53] * Add processing of datasource viewType. --- module/tree/control.php | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/module/tree/control.php b/module/tree/control.php index 6ba17a19fe..2b953d2f6b 100644 --- a/module/tree/control.php +++ b/module/tree/control.php @@ -229,6 +229,27 @@ class tree extends control $title = $this->lang->tree->manageTrainpost; $position[] = $this->lang->tree->manageTrainpost; } + elseif(strpos($viewType, 'datasource') !== false) + { + $params = explode('_', $viewType); + if(count($params) == 2) + { + $datasourceID = $params[1]; + $manageChild = 'manage' . ucfirst($viewType) . 'Child'; + $datasource = $this->loadModel('workflowdatasource', 'flow')->getByID($datasourceID); + if($datasource) + { + $title = $datasource->name; + $position[] = $datasource->name; + + $this->lang->tree->$manageChild = $title; + + $root = new stdclass(); + $root->name = $title; + $this->view->root = $root; + } + } + } $parentModules = $this->tree->getParents($currentModuleID); $this->view->title = $title; From 6471116e480fc996b3010ec831596db62643c16c Mon Sep 17 00:00:00 2001 From: zenggang Date: Wed, 8 Jun 2022 06:25:13 +0000 Subject: [PATCH 33/53] * Finish task#56544 --- module/project/control.php | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/module/project/control.php b/module/project/control.php index 5bfc6e474e..761039e7b9 100644 --- a/module/project/control.php +++ b/module/project/control.php @@ -1993,4 +1993,30 @@ class project extends control } echo json_encode($response); } + + /** + * AJAX: get executions of a project in html select. + * + * @param int $projectID + * @param int $productID + * @param int $executionID + * @access public + * @return void + */ + public function ajaxGetExecutions($projectID, $productID = 0, $executionID = 0) + { + if(empty($projectID) and empty($productID)) + { + $executionList = array('' => '') + $this->loadModel('execution')->getPairs(); + } + else + { + $executionList = array('' => ''); + $executions = $this->project->getStats($projectID, 'all', $productID); + foreach($executions as $execution) $executionList[$execution->id] = $execution->name; + } + + if($this->app->getViewType() == 'json') return print(json_encode($executionList)); + return print(html::select('execution', $executionList, $executionID, "class='form-control'")); + } } From 16e9d31d15d9d835bd374cd9afa1f6be4ce922cd Mon Sep 17 00:00:00 2001 From: zhouxudong Date: Wed, 8 Jun 2022 06:36:13 +0000 Subject: [PATCH 34/53] * Finish task #56379. --- module/kanban/css/space.css | 4 ++-- module/kanban/view/space.html.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/module/kanban/css/space.css b/module/kanban/css/space.css index 8eabd3cb10..32b8bd052b 100644 --- a/module/kanban/css/space.css +++ b/module/kanban/css/space.css @@ -8,8 +8,8 @@ .space .menu {margin-left: 5px; margin-right:5px;} .space .table-empty-tip {padding: 40px 10px;} .space .spaceTitle.pull-left {overflow: hidden; white-space: nowrap; max-width: calc(100% - 150px)} -.desc-style {font-size: 13px; color: #838A9D; margin: -5px 0 5px 18px;} -.menu-style {margin-left: -25px; min-width: 80px} +.spaceDesc {font-size: 13px; color: #838A9D; margin: -5px 0 5px 18px;} +.settingDropdown {margin-left: -25px; min-width: 80px} .kanbans > .col {width: 25% !important;} @media screen and (max-width: 1500px) {.kanbans > .col {width: 25%;}} diff --git a/module/kanban/view/space.html.php b/module/kanban/view/space.html.php index a4c478d57c..b80fd960eb 100644 --- a/module/kanban/view/space.html.php +++ b/module/kanban/view/space.html.php @@ -47,14 +47,14 @@ name;?>
-

desc) ? $lang->kanban->emptyDesc : $space->desc;?>

+

desc) ? $lang->kanban->emptyDesc : $space->desc;?>

status == 'closed' ? 'disabled' : '';?> status != 'closed' and $browseType != 'involved' and !empty($unclosedSpace)) common::printLink('kanban', 'create', "spaceID={$space->id}&type={$space->type}", ' ' . $lang->kanban->create, '', "class='iframe' data-width='75%'", '', true);?>
kanban->setting;?> -
action->objectType);?>
- recTotal}&recPerPage={$pager->recPerPage}"; ?> + recTotal}&recPerPage={$pager->recPerPage}"; ?>
From 16e24ac37aa15f71dc8bb5ba3b538565162dd114 Mon Sep 17 00:00:00 2001 From: sunjun Date: Wed, 8 Jun 2022 07:08:25 +0000 Subject: [PATCH 38/53] sprint_201_56459 --- module/my/control.php | 26 +++++----- module/my/lang/en.php | 1 + module/my/lang/zh-cn.php | 1 + module/my/model.php | 84 ++++++++++++++++++++++++++++++++ module/my/view/testcase.html.php | 11 ++++- 5 files changed, 111 insertions(+), 12 deletions(-) diff --git a/module/my/control.php b/module/my/control.php index 42e999364f..42b29e1a58 100755 --- a/module/my/control.php +++ b/module/my/control.php @@ -219,11 +219,11 @@ EOF; * @access public * @return void */ - public function contribute($mode = 'task', $type = 'openedBy', $orderBy = 'id_desc', $recTotal = 0, $recPerPage = 20, $pageID = 1) + public function contribute($mode = 'task', $type = 'openedBy', $orderBy = 'id_desc', $recTotal = 0, $recPerPage = 20, $pageID = 1, $param = 0) { if(($mode == 'issue' or $mode == 'risk') and $type == 'openedBy') $type = 'createdBy'; - echo $this->fetch('my', $mode, "type=$type&orderBy=$orderBy&recTotal=$recTotal&recPerPage=$recPerPage&pageID=$pageID"); + echo $this->fetch('my', $mode, "type=$type&orderBy=$orderBy&recTotal=$recTotal&recPerPage=$recPerPage&pageID=$pageID¶m=$param"); } /** @@ -604,7 +604,7 @@ EOF; * @access public * @return void */ - public function testcase($type = 'assigntome', $orderBy = 'id_desc', $recTotal = 0, $recPerPage = 20, $pageID = 1) + public function testcase($type = 'assigntome', $orderBy = 'id_desc', $recTotal = 0, $recPerPage = 20, $pageID = 1, $param = 0) { $this->loadModel('testcase'); $this->loadModel('testtask'); @@ -620,20 +620,24 @@ EOF; /* Append id for secend sort. */ $sort = common::appendOrder($orderBy); + $queryID = ($type == 'bysearch') ? (int)$param : 0; $cases = array(); - if($type == 'assigntome') - { - $cases = $this->testcase->getByAssignedTo($this->app->user->account, $sort, $pager, 'skip'); - } - elseif($type == 'openedbyme') - { - $cases = $this->testcase->getByOpenedBy($this->app->user->account, $sort, $pager, 'skip'); - } + if($type == 'assigntome') $cases = $this->testcase->getByAssignedTo($this->app->user->account, $sort, $pager, 'skip'); + if($type == 'openedbyme') $cases = $this->testcase->getByOpenedBy($this->app->user->account, $sort, $pager, 'skip'); + if($type == 'bysearch' and $this->app->rawMethod == 'contribute') $cases = $this->my->getTestcasesBySearch($queryID, 'openedbyme', $orderBy, $pager); + if($type == 'bysearch' and $this->app->rawMethod == 'work') $cases = $this->my->getTestcasesBySearch($queryID, 'assigntome', $orderBy, $pager); + $this->loadModel('common')->saveQueryCondition($this->dao->get(), 'testcase', $type == 'assigntome' ? false : true); $cases = $this->testcase->appendData($cases, $type == 'assigntome' ? 'run' : 'case'); + /* Build the search form. */ + $method = $this->app->rawMethod; + $actionURL = $this->createLink('my', $method, "mode=testcase&type=bysearch&orderBy={$orderBy}&recTotal={$recTotal}&recPerPage={$recPerPage}&pageID={$pageID}¶m=myQueryID"); + $this->config->testcase->search['onMenuBar'] = 'yes'; + $this->my->buildTestcaseSearchForm($queryID, $actionURL, $method); + /* Assign. */ $this->view->title = $this->lang->my->common . $this->lang->colon . $this->lang->my->myTestCase; $this->view->position[] = $this->lang->my->myTestCase; diff --git a/module/my/lang/en.php b/module/my/lang/en.php index 344033dd8f..5aa236aa2a 100644 --- a/module/my/lang/en.php +++ b/module/my/lang/en.php @@ -43,6 +43,7 @@ $lang->my->testcase = 'My Case'; $lang->my->storyConcept = 'Story Concept'; $lang->my->pri = 'Priority'; $lang->my->alert = 'You can click on your profile at the top right and select "Preference" to modify your information. '; +$lang->my->assignedToMe = 'AssignedToMe'; $lang->my->indexAction = 'My Index'; $lang->my->calendarAction = 'My Calendar'; diff --git a/module/my/lang/zh-cn.php b/module/my/lang/zh-cn.php index a0a4e36334..265f0899b7 100644 --- a/module/my/lang/zh-cn.php +++ b/module/my/lang/zh-cn.php @@ -43,6 +43,7 @@ $lang->my->testcase = '我的用例'; $lang->my->storyConcept = $config->URAndSR ? '默认需求概念组合' : '默认需求概念'; $lang->my->pri = '优先级'; $lang->my->alert = '后续您可以点击右上方的头像,选择“个性化设置”修改信息。'; +$lang->my->assignedToMe = '指派给我'; $lang->my->indexAction = '地盘仪表盘'; $lang->my->calendarAction = '我的日程'; diff --git a/module/my/model.php b/module/my/model.php index 280f51d2c3..e3aaec1027 100644 --- a/module/my/model.php +++ b/module/my/model.php @@ -374,4 +374,88 @@ class myModel extends model } return $objectList; } + + /** + * Build search form. + * + * @param int $queryID + * @param string $actionURL + * @param string $type + * @access public + * @return void + */ + public function buildTestCaseSearchForm($queryID, $actionURL, $type) + { + $products = $this->dao->select('id,name')->from(TABLE_PRODUCT) + ->where('deleted')->eq(0) + ->beginIF(!$this->app->user->admin)->andWhere('id')->in($this->app->user->view->products)->fi() + ->orderBy('order_asc') + ->fetchPairs(); + + $queryName = $type == 'contribute' ? 'contributeTestcase' : 'workTestcase'; + $this->app->loadConfig('testcase'); + $this->config->testcase->search['module'] = $queryName; + $this->config->testcase->search['queryID'] = $queryID; + $this->config->testcase->search['actionURL'] = $actionURL; + $this->config->testcase->search['params']['product']['values'] = $products; + $this->config->testcase->search['params']['lib']['values'] = $this->loadModel('caselib')->getLibraries(); + + unset($this->config->testcase->search['fields']['module']); + + $this->loadModel('search')->setSearchParams($this->config->testcase->search); + } + + /** + * Get testcases by search. + * + * @param int $queryID + * @param string $type + * @param string $orderBy + * @param int $pager + * @access public + * @return array + */ + public function getTestcasesBySearch($queryID, $type, $orderBy, $pager) + { + $queryName = $type == 'contribute' ? 'contributeTestcaseQuery' : 'workTestcaseQuery'; + if($queryID) + { + $query = $this->loadModel('search')->getQuery($queryID); + if($query) + { + $this->session->set($queryName, $query->sql); + $this->session->set($queryName . 'Form', $query->form); + } + else + { + $this->session->set($queryName, ' 1 = 1'); + } + } + else + { + if($this->session->$queryName == false) $this->session->set($queryName, ' 1 = 1'); + } + + $myTestcaseQuery = $this->session->$queryName; + $myTestcaseQuery = preg_replace('/`(\w+)`/', 't1.`$1`', $myTestcaseQuery); + + if($type == 'openedbyme') + { + $cases = $this->dao->select('*')->from(TABLE_CASE)->alias('t1') + ->where($myTestcaseQuery) + ->andWhere('t1.openedBy')->eq($this->app->user->account) + ->andWhere('t1.deleted')->eq(0) + ->orderBy($orderBy)->page($pager)->fetchAll('id'); + } + else + { + $cases = $this->dao->select('t1.*')->from(TABLE_CASE)->alias('t1') + ->leftJoin(TABLE_TESTRUN)->alias('t2')->on('t1.id = t2.case') + ->where($myTestcaseQuery) + ->andWhere('t2.assignedTo')->eq($this->app->user->account) + ->andWhere('t1.deleted')->eq(0) + ->orderBy($orderBy)->page($pager)->fetchAll('id'); + } + return $cases; + } } diff --git a/module/my/view/testcase.html.php b/module/my/view/testcase.html.php index 604a4c0236..e36ad95c8c 100644 --- a/module/my/view/testcase.html.php +++ b/module/my/view/testcase.html.php @@ -19,11 +19,20 @@
{$pager->recTotal}"; - if($app->rawMethod == 'contribute') echo html::a(inlink($app->rawMethod, "mode=$mode&type=openedbyme"), "{$lang->testcase->openedByMe}" . ($type == 'openedbyme' ? $recTotalLabel : ''), '', "class='btn btn-link" . ($type == 'openedbyme' ? ' btn-active-text' : '') . "'"); + if($app->rawMethod == 'contribute') + { + echo html::a(inlink($app->rawMethod, "mode=$mode&type=openedbyme"), "{$lang->testcase->openedByMe}" . ($type == 'openedbyme' ? $recTotalLabel : ''), '', "class='btn btn-link" . ($type == 'openedbyme' ? ' btn-active-text' : '') . "'"); + } + else + { + echo html::a(inlink($app->rawMethod, "mode=$mode&type=assigntome"), "{$lang->my->assignedToMe}" . ($type == 'assigntome' ? $recTotalLabel : ''), '', "class='btn btn-link" . ($type == 'assigntome' ? ' btn-active-text' : '') . "'"); + } ?> + loadModel('search');echo $lang->search->common;?>
+
rawMethod == 'contribute' ? 'contributeTestcase' : 'workTestcase');?>>

testcase->noCase;?>

From be664e636846c4cfb7a6f4397e301113a5899102 Mon Sep 17 00:00:00 2001 From: liumengyi Date: Wed, 8 Jun 2022 15:23:00 +0800 Subject: [PATCH 39/53] * Fix bug. --- extension/lite/kanban/ext/model/lite.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extension/lite/kanban/ext/model/lite.php b/extension/lite/kanban/ext/model/lite.php index 9ce3a29904..3406eb1c33 100644 --- a/extension/lite/kanban/ext/model/lite.php +++ b/extension/lite/kanban/ext/model/lite.php @@ -5,7 +5,7 @@ public function __construct($appName = '') if($this->app->getModuleName() == 'kanban') $this->lang->kanban->menu = new stdclass(); } -public function getKanban4Group($executionID, $browseType, $groupBy) +public function getKanban4Group($executionID, $browseType, $groupBy, $searchValue = '') { /* Get card data. */ $cardList = array(); @@ -135,7 +135,7 @@ public function getKanban4Group($executionID, $browseType, $groupBy) * @access public * @return array */ -public function getCardGroupByExecution($executionID, $browseType = 'all', $orderBy = 'id_asc') +public function getCardGroupByExecution($executionID, $browseType = 'all', $orderBy = 'id_asc', $searchValue = '') { $cards = $this->dao->select('t1.*, t2.type as columnType') ->from(TABLE_KANBANCELL)->alias('t1') From a7fcd0f37270dc34c7f9146c0299fbf8b905de80 Mon Sep 17 00:00:00 2001 From: liumengyi Date: Wed, 8 Jun 2022 15:33:49 +0800 Subject: [PATCH 40/53] * Fix bug #23416. --- module/execution/js/kanban.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/module/execution/js/kanban.js b/module/execution/js/kanban.js index 500a765daa..5c143b7fc3 100644 --- a/module/execution/js/kanban.js +++ b/module/execution/js/kanban.js @@ -1611,6 +1611,8 @@ function toggleRDSearchBox() else { $(".querybox-toggle").css("color", ""); + $('#rdKanbanSearchInput').attr('value', ''); + searchCards(''); } } From 7b80bfeedda77b19df78451d979fdf4fc07b2af4 Mon Sep 17 00:00:00 2001 From: liumengyi Date: Wed, 8 Jun 2022 15:43:17 +0800 Subject: [PATCH 41/53] * Fix bug #23422. --- module/kanban/model.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/module/kanban/model.php b/module/kanban/model.php index 3e38a35088..1ec2c65282 100644 --- a/module/kanban/model.php +++ b/module/kanban/model.php @@ -844,11 +844,11 @@ class kanbanModel extends model $this->refreshCards($lane); $lane->items = isset($cardGroup[$lane->id]) ? $cardGroup[$lane->id] : array(); $lane->defaultCardType = $lane->type; - if(!empty($searchValue) and count($lane->items) == 0) unset($lanes[$key]); + if($searchValue != '' and count($lane->items) == 0) unset($lanes[$key]); } $lanes = array_values($lanes); - if(!empty($searchValue) and empty($lanes)) continue; + if($searchValue != '' and empty($lanes)) continue; $group->columns = zget($columnGroup, $group->id, array()); $group->lanes = $lanes; $group->actions = array(); @@ -1303,14 +1303,14 @@ class kanbanModel extends model if($cell->type == 'task') { - if(!empty($searchValue) and strpos($object->name, $searchValue) === false) continue; + if($searchValue != '' and strpos($object->name, $searchValue) === false) continue; $cardData['name'] = $object->name; $cardData['status'] = $object->status; $cardData['left'] = $object->left; } else { - if(!empty($searchValue) and strpos($object->title, $searchValue) === false) continue; + if($searchValue != '' and strpos($object->title, $searchValue) === false) continue; $cardData['title'] = $object->title; } $cardGroup[$laneID][$cell->columnType][] = $cardData; @@ -1414,14 +1414,14 @@ class kanbanModel extends model if($lane->type == 'task') { - if(!empty($searchValue) and strpos($object->name, $searchValue) === false) continue; + if($searchValue != '' and strpos($object->name, $searchValue) === false) continue; $cardData['name'] = $object->name; $cardData['status'] = $object->status; $cardData['left'] = $object->left; } else { - if(!empty($searchValue) and strpos($object->title, $searchValue) === false) continue; + if($searchValue != '' and strpos($object->title, $searchValue) === false) continue; $cardData['title'] = $object->title; } @@ -1563,14 +1563,14 @@ class kanbanModel extends model if($browseType == 'task') { - if(!empty($searchValue) and strpos($object->name, $searchValue) === false) continue; + if($searchValue != '' and strpos($object->name, $searchValue) === false) continue; $cardData['name'] = $object->name; $cardData['status'] = $object->status; $cardData['left'] = $object->left; } else { - if(!empty($searchValue) and strpos($object->title, $searchValue) === false) continue; + if($searchValue != '' and strpos($object->title, $searchValue) === false) continue; $cardData['title'] = $object->title; } @@ -1580,7 +1580,7 @@ class kanbanModel extends model if(empty($searchValue) and !isset($laneData['cards'][$column->columnType])) $laneData['cards'][$column->columnType] = array(); } - if(!empty($searchValue) and empty($laneData['cards'])) continue;; + if($searchValue != '' and empty($laneData['cards'])) continue; $kanbanGroup[$groupBy]['id'] = $groupBy . $laneID; $kanbanGroup[$groupBy]['columns'] = array_values($columnData); $kanbanGroup[$groupBy]['lanes'][] = $laneData; From b31b45c11f54ffaaa4b2830e85f43fd96324bccf Mon Sep 17 00:00:00 2001 From: lanzongjun Date: Wed, 8 Jun 2022 15:44:50 +0800 Subject: [PATCH 42/53] * finish task #56023 --- module/user/control.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/module/user/control.php b/module/user/control.php index 25a5cae3ef..d5147d4803 100644 --- a/module/user/control.php +++ b/module/user/control.php @@ -1185,19 +1185,21 @@ class user extends control * @param int $contactListID * @param string $dropdownName mailto|whitelist * @param string $oldUsers + * @param string $extra * @access public * @return string */ - public function ajaxGetContactUsers($contactListID, $dropdownName = 'mailto', $oldUsers = '') + public function ajaxGetContactUsers($contactListID, $dropdownName = 'mailto', $oldUsers = '', $extra = '') { $list = $contactListID ? $this->user->getContactListByID($contactListID) : ''; - $attr = $dropdownName == 'mailto' ? "data-placeholder='{$this->lang->chooseUsersToMail}'" : ''; $users = $this->user->getPairs('devfirst|nodeleted|noclosed', $list ? $list->userList : '', $this->config->maxCount); + if(!empty($extra) && $extra == 'flow') $users = array_merge(array('deptManager' => $this->lang->workflowdatasource->options['deptManager']), $users); if(isset($this->config->user->moreLink)) $this->config->moreLinks[$dropdownName . "[]"] = $this->config->user->moreLink; $defaultUsers = empty($contactListID) ? '' : $list->userList . ',' . trim($oldUsers); + if($extra == 'flow' && empty($defaultUsers)) $defaultUsers = trim($oldUsers); return print(html::select($dropdownName . "[]", $users, $defaultUsers, "class='form-control chosen' multiple $attr")); } From 463643ff833793d850fc8ca83109dc98d61a83d4 Mon Sep 17 00:00:00 2001 From: wangyuting2 <851424971@qq.com> Date: Wed, 8 Jun 2022 15:53:32 +0800 Subject: [PATCH 43/53] * Fix bug. --- module/tree/control.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/module/tree/control.php b/module/tree/control.php index 2b953d2f6b..c706520565 100644 --- a/module/tree/control.php +++ b/module/tree/control.php @@ -250,6 +250,19 @@ class tree extends control } } } + else + { + $manageChild = 'manage' . ucfirst($viewType) . 'Child'; + + $title = $this->lang->tree->common; + $position[] = $this->lang->tree->common; + + $this->lang->tree->$manageChild = $title; + + $root = new stdclass(); + $root->name = $title; + $this->view->root = $root; + } $parentModules = $this->tree->getParents($currentModuleID); $this->view->title = $title; From e834782533f7c315bd1ac1655d3d8e27929e73a9 Mon Sep 17 00:00:00 2001 From: liumengyi Date: Wed, 8 Jun 2022 16:54:01 +0800 Subject: [PATCH 44/53] * Fix bug of task #56455. --- module/productplan/control.php | 4 ++-- module/productplan/model.php | 7 ++++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/module/productplan/control.php b/module/productplan/control.php index 2a9c567d20..4510cef8eb 100644 --- a/module/productplan/control.php +++ b/module/productplan/control.php @@ -316,8 +316,8 @@ class productplan extends control /* Build the search form. */ $queryID = $browseType == 'bySearch' ? (int)$queryID : 0; - $actionURL = $this->createLink('productplan', 'browse', "productID=$productID&branch=$branch&browseType=bySearch&queryID=$queryID&orderBy=$orderBy&recTotal=$recTotal&recPerPage=$recPerPage&pageID=$pageID"); - $this->productplan->buildSearchForm($queryID, $actionURL, $productID); + $actionURL = $this->createLink('productplan', 'browse', "productID=$productID&branch=$branch&browseType=bySearch&queryID=myQueryID&orderBy=$orderBy&recTotal=$recTotal&recPerPage=$recPerPage&pageID=$pageID"); + $this->productplan->buildSearchForm($queryID, $actionURL, $product); if($viewType == 'kanban') { diff --git a/module/productplan/model.php b/module/productplan/model.php index 6df219af91..a43a194776 100644 --- a/module/productplan/model.php +++ b/module/productplan/model.php @@ -1209,16 +1209,17 @@ class productplanModel extends model * * @param int $queryID * @param string $actionURL - * @param int $productID + * @param object $product * @access public * @return void */ - public function buildSearchForm($queryID, $actionURL, $productID) + public function buildSearchForm($queryID, $actionURL, $product) { $this->config->productplan->search['actionURL'] = $actionURL; $this->config->productplan->search['queryID'] = $queryID; - $this->config->productplan->search['params']['branch']['values'] = array('' => '', '0' => $this->lang->branch->main) + $this->loadModel('branch')->getPairs($productID, 'noempty'); + if($product->type != 'normal') $this->config->productplan->search['params']['branch']['values'] = array('' => '', '0' => $this->lang->branch->main) + $this->loadModel('branch')->getPairs($product->id, 'noempty'); + if($product->type == 'normal') unset($this->config->productplan->search['fields']['branch']); $this->loadModel('search')->setSearchParams($this->config->productplan->search); } } From 305c6ee54344bff802830ef45fbf21db1f2cab59 Mon Sep 17 00:00:00 2001 From: sunjun Date: Wed, 8 Jun 2022 08:59:25 +0000 Subject: [PATCH 45/53] sprint_201_56459 --- module/my/control.php | 53 +++++++++++++++++++++------------------ module/my/model.php | 2 +- module/testcase/model.php | 2 +- 3 files changed, 30 insertions(+), 27 deletions(-) diff --git a/module/my/control.php b/module/my/control.php index 42b29e1a58..c27455b3dc 100755 --- a/module/my/control.php +++ b/module/my/control.php @@ -75,18 +75,19 @@ class my extends control /** * My work view. * - * @param string $mode - * @param string $type - * @param string $orderBy - * @param int $recTotal - * @param int $recPerPage - * @param int $pageID + * @param string $mode + * @param string $type + * @param string|int $param + * @param string $orderBy + * @param int $recTotal + * @param int $recPerPage + * @param int $pageID * @access public * @return void */ - public function work($mode = 'task', $type = 'assignedTo', $orderBy = 'id_desc', $recTotal = 0, $recPerPage = 20, $pageID = 1) + public function work($mode = 'task', $type = 'assignedTo', $param = 0, $orderBy = 'id_desc', $recTotal = 0, $recPerPage = 20, $pageID = 1) { - echo $this->fetch('my', $mode, "type=$type&orderBy=$orderBy&recTotal=$recTotal&recPerPage=$recPerPage&pageID=$pageID"); + echo $this->fetch('my', $mode, "type=$type¶m=$param&orderBy=$orderBy&recTotal=$recTotal&recPerPage=$recPerPage&pageID=$pageID"); $this->showWorkCount($recTotal, $recPerPage, $pageID); } @@ -210,20 +211,21 @@ EOF; /** * My contribute view. * - * @param string $mode - * @param string $type - * @param string $orderBy - * @param int $recTotal - * @param int $recPerPage - * @param int $pageID + * @param string $mode + * @param string $type + * @param string|int $param + * @param string $orderBy + * @param int $recTotal + * @param int $recPerPage + * @param int $pageID * @access public * @return void */ - public function contribute($mode = 'task', $type = 'openedBy', $orderBy = 'id_desc', $recTotal = 0, $recPerPage = 20, $pageID = 1, $param = 0) + public function contribute($mode = 'task', $type = 'openedBy', $param = 0, $orderBy = 'id_desc', $recTotal = 0, $recPerPage = 20, $pageID = 1) { if(($mode == 'issue' or $mode == 'risk') and $type == 'openedBy') $type = 'createdBy'; - echo $this->fetch('my', $mode, "type=$type&orderBy=$orderBy&recTotal=$recTotal&recPerPage=$recPerPage&pageID=$pageID¶m=$param"); + echo $this->fetch('my', $mode, "type=$type¶m=$param&orderBy=$orderBy&recTotal=$recTotal&recPerPage=$recPerPage&pageID=$pageID"); } /** @@ -596,15 +598,16 @@ EOF; /** * My test case. * - * @param string $type assigntome|openedbyme - * @param string $orderBy - * @param int $recTotal - * @param int $recPerPage - * @param int $pageID + * @param string $type assigntome|openedbyme + * @param string|int $param + * @param string $orderBy + * @param int $recTotal + * @param int $recPerPage + * @param int $pageID * @access public * @return void */ - public function testcase($type = 'assigntome', $orderBy = 'id_desc', $recTotal = 0, $recPerPage = 20, $pageID = 1, $param = 0) + public function testcase($type = 'assigntome', $param = 0, $orderBy = 'id_desc', $recTotal = 0, $recPerPage = 20, $pageID = 1) { $this->loadModel('testcase'); $this->loadModel('testtask'); @@ -633,10 +636,10 @@ EOF; $cases = $this->testcase->appendData($cases, $type == 'assigntome' ? 'run' : 'case'); /* Build the search form. */ - $method = $this->app->rawMethod; - $actionURL = $this->createLink('my', $method, "mode=testcase&type=bysearch&orderBy={$orderBy}&recTotal={$recTotal}&recPerPage={$recPerPage}&pageID={$pageID}¶m=myQueryID"); + $currentMethod = $this->app->rawMethod; + $actionURL = $this->createLink('my', $currentMethod, "mode=testcase&type=bysearch¶m=myQueryID&orderBy={$orderBy}&recTotal={$recTotal}&recPerPage={$recPerPage}&pageID={$pageID}"); $this->config->testcase->search['onMenuBar'] = 'yes'; - $this->my->buildTestcaseSearchForm($queryID, $actionURL, $method); + $this->my->buildTestcaseSearchForm($queryID, $actionURL, $currentMethod); /* Assign. */ $this->view->title = $this->lang->my->common . $this->lang->colon . $this->lang->my->myTestCase; diff --git a/module/my/model.php b/module/my/model.php index e3aaec1027..b2982a275a 100644 --- a/module/my/model.php +++ b/module/my/model.php @@ -417,7 +417,7 @@ class myModel extends model */ public function getTestcasesBySearch($queryID, $type, $orderBy, $pager) { - $queryName = $type == 'contribute' ? 'contributeTestcaseQuery' : 'workTestcaseQuery'; + $queryName = $type == 'openedbyme' ? 'contributeTestcaseQuery' : 'workTestcaseQuery'; if($queryID) { $query = $this->loadModel('search')->getQuery($queryID); diff --git a/module/testcase/model.php b/module/testcase/model.php index ba07b6894d..bca32dc7d4 100644 --- a/module/testcase/model.php +++ b/module/testcase/model.php @@ -607,7 +607,7 @@ class testcaseModel extends model */ public function getByAssignedTo($account, $orderBy = 'id_desc', $pager = null, $auto = 'no') { - return $this->dao->select('t1.*,t2.project,t2.pri,t2.title,t2.type,t2.openedBy,t2.color,t2.product,t2.branch,t2.module,t2.status,t3.name as taskName')->from(TABLE_TESTRUN)->alias('t1') + return $this->dao->select('t1.task,t1.case,t1.version,t1.assignedTo,t1.lastRunner,t1.lastRunDate,t1.lastRunResult,t1.status,t2.id as id,t2.project,t2.pri,t2.title,t2.type,t2.openedBy,t2.color,t2.product,t2.branch,t2.module,t2.status,t3.name as taskName')->from(TABLE_TESTRUN)->alias('t1') ->leftJoin(TABLE_CASE)->alias('t2')->on('t1.case = t2.id') ->leftJoin(TABLE_TESTTASK)->alias('t3')->on('t1.task = t3.id') ->where('t1.assignedTo')->eq($account) From ca92edbf956ccc850388da0e5dbfa254a49427b2 Mon Sep 17 00:00:00 2001 From: wangyuting2 <851424971@qq.com> Date: Wed, 8 Jun 2022 17:01:08 +0800 Subject: [PATCH 46/53] * Fix bug #23438. --- module/tree/control.php | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/module/tree/control.php b/module/tree/control.php index c706520565..c2fd89762a 100644 --- a/module/tree/control.php +++ b/module/tree/control.php @@ -239,6 +239,8 @@ class tree extends control $datasource = $this->loadModel('workflowdatasource', 'flow')->getByID($datasourceID); if($datasource) { + $this->app->rawModule = 'workflowdatasource'; + $title = $datasource->name; $position[] = $datasource->name; @@ -250,18 +252,24 @@ class tree extends control } } } - else + else if(strpos($viewType, '_') !== false) { - $manageChild = 'manage' . ucfirst($viewType) . 'Child'; + $params = explode('_', $viewType); + if(count($params) == 2) + { + $this->app->rawModule = $params[0]; - $title = $this->lang->tree->common; - $position[] = $this->lang->tree->common; + $manageChild = 'manage' . ucfirst($viewType) . 'Child'; - $this->lang->tree->$manageChild = $title; + $title = $this->lang->tree->common; + $position[] = $this->lang->tree->common; - $root = new stdclass(); - $root->name = $title; - $this->view->root = $root; + $this->lang->tree->$manageChild = $title; + + $root = new stdclass(); + $root->name = $title; + $this->view->root = $root; + } } $parentModules = $this->tree->getParents($currentModuleID); From 1daf6e8f914edca15258b412c58225796b48ca89 Mon Sep 17 00:00:00 2001 From: liumengyi Date: Wed, 8 Jun 2022 17:02:44 +0800 Subject: [PATCH 47/53] * Add annotation. --- module/productplan/model.php | 1 + 1 file changed, 1 insertion(+) diff --git a/module/productplan/model.php b/module/productplan/model.php index a43a194776..be0161beef 100644 --- a/module/productplan/model.php +++ b/module/productplan/model.php @@ -75,6 +75,7 @@ class productplanModel extends model * @param object $pager * @param string $orderBy * @param string $param skipparent + * @param int $queryID * @access public * @return object */ From 2d4f9f864443c6a464caafe6ad90bb33703497d0 Mon Sep 17 00:00:00 2001 From: wangyuting2 <851424971@qq.com> Date: Wed, 8 Jun 2022 17:03:52 +0800 Subject: [PATCH 48/53] * Add notes. --- module/tree/control.php | 1 + 1 file changed, 1 insertion(+) diff --git a/module/tree/control.php b/module/tree/control.php index c2fd89762a..c9b3739f80 100644 --- a/module/tree/control.php +++ b/module/tree/control.php @@ -252,6 +252,7 @@ class tree extends control } } } + /* viewType is workflow building category. */ else if(strpos($viewType, '_') !== false) { $params = explode('_', $viewType); From 9549b91f838291463774bf18130cccbbae445dad Mon Sep 17 00:00:00 2001 From: zenggang Date: Wed, 8 Jun 2022 09:13:48 +0000 Subject: [PATCH 49/53] * Adjust code --- module/project/control.php | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/module/project/control.php b/module/project/control.php index 761039e7b9..4bbcdf04e3 100644 --- a/module/project/control.php +++ b/module/project/control.php @@ -1998,25 +1998,15 @@ class project extends control * AJAX: get executions of a project in html select. * * @param int $projectID - * @param int $productID * @param int $executionID * @access public * @return void */ - public function ajaxGetExecutions($projectID, $productID = 0, $executionID = 0) + public function ajaxGetExecutions($projectID, $executionID = 0) { - if(empty($projectID) and empty($productID)) - { - $executionList = array('' => '') + $this->loadModel('execution')->getPairs(); - } - else - { - $executionList = array('' => ''); - $executions = $this->project->getStats($projectID, 'all', $productID); - foreach($executions as $execution) $executionList[$execution->id] = $execution->name; - } + $executions = array('' => '') + $this->loadModel('execution')->getpairs($projectID, 'all'); if($this->app->getViewType() == 'json') return print(json_encode($executionList)); - return print(html::select('execution', $executionList, $executionID, "class='form-control'")); + return print(html::select('execution', $executions, $executionID, "class='form-control'")); } } From 14ea5d8273b76b37b9f1c26e054617040caf58e4 Mon Sep 17 00:00:00 2001 From: zenggang Date: Wed, 8 Jun 2022 09:20:00 +0000 Subject: [PATCH 50/53] * Adjust code --- module/project/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/project/control.php b/module/project/control.php index 4bbcdf04e3..7a6e71ef88 100644 --- a/module/project/control.php +++ b/module/project/control.php @@ -2004,7 +2004,7 @@ class project extends control */ public function ajaxGetExecutions($projectID, $executionID = 0) { - $executions = array('' => '') + $this->loadModel('execution')->getpairs($projectID, 'all'); + $executions = array('' => '') + $this->loadModel('execution')->getPairs($projectID, 'all'); if($this->app->getViewType() == 'json') return print(json_encode($executionList)); return print(html::select('execution', $executions, $executionID, "class='form-control'")); From 283df0a7b81dea1a0cf520f92f2e5804e152549f Mon Sep 17 00:00:00 2001 From: sunjun Date: Wed, 8 Jun 2022 13:50:36 +0000 Subject: [PATCH 51/53] sprint_201_56459 --- module/my/control.php | 2 +- module/my/model.php | 2 +- module/my/view/testcase.html.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/module/my/control.php b/module/my/control.php index c27455b3dc..16f8d0fcac 100755 --- a/module/my/control.php +++ b/module/my/control.php @@ -637,7 +637,7 @@ EOF; /* Build the search form. */ $currentMethod = $this->app->rawMethod; - $actionURL = $this->createLink('my', $currentMethod, "mode=testcase&type=bysearch¶m=myQueryID&orderBy={$orderBy}&recTotal={$recTotal}&recPerPage={$recPerPage}&pageID={$pageID}"); + $actionURL = $this->createLink('my', $currentMethod, "mode=testcase&type=bysearch¶m=myQueryID&orderBy={$orderBy}&recTotal={$recTotal}&recPerPage={$recPerPage}&pageID={$pageID}"); $this->config->testcase->search['onMenuBar'] = 'yes'; $this->my->buildTestcaseSearchForm($queryID, $actionURL, $currentMethod); diff --git a/module/my/model.php b/module/my/model.php index b2982a275a..efcb0ad662 100644 --- a/module/my/model.php +++ b/module/my/model.php @@ -424,7 +424,7 @@ class myModel extends model if($query) { $this->session->set($queryName, $query->sql); - $this->session->set($queryName . 'Form', $query->form); + $this->session->set($queryName . 'Form', $query->form); } else { diff --git a/module/my/view/testcase.html.php b/module/my/view/testcase.html.php index e36ad95c8c..9401f4bd0b 100644 --- a/module/my/view/testcase.html.php +++ b/module/my/view/testcase.html.php @@ -28,7 +28,7 @@ echo html::a(inlink($app->rawMethod, "mode=$mode&type=assigntome"), "{$lang->my->assignedToMe}" . ($type == 'assigntome' ? $recTotalLabel : ''), '', "class='btn btn-link" . ($type == 'assigntome' ? ' btn-active-text' : '') . "'"); } ?> - loadModel('search');echo $lang->search->common;?> + loadModel('search');echo $lang->search->common;?>
From cd20d42306a482e1e05d60e6e76b84790c4a4f2e Mon Sep 17 00:00:00 2001 From: sunjun Date: Thu, 9 Jun 2022 00:39:32 +0000 Subject: [PATCH 52/53] sprint_201_56468 --- module/product/config.php | 2 ++ module/story/lang/zh-cn.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/module/product/config.php b/module/product/config.php index f7130554c9..e4259cb6be 100644 --- a/module/product/config.php +++ b/module/product/config.php @@ -34,6 +34,7 @@ $config->product->search['fields']['estimate'] = $lang->story->estimate; $config->product->search['fields']['source'] = $lang->story->source; $config->product->search['fields']['sourceNote'] = $lang->story->sourceNote; $config->product->search['fields']['fromBug'] = $lang->story->fromBug; +$config->product->search['fields']['category'] = $lang->story->category; $config->product->search['fields']['openedBy'] = $lang->story->openedBy; $config->product->search['fields']['reviewedBy'] = $lang->story->reviewedBy; @@ -68,6 +69,7 @@ $config->product->search['params']['estimate'] = array('operator' => '=', $config->product->search['params']['source'] = array('operator' => '=', 'control' => 'select', 'values' => $lang->story->sourceList); $config->product->search['params']['sourceNote'] = array('operator' => 'include', 'control' => 'input', 'values' => ''); $config->product->search['params']['fromBug'] = array('operator' => '=', 'control' => 'input', 'values' => ''); +$config->product->search['params']['category'] = array('operator' => '=', 'control' => 'select', 'values' => $lang->story->categoryList); $config->product->search['params']['openedBy'] = array('operator' => '=', 'control' => 'select', 'values' => 'users'); $config->product->search['params']['reviewedBy'] = array('operator' => 'include', 'control' => 'select', 'values' => 'users'); diff --git a/module/story/lang/zh-cn.php b/module/story/lang/zh-cn.php index d622a1885f..5eb09ccdb2 100644 --- a/module/story/lang/zh-cn.php +++ b/module/story/lang/zh-cn.php @@ -98,7 +98,7 @@ $lang->story->sourceNote = '来源备注'; $lang->story->fromBug = '来源Bug'; $lang->story->title = "{$lang->SRCommon}名称"; $lang->story->type = "需求类型"; -$lang->story->category = "类型"; +$lang->story->category = "类别"; $lang->story->color = '标题颜色'; $lang->story->toBug = '转Bug'; $lang->story->spec = "描述"; From 91199908ce8f2e9fad8a10abdc0fd3bff04adb9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=99=E5=B9=BF=E6=98=8E?= Date: Thu, 9 Jun 2022 08:57:56 +0800 Subject: [PATCH 53/53] * Code for task #56547. --- db/update17.0.sql | 1 + db/zentao.sql | 1 + module/doc/control.php | 22 ++++++++++++++++++++++ 3 files changed, 24 insertions(+) create mode 100644 db/update17.0.sql mode change 100644 => 100755 module/doc/control.php diff --git a/db/update17.0.sql b/db/update17.0.sql new file mode 100644 index 0000000000..5573f26123 --- /dev/null +++ b/db/update17.0.sql @@ -0,0 +1 @@ +ALTER TABLE `zt_review` ADD docVersion smallint(6) NOT NULL AFTER `doc`; diff --git a/db/zentao.sql b/db/zentao.sql index 2c8f08a0f3..c73404403f 100755 --- a/db/zentao.sql +++ b/db/zentao.sql @@ -9420,6 +9420,7 @@ CREATE TABLE IF NOT EXISTS `zt_review` ( `object` mediumint(8) NOT NULL, `template` mediumint(8) NOT NULL, `doc` mediumint(8) DEFAULT NULL, + `docVersion` smallint(6) DEFAULT NULL, `status` char(30) NOT NULL, `reviewedBy` varchar(255) NOT NULL, `auditedBy` varchar(255) NOT NULL, diff --git a/module/doc/control.php b/module/doc/control.php old mode 100644 new mode 100755 index 89c931c78e..101676c2de --- a/module/doc/control.php +++ b/module/doc/control.php @@ -792,6 +792,28 @@ class doc extends control return print($select); } + /** + * Ajax get docs by lib. + * + * @param int $libID + * @access public + * @return void + */ + public function ajaxGetDocs($libID) + { + if(!$libID) return print(html::select('doc', '', '', "class='form-control chosen'")); + + $docIdList = $this->doc->getPrivDocs($libID, 0); + $docs = $this->dao->select('id, title')->from(TABLE_DOC) + ->where('lib')->eq($libID) + ->andWhere('deleted')->eq(0) + ->andWhere('id')->in($docIdList) + ->orderBy('`order` asc') + ->fetchPairs(); + + return print(html::select('doc', $docs, '', "class='form-control chosen'")); + } + /** * Ajax save draft. *