From 146d8f9f38359ebe499fc6d7fe6df6c964b54574 Mon Sep 17 00:00:00 2001 From: tanghucheng Date: Tue, 7 Jun 2022 17:03:57 +0800 Subject: [PATCH 1/5] * Fix bug . --- extension/lite/kanban/ext/model/lite.php | 27 +++++++++++++++++++++--- 1 file changed, 24 insertions(+), 3 deletions(-) diff --git a/extension/lite/kanban/ext/model/lite.php b/extension/lite/kanban/ext/model/lite.php index 06cd7e0c60..9ce3a29904 100644 --- a/extension/lite/kanban/ext/model/lite.php +++ b/extension/lite/kanban/ext/model/lite.php @@ -16,13 +16,24 @@ public function getKanban4Group($executionID, $browseType, $groupBy) $lanes = $this->getLanes4Group($executionID, $browseType, $groupBy, $cardList); if(empty($lanes)) return array(); - $columns = $this->dao->select('t1.*, t2.`type` as columnType')->from(TABLE_KANBANCELL)->alias('t1') + $execution = $this->loadModel('execution')->getByID($executionID); + + $columns = $this->dao->select('t1.*, GROUP_CONCAT(t1.cards) as cards, t2.`type` as columnType, t2.limit, t2.name as columnName, t2.color')->from(TABLE_KANBANCELL)->alias('t1') ->leftJoin(TABLE_KANBANCOLUMN)->alias('t2')->on('t1.`column` = t2.id') + ->leftJoin(TABLE_KANBANLANE)->alias('t3')->on('t1.lane = t3.id') + ->leftJoin(TABLE_KANBANREGION)->alias('t4')->on('t1.kanban = t4.kanban') ->where('t1.kanban')->eq($executionID) ->andWhere('t1.`type`')->eq($browseType) - ->fetchAll(); + ->beginIF(isset($execution->type) and $execution->type == 'kanban') + ->andWhere('t3.deleted')->eq(0) + ->andWhere('t4.deleted')->eq(0) + ->fi() + ->groupBy('columnType') + ->orderBy('column_asc') + ->fetchAll('columnType'); $cardGroup = array(); + $actions = array('setColumn', 'setWIP'); foreach($columns as $column) { if(empty($column->cards)) continue; @@ -48,12 +59,21 @@ public function getKanban4Group($executionID, $browseType, $groupBy) $laneData['defaultCardType'] = $browseType; /* Construct kanban column data. */ - foreach($columnList as $columnID => $columnName) + foreach($columns as $column) { + $columnID = $column->column; + $columnName = $column->columnName; $parentColumn = ''; if(in_array($columnID, array('testing', 'tested'))) $parentColumn = 'test'; if(in_array($columnID, array('fixing', 'fixed'))) $parentColumn = 'resolving'; + /* Judge column action priv. */ + $column->actions = array(); + foreach($actions as $action) + { + if($this->isClickable($column, $action)) $column->actions[] = $action; + } + $columnData[$columnID]['id'] = $columnID; $columnData[$columnID]['type'] = $columnID; $columnData[$columnID]['name'] = $columnName; @@ -62,6 +82,7 @@ public function getKanban4Group($executionID, $browseType, $groupBy) $columnData[$columnID]['laneType'] = $browseType; $columnData[$columnID]['asParent'] = in_array($columnID, array('develop', 'test', 'resolving')) ? true : false; $columnData[$columnID]['parentType'] = $parentColumn; + $columnData[$columnID]['actions'] = $column->actions; $cardOrder = 1; $objects = zget($cardGroup, $columnID, array()); 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 2/5] * 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 b896377846448dbf6b29f1a2465151db06276420 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:02:29 +0800 Subject: [PATCH 3/5] * Change zentao 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 | 4 ++-- 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, 1087 insertions(+), 1087 deletions(-) diff --git a/api/v1/entries/bug.php b/api/v1/entries/bug.php index 7a9107c662..94bf3dfe55 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/bugactive.php b/api/v1/entries/bugactive.php index 7b2375cb4e..19ba5e51fc 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/bugassign.php b/api/v1/entries/bugassign.php index 3fbc260946..bd5bcfb434 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/bugclose.php b/api/v1/entries/bugclose.php index cbe5409d87..58a595c184 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/bugconfirm.php b/api/v1/entries/bugconfirm.php index c7bf5f9f67..d677486156 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/bugrecordestimate.php b/api/v1/entries/bugrecordestimate.php index e556612317..2debf19d08 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/bugresolve.php b/api/v1/entries/bugresolve.php index 4786f79bb0..09243a2163 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/bugs.php b/api/v1/entries/bugs.php index 70a1cb8178..e07502a219 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/build.php b/api/v1/entries/build.php index 7f8118d200..6d984a44be 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/builds.php b/api/v1/entries/builds.php index 59c4dd2241..1157014715 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/ciresults.php b/api/v1/entries/ciresults.php index be12c0b5cf..dce88c8ec8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/config.php b/api/v1/entries/config.php index 5d3a6fa87e..88ae406ae2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/configs.php b/api/v1/entries/configs.php index a170e4953b..923cc9ab74 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/department.php b/api/v1/entries/department.php index f64f5ba238..3f9d9e68d8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/departments.php b/api/v1/entries/departments.php index bae1f2bd53..df22fabfb0 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/doc.php b/api/v1/entries/doc.php index 7f57b4a46e..5a45d03634 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/doclibs.php b/api/v1/entries/doclibs.php index 3a769511c3..6598d6cb8e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/docs.php b/api/v1/entries/docs.php index 3a7c7a84cd..ec0783d9ce 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/error.php b/api/v1/entries/error.php index da8c2baa7b..dbe9c3c760 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/execution.php b/api/v1/entries/execution.php index a761858bc1..cc9add74e9 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/executionbugs.php b/api/v1/entries/executionbugs.php index 0f61508fda..5b7cf62535 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/executionbuilds.php b/api/v1/entries/executionbuilds.php index d533472322..979983c172 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/executioncases.php b/api/v1/entries/executioncases.php index bc6466b5cb..3b63e30e3a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/executions.php b/api/v1/entries/executions.php index a7235feb1e..9a00ae719b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/executionstories.php b/api/v1/entries/executionstories.php index 0a60efa402..df57bf5cbc 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package execution * @version 1 diff --git a/api/v1/entries/feedback.php b/api/v1/entries/feedback.php index fb81887249..05daaa3624 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/feedbackassignto.php b/api/v1/entries/feedbackassignto.php index 25d4ca9c72..2ec87bf1fd 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/feedbackclose.php b/api/v1/entries/feedbackclose.php index 277028b845..65f0f49554 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/feedbacks.php b/api/v1/entries/feedbacks.php index aad8778257..af4d515801 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/file.php b/api/v1/entries/file.php index 95645756d9..6c1b27e370 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/files.php b/api/v1/entries/files.php index 41ecdcd1c4..61ffcf16a0 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/gitlabwebhook.php b/api/v1/entries/gitlabwebhook.php index 57766664c4..bd016bbd07 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author xiawenlong * @package repo * @version 1 diff --git a/api/v1/entries/groups.php b/api/v1/entries/groups.php index 0989aa2e42..556a853b48 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/issue.php b/api/v1/entries/issue.php index 8593f307d2..9bf28b1fc1 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/issues.php b/api/v1/entries/issues.php index 0a210d375c..c8c8084917 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/langs.php b/api/v1/entries/langs.php index 38a69904ba..28abf28db6 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/meetings.php b/api/v1/entries/meetings.php index 4d66efc050..d1c3eabb35 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/modules.php b/api/v1/entries/modules.php index 67f5097e9b..7b28a00ed6 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/options.php b/api/v1/entries/options.php index c665f8caa8..beafd6f5ed 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/ping.php b/api/v1/entries/ping.php index 96a3132de1..bf4bff6cb0 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/product.php b/api/v1/entries/product.php index 67d8de598d..518936c737 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/productissue.php b/api/v1/entries/productissue.php index d40c0a2c7d..176a92ed7f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/productissues.php b/api/v1/entries/productissues.php index e97289608b..474a61c5c2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/productplan.php b/api/v1/entries/productplan.php index 74cae20ed6..342006755f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/productplanlinkbugs.php b/api/v1/entries/productplanlinkbugs.php index b2707d1c1a..fe19ed92f2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/productplanlinkstories.php b/api/v1/entries/productplanlinkstories.php index ce065eba6a..2d82f4fb74 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/productplans.php b/api/v1/entries/productplans.php index b0f20aa8b9..f8313c1683 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/productplanunlinkbugs.php b/api/v1/entries/productplanunlinkbugs.php index e728415a69..0bbbf4783c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/productplanunlinkstories.php b/api/v1/entries/productplanunlinkstories.php index 8ed3b47ec7..47ec3f6719 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/productprojects.php b/api/v1/entries/productprojects.php index 27da212ac7..b493ed3fcd 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/products.php b/api/v1/entries/products.php index 91d9fddae3..efce3d727f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/program.php b/api/v1/entries/program.php index 9df63a1df7..22a9469687 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/programs.php b/api/v1/entries/programs.php index 348ba5b861..1eccac99f3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/project.php b/api/v1/entries/project.php index c26e70fea1..6665b28b5e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/projectbugs.php b/api/v1/entries/projectbugs.php index 523ae9b2a5..b5c6660c5c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/projectcases.php b/api/v1/entries/projectcases.php index f65bc6c713..948300ff2a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/projectreleases.php b/api/v1/entries/projectreleases.php index a8aa679d60..21c9eb3b73 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/projects.php b/api/v1/entries/projects.php index 4143178945..53a8658c86 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/projectstories.php b/api/v1/entries/projectstories.php index 8204c2e819..893e059284 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package project * @version 1 diff --git a/api/v1/entries/release.php b/api/v1/entries/release.php index 706bfb89b1..e2215ecc9e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/releases.php b/api/v1/entries/releases.php index 732bc98ae4..5a451e1775 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/reports.php b/api/v1/entries/reports.php index 29d25f8671..4f7d14a273 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/reporules.php b/api/v1/entries/reporules.php index 1f8b33d4ac..eb363c7ef2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package entries * @version 1 diff --git a/api/v1/entries/repos.php b/api/v1/entries/repos.php index d8e8d8da6d..2260840373 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/risk.php b/api/v1/entries/risk.php index fed9f5dd47..d7148e7d60 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/risks.php b/api/v1/entries/risks.php index 789076d1fa..c0fb7f455a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/stakeholders.php b/api/v1/entries/stakeholders.php index f52e075570..75142bc510 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/stories.php b/api/v1/entries/stories.php index d83104dd7e..87128c60b8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/story.php b/api/v1/entries/story.php index 810b8dab12..b76c53c8d8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/storyactive.php b/api/v1/entries/storyactive.php index 81de31647e..ba2c1d7d7d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/storyassignto.php b/api/v1/entries/storyassignto.php index 819ee62995..e31a8d9353 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/storychange.php b/api/v1/entries/storychange.php index 1c773124f8..9e9b2fb7d8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/storyclose.php b/api/v1/entries/storyclose.php index 018598015a..7c81880bc8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/storyrecall.php b/api/v1/entries/storyrecall.php index c66f43de87..ae78775f91 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/storyrecordestimate.php b/api/v1/entries/storyrecordestimate.php index 0b59251a1b..42a65e75c2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/storyreview.php b/api/v1/entries/storyreview.php index 99b044bb03..b1c8f5d3ff 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/tabs.php b/api/v1/entries/tabs.php index f1dc209023..9078299d8c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/task.php b/api/v1/entries/task.php index ad738b1dc8..712041ace5 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/taskactive.php b/api/v1/entries/taskactive.php index 446624ae6c..33701a4fa7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/taskassignto.php b/api/v1/entries/taskassignto.php index 9b7eacbde0..7dcb9245a3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/taskbatchcreate.php b/api/v1/entries/taskbatchcreate.php index df808e24b9..a0a5f37c66 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/taskclose.php b/api/v1/entries/taskclose.php index e8fdf435c0..3767a36cb0 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/taskcomponent.php b/api/v1/entries/taskcomponent.php index e90896a41f..c81876be29 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/taskfinish.php b/api/v1/entries/taskfinish.php index fb79cef614..f51cdd7674 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/taskpause.php b/api/v1/entries/taskpause.php index 1118a94ee3..00930ed195 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/taskrecordestimate.php b/api/v1/entries/taskrecordestimate.php index a3f6acaca4..76dc04f077 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/tasks.php b/api/v1/entries/tasks.php index 1448547ec1..d48cd6c074 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/taskstart.php b/api/v1/entries/taskstart.php index 51d8e4788d..8f7827d95c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/testcase.php b/api/v1/entries/testcase.php index f2a7eb91fd..e880ad7b8c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/testcases.php b/api/v1/entries/testcases.php index 4393930741..11ed761d97 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/testresults.php b/api/v1/entries/testresults.php index d02d351cb1..f2fc03c669 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/testsuite.php b/api/v1/entries/testsuite.php index 8db677e838..e1a0ea31b4 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/testsuites.php b/api/v1/entries/testsuites.php index fa5cd826cf..da0799e2d2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/testtask.php b/api/v1/entries/testtask.php index 53efbe56ed..c4d80e76ea 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/testtasks.php b/api/v1/entries/testtasks.php index 74220d1890..81e2fb614c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/todo.php b/api/v1/entries/todo.php index 03f50b884d..1564f14a12 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/todoactivate.php b/api/v1/entries/todoactivate.php index 714ad3e0fc..6528650b15 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/todofinish.php b/api/v1/entries/todofinish.php index 103ce59856..d7ee7b9bad 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/todos.php b/api/v1/entries/todos.php index 6df31f9dfa..f4d3806fc2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/tokens.php b/api/v1/entries/tokens.php index 636e08826d..e330aa931d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/user.php b/api/v1/entries/user.php index 65ee9e0110..fef553d697 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/users.php b/api/v1/entries/users.php index 26a8305130..3e0a5bf543 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/views.php b/api/v1/entries/views.php index 8696e91c78..56d6c61643 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/zfile.php b/api/v1/entries/zfile.php index 26d414f07e..ddfb530149 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/zfilecontent.php b/api/v1/entries/zfilecontent.php index 13b622d097..64e6d4e7aa 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/zfolder.php b/api/v1/entries/zfolder.php index c6a105a173..bd4afc1a4b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/api/v1/entries/zfolders.php b/api/v1/entries/zfolders.php index 75fccf24b4..920dc6c8c2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package entries * @version 1 diff --git a/config/zentaopms.php b/config/zentaopms.php index e768482d7f..59e0828201 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) or AGPL +* @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 1e7bdfb205..0aba583577 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 a9ad236cb9..172e5999ee 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 992730e2d0..745ad6429e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 2e66ce0c79..74bc77783c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 19940e51b9..ce1966333a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 4938da88f8..ca9886c3d3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 0773805374..f4679b24d8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 64f1cedba6..8f2c6f2f93 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 62a9361a75..2768521583 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 48cc6682f4..dcaead759c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 bab86fd682..b9fc5931c4 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 92121418e5..95742d5095 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 a6b636a87b..7fcedc44be 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 e10ee0e190..b8c50dbe46 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 3df9f3de65..b2a5b6c85c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 60d4e0908a..fa7458cbc8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 a546a2a83e..aa8dad0c79 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 2bdd9e2b06..1d7ffeb7f7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 c2f259de95..5d01172418 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 4f221550e8..69fe4dc162 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 95bf8196af..f63754c67d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 fe9bfc9d08..83f05c9a0c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 a294ff798e..43ccdc72cf 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 0eeb64428b..024a951bf2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package API * @version $Id: api.class.php 4132 2013-01-18 02:30:05Z wwccss $ diff --git a/lib/date/date.class.php b/lib/date/date.class.php index 83f09e4de9..ffbbb9b28d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package Date * @version $Id: date.class.php 2605 2013-01-09 07:22:58Z wwccss $ diff --git a/lib/zdb/zdb.class.php b/lib/zdb/zdb.class.php index 9a2f5ce577..961a1ffc8b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package Zdb * @version $Id$ diff --git a/lib/zfile/zfile.class.php b/lib/zfile/zfile.class.php index 4b3210ee2c..8e24357a7a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package Zfile * @version $Id: zfile.class.php 2605 2013-01-09 07:22:58Z wwccss $ diff --git a/module/action/control.php b/module/action/control.php index 6b1c71c29c..4457c1d211 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package action * @version $Id$ diff --git a/module/action/lang/de.php b/module/action/lang/de.php index b2528f069b..0040fe54a3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 aeb6a0ca36..ed491d4f85 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package action * @version $Id: en.php 4729 2013-05-03 07:53:55Z chencongzhi520@gmail.com $ diff --git a/module/action/lang/fr.php b/module/action/lang/fr.php index 9b6a0e21a6..34663613e7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 c6ba8de779..642141b8c3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package action * @version $Id: zh-cn.php 4955 2013-07-02 01:47:21Z chencongzhi520@gmail.com $ diff --git a/module/action/lang/zh-tw.php b/module/action/lang/zh-tw.php index db85848dd6..9a66017d80 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package action * @version $Id: zh-tw.php 4955 2013-07-02 01:47:21Z chencongzhi520@gmail.com $ diff --git a/module/action/model.php b/module/action/model.php index cc47a63f9a..1864ec1aac 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package action * @version $Id: model.php 5028 2013-07-06 02:59:41Z wyd621@gmail.com $ diff --git a/module/action/view/trash.html.php b/module/action/view/trash.html.php index 9027be468e..64d8b60b42 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package action * @version $Id$ diff --git a/module/admin/control.php b/module/admin/control.php index 5c71d2aeb1..4292bc3a53 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package admin * @version $Id: control.php 4460 2013-02-26 02:28:02Z chencongzhi520@gmail.com $ diff --git a/module/admin/lang/de.php b/module/admin/lang/de.php index 72cf92511a..fe34cccd79 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package admin * @version $Id: en.php 4460 2013-02-26 02:28:02Z chencongzhi520@gmail.com $ diff --git a/module/admin/lang/en.php b/module/admin/lang/en.php index cae467c1c8..c7577bf48e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package admin * @version $Id: en.php 4460 2013-02-26 02:28:02Z chencongzhi520@gmail.com $ diff --git a/module/admin/lang/fr.php b/module/admin/lang/fr.php index 4bbb315837..1c6abffe8e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package admin * @version $Id: en.php 4460 2013-02-26 02:28:02Z chencongzhi520@gmail.com $ diff --git a/module/admin/lang/zh-cn.php b/module/admin/lang/zh-cn.php index fcfb4a5542..110a3be1d0 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package admin * @version $Id: zh-cn.php 4767 2013-05-05 06:10:13Z wwccss $ diff --git a/module/admin/lang/zh-tw.php b/module/admin/lang/zh-tw.php index ae0f49173f..457818eefd 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package admin * @version $Id: zh-tw.php 4767 2013-05-05 06:10:13Z wwccss $ diff --git a/module/admin/model.php b/module/admin/model.php index afb3cfe39c..1a6062e7f0 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package admin * @version $Id: model.php 5148 2013-07-16 01:31:08Z chencongzhi520@gmail.com $ diff --git a/module/admin/view/bind.html.php b/module/admin/view/bind.html.php index 6f574eacbe..020cb17563 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package admin * @version $Id: view.html.php 2568 2012-02-09 06:56:35Z shiyangyangwork@yahoo.cn $ diff --git a/module/admin/view/certifyztemail.html.php b/module/admin/view/certifyztemail.html.php index fd71720e84..e600300d24 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package admin * @version $Id$ diff --git a/module/admin/view/certifyztmobile.html.php b/module/admin/view/certifyztmobile.html.php index 5f28a4d007..4eabea33f0 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package admin * @version $Id$ diff --git a/module/admin/view/checkweak.html.php b/module/admin/view/checkweak.html.php index 9ffd967147..6c793818e1 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package admin * @version $Id$ diff --git a/module/admin/view/index.html.php b/module/admin/view/index.html.php index 801ec81385..2ac6cdc8a8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package admin * @version $Id: view.html.php 2568 2012-02-09 06:56:35Z shiyangyangwork@yahoo.cn $ diff --git a/module/admin/view/log.html.php b/module/admin/view/log.html.php index 6d59eb17fe..a8c59e2a46 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package admin * @version $Id$ diff --git a/module/admin/view/register.html.php b/module/admin/view/register.html.php index 20bb8649ff..1c028359be 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package admin * @version $Id: view.html.php 2568 2012-02-09 06:56:35Z shiyangyangwork@yahoo.cn $ diff --git a/module/admin/view/safe.html.php b/module/admin/view/safe.html.php index c3f4538055..258bc799a9 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package admin * @version $Id$ diff --git a/module/admin/view/sso.html.php b/module/admin/view/sso.html.php index ac78233c99..8b65eb2edf 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package admin * @version $Id$ diff --git a/module/admin/view/ztcompany.html.php b/module/admin/view/ztcompany.html.php index 2021369a70..ac963314b8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package admin * @version $Id$ diff --git a/module/api/control.php b/module/api/control.php index 96b8c60b72..19b1bfa7f1 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 bb64888b79..8bc87e574b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 6b97cdab41..bc93f58f88 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 7e1bb45d44..198d7e614f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package api * @version $Id: English.php 824 2010-05-02 15:32:06Z wwccss $ diff --git a/module/api/lang/zh-cn.php b/module/api/lang/zh-cn.php index 1d32eb3f39..33b9194d1b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package api * @version $Id: zh-cn.php 5129 2013-07-15 00:16:07Z zhujinyonging@gmail.com $ diff --git a/module/api/lang/zh-tw.php b/module/api/lang/zh-tw.php index 8c1731988b..f8c3aee086 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package api * @version $Id: zh-tw.php 5129 2013-07-15 00:16:07Z zhujinyonging@gmail.com $ diff --git a/module/api/model.php b/module/api/model.php index f55ce3335f..7ed1c45b05 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package api * @version $Id$ diff --git a/module/api/view/create.html.php b/module/api/view/create.html.php index 351fc15806..cd76e60bb9 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Jia Fu * @package doc * @version $Id: create.html.php 975 2010-07-29 03:30:25Z jajacn@126.com $ diff --git a/module/api/view/createlib.html.php b/module/api/view/createlib.html.php index 22cb76990b..1699aadaa2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Jia Fu * @package doc * @version $Id: createlib.html.php 975 2010-07-29 03:30:25Z jajacn@126.com $ diff --git a/module/api/view/createrelease.html.php b/module/api/view/createrelease.html.php index d1f148c5e5..b691c31f90 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Jia Fu * @package doc * @version $Id: createlib.html.php 975 2010-07-29 03:30:25Z jajacn@126.com $ diff --git a/module/api/view/createstruct.html.php b/module/api/view/createstruct.html.php index b129371264..119ac488c9 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 5ec26d0c80..802be2454a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Jia Fu * @package doc * @version $Id: create.html.php 975 2010-07-29 03:30:25Z jajacn@126.com $ diff --git a/module/api/view/editlib.html.php b/module/api/view/editlib.html.php index 74984efe28..bad5910b99 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Jia Fu * @package doc * @version $Id: createlib.html.php 975 2010-07-29 03:30:25Z jajacn@126.com $ diff --git a/module/api/view/editstruct.html.php b/module/api/view/editstruct.html.php index 7d440bbe9f..86228c3fbe 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 1032b8b5a3..0891b0228d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package doc * @version $Id$ diff --git a/module/api/view/releases.html.php b/module/api/view/releases.html.php index c9f37fc80b..8514dc3f13 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Thanatos * @package doc * @version $Id$ diff --git a/module/api/view/struct.html.php b/module/api/view/struct.html.php index fa190f1d82..dc4d3bb1cd 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Thanatos * @package doc * @version $Id$ diff --git a/module/automation/control.php b/module/automation/control.php index 56c142f8c7..54324120a4 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 e7a8abfc5a..5843ff4239 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 0de14eb45f..b8e53bdb02 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 04bb48fee0..863e93b8cd 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 d3ef0b0bfd..c7d7c9306f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 f9a33394be..236065a73e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 425979221b..e7ab01797e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package backup * @version $Id$ diff --git a/module/backup/model.php b/module/backup/model.php index ea9845d7e1..f6d3432609 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package backup * @version $Id$ diff --git a/module/backup/view/index.html.php b/module/backup/view/index.html.php index d4cf7432dc..4a642163ff 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package backup * @version $Id: view.html.php 2568 2012-02-09 06:56:35Z shiyangyangwork@yahoo.cn $ diff --git a/module/backup/view/setting.html.php b/module/backup/view/setting.html.php index ce444509f7..51a396a289 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package backup * @version $Id$ diff --git a/module/block/config.php b/module/block/config.php index d7e67a8018..1f5c129f0c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/control.php b/module/block/control.php index 69be9d2132..7cf9174997 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/lang/de.php b/module/block/lang/de.php index bcdce456f8..f235b97ef0 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/lang/en.php b/module/block/lang/en.php index 2305bbaf89..0397b4bb95 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/lang/fr.php b/module/block/lang/fr.php index 01dce64926..e09ccb64e9 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/lang/vi.php b/module/block/lang/vi.php index 3e8b03852b..f707316e13 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/lang/zh-cn.php b/module/block/lang/zh-cn.php index c4e2c7acf3..860e6e794a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/lang/zh-tw.php b/module/block/lang/zh-tw.php index b35995f1d0..d951f32b97 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/model.php b/module/block/model.php index f33c92f9d2..62fe91b209 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/admin.html.php b/module/block/view/admin.html.php index 4cdc25de43..766398cd3e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/bugblock.html.php b/module/block/view/bugblock.html.php index dfe1f767fc..651437cc96 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/buildblock.html.php b/module/block/view/buildblock.html.php index 99d2b50d47..3d44583e07 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/caseblock.html.php b/module/block/view/caseblock.html.php index 71422061d2..0aa2982753 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/dashboard.html.php b/module/block/view/dashboard.html.php index f2e77309ea..9746ce22e8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/executionblock.html.php b/module/block/view/executionblock.html.php index c181fb1931..c85a231180 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/executionoverviewblock.html.php b/module/block/view/executionoverviewblock.html.php index cdb66b3ecf..27a53c7423 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Tingting Dai * @package block * @version $Id$ diff --git a/module/block/view/listblock.html.php b/module/block/view/listblock.html.php index 0504b4a937..ffdec20f5a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/main.html.php b/module/block/view/main.html.php index 2d53abdaad..d90a21d363 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/overviewblock.html.php b/module/block/view/overviewblock.html.php index 2b80b15286..dbe26251c2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package block * @version $Id$ diff --git a/module/block/view/planblock.html.php b/module/block/view/planblock.html.php index 26e4448036..b5aa67d35f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/printassigntomeblock.html.php b/module/block/view/printassigntomeblock.html.php index 6802998e0e..af7ebb72b0 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/productblock.html.php b/module/block/view/productblock.html.php index 8d37809c52..3f8a4ee56a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/productoverviewblock.html.php b/module/block/view/productoverviewblock.html.php index bef6b612dd..09cc928472 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package block * @version $Id$ diff --git a/module/block/view/productstatisticblock.html.php b/module/block/view/productstatisticblock.html.php index 489322b648..8da697047a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package block * @version $Id$ diff --git a/module/block/view/publicform.html.php b/module/block/view/publicform.html.php index 561657089d..41e34f2a49 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/qaoverviewblock.html.php b/module/block/view/qaoverviewblock.html.php index e165d2fc18..ed56235152 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Tingting Dai * @package block * @version $Id$ diff --git a/module/block/view/releaseblock.html.php b/module/block/view/releaseblock.html.php index 9a0de1a672..8711281d04 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/requirementblock.html.php b/module/block/view/requirementblock.html.php index 9f7b2edcd1..ff10aef7f1 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/scrumlistblock.html.php b/module/block/view/scrumlistblock.html.php index 693b90dc73..b942bbc23a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/scrumoverviewblock.html.php b/module/block/view/scrumoverviewblock.html.php index ad0373969e..a58d28b896 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/scrumproductblock.html.php b/module/block/view/scrumproductblock.html.php index 46e2c1cf21..40b842fbe7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/scrumroadmapblock.html.php b/module/block/view/scrumroadmapblock.html.php index b1d002b938..f5bdfab4bc 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 cd6b6c0005..4f28fd1c7f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/set.html.php b/module/block/view/set.html.php index c5eec66831..d3eb313fff 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/setmodule.html.php b/module/block/view/setmodule.html.php index ae8a7d7bdb..6a5f75f892 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 f83d79b16a..32b55aa980 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/statisticblock.html.php b/module/block/view/statisticblock.html.php index 5dda0afd56..d1e4befacc 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package block * @version $Id$ diff --git a/module/block/view/storyblock.html.php b/module/block/view/storyblock.html.php index 8984eef098..dcdf064b87 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/taskblock.html.php b/module/block/view/taskblock.html.php index e3ec3e39c9..795761def4 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/testtaskblock.html.php b/module/block/view/testtaskblock.html.php index 77a2812618..bffb631682 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/todoblock.html.php b/module/block/view/todoblock.html.php index 34752568ad..5cbf385323 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/todolist.html.php b/module/block/view/todolist.html.php index 798074dd94..13ab4544d2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/block/view/welcome.html.php b/module/block/view/welcome.html.php index ae044e4beb..c7735e2aff 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package block * @version $Id$ diff --git a/module/branch/control.php b/module/branch/control.php index a1b60626b0..b42ee63b0c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package branch * @version $Id$ diff --git a/module/branch/model.php b/module/branch/model.php index dfee13c1ff..dbf7fac873 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package branch * @version $Id$ diff --git a/module/branch/view/batchedit.html.php b/module/branch/view/batchedit.html.php index 039956ddd6..e293c9ce9a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 4f2a1bdd00..cc68410c7f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Qiyu Xie * @package branch * @version $Id$ diff --git a/module/branch/view/edit.html.php b/module/branch/view/edit.html.php index e4c551bb69..c045fd6384 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Qiyu Xie * @package branch * @version $Id$ diff --git a/module/branch/view/manage.html.php b/module/branch/view/manage.html.php index b35e75fbfe..749c01b408 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Qiyu Xie * @package branch * @version $Id$ diff --git a/module/bug/control.php b/module/bug/control.php index 86b8fe8e4a..963aa527e2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package bug * @version $Id: control.php 5107 2013-07-12 01:46:12Z chencongzhi520@gmail.com $ diff --git a/module/bug/lang/de.php b/module/bug/lang/de.php index e81d986012..e8e26ed7e3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 2eb571c3cc..b1cba31e03 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 46b28c5293..f0656367b8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 1152d37730..c77c47c11f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package bug * @version $Id: zh-cn.php 4536 2013-03-02 13:39:37Z wwccss $ diff --git a/module/bug/lang/zh-tw.php b/module/bug/lang/zh-tw.php index 94c028a058..9ac6af81b9 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package bug * @version $Id: zh-tw.php 4536 2013-03-02 13:39:37Z wwccss $ diff --git a/module/bug/model.php b/module/bug/model.php index 1beea4755b..49427c5fa2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package bug * @version $Id: model.php 5079 2013-07-10 00:44:34Z chencongzhi520@gmail.com $ diff --git a/module/bug/view/activate.html.php b/module/bug/view/activate.html.php index e511362d73..e2f5fce4da 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package bug * @version $Id: activate.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/bug/view/assignto.html.php b/module/bug/view/assignto.html.php index 5ee126fa96..32c73a6907 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Jia Fu * @package task * @version $Id: complete.html.php 935 2010-07-06 07:49:24Z jajacn@126.com $ diff --git a/module/bug/view/batchactivate.html.php b/module/bug/view/batchactivate.html.php index 0a2331d82e..fbf496252a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package bug * @version $Id$ diff --git a/module/bug/view/batchcreate.html.php b/module/bug/view/batchcreate.html.php index 2d1e76e151..c8972d9c1b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yangyang Shi * @package story * @version $Id$ diff --git a/module/bug/view/batchedit.html.php b/module/bug/view/batchedit.html.php index fd93758fac..d2d2a25264 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package bug * @version $Id$ diff --git a/module/bug/view/browse.html.php b/module/bug/view/browse.html.php index 87cd8ca1e3..1088484bd1 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package bug * @version $Id: browse.html.php 5102 2013-07-12 00:59:54Z chencongzhi520@gmail.com $ diff --git a/module/bug/view/close.html.php b/module/bug/view/close.html.php index 66d496959b..0d48c90ce8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package bug * @version $Id: close.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/bug/view/confirmbug.html.php b/module/bug/view/confirmbug.html.php index 48f3c8cb17..24bdf535d4 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package bug * @version $Id: resolve.html.php 1914 2011-06-24 10:11:25Z yidong@cnezsoft.com $ diff --git a/module/bug/view/create.html.php b/module/bug/view/create.html.php index f5c9c27df0..bbe93e1786 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package bug * @version $Id: create.html.php 4903 2013-06-26 05:32:59Z wyd621@gmail.com $ diff --git a/module/bug/view/edit.html.php b/module/bug/view/edit.html.php index 0cc74022e8..e3ad814810 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package bug * @version $Id: edit.html.php 4259 2013-01-24 05:49:40Z wyd621@gmail.com $ diff --git a/module/bug/view/export.html.php b/module/bug/view/export.html.php index 7051848163..8e9097039f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package task * @version $Id$ diff --git a/module/bug/view/linkbugs.html.php b/module/bug/view/linkbugs.html.php index 686ac00815..6f883c20ae 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 3dd047639f..2fab4d15d6 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package bug * @version $Id: report.html.php 4657 2013-04-17 02:01:26Z chencongzhi520@gmail.com $ diff --git a/module/bug/view/resolve.html.php b/module/bug/view/resolve.html.php index 8c3253ac4f..e665c4c250 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package bug * @version $Id: resolve.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/bug/view/sendmail.html.php b/module/bug/view/sendmail.html.php index 5be4036052..cd1c937ee2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package bug * @version $Id: sendmail.html.php 4626 2013-04-10 05:34:36Z chencongzhi520@gmail.com $ diff --git a/module/bug/view/view.html.php b/module/bug/view/view.html.php index 9b792b497d..d76011e701 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package bug * @version $Id: view.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/build/control.php b/module/build/control.php index 33cdbc325d..9d2d1539f6 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package build * @version $Id: control.php 4992 2013-07-03 07:21:59Z chencongzhi520@gmail.com $ diff --git a/module/build/lang/de.php b/module/build/lang/de.php index 3849fc2e15..c419e1a405 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 370942ad00..79cd2f6480 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 4cae7199ca..5de93577db 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package build * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/build/lang/zh-cn.php b/module/build/lang/zh-cn.php index b2d9b21a4e..c45863af1a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package build * @version $Id: zh-cn.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/build/lang/zh-tw.php b/module/build/lang/zh-tw.php index ad7905e57b..55b8b0934e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package build * @version $Id: zh-tw.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/build/model.php b/module/build/model.php index cc0eeeb631..1eb43db7ef 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package build * @version $Id: model.php 4970 2013-07-02 05:58:11Z wyd621@gmail.com $ diff --git a/module/build/view/create.html.php b/module/build/view/create.html.php index aaa0bf0a44..c080e0d04e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package build * @version $Id: create.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/build/view/edit.html.php b/module/build/view/edit.html.php index 4b75bde857..fa0d420eea 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package build * @version $Id: edit.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/build/view/linkbug.html.php b/module/build/view/linkbug.html.php index 43a1df24b1..280121a0ae 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package build * @version $Id: linkbug.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/build/view/linkstory.html.php b/module/build/view/linkstory.html.php index bb7ed5b585..560807515e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package build * @version $Id: linkstory.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/build/view/view.html.php b/module/build/view/view.html.php index 526a1bba21..00bf20a69a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package build * @version $Id: view.html.php 4386 2013-02-19 07:37:45Z chencongzhi520@gmail.com $ diff --git a/module/caselib/control.php b/module/caselib/control.php index ba31de3061..d69393571a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 be54ca263a..79dcbe057b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 1c266b02e6..652875e151 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 a65a9b162c..ff7c33264c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 13c162b35e..e54c946d4e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 d4e0ef7f93..e0043a96a7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 d24373e174..54b4a8bb71 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 0f2ef328e2..2f8d276ae8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package caselib * @version $Id$ diff --git a/module/caselib/view/browse.html.php b/module/caselib/view/browse.html.php index e0b500b20d..a148c5d427 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 4a0b1de0ed..27d3f510e0 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 6780836746..1dcaed2fc1 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 c2b322b5a7..62d804818f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 ec9a207a59..6d8dac2186 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 ddcf0b0c03..04066dbf69 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 6c36b37718..0acb7d7bfa 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 4ef7491350..13dc8ac023 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: en.php 5116 2013-07-12 06:37:48Z chencongzhi520@gmail.com $ diff --git a/module/common/lang/fr.php b/module/common/lang/fr.php index 1d685d1fcc..f1cecafc2f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 c4b925f4b8..48f7cd9b05 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: zh-cn.php 5116 2013-07-12 06:37:48Z chencongzhi520@gmail.com $ diff --git a/module/common/lang/zh-tw.php b/module/common/lang/zh-tw.php index bd2f32e755..9e94116e75 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: zh-tw.php 5116 2013-07-12 06:37:48Z chencongzhi520@gmail.com $ diff --git a/module/common/model.php b/module/common/model.php index 018212885b..54a3c34a61 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package common * @version $Id$ diff --git a/module/common/view/customfield.html.php b/module/common/view/customfield.html.php index e9ef5eec1c..a1f24662b6 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package common * @version $Id$ diff --git a/module/company/control.php b/module/company/control.php index b9378fa0dd..346fb6865c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package company * @version $Id: control.php 5100 2013-07-12 00:25:23Z zhujinyonging@gmail.com $ diff --git a/module/company/lang/de.php b/module/company/lang/de.php index a29aa6197d..6748c728b3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package company * @version $Id: en.php 4714 2013-05-02 08:10:58Z chencongzhi520@gmail.com $ diff --git a/module/company/lang/en.php b/module/company/lang/en.php index dcfbeac13e..5f2f65a55b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package company * @version $Id: en.php 4714 2013-05-02 08:10:58Z chencongzhi520@gmail.com $ diff --git a/module/company/lang/fr.php b/module/company/lang/fr.php index 2eace20330..762861ce6f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package company * @version $Id: en.php 4714 2013-05-02 08:10:58Z chencongzhi520@gmail.com $ diff --git a/module/company/lang/zh-cn.php b/module/company/lang/zh-cn.php index 784d650fb9..6dd35e9ee4 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package company * @version $Id: zh-cn.php 4714 2013-05-02 08:10:58Z chencongzhi520@gmail.com $ diff --git a/module/company/lang/zh-tw.php b/module/company/lang/zh-tw.php index 1c1e9d9022..b71c23c797 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package company * @version $Id: zh-tw.php 4714 2013-05-02 08:10:58Z chencongzhi520@gmail.com $ diff --git a/module/company/model.php b/module/company/model.php index e67c14b1f3..4c98aa2076 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package company * @version $Id: model.php 5086 2013-07-10 02:25:22Z wyd621@gmail.com $ diff --git a/module/company/view/browse.html.php b/module/company/view/browse.html.php index 88062666a7..93faef8277 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id: browse.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/company/view/dynamic.html.php b/module/company/view/dynamic.html.php index 3f46e9720d..d61d57213f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package dashboard * @version $Id: action->dynamic.html.php 1477 2011-03-01 15:25:50Z wwccss $ diff --git a/module/company/view/edit.html.php b/module/company/view/edit.html.php index 3a399305eb..6f518c98d9 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package company * @version $Id: edit.html.php 4713 2013-05-02 08:04:38Z chencongzhi520@gmail.com $ diff --git a/module/company/view/view.html.php b/module/company/view/view.html.php index d03ca2d0a5..7d1364c06c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package company * @version $Id: edit.html.php 4488 2013-02-27 02:54:49Z chencongzhi520@gmail.com $ diff --git a/module/compile/control.php b/module/compile/control.php index 15afc7ca19..8c37b3a7b6 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package compile * @version $Id$ diff --git a/module/compile/model.php b/module/compile/model.php index 2a1143e964..6cb2376f93 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package compile * @version $Id$ diff --git a/module/compile/view/browse.html.php b/module/compile/view/browse.html.php index ed6855de45..0ddae35387 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chenqi * @package compile * @version $Id$ diff --git a/module/compile/view/logs.html.php b/module/compile/view/logs.html.php index 510eca38a7..52655ee355 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chenqi * @package compile * @version $Id$ diff --git a/module/convert/control.php b/module/convert/control.php index b8f5f87c6f..b1c718595d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package convert * @version $Id: control.php 4976 2013-07-02 08:15:31Z wyd621@gmail.com $ diff --git a/module/convert/converter/bugfree.php b/module/convert/converter/bugfree.php index 305e7c7fbc..7247ff25b4 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package convert * @version $Id: bugfree.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/converter/bugfree1.php b/module/convert/converter/bugfree1.php index 3672b36f98..4eca8c6e35 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package convert * @version $Id: bugfree1.php 5028 2013-07-06 02:59:41Z wyd621@gmail.com $ diff --git a/module/convert/converter/bugfree2.php b/module/convert/converter/bugfree2.php index 2e33fdd31f..899a2139bc 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package convert * @version $Id: bugfree2.php 5028 2013-07-06 02:59:41Z wyd621@gmail.com $ diff --git a/module/convert/converter/redmine.php b/module/convert/converter/redmine.php index ab067c18d1..94f2dd1b62 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yangyang Shi * @package convert * @version $Id $ diff --git a/module/convert/converter/redmine1.1.php b/module/convert/converter/redmine1.1.php index 284aa213c6..6c2962f9b8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yangyang Shi * @package convert * @version $Id $ diff --git a/module/convert/lang/de.php b/module/convert/lang/de.php index bba1dff3b0..2e425f19ac 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 6d269275d1..61dd51bee7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 a82c1a6867..6bd0ff5491 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package convert * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/lang/zh-cn.php b/module/convert/lang/zh-cn.php index fa4d6d7168..7194aefbb4 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package convert * @version $Id: zh-cn.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/lang/zh-tw.php b/module/convert/lang/zh-tw.php index ba3a4ccf7b..125b011207 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package convert * @version $Id: zh-tw.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/model.php b/module/convert/model.php index ba6deea7f0..8ad71afe3d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package convert * @version $Id: model.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/view/checkconfig.html.php b/module/convert/view/checkconfig.html.php index add4ac222b..b48d5d81cc 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package convert * @version $Id: checkconfig.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/view/convertjira.html.php b/module/convert/view/convertjira.html.php index 2146006502..777c9c4300 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package convert * @version $Id: execute.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/view/execute.html.php b/module/convert/view/execute.html.php index 2ba747ec03..7add3b83a2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package convert * @version $Id: execute.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/view/importnotice.html.php b/module/convert/view/importnotice.html.php index 3f85c4157e..4ca8c268ea 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package convert * @version $Id: execute.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/view/index.html.php b/module/convert/view/index.html.php index 4dd7ac1ce6..a3ceef8d5e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: index.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/view/initjirauser.html.php b/module/convert/view/initjirauser.html.php index 5472ed801b..fc256d97f7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package user * @version $Id: create.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/convert/view/mapjira2zentao.html.php b/module/convert/view/mapjira2zentao.html.php index 2bffb91e42..4de55bd426 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package convert * @version $Id: execute.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/view/selectsource.html.php b/module/convert/view/selectsource.html.php index 16e2317a78..398a399226 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package convert * @version $Id: selectsource.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/convert/view/setconfig.html.php b/module/convert/view/setconfig.html.php index f32d8d4ab6..915ea05024 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 5c128aa519..7b863918b3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package cron * @version $Id$ diff --git a/module/cron/model.php b/module/cron/model.php index 05a3ecc1e6..ef1ec7a580 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package cron * @version $Id$ diff --git a/module/cron/view/create.html.php b/module/cron/view/create.html.php index 1468cf3a73..d499fd283f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package cron * @version $Id$ diff --git a/module/cron/view/edit.html.php b/module/cron/view/edit.html.php index 2503315212..3ebcd0dc73 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package cron * @version $Id$ diff --git a/module/cron/view/index.html.php b/module/cron/view/index.html.php index 85a702693c..494f5cc6d8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package cron * @version $Id$ diff --git a/module/cron/view/openprocess.html.php b/module/cron/view/openprocess.html.php index dd31c43424..eccbe946d2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package cron * @version $Id$ diff --git a/module/custom/control.php b/module/custom/control.php index 6408bda205..46ac68f510 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package custom * @version $Id$ diff --git a/module/custom/model.php b/module/custom/model.php index ee0142728f..2ff04d5438 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package custom * @version $Id$ diff --git a/module/custom/view/ajaxmenu.html.php b/module/custom/view/ajaxmenu.html.php index 11238d2506..08a7bf54de 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 0e76130f29..5327fdae85 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 f9dd8f1692..3625970fc1 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 d0d855bd29..24d7b5a58c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Liyuchun * @package custom * @version $Id$ diff --git a/module/custom/view/flow.html.php b/module/custom/view/flow.html.php index 2065b7f7bf..fbac50f2db 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 686e176bd0..495bef43ea 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Liyuchun * @package custom * @version $Id$ diff --git a/module/custom/view/mode.html.php b/module/custom/view/mode.html.php index fc073c1adb..2d480ed65c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Tingting Dai * @package custom * @version $Id$ diff --git a/module/custom/view/product.html.php b/module/custom/view/product.html.php index 981e1bf433..bcdd452301 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Liyuchun * @package custom * @version $Id$ diff --git a/module/custom/view/required.html.php b/module/custom/view/required.html.php index ed872b61b5..4ed45dbd28 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package custom * @version $Id$ diff --git a/module/custom/view/score.html.php b/module/custom/view/score.html.php index b6e374a85e..5f44354bf4 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Memory * @package custom * @version $Id$ diff --git a/module/custom/view/set.html.php b/module/custom/view/set.html.php index 2f3732a4a4..b13a894ab6 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package custom * @version $Id$ diff --git a/module/custom/view/setstoryconcept.html.php b/module/custom/view/setstoryconcept.html.php index 450c583bb5..c9f61605c2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 4c840fc413..a7669e26da 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package custom * @version $Id$ diff --git a/module/custom/view/working.html.php b/module/custom/view/working.html.php index 5be842e86d..888e38736f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Tingting Dai * @package custom * @version $Id$ diff --git a/module/dept/control.php b/module/dept/control.php index b317ad6395..5a9be94276 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 d491b26200..0c0ccdf366 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 dcb998c2be..92d050e15e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 cf16e757d6..c5ee0332a8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package dept * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/dept/lang/zh-cn.php b/module/dept/lang/zh-cn.php index 957d6df880..a3f4089e90 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package dept * @version $Id: zh-cn.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/dept/lang/zh-tw.php b/module/dept/lang/zh-tw.php index d885bd7d8f..ffa1e9266b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package dept * @version $Id: zh-tw.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/dept/model.php b/module/dept/model.php index a25e9931c8..f85ae68a9c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package dept * @version $Id: model.php 4210 2013-01-22 01:06:12Z zhujinyonging@gmail.com $ diff --git a/module/dept/view/browse.html.php b/module/dept/view/browse.html.php index bb070b8365..ed75260e41 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package dept * @version $Id: browse.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/dept/view/edit.html.php b/module/dept/view/edit.html.php index e04af7df6f..68c8938578 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package dept * @version $Id: edit.html.php 4795 2013-06-04 05:59:58Z zhujinyonging@gmail.com $ diff --git a/module/design/control.php b/module/design/control.php index 68001b7b4e..728eb2b4d6 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 59f2f8e778..7641a2c3fd 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 a65a2942f3..595098ea3f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 59f2f8e778..7641a2c3fd 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 59f2f8e778..7641a2c3fd 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 3c88aabcef..d96bd18f15 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 39f44025f9..a18dd3a00d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 883e2e75af..05ecc5863f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 7e4b67a7e1..37b343a0ed 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 fb95d4f73a..5925f29608 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 7d36ba2577..700a2b847e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 73ca29d0e7..42f099d79d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 d9ef43d25c..42d3108719 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 b41bc697f8..d6b5517f4a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 cd1df33c21..777eca48e3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 f56fceca8e..b9fee4e330 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 267b44f946..c9d90de34e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package dev * @version $Id$ diff --git a/module/dev/view/translate.html.php b/module/dev/view/translate.html.php index 218f72d663..2cb899bf20 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package dev * @version $Id$ diff --git a/module/doc/control.php b/module/doc/control.php index 7beb174523..89c931c78e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 22b87d8319..74b59592aa 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 6c35ee430f..c615e7a983 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 94df7cd163..3af3173408 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package doc * @version $Id: en.php 824 2010-05-02 15:32:06Z wwccss $ diff --git a/module/doc/lang/zh-cn.php b/module/doc/lang/zh-cn.php index 5168e3a7e0..c3bbff2e37 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package doc * @version $Id: zh-cn.php 824 2010-05-02 15:32:06Z wwccss $ diff --git a/module/doc/lang/zh-tw.php b/module/doc/lang/zh-tw.php index 66cd39fd15..e70d72133c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package doc * @version $Id: zh-tw.php 824 2010-05-02 15:32:06Z wwccss $ diff --git a/module/doc/model.php b/module/doc/model.php index 03894601b2..a225a3f2ee 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 0a0bc18995..9b7209c4de 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package doc * @version $Id$ diff --git a/module/doc/view/browse.html.php b/module/doc/view/browse.html.php index 0ff02125cb..1d09883c89 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package lib * @version $Id: browse.html.php 958 2010-07-22 08:09:42Z wwccss $ diff --git a/module/doc/view/create.html.php b/module/doc/view/create.html.php index 920acc1c8e..6be6f00aaa 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Jia Fu * @package doc * @version $Id: create.html.php 975 2010-07-29 03:30:25Z jajacn@126.com $ diff --git a/module/doc/view/createlib.html.php b/module/doc/view/createlib.html.php index ca1cc0d3be..0c78b22518 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Jia Fu * @package doc * @version $Id: createlib.html.php 975 2010-07-29 03:30:25Z jajacn@126.com $ diff --git a/module/doc/view/edit.html.php b/module/doc/view/edit.html.php index 988f681b75..b9c8706261 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Jia Fu * @package doc * @version $Id: edit.html.php 975 2010-07-29 03:30:25Z jajacn@126.com $ diff --git a/module/doc/view/editlib.html.php b/module/doc/view/editlib.html.php index 52ef90a3f2..67fb26cb1e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Jia Fu * @package doc * @version $Id: editlib.html.php 975 2010-07-29 03:30:25Z jajacn@126.com $ diff --git a/module/doc/view/index.html.php b/module/doc/view/index.html.php index 3905110240..293176cd59 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package doc * @version $Id$ diff --git a/module/doc/view/objectlibs.html.php b/module/doc/view/objectlibs.html.php index 14c08100d1..2a0be66c0e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package doc * @version $Id$ diff --git a/module/doc/view/selectlibtype.html.php b/module/doc/view/selectlibtype.html.php index d6f9d31277..8c92315749 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 eddb32436f..179eb93b68 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 40ed7c6bd0..df7335f0bd 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package doc * @version $Id$ diff --git a/module/doc/view/tablecontents.html.php b/module/doc/view/tablecontents.html.php index 22bb337328..e7941a936b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Fangzhou Hu * @package doc * @version $Id$ diff --git a/module/doc/view/view.html.php b/module/doc/view/view.html.php index 51de0a8dba..d83656bac5 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Jia Fu * @package doc * @version $Id: view.html.php 975 2010-07-29 03:30:25Z jajacn@126.com $ diff --git a/module/entry/control.php b/module/entry/control.php index 8a8866ec99..261ebf01a1 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package entry * @version $Id$ diff --git a/module/entry/model.php b/module/entry/model.php index ede9fd1cb9..a5fe920606 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package entry * @version $Id$ diff --git a/module/entry/view/browse.html.php b/module/entry/view/browse.html.php index 253d44329b..62bdc8474c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package entry * @version $Id$ diff --git a/module/entry/view/create.html.php b/module/entry/view/create.html.php index 1889c2ae0e..aed33df256 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package entry * @version $Id$ diff --git a/module/entry/view/edit.html.php b/module/entry/view/edit.html.php index 18bd0c4e48..67db9213aa 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package entry * @version $Id$ diff --git a/module/entry/view/header.html.php b/module/entry/view/header.html.php index 546ccbcf8b..e98ee5180c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package entry * @version $Id$ diff --git a/module/entry/view/log.html.php b/module/entry/view/log.html.php index 746219d9af..d2d02d535b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package entry * @version $Id$ diff --git a/module/execution/lang/de.php b/module/execution/lang/de.php index af7b7a1916..0d8f66017e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 2b60d8bcc5..a4b945d24e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 abab610727..04bbb59e42 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 05de487dd9..66c76615ea 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 60a2825b04..17bf814a6f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 1e9a657952..2e19ffa8a4 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 c393a22fef..c038087564 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 f5ebc9761a..61f28e2d5c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package execution * @version $Id$ diff --git a/module/execution/view/all.html.php b/module/execution/view/all.html.php index 9527047390..8625ccaa59 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 ff8ae7e6de..28171c1ef2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 51b1ff1411..16240a1292 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 7d0852e272..b8287370df 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 b3a070293d..a1d2908d99 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 656df44408..189005dac5 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 648efa27f1..3154e7649f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 fed828e89b..ad142d687e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 cd72d9d63a..9d0fed3dd5 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id$ diff --git a/module/execution/view/dynamic.html.php b/module/execution/view/dynamic.html.php index 726119788e..2ec2c6d673 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 cdf0c5b3c5..b8d706294c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 17c70d5f72..e03c617317 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package execution * @version $Id$ diff --git a/module/execution/view/fixfirst.html.php b/module/execution/view/fixfirst.html.php index 94c1e84580..9781c5539f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package execution * @version $Id$ diff --git a/module/execution/view/grouptask.html.php b/module/execution/view/grouptask.html.php index 1f3b0e9c65..9eeef59025 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 c614a421af..698f9985ff 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yangyang Shi * @package task * @version $Id$ diff --git a/module/execution/view/importtask.html.php b/module/execution/view/importtask.html.php index 64d0e78230..6224baf7bb 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 0745d09e89..91f8f2fbb5 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: index.html.php 5094 2013-07-10 08:46:15Z chencongzhi520@gmail.com $ diff --git a/module/execution/view/kanban.html.php b/module/execution/view/kanban.html.php index ebc5d9c238..ea835a478e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 284a5d380d..a95462dfd7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 a2e8243761..a98bedd4d3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 2b91869c02..dbe1f2f567 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 35153b958c..2918d31257 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 c3299692e1..d66e74a982 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 1648f2668d..65059f64be 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 f9816af146..30e5fa3610 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Liyuchun * @package execution * @version $Id diff --git a/module/execution/view/suspend.html.php b/module/execution/view/suspend.html.php index 436266f76f..b9b4fcef09 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 3e8bfdad69..f254069896 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 f59e38737d..ef263f7bdb 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 446952589e..4839f42dd1 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testtask * @version $Id: browse.html.php 1914 2011-06-24 10:11:25Z yidong@cnezsoft.com $ diff --git a/module/execution/view/tree.html.php b/module/execution/view/tree.html.php index 6daf00bab6..0b5b785d42 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 b485cf9e1a..70661107d5 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 50a29213c1..07ca32b9c7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/lang/de.php b/module/extension/lang/de.php index f3cf411b88..30e77a3971 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/lang/en.php b/module/extension/lang/en.php index cab7c355d6..4d273184cf 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/lang/fr.php b/module/extension/lang/fr.php index e21b4a6084..4b2ef3778a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/lang/zh-cn.php b/module/extension/lang/zh-cn.php index 2a59aee166..cfdc6b926c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/lang/zh-tw.php b/module/extension/lang/zh-tw.php index 551690cb27..8992c52b3c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/model.php b/module/extension/model.php index 89b67c6a89..d192337514 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/activate.html.php b/module/extension/view/activate.html.php index be2785f6cd..e7da6800db 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/browse.html.php b/module/extension/view/browse.html.php index d9247e1694..6c6b055fab 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/checkscore.html.php b/module/extension/view/checkscore.html.php index 2afe287f69..6a2e47eb54 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/deactivate.html.php b/module/extension/view/deactivate.html.php index dc6902979c..4c816a4735 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/erase.html.php b/module/extension/view/erase.html.php index debe46c95a..5b2c9c73ec 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/install.html.php b/module/extension/view/install.html.php index 9564e0575b..e1753ab787 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/obtain.html.php b/module/extension/view/obtain.html.php index 62bb31ac34..075b57a175 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/safe.html.php b/module/extension/view/safe.html.php index 3792558c90..bef8809337 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/structure.html.php b/module/extension/view/structure.html.php index a93ff27c94..32ed442fcc 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yangyang Shi * @package extension * @version $Id$ diff --git a/module/extension/view/uninstall.html.php b/module/extension/view/uninstall.html.php index 0e6517a29b..590b0643ae 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/upload.html.php b/module/extension/view/upload.html.php index 6ef7f302af..1307b14e2a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/extension/view/waring.htm.php b/module/extension/view/waring.htm.php index 37be01e098..fafce51ec8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package extension * @version $Id$ diff --git a/module/file/control.php b/module/file/control.php index 84d94381a5..442cf467f8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 c626585101..dd63263190 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 3b9edcb037..a4f66e307c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 b5f13d4585..b1e5b6e8b3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package file * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/file/lang/zh-cn.php b/module/file/lang/zh-cn.php index 390413b4c3..f40ee47be0 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package file * @version $Id: zh-cn.php 4630 2013-04-10 05:54:08Z chencongzhi520@gmail.com $ diff --git a/module/file/lang/zh-tw.php b/module/file/lang/zh-tw.php index c62d24d5a4..2cac6c63f9 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package file * @version $Id: zh-tw.php 4630 2013-04-10 05:54:08Z chencongzhi520@gmail.com $ diff --git a/module/file/model.php b/module/file/model.php index f237503b87..378bfbf5a5 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package file * @version $Id: model.php 4976 2013-07-02 08:15:31Z wyd621@gmail.com $ diff --git a/module/file/view/edit.html.php b/module/file/view/edit.html.php index 616d193217..1329925822 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yangyang Shi * @package file * @version $Id$ diff --git a/module/file/view/export.html.php b/module/file/view/export.html.php index 56bb761eab..6e338cdc44 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/file/view/export2csv.html.php b/module/file/view/export2csv.html.php index c528c9db11..a7b94ac557 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/file/view/export2html.html.php b/module/file/view/export2html.html.php index c569c5dcef..c182b5827e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/file/view/export2xml.html.php b/module/file/view/export2xml.html.php index 5d151d77e2..a7b90bfaa2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/file/view/uploadimages.html.php b/module/file/view/uploadimages.html.php index ca6a58ea69..58cbe13f60 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package file * @version $Id$ diff --git a/module/git/control.php b/module/git/control.php index 5f88b07fc2..3858b35fcb 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package git * @version $Id$ diff --git a/module/git/lang/de.php b/module/git/lang/de.php index 4b89a02315..291b2b9f0c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package git * @version $Id$ diff --git a/module/git/lang/en.php b/module/git/lang/en.php index 40661f5b63..51c35a526d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package git * @version $Id$ diff --git a/module/git/lang/fr.php b/module/git/lang/fr.php index 6ed831edb5..01d39b9966 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package git * @version $Id$ diff --git a/module/git/lang/zh-cn.php b/module/git/lang/zh-cn.php index 0dbbc64d88..1e0de37f9e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package git * @version $Id$ diff --git a/module/git/lang/zh-tw.php b/module/git/lang/zh-tw.php index c61b2ed4f8..3d6b813ace 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package git * @version $Id$ diff --git a/module/git/model.php b/module/git/model.php index 807284331b..1632d45f6a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package git * @version $Id$ diff --git a/module/git/view/cat.html.php b/module/git/view/cat.html.php index 55a1c48463..52c3d2a35b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/git/view/diff.html.php b/module/git/view/diff.html.php index d9bfcfbd6b..65b3a9fc4f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/gitlab/control.php b/module/gitlab/control.php index 2ffb00ddf5..1ed38204b1 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 9caf709078..5d6d51db07 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chenqi * @package product * @version $Id: $ diff --git a/module/gitlab/view/binduser.html.php b/module/gitlab/view/binduser.html.php index b7921b6104..8827890737 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yangyang Shi * @package story * @version $Id$ diff --git a/module/gitlab/view/browse.html.php b/module/gitlab/view/browse.html.php index dad0136744..81b197a04c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/browsebranch.html.php b/module/gitlab/view/browsebranch.html.php index f92dbeda91..bd29860a2b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Zeng * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/browsebranchpriv.html.php b/module/gitlab/view/browsebranchpriv.html.php index 5914946d3b..181c913742 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yanyi Cao * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/browsegroup.html.php b/module/gitlab/view/browsegroup.html.php index eaf2f136eb..c16fb9ad8b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/browseproject.html.php b/module/gitlab/view/browseproject.html.php index 4c93ff448c..0acb2fa888 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/browsetag.html.php b/module/gitlab/view/browsetag.html.php index 0cbcaebe98..02cc38074c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Zeng * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/browsetagpriv.html.php b/module/gitlab/view/browsetagpriv.html.php index 9a5cb7f90f..792e05531e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Zeng * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/browseuser.html.php b/module/gitlab/view/browseuser.html.php index 4b1cdaee89..e839d2f8b7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/create.html.php b/module/gitlab/view/create.html.php index e9f62b4625..224aaaded3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/createbranch.html.php b/module/gitlab/view/createbranch.html.php index 96d6e3da6a..72ed873252 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yuchun Li * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/createbranchpriv.html.php b/module/gitlab/view/createbranchpriv.html.php index 301565c05f..52c3e691f2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yanyi Cao * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/creategroup.html.php b/module/gitlab/view/creategroup.html.php index 0d9428d96d..e8f913c8fa 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/createproject.html.php b/module/gitlab/view/createproject.html.php index c7a5f1eace..99450d6e31 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/createtag.html.php b/module/gitlab/view/createtag.html.php index 1d984f97e4..91eb478891 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yanyi Cao * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/createtagpriv.html.php b/module/gitlab/view/createtagpriv.html.php index bcdeb10d48..cf45b66372 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yuchun Li * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/createuser.html.php b/module/gitlab/view/createuser.html.php index 02f376c140..0be85a7bae 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/edit.html.php b/module/gitlab/view/edit.html.php index 4e89c6584d..689ce8243a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/editgroup.html.php b/module/gitlab/view/editgroup.html.php index 60ed3d89bc..10a602bb2e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/editproject.html.php b/module/gitlab/view/editproject.html.php index 30222e1dd3..24e97a639c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/edittagpriv.html.php b/module/gitlab/view/edittagpriv.html.php index 96fc314e90..aec4bbcbf2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yuchun Li * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/edituser.html.php b/module/gitlab/view/edituser.html.php index a4ddf193ce..d5ef0b6863 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package gitlab * @version $Id$ diff --git a/module/gitlab/view/importissue.html.php b/module/gitlab/view/importissue.html.php index a2417f6bef..4480d3d5bf 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yangyang Shi * @package story * @version $Id$ diff --git a/module/gitlab/view/view.html.php b/module/gitlab/view/view.html.php index 3db31c9a99..45b329be03 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 89ba047eec..349686526e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package group * @version $Id: control.php 4648 2013-04-15 02:45:49Z chencongzhi520@gmail.com $ diff --git a/module/group/lang/de.php b/module/group/lang/de.php index d1739a3f26..4adb4f2e96 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package group * @version $Id: en.php 4719 2013-05-03 02:20:28Z chencongzhi520@gmail.com $ diff --git a/module/group/lang/en.php b/module/group/lang/en.php index eec3266d60..1cded59281 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package group * @version $Id: en.php 4719 2013-05-03 02:20:28Z chencongzhi520@gmail.com $ diff --git a/module/group/lang/fr.php b/module/group/lang/fr.php index 755dee99c3..48c5f742f2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package group * @version $Id: en.php 4719 2013-05-03 02:20:28Z chencongzhi520@gmail.com $ diff --git a/module/group/lang/resource.php b/module/group/lang/resource.php index 3f45110100..5e09201e3a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package group * @version $Id$ diff --git a/module/group/lang/zh-cn.php b/module/group/lang/zh-cn.php index 78d1cf3f2f..e2eb80ec26 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package group * @version $Id: zh-cn.php 4719 2013-05-03 02:20:28Z chencongzhi520@gmail.com $ diff --git a/module/group/lang/zh-tw.php b/module/group/lang/zh-tw.php index 36f3813fb5..68869a77c6 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package group * @version $Id: zh-tw.php 4719 2013-05-03 02:20:28Z chencongzhi520@gmail.com $ diff --git a/module/group/model.php b/module/group/model.php index 25aa7da357..43df868cd1 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package group * @version $Id: model.php 4976 2013-07-02 08:15:31Z wyd621@gmail.com $ diff --git a/module/group/view/browse.html.php b/module/group/view/browse.html.php index 3c849473f1..fdcb4183a9 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package group * @version $Id: browse.html.php 4769 2013-05-05 07:24:21Z wwccss $ diff --git a/module/group/view/copy.html.php b/module/group/view/copy.html.php index 37aee78d8a..b739ac02af 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package group * @version $Id: copy.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/group/view/create.html.php b/module/group/view/create.html.php index 1d14f92f53..2c80a807df 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package group * @version $Id: create.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/group/view/edit.html.php b/module/group/view/edit.html.php index 75eb004257..ad2b6958bb 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package group * @version $Id: edit.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/group/view/managemember.html.php b/module/group/view/managemember.html.php index 2caab43f03..51c8d56622 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package group * @version $Id: managemember.html.php 4627 2013-04-10 05:42:20Z chencongzhi520@gmail.com $ diff --git a/module/group/view/managepriv.html.php b/module/group/view/managepriv.html.php index 7cb07f3a25..e6a32db7aa 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package group * @version $Id: managepriv.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/group/view/manageprojectadmin.html.php b/module/group/view/manageprojectadmin.html.php index 3deb788da2..846946b60a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package group * @version $Id: managemember.html.php 4627 2013-04-10 05:42:20Z chencongzhi520@gmail.com $ diff --git a/module/group/view/manageview.html.php b/module/group/view/manageview.html.php index 183b097175..46395fa68f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 3e501b70d4..4de3b87550 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package group * @version $Id: managepriv.html.php 1517 2011-03-07 10:02:57Z wwccss $ diff --git a/module/group/view/privbymodule.html.php b/module/group/view/privbymodule.html.php index c0d519be1b..d5ce653d8e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 2084f79e12..26658d3d81 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package holiday * @version $Id diff --git a/module/holiday/model.php b/module/holiday/model.php index 901665d999..ca538c2936 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package holiday * @version $Id diff --git a/module/holiday/view/browse.html.php b/module/holiday/view/browse.html.php index 15514911b0..637a4ac554 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author chujilu * @package holiday * @version $Id$ diff --git a/module/holiday/view/create.html.php b/module/holiday/view/create.html.php index 32d0be3430..a286293d64 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author chujilu * @package holiday * @version $Id$ diff --git a/module/holiday/view/edit.html.php b/module/holiday/view/edit.html.php index 83b1ed9fdf..4dd0c050b2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author chujilu * @package holiday * @version $Id$ diff --git a/module/index/control.php b/module/index/control.php index bea386182a..65ee39cde6 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: control.php 5036 2013-07-06 05:26:44Z wyd621@gmail.com $ diff --git a/module/index/model.php b/module/index/model.php index eb031f2769..6649b41e29 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 6c72bd0f55..0dcd324db1 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 49ee4a585f..6bff548f45 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 b6693a6550..c7f9c152f1 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package install * @version $Id: en.php 4972 2013-07-02 06:50:10Z zhujinyonging@gmail.com $ diff --git a/module/install/lang/en.php b/module/install/lang/en.php index a24529479b..e835e79e63 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package install * @version $Id: en.php 4972 2013-07-02 06:50:10Z zhujinyonging@gmail.com $ diff --git a/module/install/lang/fr.php b/module/install/lang/fr.php index a04fdc4d7d..83f5b86c4c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package install * @version $Id: en.php 4972 2013-07-02 06:50:10Z zhujinyonging@gmail.com $ diff --git a/module/install/lang/zh-cn.php b/module/install/lang/zh-cn.php index f87fd94c91..cf12a9900b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package install * @version $Id: zh-cn.php 4972 2013-07-02 06:50:10Z zhujinyonging@gmail.com $ diff --git a/module/install/lang/zh-tw.php b/module/install/lang/zh-tw.php index a99690d7d5..32ad4cd077 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package install * @version $Id: zh-tw.php 4972 2013-07-02 06:50:10Z zhujinyonging@gmail.com $ diff --git a/module/install/model.php b/module/install/model.php index 5e59a69eb7..794df3de6d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package install * @version $Id: model.php 5006 2013-07-03 08:52:21Z wyd621@gmail.com $ diff --git a/module/install/view/index.html.php b/module/install/view/index.html.php index e3d2d83d56..7cdd66518c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: index.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/install/view/license.html.php b/module/install/view/license.html.php index 2ce27386b9..682e0a670c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package install * @version $Id$ diff --git a/module/install/view/step1.html.php b/module/install/view/step1.html.php index 91175d2bf4..b968e163e3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: step1.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/install/view/step2.html.php b/module/install/view/step2.html.php index 9fe41c5bf9..60a64fdb73 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: step2.html.php 4972 2013-07-02 06:50:10Z zhujinyonging@gmail.com $ diff --git a/module/install/view/step3.html.php b/module/install/view/step3.html.php index c3e40f34a2..1a483e945b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: step3.html.php 4297 2013-01-27 07:51:45Z wwccss $ diff --git a/module/install/view/step4.html.php b/module/install/view/step4.html.php index 07d92298a0..fb8a6814d7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yuchun Li * @package install * @version $Id$ diff --git a/module/install/view/step5.html.php b/module/install/view/step5.html.php index e4d67b5657..91ab940ac3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: step4.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/install/view/step6.html.php b/module/install/view/step6.html.php index e0cdd7283f..4c52b5df67 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: step5.html.php 2568 2012-02-18 15:53:35Z zhujinyong@cnezsoft.com$ diff --git a/module/jenkins/control.php b/module/jenkins/control.php index d10d2a7b08..129e6830ca 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 9479c04525..bd4afb6fb0 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chenqi * @package product * @version $Id: $ diff --git a/module/jenkins/view/browse.html.php b/module/jenkins/view/browse.html.php index c5df52757c..089ff77834 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package jenkins * @version $Id$ diff --git a/module/jenkins/view/create.html.php b/module/jenkins/view/create.html.php index db552421ee..34c988c862 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package jenkins * @version $Id$ diff --git a/module/jenkins/view/edit.html.php b/module/jenkins/view/edit.html.php index 1b36e02005..303ff9d57f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package jenkins * @version $Id$ diff --git a/module/job/control.php b/module/job/control.php index 7bd9f3d9db..967db36bd7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package job * @version $Id$ diff --git a/module/job/model.php b/module/job/model.php index 44db499813..70f461b6d2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package job * @version $Id$ diff --git a/module/job/view/browse.html.php b/module/job/view/browse.html.php index 9f45c569b7..eac0cb5328 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chenqi * @package job * @version $Id$ diff --git a/module/job/view/create.html.php b/module/job/view/create.html.php index 4ff6acc683..af31444465 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chenqi * @package job * @version $Id$ diff --git a/module/job/view/edit.html.php b/module/job/view/edit.html.php index 25062cec43..8c2d7153e7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chenqi * @package job * @version $Id$ diff --git a/module/job/view/view.html.php b/module/job/view/view.html.php index 6819fc5159..e5e60b6705 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package job * @version $Id$ diff --git a/module/kanban/control.php b/module/kanban/control.php index 2f21bc4d90..1b83d01bfb 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 177f383697..0f814a8a07 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 9d7787de83..b92a43fe4f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 eab6e51b85..a17fa8d564 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 f9485b4e4d..c8bdf3ec45 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 48f7075f09..7d46b4977e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Xin Zhou * @package kanban * @version $Id$ diff --git a/module/kanban/view/close.html.php b/module/kanban/view/close.html.php index bdf9f9cac6..6abe11eb52 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 3abe550219..1ecf3c8382 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 d4365dd9f0..0c7fbcd708 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 418bdf6166..99df929f53 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 fe9135cc23..4e6a9a35cc 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Guangming Sun * @package kanban * @version $Id$ diff --git a/module/kanban/view/createexeclane.html.php b/module/kanban/view/createexeclane.html.php index 3d12d3822e..e1846eda6d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 946fb2647c..1f4e1c2916 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 fd343889cc..5b846d738a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 fc7d525785..12733487a0 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 a4a498ac33..ae80ea5add 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 f91f394aa8..612b1350d8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 4bdcb978fc..1087b3d4f3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 0f99a13eac..0d352fbae5 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 5164fc0d62..c97939dc0b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 f3411de9d3..8653862db4 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 07e40bbf93..9e64f9090b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 7814a9f02b..6819252b5e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 951af291cb..17edada081 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 61b457584c..58041c1170 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 02c79dc717..75e7a595c9 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 55beb9d46a..d48a121d65 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 d7040c1232..0a250d5d69 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 dca9a1463a..ef6e49c376 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 6a5fc60020..67914358d2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 e389de7ae1..57cd889d57 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 19d2537cb0..4c5b46b085 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 18ce3502b2..c35594682e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 38f61bf032..694d0d8edf 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 6ef55a7713..2f2e999627 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 663e625f32..a9466feb3f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 f6a959f129..dc0796c67b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 3272adc081..0e53843d8d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 502b134c48..46a7a67537 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yangyang Shi * @package mail * @version $Id$ diff --git a/module/mail/model.php b/module/mail/model.php index de56f0c8b8..5f53254101 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package mail * @version $Id: model.php 4750 2013-05-05 00:22:53Z chencongzhi520@gmail.com $ diff --git a/module/mail/view/browse.html.php b/module/mail/view/browse.html.php index 22c8bfa6db..c21bc04d06 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package mail * @version $Id$ diff --git a/module/mail/view/detect.html.php b/module/mail/view/detect.html.php index 22eb8d234c..4ad689faa8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package mail * @version $Id$ diff --git a/module/mail/view/edit.html.php b/module/mail/view/edit.html.php index aecb2be6c7..263a7a3826 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package mail * @version $Id$ diff --git a/module/mail/view/index.html.php b/module/mail/view/index.html.php index 21e95f215b..18decf677a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package mail * @version $Id$ diff --git a/module/mail/view/save.html.php b/module/mail/view/save.html.php index 3e4db91574..1be134a876 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package mail * @version $Id$ diff --git a/module/mail/view/sendcloud.html.php b/module/mail/view/sendcloud.html.php index cd5bd76b8b..c75b535fb2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package mail * @version $Id$ diff --git a/module/mail/view/sendclouduser.html.php b/module/mail/view/sendclouduser.html.php index 993614f04e..1274c56d68 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package mail * @version $Id$ diff --git a/module/mail/view/test.html.php b/module/mail/view/test.html.php index 6a0d2d8708..f1407bf68d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package mail * @version $Id$ diff --git a/module/mail/view/ztcloud.html.php b/module/mail/view/ztcloud.html.php index 7b6d7c59ff..8ab96e8563 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package mail * @version $Id$ diff --git a/module/message/control.php b/module/message/control.php index 7051dc4b66..e154581939 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package message * @version $Id$ diff --git a/module/message/model.php b/module/message/model.php index 1dc6e67a57..2dd836966f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package message * @version $Id$ diff --git a/module/message/view/browser.html.php b/module/message/view/browser.html.php index e49858936a..357184d830 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package message * @version $Id$ diff --git a/module/message/view/setting.html.php b/module/message/view/setting.html.php index f6da46e892..eabc23b0dd 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package message * @version $Id$ diff --git a/module/misc/control.php b/module/misc/control.php index d48f86d46d..b9998c962b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package misc * @version $Id: control.php 5128 2013-07-13 08:59:49Z chencongzhi520@gmail.com $ diff --git a/module/misc/lang/de.php b/module/misc/lang/de.php index 0c7fb19e29..236650b78c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 cb49574f67..6cb3c076e6 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 55bfbc72d2..b7c26ca62a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package misc * @version $Id: English.php 824 2010-05-02 15:32:06Z wwccss $ diff --git a/module/misc/lang/zh-cn.php b/module/misc/lang/zh-cn.php index d7b44a8e5f..fad1679837 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package misc * @version $Id: zh-cn.php 5128 2013-07-13 08:59:49Z chencongzhi520@gmail.com $ diff --git a/module/misc/lang/zh-tw.php b/module/misc/lang/zh-tw.php index e06025e31e..5f3caf9615 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package misc * @version $Id: zh-tw.php 5128 2013-07-13 08:59:49Z chencongzhi520@gmail.com $ diff --git a/module/misc/model.php b/module/misc/model.php index 4bc703c842..68ab08a1bc 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 c0ac785798..765987b922 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author dingguodong * @package mr * @version $Id$ diff --git a/module/mr/view/approval.html.php b/module/mr/view/approval.html.php index c1b3b9c58d..6007362095 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author dingguodong * @package mr * @version $Id$ diff --git a/module/mr/view/link.html.php b/module/mr/view/link.html.php index aab6c6c025..fe834e0272 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 fa8dd99f93..cfdc4d8b6b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 8c9b881f95..9e6834fa73 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 c80ee37df5..2f7906749e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package mr * @version $Id: linktask.html.php$ diff --git a/module/my/control.php b/module/my/control.php index 9d859e6173..f0dfff94f5 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package dashboard * @version $Id: control.php 5020 2013-07-05 02:03:26Z wyd621@gmail.com $ diff --git a/module/my/model.php b/module/my/model.php index 6e2c4afc0c..bbe114d790 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package dashboard * @version $Id: model.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/my/view/bug.html.php b/module/my/view/bug.html.php index 73b5287207..69a18b2ab8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package dashboard * @version $Id: bug.html.php 5107 2013-07-12 01:46:12Z chencongzhi520@gmail.com $ diff --git a/module/my/view/buildcontactlists.html.php b/module/my/view/buildcontactlists.html.php index 81f0d6041c..428a417131 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Fei Chen * @package my * @version $Id$ diff --git a/module/my/view/changepassword.html.php b/module/my/view/changepassword.html.php index ee05c50bdc..c84e4df11f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package user * @version $Id: editprofile.html.php 2605 2012-02-21 07:22:58Z wwccss $ diff --git a/module/my/view/doc.html.php b/module/my/view/doc.html.php index 26ab269475..c74f57b6c2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package my * @version $Id diff --git a/module/my/view/dynamic.html.php b/module/my/view/dynamic.html.php index e7bd8c9736..407dc57f6f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package dashboard * @version $Id: action->dynamic.html.php 1477 2011-03-01 15:25:50Z wwccss $ diff --git a/module/my/view/editprofile.html.php b/module/my/view/editprofile.html.php index bfbb8b26fe..590aa9fbe1 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package user * @version $Id: editprofile.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/my/view/execution.html.php b/module/my/view/execution.html.php index 2ba50c8401..ad1ecd3131 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package my * @version $Id diff --git a/module/my/view/index.html.php b/module/my/view/index.html.php index f74db4408f..a1069eb376 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: index.html.php 1947 2011-06-29 11:58:03Z wwccss $ diff --git a/module/my/view/managecontacts.html.php b/module/my/view/managecontacts.html.php index d2725ba7e4..4f395908f8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author chunsheng wang * @package my * @version $Id$ diff --git a/module/my/view/preference.html.php b/module/my/view/preference.html.php index 7c9aa1f077..5ba6ea9786 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package user * @version $Id: editprofile.html.php 2605 2012-02-21 07:22:58Z wwccss $ diff --git a/module/my/view/profile.html.php b/module/my/view/profile.html.php index c7fb41fa20..c4cce075b8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package my * @version $Id: profile.html.php 4694 2013-05-02 01:40:54Z chencongzhi520@gmail.com $ diff --git a/module/my/view/project.html.php b/module/my/view/project.html.php index b8c3dd7d10..6c67c0bb8b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package my * @version $Id diff --git a/module/my/view/score.html.php b/module/my/view/score.html.php index 7ba030fbe4..b939218511 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Memory * @package my * @version $Id$ diff --git a/module/my/view/task.html.php b/module/my/view/task.html.php index bfac17fb76..16e4e4076a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package dashboard * @version $Id: task.html.php 5101 2013-07-12 00:44:27Z chencongzhi520@gmail.com $ diff --git a/module/my/view/team.html.php b/module/my/view/team.html.php index e04bf28e5c..b4dccb6594 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id: browse.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/my/view/testcase.html.php b/module/my/view/testcase.html.php index fa8f4bd958..c2e68cf59e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package dashboard * @version $Id: test.html.php 1191 2010-11-13 07:30:35Z jajacn@126.com $ diff --git a/module/my/view/testtask.html.php b/module/my/view/testtask.html.php index 91789c415d..7a07dd9a4e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package dashboard * @version $Id$ diff --git a/module/my/view/todo.html.php b/module/my/view/todo.html.php index b592801163..078bbba8ea 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package dashboard * @version $Id: todo.html.php 4735 2013-05-03 08:30:02Z chencongzhi520@gmail.com $ diff --git a/module/personnel/control.php b/module/personnel/control.php index 961e4a0861..2fb6a96424 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package personnel * @version $Id$ diff --git a/module/personnel/model.php b/module/personnel/model.php index 74fef82d0f..37645fef75 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package personnel * @version $Id$ diff --git a/module/personnel/view/accessible.html.php b/module/personnel/view/accessible.html.php index dbd8f47000..ba5ef9ae03 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id diff --git a/module/personnel/view/addwhitelist.html.php b/module/personnel/view/addwhitelist.html.php index 58ad5aadc2..3a6e985a23 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package personnel * @version $Id diff --git a/module/personnel/view/invest.html.php b/module/personnel/view/invest.html.php index f73ce3385b..2339adf157 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id diff --git a/module/personnel/view/whitelist.html.php b/module/personnel/view/whitelist.html.php index 819aadaf69..ad1d4346df 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package personnel * @version $Id diff --git a/module/pipeline/model.php b/module/pipeline/model.php index 8629542dba..59bb07e11a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chenqi * @package product * @version $Id: $ diff --git a/module/product/control.php b/module/product/control.php index 1ffd110586..8b4940bae5 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id: control.php 5144 2013-07-15 06:37:03Z chencongzhi520@gmail.com $ diff --git a/module/product/lang/de.php b/module/product/lang/de.php index 82ce9b7741..d32ef58e9c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id: en.php 5091 2013-07-10 06:06:46Z chencongzhi520@gmail.com $ diff --git a/module/product/lang/en.php b/module/product/lang/en.php index 75ae14a2d3..a20aa334df 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id: en.php 5091 2013-07-10 06:06:46Z chencongzhi520@gmail.com $ diff --git a/module/product/lang/fr.php b/module/product/lang/fr.php index 3ae3d261f3..c34a449e90 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id: en.php 5091 2013-07-10 06:06:46Z chencongzhi520@gmail.com $ diff --git a/module/product/lang/zh-cn.php b/module/product/lang/zh-cn.php index 92e8713714..999d1f828b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id: zh-cn.php 5091 2013-07-10 06:06:46Z chencongzhi520@gmail.com $ diff --git a/module/product/lang/zh-tw.php b/module/product/lang/zh-tw.php index 7d74628237..1e7d868f2b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id: zh-tw.php 5091 2013-07-10 06:06:46Z chencongzhi520@gmail.com $ diff --git a/module/product/model.php b/module/product/model.php index 71c3632f5b..2d9261812f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id: model.php 5118 2013-07-12 07:41:41Z chencongzhi520@gmail.com $ diff --git a/module/product/view/all.html.php b/module/product/view/all.html.php index fd01baae99..3abb912eed 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yangyang Shi * @package ZenTaoPMS * @version $Id diff --git a/module/product/view/batchedit.html.php b/module/product/view/batchedit.html.php index 3c66baaa1c..dfe44b85ce 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package ZenTaoPMS * @version $Id$ diff --git a/module/product/view/browse.html.php b/module/product/view/browse.html.php index 56c8bc8ad5..5b5d49809f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id: browse.html.php 4909 2013-06-26 07:23:50Z chencongzhi520@gmail.com $ diff --git a/module/product/view/build.html.php b/module/product/view/build.html.php index d596a2e558..5ac54d7633 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id diff --git a/module/product/view/close.html.php b/module/product/view/close.html.php index c7f0825a6b..d3b0a0bb88 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id: close.html.php 935 2013-01-16 07:49:24Z wwccss@gmail.com $ diff --git a/module/product/view/create.html.php b/module/product/view/create.html.php index f1b946f36d..6e23fdc410 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id: create.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/product/view/dashboard.html.php b/module/product/view/dashboard.html.php index 262bf4e010..6073d92667 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 a1b485e2b9..2ebd40cf3b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package dashboard * @version $Id: action->dynamic.html.php 1477 2011-03-01 15:25:50Z wwccss $ diff --git a/module/product/view/edit.html.php b/module/product/view/edit.html.php index c1a0489139..ea2fe65ee7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id: edit.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/product/view/export.html.php b/module/product/view/export.html.php index 4ee856ab8c..84cba2c5c2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id$ diff --git a/module/product/view/index.html.php b/module/product/view/index.html.php index 32d3126d70..7a9cce8e89 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package product * @version $Id$ diff --git a/module/product/view/kanban.html.php b/module/product/view/kanban.html.php index 7820cd0f7e..bd5f388399 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Hao Sun * @package ZenTaoPMS * @version $Id diff --git a/module/product/view/manageline.html.php b/module/product/view/manageline.html.php index 2a9e8bbfee..e5b4d859ef 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yangyang Shi * @package ZenTaoPMS * @version $Id diff --git a/module/product/view/project.html.php b/module/product/view/project.html.php index 8aa91d65fc..32cb6a14d9 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: index.html.php 2343 2011-11-21 05:24:56Z wwccss $ diff --git a/module/product/view/roadmap.html.php b/module/product/view/roadmap.html.php index d6f6e98a73..0810908751 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id: roadmap.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/product/view/showerrornone.html.php b/module/product/view/showerrornone.html.php index 14cdb6e4da..cf8f2cac16 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package product * @version $Id$ diff --git a/module/product/view/view.html.php b/module/product/view/view.html.php index a263b9f767..2263f04f35 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id: view.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/productplan/control.php b/module/productplan/control.php index 4ab9a2f4f9..a0607f5396 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package productplan * @version $Id: control.php 4659 2013-04-17 06:45:08Z chencongzhi520@gmail.com $ diff --git a/module/productplan/lang/de.php b/module/productplan/lang/de.php index c35344d0c6..5a313e3300 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package productplan * @version $Id: en.php 4659 2013-04-17 06:45:08Z chencongzhi520@gmail.com $ diff --git a/module/productplan/lang/en.php b/module/productplan/lang/en.php index 91185d2618..da23bd9127 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package productplan * @version $Id: en.php 4659 2013-04-17 06:45:08Z chencongzhi520@gmail.com $ diff --git a/module/productplan/lang/fr.php b/module/productplan/lang/fr.php index cfb814d55e..10269e2ee7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package productplan * @version $Id: en.php 4659 2013-04-17 06:45:08Z chencongzhi520@gmail.com $ diff --git a/module/productplan/lang/zh-cn.php b/module/productplan/lang/zh-cn.php index 71fcabf9ba..766defd14e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package productplan * @version $Id: zh-cn.php 4659 2013-04-17 06:45:08Z chencongzhi520@gmail.com $ diff --git a/module/productplan/lang/zh-tw.php b/module/productplan/lang/zh-tw.php index c61e96f418..ebd3cc620f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package productplan * @version $Id: zh-tw.php 4659 2013-04-17 06:45:08Z chencongzhi520@gmail.com $ diff --git a/module/productplan/model.php b/module/productplan/model.php index cd3aad00d5..1b5e2d5487 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package productplan * @version $Id: model.php 4639 2013-04-11 02:06:35Z chencongzhi520@gmail.com $ diff --git a/module/productplan/view/batchchangestatus.html.php b/module/productplan/view/batchchangestatus.html.php index 94d08de44f..3835b4bf5a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Xin Zhou * @package productplan * @version $Id$ diff --git a/module/productplan/view/batchedit.html.php b/module/productplan/view/batchedit.html.php index 9ddb2d21b1..545a57289a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package productplan * @version $Id$ diff --git a/module/productplan/view/browse.html.php b/module/productplan/view/browse.html.php index 62624f0cf4..6f8a177c8b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package plan * @version $Id: browse.html.php 4707 2013-05-02 06:57:41Z chencongzhi520@gmail.com $ diff --git a/module/productplan/view/browsebykanban.html.php b/module/productplan/view/browsebykanban.html.php index d0bd238a4c..10ff417e03 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 b55be677e0..2667fce216 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 c241f86e15..60c5a5e90d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 41527ef8dc..dc6e183c77 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package productplan * @version $Id: create.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/productplan/view/edit.html.php b/module/productplan/view/edit.html.php index 2335ac36ad..1c9880f2ef 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package productplan * @version $Id: edit.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/productplan/view/linkbug.html.php b/module/productplan/view/linkbug.html.php index e46cfdb781..769e713d67 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package productplan * @version $Id: linkbug.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/productplan/view/linkstory.html.php b/module/productplan/view/linkstory.html.php index 7bdb9727fa..fb18e5ddf0 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package productplan * @version $Id: linkstory.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/productplan/view/start.html.php b/module/productplan/view/start.html.php index 633f57951b..a218f9d584 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 46de339e8b..263196fd60 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package productplan * @version $Id: view.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/program/view/browse.html.php b/module/program/view/browse.html.php index 866f83b314..e9a8dc9304 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id diff --git a/module/program/view/create.html.php b/module/program/view/create.html.php index 41f1888441..f841535baa 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 e56ee6b93e..4d38a6acef 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id: browse.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/program/view/edit.html.php b/module/program/view/edit.html.php index 97c72caec3..9a7738253b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 cffa8aa8f6..2ca78f6097 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package project * @version $Id$ diff --git a/module/program/view/index.html.php b/module/program/view/index.html.php index 56395fcf7b..91d3a2939a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: index.html.php 5094 2013-07-10 08:46:15Z chencongzhi520@gmail.com $ diff --git a/module/program/view/kanban.html.php b/module/program/view/kanban.html.php index c8c2223832..61a2cbb028 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Hao Sun * @package ZenTaoPMS * @version $Id diff --git a/module/program/view/product.html.php b/module/program/view/product.html.php index f689619cd2..24586b1a78 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yangyang Shi * @package ZenTaoPMS * @version $Id diff --git a/module/program/view/project.html.php b/module/program/view/project.html.php index 07f321a54c..f1b60b08e4 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 1ddadb4c97..cf17227b4a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id: browse.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/programplan/control.php b/module/programplan/control.php index c7341a4415..fc503a4e7c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 a510addfb1..4f9ee44aa1 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 bf377f1fe6..ecfaad4b07 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 a510addfb1..4f9ee44aa1 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 a510addfb1..4f9ee44aa1 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 80cf9ec318..e1352b4db9 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 adca9c3c0e..c951235dd4 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 6fd97294ba..b0a2e30ed7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 db2d1507b9..5a299d37f0 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 8f6e2231f8..4a76ec2dbf 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 f03876fa8b..2717fa249b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 3a48c367e9..2bc407ad27 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 5edec61319..9ed1889add 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 6880924684..1cced9f528 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package project * @version $Id: suspend.html.php 935 2013-01-16 07:49:24Z wwccss@gmail.com $ diff --git a/module/project/view/batchedit.html.php b/module/project/view/batchedit.html.php index 09317bfe03..862f412be2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 7058bc02d9..66829e5160 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 c17b996bf2..d560e60cd1 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 7d4c70bea8..b97dce0a92 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 d65f47a987..514ad41591 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package project * @version $Id: bug.html.php 4894 2013-06-25 01:28:39Z wyd621@gmail.com $ diff --git a/module/project/view/build.html.php b/module/project/view/build.html.php index 77fb579822..69dcb7be6e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package project * @version $Id: build.html.php 4262 2013-01-24 08:48:56Z chencongzhi520@gmail.com $ diff --git a/module/project/view/close.html.php b/module/project/view/close.html.php index 9d9f3c291e..be3ae4f7ed 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package project * @version $Id: suspend.html.php 935 2013-01-16 07:49:24Z wwccss@gmail.com $ diff --git a/module/project/view/create.html.php b/module/project/view/create.html.php index 4a314a448c..f961aa09f3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 8ab38af548..a59de78d0d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id: browse.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/project/view/dynamic.html.php b/module/project/view/dynamic.html.php index 54c5ead26f..0edb7f5bc9 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package dashboard * @version $Id: action->dynamic.html.php 1477 2011-03-01 15:25:50Z wwccss $ diff --git a/module/project/view/edit.html.php b/module/project/view/edit.html.php index dc1572bd5b..127b374d5f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package project * @version $Id diff --git a/module/project/view/export.html.php b/module/project/view/export.html.php index cffa8aa8f6..2ca78f6097 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package project * @version $Id$ diff --git a/module/project/view/group.html.php b/module/project/view/group.html.php index 684d18ba80..f8acb232bb 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 37257bd067..a7ef0618f7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: index.html.php 5094 2013-07-10 08:46:15Z chencongzhi520@gmail.com $ diff --git a/module/project/view/kanban.html.php b/module/project/view/kanban.html.php index 9319fd1121..df01db0849 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Hao Sun * @package ZenTaoPMS * @version $Id diff --git a/module/project/view/managepriv.html.php b/module/project/view/managepriv.html.php index 16a63d8b34..c6cee6cf52 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 8b3e43d17f..cc9cbc8f2a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package project * @version $Id diff --git a/module/project/view/manageview.html.php b/module/project/view/manageview.html.php index 9f91ec410b..790869d5f6 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 ede2754b34..5b99fec123 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 5fb7d710d1..372bf6de71 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 13af8429c0..9ae076a2b6 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package project * @version $Id: suspend.html.php 935 2013-01-16 07:49:24Z wwccss@gmail.com $ diff --git a/module/project/view/team.html.php b/module/project/view/team.html.php index d07eed789c..695bf8ee1c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 459b1db36f..2767c461f3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testtask * @version $Id: browse.html.php 1914 2011-06-24 10:11:25Z yidong@cnezsoft.com $ diff --git a/module/project/view/view.html.php b/module/project/view/view.html.php index d047d7516a..d995f5d084 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package project * @version $Id: view.html.php 4594 2013-03-13 06:16:02Z wyd621@gmail.com $ diff --git a/module/projectbuild/lang/de.php b/module/projectbuild/lang/de.php index 4cab34b277..b26ec0d136 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 4cab34b277..b26ec0d136 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 4cab34b277..b26ec0d136 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 4cab34b277..b26ec0d136 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 757b4af2ec..9778b8b404 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 4d282c0f5f..34379a49b6 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 47035b9c25..b6d1094b73 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 eaf4dbe0d3..0367551d7c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 6a0f04de94..33e82bde68 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 db2436b343..9430e39a40 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 5052d28d41..eae011e6be 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 7f4f9e8d59..c9b07c9de1 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 b51af122f0..381ba0b5e5 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 e7211f1165..1eaeb927b0 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 8f5eea32ac..55e4f8108e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 d2d593070d..85aa85f6f3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package release * @version $Id: create.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/projectrelease/view/edit.html.php b/module/projectrelease/view/edit.html.php index 1856280824..cdd1be55c7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package release * @version $Id: edit.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/projectrelease/view/export.html.php b/module/projectrelease/view/export.html.php index 879cde6537..5102e39f29 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/projectrelease/view/linkbug.html.php b/module/projectrelease/view/linkbug.html.php index b18043f7e9..0081dc6d41 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package release * @version $Id: linkbug.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/projectrelease/view/linkstory.html.php b/module/projectrelease/view/linkstory.html.php index b2d0b2f6fc..c417769aa2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package release * @version $Id: linkstory.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/projectrelease/view/notify.html.php b/module/projectrelease/view/notify.html.php index 17307c4fad..0a3fc5b20e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 bd57d2881e..e7fd0c2722 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package release * @version $Id: view.html.php 4386 2013-02-19 07:37:45Z chencongzhi520@gmail.com $ diff --git a/module/projectstory/model.php b/module/projectstory/model.php index 0c888300e9..45d68f9b95 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package projectStory * @version $Id diff --git a/module/qa/control.php b/module/qa/control.php index b532d065e7..320b3fff06 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 33d041cfd5..79e735a132 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 1a96a8a47c..c260bc32f3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 e963098bd8..ab3024ba4f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package company * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/qa/lang/zh-cn.php b/module/qa/lang/zh-cn.php index 7006910f40..99a9860dcf 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package company * @version $Id: zh-cn.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/qa/lang/zh-tw.php b/module/qa/lang/zh-tw.php index 1dc8a10390..4a9990ac19 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package company * @version $Id: zh-tw.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/qa/model.php b/module/qa/model.php index bcf0c5144f..f807bbce06 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package qa * @version $Id$ diff --git a/module/qa/view/index.html.php b/module/qa/view/index.html.php index ad50f4f654..ed3f6be61f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package company * @version $Id: index.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/release/control.php b/module/release/control.php index 88b9f90428..a68c808123 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 201b41bfeb..25d5482914 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 4515046dd2..2a3824a08c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 03f0aba8ba..8c1cc280d7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package release * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/release/lang/zh-cn.php b/module/release/lang/zh-cn.php index 82ac63726b..da700453d3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package release * @version $Id: zh-cn.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/release/lang/zh-tw.php b/module/release/lang/zh-tw.php index 7ad01d0a80..686384c602 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package release * @version $Id: zh-tw.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/release/model.php b/module/release/model.php index 6b65153bbc..eab87b9dd1 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package release * @version $Id: model.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/release/view/browse.html.php b/module/release/view/browse.html.php index 4389086d9d..f28acb9dfa 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package release * @version $Id: browse.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/release/view/create.html.php b/module/release/view/create.html.php index 006f3d7685..fae48e175d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package release * @version $Id: create.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/release/view/edit.html.php b/module/release/view/edit.html.php index 806dca3bbd..efc184ee44 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package release * @version $Id: edit.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/release/view/export.html.php b/module/release/view/export.html.php index 879cde6537..5102e39f29 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/release/view/linkbug.html.php b/module/release/view/linkbug.html.php index 83766f0ecd..4c06532b6d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package release * @version $Id: linkbug.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/release/view/linkstory.html.php b/module/release/view/linkstory.html.php index fe4a9e9062..aa0e2b177f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package release * @version $Id: linkstory.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/release/view/notify.html.php b/module/release/view/notify.html.php index 17307c4fad..0a3fc5b20e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 4c770ff160..5afb111bdb 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 e5a5fb71fe..baea1be218 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package release * @version $Id: view.html.php 4386 2013-02-19 07:37:45Z chencongzhi520@gmail.com $ diff --git a/module/repo/view/edit.html.php b/module/repo/view/edit.html.php index aa8e1c0cc2..2c7843b1d1 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package repo * @version $Id$ diff --git a/module/repo/view/maintain.html.php b/module/repo/view/maintain.html.php index 7322608fc6..5f1f6af6f6 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package repo * @version $Id$ diff --git a/module/repo/view/setrules.html.php b/module/repo/view/setrules.html.php index fa7f1f5e6f..7f4e1603f5 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package repo * @version $Id$ diff --git a/module/report/control.php b/module/report/control.php index 54169d2412..d5de7198bc 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package report * @version $Id: control.php 4622 2013-03-28 01:09:02Z chencongzhi520@gmail.com $ diff --git a/module/report/lang/de.php b/module/report/lang/de.php index 7c03a03406..9f543195da 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package report * @version $Id: en.php 5080 2013-07-10 00:46:59Z wyd621@gmail.com $ diff --git a/module/report/lang/en.php b/module/report/lang/en.php index 4ac071ab3d..b2c6275cf3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package report * @version $Id: en.php 5080 2013-07-10 00:46:59Z wyd621@gmail.com $ diff --git a/module/report/lang/fr.php b/module/report/lang/fr.php index c0f4db4949..850b66da03 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package report * @version $Id: en.php 5080 2013-07-10 00:46:59Z wyd621@gmail.com $ diff --git a/module/report/lang/zh-cn.php b/module/report/lang/zh-cn.php index 2dad8a7c71..b7988f9880 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package report * @version $Id: zh-cn.php 5080 2013-07-10 00:46:59Z wyd621@gmail.com $ diff --git a/module/report/lang/zh-tw.php b/module/report/lang/zh-tw.php index 52d5fa07f3..ec56a9cfb9 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package report * @version $Id: zh-tw.php 5080 2013-07-10 00:46:59Z wyd621@gmail.com $ diff --git a/module/report/model.php b/module/report/model.php index 47952f7bd6..09bbe4d89c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 1aeb116b45..569f85d8e5 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Memory * @package score * @version $Id$ diff --git a/module/score/view/rule.html.php b/module/score/view/rule.html.php index e7022912bc..6a19594b08 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Memory * @package score * @version $Id$ diff --git a/module/search/control.php b/module/search/control.php index 3ab8650aa6..e49010ed7c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 2e1772e506..506fc6d947 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 4a910bf497..794fb39cbf 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 4c51f032fd..2f854955d1 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package search * @version $Id: en.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/search/lang/zh-cn.php b/module/search/lang/zh-cn.php index 7dbf53572e..67106e3256 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package search * @version $Id: zh-cn.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/search/lang/zh-tw.php b/module/search/lang/zh-tw.php index 832c5c0d40..b0bcb3687f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package search * @version $Id: zh-tw.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/search/model.php b/module/search/model.php index c060a090b3..0d58ea642e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package search * @version $Id: model.php 5082 2013-07-10 01:14:45Z wyd621@gmail.com $ diff --git a/module/search/view/buildform.html.php b/module/search/view/buildform.html.php index af4faf8584..3cafd8601d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 2b787cdf21..0e645f4e74 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package search * @version $Id$ diff --git a/module/setting/control.php b/module/setting/control.php index 2b133c5ae0..df1b4a4d5d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package setting * @version $Id$ diff --git a/module/setting/model.php b/module/setting/model.php index f5269a6391..cfbf2020e3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 1a3d1920fb..3d7a018851 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 2d77dfe5d9..06170bd973 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yanyi Cao * @package sonarqube * @version $Id: $ diff --git a/module/sonarqube/view/browse.html.php b/module/sonarqube/view/browse.html.php index f27170c5dd..712799e694 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yanyi Cao * @package sonarqube * @version $Id$ diff --git a/module/sonarqube/view/browseissue.html.php b/module/sonarqube/view/browseissue.html.php index a5240f0eef..b2d75b1118 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Zeng * @package sonarqube * @version $Id$ diff --git a/module/sonarqube/view/browseproject.html.php b/module/sonarqube/view/browseproject.html.php index 4100918d22..3a9b8ed215 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Zeng * @package sonarqube * @version $Id$ diff --git a/module/sonarqube/view/create.html.php b/module/sonarqube/view/create.html.php index aa14609a25..5404fddea5 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Zeng * @package sonarqube * @version $Id$ diff --git a/module/sonarqube/view/createproject.html.php b/module/sonarqube/view/createproject.html.php index 6d55022244..e621422142 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Zeng * @package sonarqube * @version $Id$ diff --git a/module/sonarqube/view/edit.html.php b/module/sonarqube/view/edit.html.php index 6ae674f599..6387b70dff 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Zeng * @package sonarqube * @version $Id$ diff --git a/module/sonarqube/view/reportview.html.php b/module/sonarqube/view/reportview.html.php index 9596241eba..fa32d5f438 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 24a2f2ad1e..8449393b55 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 25e209187e..512788d333 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package sso * @version $Id$ diff --git a/module/sso/lang/en.php b/module/sso/lang/en.php index e6cbb5c1bd..dd60a89c5a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package sso * @version $Id$ diff --git a/module/sso/lang/fr.php b/module/sso/lang/fr.php index 1df5494675..65da0e9640 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package sso * @version $Id$ diff --git a/module/sso/lang/zh-cn.php b/module/sso/lang/zh-cn.php index 594d52383f..ef12dec968 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package sso * @version $Id$ diff --git a/module/sso/lang/zh-tw.php b/module/sso/lang/zh-tw.php index bb60d2d67e..d8d418a208 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package sso * @version $Id$ diff --git a/module/sso/view/bind.html.php b/module/sso/view/bind.html.php index 7006206b92..47eed58c1f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package sso * @version $Id$ diff --git a/module/sso/view/error.html.php b/module/sso/view/error.html.php index 5c79a2b5cc..368495838e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 0aacdc3c2a..52090d22ff 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 61ee052a0e..c13f128b52 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 9df06fe194..52383a6b77 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 61ee052a0e..c13f128b52 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 61ee052a0e..c13f128b52 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 d24012760b..7b1c685901 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 51980457a4..712a9bd616 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 8b7fdc6ac6..9baa81b443 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 fe1ecdef7d..90211cea1d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 957cbd8c8a..7f6dab74d4 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 4a9e7b36e4..e63a51366c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 0792e89fe5..8fc7f4c261 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 421acc1e31..eceaac8dd0 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 bf9dd6f158..939cc67489 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id: browse.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/stakeholder/view/browse.html.php b/module/stakeholder/view/browse.html.php index ab07e6a035..3e7e69c046 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id: browse.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/stakeholder/view/communicate.html.php b/module/stakeholder/view/communicate.html.php index 085e606589..b8279b65cf 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Jia Fu * @package task * @version $Id: complete.html.php 935 2010-07-06 07:49:24Z jajacn@126.com $ diff --git a/module/stakeholder/view/create.html.php b/module/stakeholder/view/create.html.php index 35422f6229..f42f33875a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id: browse.html.php 5096 2013-07-11 07:02:43Z chencongzhi520@gmail.com $ diff --git a/module/stakeholder/view/expect.html.php b/module/stakeholder/view/expect.html.php index 7552a51291..0922524f63 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Jia Fu * @package task * @version $Id: complete.html.php 935 2010-07-06 07:49:24Z jajacn@126.com $ diff --git a/module/stakeholder/view/userissue.html.php b/module/stakeholder/view/userissue.html.php index dd5fcdb27f..b9a32ee60b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package company * @version $Id: edit.html.php 4488 2013-02-27 02:54:49Z chencongzhi520@gmail.com $ diff --git a/module/stakeholder/view/view.html.php b/module/stakeholder/view/view.html.php index 33433fa372..d4e30bc966 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package company * @version $Id: edit.html.php 4488 2013-02-27 02:54:49Z chencongzhi520@gmail.com $ diff --git a/module/story/control.php b/module/story/control.php index f2a03a421e..7ab1f7ecf6 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package story * @version $Id: control.php 5145 2013-07-15 06:47:26Z chencongzhi520@gmail.com $ diff --git a/module/story/lang/de.php b/module/story/lang/de.php index 3427df5f50..2fee3b5fde 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package story * @version $Id: en.php 5141 2013-07-15 05:57:15Z chencongzhi520@gmail.com $ diff --git a/module/story/lang/en.php b/module/story/lang/en.php index fdbc475167..202d2b1ff4 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package story * @version $Id: en.php 5141 2013-07-15 05:57:15Z chencongzhi520@gmail.com $ diff --git a/module/story/lang/fr.php b/module/story/lang/fr.php index f5c617a7d0..182a44d4c9 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package story * @version $Id: en.php 5141 2013-07-15 05:57:15Z chencongzhi520@gmail.com $ diff --git a/module/story/lang/zh-cn.php b/module/story/lang/zh-cn.php index 6a71ff233e..d622a1885f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package story * @version $Id: zh-cn.php 5141 2013-07-15 05:57:15Z chencongzhi520@gmail.com $ diff --git a/module/story/lang/zh-tw.php b/module/story/lang/zh-tw.php index 3fc632a185..ae595fa813 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package story * @version $Id: zh-tw.php 5141 2013-07-15 05:57:15Z chencongzhi520@gmail.com $ diff --git a/module/story/model.php b/module/story/model.php index 4df640aa05..4d755e19d9 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package story * @version $Id: model.php 5145 2013-07-15 06:47:26Z chencongzhi520@gmail.com $ diff --git a/module/story/view/activate.html.php b/module/story/view/activate.html.php index e07f98c552..18c08dfe88 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package story * @version $Id: activate.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/story/view/assignto.html.php b/module/story/view/assignto.html.php index 9aeb9a59a9..8db1b45f73 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 504d5673d8..471f4ae061 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package story * @version $Id$ diff --git a/module/story/view/batchcreate.html.php b/module/story/view/batchcreate.html.php index 5bd7802f66..94c57d80de 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yangyang Shi * @package story * @version $Id$ diff --git a/module/story/view/batchedit.html.php b/module/story/view/batchedit.html.php index 78ba3cc0ab..2968aa08a8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package story * @version $Id$ diff --git a/module/story/view/change.html.php b/module/story/view/change.html.php index 03cf6d0ec8..8794a78d7a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package story * @version $Id: change.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/story/view/close.html.php b/module/story/view/close.html.php index 71375559c9..f27d1c9d12 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package story * @version $Id: close.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/story/view/create.html.php b/module/story/view/create.html.php index cbf7cb1113..de13873e57 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package story * @version $Id: create.html.php 4902 2013-06-26 05:25:58Z wyd621@gmail.com $ diff --git a/module/story/view/edit.html.php b/module/story/view/edit.html.php index 2b9b148f7a..d024d2c274 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package story * @version $Id: edit.html.php 4645 2013-04-11 08:32:09Z chencongzhi520@gmail.com $ diff --git a/module/story/view/export.html.php b/module/story/view/export.html.php index 8e008a4956..ebe1453b9e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package story * @version $Id$ diff --git a/module/story/view/linkstory.html.php b/module/story/view/linkstory.html.php index a91fbd510c..62d0ce8431 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 2c57fdf393..2b663c0aa0 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id: report.html.php 1594 2011-03-13 07:27:55Z wwccss $ diff --git a/module/story/view/review.html.php b/module/story/view/review.html.php index aa28912d7e..1e1d20a6dc 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package story * @version $Id: review.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/story/view/sendmail.html.php b/module/story/view/sendmail.html.php index 7683112545..8189cbd958 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package bug * @version $Id: sendmail.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/story/view/view.html.php b/module/story/view/view.html.php index f84af9abfa..fa43cce231 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package story * @version $Id: view.html.php 4952 2013-07-02 01:14:58Z chencongzhi520@gmail.com $ diff --git a/module/story/view/zerocase.html.php b/module/story/view/zerocase.html.php index 37dfa0bd6a..e9302c0db0 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package product * @version $Id: browse.html.php 4909 2013-06-26 07:23:50Z chencongzhi520@gmail.com $ diff --git a/module/svn/control.php b/module/svn/control.php index d7b05b72d2..9514eccd65 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package svn * @version $Id$ diff --git a/module/svn/lang/de.php b/module/svn/lang/de.php index ee6f85314d..19030ae575 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package svn * @version $Id$ diff --git a/module/svn/lang/en.php b/module/svn/lang/en.php index e10c7a65b9..c558f4dae0 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package svn * @version $Id$ diff --git a/module/svn/lang/fr.php b/module/svn/lang/fr.php index 8a5eb0e925..c5db2388fa 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package svn * @version $Id$ diff --git a/module/svn/lang/zh-cn.php b/module/svn/lang/zh-cn.php index 861a1a1d75..7fc5193d43 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package svn * @version $Id$ diff --git a/module/svn/lang/zh-tw.php b/module/svn/lang/zh-tw.php index 638eab6883..1cfdae4d34 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package svn * @version $Id$ diff --git a/module/svn/model.php b/module/svn/model.php index ff6cb05862..29363543c8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package svn * @version $Id$ diff --git a/module/svn/syncer/syncer.php b/module/svn/syncer/syncer.php index 7baf5487a5..6d7ce8e8e3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package svn * @version $Id$ diff --git a/module/svn/view/cat.html.php b/module/svn/view/cat.html.php index 6984cdfe99..a1180f1613 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/svn/view/diff.html.php b/module/svn/view/diff.html.php index 121963cd73..24083d920c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package file * @version $Id$ diff --git a/module/task/control.php b/module/task/control.php index 3450325326..a2c2441628 100755 --- a/module/task/control.php +++ b/module/task/control.php @@ -2,8 +2,8 @@ /** * The control file of task module of ZenTaoPMS. * - * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) - * @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL + * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com) + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package task * @version $Id: control.php 5106 2013-07-12 01:28:54Z chencongzhi520@gmail.com $ diff --git a/module/task/lang/de.php b/module/task/lang/de.php index 80d16fef16..ffd67f7193 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package task * @version $Id: en.php 5040 2013-07-06 06:22:18Z zhujinyonging@gmail.com $ diff --git a/module/task/lang/en.php b/module/task/lang/en.php index e58b0af3cb..0e9301092b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package task * @version $Id: en.php 5040 2013-07-06 06:22:18Z zhujinyonging@gmail.com $ diff --git a/module/task/lang/fr.php b/module/task/lang/fr.php index eb881365e9..271036ca87 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package task * @version $Id: en.php 5040 2013-07-06 06:22:18Z zhujinyonging@gmail.com $ diff --git a/module/task/lang/zh-cn.php b/module/task/lang/zh-cn.php index cbac8bd7c4..88814d0cce 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package task * @version $Id: zh-cn.php 5040 2013-07-06 06:22:18Z zhujinyonging@gmail.com $ diff --git a/module/task/lang/zh-tw.php b/module/task/lang/zh-tw.php index 1fac878008..a54b405789 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package task * @version $Id: zh-tw.php 5040 2013-07-06 06:22:18Z zhujinyonging@gmail.com $ diff --git a/module/task/model.php b/module/task/model.php index dbf9d00354..d0203c576b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package task * @version $Id: model.php 5154 2013-07-16 05:51:02Z chencongzhi520@gmail.com $ diff --git a/module/task/view/activate.html.php b/module/task/view/activate.html.php index 32c9ad1d09..d23301ad33 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Jia Fu * @package task * @version $Id: start.html.php 935 2010-07-06 07:49:24Z jajacn@126.com $ diff --git a/module/task/view/assignto.html.php b/module/task/view/assignto.html.php index d07e307723..50f162d9d9 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Jia Fu * @package task * @version $Id: complete.html.php 935 2010-07-06 07:49:24Z jajacn@126.com $ diff --git a/module/task/view/batchcreate.html.php b/module/task/view/batchcreate.html.php index 56a5f43e49..7d2eff9f44 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yangyang Shi * @package task * @version $Id$ diff --git a/module/task/view/batchedit.html.php b/module/task/view/batchedit.html.php index 656b743588..5652cb654a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package task * @version $Id$ diff --git a/module/task/view/cancel.html.php b/module/task/view/cancel.html.php index d76832f603..3cdec6997b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Jia Fu * @package task * @version $Id: cancel.html.php 935 2010-07-06 07:49:24Z jajacn@126.com $ diff --git a/module/task/view/close.html.php b/module/task/view/close.html.php index 1554394f01..f9bae7aa8a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author chunsheng wang * @package task * @version $Id: cancel.html.php 935 2010-07-06 07:49:24Z jajacn@126.com $ diff --git a/module/task/view/create.html.php b/module/task/view/create.html.php index 11974fb3b7..02035da732 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package task * @version $Id: create.html.php 5090 2013-07-10 05:49:24Z zhujinyonging@gmail.com $ diff --git a/module/task/view/edit.html.php b/module/task/view/edit.html.php index 792e3e548d..e53cafb64d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package task * @version $Id: edit.html.php 4897 2013-06-26 01:13:16Z wyd621@gmail.com $ diff --git a/module/task/view/editestimate.html.php b/module/task/view/editestimate.html.php index bc3d1d8de8..fe46b9e3ac 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package task * @version $Id: editestimate.html.php 4263 2013-02-24 08:50:46Z zhujinyonging@gmail.com $ diff --git a/module/task/view/export.html.php b/module/task/view/export.html.php index 51cfd4df9a..f541d0a35f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package task * @version $Id$ diff --git a/module/task/view/finish.html.php b/module/task/view/finish.html.php index 85210631e4..0e4085b0f5 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Jia Fu * @package task * @version $Id: complete.html.php 935 2010-07-06 07:49:24Z jajacn@126.com $ diff --git a/module/task/view/pause.html.php b/module/task/view/pause.html.php index a17e3f2596..79e8979635 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package task * @version $Id$ diff --git a/module/task/view/recordestimate.html.php b/module/task/view/recordestimate.html.php index a374ee899e..cf1e5d976d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package task * @version $Id: record.html.php 935 2013-01-08 07:49:24Z wwccss@gmail.com $ diff --git a/module/task/view/report.html.php b/module/task/view/report.html.php index e8b534589b..254ddd04cc 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 b17dc38216..94524ebe59 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Jia Fu * @package task * @version $Id: start.html.php 935 2010-07-06 07:49:24Z jajacn@126.com $ diff --git a/module/task/view/sendmail.html.php b/module/task/view/sendmail.html.php index e98028b957..4b12ec0b0d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Jia Fu * @package task * @version $Id: sendmail.html.php 867 2010-06-17 09:32:58Z yuren_@126.com $ diff --git a/module/task/view/start.html.php b/module/task/view/start.html.php index 6298764cbb..b99e88a42b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Jia Fu * @package task * @version $Id: start.html.php 935 2010-07-06 07:49:24Z jajacn@126.com $ diff --git a/module/task/view/view.html.php b/module/task/view/view.html.php index dbdb6f9ae0..a31acbb66f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package task * @version $Id: view.html.php 4808 2013-06-17 05:48:13Z zhujinyonging@gmail.com $ diff --git a/module/testcase/control.php b/module/testcase/control.php index aec7d434e3..e71c12ac8e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package case * @version $Id: control.php 5112 2013-07-12 02:51:33Z chencongzhi520@gmail.com $ diff --git a/module/testcase/lang/de.php b/module/testcase/lang/de.php index 04aaf818a5..d0f83a68a4 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testcase * @version $Id: en.php 4966 2013-07-02 02:59:25Z wyd621@gmail.com $ diff --git a/module/testcase/lang/en.php b/module/testcase/lang/en.php index 3f7b95cf59..5718fc6a10 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testcase * @version $Id: en.php 4966 2013-07-02 02:59:25Z wyd621@gmail.com $ diff --git a/module/testcase/lang/fr.php b/module/testcase/lang/fr.php index 0da54b785f..7645171cc7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testcase * @version $Id: en.php 4966 2013-07-02 02:59:25Z wyd621@gmail.com $ diff --git a/module/testcase/lang/zh-cn.php b/module/testcase/lang/zh-cn.php index 948d269c61..2f7d5e8c57 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testcase * @version $Id: zh-cn.php 4764 2013-05-05 04:07:04Z chencongzhi520@gmail.com $ diff --git a/module/testcase/lang/zh-tw.php b/module/testcase/lang/zh-tw.php index dbb9536ad1..b240bdcd39 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testcase * @version $Id: zh-tw.php 4764 2013-05-05 04:07:04Z chencongzhi520@gmail.com $ diff --git a/module/testcase/model.php b/module/testcase/model.php index 9ea00ab570..e66df373fa 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package case * @version $Id: model.php 5108 2013-07-12 01:59:04Z chencongzhi520@gmail.com $ diff --git a/module/testcase/view/batchcreate.html.php b/module/testcase/view/batchcreate.html.php index 83d199362c..0584fdb584 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yangyang Shi * @package testcase * @version $Id$ diff --git a/module/testcase/view/batchedit.html.php b/module/testcase/view/batchedit.html.php index 2ae9aff67c..d2427ba8a4 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package testcase * @version $Id$ diff --git a/module/testcase/view/browse.html.php b/module/testcase/view/browse.html.php index c21a5d3401..ce200ab723 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testcase * @version $Id: browse.html.php 5108 2013-07-12 01:59:04Z chencongzhi520@gmail.com $ diff --git a/module/testcase/view/create.html.php b/module/testcase/view/create.html.php index 832fd27b24..54433855c8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package case * @version $Id: create.html.php 4904 2013-06-26 05:37:45Z wyd621@gmail.com $ diff --git a/module/testcase/view/createbug.html.php b/module/testcase/view/createbug.html.php index 32d94fa41d..0e37528519 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package testcase * @version $Id$ diff --git a/module/testcase/view/edit.html.php b/module/testcase/view/edit.html.php index 3e458ea401..ac4c3c13e6 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package case * @version $Id: edit.html.php 5000 2013-07-03 08:20:57Z chencongzhi520@gmail.com $ diff --git a/module/testcase/view/export.html.php b/module/testcase/view/export.html.php index 134c633516..32b5f8cddc 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package testcase * @version $Id$ diff --git a/module/testcase/view/groupcase.html.php b/module/testcase/view/groupcase.html.php index 5eaf3fb0df..31df290fa7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package testcase * @version $Id$ diff --git a/module/testcase/view/importfromlib.html.php b/module/testcase/view/importfromlib.html.php index 36a654ca81..f25864f2ab 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package testcase * @version $Id diff --git a/module/testcase/view/index.html.php b/module/testcase/view/index.html.php index e2368fca58..1deb6bf36a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package bug * @version $Id: index.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/testcase/view/linkcases.html.php b/module/testcase/view/linkcases.html.php index 1784144146..b358c8502f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 592894dc88..501bf72314 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 3dd9d6e329..708023fcd6 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package case * @version $Id: view.html.php 5000 2013-07-03 08:20:57Z chencongzhi520@gmail.com $ diff --git a/module/testreport/control.php b/module/testreport/control.php index bf5c7349b6..033ff87ffd 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package testreport * @version $Id$ diff --git a/module/testreport/model.php b/module/testreport/model.php index 91a93400e6..22be9f82aa 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package testreport * @version $Id$ diff --git a/module/testreport/view/browse.html.php b/module/testreport/view/browse.html.php index ce8a5ae73a..20a1221384 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package testreport * @version $Id$ diff --git a/module/testreport/view/create.html.php b/module/testreport/view/create.html.php index 99a525a438..feb1b2ddd7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package testreport * @version $Id$ diff --git a/module/testreport/view/edit.html.php b/module/testreport/view/edit.html.php index f5fbc35909..0060819f2e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package testreport * @version $Id$ diff --git a/module/testreport/view/selecttask.html.php b/module/testreport/view/selecttask.html.php index bd1844ea13..0132267874 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 d249ff2434..30e03ba55d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package testreport * @version $Id$ diff --git a/module/testsuite/control.php b/module/testsuite/control.php index f7eb90298d..ce81242869 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 f07248683f..62c11e07dc 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 ffc5aa4288..013fe21932 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 afbd4c4831..1465ea44b6 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 e4de93b4b5..114a225bcc 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 b47de45f05..f8e3006a1a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 11177d1f3a..665f290c84 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 9ee9039c04..b6d0ffc989 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 7fd53a8e33..b1c17243d7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 dd9da27d28..680776813d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 712f2736af..b54bd41574 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 cc70c47329..bf0c2557eb 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 2fe9e653be..72e9b616be 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testtask * @version $Id: control.php 5114 2013-07-12 06:02:59Z chencongzhi520@gmail.com $ diff --git a/module/testtask/lang/de.php b/module/testtask/lang/de.php index 7341872ad1..87f60e58b6 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testtask * @version $Id: en.php 4490 2013-02-27 03:27:05Z wyd621@gmail.com $ diff --git a/module/testtask/lang/en.php b/module/testtask/lang/en.php index ad663e95e9..4280bd9766 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testtask * @version $Id: en.php 4490 2013-02-27 03:27:05Z wyd621@gmail.com $ diff --git a/module/testtask/lang/fr.php b/module/testtask/lang/fr.php index e2ac5a5b89..ea04ea3287 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testtask * @version $Id: en.php 4490 2013-02-27 03:27:05Z wyd621@gmail.com $ diff --git a/module/testtask/lang/zh-cn.php b/module/testtask/lang/zh-cn.php index 2ac854ba7b..df9ed6df5f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testtask * @version $Id: zh-cn.php 4490 2013-02-27 03:27:05Z wyd621@gmail.com $ diff --git a/module/testtask/lang/zh-tw.php b/module/testtask/lang/zh-tw.php index 137e686a7b..5d037e7649 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testtask * @version $Id: zh-tw.php 4490 2013-02-27 03:27:05Z wyd621@gmail.com $ diff --git a/module/testtask/model.php b/module/testtask/model.php index 36009064b8..af7c0c6b1c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testtask * @version $Id: model.php 5114 2013-07-12 06:02:59Z chencongzhi520@gmail.com $ diff --git a/module/testtask/view/activate.html.php b/module/testtask/view/activate.html.php index 9fc1179260..1cde8985f7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testtask * @version $Id: start.html.php 935 2013-01-16 07:49:24Z wwccss@gmail.com $ diff --git a/module/testtask/view/batchrun.html.php b/module/testtask/view/batchrun.html.php index 3088003410..48eed57c00 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package testcase * @version $Id$ diff --git a/module/testtask/view/block.html.php b/module/testtask/view/block.html.php index efef5f7c3e..27d8539071 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testtask * @version $Id: start.html.php 935 2013-01-16 07:49:24Z wwccss@gmail.com $ diff --git a/module/testtask/view/browse.html.php b/module/testtask/view/browse.html.php index b207d96364..44475d4a9a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testtask * @version $Id: browse.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/testtask/view/browseunits.html.php b/module/testtask/view/browseunits.html.php index a72d8b621b..cfc0c25e29 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testtask * @version $Id: browse.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/testtask/view/cases.html.php b/module/testtask/view/cases.html.php index 15cb6bde7c..54ba52db0b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package case * @version $Id: view.html.php 594 2010-03-27 13:44:07Z wwccss $ diff --git a/module/testtask/view/close.html.php b/module/testtask/view/close.html.php index f13019dbb3..8c8f576f17 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testtask * @version $Id: close.html.php 935 2013-01-16 07:49:24Z wwccss@gmail.com $ diff --git a/module/testtask/view/create.html.php b/module/testtask/view/create.html.php index 9e326013a0..36a92833b3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testtask * @version $Id: create.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/testtask/view/edit.html.php b/module/testtask/view/edit.html.php index 05e2ac7bd4..bb8b50d399 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testtask * @version $Id: edit.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/testtask/view/groupcase.html.php b/module/testtask/view/groupcase.html.php index 6b647d950d..45dbf4a280 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package testcase * @version $Id$ diff --git a/module/testtask/view/importunitresult.html.php b/module/testtask/view/importunitresult.html.php index 4921565247..fe089949a9 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testtask * @version $Id: create.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/testtask/view/linkcase.html.php b/module/testtask/view/linkcase.html.php index d2b5e898c5..07ad73eac5 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testtask * @version $Id: linkcase.html.php 4411 2013-02-22 00:56:04Z chencongzhi520@gmail.com $ diff --git a/module/testtask/view/report.html.php b/module/testtask/view/report.html.php index a9cf43155a..9b65cfc1dd 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 23b245be51..37e3905a72 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testtask * @version $Id: results.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/testtask/view/runcase.html.php b/module/testtask/view/runcase.html.php index fd0dafe213..e031353d10 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testtask * @version $Id: runcase.html.php 4723 2013-05-03 05:19:29Z chencongzhi520@gmail.com $ diff --git a/module/testtask/view/sendmail.html.php b/module/testtask/view/sendmail.html.php index 22e8e6aa08..1494b85194 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package bug * @version $Id: sendmail.html.php 3717 2012-12-10 00:37:07Z zhujinyonging@gmail.com $ diff --git a/module/testtask/view/start.html.php b/module/testtask/view/start.html.php index cfdeaf4e24..0353b2ffd2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package testtask * @version $Id: start.html.php 935 2013-01-16 07:49:24Z wwccss@gmail.com $ diff --git a/module/testtask/view/unitcases.html.php b/module/testtask/view/unitcases.html.php index f5b3c98dda..fb162beb93 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package testcase * @version $Id$ diff --git a/module/testtask/view/view.html.php b/module/testtask/view/view.html.php index 972cb14d0e..81ab97e7c1 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package case * @version $Id: view.html.php 4141 2013-01-18 06:15:13Z zhujinyonging@gmail.com $ diff --git a/module/todo/control.php b/module/todo/control.php index 1f94c8fb75..f682d3c489 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package todo * @version $Id: control.php 4976 2013-07-02 08:15:31Z wyd621@gmail.com $ diff --git a/module/todo/lang/de.php b/module/todo/lang/de.php index 5f49777b5b..c4801654d2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package todo * @version $Id: en.php 4676 2013-04-26 06:08:23Z chencongzhi520@gmail.com $ diff --git a/module/todo/lang/en.php b/module/todo/lang/en.php index 23d9fe7fbe..202b62452d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package todo * @version $Id: en.php 4676 2013-04-26 06:08:23Z chencongzhi520@gmail.com $ diff --git a/module/todo/lang/fr.php b/module/todo/lang/fr.php index 91770707ae..ac5907f6d4 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package todo * @version $Id: en.php 4676 2013-04-26 06:08:23Z chencongzhi520@gmail.com $ diff --git a/module/todo/lang/zh-cn.php b/module/todo/lang/zh-cn.php index c822faaa64..e5e11b9b0d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package todo * @version $Id: zh-cn.php 5022 2013-07-05 06:50:39Z chencongzhi520@gmail.com $ diff --git a/module/todo/lang/zh-tw.php b/module/todo/lang/zh-tw.php index 14751aa5b9..cef237c46f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package todo * @version $Id: zh-tw.php 5022 2013-07-05 06:50:39Z chencongzhi520@gmail.com $ diff --git a/module/todo/model.php b/module/todo/model.php index 62842cdd52..c60d101c53 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package todo * @version $Id: model.php 5035 2013-07-06 05:21:58Z wyd621@gmail.com $ diff --git a/module/todo/view/assignto.html.php b/module/todo/view/assignto.html.php index 99a56e6fe5..83f9cf9435 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 3ecd04ea88..80399c61f9 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package todo * @version $Id: create.html.php 2741 2012-04-07 07:24:21Z areyou123456 $ diff --git a/module/todo/view/batchedit.html.php b/module/todo/view/batchedit.html.php index fb610e94de..30319c9edb 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package todo * @version $Id: create.html.php 2741 2012-04-07 07:24:21Z areyou123456 $ diff --git a/module/todo/view/create.html.php b/module/todo/view/create.html.php index f092e01b62..b787b40cd5 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package todo * @version $Id: create.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/todo/view/edit.html.php b/module/todo/view/edit.html.php index 55d0fbf793..be41727f21 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package todo * @version $Id: edit.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/todo/view/export.html.php b/module/todo/view/export.html.php index 6fa24606a3..ed4ce1de45 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yangyang Shi * @package todo * @version $Id$ diff --git a/module/todo/view/view.html.php b/module/todo/view/view.html.php index be5197a7df..74d6226350 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package todo * @version $Id: view.html.php 4955 2013-07-02 01:47:21Z chencongzhi520@gmail.com $ diff --git a/module/tree/control.php b/module/tree/control.php index b0e92e677f..3c34f12db0 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package tree * @version $Id: control.php 5002 2013-07-03 08:25:39Z chencongzhi520@gmail.com $ diff --git a/module/tree/lang/de.php b/module/tree/lang/de.php index df134dfcec..388bdfdb05 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package tree * @version $Id: en.php 5045 2013-07-06 07:04:40Z zhujinyonging@gmail.com $ diff --git a/module/tree/lang/en.php b/module/tree/lang/en.php index 529f5277de..4c4af17327 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package tree * @version $Id: en.php 5045 2013-07-06 07:04:40Z zhujinyonging@gmail.com $ diff --git a/module/tree/lang/fr.php b/module/tree/lang/fr.php index dfe41b2b46..8800abe988 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package tree * @version $Id: en.php 5045 2013-07-06 07:04:40Z zhujinyonging@gmail.com $ diff --git a/module/tree/lang/zh-cn.php b/module/tree/lang/zh-cn.php index 9fec103ec4..da538582ae 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package tree * @version $Id: zh-cn.php 4836 2013-06-19 05:39:40Z zhujinyonging@gmail.com $ diff --git a/module/tree/lang/zh-tw.php b/module/tree/lang/zh-tw.php index 96f2d5c574..eca9f888a1 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package tree * @version $Id: zh-tw.php 4836 2013-06-19 05:39:40Z zhujinyonging@gmail.com $ diff --git a/module/tree/model.php b/module/tree/model.php index aabb12b286..684b58142f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package tree * @version $Id: model.php 5149 2013-07-16 01:47:01Z zhujinyonging@gmail.com $ diff --git a/module/tree/view/browse.html.php b/module/tree/view/browse.html.php index 1269cc4e67..3ba7dbf218 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package tree * @version $Id: browse.html.php 4796 2013-06-06 02:21:59Z zhujinyonging@gmail.com $ diff --git a/module/tree/view/browsetask.html.php b/module/tree/view/browsetask.html.php index aa00426b9d..5efb143d3f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package tree * @version $Id: browse.html.php 4796 2013-06-06 02:21:59Z zhujinyonging@gmail.com $ diff --git a/module/tree/view/edit.html.php b/module/tree/view/edit.html.php index cd05f431d2..92bafdd876 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package tree * @version $Id: edit.html.php 4795 2013-06-04 05:59:58Z zhujinyonging@gmail.com $ diff --git a/module/tutorial/control.php b/module/tutorial/control.php index a07fd934b3..a8d44dc424 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 ee74a53131..cceb6e977b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 74c13847cb..4b94da5844 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 a11d28eff5..cdcb79bc13 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 9d6db8f129..520f0ae701 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 e2ed59092d..fbac50b89d 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 f094439b5d..604148087a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package tutorial * @version $Id$ diff --git a/module/tutorial/view/index.html.php b/module/tutorial/view/index.html.php index 42c012ba3b..72096df2a7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 87376555e0..d9b9134fcf 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 0d9743d22e..754f9fd4b9 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package upgrade * @version $Id: control.php 5119 2013-07-12 08:06:42Z wyd621@gmail.com $ diff --git a/module/upgrade/lang/de.php b/module/upgrade/lang/de.php index 7e4312c9ad..c8c9d51cee 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package upgrade * @version $Id: en.php 5119 2013-07-12 08:06:42Z wyd621@gmail.com $ diff --git a/module/upgrade/lang/en.php b/module/upgrade/lang/en.php index 4620c5a3c3..7af24cb5e4 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package upgrade * @version $Id: en.php 5119 2013-07-12 08:06:42Z wyd621@gmail.com $ diff --git a/module/upgrade/lang/fr.php b/module/upgrade/lang/fr.php index bea24c5e35..6be4ca1121 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package upgrade * @version $Id: en.php 5119 2013-07-12 08:06:42Z wyd621@gmail.com $ diff --git a/module/upgrade/lang/zh-cn.php b/module/upgrade/lang/zh-cn.php index 35e00dcc9f..8b349e08e7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package upgrade * @version $Id: zh-cn.php 5119 2013-07-12 08:06:42Z wyd621@gmail.com $ diff --git a/module/upgrade/lang/zh-tw.php b/module/upgrade/lang/zh-tw.php index 2abfeea421..4ea7fedbd6 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package upgrade * @version $Id: zh-tw.php 5119 2013-07-12 08:06:42Z wyd621@gmail.com $ diff --git a/module/upgrade/model.php b/module/upgrade/model.php index 35551f4c89..741deea7b3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package upgrade * @version $Id: model.php 5019 2013-07-05 02:02:31Z wyd621@gmail.com $ diff --git a/module/upgrade/view/afterexec.html.php b/module/upgrade/view/afterexec.html.php index 32ff8e7d4b..d1c2433b2e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package upgrade * @version $Id: execute.html.php 5119 2013-07-12 08:06:42Z wyd621@gmail.com $ diff --git a/module/upgrade/view/backup.html.php b/module/upgrade/view/backup.html.php index 97fc78213e..fc63d73623 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package upgrade * @version $Id: index.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/upgrade/view/checkextension.html.php b/module/upgrade/view/checkextension.html.php index 48fcd0b097..3ea094fe17 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package upgrade * @version $Id$ diff --git a/module/upgrade/view/confirm.html.php b/module/upgrade/view/confirm.html.php index 052e6519df..bdbaf1ebd0 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package upgrade * @version $Id: confirm.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/upgrade/view/consistency.html.php b/module/upgrade/view/consistency.html.php index b6b1527dab..d2015d12e2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package upgrade * @version $Id$ diff --git a/module/upgrade/view/execute.html.php b/module/upgrade/view/execute.html.php index 8668911865..d7f6bc3e0e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package upgrade * @version $Id: execute.html.php 5119 2013-07-12 08:06:42Z wyd621@gmail.com $ diff --git a/module/upgrade/view/license.html.php b/module/upgrade/view/license.html.php index 9f0b41ae57..2b2408aa05 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 2fa3b6812e..341a1b14bf 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package upgrade * @version $Id$ diff --git a/module/upgrade/view/mergerepo.html.php b/module/upgrade/view/mergerepo.html.php index 3b490dcefe..463729c431 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package upgrade * @version $Id$ diff --git a/module/upgrade/view/mergetips.html.php b/module/upgrade/view/mergetips.html.php index f991d5cc02..bc6820fdfe 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package upgrade * @version $Id$ diff --git a/module/upgrade/view/moveextfiles.html.php b/module/upgrade/view/moveextfiles.html.php index e00429634d..fc2979d376 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 5cbf408bb8..2fb600c11b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 db4a87fa3f..387b82c2c5 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 3c7ee6df8f..6ad0528cb5 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package upgrade * @version $Id$ diff --git a/module/user/control.php b/module/user/control.php index 85a8db3d6c..ad3c48a31e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package user * @version $Id: control.php 5005 2013-07-03 08:39:11Z chencongzhi520@gmail.com $ diff --git a/module/user/lang/de.php b/module/user/lang/de.php index d9336200e2..fdaf5b5c35 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package user * @version $Id: en.php 5053 2013-07-06 08:17:37Z wyd621@gmail.com $ diff --git a/module/user/lang/en.php b/module/user/lang/en.php index 88505f426e..407457c5cd 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package user * @version $Id: en.php 5053 2013-07-06 08:17:37Z wyd621@gmail.com $ diff --git a/module/user/lang/fr.php b/module/user/lang/fr.php index 8f41ef6329..092feb0829 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package user * @version $Id: en.php 5053 2013-07-06 08:17:37Z wyd621@gmail.com $ diff --git a/module/user/lang/zh-cn.php b/module/user/lang/zh-cn.php index 16be98a0c4..82e6f10579 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package user * @version $Id: zh-cn.php 5053 2013-07-06 08:17:37Z wyd621@gmail.com $ diff --git a/module/user/lang/zh-tw.php b/module/user/lang/zh-tw.php index 4d19575364..7f8b54474f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package user * @version $Id: zh-tw.php 5053 2013-07-06 08:17:37Z wyd621@gmail.com $ diff --git a/module/user/model.php b/module/user/model.php index 27fe098394..3b3deabb3f 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package user * @version $Id: model.php 5005 2013-07-03 08:39:11Z chencongzhi520@gmail.com $ diff --git a/module/user/view/batchcreate.html.php b/module/user/view/batchcreate.html.php index 87ad325974..76f4e909ef 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yangyang Shi * @package story * @version $Id$ diff --git a/module/user/view/batchedit.html.php b/module/user/view/batchedit.html.php index 64b44b5ee7..1187fbacd9 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yangyang Shi * @package story * @version $Id$ diff --git a/module/user/view/bug.html.php b/module/user/view/bug.html.php index 0e8e5711f2..3a92c71feb 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package dashboard * @version $Id: bug.html.php 4771 2013-05-05 07:41:02Z chencongzhi520@gmail.com $ diff --git a/module/user/view/create.html.php b/module/user/view/create.html.php index ddae050193..667e7aaf23 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package user * @version $Id: create.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/user/view/cropavatar.html.php b/module/user/view/cropavatar.html.php index 24fadecd4f..b0d9e3d946 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 5731ed36e3..b653ee69e8 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package user * @version $Id$ diff --git a/module/user/view/deny.html.php b/module/user/view/deny.html.php index 3f606f1a6e..448cb0298b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: deny.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/user/view/dynamic.html.php b/module/user/view/dynamic.html.php index de4d6b9c38..545c448081 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package dashboard * @version $Id: action->dynamic.html.php 1477 2011-03-01 15:25:50Z wwccss $ diff --git a/module/user/view/edit.html.php b/module/user/view/edit.html.php index 875bf6eddd..21012bdcb5 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package user * @version $Id: edit.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $ diff --git a/module/user/view/execution.html.php b/module/user/view/execution.html.php index 136045b699..2cca0f0c01 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package dashboard * @version $Id: project.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/user/view/issue.html.php b/module/user/view/issue.html.php index 35ac266185..293fd21d2c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 24d840c7fa..d70aeca9e7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package ZenTaoPMS * @version $Id: login.html.php 5084 2013-07-10 01:31:38Z wyd621@gmail.com $ diff --git a/module/user/view/profile.html.php b/module/user/view/profile.html.php index 23c8d98c82..055cacb880 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package user * @version $Id: profile.html.php 4976 2013-07-02 08:15:31Z wyd621@gmail.com $ diff --git a/module/user/view/reset.html.php b/module/user/view/reset.html.php index 3160a488d8..d0c344cd26 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package user * @version $Id$ diff --git a/module/user/view/story.html.php b/module/user/view/story.html.php index 7cabefed50..f04dff18f1 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Congzhi Chen * @package dashboard * @version $Id: story.html.php 4771 2013-05-05 07:41:02Z chencongzhi520@gmail.com $ diff --git a/module/user/view/task.html.php b/module/user/view/task.html.php index 78057afb7f..d8c609f963 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package dashboard * @version $Id: task.html.php 4771 2013-05-05 07:41:02Z chencongzhi520@gmail.com $ diff --git a/module/user/view/team.html.php b/module/user/view/team.html.php index 6d03e1e279..05ac8cdb5e 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package dashboard * @version $Id: team.html.php 4129 2013-01-18 01:58:14Z wwccss $ diff --git a/module/user/view/testcase.html.php b/module/user/view/testcase.html.php index 35776a437a..2563327df3 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package dashboard * @version $Id: test.html.php 1191 2010-11-13 07:30:35Z jajacn@126.com $ diff --git a/module/user/view/testtask.html.php b/module/user/view/testtask.html.php index 68f29b3a7f..76cb6be568 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package dashboard * @version $Id$ diff --git a/module/user/view/todo.html.php b/module/user/view/todo.html.php index d13e9139bb..a5b9508486 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 16e612a601..fa44af7ae7 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package webhook * @version $Id$ diff --git a/module/webhook/model.php b/module/webhook/model.php index ed26b44ea0..02428402bd 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package webhook * @version $Id$ diff --git a/module/webhook/view/browse.html.php b/module/webhook/view/browse.html.php index cf1d4f2735..208070ddb2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package webhook * @version $Id$ diff --git a/module/webhook/view/choosedept.html.php b/module/webhook/view/choosedept.html.php index 2ccf6fc9cc..b962c1ee2a 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Yidong Wang * @package webhook * @version $Id$ diff --git a/module/webhook/view/create.html.php b/module/webhook/view/create.html.php index 895e387a29..553cd2e52b 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package webhook * @version $Id$ diff --git a/module/webhook/view/edit.html.php b/module/webhook/view/edit.html.php index 2e5b2def2d..ad1b8ce1ee 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package webhook * @version $Id$ diff --git a/module/webhook/view/header.html.php b/module/webhook/view/header.html.php index ef63c7605e..0da8bb39f2 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package webhook * @version $Id$ diff --git a/module/webhook/view/log.html.php b/module/webhook/view/log.html.php index e2ee827805..7a9569a729 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package log * @version $Id$ diff --git a/module/weekly/lang/de.php b/module/weekly/lang/de.php index 4ec836cbd4..18608dd719 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package weekly * @version $Id diff --git a/module/weekly/lang/en.php b/module/weekly/lang/en.php index 4ec836cbd4..18608dd719 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package weekly * @version $Id diff --git a/module/weekly/lang/fr.php b/module/weekly/lang/fr.php index 4ec836cbd4..18608dd719 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package weekly * @version $Id diff --git a/module/weekly/lang/vi.php b/module/weekly/lang/vi.php index 4ec836cbd4..18608dd719 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package weekly * @version $Id diff --git a/module/weekly/lang/zh-cn.php b/module/weekly/lang/zh-cn.php index 8de8f8e5d4..a57fd3b190 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package weekly * @version $Id diff --git a/module/weekly/lang/zh-tw.php b/module/weekly/lang/zh-tw.php index 2cea975d65..68dfbf19ae 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Chunsheng Wang * @package weekly * @version $Id diff --git a/module/weekly/view/index.html.php b/module/weekly/view/index.html.php index bb9911f3e5..9ccb5ec4e5 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 2e35841221..468fde14c0 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 859dd72b7a..2310989d49 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author * @package api * @version v1.0.0 diff --git a/test/lib/init.php b/test/lib/init.php index d2e68b9639..6a56270c9c 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Guanxing * @package ZenTaoPMS * @version $Id: $ diff --git a/test/lib/utils.php b/test/lib/utils.php index 8195f00ae8..86430cd9ef 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Guanxing * @package ZenTaoPMS * @version $Id: $ diff --git a/www/api.php b/www/api.php index c61192a19b..c49b0b40ee 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 a4e830c101..0c283f75ca 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 bca2a66026..96361885e5 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Guanxing * @package ZenTaoPMS * @version $Id: $ diff --git a/www/install.php.tmp b/www/install.php.tmp index ee4eaa9343..122755b3fa 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 85e28ea2f5..42c66c6689 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) or AGPL +* @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 a287283338..cb16f99203 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 aa1468fde9..934576de69 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 df251ff201..d658995496 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 238210412a..82b3c29779 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @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 ea5e3f2c4f..8d83b0cd89 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) or AGPL + * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html) * @author Gang Liu * @package setting * @version $Id$ 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 4/5] * 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 5/5] * 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)))