diff --git a/module/upgrade/control.php b/module/upgrade/control.php index 8ac8473571..93ba30e58d 100644 --- a/module/upgrade/control.php +++ b/module/upgrade/control.php @@ -702,10 +702,11 @@ class upgrade extends control * * @param string $fromVersion * @param string $processed + * @param string $skipConfirm * @access public * @return void */ - public function afterExec($fromVersion, $processed = 'no') + public function afterExec($fromVersion, $processed = 'no', $skipConfirm = 'no') { $alterSQL = $this->upgrade->checkConsistency($this->config->version); if(!empty($alterSQL)) @@ -715,6 +716,8 @@ class upgrade extends control return print($this->display('upgrade', 'consistency')); } + $EXTfiles = $this->upgrade->getEXTFiles(); + if(!empty($EXTfiles) and $skipConfirm == 'no') $this->locate(inlink('confirmCustom', "fromVersion=$fromVersion")); unset($_SESSION['user']); if($processed == 'no') @@ -865,16 +868,57 @@ class upgrade extends control } /** - * Move Extent files. + * Confirm custom. * + * @param string $fromVersion * @access public * @return void */ - public function moveEXTFiles() + public function confirmCustom($fromVersion) { - if(!empty($_POST)) $this->upgrade->moveEXTFiles(); + $this->view->fromVersion = $fromVersion; + + $this->display(); + } + + /** + * Move Extent files. + * + * @param string $fromVersion + * @access public + * @return void + */ + public function moveEXTFiles($fromVersion) + { + $errorMessage = ''; + $command = ''; + $result = 'success'; + if(!empty($_POST)) + { + $response = $this->upgrade->moveEXTFiles(); + $result = $response['result']; + + if($result == 'success') + { + $response = $this->upgrade->removeChargeDir(); + $result = $response['result']; + } + + if($result == 'fail') + { + $errorMessage = $response['message']; + $command = $response['command']; + } + + if($result == 'success') $this->locate($this->inlink('afterExec', "fromVersion=$fromVersion&processed=no&skipConfirm=yes")); + } + + $this->view->files = $this->upgrade->getEXTFiles(); + $this->view->result = $result; + $this->view->errorMessage = $errorMessage; + $this->view->command = $command; + $this->view->fromVersion = $fromVersion; - $this->view->files = $this->upgrade->getEXTFiles(); $this->display(); } } diff --git a/module/upgrade/css/confirmcustom.css b/module/upgrade/css/confirmcustom.css new file mode 100644 index 0000000000..9dae7eaf6c --- /dev/null +++ b/module/upgrade/css/confirmcustom.css @@ -0,0 +1,3 @@ +.modal-dialog {margin-top: 15%;} +.modal-header {border-bottom: 0px;} +.modal-footer {border-top: 0px;} diff --git a/module/upgrade/css/moveextfiles.css b/module/upgrade/css/moveextfiles.css index 8c1e7088ce..75adcd9dc2 100644 --- a/module/upgrade/css/moveextfiles.css +++ b/module/upgrade/css/moveextfiles.css @@ -1,7 +1,9 @@ -.modal-dialog {margin-top: 5px;} +.modal-dialog {margin-top: 10px;} +.modal-header {padding-bottom: 10px;} .modal-body {overflow-y: scroll;} -@media screen and (max-width: 1920px) {.modal-body {height:550px}} -@media screen and (max-width: 1366px) {.modal-body {height:450px}} +@media screen and (max-width: 1920px) {.modal-body {height:500px}} +@media screen and (max-width: 1366px) {.modal-body {height:400px}} .modal-body .panel-heading {padding: 0px;} .modal-body #collapseOne {margin-left: 20px;} +.alert {padding: 5px; margin-top: 5px !important;} diff --git a/module/upgrade/js/moveextfiles.js b/module/upgrade/js/moveextfiles.js index 13c70891a2..dafd7f89ab 100644 --- a/module/upgrade/js/moveextfiles.js +++ b/module/upgrade/js/moveextfiles.js @@ -26,3 +26,14 @@ $("[name^='files']").click(function() $('#checkAll').prop('checked', false); } }) + +/** + * Refresh page. + * + * @access public + * @return void + */ +function refreshPage() +{ + location.reload(true); +} diff --git a/module/upgrade/lang/en.php b/module/upgrade/lang/en.php index f94fa42bfa..471a3adfef 100644 --- a/module/upgrade/lang/en.php +++ b/module/upgrade/lang/en.php @@ -115,7 +115,9 @@ $lang->upgrade->programName = 'Program Name'; $lang->upgrade->projectName = 'Project Name'; $lang->upgrade->moveEXTFiles = 'Migrate Expansion Files'; $lang->upgrade->fileName = 'File Name'; -$lang->upgrade->viewChargeFile = 'View Charge Version Files'; +$lang->upgrade->next = 'Next'; +$lang->upgrade->yes = 'Yes'; +$lang->upgrade->no = 'No'; $lang->upgrade->newProgram = 'Create'; $lang->upgrade->editedName = 'New Name'; @@ -130,6 +132,9 @@ $lang->upgrade->needBuild4Add = 'Full text retrieval has been added in this $lang->upgrade->errorEngineInnodb = 'Your MySQL does not support InnoDB data table engine. Please modify it to MyISAM and try again.'; $lang->upgrade->duplicateProject = "Project name in the same program cannot be duplicate. Please adjust the duplicate names."; $lang->upgrade->upgradeTips = "Historically deleted data cannot be upgraded, and restoration is not supported after the upgrade. Please be aware."; +$lang->upgrade->moveEXTFileFail = 'The migration file failed, please execute the above command and refresh!'; +$lang->upgrade->confirmCustomTip = 'Please confirm whether customization or secondary development has been done'; +$lang->upgrade->moveExtFileTip = 'The following files will be migrated to zentaopms/extension/custom'; $lang->upgrade->projectType['project'] = "Upgrade the historical {$lang->projectCommon} as a project"; $lang->upgrade->projectType['execution'] = "Upgrade the historical {$lang->projectCommon} as an execution"; diff --git a/module/upgrade/lang/zh-cn.php b/module/upgrade/lang/zh-cn.php index ca9a8dccaa..6e03a0f152 100644 --- a/module/upgrade/lang/zh-cn.php +++ b/module/upgrade/lang/zh-cn.php @@ -115,7 +115,9 @@ $lang->upgrade->programName = '项目集名称'; $lang->upgrade->projectName = '项目名称'; $lang->upgrade->moveEXTFiles = '迁移插件文件'; $lang->upgrade->fileName = '文件名称'; -$lang->upgrade->viewChargeFile = '查看收费版本文件'; +$lang->upgrade->next = '下一步'; +$lang->upgrade->yes = '是'; +$lang->upgrade->no = '否'; $lang->upgrade->newProgram = '新建'; $lang->upgrade->editedName = '调整后名称'; @@ -130,6 +132,9 @@ $lang->upgrade->needBuild4Add = '本次升级需要创建索引。请到 [ $lang->upgrade->errorEngineInnodb = '您当前的数据库不支持使用InnoDB数据表引擎,请修改为MyISAM后重试。'; $lang->upgrade->duplicateProject = "同一个项目集内项目名称不能重复,请调整重名的项目名称"; $lang->upgrade->upgradeTips = "历史删除数据不参与升级,升级后将不支持还原,请知悉"; +$lang->upgrade->moveEXTFileFail = '迁移文件失败, 请执行上面命令后刷新!'; +$lang->upgrade->confirmCustomTip = '请确认是否做过定制或二次开发'; +$lang->upgrade->moveExtFileTip = '如下文件将会迁移到zentaopms/extension/custom下'; $lang->upgrade->projectType['project'] = "把历史的{$lang->projectCommon}作为项目升级"; $lang->upgrade->projectType['execution'] = "把历史的{$lang->projectCommon}作为执行升级"; diff --git a/module/upgrade/maxfiles.php b/module/upgrade/maxfiles.php new file mode 100644 index 0000000000..58b98a8736 --- /dev/null +++ b/module/upgrade/maxfiles.php @@ -0,0 +1,6350 @@ +account/config.php +account/control.php +account/lang/de.php +account/lang/en.php +account/lang/fr.php +account/lang/zh-cn.php +account/lang/zh-tw.php +account/model.php +account/view/browse.html.php +account/view/create.html.php +account/view/edit.html.php +account/view/view.html.php +action/config.php +action/control.php +action/css/index.html +action/css/trash.css +action/ext/config/effort.php +action/ext/config/feedback.php +action/ext/config/flow.php +action/ext/config/index.html +action/ext/config/oa.php +action/ext/config/ops.php +action/ext/config/traincourse.php +action/ext/config/vm.php +action/ext/config/zentaomax.php +action/ext/index.html +action/ext/lang/de/crystal.php +action/ext/lang/de/effort.php +action/ext/lang/de/feedback.php +action/ext/lang/de/flow.php +action/ext/lang/de/oa.php +action/ext/lang/de/ops.php +action/ext/lang/de/repo.php +action/ext/lang/de/traincourse.php +action/ext/lang/de/vm.php +action/ext/lang/de/xuanxuan.php +action/ext/lang/de/zentaobiz.php +action/ext/lang/en/cmmi.php +action/ext/lang/en/crystal.php +action/ext/lang/en/effort.php +action/ext/lang/en/feedback.php +action/ext/lang/en/flow.php +action/ext/lang/en/index.html +action/ext/lang/en/oa.php +action/ext/lang/en/ops.php +action/ext/lang/en/repo.php +action/ext/lang/en/traincourse.php +action/ext/lang/en/vm.php +action/ext/lang/en/xuanxuan.php +action/ext/lang/en/zentaobiz.php +action/ext/lang/fr/crystal.php +action/ext/lang/fr/effort.php +action/ext/lang/fr/feedback.php +action/ext/lang/fr/flow.php +action/ext/lang/fr/oa.php +action/ext/lang/fr/ops.php +action/ext/lang/fr/repo.php +action/ext/lang/fr/traincourse.php +action/ext/lang/fr/vm.php +action/ext/lang/fr/zentaobiz.php +action/ext/lang/index.html +action/ext/lang/vi/crystal.php +action/ext/lang/vi/effort.php +action/ext/lang/vi/feedback.php +action/ext/lang/vi/flow.php +action/ext/lang/vi/index.html +action/ext/lang/vi/oa.php +action/ext/lang/vi/ops.php +action/ext/lang/vi/repo.php +action/ext/lang/vi/zentaobiz.php +action/ext/lang/zh-cn/cmmi.php +action/ext/lang/zh-cn/crystal.php +action/ext/lang/zh-cn/effort.php +action/ext/lang/zh-cn/feedback.php +action/ext/lang/zh-cn/flow.php +action/ext/lang/zh-cn/index.html +action/ext/lang/zh-cn/oa.php +action/ext/lang/zh-cn/ops.php +action/ext/lang/zh-cn/repo.php +action/ext/lang/zh-cn/traincourse.php +action/ext/lang/zh-cn/vm.php +action/ext/lang/zh-cn/xuanxuan.php +action/ext/lang/zh-cn/zentaobiz.php +action/ext/lang/zh-tw/cmmi.php +action/ext/lang/zh-tw/crystal.php +action/ext/lang/zh-tw/effort.php +action/ext/lang/zh-tw/feedback.php +action/ext/lang/zh-tw/flow.php +action/ext/lang/zh-tw/oa.php +action/ext/lang/zh-tw/ops.php +action/ext/lang/zh-tw/repo.php +action/ext/lang/zh-tw/traincourse.php +action/ext/lang/zh-tw/vm.php +action/ext/lang/zh-tw/xuanxuan.php +action/ext/lang/zh-tw/zentaobiz.php +action/ext/model/class/feedback.class.php +action/ext/model/class/flow.class.php +action/ext/model/class/index.html +action/ext/model/class/oa.class.php +action/ext/model/feedback.php +action/ext/model/flow.php +action/ext/model/hook/create.cmmi.php +action/ext/model/hook/create.xuanxuan.php +action/ext/model/hook/undelete.bizext.php +action/ext/model/hook/undelete.zentaobiz.php +action/ext/model/index.html +action/ext/model/oa.php +action/ext/model/xuanxuan.php +action/index.html +action/lang/de.php +action/lang/en.php +action/lang/fr.php +action/lang/index.html +action/lang/vi.php +action/lang/zh-cn.php +action/lang/zh-tw.php +action/model.php +action/view/index.html +action/view/trash.html.php +activity/config.php +activity/control.php +activity/css/browse.css +activity/css/edit.css +activity/lang/en.php +activity/lang/zh-cn.php +activity/lang/zh-tw.php +activity/model.php +activity/view/assignto.html.php +activity/view/batchcreate.html.php +activity/view/browse.html.php +activity/view/create.html.php +activity/view/edit.html.php +activity/view/outputlist.html.php +activity/view/view.html.php +admin/config.php +admin/control.php +admin/css/index.css +admin/css/index.html +admin/css/safe.en.css +admin/css/safe.vi.css +admin/css/safe.zh-cn.css +admin/css/safe.zh-tw.css +admin/ext/config/gantt.php +admin/ext/config/repo.php +admin/ext/control/license.php +admin/ext/control/uploadlicense.php +admin/ext/control/xuanxuan.php +admin/ext/css/xuanxuan/xuanxuan.css +admin/ext/js/xuanxuan/xuanxuan.js +admin/ext/lang/de/bizext.php +admin/ext/lang/de/xuanxuan.php +admin/ext/lang/de/zentaobiz.php +admin/ext/lang/en/bizext.php +admin/ext/lang/en/xuanxuan.php +admin/ext/lang/en/zentaobiz.php +admin/ext/lang/fr/bizext.php +admin/ext/lang/fr/zentaobiz.php +admin/ext/lang/vi/bizext.php +admin/ext/lang/vi/zentaobiz.php +admin/ext/lang/zh-cn/bizext.php +admin/ext/lang/zh-cn/xuanxuan.php +admin/ext/lang/zh-cn/zentaobiz.php +admin/ext/lang/zh-tw/bizext.php +admin/ext/lang/zh-tw/xuanxuan.php +admin/ext/lang/zh-tw/zentaobiz.php +admin/ext/model/class/xuanxuan.class.php +admin/ext/model/xuanxuan.php +admin/ext/view/index.bizext.html.hook.php +admin/ext/view/index.zentaobiz.html.hook.php +admin/ext/view/license.html.php +admin/ext/view/uploadlicense.html.php +admin/ext/view/xuanxuan.html.php +admin/index.html +admin/js/checkweak.js +admin/js/cleardata.js +admin/js/index.html +admin/js/log.js +admin/js/safe.js +admin/lang/de.php +admin/lang/en.php +admin/lang/fr.php +admin/lang/index.html +admin/lang/vi.php +admin/lang/zh-cn.php +admin/lang/zh-tw.php +admin/model.php +admin/view/bind.html.php +admin/view/certifyztemail.html.php +admin/view/certifyztmobile.html.php +admin/view/checkweak.html.php +admin/view/index.html +admin/view/index.html.php +admin/view/log.html.php +admin/view/register.html.php +admin/view/safe.html.php +admin/view/sso.html.php +admin/view/ztcompany.html.php +api/config.php +api/control.php +api/css/common.css +api/css/create.css +api/css/createlib.css +api/css/debug.css +api/css/edit.css +api/css/index.css +api/css/index.html +api/css/struct.css +api/ext/control/getlicenses.php +api/ext/control/mobilecomment.php +api/ext/control/mobilegetcustom.php +api/ext/control/mobilegethistory.php +api/ext/control/mobilegetinfo.php +api/ext/control/mobilegetlist.php +api/ext/control/mobilegetuser.php +api/ext/control/mobilegetusers.php +api/ext/lang/de/clientapi.php +api/ext/lang/en/clientapi.php +api/ext/lang/fr/clientapi.php +api/ext/lang/vi/clientapi.php +api/ext/lang/zh-cn/clientapi.php +api/ext/lang/zh-tw/clientapi.php +api/ext/model/bizext.php +api/ext/model/class/bizext.class.php +api/ext/model/class/clientapi.class.php +api/ext/model/clientapi.php +api/index.html +api/js/common.js +api/js/create.js +api/js/createlib.js +api/js/createrelease.js +api/js/createstruct.js +api/js/debug.js +api/js/edit.js +api/js/editstruct.js +api/js/index.html +api/js/index.js +api/js/struct.js +api/lang/de.php +api/lang/en.php +api/lang/fr.php +api/lang/index.html +api/lang/vi.php +api/lang/zh-cn.php +api/lang/zh-tw.php +api/model.php +api/view/content.html.php +api/view/create.html.php +api/view/createlib.html.php +api/view/createrelease.html.php +api/view/createstruct.html.php +api/view/debug.html.php +api/view/edit.html.php +api/view/editlib.html.php +api/view/editstruct.html.php +api/view/index.html +api/view/index.html.php +api/view/releases.html.php +api/view/struct.html.php +assetlib/config.php +assetlib/control.php +assetlib/css/common.css +assetlib/css/docview.css +assetlib/js/common.js +assetlib/js/docview.js +assetlib/js/editdoc.js +assetlib/js/editopportunity.js +assetlib/js/editrisk.js +assetlib/lang/en.php +assetlib/lang/zh-cn.php +assetlib/lang/zh-tw.php +assetlib/model.php +assetlib/view/approve.html.php +assetlib/view/assignto.html.php +assetlib/view/browse.html.php +assetlib/view/caselib.html.php +assetlib/view/create.html.php +assetlib/view/doclist.html.php +assetlib/view/docview.html.php +assetlib/view/edit.html.php +assetlib/view/editdoc.html.php +assetlib/view/editissue.html.php +assetlib/view/editopportunity.html.php +assetlib/view/editrisk.html.php +assetlib/view/editstory.html.php +assetlib/view/importdoc.html.php +assetlib/view/importissue.html.php +assetlib/view/importopportunity.html.php +assetlib/view/importrisk.html.php +assetlib/view/importstory.html.php +assetlib/view/issue.html.php +assetlib/view/issueview.html.php +assetlib/view/opportunity.html.php +assetlib/view/opportunityview.html.php +assetlib/view/risk.html.php +assetlib/view/riskview.html.php +assetlib/view/story.html.php +assetlib/view/storyview.html.php +assetlib/view/view.html.php +attend/config.php +attend/control.php +attend/css/browse.css +attend/css/common.css +attend/css/detail.css +attend/css/personal.css +attend/css/settings.css +attend/css/stat.css +attend/ext/control/detail.php +attend/ext/control/exportstat.php +attend/ext/css/browse/zentaobiz.css +attend/ext/css/common/zentaobiz.css +attend/ext/css/detail/zentaobiz.css +attend/ext/css/personal/zentaobiz.css +attend/ext/css/personalsettings/zentaobiz.css +attend/ext/css/review/zentaobiz.css +attend/ext/css/setmanager/zentaobiz.css +attend/ext/css/settings/zentaobiz.css +attend/ext/css/stat/zentaobiz.css +attend/ext/js/browsereview/zentaobiz.js +attend/ext/js/review/zentaobiz.js +attend/ext/js/stat/stat.js +attend/ext/lang/de/zentaobiz.php +attend/ext/lang/en/zentaobiz.php +attend/ext/lang/fr/zentaobiz.php +attend/ext/lang/vi/zentaobiz.php +attend/ext/lang/zh-cn/zentaobiz.php +attend/ext/lang/zh-tw/zentaobiz.php +attend/ext/model/class/oa.class.php +attend/ext/model/oa.php +attend/ext/view/browse.oa.html.hook.php +attend/ext/view/detail.oa.html.hook.php +attend/ext/view/m.edit.oa.html.hook.php +attend/ext/view/personal.html.php +attend/ext/view/personalsettings.oa.html.hook.php +attend/ext/view/setmanager.oa.html.hook.php +attend/ext/view/settings.oa.html.hook.php +attend/js/browse.js +attend/js/browsereview.js +attend/js/common.js +attend/js/detail.js +attend/js/edit.js +attend/js/personal.js +attend/js/personalsettings.js +attend/js/setmanager.js +attend/js/settings.js +attend/js/stat.js +attend/lang/de.php +attend/lang/en.php +attend/lang/fr.php +attend/lang/vi.php +attend/lang/zh-cn.php +attend/lang/zh-tw.php +attend/model.php +attend/view/browse.html.php +attend/view/browsereview.html.php +attend/view/detail.html.php +attend/view/edit.html.php +attend/view/export.html.php +attend/view/exportstat.html.php +attend/view/m.browsereview.html.php +attend/view/m.edit.html.php +attend/view/m.personal.html.php +attend/view/m.review.html.php +attend/view/m.sendmail.html.php +attend/view/personal.html.php +attend/view/personalsettings.html.php +attend/view/review.html.php +attend/view/sendmail.html.php +attend/view/setmanager.html.php +attend/view/settings.html.php +attend/view/stat.html.php +attend/view/x.browsereview.html.php +auditcl/config.php +auditcl/control.php +auditcl/css/browse.css +auditcl/js/edit.js +auditcl/lang/en.php +auditcl/lang/zh-cn.php +auditcl/lang/zh-tw.php +auditcl/model.php +auditcl/view/batchcreate.html.php +auditcl/view/batchedit.html.php +auditcl/view/browse.html.php +auditcl/view/edit.html.php +auditcl/view/view.html.php +auditplan/config.php +auditplan/control.php +auditplan/css/browse.css +auditplan/lang/en.php +auditplan/lang/zh-cn.php +auditplan/lang/zh-tw.php +auditplan/model.php +auditplan/view/assignto.html.php +auditplan/view/batchcheck.html.php +auditplan/view/batchcreate.html.php +auditplan/view/browse.html.php +auditplan/view/check.html.php +auditplan/view/create.html.php +auditplan/view/edit.html.php +auditplan/view/nc.html.php +auditplan/view/result.html.php +automation/config.php +automation/control.php +automation/css/browse.css +automation/css/browse.en.css +automation/css/index.html +automation/index.html +automation/lang/en.php +automation/lang/index.html +automation/lang/zh-cn.php +automation/lang/zh-tw.php +automation/model.php +automation/view/browse.html.php +automation/view/index.html +backup/config.php +backup/control.php +backup/css/index.css +backup/css/index.en.css +backup/css/index.html +backup/css/index.vi.css +backup/css/index.zh-cn.css +backup/css/index.zh-tw.css +backup/css/setting.css +backup/index.html +backup/js/index.html +backup/js/index.js +backup/js/setting.js +backup/lang/de.php +backup/lang/en.php +backup/lang/fr.php +backup/lang/index.html +backup/lang/vi.php +backup/lang/zh-cn.php +backup/lang/zh-tw.php +backup/model.php +backup/view/index.html +backup/view/index.html.php +backup/view/setting.html.php +baseline/config.php +baseline/control.php +baseline/css/catalog.css +baseline/css/version.css +baseline/css/view.css +baseline/js/catalog.js +baseline/js/managebook.js +baseline/js/version.js +baseline/js/view.js +baseline/lang/en.php +baseline/lang/zh-cn.php +baseline/lang/zh-tw.php +baseline/model.php +baseline/view/articleview.html.php +baseline/view/catalog.html.php +baseline/view/createtemplate.html.php +baseline/view/editbook.html.php +baseline/view/edittemplate.html.php +baseline/view/managebook.html.php +baseline/view/menu.html.php +baseline/view/template.html.php +baseline/view/view.html.php +block/config.php +block/control.php +block/css/admin.css +block/css/dashboard.css +block/css/index.html +block/ext/config/zentaomax.php +block/ext/lang/de/calendar.php +block/ext/lang/en/calendar.php +block/ext/lang/en/zentaomax.php +block/ext/lang/fr/calendar.php +block/ext/lang/vi/calendar.php +block/ext/lang/zh-cn/calendar.php +block/ext/lang/zh-cn/zentaomax.php +block/ext/lang/zh-tw/calendar.php +block/ext/lang/zh-tw/zentaomax.php +block/ext/model/calendar.php +block/ext/model/class/calendar.class.php +block/ext/view/calendarblock.html.php +block/ext/view/dashboard.xuanxuan.html.hook.php +block/index.html +block/js/admin.js +block/js/dashboard.js +block/js/index.html +block/lang/de.php +block/lang/en.php +block/lang/fr.php +block/lang/index.html +block/lang/vi.php +block/lang/zh-cn.php +block/lang/zh-tw.php +block/model.php +block/view/admin.html.php +block/view/bugblock.html.php +block/view/buildblock.html.php +block/view/caseblock.html.php +block/view/contribute.html.php +block/view/dashboard.html.php +block/view/dynamic.html.php +block/view/executionblock.html.php +block/view/executionoverviewblock.html.php +block/view/executionstatisticblock.html.php +block/view/executionteamblock.html.php +block/view/flowchart.html.php +block/view/index.html +block/view/issueblock.html.php +block/view/listblock.html.php +block/view/m.bugblock.html.php +block/view/m.buildblock.html.php +block/view/m.caseblock.html.php +block/view/m.contribute.html.php +block/view/m.dashboard.html.php +block/view/m.dynamic.html.php +block/view/m.executionblock.html.php +block/view/m.executionstatisticblock.html.php +block/view/m.issueblock.html.php +block/view/m.listblock.html.php +block/view/m.main.html.php +block/view/m.planblock.html.php +block/view/m.printassigntomeblock.html.php +block/view/m.productblock.html.php +block/view/m.productstatisticblock.html.php +block/view/m.projectblock.html.php +block/view/m.releaseblock.html.php +block/view/m.riskblock.html.php +block/view/m.statisticblock.html.php +block/view/m.storyblock.html.php +block/view/m.taskblock.html.php +block/view/m.testtaskblock.html.php +block/view/m.todoblock.html.php +block/view/main.html.php +block/view/meetingblock.html.php +block/view/overviewblock.html.php +block/view/planblock.html.php +block/view/printassigntomeblock.html.php +block/view/productblock.html.php +block/view/productoverviewblock.html.php +block/view/productstatisticblock.html.php +block/view/projectblock.html.php +block/view/projectdynamicblock.html.php +block/view/projectstatisticblock.html.php +block/view/projectteamblock.html.php +block/view/publicform.html.php +block/view/qaoverviewblock.html.php +block/view/qastatisticblock.html.php +block/view/recentprojectblock.html.php +block/view/releaseblock.html.php +block/view/riskblock.html.php +block/view/scrumlistblock.html.php +block/view/scrumoverviewblock.html.php +block/view/scrumproductblock.html.php +block/view/scrumroadmapblock.html.php +block/view/scrumtestblock.html.php +block/view/set.html.php +block/view/setmodule.html.php +block/view/sprintblock.html.php +block/view/statisticblock.html.php +block/view/storyblock.html.php +block/view/taskblock.html.php +block/view/testtaskblock.html.php +block/view/todoblock.html.php +block/view/todolist.html.php +block/view/waterfallestimateblock.html.php +block/view/waterfallganttblock.html.php +block/view/waterfallissueblock.html.php +block/view/waterfallprogressblock.html.php +block/view/waterfallreportblock.html.php +block/view/waterfallriskblock.html.php +block/view/welcome.html.php +branch/config.php +branch/control.php +branch/css/batchedit.css +branch/css/index.html +branch/css/manage.css +branch/index.html +branch/js/batchedit.js +branch/js/index.html +branch/js/manage.js +branch/lang/de.php +branch/lang/en.php +branch/lang/fr.php +branch/lang/index.html +branch/lang/vi.php +branch/lang/zh-cn.php +branch/lang/zh-tw.php +branch/model.php +branch/view/ajaxgetdropmenu.html.php +branch/view/batchedit.html.php +branch/view/create.html.php +branch/view/edit.html.php +branch/view/index.html +branch/view/m.ajaxgetdropmenu.html.php +branch/view/manage.html.php +budget/config.php +budget/control.php +budget/css/common.css +budget/lang/de.php +budget/lang/en.php +budget/lang/fr.php +budget/lang/vi.php +budget/lang/zh-cn.php +budget/lang/zh-tw.php +budget/model.php +budget/view/batchcreate.html.php +budget/view/browse.html.php +budget/view/create.html.php +budget/view/edit.html.php +budget/view/summary.html.php +budget/view/view.html.php +bug/config.php +bug/control.php +bug/css/batchactivate.css +bug/css/batchcreate.css +bug/css/batchedit.css +bug/css/browse.css +bug/css/common.css +bug/css/create.css +bug/css/customfields.css +bug/css/edit.css +bug/css/edit.en.css +bug/css/edit.vi.css +bug/css/edit.zh-cn.css +bug/css/edit.zh-tw.css +bug/css/index.html +bug/css/linkbugs.css +bug/css/m.browse.css +bug/css/report.css +bug/css/resolve.css +bug/css/resolve.en.css +bug/css/resolve.vi.css +bug/css/resolve.zh-cn.css +bug/css/resolve.zh-tw.css +bug/css/view.css +bug/css/view.en.css +bug/css/view.vi.css +bug/css/view.zh-cn.css +bug/css/view.zh-tw.css +bug/css/x.browse.css +bug/css/x.create.css +bug/css/x.edit.css +bug/css/x.view.css +bug/ext/config/excel.php +bug/ext/control/ajaxchangesubstatus.php +bug/ext/control/ajaxgetidentify.php +bug/ext/control/ajaxgetinjections.php +bug/ext/control/create.php +bug/ext/control/export.php +bug/ext/control/exporttemplet.php +bug/ext/control/import.php +bug/ext/control/index.html +bug/ext/control/showimport.php +bug/ext/css/browse/excel.css +bug/ext/css/browse/feedback.css +bug/ext/css/showimport/excel.css +bug/ext/index.html +bug/ext/js/showimport/excel.js +bug/ext/lang/de/excel.php +bug/ext/lang/de/feedback.php +bug/ext/lang/de/repo.php +bug/ext/lang/en/excel.php +bug/ext/lang/en/feedback.php +bug/ext/lang/en/repo.php +bug/ext/lang/en/zentaomax.php +bug/ext/lang/fr/excel.php +bug/ext/lang/fr/feedback.php +bug/ext/lang/fr/repo.php +bug/ext/lang/vi/excel.php +bug/ext/lang/vi/feedback.php +bug/ext/lang/vi/repo.php +bug/ext/lang/zh-cn/excel.php +bug/ext/lang/zh-cn/feedback.php +bug/ext/lang/zh-cn/repo.php +bug/ext/lang/zh-cn/zentaomax.php +bug/ext/lang/zh-tw/excel.php +bug/ext/lang/zh-tw/feedback.php +bug/ext/lang/zh-tw/repo.php +bug/ext/lang/zh-tw/zentaomax.php +bug/ext/model/class/excel.class.php +bug/ext/model/class/feedback.class.php +bug/ext/model/excel.php +bug/ext/model/feedback.php +bug/ext/view/browse.excel.html.hook.php +bug/ext/view/create.cmmi.html.hook.php +bug/ext/view/create.feedback.html.hook.php +bug/ext/view/create.flow.html.hook.php +bug/ext/view/exporttemplet.html.php +bug/ext/view/import.html.php +bug/ext/view/index.html +bug/ext/view/m.create.feedback.html.hook.php +bug/ext/view/report.export.html.hook.php +bug/ext/view/showimport.html.php +bug/ext/view/view.effort.html.hook.php +bug/ext/view/view.feedback.html.hook.php +bug/ext/view/view.repo.html.hook.php +bug/index.html +bug/js/batchcreate.js +bug/js/batchedit.js +bug/js/browse.js +bug/js/common.js +bug/js/create.js +bug/js/customfields.js +bug/js/edit.js +bug/js/index.html +bug/js/m.common.js +bug/js/report.js +bug/js/resolve.js +bug/js/view.js +bug/js/x.create.js +bug/js/x.view.js +bug/lang/de.php +bug/lang/en.php +bug/lang/fr.php +bug/lang/index.html +bug/lang/vi.php +bug/lang/zh-cn.php +bug/lang/zh-tw.php +bug/model.php +bug/view/activate.html.php +bug/view/ajaxgetdropmenu.html.php +bug/view/assignto.html.php +bug/view/batchactivate.html.php +bug/view/batchcreate.html.php +bug/view/batchedit.html.php +bug/view/browse.html.php +bug/view/close.html.php +bug/view/confirmbug.html.php +bug/view/create.html.php +bug/view/edit.html.php +bug/view/export.html.php +bug/view/index.html +bug/view/linkbugs.html.php +bug/view/m.activate.html.php +bug/view/m.assignto.html.php +bug/view/m.browse.html.php +bug/view/m.close.html.php +bug/view/m.confirmbug.html.php +bug/view/m.create.html.php +bug/view/m.edit.html.php +bug/view/m.resolve.html.php +bug/view/m.view.html.php +bug/view/report.html.php +bug/view/resolve.html.php +bug/view/sendmail.html.php +bug/view/view.html.php +build/config.php +build/control.php +build/css/common.css +build/css/create.css +build/css/index.html +build/css/view.css +build/ext/control/browse.php +build/ext/control/index.html +build/ext/index.html +build/ext/lang/de/flow.php +build/ext/lang/en/flow.php +build/ext/lang/en/index.html +build/ext/lang/fr/flow.php +build/ext/lang/index.html +build/ext/lang/zh-cn/flow.php +build/ext/lang/zh-cn/index.html +build/ext/lang/zh-tw/flow.php +build/ext/model/class/zentaomax.class.php +build/ext/model/zentaomax.php +build/ext/view/view.effort.html.hook.php +build/index.html +build/js/common.js +build/js/create.js +build/js/edit.js +build/js/index.html +build/js/view.js +build/lang/de.php +build/lang/en.php +build/lang/fr.php +build/lang/index.html +build/lang/vi.php +build/lang/zh-cn.php +build/lang/zh-tw.php +build/model.php +build/view/create.html.php +build/view/edit.html.php +build/view/index.html +build/view/linkbug.html.php +build/view/linkstory.html.php +build/view/m.view.html.php +build/view/view.html.php +caselib/config.php +caselib/control.php +caselib/css/batchcreatecase.css +caselib/css/browse.css +caselib/css/createcase.css +caselib/css/index.html +caselib/css/showimport.css +caselib/ext/control/exporttemplet.php +caselib/ext/control/import.php +caselib/ext/control/showimport.php +caselib/ext/model/class/excel.class.php +caselib/ext/model/excel.php +caselib/ext/view/exporttemplet.html.php +caselib/ext/view/import.html.php +caselib/index.html +caselib/js/browse.js +caselib/js/createcase.js +caselib/js/index.html +caselib/lang/de.php +caselib/lang/en.php +caselib/lang/fr.php +caselib/lang/index.html +caselib/lang/vi.php +caselib/lang/zh-cn.php +caselib/lang/zh-tw.php +caselib/model.php +caselib/view/ajaxgetdropmenu.html.php +caselib/view/batchcreatecase.html.php +caselib/view/browse.html.php +caselib/view/create.html.php +caselib/view/createcase.html.php +caselib/view/edit.html.php +caselib/view/exporttemplet.html.php +caselib/view/import.html.php +caselib/view/index.html +caselib/view/m.browse.html.php +caselib/view/m.create.html.php +caselib/view/showimport.html.php +caselib/view/view.html.php +ci/control.php +ci/index.html +ci/lang/de.php +ci/lang/en.php +ci/lang/fr.php +ci/lang/index.html +ci/lang/vi.php +ci/lang/zh-cn.php +ci/lang/zh-tw.php +ci/model.php +classify/control.php +classify/js/browse.js +classify/lang/en.php +classify/lang/zh-cn.php +classify/lang/zh-tw.php +classify/view/browse.html.php +client/config.php +client/control.php +client/css/checkupgrade.css +client/css/index.css +client/ext/control/create.php +client/ext/control/edit.php +client/ext/js/common/xuanxuan.js +client/ext/lang/de/xuanxuan.php +client/ext/lang/en/xuanxuan.php +client/ext/lang/zh-cn/xuanxuan.php +client/ext/lang/zh-tw/xuanxuan.php +client/ext/model/xuanxuan.php +client/ext/view/browse.html.php +client/ext/view/checkupgrade.xuanxuan.html.hook.php +client/ext/view/safe.html.php +client/js/checkupgrade.js +client/js/common.js +client/js/index.js +client/lang/de.php +client/lang/en.php +client/lang/zh-cn.php +client/lang/zh-tw.php +client/model.php +client/view/browse.html.php +client/view/changelog.html.php +client/view/checkupgrade.html.php +client/view/create.html.php +client/view/downloadclient.html.php +client/view/edit.html.php +client/view/getclientlinks.html.php +client/view/index.html.php +cm/config.php +cm/control.php +cm/css/view.css +cm/lang/en.php +cm/lang/zh-cn.php +cm/lang/zh-tw.php +cm/model.php +cm/view/browse.html.php +cm/view/create.html.php +cm/view/edit.html.php +cm/view/report.html.php +cm/view/view.html.php +cmcl/control.php +cmcl/css/browse.css +cmcl/js/browse.js +cmcl/lang/en.php +cmcl/lang/zh-cn.php +cmcl/lang/zh-tw.php +cmcl/model.php +cmcl/view/batchcreate.html.php +cmcl/view/browse.html.php +cmcl/view/create.cmmi.html.hook.php +cmcl/view/edit.html.php +cmcl/view/view.html.php +common/ext/index.html +common/ext/lang/de/bizext.php +common/ext/lang/de/crystal.php +common/ext/lang/de/effort.php +common/ext/lang/de/excel.php +common/ext/lang/de/feedback.php +common/ext/lang/de/flow.php +common/ext/lang/de/gantt.php +common/ext/lang/de/ldapauth.php +common/ext/lang/de/mht.php +common/ext/lang/de/oa.php +common/ext/lang/de/ops.php +common/ext/lang/de/repo.php +common/ext/lang/de/report.php +common/ext/lang/de/sms.php +common/ext/lang/de/traincourse.php +common/ext/lang/de/web.php +common/ext/lang/de/word.php +common/ext/lang/de/xuanxuan.php +common/ext/lang/de/zcalendar.php +common/ext/lang/de/zentaobiz.php +common/ext/lang/de/zzentaofeedback.php +common/ext/lang/en/bizext.php +common/ext/lang/en/crystal.php +common/ext/lang/en/effort.php +common/ext/lang/en/excel.php +common/ext/lang/en/feedback.php +common/ext/lang/en/flow.php +common/ext/lang/en/gantt.php +common/ext/lang/en/index.html +common/ext/lang/en/ldapauth.php +common/ext/lang/en/mht.php +common/ext/lang/en/oa.php +common/ext/lang/en/ops.php +common/ext/lang/en/repo.php +common/ext/lang/en/report.php +common/ext/lang/en/sms.php +common/ext/lang/en/traincourse.php +common/ext/lang/en/web.php +common/ext/lang/en/word.php +common/ext/lang/en/xuanxuan.php +common/ext/lang/en/zcalendar.php +common/ext/lang/en/zentaobiz.php +common/ext/lang/en/zentaomax.php +common/ext/lang/en/zzentaofeedback.php +common/ext/lang/fr/bizext.php +common/ext/lang/fr/crystal.php +common/ext/lang/fr/effort.php +common/ext/lang/fr/excel.php +common/ext/lang/fr/feedback.php +common/ext/lang/fr/flow.php +common/ext/lang/fr/gantt.php +common/ext/lang/fr/ldapauth.php +common/ext/lang/fr/mht.php +common/ext/lang/fr/oa.php +common/ext/lang/fr/ops.php +common/ext/lang/fr/repo.php +common/ext/lang/fr/report.php +common/ext/lang/fr/sms.php +common/ext/lang/fr/traincourse.php +common/ext/lang/fr/web.php +common/ext/lang/fr/word.php +common/ext/lang/fr/zcalendar.php +common/ext/lang/fr/zentaobiz.php +common/ext/lang/fr/zzentaofeedback.php +common/ext/lang/index.html +common/ext/lang/vi/bizext.php +common/ext/lang/vi/crystal.php +common/ext/lang/vi/effort.php +common/ext/lang/vi/excel.php +common/ext/lang/vi/feedback.php +common/ext/lang/vi/flow.php +common/ext/lang/vi/gantt.php +common/ext/lang/vi/index.html +common/ext/lang/vi/ldapauth.php +common/ext/lang/vi/mht.php +common/ext/lang/vi/oa.php +common/ext/lang/vi/ops.php +common/ext/lang/vi/repo.php +common/ext/lang/vi/report.php +common/ext/lang/vi/sms.php +common/ext/lang/vi/web.php +common/ext/lang/vi/word.php +common/ext/lang/vi/zcalendar.php +common/ext/lang/vi/zentaobiz.php +common/ext/lang/zh-cn/bizext.php +common/ext/lang/zh-cn/crystal.php +common/ext/lang/zh-cn/effort.php +common/ext/lang/zh-cn/excel.php +common/ext/lang/zh-cn/feedback.php +common/ext/lang/zh-cn/flow.php +common/ext/lang/zh-cn/gantt.php +common/ext/lang/zh-cn/index.html +common/ext/lang/zh-cn/ldapauth.php +common/ext/lang/zh-cn/mht.php +common/ext/lang/zh-cn/oa.php +common/ext/lang/zh-cn/ops.php +common/ext/lang/zh-cn/repo.php +common/ext/lang/zh-cn/report.php +common/ext/lang/zh-cn/sms.php +common/ext/lang/zh-cn/traincourse.php +common/ext/lang/zh-cn/web.php +common/ext/lang/zh-cn/word.php +common/ext/lang/zh-cn/xuanxuan.php +common/ext/lang/zh-cn/zcalendar.php +common/ext/lang/zh-cn/zentaobiz.php +common/ext/lang/zh-cn/zentaomax.php +common/ext/lang/zh-cn/zzentaofeedback.php +common/ext/lang/zh-tw/bizext.php +common/ext/lang/zh-tw/crystal.php +common/ext/lang/zh-tw/effort.php +common/ext/lang/zh-tw/excel.php +common/ext/lang/zh-tw/feedback.php +common/ext/lang/zh-tw/flow.php +common/ext/lang/zh-tw/gantt.php +common/ext/lang/zh-tw/ldapauth.php +common/ext/lang/zh-tw/mht.php +common/ext/lang/zh-tw/oa.php +common/ext/lang/zh-tw/ops.php +common/ext/lang/zh-tw/repo.php +common/ext/lang/zh-tw/report.php +common/ext/lang/zh-tw/sms.php +common/ext/lang/zh-tw/traincourse.php +common/ext/lang/zh-tw/web.php +common/ext/lang/zh-tw/word.php +common/ext/lang/zh-tw/xuanxuan.php +common/ext/lang/zh-tw/zcalendar.php +common/ext/lang/zh-tw/zentaobiz.php +common/ext/lang/zh-tw/zentaomax.php +common/ext/lang/zh-tw/zzentaofeedback.php +common/ext/model/bizext.php +common/ext/model/class/bizext.class.php +common/ext/model/class/flow.class.php +common/ext/model/class/index.html +common/ext/model/class/zentaobiz.class.php +common/ext/model/flow.php +common/ext/model/hook/checkPriv.flow.php +common/ext/model/hook/checkPriv.web.php +common/ext/model/hook/index.html +common/ext/model/hook/isOpenMethod.bizext.php +common/ext/model/hook/isOpenMethod.clientapi.php +common/ext/model/hook/isOpenMethod.flow.php +common/ext/model/hook/isOpenMethod.xuanxuan.php +common/ext/model/hook/isOpenMethod.zentaobiz.php +common/ext/model/hook/loadConfigFromDB.xuanxuan.php +common/ext/model/hook/setCompany.zentaobiz.php +common/ext/model/index.html +common/ext/model/oa.php +common/ext/model/web.php +common/ext/model/xuanxuan.php +common/ext/view/affix.html.php +common/ext/view/calendar.html.php +common/ext/view/footer.bizext.html.hook.php +common/ext/view/footer.oa.html.hook.php +common/ext/view/footer.zentaobiz.html.hook.php +common/ext/view/gantt.html.php +common/ext/view/header.flow.html.hook.php +common/ext/view/header.oa.html.hook.php +common/ext/view/header.xuanxuan.html.hook.php +common/ext/view/header.zentaobiz.html.hook.php +common/ext/view/header.zentaomax.html.hook.php +common/ext/view/header.zentaopro.html.hook.php +common/ext/view/index.html +common/ext/view/m.footer.oa.html.hook.php +common/ext/view/treemap.html.php +common/index.html +common/lang/common.php +common/lang/de.php +common/lang/en.php +common/lang/fr.php +common/lang/index.html +common/lang/menu.php +common/lang/vi.php +common/lang/zh-cn.php +common/lang/zh-tw.php +common/model.php +common/view/action.html.php +common/view/carousel.html.php +common/view/chart.html.php +common/view/chosen.html.php +common/view/codeeditor.html.php +common/view/customfield.html.php +common/view/datatable.fix.html.php +common/view/datatable.html.php +common/view/datepicker.html.php +common/view/flowchart.html.php +common/view/footer.html.php +common/view/footer.lite.html.php +common/view/footer.modal.html.php +common/view/form.html.php +common/view/header.html.php +common/view/header.lite.html.php +common/view/header.modal.html.php +common/view/index.html +common/view/kanban.html.php +common/view/kindeditor.html.php +common/view/m.action.html.php +common/view/m.avatar.html.php +common/view/m.footer.html.php +common/view/m.header.html.php +common/view/m.header.lite.html.php +common/view/mail.footer.html.php +common/view/mail.header.html.php +common/view/markdown.html.php +common/view/marked.html.php +common/view/noticeimport.html.php +common/view/pastetext.html.php +common/view/picker.html.php +common/view/querymenu.html.php +common/view/sortable.html.php +common/view/sparkline.html.php +common/view/syntaxhighlighter.html.php +common/view/tablesorter.html.php +common/view/treetable.html.php +common/view/validation.html.php +common/view/version.html.php +common/view/ztree.html.php +company/config.php +company/control.php +company/css/browse.css +company/css/dynamic.css +company/css/edit.en.css +company/css/edit.vi.css +company/css/edit.zh-cn.css +company/css/edit.zh-tw.css +company/css/index.html +company/css/view.css +company/ext/config/feedback.php +company/ext/control/calendar.php +company/ext/control/effort.php +company/ext/control/todo.php +company/ext/css/calendar/calendar.css +company/ext/css/effort/effort.css +company/ext/js/calendar/calendar.js +company/ext/js/effort/effort.js +company/ext/js/todo/todo.js +company/ext/lang/de/calendar.php +company/ext/lang/de/effort.php +company/ext/lang/de/todo.php +company/ext/lang/en/calendar.php +company/ext/lang/en/effort.php +company/ext/lang/en/todo.php +company/ext/lang/fr/calendar.php +company/ext/lang/fr/effort.php +company/ext/lang/fr/todo.php +company/ext/lang/vi/calendar.php +company/ext/lang/vi/effort.php +company/ext/lang/vi/todo.php +company/ext/lang/zh-cn/calendar.php +company/ext/lang/zh-cn/effort.php +company/ext/lang/zh-tw/calendar.php +company/ext/lang/zh-tw/effort.php +company/ext/model/calendar.php +company/ext/model/class/calendar.class.php +company/ext/model/zentaomax.php +company/ext/view/browse.feedback.html.hook.php +company/ext/view/browse.ldapauth.html.hook.php +company/ext/view/browse.zentaobiz.html.hook.php +company/ext/view/calendar.html.php +company/ext/view/effort.calendar.html.hook.php +company/ext/view/effort.html.php +company/ext/view/showdata.html.php +company/ext/view/todo.html.php +company/ext/view/view.zentaobiz.html.hook.php +company/index.html +company/js/browse.js +company/js/dynamic.js +company/js/edit.js +company/js/index.html +company/js/view.js +company/lang/de.php +company/lang/en.php +company/lang/fr.php +company/lang/index.html +company/lang/vi.php +company/lang/zh-cn.php +company/lang/zh-tw.php +company/model.php +company/view/browse.html.php +company/view/dynamic.html.php +company/view/edit.html.php +company/view/index.html +company/view/m.browse.html.php +company/view/m.calendar.html.php +company/view/m.dynamic.html.php +company/view/m.effort.html.php +company/view/m.view.html.php +company/view/view.html.php +compile/control.php +compile/css/browse.css +compile/css/index.html +compile/index.html +compile/js/index.html +compile/js/logs.js +compile/lang/de.php +compile/lang/en.php +compile/lang/fr.php +compile/lang/index.html +compile/lang/vi.php +compile/lang/zh-cn.php +compile/lang/zh-tw.php +compile/model.php +compile/view/browse.html.php +compile/view/index.html +compile/view/logs.html.php +convert/config.php +convert/control.php +convert/converter/bugfree.php +convert/converter/bugfree1.php +convert/converter/bugfree2.php +convert/converter/index.html +convert/converter/redmine.php +convert/converter/redmine1.1.php +convert/css/common.css +convert/css/index.html +convert/css/mapjira2zentao.css +convert/css/selectsource.css +convert/index.html +convert/js/index.html +convert/js/selectsource.js +convert/js/setconfig.js +convert/lang/de.php +convert/lang/en.php +convert/lang/fr.php +convert/lang/index.html +convert/lang/vi.php +convert/lang/zh-cn.php +convert/lang/zh-tw.php +convert/model.php +convert/view/checkbugfree.html.php +convert/view/checkconfig.html.php +convert/view/checkredmine.html.php +convert/view/convertIssue.html.php +convert/view/convertbugfree.html.php +convert/view/convertjira.html.php +convert/view/convertredmine.html.php +convert/view/execute.html.php +convert/view/importjira.html.php +convert/view/importnotice.html.php +convert/view/index.html +convert/view/index.html.php +convert/view/initjirauser.html.php +convert/view/mapjira2zentao.html.php +convert/view/selectsource.html.php +convert/view/setbugfree.html.php +convert/view/setconfig.html.php +convert/view/setredmine.html.php +cron/config.php +cron/control.php +cron/css/common.css +cron/css/index.css +cron/css/index.html +cron/index.html +cron/lang/de.php +cron/lang/en.php +cron/lang/fr.php +cron/lang/index.html +cron/lang/vi.php +cron/lang/zh-cn.php +cron/lang/zh-tw.php +cron/model.php +cron/view/create.html.php +cron/view/edit.html.php +cron/view/index.html +cron/view/index.html.php +cron/view/openprocess.html.php +custom/config.php +custom/control.php +custom/css/ajaxmenu.css +custom/css/browsestoryconcept.css +custom/css/common.css +custom/css/configurescrum.css +custom/css/configurewaterfall.css +custom/css/index.html +custom/css/required.en.css +custom/css/required.vi.css +custom/css/required.zh-cn.css +custom/css/required.zh-tw.css +custom/css/set.en.css +custom/css/set.vi.css +custom/css/set.zh-cn.css +custom/css/set.zh-tw.css +custom/ext/config/web.php +custom/ext/config/zentaobiz.php +custom/ext/config/zentaomax.php +custom/ext/control/estimate.php +custom/ext/control/feedback.php +custom/ext/control/libreoffice.php +custom/ext/control/set.php +custom/ext/css/feedback/zentaobiz.en.css +custom/ext/css/feedback/zentaobiz.vi.css +custom/ext/css/feedback/zentaobiz.zh-cn.css +custom/ext/css/feedback/zentaobiz.zh-tw.css +custom/ext/js/estimate/zentaomax.js +custom/ext/lang/de/bizext.php +custom/ext/lang/de/zentaobiz.php +custom/ext/lang/en/bizext.php +custom/ext/lang/en/zentaobiz.php +custom/ext/lang/en/zentaomax.php +custom/ext/lang/fr/bizext.php +custom/ext/lang/fr/zentaobiz.php +custom/ext/lang/vi/bizext.php +custom/ext/lang/vi/zentaobiz.php +custom/ext/lang/zh-cn/bizext.php +custom/ext/lang/zh-cn/zentaobiz.php +custom/ext/lang/zh-cn/zentaomax.php +custom/ext/lang/zh-tw/bizext.php +custom/ext/lang/zh-tw/zentaobiz.php +custom/ext/lang/zh-tw/zentaomax.php +custom/ext/view/estimate.html.php +custom/ext/view/feedback.html.php +custom/ext/view/libreoffice.html.php +custom/ext/view/mode.zentaomax.html.hook.php +custom/index.html +custom/js/ajaxmenu.js +custom/js/common.js +custom/js/flow.js +custom/js/index.html +custom/js/mode.js +custom/js/set.js +custom/js/working.js +custom/lang/de.php +custom/lang/en.php +custom/lang/fr.php +custom/lang/index.html +custom/lang/vi.php +custom/lang/zh-cn.php +custom/lang/zh-tw.php +custom/model.php +custom/view/ajaxmenu.html.php +custom/view/browsestoryconcept.html.php +custom/view/editstoryconcept.html.php +custom/view/execution.html.php +custom/view/flow.html.php +custom/view/header.html.php +custom/view/index.html +custom/view/m.ajaxsethomepage.html.php +custom/view/mode.html.php +custom/view/product.html.php +custom/view/required.html.php +custom/view/score.html.php +custom/view/set.html.php +custom/view/setstoryconcept.html.php +custom/view/timezone.html.php +custom/view/working.html.php +datatable/config.php +datatable/control.php +datatable/ext/config/effort.php +datatable/index.html +datatable/lang/de.php +datatable/lang/en.php +datatable/lang/fr.php +datatable/lang/index.html +datatable/lang/vi.php +datatable/lang/zh-cn.php +datatable/lang/zh-tw.php +datatable/model.php +datatable/view/ajaxcustom.html.php +datatable/view/index.html +deploy/config.php +deploy/control.php +deploy/css/browse.css +deploy/css/common.css +deploy/css/managescope.css +deploy/css/steps.css +deploy/js/browse.js +deploy/js/common.js +deploy/js/finish.js +deploy/js/managescope.js +deploy/js/managestep.js +deploy/js/steps.js +deploy/lang/de.php +deploy/lang/en.php +deploy/lang/fr.php +deploy/lang/vi.php +deploy/lang/zh-cn.php +deploy/lang/zh-tw.php +deploy/model.php +deploy/view/activate.html.php +deploy/view/assignto.html.php +deploy/view/browse.html.php +deploy/view/cases.html.php +deploy/view/create.html.php +deploy/view/edit.html.php +deploy/view/editstep.html.php +deploy/view/finish.html.php +deploy/view/finishstep.html.php +deploy/view/linkcases.html.php +deploy/view/m.browse.html.php +deploy/view/m.steps.html.php +deploy/view/managescope.html.php +deploy/view/managestep.html.php +deploy/view/nav.html.php +deploy/view/scope.html.php +deploy/view/sendmail.html.php +deploy/view/steps.html.php +deploy/view/view.html.php +deploy/view/viewstep.html.php +dept/control.php +dept/css/browse.css +dept/css/edit.en.css +dept/css/edit.vi.css +dept/css/edit.zh-cn.css +dept/css/edit.zh-tw.css +dept/css/index.html +dept/ext/model/class/oa.class.php +dept/ext/model/class/zentaobiz.class.php +dept/ext/model/getlistbytype.php +dept/ext/model/oa.php +dept/ext/model/zentaobiz.php +dept/index.html +dept/lang/de.php +dept/lang/en.php +dept/lang/fr.php +dept/lang/index.html +dept/lang/vi.php +dept/lang/zh-cn.php +dept/lang/zh-tw.php +dept/model.php +dept/view/browse.html.php +dept/view/edit.html.php +dept/view/index.html +design/config.php +design/control.php +design/css/browse.css +design/css/edit.css +design/css/index.html +design/css/linkcommit.css +design/ext/control/submit.php +design/ext/lang/en/zentaomax.php +design/ext/lang/zh-cn/zentaomax.php +design/ext/lang/zh-tw/zentaomax.php +design/ext/view/submit.html.php +design/index.html +design/js/batchcreate.js +design/js/browse.js +design/js/common.js +design/js/create.js +design/js/edit.js +design/js/index.html +design/js/linkcommit.js +design/js/view.js +design/lang/de.php +design/lang/en.php +design/lang/fr.php +design/lang/index.html +design/lang/vi.php +design/lang/zh-cn.php +design/lang/zh-tw.php +design/model.php +design/view/ajaxgetdropmenu.html.php +design/view/assignto.html.php +design/view/batchcreate.html.php +design/view/browse.html.php +design/view/create.html.php +design/view/edit.html.php +design/view/index.html +design/view/linkcommit.html.php +design/view/view.html.php +design/view/viewcommit.html.php +dev/config.php +dev/control.php +dev/css/api.css +dev/css/common.css +dev/css/index.html +dev/ext/config/effort.php +dev/ext/config/feedback.php +dev/ext/config/gantt.php +dev/ext/config/ldap.php +dev/ext/config/oa.php +dev/ext/config/sms.php +dev/ext/config/xuanxuan.php +dev/ext/config/zentaobiz.php +dev/ext/lang/de/crystal.php +dev/ext/lang/de/feedback.php +dev/ext/lang/de/gantt.php +dev/ext/lang/de/ldap.php +dev/ext/lang/de/oa.php +dev/ext/lang/de/sms.php +dev/ext/lang/de/xuanxuan.php +dev/ext/lang/de/zentaobiz.php +dev/ext/lang/en/crystal.php +dev/ext/lang/en/feedback.php +dev/ext/lang/en/gantt.php +dev/ext/lang/en/ldap.php +dev/ext/lang/en/oa.php +dev/ext/lang/en/sms.php +dev/ext/lang/en/xuanxuan.php +dev/ext/lang/en/zentaobiz.php +dev/ext/lang/en/zentaomax.php +dev/ext/lang/fr/crystal.php +dev/ext/lang/fr/feedback.php +dev/ext/lang/fr/gantt.php +dev/ext/lang/fr/ldap.php +dev/ext/lang/fr/oa.php +dev/ext/lang/fr/sms.php +dev/ext/lang/fr/zentaobiz.php +dev/ext/lang/vi/crystal.php +dev/ext/lang/vi/feedback.php +dev/ext/lang/vi/gantt.php +dev/ext/lang/vi/ldap.php +dev/ext/lang/vi/oa.php +dev/ext/lang/vi/sms.php +dev/ext/lang/vi/zentaobiz.php +dev/ext/lang/zh-cn/crystal.php +dev/ext/lang/zh-cn/feedback.php +dev/ext/lang/zh-cn/gantt.php +dev/ext/lang/zh-cn/ldap.php +dev/ext/lang/zh-cn/oa.php +dev/ext/lang/zh-cn/sms.php +dev/ext/lang/zh-cn/xuanxuan.php +dev/ext/lang/zh-cn/zentaobiz.php +dev/ext/lang/zh-cn/zentaomax.php +dev/ext/lang/zh-tw/crystal.php +dev/ext/lang/zh-tw/feedback.php +dev/ext/lang/zh-tw/gantt.php +dev/ext/lang/zh-tw/ldap.php +dev/ext/lang/zh-tw/oa.php +dev/ext/lang/zh-tw/sms.php +dev/ext/lang/zh-tw/xuanxuan.php +dev/ext/lang/zh-tw/zentaobiz.php +dev/ext/lang/zh-tw/zentaomax.php +dev/index.html +dev/lang/de.php +dev/lang/en.php +dev/lang/fr.php +dev/lang/index.html +dev/lang/vi.php +dev/lang/zh-cn.php +dev/lang/zh-tw.php +dev/model.php +dev/view/api.html.php +dev/view/db.html.php +dev/view/editor.html.php +dev/view/header.html.php +dev/view/index.html +dev/view/translate.html.php +doc/config.php +doc/control.php +doc/css/browse.css +doc/css/common.css +doc/css/common.en.css +doc/css/common.vi.css +doc/css/create.css +doc/css/createlib.css +doc/css/edit.css +doc/css/editlib.css +doc/css/index.css +doc/css/index.html +doc/css/objectlibs.css +doc/css/showfiles.css +doc/css/tablecontents.css +doc/css/view.css +doc/css/x.create.css +doc/css/x.edit.css +doc/css/x.view.css +doc/ext/config/zentaobiz.php +doc/ext/config/zentaomax.php +doc/ext/control/alllibs.php +doc/ext/control/catalog.php +doc/ext/control/create.php +doc/ext/control/diff.php +doc/ext/control/importtocomponentlib.php +doc/ext/control/importtopracticelib.php +doc/ext/control/managebook.php +doc/ext/control/objectlibs.php +doc/ext/control/sortbookorder.php +doc/ext/css/common/zentaobiz.css +doc/ext/css/edit/zentaobiz.css +doc/ext/css/managebook/zentaobiz.css +doc/ext/css/objectlibs/zentaobiz.css +doc/ext/js/catalog/zentaobiz.js +doc/ext/js/managebook/zentaobiz.js +doc/ext/lang/de/zentaobiz.php +doc/ext/lang/en/zentaobiz.php +doc/ext/lang/en/zentaomax.php +doc/ext/lang/fr/zentaobiz.php +doc/ext/lang/vi/zentaobiz.php +doc/ext/lang/zh-cn/zentaobiz.php +doc/ext/lang/zh-cn/zentaomax.php +doc/ext/lang/zh-tw/zentaobiz.php +doc/ext/lang/zh-tw/zentaomax.php +doc/ext/model/class/zentaobiz.class.php +doc/ext/model/zentaobiz.php +doc/ext/model/zentaomax.php +doc/ext/view/alllibs.html.php +doc/ext/view/alllibsbygrid.html.php +doc/ext/view/alllibsbylist.html.php +doc/ext/view/bookside.html.php +doc/ext/view/catalog.html.php +doc/ext/view/create.html.php +doc/ext/view/create.zentamax.html.hook.php +doc/ext/view/diff.html.php +doc/ext/view/edit.html.php +doc/ext/view/managebook.html.php +doc/ext/view/view.effort.html.hook.php +doc/index.html +doc/js/browse.js +doc/js/common.js +doc/js/create.js +doc/js/createlib.js +doc/js/edit.js +doc/js/editlib.js +doc/js/index.html +doc/js/objectlibs.js +doc/js/selectlibtype.js +doc/js/showfiles.js +doc/js/tablecontents.js +doc/js/view.js +doc/js/x.create.js +doc/js/x.view.js +doc/lang/de.php +doc/lang/en.php +doc/lang/fr.php +doc/lang/index.html +doc/lang/vi.php +doc/lang/zh-cn.php +doc/lang/zh-tw.php +doc/model.php +doc/view/alllibs.html.php +doc/view/alllibsbylist.html.php +doc/view/bookside.html.php +doc/view/browse.html.php +doc/view/browsebygrid.html.php +doc/view/content.html.php +doc/view/create.html.php +doc/view/createlib.html.php +doc/view/edit.html.php +doc/view/editlib.html.php +doc/view/footer.html.php +doc/view/index.html +doc/view/index.html.php +doc/view/objectlibs.html.php +doc/view/selectlibtype.html.php +doc/view/sendmail.html.php +doc/view/showfiles.html.php +doc/view/side.html.php +doc/view/sort.html.php +doc/view/tablecontents.html.php +doc/view/view.html.php +domain/config.php +domain/control.php +domain/css/browse.css +domain/js/custom.js +domain/lang/de.php +domain/lang/en.php +domain/lang/fr.php +domain/lang/zh-cn.php +domain/lang/zh-tw.php +domain/model.php +domain/view/browse.html.php +domain/view/create.html.php +domain/view/edit.html.php +domain/view/view.html.php +durationestimation/config.php +durationestimation/control.php +durationestimation/js/create.js +durationestimation/lang/de.php +durationestimation/lang/en.php +durationestimation/lang/fr.php +durationestimation/lang/vi.php +durationestimation/lang/zh-cn.php +durationestimation/lang/zh-tw.php +durationestimation/model.php +durationestimation/view/create.html.php +durationestimation/view/index.html.php +effort/config.php +effort/control.php +effort/css/batchcreate.css +effort/css/common.css +effort/css/createforobject.en.css +effort/css/createforobject.vi.css +effort/css/createforobject.zh-cn.css +effort/css/createforobject.zh-tw.css +effort/css/view.css +effort/ext/control/ajaxgetefforts.php +effort/ext/control/batchcreate.php +effort/ext/control/calendar.php +effort/ext/control/export.php +effort/ext/css/calendar/calendar.css +effort/ext/css/common/cmmi.css +effort/ext/lang/de/calendar.php +effort/ext/lang/de/zentaobiz.php +effort/ext/lang/en/calendar.php +effort/ext/lang/en/zentaobiz.php +effort/ext/lang/en/zentaomax.php +effort/ext/lang/fr/calendar.php +effort/ext/lang/fr/zentaobiz.php +effort/ext/lang/vi/calendar.php +effort/ext/lang/zh-cn/calendar.php +effort/ext/lang/zh-cn/zentaobiz.php +effort/ext/lang/zh-cn/zentaomax.php +effort/ext/lang/zh-tw/calendar.php +effort/ext/lang/zh-tw/zentaobiz.php +effort/ext/lang/zh-tw/zentaomax.php +effort/ext/model/calendar.php +effort/ext/model/class/calendar.class.php +effort/ext/model/class/gantt.class.php +effort/ext/model/gantt.php +effort/ext/view/batchcreate.effort.html.hook.php +effort/ext/view/batchedit.effort.html.hook.php +effort/ext/view/calendar.html.php +effort/ext/view/edit.effort.html.hook.php +effort/ext/view/edit.zentaomax.html.hook.php +effort/js/batchcreate.js +effort/js/batchedit.js +effort/js/common.js +effort/js/createforobject.js +effort/js/edit.js +effort/js/m.common.js +effort/lang/de.php +effort/lang/en.php +effort/lang/fr.php +effort/lang/vi.php +effort/lang/zh-cn.php +effort/lang/zh-tw.php +effort/model.php +effort/view/batchcreate.html.php +effort/view/batchedit.html.php +effort/view/createforobject.html.php +effort/view/edit.html.php +effort/view/effortsforobject.html.php +effort/view/export.html.php +effort/view/footer.html.php +effort/view/m.batchcreate.html.php +effort/view/m.calendar.html.php +effort/view/m.createforobject.html.php +effort/view/m.edit.html.php +effort/view/m.view.html.php +effort/view/view.html.php +entry/config.php +entry/control.php +entry/css/browse.css +entry/css/create.css +entry/css/edit.css +entry/css/index.html +entry/css/log.css +entry/ext/control/visit.php +entry/index.html +entry/js/create.js +entry/js/edit.js +entry/js/index.html +entry/lang/de.php +entry/lang/en.php +entry/lang/fr.php +entry/lang/index.html +entry/lang/vi.php +entry/lang/zh-cn.php +entry/lang/zh-tw.php +entry/model.php +entry/view/browse.html.php +entry/view/create.html.php +entry/view/edit.html.php +entry/view/header.html.php +entry/view/index.html +entry/view/log.html.php +execution/config.php +execution/control.php +execution/css/all.css +execution/css/all.en.css +execution/css/all.vi.css +execution/css/all.zh-cn.css +execution/css/all.zh-tw.css +execution/css/batchedit.css +execution/css/bug.css +execution/css/build.css +execution/css/burn.css +execution/css/burn.en.css +execution/css/burn.vi.css +execution/css/burn.zh-cn.css +execution/css/burn.zh-tw.css +execution/css/common.css +execution/css/create.css +execution/css/dynamic.css +execution/css/edit.css +execution/css/executionkanban.css +execution/css/grouptask.css +execution/css/importtask.css +execution/css/index.css +execution/css/index.html +execution/css/kanban.css +execution/css/linkstory.css +execution/css/m.common.css +execution/css/managemembers.css +execution/css/manageproducts.css +execution/css/story.css +execution/css/storykanban.css +execution/css/task.css +execution/css/taskkanban.css +execution/css/team.css +execution/css/testcase.css +execution/css/testtask.css +execution/css/tree.css +execution/css/treestory.en.css +execution/css/treestory.vi.css +execution/css/treestory.zh-cn.css +execution/css/treestory.zh-tw.css +execution/css/view.css +execution/css/x.bug.css +execution/css/x.story.css +execution/css/x.task.css +execution/ext/config/gantt.php +execution/ext/control/ajaxgetattribute.php +execution/ext/control/ajaxgetefforts.php +execution/ext/control/ajaxgetprojectexecutions.php +execution/ext/control/ajaxkanbansetting.php +execution/ext/control/ajaxresetkanban.php +execution/ext/control/calendar.php +execution/ext/control/computetaskeffort.php +execution/ext/control/deleterelation.php +execution/ext/control/effort.php +execution/ext/control/effortcalendar.php +execution/ext/control/gantt.php +execution/ext/control/index.html +execution/ext/control/maintainrelation.php +execution/ext/control/relation.php +execution/ext/control/taskeffort.php +execution/ext/css/ajaxkanbansetting/flow.css +execution/ext/css/ajaxkanbansetting/index.html +execution/ext/css/calendar/calendar.css +execution/ext/css/effort/effort.css +execution/ext/css/index/cmmi.css +execution/ext/css/index.html +execution/ext/css/relation/gantt.css +execution/ext/css/task/execl.css +execution/ext/css/taskeffort/taskeffort.css +execution/ext/index.html +execution/ext/js/effort/effort.js +execution/ext/js/taskeffort/taskeffort.js +execution/ext/lang/de/calendar.php +execution/ext/lang/de/effort.php +execution/ext/lang/de/flow.php +execution/ext/lang/de/gantt.php +execution/ext/lang/de/web.php +execution/ext/lang/en/calendar.php +execution/ext/lang/en/effort.php +execution/ext/lang/en/flow.php +execution/ext/lang/en/gantt.php +execution/ext/lang/en/index.html +execution/ext/lang/en/web.php +execution/ext/lang/en/zentaomax.php +execution/ext/lang/fr/calendar.php +execution/ext/lang/fr/effort.php +execution/ext/lang/fr/flow.php +execution/ext/lang/fr/gantt.php +execution/ext/lang/fr/web.php +execution/ext/lang/index.html +execution/ext/lang/vi/calendar.php +execution/ext/lang/vi/effort.php +execution/ext/lang/vi/flow.php +execution/ext/lang/vi/gantt.php +execution/ext/lang/vi/index.html +execution/ext/lang/vi/web.php +execution/ext/lang/zh-cn/calendar.php +execution/ext/lang/zh-cn/effort.php +execution/ext/lang/zh-cn/flow.php +execution/ext/lang/zh-cn/gantt.php +execution/ext/lang/zh-cn/index.html +execution/ext/lang/zh-cn/web.php +execution/ext/lang/zh-cn/zentaomax.php +execution/ext/lang/zh-tw/calendar.php +execution/ext/lang/zh-tw/effort.php +execution/ext/lang/zh-tw/flow.php +execution/ext/lang/zh-tw/gantt.php +execution/ext/lang/zh-tw/web.php +execution/ext/lang/zh-tw/zentaomax.php +execution/ext/model/calendar.php +execution/ext/model/class/calendar.class.php +execution/ext/model/class/effort.class.php +execution/ext/model/class/flow.class.php +execution/ext/model/class/gantt.class.php +execution/ext/model/class/index.html +execution/ext/model/class/zentaomax.class.php +execution/ext/model/effort.php +execution/ext/model/flow.php +execution/ext/model/gantt.php +execution/ext/model/index.html +execution/ext/model/zentaomax.php +execution/ext/view/ajaxkanbansetting.flow.html.hook.php +execution/ext/view/calendar.html.php +execution/ext/view/effort.calendar.html.hook.php +execution/ext/view/effort.html.php +execution/ext/view/effortcalendar.html.php +execution/ext/view/featurebar.calendar.html.hook.php +execution/ext/view/featurebar.gantt.html.hook.php +execution/ext/view/featurebar.html.php +execution/ext/view/finish.html.php +execution/ext/view/gantt.html.php +execution/ext/view/index.html +execution/ext/view/maintainrelation.html.php +execution/ext/view/relation.html.php +execution/ext/view/requirement.html.php +execution/ext/view/task.excel.html.hook.php +execution/ext/view/taskeffort.html.php +execution/ext/view/view.cmmi.html.hook.php +execution/index.html +execution/js/all.js +execution/js/batchedit.js +execution/js/bug.js +execution/js/build.js +execution/js/burn.js +execution/js/common.js +execution/js/create.js +execution/js/doc.js +execution/js/dynamic.js +execution/js/edit.js +execution/js/executionkanban.js +execution/js/grouptask.js +execution/js/importbug.js +execution/js/importtask.js +execution/js/index.html +execution/js/index.js +execution/js/kanban.js +execution/js/m.common.js +execution/js/managemembers.js +execution/js/manageproducts.js +execution/js/story.js +execution/js/storyestimate.js +execution/js/storykanban.js +execution/js/task.js +execution/js/taskkanban.js +execution/js/team.js +execution/js/tree.js +execution/lang/de.php +execution/lang/en.php +execution/lang/fr.php +execution/lang/index.html +execution/lang/vi.php +execution/lang/zh-cn.php +execution/lang/zh-tw.php +execution/model.php +execution/view/activate.html.php +execution/view/ajaxgetdropmenu.html.php +execution/view/ajaxkanbansetting.html.php +execution/view/all.html.php +execution/view/batchedit.html.php +execution/view/bug.html.php +execution/view/build.html.php +execution/view/burn.html.php +execution/view/close.html.php +execution/view/computeburn.html.php +execution/view/create.html.php +execution/view/doc.html.php +execution/view/dynamic.html.php +execution/view/edit.html.php +execution/view/executionkanban.html.php +execution/view/export.html.php +execution/view/fixfirst.html.php +execution/view/grouptask.html.php +execution/view/importbug.html.php +execution/view/importtask.html.php +execution/view/index.html +execution/view/index.html.php +execution/view/kanban.html.php +execution/view/linkstory.html.php +execution/view/m.ajaxgetdropmenu.html.php +execution/view/m.all.html.php +execution/view/m.bug.html.php +execution/view/m.build.html.php +execution/view/m.dynamic.html.php +execution/view/m.index.html.php +execution/view/m.story.html.php +execution/view/m.task.html.php +execution/view/m.team.html.php +execution/view/m.testtask.html.php +execution/view/m.view.html.php +execution/view/managemembers.html.php +execution/view/manageproducts.html.php +execution/view/preview.html.php +execution/view/printkanban.html.php +execution/view/putoff.html.php +execution/view/start.html.php +execution/view/story.html.php +execution/view/storyestimate.html.php +execution/view/storykanban.html.php +execution/view/suspend.html.php +execution/view/task.html.php +execution/view/taskheader.html.php +execution/view/taskkanban.html.php +execution/view/team.html.php +execution/view/testcase.html.php +execution/view/testtask.html.php +execution/view/tips.html.php +execution/view/tree.html.php +execution/view/treestory.html.php +execution/view/treetask.html.php +execution/view/view.html.php +extension/config.php +extension/control.php +extension/css/common.css +extension/css/index.html +extension/css/obtain.css +extension/css/upload.css +extension/ext/lang/de/bizext.php +extension/ext/lang/en/bizext.php +extension/ext/lang/fr/bizext.php +extension/ext/lang/vi/bizext.php +extension/ext/lang/zh-cn/bizext.php +extension/ext/lang/zh-tw/bizext.php +extension/ext/model/bizext.php +extension/ext/model/class/bizext.class.php +extension/index.html +extension/js/common.js +extension/js/index.html +extension/lang/de.php +extension/lang/en.php +extension/lang/fr.php +extension/lang/index.html +extension/lang/vi.php +extension/lang/zh-cn.php +extension/lang/zh-tw.php +extension/license/apache.txt +extension/license/bsd.txt +extension/license/gpl.txt +extension/license/index.html +extension/license/lgpl.txt +extension/license/mit.txt +extension/model.php +extension/view/activate.html.php +extension/view/browse.html.php +extension/view/checkscore.html.php +extension/view/deactivate.html.php +extension/view/erase.html.php +extension/view/header.html.php +extension/view/index.html +extension/view/install.html.php +extension/view/obtain.html.php +extension/view/safe.html.php +extension/view/structure.html.php +extension/view/uninstall.html.php +extension/view/upload.html.php +extension/view/waring.htm.php +faq/config.php +faq/control.php +faq/css/browse.css +faq/js/browse.js +faq/js/create.js +faq/js/edit.js +faq/lang/de.php +faq/lang/en.php +faq/lang/fr.php +faq/lang/vi.php +faq/lang/zh-cn.php +faq/lang/zh-tw.php +faq/model.php +faq/view/browse.html.php +faq/view/create.html.php +faq/view/edit.html.php +feedback/config.php +feedback/control.php +feedback/css/admin.css +feedback/css/browse.css +feedback/css/common.css +feedback/css/faq.css +feedback/css/manageproduct.css +feedback/css/manageproduct.en.css +feedback/css/manageproduct.vi.css +feedback/css/manageproduct.zh-cn.css +feedback/css/manageproduct.zh-tw.css +feedback/css/products.css +feedback/css/view.css +feedback/js/admin.js +feedback/js/adminview.js +feedback/js/batchedit.js +feedback/js/comment.js +feedback/js/common.js +feedback/js/create.js +feedback/js/edit.js +feedback/js/review.js +feedback/lang/de.php +feedback/lang/en.php +feedback/lang/fr.php +feedback/lang/vi.php +feedback/lang/zh-cn.php +feedback/lang/zh-tw.php +feedback/model.php +feedback/view/admin.html.php +feedback/view/adminview.html.php +feedback/view/assignto.html.php +feedback/view/batchedit.html.php +feedback/view/browse.html.php +feedback/view/close.html.php +feedback/view/comment.html.php +feedback/view/create.html.php +feedback/view/data.html.php +feedback/view/edit.html.php +feedback/view/export.html.php +feedback/view/m.admin.html.php +feedback/view/m.adminview.html.php +feedback/view/m.ajaxshowresultinfo.html.php +feedback/view/m.browse.html.php +feedback/view/m.close.html.php +feedback/view/m.comment.html.php +feedback/view/m.create.html.php +feedback/view/m.data.html.php +feedback/view/m.edit.html.php +feedback/view/m.view.html.php +feedback/view/manageproduct.html.php +feedback/view/products.html.php +feedback/view/review.html.php +feedback/view/selectproject.html.php +feedback/view/sendmail.html.php +feedback/view/view.html.php +file/config.php +file/control.php +file/ext/config/excel.php +file/ext/config/testreportexport.php +file/ext/config/word.php +file/ext/config/zentaobiz.php +file/ext/control/ajaxuploadlargefile.php +file/ext/control/ajaxwopifiles.php +file/ext/control/download.php +file/ext/control/export2calendar.php +file/ext/control/export2chart.php +file/ext/control/export2group.php +file/ext/control/export2kanban.php +file/ext/control/export2mht.php +file/ext/control/export2tree.php +file/ext/control/export2word.php +file/ext/control/export2xls.php +file/ext/control/export2xlsx.php +file/ext/control/exporttestreport.php +file/ext/index.html +file/ext/lang/de/excel.php +file/ext/lang/de/word.php +file/ext/lang/de/zentaobiz.php +file/ext/lang/en/excel.php +file/ext/lang/en/word.php +file/ext/lang/en/zentaobiz.php +file/ext/lang/fr/excel.php +file/ext/lang/fr/word.php +file/ext/lang/fr/zentaobiz.php +file/ext/lang/vi/excel.php +file/ext/lang/vi/word.php +file/ext/lang/vi/zentaobiz.php +file/ext/lang/zh-cn/excel.php +file/ext/lang/zh-cn/word.php +file/ext/lang/zh-cn/zentaobiz.php +file/ext/lang/zh-tw/excel.php +file/ext/lang/zh-tw/word.php +file/ext/lang/zh-tw/zentaobiz.php +file/ext/model/class/excel.class.php +file/ext/model/class/flow.class.php +file/ext/model/class/index.html +file/ext/model/class/mht.class.php +file/ext/model/class/zentaobiz.class.php +file/ext/model/excel.php +file/ext/model/flow.php +file/ext/model/index.html +file/ext/model/mht.php +file/ext/model/zentaobiz.php +file/ext/view/ajaxuploadlargefile.html.php +file/ext/view/collabora.html.php +file/index.html +file/lang/de.php +file/lang/en.php +file/lang/fr.php +file/lang/index.html +file/lang/vi.php +file/lang/zh-cn.php +file/lang/zh-tw.php +file/model.php +file/view/buildexporttpl.html.php +file/view/buildform.html.php +file/view/download.html.php +file/view/edit.html.php +file/view/export.html.php +file/view/export2csv.html.php +file/view/export2html.html.php +file/view/export2xml.html.php +file/view/exporttemplate.html.php +file/view/index.html +file/view/m.buildform.html.php +file/view/m.edit.html.php +file/view/m.printfiles.html.php +file/view/printfiles.html.php +file/view/uploadimages.html.php +flow/config.php +flow/control.php +flow/css/batchcreate.css +flow/css/batchoperate.css +flow/css/browse.css +flow/css/create.css +flow/css/index.html +flow/css/operate.css +flow/css/report.css +flow/css/showimport.css +flow/css/view.css +flow/ext/config/flow.php +flow/ext/config/index.html +flow/ext/control/ajaxgetmore.php +flow/ext/control/export.php +flow/ext/control/exporttemplate.php +flow/ext/control/index.html +flow/ext/control/view.php +flow/ext/css/batchcreate/flow.css +flow/ext/css/batchcreate/index.html +flow/ext/css/batchoperate/flow.css +flow/ext/css/batchoperate/index.html +flow/ext/css/browse/flow.css +flow/ext/css/browse/index.html +flow/ext/css/common/flow.css +flow/ext/css/common/index.html +flow/ext/css/index.html +flow/ext/css/operate/flow.css +flow/ext/css/operate/index.html +flow/ext/css/view/flow.css +flow/ext/css/view/index.html +flow/ext/index.html +flow/ext/js/browse/flow.js +flow/ext/js/browse/index.html +flow/ext/js/common/flow.js +flow/ext/js/common/index.html +flow/ext/js/index.html +flow/ext/js/operate/flow.js +flow/ext/js/operate/index.html +flow/ext/js/view/flow.js +flow/ext/js/view/index.html +flow/ext/lang/de/flow.php +flow/ext/lang/en/flow.php +flow/ext/lang/en/index.html +flow/ext/lang/fr/flow.php +flow/ext/lang/index.html +flow/ext/lang/vi/flow.php +flow/ext/lang/vi/index.html +flow/ext/lang/zh-cn/flow.php +flow/ext/lang/zh-cn/index.html +flow/ext/lang/zh-tw/flow.php +flow/ext/model/class/flow.class.php +flow/ext/model/class/index.html +flow/ext/model/flow.php +flow/ext/model/index.html +flow/ext/view/autoimport.html.php +flow/ext/view/batchcreate.flow.html.hook.php +flow/ext/view/batchoperate.flow.html.hook.php +flow/ext/view/browse.flow.html.hook.php +flow/ext/view/browse.html.php +flow/ext/view/create.flow.html.hook.php +flow/ext/view/export.html.php +flow/ext/view/index.html +flow/ext/view/operate.html.php +flow/ext/view/showimport.html.php +flow/ext/view/view.flow.html.hook.php +flow/index.html +flow/js/batchcreate.js +flow/js/batchoperate.js +flow/js/browse.js +flow/js/common.js +flow/js/create.js +flow/js/import.js +flow/js/index.html +flow/js/operate.js +flow/js/report.js +flow/js/search.js +flow/js/showimport.js +flow/js/view.js +flow/lang/de.php +flow/lang/en.php +flow/lang/fr.php +flow/lang/index.html +flow/lang/vi.php +flow/lang/zh-cn.php +flow/lang/zh-tw.php +flow/model.php +flow/view/autoimport.html.php +flow/view/batchcreate.html.php +flow/view/batchoperate.html.php +flow/view/block.html.php +flow/view/browse.html.php +flow/view/create.html.php +flow/view/differentbatch.html.php +flow/view/export.html.php +flow/view/exporttemplate.html.php +flow/view/footer.html.php +flow/view/header.html.php +flow/view/import.html.php +flow/view/index.html +flow/view/link.html.php +flow/view/linked.html.php +flow/view/linktype.html.php +flow/view/operate.html.php +flow/view/report.html.php +flow/view/samebatch.html.php +flow/view/sendmail.html.php +flow/view/showimport.html.php +flow/view/templateimport.html.php +flow/view/view.html.php +gapanalysis/config.php +gapanalysis/control.php +gapanalysis/css/batchedit.css +gapanalysis/css/browse.css +gapanalysis/js/batchcreate.js +gapanalysis/js/create.js +gapanalysis/lang/en.php +gapanalysis/lang/zh-cn.php +gapanalysis/lang/zh-tw.php +gapanalysis/model.php +gapanalysis/view/batchcreate.html.php +gapanalysis/view/batchedit.html.php +gapanalysis/view/browse.html.php +gapanalysis/view/create.html.php +gapanalysis/view/edit.html.php +gapanalysis/view/view.html.php +git/config.php +git/control.php +git/ext/model/zentaomax.php +git/index.html +git/lang/de.php +git/lang/en.php +git/lang/fr.php +git/lang/index.html +git/lang/vi.php +git/lang/zh-cn.php +git/lang/zh-tw.php +git/model.php +git/view/cat.html.php +git/view/diff.html.php +git/view/index.html +gitlab/config.php +gitlab/control.php +gitlab/css/browse.css +gitlab/css/browsebranchpriv.css +gitlab/css/browsegroup.css +gitlab/css/browseproject.css +gitlab/css/browsetag.css +gitlab/css/browsetagpriv.css +gitlab/css/common.css +gitlab/css/createbranchpriv.css +gitlab/css/creategroup.css +gitlab/css/createtag.css +gitlab/css/createuser.css +gitlab/css/editgroup.css +gitlab/css/edituser.css +gitlab/css/importissue.css +gitlab/css/index.html +gitlab/css/managegroupmembers.css +gitlab/css/manageprojectmembers.css +gitlab/index.html +gitlab/js/browsebranchpriv.js +gitlab/js/browseproject.js +gitlab/js/browsetag.js +gitlab/js/browsetagpriv.js +gitlab/js/common.js +gitlab/js/creategroup.js +gitlab/js/createproject.js +gitlab/js/createuser.js +gitlab/js/editgroup.js +gitlab/js/editproject.js +gitlab/js/edituser.js +gitlab/js/importissue.js +gitlab/js/index.html +gitlab/js/managegroupmembers.js +gitlab/js/manageprojectmembers.js +gitlab/lang/en.php +gitlab/lang/index.html +gitlab/lang/zh-cn.php +gitlab/lang/zh-tw.php +gitlab/model.php +gitlab/view/binduser.html.php +gitlab/view/browse.html.php +gitlab/view/browsebranch.html.php +gitlab/view/browsebranchpriv.html.php +gitlab/view/browsegroup.html.php +gitlab/view/browseproject.html.php +gitlab/view/browsetag.html.php +gitlab/view/browsetagpriv.html.php +gitlab/view/browseuser.html.php +gitlab/view/create.html.php +gitlab/view/createbranch.html.php +gitlab/view/createbranchpriv.html.php +gitlab/view/creategroup.html.php +gitlab/view/createproject.html.php +gitlab/view/createtag.html.php +gitlab/view/createtagpriv.html.php +gitlab/view/createuser.html.php +gitlab/view/edit.html.php +gitlab/view/editgroup.html.php +gitlab/view/editproject.html.php +gitlab/view/edittagpriv.html.php +gitlab/view/edituser.html.php +gitlab/view/importissue.html.php +gitlab/view/index.html +gitlab/view/managegroupmembers.html.php +gitlab/view/manageprojectmembers.html.php +gitlab/view/view.html.php +group/config.php +group/control.php +group/css/browse.css +group/css/copy.css +group/css/index.html +group/css/manageenew.vi.css +group/css/managemember.css +group/css/managepriv.css +group/css/managepriv.en.css +group/css/managepriv.vi.css +group/css/managepriv.zh-cn.css +group/css/managepriv.zh-tw.css +group/css/manageprjadmin.css +group/css/manageview.css +group/css/manageview.en.css +group/css/manageview.zh-cn.css +group/css/manageview.zh-tw.css +group/ext/control/ajaxgetpairs.php +group/ext/css/managepriv/cmmi.css +group/ext/css/manageview/cmmi.css +group/ext/index.html +group/ext/js/managepriv/cmmi.js +group/ext/lang/de/aflow.php +group/ext/lang/de/bizext.php +group/ext/lang/de/calendar.php +group/ext/lang/de/crystal.php +group/ext/lang/de/effort.php +group/ext/lang/de/excel.php +group/ext/lang/de/export.php +group/ext/lang/de/flow.php +group/ext/lang/de/gantt.php +group/ext/lang/de/ldapauth.php +group/ext/lang/de/repo.php +group/ext/lang/de/report.php +group/ext/lang/de/sms.php +group/ext/lang/de/testreportexport.php +group/ext/lang/de/xuanxuan.php +group/ext/lang/de/zentaobiz.php +group/ext/lang/de/zflow.php +group/ext/lang/en/aflow.php +group/ext/lang/en/bizext.php +group/ext/lang/en/calendar.php +group/ext/lang/en/crystal.php +group/ext/lang/en/effort.php +group/ext/lang/en/excel.php +group/ext/lang/en/export.php +group/ext/lang/en/flow.php +group/ext/lang/en/gantt.php +group/ext/lang/en/index.html +group/ext/lang/en/ldapauth.php +group/ext/lang/en/repo.php +group/ext/lang/en/report.php +group/ext/lang/en/sms.php +group/ext/lang/en/sqlbuilder.php +group/ext/lang/en/testreportexport.php +group/ext/lang/en/xuanxuan.php +group/ext/lang/en/zentaobiz.php +group/ext/lang/en/zentaomax.php +group/ext/lang/en/zflow.php +group/ext/lang/fr/aflow.php +group/ext/lang/fr/bizext.php +group/ext/lang/fr/calendar.php +group/ext/lang/fr/crystal.php +group/ext/lang/fr/effort.php +group/ext/lang/fr/excel.php +group/ext/lang/fr/export.php +group/ext/lang/fr/flow.php +group/ext/lang/fr/gantt.php +group/ext/lang/fr/ldapauth.php +group/ext/lang/fr/repo.php +group/ext/lang/fr/report.php +group/ext/lang/fr/sms.php +group/ext/lang/fr/testreportexport.php +group/ext/lang/fr/zentaobiz.php +group/ext/lang/fr/zflow.php +group/ext/lang/index.html +group/ext/lang/vi/bizext.php +group/ext/lang/vi/calendar.php +group/ext/lang/vi/crystal.php +group/ext/lang/vi/effort.php +group/ext/lang/vi/excel.php +group/ext/lang/vi/export.php +group/ext/lang/vi/gantt.php +group/ext/lang/vi/index.html +group/ext/lang/vi/ldapauth.php +group/ext/lang/vi/repo.php +group/ext/lang/vi/report.php +group/ext/lang/vi/sms.php +group/ext/lang/vi/testreportexport.php +group/ext/lang/vi/zentaobiz.php +group/ext/lang/vi/zflow.php +group/ext/lang/zh-cn/aflow.php +group/ext/lang/zh-cn/bizext.php +group/ext/lang/zh-cn/calendar.php +group/ext/lang/zh-cn/crystal.php +group/ext/lang/zh-cn/effort.php +group/ext/lang/zh-cn/excel.php +group/ext/lang/zh-cn/export.php +group/ext/lang/zh-cn/flow.php +group/ext/lang/zh-cn/gantt.php +group/ext/lang/zh-cn/index.html +group/ext/lang/zh-cn/ldapauth.php +group/ext/lang/zh-cn/repo.php +group/ext/lang/zh-cn/report.php +group/ext/lang/zh-cn/sms.php +group/ext/lang/zh-cn/sqlbuilder.php +group/ext/lang/zh-cn/testreportexport.php +group/ext/lang/zh-cn/xuanxuan.php +group/ext/lang/zh-cn/zentaobiz.php +group/ext/lang/zh-cn/zentaomax.php +group/ext/lang/zh-cn/zflow.php +group/ext/lang/zh-tw/aflow.php +group/ext/lang/zh-tw/bizext.php +group/ext/lang/zh-tw/calendar.php +group/ext/lang/zh-tw/crystal.php +group/ext/lang/zh-tw/effort.php +group/ext/lang/zh-tw/excel.php +group/ext/lang/zh-tw/export.php +group/ext/lang/zh-tw/flow.php +group/ext/lang/zh-tw/gantt.php +group/ext/lang/zh-tw/ldapauth.php +group/ext/lang/zh-tw/repo.php +group/ext/lang/zh-tw/report.php +group/ext/lang/zh-tw/sms.php +group/ext/lang/zh-tw/testreportexport.php +group/ext/lang/zh-tw/xuanxuan.php +group/ext/lang/zh-tw/zentaobiz.php +group/ext/lang/zh-tw/zentaomax.php +group/ext/lang/zh-tw/zflow.php +group/ext/model/class/flow.class.php +group/ext/model/class/index.html +group/ext/model/class/zentaobiz.class.php +group/ext/model/flow.php +group/ext/model/index.html +group/ext/model/zentaobiz.php +group/ext/view/browse.zentaobiz.html.hook.php +group/ext/view/index.html +group/ext/view/managepriv.zentaobiz.html.hook.php +group/ext/view/manageview.flow.html.hook.php +group/ext/view/manageview.zentaobiz.html.hook.php +group/index.html +group/js/index.html +group/js/managemember.js +group/js/managepriv.js +group/js/manageprojectadmin.js +group/js/manageview.js +group/lang/changelog.php +group/lang/de.php +group/lang/en.php +group/lang/fr.php +group/lang/index.html +group/lang/resource.php +group/lang/vi.php +group/lang/zh-cn.php +group/lang/zh-tw.php +group/model.php +group/view/browse.html.php +group/view/copy.html.php +group/view/create.html.php +group/view/edit.html.php +group/view/index.html +group/view/managemember.html.php +group/view/managepriv.html.php +group/view/manageprojectadmin.html.php +group/view/manageview.html.php +group/view/privbygroup.html.php +group/view/privbymodule.html.php +holiday/config.php +holiday/control.php +holiday/css/browse.css +holiday/css/index.html +holiday/ext/index.html +holiday/ext/model/index.html +holiday/ext/model/zentaomax.php +holiday/index.html +holiday/lang/de.php +holiday/lang/en.php +holiday/lang/fr.php +holiday/lang/index.html +holiday/lang/vi.php +holiday/lang/zh-cn.php +holiday/lang/zh-tw.php +holiday/model.php +holiday/view/browse.html.php +holiday/view/create.html.php +holiday/view/edit.html.php +holiday/view/index.html +host/config.php +host/control.php +host/css/create.css +host/css/edit.css +host/css/enew.vi.css +host/css/treemap.css +host/css/view.css +host/css/view.en.css +host/css/view.zh-cn.css +host/css/view.zh-tw.css +host/js/create.js +host/js/edit.js +host/lang/de.php +host/lang/en.php +host/lang/fr.php +host/lang/vi.php +host/lang/zh-cn.php +host/lang/zh-tw.php +host/model.php +host/view/browse.html.php +host/view/changestatus.html.php +host/view/create.html.php +host/view/edit.html.php +host/view/m.browse.html.php +host/view/m.view.html.php +host/view/treemap.html.php +host/view/view.html.php +im/apischeme.json +im/config.php +im/control.php +im/css/debug.css +im/ext/config/xuanxuan.php +im/ext/control/debug.php +im/ext/control/downloadxxdpackage.php +im/ext/control/sysgetserverinfo.php +im/ext/control/userlogin.php +im/ext/css/debug/debug.css +im/ext/lang/de/xuanxuan.php +im/ext/lang/en/xuanxuan.php +im/ext/lang/zh-cn/xuanxuan.php +im/ext/lang/zh-tw/xuanxuan.php +im/ext/model/class/xuanxuan.class.php +im/ext/model/xuanxuan.php +im/ext/view/debug.html.php +im/js/debug.js +im/lang/de.php +im/lang/en.php +im/lang/zh-cn.php +im/lang/zh-tw.php +im/model/chat.php +im/model/conference.php +im/model/message.php +im/model/user.php +im/model.php +im/view/debug.html.php +im/view/xdebug.html.php +im/view/xxdconfig.html.php +index/config.php +index/control.php +index/css/changelog.css +index/css/index.css +index/css/index.en.css +index/css/index.html +index/ext/control/index.php +index/ext/css/index/xuanxuan.css +index/ext/js/index/xuanxuan.js +index/ext/view/index.xuanxuan.html.hook.php +index/ext/view/index.zentaobiz.html.hook.php +index/index.html +index/js/index.html +index/js/index.js +index/lang/de.php +index/lang/en.php +index/lang/fr.php +index/lang/index.html +index/lang/vi.php +index/lang/zh-cn.php +index/lang/zh-tw.php +index/model.php +index/view/changelog.html.php +index/view/index.html +index/view/index.html.php +index.html +install/control.php +install/css/common.css +install/css/index.css +install/css/index.en.css +install/css/index.html +install/css/index.vi.css +install/css/step4.css +install/css/step5.css +install/css/step5.en.css +install/ext/control/index.php +install/ext/index.html +install/ext/lang/de/bizext.php +install/ext/lang/de/zentaobiz.php +install/ext/lang/en/bizext.php +install/ext/lang/en/zentaobiz.php +install/ext/lang/fr/bizext.php +install/ext/lang/fr/zentaobiz.php +install/ext/lang/zh-cn/bizext.php +install/ext/lang/zh-cn/zentaobiz.php +install/ext/lang/zh-tw/bizext.php +install/ext/lang/zh-tw/zentaobiz.php +install/ext/model/flow.php +install/ext/model/hook/grantpriv.bizext.php +install/ext/model/hook/grantpriv.flow.php +install/ext/model/hook/index.html +install/ext/model/index.html +install/ext/view/step4.zentaomax.html.hook.php +install/index.html +install/js/common.js +install/js/index.html +install/js/license.js +install/js/step2.js +install/js/step4.js +install/lang/de.php +install/lang/en.php +install/lang/fr.php +install/lang/index.html +install/lang/vi.php +install/lang/zh-cn.php +install/lang/zh-tw.php +install/model.php +install/view/index.html +install/view/index.html.php +install/view/license.html.php +install/view/step1.html.php +install/view/step2.html.php +install/view/step3.html.php +install/view/step4.html.php +install/view/step5.html.php +install/view/step6.html.php +issue/config.php +issue/control.php +issue/css/browse.css +issue/js/browse.js +issue/js/importfromlib.js +issue/lang/de.php +issue/lang/en.php +issue/lang/fr.php +issue/lang/vi.php +issue/lang/zh-cn.php +issue/lang/zh-tw.php +issue/model.php +issue/view/activate.html.php +issue/view/assignto.html.php +issue/view/batchcreate.html.php +issue/view/browse.html.php +issue/view/bugform.html.php +issue/view/cancel.html.php +issue/view/close.html.php +issue/view/confirm.html.php +issue/view/create.html.php +issue/view/edit.html.php +issue/view/importfromlib.html.php +issue/view/resolve.html.php +issue/view/resolveform.html.php +issue/view/riskform.html.php +issue/view/storyform.html.php +issue/view/taskform.html.php +issue/view/view.html.php +jenkins/config.php +jenkins/control.php +jenkins/css/browse.css +jenkins/css/index.html +jenkins/index.html +jenkins/lang/de.php +jenkins/lang/en.php +jenkins/lang/fr.php +jenkins/lang/index.html +jenkins/lang/vi.php +jenkins/lang/zh-cn.php +jenkins/lang/zh-tw.php +jenkins/model.php +jenkins/view/browse.html.php +jenkins/view/create.html.php +jenkins/view/edit.html.php +jenkins/view/index.html +job/config.php +job/control.php +job/css/browse.css +job/css/create.css +job/css/edit.css +job/css/index.html +job/css/view.css +job/index.html +job/js/browse.js +job/js/common.js +job/js/create.js +job/js/edit.js +job/js/exec.js +job/js/index.html +job/js/view.js +job/lang/de.php +job/lang/en.php +job/lang/fr.php +job/lang/index.html +job/lang/vi.php +job/lang/zh-cn.php +job/lang/zh-tw.php +job/model.php +job/view/browse.html.php +job/view/create.html.php +job/view/edit.html.php +job/view/exec.html.php +job/view/index.html +job/view/view.html.php +kanban/config.php +kanban/control.php +kanban/css/batchcreatecard.css +kanban/css/closespace.css +kanban/css/common.css +kanban/css/create.css +kanban/css/createcard.css +kanban/css/createlane.css +kanban/css/createregion.css +kanban/css/createspace.css +kanban/css/edit.css +kanban/css/editcard.css +kanban/css/editspace.css +kanban/css/import.css +kanban/css/index.html +kanban/css/performable.css +kanban/css/setcolumn.css +kanban/css/setlane.css +kanban/css/setlaneheight.css +kanban/css/space.css +kanban/css/splitcolumn.css +kanban/css/view.css +kanban/css/viewcard.css +kanban/index.html +kanban/js/batchcreatecard.js +kanban/js/common.js +kanban/js/create.js +kanban/js/createcolumn.js +kanban/js/createlane.js +kanban/js/createspace.js +kanban/js/import.js +kanban/js/index.html +kanban/js/setcolumn.js +kanban/js/setlane.js +kanban/js/setlaneheight.js +kanban/js/setwip.js +kanban/js/space.js +kanban/js/splitcolumn.js +kanban/js/view.js +kanban/lang/en.php +kanban/lang/index.html +kanban/lang/zh-cn.php +kanban/lang/zh-tw.php +kanban/model.php +kanban/view/ajaxgetkanbanmenu.html.php +kanban/view/batchcreatecard.html.php +kanban/view/close.html.php +kanban/view/closespace.html.php +kanban/view/create.html.php +kanban/view/createcard.html.php +kanban/view/createcolumn.html.php +kanban/view/createexeclane.html.php +kanban/view/createlane.html.php +kanban/view/createregion.html.php +kanban/view/createspace.html.php +kanban/view/edit.html.php +kanban/view/editcard.html.php +kanban/view/editregion.html.php +kanban/view/editspace.html.php +kanban/view/enablearchived.html.php +kanban/view/import.html.php +kanban/view/importbuild.html.php +kanban/view/importcard.html.php +kanban/view/importexecution.html.php +kanban/view/importplan.html.php +kanban/view/importrelease.html.php +kanban/view/index.html +kanban/view/performable.html.php +kanban/view/setcolumn.html.php +kanban/view/setcolumnwidth.html.php +kanban/view/setlane.html.php +kanban/view/setlaneheight.html.php +kanban/view/setwip.html.php +kanban/view/space.html.php +kanban/view/splitcolumn.html.php +kanban/view/view.html.php +kanban/view/viewarchivedcard.html.php +kanban/view/viewarchivedcolumn.html.php +kanban/view/viewcard.html.php +ldap/config.php +ldap/control.php +ldap/css/set.css +ldap/css/set.en.css +ldap/css/set.vi.css +ldap/css/set.zh-cn.css +ldap/css/set.zh-tw.css +ldap/js/set.js +ldap/lang/de.php +ldap/lang/en.php +ldap/lang/fr.php +ldap/lang/vi.php +ldap/lang/zh-cn.php +ldap/lang/zh-tw.php +ldap/model.php +ldap/view/set.html.php +leave/config.php +leave/control.php +leave/css/browse.css +leave/css/common.css +leave/css/view.css +leave/ext/control/export.php +leave/ext/css/browse/zentaobiz.css +leave/ext/css/create/oa.css +leave/ext/css/edit/oa.css +leave/ext/css/personalannual/zentaobiz.css +leave/ext/css/setreviewer/zentaobiz.css +leave/ext/js/browse/zentaobiz.js +leave/ext/js/review/zentaobiz.js +leave/ext/js/view/zentaobiz.js +leave/ext/lang/de/leave.php +leave/ext/lang/en/leave.php +leave/ext/lang/fr/leave.php +leave/ext/lang/vi/leave.php +leave/ext/lang/zh-cn/leave.php +leave/ext/lang/zh-tw/leave.php +leave/ext/model/oa.php +leave/ext/view/browse.html.php +leave/ext/view/browse.oa.html.hook.php +leave/ext/view/create.oa.html.hook.php +leave/ext/view/edit.oa.html.hook.php +leave/ext/view/personalannual.oa.html.hook.php +leave/ext/view/view.html.php +leave/js/browse.js +leave/js/create.js +leave/js/edit.js +leave/js/personalannual.js +leave/lang/de.php +leave/lang/en.php +leave/lang/fr.php +leave/lang/vi.php +leave/lang/zh-cn.php +leave/lang/zh-tw.php +leave/model.php +leave/view/back.html.php +leave/view/browse.html.php +leave/view/create.html.php +leave/view/edit.html.php +leave/view/export.html.php +leave/view/m.back.html.php +leave/view/m.browse.html.php +leave/view/m.create.html.php +leave/view/m.edit.html.php +leave/view/m.review.html.php +leave/view/m.sendmail.html.php +leave/view/m.view.html.php +leave/view/personalannual.html.php +leave/view/review.html.php +leave/view/sendmail.html.php +leave/view/setreviewer.html.php +leave/view/view.html.php +leave/view/x.browse.html.php +license/control.php +license/css/uploadlicense.css +license/lang/de.php +license/lang/en.php +license/lang/zh-cn.php +license/lang/zh-tw.php +license/model.php +license/view/uploadlicense.html.php +lieu/config.php +lieu/control.php +lieu/css/browse.css +lieu/css/common.css +lieu/css/view.css +lieu/ext/css/create/zentaobiz.css +lieu/ext/css/edit/zentaobiz.css +lieu/ext/js/review/zentaobiz.js +lieu/ext/js/view/zentaobiz.js +lieu/ext/lang/de/lieu.php +lieu/ext/lang/en/lieu.php +lieu/ext/lang/fr/lieu.php +lieu/ext/lang/vi/lieu.php +lieu/ext/lang/zh-cn/lieu.php +lieu/ext/lang/zh-tw/lieu.php +lieu/ext/model/oa.php +lieu/ext/view/browse.oa.html.hook.php +lieu/ext/view/create.oa.html.hook.php +lieu/ext/view/edit.oa.html.hook.php +lieu/js/browse.js +lieu/js/create.js +lieu/js/edit.js +lieu/lang/de.php +lieu/lang/en.php +lieu/lang/fr.php +lieu/lang/vi.php +lieu/lang/zh-cn.php +lieu/lang/zh-tw.php +lieu/model.php +lieu/view/browse.html.php +lieu/view/create.html.php +lieu/view/edit.html.php +lieu/view/m.browse.html.php +lieu/view/m.create.html.php +lieu/view/m.edit.html.php +lieu/view/m.sendmail.html.php +lieu/view/m.view.html.php +lieu/view/review.html.php +lieu/view/sendmail.html.php +lieu/view/setreviewer.html.php +lieu/view/view.html.php +lieu/view/x.browse.html.php +mail/config.php +mail/control.php +mail/css/index.html +mail/css/test.css +mail/index.html +mail/js/common.js +mail/js/detect.js +mail/js/edit.js +mail/js/index.html +mail/js/ztcloud.js +mail/lang/de.php +mail/lang/en.php +mail/lang/fr.php +mail/lang/index.html +mail/lang/vi.php +mail/lang/zh-cn.php +mail/lang/zh-tw.php +mail/model.php +mail/view/browse.html.php +mail/view/detect.html.php +mail/view/edit.html.php +mail/view/index.html +mail/view/index.html.php +mail/view/save.html.php +mail/view/sendcloud.html.php +mail/view/sendclouduser.html.php +mail/view/test.html.php +mail/view/ztcloud.html.php +makeup/config.php +makeup/control.php +makeup/css/browse.css +makeup/css/common.css +makeup/css/create.css +makeup/css/view.css +makeup/ext/control/export.php +makeup/ext/css/browse/zentaobiz.css +makeup/ext/css/create/zentaobiz.css +makeup/ext/js/browse/zentaobiz.js +makeup/ext/js/review/zentaobiz.js +makeup/ext/js/view/zentaobiz.js +makeup/ext/lang/de/makeup.php +makeup/ext/lang/en/makeup.php +makeup/ext/lang/fr/makeup.php +makeup/ext/lang/vi/makeup.php +makeup/ext/lang/zh-cn/makeup.php +makeup/ext/lang/zh-tw/makeup.php +makeup/ext/model/oa.php +makeup/ext/view/browse.oa.html.hook.php +makeup/ext/view/create.oa.html.hook.php +makeup/ext/view/edit.oa.html.hook.php +makeup/js/browse.js +makeup/js/create.js +makeup/js/edit.js +makeup/lang/de.php +makeup/lang/en.php +makeup/lang/fr.php +makeup/lang/vi.php +makeup/lang/zh-cn.php +makeup/lang/zh-tw.php +makeup/model.php +makeup/view/browse.html.php +makeup/view/create.html.php +makeup/view/edit.html.php +makeup/view/export.html.php +makeup/view/m.browse.html.php +makeup/view/m.create.html.php +makeup/view/m.edit.html.php +makeup/view/m.review.html.php +makeup/view/m.sendmail.html.php +makeup/view/m.view.html.php +makeup/view/review.html.php +makeup/view/sendmail.html.php +makeup/view/setreviewer.html.php +makeup/view/view.html.php +makeup/view/x.browse.html.php +measrecord/control.php +measrecord/css/browse.css +measrecord/js/browse.js +measrecord/lang/en.php +measrecord/lang/zh-cn.php +measrecord/lang/zh-tw.php +measrecord/model.php +measrecord/view/browse.html.php +measurement/config.php +measurement/control.php +measurement/css/common.css +measurement/css/setsql.css +measurement/css/viewtemplate.css +measurement/js/batchedit.js +measurement/js/browse.js +measurement/js/createtemplate.js +measurement/js/design.js +measurement/js/setsql.js +measurement/js/setsqlparams.js +measurement/js/viewtemplate.js +measurement/lang/en.php +measurement/lang/zh-cn.php +measurement/lang/zh-tw.php +measurement/model.php +measurement/view/ajaxbuildparamform.html.php +measurement/view/batchedit.html.php +measurement/view/browse.html.php +measurement/view/complextemplate.html.php +measurement/view/createbasic.html.php +measurement/view/createcollectconf.html.php +measurement/view/createderivation.html.php +measurement/view/createtemplate.html.php +measurement/view/definition.html.php +measurement/view/derivation.html.php +measurement/view/design.html.php +measurement/view/designphp.html.php +measurement/view/designsql.html.php +measurement/view/editbasic.html.php +measurement/view/editcollectconf.html.php +measurement/view/editderivation.html.php +measurement/view/edittemplate.html.php +measurement/view/getsqlparams.html.php +measurement/view/holdermodal.html.php +measurement/view/menu.html.php +measurement/view/paramformmodal.html.php +measurement/view/report.html.php +measurement/view/setparams.html.php +measurement/view/setsql.html.php +measurement/view/settips.html.php +measurement/view/showsqlparams.html.php +measurement/view/singletemplate.html.php +measurement/view/template.html.php +measurement/view/viewtemplate.html.php +meeting/config.php +meeting/control.php +meeting/css/browse.css +meeting/js/common.js +meeting/js/minutes.js +meeting/lang/en.php +meeting/lang/zh-cn.php +meeting/lang/zh-tw.php +meeting/model.php +meeting/view/browse.html.php +meeting/view/create.html.php +meeting/view/edit.html.php +meeting/view/minutes.html.php +meeting/view/sendmail.html.php +meeting/view/view.html.php +meetingroom/config.php +meetingroom/control.php +meetingroom/css/browse.css +meetingroom/css/create.css +meetingroom/css/edit.css +meetingroom/lang/en.php +meetingroom/lang/zh-cn.php +meetingroom/lang/zh-tw.php +meetingroom/model.php +meetingroom/view/batchcreate.html.php +meetingroom/view/batchedit.html.php +meetingroom/view/browse.html.php +meetingroom/view/create.html.php +meetingroom/view/edit.html.php +meetingroom/view/view.html.php +message/config.php +message/control.php +message/css/index.html +message/css/setting.css +message/ext/config/sms.php +message/ext/config/xuanxuan.php +message/ext/config/zentaomax.php +message/ext/control/ajaxgetmessage.php +message/ext/lang/de/sms.php +message/ext/lang/de/xuanxuan.php +message/ext/lang/en/sms.php +message/ext/lang/en/xuanxuan.php +message/ext/lang/en/zentaomax.php +message/ext/lang/fr/sms.php +message/ext/lang/vi/sms.php +message/ext/lang/zh-cn/sms.php +message/ext/lang/zh-cn/xuanxuan.php +message/ext/lang/zh-cn/zentaomax.php +message/ext/lang/zh-tw/sms.php +message/ext/lang/zh-tw/xuanxuan.php +message/ext/lang/zh-tw/zentaomax.php +message/ext/model/class/sms.class.php +message/ext/model/class/xuanxuan.class.php +message/ext/model/hook/send.xuanxuan.php +message/ext/model/sms.php +message/index.html +message/js/index.html +message/js/setting.js +message/lang/de.php +message/lang/en.php +message/lang/fr.php +message/lang/index.html +message/lang/vi.php +message/lang/zh-cn.php +message/lang/zh-tw.php +message/model.php +message/view/browser.html.php +message/view/header.html.php +message/view/index.html +message/view/setting.html.php +milestone/config.php +milestone/control.php +milestone/css/index.css +milestone/lang/en.php +milestone/lang/zh-cn.php +milestone/lang/zh-tw.php +milestone/model.php +milestone/view/basicinfo.html.php +milestone/view/chart.html.php +milestone/view/condition.html.php +milestone/view/index.html.php +milestone/view/otherproblem.html.php +milestone/view/process.html.php +milestone/view/productquality.html.php +milestone/view/progress.html.php +milestone/view/projectrisk.html.php +milestone/view/rectifying.html.php +milestone/view/workhour.html.php +misc/config.php +misc/control.php +misc/css/about.css +misc/css/changelog.css +misc/css/features.css +misc/css/index.html +misc/ext/control/ajaxgetclientpackage.php +misc/ext/control/ajaxgetpackagesize.php +misc/ext/control/ajaxsetclientconfig.php +misc/ext/control/downloadclient.php +misc/ext/control/ping.php +misc/ext/lang/de/bizext.php +misc/ext/lang/de/xuanxuan.php +misc/ext/lang/de/zentaobiz.php +misc/ext/lang/en/bizext.php +misc/ext/lang/en/xuanxuan.php +misc/ext/lang/en/zentaobiz.php +misc/ext/lang/en/zentaomax.php +misc/ext/lang/fr/bizext.php +misc/ext/lang/fr/zentaobiz.php +misc/ext/lang/vi/bizext.php +misc/ext/lang/vi/zentaobiz.php +misc/ext/lang/zh-cn/bizext.php +misc/ext/lang/zh-cn/xuanxuan.php +misc/ext/lang/zh-cn/zentaobiz.php +misc/ext/lang/zh-cn/zentaomax.php +misc/ext/lang/zh-tw/bizext.php +misc/ext/lang/zh-tw/xuanxuan.php +misc/ext/lang/zh-tw/zentaobiz.php +misc/ext/lang/zh-tw/zentaomax.php +misc/ext/model/xuanxuan.php +misc/ext/view/about.bizext.html.hook.php +misc/ext/view/about.zentaobiz.html.hook.php +misc/index.html +misc/js/features.js +misc/js/index.html +misc/lang/de.php +misc/lang/en.php +misc/lang/fr.php +misc/lang/index.html +misc/lang/vi.php +misc/lang/zh-cn.php +misc/lang/zh-tw.php +misc/model.php +misc/view/about.html.php +misc/view/changelog.html.php +misc/view/checkupdate.html.php +misc/view/downloadclient.html.php +misc/view/features.html.php +misc/view/getsid.html.php +misc/view/index.html +misc/view/links.html.php +misc/view/m.about.html.php +misc/view/qrcode.html.php +mr/config.php +mr/control.php +mr/css/common.css +mr/css/create.css +mr/css/create.en.css +mr/css/diff.css +mr/css/edit.css +mr/css/edit.en.css +mr/css/index.html +mr/css/link.css +mr/css/view.css +mr/index.html +mr/js/create.js +mr/js/diff.js +mr/js/edit.js +mr/js/index.html +mr/js/link.js +mr/js/view.js +mr/lang/en.php +mr/lang/index.html +mr/lang/zh-cn.php +mr/lang/zh-tw.php +mr/model.php +mr/view/approval.html.php +mr/view/browse.html.php +mr/view/create.html.php +mr/view/diff.html.php +mr/view/edit.html.php +mr/view/header.review.html.php +mr/view/index.html +mr/view/link.html.php +mr/view/linkbug.html.php +mr/view/linkstory.html.php +mr/view/linktask.html.php +mr/view/view.html.php +my/config.php +my/control.php +my/css/bug.css +my/css/changepassword.en.css +my/css/changepassword.vi.css +my/css/changepassword.zh-cn.css +my/css/changepassword.zh-tw.css +my/css/common.css +my/css/dynamic.css +my/css/editprofile.css +my/css/execution.css +my/css/execution.en.css +my/css/execution.zh-cn.css +my/css/guidechangetheme.css +my/css/index.html +my/css/m.common.css +my/css/managecontacts.css +my/css/profile.css +my/css/profile.en.css +my/css/profile.vi.css +my/css/profile.zh-cn.css +my/css/profile.zh-tw.css +my/css/project.css +my/css/requirement.css +my/css/score.css +my/css/story.css +my/css/task.css +my/css/team.css +my/css/testtask.css +my/css/todo.css +my/ext/control/ajaxgetproject.php +my/ext/control/calendar.php +my/ext/control/changepassword.php +my/ext/control/effort.php +my/ext/control/index.php +my/ext/control/meeting.php +my/ext/control/review.php +my/ext/control/todo.php +my/ext/css/common/cmmi.css +my/ext/css/effort/effort.css +my/ext/css/profile/cmmi.css +my/ext/js/effort/effort.js +my/ext/lang/de/calendar.php +my/ext/lang/de/effort.php +my/ext/lang/de/oa.php +my/ext/lang/de/web.php +my/ext/lang/en/calendar.php +my/ext/lang/en/effort.php +my/ext/lang/en/oa.php +my/ext/lang/en/web.php +my/ext/lang/en/zentaomax.php +my/ext/lang/fr/calendar.php +my/ext/lang/fr/effort.php +my/ext/lang/fr/oa.php +my/ext/lang/fr/web.php +my/ext/lang/vi/calendar.php +my/ext/lang/vi/effort.php +my/ext/lang/vi/oa.php +my/ext/lang/vi/web.php +my/ext/lang/zh-cn/calendar.php +my/ext/lang/zh-cn/effort.php +my/ext/lang/zh-cn/oa.php +my/ext/lang/zh-cn/web.php +my/ext/lang/zh-cn/zentaomax.php +my/ext/lang/zh-tw/calendar.php +my/ext/lang/zh-tw/effort.php +my/ext/lang/zh-tw/oa.php +my/ext/lang/zh-tw/web.php +my/ext/lang/zh-tw/zentaomax.php +my/ext/model/class/effort.class.php +my/ext/model/zentaomax.php +my/ext/view/ajaxgetproject.html.php +my/ext/view/audit.html.php +my/ext/view/effort.calendar.html.hook.php +my/ext/view/effort.effort.html.hook.php +my/ext/view/effort.html.php +my/ext/view/issue.html.php +my/ext/view/mymeeting.html.php +my/ext/view/nc.html.php +my/ext/view/review.html.php +my/ext/view/risk.html.php +my/ext/view/todo.calendar.html.hook.php +my/index.html +my/js/changepassword.js +my/js/common.js +my/js/doc.js +my/js/editprofile.js +my/js/index.html +my/js/index.js +my/js/m.changepassword.js +my/js/m.common.js +my/js/m.todo.js +my/js/profile.js +my/js/requirement.js +my/js/story.js +my/js/task.js +my/js/testcase.js +my/js/todo.js +my/lang/de.php +my/lang/en.php +my/lang/fr.php +my/lang/index.html +my/lang/vi.php +my/lang/zh-cn.php +my/lang/zh-tw.php +my/model.php +my/view/bug.html.php +my/view/buildcontactlists.html.php +my/view/changepassword.html.php +my/view/doc.html.php +my/view/dynamic.html.php +my/view/editprofile.html.php +my/view/execution.html.php +my/view/index.html +my/view/index.html.php +my/view/m.bug.html.php +my/view/m.buildcontactlists.html.php +my/view/m.changepassword.html.php +my/view/m.dynamic.html.php +my/view/m.effort.html.php +my/view/m.execution.html.php +my/view/m.index.html.php +my/view/m.profile.html.php +my/view/m.story.html.php +my/view/m.task.html.php +my/view/m.testcase.html.php +my/view/m.testtask.html.php +my/view/m.todo.html.php +my/view/managecontacts.html.php +my/view/preference.html.php +my/view/profile.html.php +my/view/project.html.php +my/view/requirement.html.php +my/view/score.html.php +my/view/story.html.php +my/view/task.html.php +my/view/team.html.php +my/view/testcase.html.php +my/view/testtask.html.php +my/view/todo.html.php +nc/config.php +nc/control.php +nc/css/browse.css +nc/lang/en.php +nc/lang/zh-cn.php +nc/lang/zh-tw.php +nc/model.php +nc/view/activate.html.php +nc/view/assignto.html.php +nc/view/browse.html.php +nc/view/close.html.php +nc/view/create.html.php +nc/view/edit.html.php +nc/view/resolve.html.php +nc/view/view.html.php +notice/control.php +notice/css/index.css +notice/js/index.js +notice/lang/de.php +notice/lang/en.php +notice/lang/fr.php +notice/lang/vi.php +notice/lang/zh-cn.php +notice/lang/zh-tw.php +notice/view/index.html.php +opportunity/config.php +opportunity/control.php +opportunity/css/browse.css +opportunity/css/common.css +opportunity/js/browse.js +opportunity/js/common.js +opportunity/js/importfromlib.js +opportunity/js/track.js +opportunity/lang/en.php +opportunity/lang/zh-cn.php +opportunity/lang/zh-tw.php +opportunity/model.php +opportunity/view/activate.html.php +opportunity/view/assignto.html.php +opportunity/view/batchcreate.html.php +opportunity/view/batchedit.html.php +opportunity/view/browse.html.php +opportunity/view/cancel.html.php +opportunity/view/close.html.php +opportunity/view/create.html.php +opportunity/view/edit.html.php +opportunity/view/hangup.html.php +opportunity/view/importfromlib.html.php +opportunity/view/track.html.php +opportunity/view/view.html.php +ops/control.php +ops/js/setting.js +ops/lang/de.php +ops/lang/en.php +ops/lang/fr.php +ops/lang/vi.php +ops/lang/zh-cn.php +ops/lang/zh-tw.php +ops/view/setting.html.php +overtime/config.php +overtime/control.php +overtime/css/browse.css +overtime/css/common.css +overtime/css/view.css +overtime/ext/control/export.php +overtime/ext/css/browse/zentaobiz.css +overtime/ext/js/browse/zentaobiz.js +overtime/ext/js/review/zentaobiz.js +overtime/ext/js/view/zentaobiz.js +overtime/ext/lang/de/oa.php +overtime/ext/lang/en/oa.php +overtime/ext/lang/fr/oa.php +overtime/ext/lang/vi/oa.php +overtime/ext/lang/zh-cn/oa.php +overtime/ext/lang/zh-tw/oa.php +overtime/ext/model/oa.php +overtime/ext/view/browse.oa.html.hook.php +overtime/ext/view/create.oa.html.hook.php +overtime/ext/view/edit.oa.html.hook.php +overtime/js/browse.js +overtime/js/create.js +overtime/js/edit.js +overtime/lang/de.php +overtime/lang/en.php +overtime/lang/fr.php +overtime/lang/vi.php +overtime/lang/zh-cn.php +overtime/lang/zh-tw.php +overtime/model.php +overtime/view/browse.html.php +overtime/view/create.html.php +overtime/view/edit.html.php +overtime/view/export.html.php +overtime/view/m.browse.html.php +overtime/view/m.create.html.php +overtime/view/m.edit.html.php +overtime/view/m.review.html.php +overtime/view/m.sendmail.html.php +overtime/view/m.view.html.php +overtime/view/review.html.php +overtime/view/sendmail.html.php +overtime/view/setreviewer.html.php +overtime/view/view.html.php +overtime/view/x.browse.html.php +owt/config.php +owt/control.php +owt/css/admin.css +owt/lang/de.php +owt/lang/en.php +owt/lang/zh-cn.php +owt/lang/zh-tw.php +owt/model.php +owt/view/admin.html.php +personnel/config.php +personnel/control.php +personnel/css/accessible.css +personnel/css/addwhitelist.css +personnel/css/index.html +personnel/css/invest.css +personnel/css/whitelist.css +personnel/ext/lang/de/web.php +personnel/ext/lang/en/web.php +personnel/ext/lang/fr/web.php +personnel/ext/lang/zh-cn/web.php +personnel/ext/lang/zh-tw/web.php +personnel/index.html +personnel/js/accessible.js +personnel/js/addwhitelist.js +personnel/js/index.html +personnel/js/whitelist.js +personnel/lang/de.php +personnel/lang/en.php +personnel/lang/fr.php +personnel/lang/index.html +personnel/lang/vi.php +personnel/lang/zh-cn.php +personnel/lang/zh-tw.php +personnel/model.php +personnel/view/accessible.html.php +personnel/view/addwhitelist.html.php +personnel/view/index.html +personnel/view/invest.html.php +personnel/view/m.accessible.html.php +personnel/view/m.invest.html.php +personnel/view/m.whitelist.html.php +personnel/view/whitelist.html.php +pipeline/config.php +pipeline/index.html +pipeline/lang/index.html +pipeline/lang/zh-cn.php +pipeline/lang/zh-tw.php +pipeline/model.php +process/config.php +process/control.php +process/css/browse.css +process/lang/en.php +process/lang/zh-cn.php +process/lang/zh-tw.php +process/model.php +process/view/activitylist.html.php +process/view/batchcreate.html.php +process/view/browse.html.php +process/view/create.html.php +process/view/edit.html.php +process/view/menu.html.php +process/view/view.html.php +product/config.php +product/control.php +product/css/all.css +product/css/batchedit.css +product/css/browse.css +product/css/common.css +product/css/dashboard.css +product/css/dynamic.css +product/css/index.css +product/css/index.html +product/css/kanban.css +product/css/m.dynamic.css +product/css/m.roadmap.css +product/css/manageline.css +product/css/project.css +product/css/roadmap.css +product/css/view.css +product/css/x.browse.css +product/ext/control/browse.php +product/ext/css/browse/excel.css +product/ext/css/view/view.css +product/ext/index.html +product/ext/lang/de/feedback.php +product/ext/lang/de/web.php +product/ext/lang/en/feedback.php +product/ext/lang/en/web.php +product/ext/lang/fr/feedback.php +product/ext/lang/fr/web.php +product/ext/lang/vi/feedback.php +product/ext/lang/vi/web.php +product/ext/lang/zh-cn/feedback.php +product/ext/lang/zh-cn/web.php +product/ext/lang/zh-tw/feedback.php +product/ext/lang/zh-tw/web.php +product/ext/model/class/feedback.class.php +product/ext/model/class/flow.class.php +product/ext/model/class/index.html +product/ext/model/class/web.class.php +product/ext/model/feedback.php +product/ext/model/flow.php +product/ext/model/index.html +product/ext/view/browse.excel.html.hook.php +product/ext/view/create.feedback.html.hook.php +product/ext/view/edit.feedback.html.hook.php +product/ext/view/view.feedback.html.hook.php +product/index.html +product/js/all.js +product/js/batchedit.js +product/js/browse.js +product/js/common.js +product/js/create.js +product/js/edit.js +product/js/index.html +product/js/index.js +product/js/kanban.js +product/js/manageline.js +product/js/project.js +product/js/roadmap.js +product/lang/de.php +product/lang/en.php +product/lang/fr.php +product/lang/index.html +product/lang/vi.php +product/lang/zh-cn.php +product/lang/zh-tw.php +product/model.php +product/view/ajaxgetdropmenu.html.php +product/view/all.html.php +product/view/batchedit.html.php +product/view/browse.html.php +product/view/build.html.php +product/view/close.html.php +product/view/create.html.php +product/view/dashboard.html.php +product/view/dynamic.html.php +product/view/edit.html.php +product/view/export.html.php +product/view/index.html +product/view/index.html.php +product/view/kanban.html.php +product/view/m.ajaxgetdropmenu.html.php +product/view/m.all.html.php +product/view/m.browse.html.php +product/view/m.create.html.php +product/view/m.dynamic.html.php +product/view/m.index.html.php +product/view/m.project.html.php +product/view/m.roadmap.html.php +product/view/m.showerrornone.html.php +product/view/m.view.html.php +product/view/manageline.html.php +product/view/project.html.php +product/view/roadmap.html.php +product/view/showerrornone.html.php +product/view/view.html.php +productplan/config.php +productplan/control.php +productplan/css/batchedit.css +productplan/css/browse.css +productplan/css/index.html +productplan/css/linkbug.css +productplan/css/linkstory.css +productplan/css/view.css +productplan/css/x.view.css +productplan/ext/view/view.effort.html.hook.php +productplan/index.html +productplan/js/batchedit.js +productplan/js/browse.js +productplan/js/create.js +productplan/js/edit.js +productplan/js/index.html +productplan/js/view.js +productplan/lang/de.php +productplan/lang/en.php +productplan/lang/fr.php +productplan/lang/index.html +productplan/lang/vi.php +productplan/lang/zh-cn.php +productplan/lang/zh-tw.php +productplan/model.php +productplan/view/batchedit.html.php +productplan/view/browse.html.php +productplan/view/browsebykanban.html.php +productplan/view/browsebylist.html.php +productplan/view/create.html.php +productplan/view/edit.html.php +productplan/view/index.html +productplan/view/linkbug.html.php +productplan/view/linkstory.html.php +productplan/view/m.browse.html.php +productplan/view/m.view.html.php +productplan/view/start.html.php +productplan/view/view.html.php +program/config.php +program/control.php +program/css/browse.css +program/css/common.css +program/css/create.css +program/css/edit.css +program/css/index.html +program/css/kanban.css +program/css/product.css +program/css/project.css +program/ext/model/web.php +program/index.html +program/js/browse.js +program/js/common.js +program/js/create.js +program/js/createstakeholder.js +program/js/edit.js +program/js/index.html +program/js/kanban.js +program/lang/de.php +program/lang/en.php +program/lang/fr.php +program/lang/index.html +program/lang/vi.php +program/lang/zh-cn.php +program/lang/zh-tw.php +program/model.php +program/view/ajaxgetdropmenu.html.php +program/view/browse.html.php +program/view/browsebygrid.html.php +program/view/browsebylist.html.php +program/view/create.html.php +program/view/createguide.html.php +program/view/createstakeholder.html.php +program/view/edit.html.php +program/view/export.html.php +program/view/index.html +program/view/index.html.php +program/view/kanban.html.php +program/view/m.ajaxgetdropmenu.html.php +program/view/m.browse.html.php +program/view/m.product.html.php +program/view/m.project.html.php +program/view/m.stakeholder.html.php +program/view/managemembers.html.php +program/view/product.html.php +program/view/project.html.php +program/view/stakeholder.html.php +programplan/config.php +programplan/control.php +programplan/ext/config/zentaomax.php +programplan/ext/control/create.php +programplan/ext/control/edit.php +programplan/ext/model/zentaomax.php +programplan/index.html +programplan/js/browse.js +programplan/js/create.js +programplan/js/index.html +programplan/lang/de.php +programplan/lang/en.php +programplan/lang/fr.php +programplan/lang/index.html +programplan/lang/vi.php +programplan/lang/zh-cn.php +programplan/lang/zh-tw.php +programplan/model.php +programplan/view/browse.html.php +programplan/view/create.html.php +programplan/view/edit.html.php +programplan/view/gantt.html.php +programplan/view/index.html +programplan/view/list.html.php +project/config.php +project/control.php +project/css/batchedit.css +project/css/browse.css +project/css/common.css +project/css/create.css +project/css/dynamic.css +project/css/edit.css +project/css/group.css +project/css/index.css +project/css/index.html +project/css/kanban.css +project/css/managemembers.css +project/css/manageproducts.css +project/css/testtask.css +project/css/view.css +project/ext/index.html +project/ext/lang/de/aflow.php +project/ext/lang/en/aflow.php +project/ext/lang/en/index.html +project/ext/lang/fr/aflow.php +project/ext/lang/index.html +project/ext/lang/zh-cn/aflow.php +project/ext/lang/zh-cn/index.html +project/ext/lang/zh-tw/aflow.php +project/ext/model/class/effort.class.php +project/ext/model/effort.php +project/index.html +project/js/batchedit.js +project/js/browse.js +project/js/build.js +project/js/common.js +project/js/create.js +project/js/createstakeholder.js +project/js/edit.js +project/js/index.html +project/js/index.js +project/js/kanban.js +project/js/managemembers.js +project/js/manageproducts.js +project/js/team.js +project/lang/de.php +project/lang/en.php +project/lang/fr.php +project/lang/index.html +project/lang/vi.php +project/lang/zh-cn.php +project/lang/zh-tw.php +project/model.php +project/view/activate.html.php +project/view/ajaxgetdropmenu.html.php +project/view/batchedit.html.php +project/view/browse.html.php +project/view/browsebycard.html.php +project/view/browsebylist.html.php +project/view/bug.html.php +project/view/build.html.php +project/view/close.html.php +project/view/create.html.php +project/view/createguide.html.php +project/view/createstakeholder.html.php +project/view/dynamic.html.php +project/view/edit.html.php +project/view/export.html.php +project/view/group.html.php +project/view/index.html +project/view/index.html.php +project/view/kanban.html.php +project/view/m.ajaxgetdropmenu.html.php +project/view/m.bug.html.php +project/view/m.build.html.php +project/view/m.dynamic.html.php +project/view/m.managemembers.html.php +project/view/m.testtask.html.php +project/view/m.view.html.php +project/view/managemembers.html.php +project/view/managepriv.html.php +project/view/manageproducts.html.php +project/view/manageview.html.php +project/view/programtitle.html.php +project/view/qa.html.php +project/view/start.html.php +project/view/suspend.html.php +project/view/team.html.php +project/view/testtask.html.php +project/view/view.html.php +projectbuild/control.php +projectbuild/index.html +projectbuild/lang/de.php +projectbuild/lang/en.php +projectbuild/lang/fr.php +projectbuild/lang/index.html +projectbuild/lang/vi.php +projectbuild/lang/zh-cn.php +projectbuild/lang/zh-tw.php +projectrelease/config.php +projectrelease/control.php +projectrelease/css/browse.css +projectrelease/css/common.css +projectrelease/css/create.css +projectrelease/css/edit.css +projectrelease/css/index.html +projectrelease/css/view.css +projectrelease/index.html +projectrelease/js/common.js +projectrelease/js/create.js +projectrelease/js/index.html +projectrelease/js/view.js +projectrelease/lang/de.php +projectrelease/lang/en.php +projectrelease/lang/fr.php +projectrelease/lang/index.html +projectrelease/lang/vi.php +projectrelease/lang/zh-cn.php +projectrelease/lang/zh-tw.php +projectrelease/model.php +projectrelease/view/browse.html.php +projectrelease/view/create.html.php +projectrelease/view/edit.html.php +projectrelease/view/export.html.php +projectrelease/view/index.html +projectrelease/view/linkbug.html.php +projectrelease/view/linkstory.html.php +projectrelease/view/notify.html.php +projectrelease/view/view.html.php +projectstory/control.php +projectstory/ext/config/zentaomax.php +projectstory/ext/control/importfromlib.php +projectstory/ext/js/importfromlib/zentaomax.js +projectstory/ext/lang/en/zentaomax.php +projectstory/ext/lang/zh-cn/zentaomax.php +projectstory/ext/lang/zh-tw/zentaomax.php +projectstory/ext/model/zentaomax.php +projectstory/ext/view/importfromlib.html.php +projectstory/index.html +projectstory/lang/de.php +projectstory/lang/en.php +projectstory/lang/fr.php +projectstory/lang/index.html +projectstory/lang/vi.php +projectstory/lang/zh-cn.php +projectstory/lang/zh-tw.php +projectstory/model.php +pssp/control.php +pssp/css/browse.css +pssp/css/update.css +pssp/js/update.js +pssp/lang/en.php +pssp/lang/zh-cn.php +pssp/lang/zh-tw.php +pssp/model.php +pssp/view/browse.html.php +pssp/view/update.html.php +qa/config.php +qa/control.php +qa/css/index.css +qa/css/index.html +qa/index.html +qa/lang/de.php +qa/lang/en.php +qa/lang/fr.php +qa/lang/index.html +qa/lang/vi.php +qa/lang/zh-cn.php +qa/lang/zh-tw.php +qa/model.php +qa/view/index.html +qa/view/index.html.php +qa/view/m.index.html.php +release/config.php +release/control.php +release/css/browse.css +release/css/common.css +release/css/create.css +release/css/edit.css +release/css/index.html +release/css/view.css +release/ext/control/ajaxgetbyproduct.php +release/ext/lang/de/zentaobiz.php +release/ext/lang/en/zentaobiz.php +release/ext/lang/en/zentaomax.php +release/ext/lang/fr/zentaobiz.php +release/ext/lang/zh-cn/zentaobiz.php +release/ext/lang/zh-cn/zentaomax.php +release/ext/lang/zh-tw/zentaobiz.php +release/ext/lang/zh-tw/zentaomax.php +release/ext/model/class/ops.class.php +release/ext/model/ops.php +release/ext/view/view.effort.html.hook.php +release/index.html +release/js/common.js +release/js/create.js +release/js/index.html +release/js/view.js +release/lang/de.php +release/lang/en.php +release/lang/fr.php +release/lang/index.html +release/lang/vi.php +release/lang/zh-cn.php +release/lang/zh-tw.php +release/model.php +release/view/browse.html.php +release/view/create.html.php +release/view/edit.html.php +release/view/export.html.php +release/view/index.html +release/view/linkbug.html.php +release/view/linkstory.html.php +release/view/m.browse.html.php +release/view/m.view.html.php +release/view/notify.html.php +release/view/sendmail.html.php +release/view/view.html.php +repo/config.php +repo/control.php +repo/css/blame.css +repo/css/browse.css +repo/css/common.css +repo/css/diff.css +repo/css/index.html +repo/css/log.css +repo/css/maintain.css +repo/css/revision.css +repo/css/view.css +repo/ext/config/repo.php +repo/ext/control/addbug.php +repo/ext/control/addcomment.php +repo/ext/control/ajaxgetcommitter.php +repo/ext/control/ajaxgetexecutions.php +repo/ext/control/deletebug.php +repo/ext/control/deletecomment.php +repo/ext/control/editbug.php +repo/ext/control/editcomment.php +repo/ext/control/review.php +repo/ext/js/diff/repo.js +repo/ext/js/review/repo.js +repo/ext/js/view/repo.js +repo/ext/lang/en/zentaomax.php +repo/ext/lang/zh-cn/zentaomax.php +repo/ext/lang/zh-tw/zentaomax.php +repo/ext/model/class/repo.class.php +repo/ext/model/repo.php +repo/ext/model/zentaomax.php +repo/ext/view/diff.html.php +repo/ext/view/header.review.html.php +repo/ext/view/log.html.php +repo/ext/view/log.repo.html.hook.php +repo/ext/view/review.html.php +repo/ext/view/view.html.php +repo/index.html +repo/js/common.js +repo/js/create.js +repo/js/diff.js +repo/js/edit.js +repo/js/index.html +repo/js/log.js +repo/js/setrules.js +repo/js/view.js +repo/lang/de.php +repo/lang/en.php +repo/lang/fr.php +repo/lang/index.html +repo/lang/vi.php +repo/lang/zh-cn.php +repo/lang/zh-tw.php +repo/model.php +repo/view/ajaxsidecommits.html.php +repo/view/blame.html.php +repo/view/browse.html.php +repo/view/create.html.php +repo/view/diff.html.php +repo/view/edit.html.php +repo/view/index.html +repo/view/log.html.php +repo/view/maintain.html.php +repo/view/revision.html.php +repo/view/setrules.html.php +repo/view/showsynccommit.html.php +repo/view/view.html.php +report/config.php +report/control.php +report/css/annualdata.css +report/css/bugcreate.css +report/css/common.css +report/css/index.html +report/css/productsummary.css +report/css/projectdeviation.css +report/css/workload.css +report/ext/config/crystal.php +report/ext/control/ajaxcheckvar.php +report/ext/control/ajaxsetlang.php +report/ext/control/browsereport.php +report/ext/control/bugassignsummary.php +report/ext/control/bugsummary.php +report/ext/control/build.php +report/ext/control/casesrun.php +report/ext/control/crystalexport.php +report/ext/control/custom.php +report/ext/control/customeredreport.php +report/ext/control/deletereport.php +report/ext/control/editreport.php +report/ext/control/export.php +report/ext/control/instancetemplate.php +report/ext/control/projectsummary.php +report/ext/control/projectworkload.php +report/ext/control/reportexport.php +report/ext/control/roadmap.php +report/ext/control/savereport.php +report/ext/control/show.php +report/ext/control/storylinkedbug.php +report/ext/control/testcase.php +report/ext/control/usereport.php +report/ext/control/viewreport.php +report/ext/control/workassignsummary.php +report/ext/control/worksummary.php +report/ext/css/custom/crystal.css +report/ext/css/roadmap/report.css +report/ext/css/show/crystal.css +report/ext/css/show/crystal.en.css +report/ext/css/show/crystal.vi.css +report/ext/css/show/crystal.zh-cn.css +report/ext/css/show/crystal.zh-tw.css +report/ext/css/workassignsummary/report.en.css +report/ext/css/workassignsummary/report.vi.css +report/ext/css/workassignsummary/report.zh-cn.css +report/ext/css/workassignsummary/report.zh-tw.css +report/ext/css/worksummary/report.en.css +report/ext/css/worksummary/report.vi.css +report/ext/css/worksummary/report.zh-cn.css +report/ext/css/worksummary/report.zh-tw.css +report/ext/js/ajaxsetlang/crystal.js +report/ext/js/bugassignsummary/report.js +report/ext/js/bugsummary/report.js +report/ext/js/common/bizext.js +report/ext/js/custom/crystal.js +report/ext/js/roadmap/report.js +report/ext/js/show/crystal.js +report/ext/js/workassignsummary/worksummary.js +report/ext/js/worksummary/worksummary.js +report/ext/lang/de/crystal.php +report/ext/lang/de/excel.php +report/ext/lang/de/export.php +report/ext/lang/de/report.php +report/ext/lang/en/cmmi.php +report/ext/lang/en/crystal.php +report/ext/lang/en/excel.php +report/ext/lang/en/export.php +report/ext/lang/en/report.php +report/ext/lang/fr/crystal.php +report/ext/lang/fr/excel.php +report/ext/lang/fr/export.php +report/ext/lang/fr/report.php +report/ext/lang/vi/crystal.php +report/ext/lang/vi/excel.php +report/ext/lang/vi/export.php +report/ext/lang/vi/report.php +report/ext/lang/zh-cn/cmmi.php +report/ext/lang/zh-cn/crystal.php +report/ext/lang/zh-cn/excel.php +report/ext/lang/zh-cn/export.php +report/ext/lang/zh-cn/report.php +report/ext/lang/zh-tw/cmmi.php +report/ext/lang/zh-tw/crystal.php +report/ext/lang/zh-tw/excel.php +report/ext/lang/zh-tw/export.php +report/ext/lang/zh-tw/report.php +report/ext/model/class/crystal.class.php +report/ext/model/class/effort.class.php +report/ext/model/class/report.class.php +report/ext/model/crystal.php +report/ext/model/effort.php +report/ext/model/report.php +report/ext/model/zentaomax.php +report/ext/view/ajaxsetlang.html.php +report/ext/view/blockcondition.html.php +report/ext/view/blockdata.html.php +report/ext/view/blockreportlist.html.php +report/ext/view/blocksql.html.php +report/ext/view/browsereport.html.php +report/ext/view/bugassign.excel.html.hook.php +report/ext/view/bugassignsummary.excel.html.hook.php +report/ext/view/bugassignsummary.html.php +report/ext/view/bugcreate.excel.html.hook.php +report/ext/view/bugsummary.excel.html.hook.php +report/ext/view/bugsummary.html.php +report/ext/view/build.excel.html.hook.php +report/ext/view/build.html.php +report/ext/view/casesrun.excel.html.hook.php +report/ext/view/casesrun.html.php +report/ext/view/crystalexport.html.php +report/ext/view/custom.html.php +report/ext/view/customeredreport.html.php +report/ext/view/editreport.html.php +report/ext/view/export.html.php +report/ext/view/instancetemplate.html.php +report/ext/view/productsummary.excel.html.hook.php +report/ext/view/programsummary.html.php +report/ext/view/programworkload.html.php +report/ext/view/projectdeviation.excel.html.hook.php +report/ext/view/projectsummary.html.php +report/ext/view/projectworkload.html.php +report/ext/view/reportdata.html.php +report/ext/view/reportexport.html.php +report/ext/view/roadmap.excel.html.hook.php +report/ext/view/roadmap.html.php +report/ext/view/savereport.html.php +report/ext/view/setvarvalues.html.php +report/ext/view/show.html.php +report/ext/view/storylinkedbug.excel.html.hook.php +report/ext/view/storylinkedbug.html.php +report/ext/view/testcase.excel.html.hook.php +report/ext/view/testcase.html.php +report/ext/view/usereport.html.php +report/ext/view/viewreport.html.php +report/ext/view/workassignsummary.excel.html.hook.php +report/ext/view/workassignsummary.html.php +report/ext/view/workload.excel.html.hook.php +report/ext/view/worksummary.excel.html.hook.php +report/ext/view/worksummary.html.php +report/index.html +report/js/annualdata.js +report/js/bugassign.js +report/js/bugcreate.js +report/js/index.html +report/js/productsummary.js +report/js/projectdeviation.js +report/js/workload.js +report/lang/de.php +report/lang/en.php +report/lang/fr.php +report/lang/index.html +report/lang/vi.php +report/lang/zh-cn.php +report/lang/zh-tw.php +report/model.php +report/view/annualdata.html.php +report/view/blockreportlist.html.php +report/view/bugassign.html.php +report/view/bugcreate.html.php +report/view/dailyreminder.html.php +report/view/index.html +report/view/productsummary.html.php +report/view/projectdeviation.html.php +report/view/workload.html.php +researchplan/config.php +researchplan/control.php +researchplan/lang/en.php +researchplan/lang/zh-cn.php +researchplan/lang/zh-tw.php +researchplan/model.php +researchplan/view/browse.html.php +researchplan/view/create.html.php +researchplan/view/edit.html.php +researchplan/view/view.html.php +researchreport/config.php +researchreport/control.php +researchreport/js/common.js +researchreport/js/create.js +researchreport/lang/en.php +researchreport/lang/zh-cn.php +researchreport/lang/zh-tw.php +researchreport/model.php +researchreport/view/browse.html.php +researchreport/view/create.html.php +researchreport/view/edit.html.php +researchreport/view/view.html.php +review/config.php +review/control.php +review/css/browse.css +review/css/common.css +review/js/audit.js +review/js/common.js +review/lang/en.php +review/lang/zh-cn.php +review/lang/zh-tw.php +review/model.php +review/view/assess.html.php +review/view/audit.html.php +review/view/book.html.php +review/view/browse.html.php +review/view/create.html.php +review/view/edit.html.php +review/view/gantt.html.php +review/view/report.html.php +review/view/result.html.php +review/view/sendmail.html.php +review/view/submit.html.php +review/view/toaudit.html.php +review/view/view.html.php +reviewcl/config.php +reviewcl/control.php +reviewcl/css/browse.css +reviewcl/lang/en.php +reviewcl/lang/zh-cn.php +reviewcl/lang/zh-tw.php +reviewcl/model.php +reviewcl/view/batchcreate.html.php +reviewcl/view/browse.html.php +reviewcl/view/create.html.php +reviewcl/view/edit.html.php +reviewcl/view/menu.html.php +reviewcl/view/view.html.php +reviewissue/config.php +reviewissue/control.php +reviewissue/lang/en.php +reviewissue/lang/zh-cn.php +reviewissue/lang/zh-tw.php +reviewissue/model.php +reviewissue/view/create.html.php +reviewissue/view/edit.html.php +reviewissue/view/issue.html.php +reviewissue/view/resolved.html.php +reviewissue/view/view.html.php +reviewsetting/control.php +reviewsetting/css/version.css +reviewsetting/js/version.js +reviewsetting/lang/en.php +reviewsetting/lang/zh-cn.php +reviewsetting/lang/zh-tw.php +reviewsetting/model.php +reviewsetting/view/reviewer.html.php +reviewsetting/view/version.html.php +risk/config.php +risk/control.php +risk/css/browse.css +risk/css/common.css +risk/css/view.css +risk/js/browse.js +risk/js/common.js +risk/js/importfromlib.js +risk/js/track.js +risk/lang/de.php +risk/lang/en.php +risk/lang/fr.php +risk/lang/vi.php +risk/lang/zh-cn.php +risk/lang/zh-tw.php +risk/model.php +risk/view/activate.html.php +risk/view/assignto.html.php +risk/view/batchcreate.html.php +risk/view/browse.html.php +risk/view/cancel.html.php +risk/view/close.html.php +risk/view/create.html.php +risk/view/edit.html.php +risk/view/hangup.html.php +risk/view/importfromlib.html.php +risk/view/track.html.php +risk/view/view.html.php +score/config.php +score/control.php +score/css/index.html +score/css/reset.css +score/index.html +score/lang/de.php +score/lang/en.php +score/lang/fr.php +score/lang/index.html +score/lang/vi.php +score/lang/zh-cn.php +score/lang/zh-tw.php +score/model.php +score/view/index.html +score/view/reset.html.php +score/view/rule.html.php +search/config.php +search/control.php +search/css/index.css +search/css/index.html +search/ext/config/zentaobiz.php +search/ext/config/zentaomax.php +search/ext/lang/de/zentaobiz.php +search/ext/lang/en/zentaobiz.php +search/ext/lang/en/zentaomax.php +search/ext/lang/fr/zentaobiz.php +search/ext/lang/vi/zentaobiz.php +search/ext/lang/zh-cn/zentaobiz.php +search/ext/lang/zh-cn/zentaomax.php +search/ext/lang/zh-tw/zentaobiz.php +search/ext/lang/zh-tw/zentaomax.php +search/ext/model/hook/buildquery.ldapauth.php +search/index.html +search/js/buildindex.js +search/js/index.html +search/lang/de.php +search/lang/en.php +search/lang/fr.php +search/lang/index.html +search/lang/vi.php +search/lang/zh-cn.php +search/lang/zh-tw.php +search/model.php +search/view/buildform.html.php +search/view/buildindex.html.php +search/view/index.html +search/view/index.html.php +search/view/m.buildform.html.php +search/view/m.index.html.php +search/view/savequery.html.php +serverroom/config.php +serverroom/control.php +serverroom/css/browse.css +serverroom/js/custom.js +serverroom/lang/de.php +serverroom/lang/en.php +serverroom/lang/fr.php +serverroom/lang/vi.php +serverroom/lang/zh-cn.php +serverroom/lang/zh-tw.php +serverroom/model.php +serverroom/view/browse.html.php +serverroom/view/create.html.php +serverroom/view/edit.html.php +serverroom/view/m.browse.html.php +serverroom/view/m.view.html.php +serverroom/view/view.html.php +service/config.php +service/control.php +service/css/manage.css +service/lang/de.php +service/lang/en.php +service/lang/fr.php +service/lang/vi.php +service/lang/zh-cn.php +service/lang/zh-tw.php +service/model.php +service/view/browse.html.php +service/view/create.html.php +service/view/edit.html.php +service/view/m.manage.html.php +service/view/manage.html.php +service/view/view.html.php +setting/control.php +setting/ext/control/downloadxxd.php +setting/ext/control/xuanxuan.php +setting/ext/css/xuanxuan/xuanxuan.css +setting/ext/js/xuanxuan/xuanxuan.js +setting/ext/lang/de/xuanxuan.php +setting/ext/lang/de/zentaobiz.php +setting/ext/lang/en/xuanxuan.php +setting/ext/lang/en/zentaobiz.php +setting/ext/lang/fr/zentaobiz.php +setting/ext/lang/vi/zentaobiz.php +setting/ext/lang/zh-cn/xuanxuan.php +setting/ext/lang/zh-cn/zentaobiz.php +setting/ext/lang/zh-tw/xuanxuan.php +setting/ext/lang/zh-tw/zentaobiz.php +setting/ext/model/bizext.php +setting/ext/view/xuanxuan.html.php +setting/index.html +setting/model.php +sms/control.php +sms/css/index.css +sms/js/common.js +sms/lang/de.php +sms/lang/en.php +sms/lang/fr.php +sms/lang/vi.php +sms/lang/zh-cn.php +sms/lang/zh-tw.php +sms/model.php +sms/view/index.html.php +sonarqube/config.php +sonarqube/control.php +sonarqube/css/browseissue.css +sonarqube/css/browseproject.css +sonarqube/css/create.css +sonarqube/css/edit.css +sonarqube/css/index.html +sonarqube/css/reportview.css +sonarqube/index.html +sonarqube/js/browseissue.js +sonarqube/js/browseproject.js +sonarqube/js/index.html +sonarqube/lang/en.php +sonarqube/lang/index.html +sonarqube/lang/zh-cn.php +sonarqube/lang/zh-tw.php +sonarqube/model.php +sonarqube/view/browse.html.php +sonarqube/view/browseissue.html.php +sonarqube/view/browseproject.html.php +sonarqube/view/create.html.php +sonarqube/view/createproject.html.php +sonarqube/view/edit.html.php +sonarqube/view/index.html +sonarqube/view/reportview.html.php +sqlbuilder/config.php +sqlbuilder/control.php +sqlbuilder/css/common.css +sqlbuilder/ext/config/zentaomax.php +sqlbuilder/ext/css/createsqlview/cmmi.css +sqlbuilder/ext/lang/en/zentaomax.php +sqlbuilder/js/create.js +sqlbuilder/js/createsqlview.js +sqlbuilder/lang/en.php +sqlbuilder/lang/zh-cn.php +sqlbuilder/model.php +sqlbuilder/view/browsesqlview.html.php +sqlbuilder/view/create.html.php +sqlbuilder/view/createsqlview.html.php +sqlbuilder/view/editsqlview.html.php +sso/control.php +sso/ext/model/bizext.php +sso/ext/model/class/bizext.class.php +sso/ext/model/hook/bind.zentaobiz.php +sso/ext/model/hook/createUser.zentaobiz.php +sso/index.html +sso/lang/de.php +sso/lang/en.php +sso/lang/fr.php +sso/lang/index.html +sso/lang/vi.php +sso/lang/zh-cn.php +sso/lang/zh-tw.php +sso/model.php +sso/view/bind.html.php +sso/view/error.html.php +sso/view/index.html +stage/control.php +stage/ext/index.html +stage/ext/view/create.cmmi.html.hook.php +stage/ext/view/edit.cmmi.html.hook.php +stage/ext/view/index.html +stage/index.html +stage/lang/de.php +stage/lang/en.php +stage/lang/fr.php +stage/lang/index.html +stage/lang/vi.php +stage/lang/zh-cn.php +stage/lang/zh-tw.php +stage/model.php +stage/view/batchcreate.html.php +stage/view/browse.html.php +stage/view/create.html.php +stage/view/edit.html.php +stage/view/index.html +stage/view/settype.html.php +stakeholder/config.php +stakeholder/control.php +stakeholder/css/browse.css +stakeholder/css/index.html +stakeholder/css/issue.css +stakeholder/css/plan.css +stakeholder/ext/control/createexpect.php +stakeholder/ext/control/deleteexpect.php +stakeholder/ext/control/editexpect.php +stakeholder/ext/control/expectation.php +stakeholder/ext/control/plan.php +stakeholder/ext/control/viewexpect.php +stakeholder/ext/lang/en/zentaomax.php +stakeholder/ext/lang/zh-cn/zentaomax.php +stakeholder/ext/lang/zh-tw/zentaomax.php +stakeholder/ext/model/zentaomax.php +stakeholder/index.html +stakeholder/js/batchcreate.js +stakeholder/js/create.js +stakeholder/js/edit.js +stakeholder/js/index.html +stakeholder/js/plan.js +stakeholder/lang/de.php +stakeholder/lang/en.php +stakeholder/lang/fr.php +stakeholder/lang/index.html +stakeholder/lang/vi.php +stakeholder/lang/zh-cn.php +stakeholder/lang/zh-tw.php +stakeholder/model.php +stakeholder/view/batchcreate.html.php +stakeholder/view/browse.html.php +stakeholder/view/communicate.html.php +stakeholder/view/create.html.php +stakeholder/view/createexpect.html.php +stakeholder/view/edit.html.php +stakeholder/view/editexpect.html.php +stakeholder/view/expect.html.php +stakeholder/view/expectation.html.php +stakeholder/view/index.html +stakeholder/view/issue.html.php +stakeholder/view/plan.html.php +stakeholder/view/userissue.html.php +stakeholder/view/view.html.php +stakeholder/view/viewexpect.html.php +stakeholder/view/viewissue.html.php +story/config.php +story/control.php +story/css/affected.css +story/css/batchclose.css +story/css/batchcreate.css +story/css/batchedit.css +story/css/bugs.css +story/css/cases.css +story/css/change.css +story/css/close.en.css +story/css/close.vi.css +story/css/close.zh-cn.css +story/css/close.zh-tw.css +story/css/common.css +story/css/create.css +story/css/create.en.css +story/css/create.vi.css +story/css/create.zh-cn.css +story/css/edit.css +story/css/edit.en.css +story/css/edit.vi.css +story/css/edit.zh-cn.css +story/css/edit.zh-tw.css +story/css/index.html +story/css/linkstory.css +story/css/report.css +story/css/review.en.css +story/css/review.vi.css +story/css/review.zh-cn.css +story/css/review.zh-tw.css +story/css/tasks.css +story/css/view.css +story/css/view.en.css +story/css/view.vi.css +story/css/view.zh-cn.css +story/css/view.zh-tw.css +story/css/x.change.css +story/css/x.create.css +story/css/x.edit.css +story/css/x.review.css +story/css/x.view.css +story/css/zerocase.en.css +story/css/zerocase.vi.css +story/css/zerocase.zh-cn.css +story/css/zerocase.zh-tw.css +story/ext/config/cmmi.php +story/ext/config/excel.php +story/ext/control/ajaxgetdesign.php +story/ext/control/ajaxgetsourcenote.php +story/ext/control/batchedit.php +story/ext/control/batchimporttolib.php +story/ext/control/browse.php +story/ext/control/create.php +story/ext/control/export.php +story/ext/control/exporttemplet.php +story/ext/control/import.php +story/ext/control/importtolib.php +story/ext/control/index.html +story/ext/control/relation.php +story/ext/control/showimport.php +story/ext/control/submit.php +story/ext/control/view.php +story/ext/css/showimport/excel.css +story/ext/index.html +story/ext/js/batchcreate/zentaomax.js +story/ext/js/batchedit/zentaomax.js +story/ext/js/common/zentaomax.js +story/ext/lang/de/excel.php +story/ext/lang/de/flow.php +story/ext/lang/de/index.html +story/ext/lang/de/word.php +story/ext/lang/de/zentaobiz.php +story/ext/lang/en/excel.php +story/ext/lang/en/flow.php +story/ext/lang/en/index.html +story/ext/lang/en/word.php +story/ext/lang/en/zentaobiz.php +story/ext/lang/en/zentaomax.php +story/ext/lang/fr/excel.php +story/ext/lang/fr/flow.php +story/ext/lang/fr/word.php +story/ext/lang/fr/zentaobiz.php +story/ext/lang/index.html +story/ext/lang/vi/excel.php +story/ext/lang/vi/flow.php +story/ext/lang/vi/index.html +story/ext/lang/vi/word.php +story/ext/lang/vi/zentaobiz.php +story/ext/lang/zh-cn/excel.php +story/ext/lang/zh-cn/flow.php +story/ext/lang/zh-cn/index.html +story/ext/lang/zh-cn/word.php +story/ext/lang/zh-cn/zentaobiz.php +story/ext/lang/zh-cn/zentaomax.php +story/ext/lang/zh-tw/excel.php +story/ext/lang/zh-tw/flow.php +story/ext/lang/zh-tw/word.php +story/ext/lang/zh-tw/zentaobiz.php +story/ext/lang/zh-tw/zentaomax.php +story/ext/model/calendar.php +story/ext/model/class/calendar.class.php +story/ext/model/class/excel.class.php +story/ext/model/class/feedback.class.php +story/ext/model/excel.php +story/ext/model/feedback.php +story/ext/model/zentaomax.php +story/ext/view/create.feedback.html.hook.php +story/ext/view/create.flow.html.hook.php +story/ext/view/create.zentaomax.html.hook.php +story/ext/view/edit.zentaomax.html.hook.php +story/ext/view/exporttemplet.html.php +story/ext/view/import.html.php +story/ext/view/index.html +story/ext/view/m.create.feedback.html.hook.php +story/ext/view/relation.html.php +story/ext/view/report.export.html.hook.php +story/ext/view/showimport.html.php +story/ext/view/submit.html.php +story/ext/view/view.effort.html.hook.php +story/ext/view/view.feedback.html.hook.php +story/ext/view/view.zentaomax.html.hook.php +story/index.html +story/js/batchclose.js +story/js/batchcreate.js +story/js/batchedit.js +story/js/change.js +story/js/close.js +story/js/common.js +story/js/create.js +story/js/edit.js +story/js/index.html +story/js/report.js +story/js/review.js +story/js/track.js +story/js/view.js +story/js/x.create.js +story/js/x.view.js +story/js/zerocase.js +story/lang/de.php +story/lang/en.php +story/lang/fr.php +story/lang/index.html +story/lang/vi.php +story/lang/zh-cn.php +story/lang/zh-tw.php +story/model.php +story/view/activate.html.php +story/view/affected.html.php +story/view/assignto.html.php +story/view/batchclose.html.php +story/view/batchcreate.html.php +story/view/batchedit.html.php +story/view/bugs.html.php +story/view/cases.html.php +story/view/change.html.php +story/view/close.html.php +story/view/create.html.php +story/view/edit.html.php +story/view/export.html.php +story/view/header.html.php +story/view/index.html +story/view/linkstory.html.php +story/view/m.activate.html.php +story/view/m.change.html.php +story/view/m.close.html.php +story/view/m.create.html.php +story/view/m.edit.html.php +story/view/m.view.html.php +story/view/m.zerocase.html.php +story/view/processstorychange.html.php +story/view/report.html.php +story/view/review.html.php +story/view/sendmail.html.php +story/view/tasks.html.php +story/view/track.html.php +story/view/view.html.php +story/view/zerocase.html.php +subject/control.php +subject/css/browse.css +subject/js/browse.js +subject/lang/de.php +subject/lang/en.php +subject/lang/fr.php +subject/lang/vi.php +subject/lang/zh-cn.php +subject/lang/zh-tw.php +subject/view/browse.html.php +svn/config.php +svn/control.php +svn/ext/model/zentaomax.php +svn/index.html +svn/lang/de.php +svn/lang/en.php +svn/lang/fr.php +svn/lang/index.html +svn/lang/vi.php +svn/lang/zh-cn.php +svn/lang/zh-tw.php +svn/model.php +svn/syncer/Makefile +svn/syncer/VERSION +svn/syncer/config.php +svn/syncer/index.html +svn/syncer/syncer.php +svn/view/cat.html.php +svn/view/diff.html.php +svn/view/index.html +task/config.php +task/control.php +task/css/activate.en.css +task/css/activate.vi.css +task/css/activate.zh-cn.css +task/css/activate.zh-tw.css +task/css/batchcreate.css +task/css/batchedit.css +task/css/common.css +task/css/create.css +task/css/edit.css +task/css/edit.en.css +task/css/edit.vi.css +task/css/edit.zh-cn.css +task/css/edit.zh-tw.css +task/css/finish.en.css +task/css/finish.vi.css +task/css/finish.zh-cn.css +task/css/finish.zh-tw.css +task/css/index.html +task/css/recordestimate.css +task/css/recordestimate.en.css +task/css/recordestimate.vi.css +task/css/recordestimate.zh-cn.css +task/css/recordestimate.zh-tw.css +task/css/report.css +task/css/view.css +task/css/view.en.css +task/css/view.vi.css +task/css/view.zh-cn.css +task/css/view.zh-tw.css +task/css/x.create.css +task/css/x.edit.css +task/css/x.view.css +task/ext/config/excel.php +task/ext/config/zentaomax.php +task/ext/control/ajaxchangesubstatus.php +task/ext/control/browse.php +task/ext/control/confirmdesignchange.php +task/ext/control/create.php +task/ext/control/export.php +task/ext/control/exporttemplet.php +task/ext/control/import.php +task/ext/control/index.html +task/ext/control/recordestimate.php +task/ext/control/showimport.php +task/ext/control/view.php +task/ext/css/batchcreate/zentaomax.css +task/ext/css/showimport/excel.css +task/ext/index.html +task/ext/js/create/zentaomax.js +task/ext/lang/de/crystal.php +task/ext/lang/de/effort.php +task/ext/lang/de/excel.php +task/ext/lang/de/flow.php +task/ext/lang/de/gantt.php +task/ext/lang/de/index.html +task/ext/lang/de/web.php +task/ext/lang/de/zentaobiz.php +task/ext/lang/en/crystal.php +task/ext/lang/en/effort.php +task/ext/lang/en/excel.php +task/ext/lang/en/flow.php +task/ext/lang/en/gantt.php +task/ext/lang/en/index.html +task/ext/lang/en/web.php +task/ext/lang/en/zentaobiz.php +task/ext/lang/en/zentaomax.php +task/ext/lang/fr/crystal.php +task/ext/lang/fr/effort.php +task/ext/lang/fr/excel.php +task/ext/lang/fr/flow.php +task/ext/lang/fr/gantt.php +task/ext/lang/fr/web.php +task/ext/lang/fr/zentaobiz.php +task/ext/lang/index.html +task/ext/lang/vi/crystal.php +task/ext/lang/vi/effort.php +task/ext/lang/vi/excel.php +task/ext/lang/vi/flow.php +task/ext/lang/vi/gantt.php +task/ext/lang/vi/index.html +task/ext/lang/vi/web.php +task/ext/lang/vi/zentaobiz.php +task/ext/lang/zh-cn/crystal.php +task/ext/lang/zh-cn/effort.php +task/ext/lang/zh-cn/excel.php +task/ext/lang/zh-cn/flow.php +task/ext/lang/zh-cn/gantt.php +task/ext/lang/zh-cn/index.html +task/ext/lang/zh-cn/web.php +task/ext/lang/zh-cn/zentaobiz.php +task/ext/lang/zh-cn/zentaomax.php +task/ext/lang/zh-tw/crystal.php +task/ext/lang/zh-tw/effort.php +task/ext/lang/zh-tw/excel.php +task/ext/lang/zh-tw/flow.php +task/ext/lang/zh-tw/gantt.php +task/ext/lang/zh-tw/web.php +task/ext/lang/zh-tw/zentaobiz.php +task/ext/lang/zh-tw/zentaomax.php +task/ext/model/class/effort.class.php +task/ext/model/class/excel.class.php +task/ext/model/class/feedback.class.php +task/ext/model/class/gantt.class.php +task/ext/model/effort.php +task/ext/model/excel.php +task/ext/model/feedback.php +task/ext/model/gantt.php +task/ext/model/hook/finish.zentaomax.php +task/ext/model/zentaomax.php +task/ext/view/create.cmmi.html.hook.php +task/ext/view/create.feedback.html.hook.php +task/ext/view/create.flow.html.hook.php +task/ext/view/edit.bizext.html.hook.php +task/ext/view/edit.cmmi.html.hook.php +task/ext/view/export.excel.html.hook.php +task/ext/view/export.word.html.hook.php +task/ext/view/exporttemplet.html.php +task/ext/view/finish.html.php +task/ext/view/import.html.php +task/ext/view/index.html +task/ext/view/report.export.html.hook.php +task/ext/view/showimport.html.php +task/ext/view/start.html.php +task/ext/view/view.cmmi.html.hook.php +task/ext/view/view.effort.html.hook.php +task/ext/view/view.gantt.html.hook.php +task/index.html +task/js/batchcreate.js +task/js/batchedit.js +task/js/common.js +task/js/create.js +task/js/edit.js +task/js/editestimate.js +task/js/finish.js +task/js/index.html +task/js/recordestimate.js +task/js/report.js +task/js/start.js +task/js/view.js +task/js/x.create.js +task/js/x.view.js +task/lang/de.php +task/lang/en.php +task/lang/fr.php +task/lang/index.html +task/lang/vi.php +task/lang/zh-cn.php +task/lang/zh-tw.php +task/model.php +task/view/activate.html.php +task/view/assignto.html.php +task/view/batchcreate.html.php +task/view/batchedit.html.php +task/view/cancel.html.php +task/view/close.html.php +task/view/create.html.php +task/view/edit.html.php +task/view/editestimate.html.php +task/view/export.html.php +task/view/finish.html.php +task/view/index.html +task/view/m.activate.html.php +task/view/m.assignto.html.php +task/view/m.batchcreate.html.php +task/view/m.cancel.html.php +task/view/m.close.html.php +task/view/m.create.html.php +task/view/m.edit.html.php +task/view/m.finish.html.php +task/view/m.pause.html.php +task/view/m.restart.html.php +task/view/m.start.html.php +task/view/m.view.html.php +task/view/pause.html.php +task/view/recordestimate.html.php +task/view/report.html.php +task/view/restart.html.php +task/view/sendmail.html.php +task/view/start.html.php +task/view/view.html.php +testcase/config.php +testcase/control.php +testcase/css/batchcreate.css +testcase/css/batchedit.css +testcase/css/browse.css +testcase/css/bugs.css +testcase/css/common.css +testcase/css/create.css +testcase/css/createbug.css +testcase/css/edit.css +testcase/css/groupcase.css +testcase/css/importfromlib.css +testcase/css/index.html +testcase/css/linkcases.css +testcase/css/report.css +testcase/css/showimport.css +testcase/css/view.css +testcase/css/view.en.css +testcase/css/view.vi.css +testcase/css/view.zh-cn.css +testcase/css/view.zh-tw.css +testcase/css/x.edit.css +testcase/css/x.view.css +testcase/ext/config/excel.php +testcase/ext/control/ajaxselectstory.php +testcase/ext/control/export.php +testcase/ext/control/exporttemplet.php +testcase/ext/control/import.php +testcase/ext/control/showimport.php +testcase/ext/control/submit.php +testcase/ext/css/browse/excel.css +testcase/ext/index.html +testcase/ext/lang/de/excel.php +testcase/ext/lang/de/web.php +testcase/ext/lang/en/excel.php +testcase/ext/lang/en/web.php +testcase/ext/lang/en/zentaomax.php +testcase/ext/lang/fr/excel.php +testcase/ext/lang/fr/web.php +testcase/ext/lang/vi/excel.php +testcase/ext/lang/vi/web.php +testcase/ext/lang/zh-cn/excel.php +testcase/ext/lang/zh-cn/web.php +testcase/ext/lang/zh-cn/zentaomax.php +testcase/ext/lang/zh-tw/excel.php +testcase/ext/lang/zh-tw/web.php +testcase/ext/lang/zh-tw/zentaomax.php +testcase/ext/model/class/excel.class.php +testcase/ext/model/excel.php +testcase/ext/model/zentaomax.php +testcase/ext/view/ajaxselectstory.html.php +testcase/ext/view/browse.cmmi.html.hook.php +testcase/ext/view/browse.excel.html.hook.php +testcase/ext/view/create.flow.html.hook.php +testcase/ext/view/exporttemplet.html.php +testcase/ext/view/import.html.php +testcase/ext/view/index.html +testcase/ext/view/report.export.html.hook.php +testcase/ext/view/submit.html.php +testcase/ext/view/view.effort.html.hook.php +testcase/index.html +testcase/js/batchcreate.js +testcase/js/batchedit.js +testcase/js/browse.js +testcase/js/common.js +testcase/js/create.js +testcase/js/edit.js +testcase/js/export.js +testcase/js/groupcase.js +testcase/js/importfromlib.js +testcase/js/index.html +testcase/js/review.js +testcase/js/showimport.js +testcase/js/unit.js +testcase/js/view.js +testcase/js/x.view.js +testcase/lang/de.php +testcase/lang/en.php +testcase/lang/fr.php +testcase/lang/index.html +testcase/lang/vi.php +testcase/lang/zh-cn.php +testcase/lang/zh-tw.php +testcase/model.php +testcase/view/batchcreate.html.php +testcase/view/batchedit.html.php +testcase/view/browse.html.php +testcase/view/bugs.html.php +testcase/view/caseheader.html.php +testcase/view/create.html.php +testcase/view/createbug.html.php +testcase/view/edit.html.php +testcase/view/export.html.php +testcase/view/exporttemplet.html.php +testcase/view/groupcase.html.php +testcase/view/import.html.php +testcase/view/importfromlib.html.php +testcase/view/index.html +testcase/view/index.html.php +testcase/view/linkcases.html.php +testcase/view/m.browse.html.php +testcase/view/m.caseheader.html.php +testcase/view/m.groupcase.html.php +testcase/view/m.review.html.php +testcase/view/m.view.html.php +testcase/view/review.html.php +testcase/view/showimport.html.php +testcase/view/view.html.php +testreport/config.php +testreport/control.php +testreport/css/common.css +testreport/css/create.css +testreport/css/index.html +testreport/css/selecttask.css +testreport/css/view.css +testreport/ext/control/export.php +testreport/ext/css/export/export.css +testreport/ext/js/export/export.js +testreport/ext/lang/de/testreportexport.php +testreport/ext/lang/en/testreportexport.php +testreport/ext/lang/fr/testreportexport.php +testreport/ext/lang/vi/testreportexport.php +testreport/ext/lang/zh-cn/testreportexport.php +testreport/ext/lang/zh-tw/testreportexport.php +testreport/ext/view/export.html.php +testreport/ext/view/view.testreportexport.html.hook.php +testreport/index.html +testreport/js/common.js +testreport/js/create.js +testreport/js/index.html +testreport/js/view.js +testreport/lang/de.php +testreport/lang/en.php +testreport/lang/fr.php +testreport/lang/index.html +testreport/lang/vi.php +testreport/lang/zh-cn.php +testreport/lang/zh-tw.php +testreport/model.php +testreport/view/blockbugreport.html.php +testreport/view/blockbugs.html.php +testreport/view/blockbuilds.html.php +testreport/view/blockcases.html.php +testreport/view/blocklegacybugs.html.php +testreport/view/blockstories.html.php +testreport/view/browse.html.php +testreport/view/create.html.php +testreport/view/edit.html.php +testreport/view/index.html +testreport/view/selecttask.html.php +testreport/view/view.html.php +testsuite/config.php +testsuite/control.php +testsuite/css/browse.css +testsuite/css/index.html +testsuite/css/linkcase.css +testsuite/css/view.css +testsuite/index.html +testsuite/js/common.js +testsuite/js/index.html +testsuite/js/linkcase.js +testsuite/lang/de.php +testsuite/lang/en.php +testsuite/lang/fr.php +testsuite/lang/index.html +testsuite/lang/vi.php +testsuite/lang/zh-cn.php +testsuite/lang/zh-tw.php +testsuite/model.php +testsuite/view/browse.html.php +testsuite/view/create.html.php +testsuite/view/edit.html.php +testsuite/view/index.html +testsuite/view/linkcase.html.php +testsuite/view/m.ajaxgetdropmenu.html.php +testsuite/view/view.html.php +testtask/config.php +testtask/control.php +testtask/css/batchrun.css +testtask/css/browse.css +testtask/css/browseunits.css +testtask/css/cases.css +testtask/css/create.css +testtask/css/groupcase.css +testtask/css/index.html +testtask/css/linkcase.css +testtask/css/report.css +testtask/css/results.css +testtask/css/runcase.css +testtask/css/unitcases.css +testtask/css/view.css +testtask/css/x.results.css +testtask/ext/control/deploycaseresults.php +testtask/ext/control/rundeploycase.php +testtask/ext/lang/de/ops.php +testtask/ext/lang/en/ops.php +testtask/ext/lang/fr/ops.php +testtask/ext/lang/vi/ops.php +testtask/ext/lang/zh-cn/ops.php +testtask/ext/lang/zh-tw/ops.php +testtask/ext/model/class/ops.class.php +testtask/ext/model/ops.php +testtask/ext/view/deploycaseresults.html.php +testtask/ext/view/report.export.html.hook.php +testtask/ext/view/rundeploycase.html.php +testtask/ext/view/view.effort.html.hook.php +testtask/index.html +testtask/js/batchrun.js +testtask/js/browse.js +testtask/js/cases.js +testtask/js/common.js +testtask/js/create.js +testtask/js/edit.js +testtask/js/groupcase.js +testtask/js/index.html +testtask/js/linkcase.js +testtask/js/report.js +testtask/js/results.js +testtask/js/runcase.js +testtask/js/view.js +testtask/lang/de.php +testtask/lang/en.php +testtask/lang/fr.php +testtask/lang/index.html +testtask/lang/vi.php +testtask/lang/zh-cn.php +testtask/lang/zh-tw.php +testtask/model.php +testtask/view/activate.html.php +testtask/view/batchrun.html.php +testtask/view/block.html.php +testtask/view/browse.html.php +testtask/view/browseunits.html.php +testtask/view/caseheader.html.php +testtask/view/cases.html.php +testtask/view/close.html.php +testtask/view/create.html.php +testtask/view/edit.html.php +testtask/view/groupcase.html.php +testtask/view/importunitresult.html.php +testtask/view/index.html +testtask/view/linkcase.html.php +testtask/view/m.activate.html.php +testtask/view/m.block.html.php +testtask/view/m.browse.html.php +testtask/view/m.caseheader.html.php +testtask/view/m.cases.html.php +testtask/view/m.close.html.php +testtask/view/m.groupcase.html.php +testtask/view/m.start.html.php +testtask/view/m.view.html.php +testtask/view/report.html.php +testtask/view/results.html.php +testtask/view/runcase.html.php +testtask/view/sendmail.html.php +testtask/view/start.html.php +testtask/view/unitcases.html.php +testtask/view/unitgroup.html.php +testtask/view/view.html.php +todo/config.php +todo/control.php +todo/css/assignto.css +todo/css/batchcreate.css +todo/css/batchedit.css +todo/css/create.css +todo/css/create.en.css +todo/css/create.vi.css +todo/css/create.zh-cn.css +todo/css/create.zh-tw.css +todo/css/edit.css +todo/css/index.html +todo/css/view.en.css +todo/css/view.vi.css +todo/css/view.zh-cn.css +todo/css/view.zh-tw.css +todo/css/x.create.css +todo/ext/config/zentaobiz.php +todo/ext/config/zentaomax.php +todo/ext/control/ajaxchangedays.php +todo/ext/control/ajaxgettodos.php +todo/ext/control/batchcreate.php +todo/ext/control/calendar.php +todo/ext/control/create.php +todo/ext/control/export.php +todo/ext/css/calendar/calendar.css +todo/ext/css/common/zentaomax.css +todo/ext/lang/de/calendar.php +todo/ext/lang/de/effort.php +todo/ext/lang/de/zentaobiz.php +todo/ext/lang/en/calendar.php +todo/ext/lang/en/effort.php +todo/ext/lang/en/zentaobiz.php +todo/ext/lang/en/zentaomax.php +todo/ext/lang/fr/calendar.php +todo/ext/lang/fr/effort.php +todo/ext/lang/fr/zentaobiz.php +todo/ext/lang/vi/calendar.php +todo/ext/lang/vi/effort.php +todo/ext/lang/vi/zentaobiz.php +todo/ext/lang/zh-cn/calendar.php +todo/ext/lang/zh-cn/effort.php +todo/ext/lang/zh-cn/zentaobiz.php +todo/ext/lang/zh-cn/zentaomax.php +todo/ext/lang/zh-tw/calendar.php +todo/ext/lang/zh-tw/effort.php +todo/ext/lang/zh-tw/zentaobiz.php +todo/ext/lang/zh-tw/zentaomax.php +todo/ext/model/calendar.php +todo/ext/model/class/calendar.class.php +todo/ext/model/class/feedback.class.php +todo/ext/model/feedback.php +todo/ext/view/batchcreate.calendar.html.hook.php +todo/ext/view/calendar.html.php +todo/ext/view/calendar.zentaobiz.html.hook.php +todo/ext/view/create.zentaobiz.html.hook.php +todo/ext/view/view.effort.html.hook.php +todo/index.html +todo/js/batchcreate.js +todo/js/common.js +todo/js/create.js +todo/js/edit.js +todo/js/index.html +todo/js/view.js +todo/lang/de.php +todo/lang/en.php +todo/lang/fr.php +todo/lang/index.html +todo/lang/vi.php +todo/lang/zh-cn.php +todo/lang/zh-tw.php +todo/model.php +todo/view/assignto.html.php +todo/view/batchcreate.html.php +todo/view/batchedit.html.php +todo/view/create.html.php +todo/view/edit.html.php +todo/view/export.html.php +todo/view/footer.html.php +todo/view/index.html +todo/view/m.calendar.html.php +todo/view/m.create.html.php +todo/view/m.edit.html.php +todo/view/m.view.html.php +todo/view/view.html.php +traincourse/config.php +traincourse/control.php +traincourse/css/browse.css +traincourse/css/browsecategory.css +traincourse/css/common.css +traincourse/css/createcourse.css +traincourse/css/editchapter.css +traincourse/css/editcourse.css +traincourse/css/managecourse.css +traincourse/css/uploadcourse.css +traincourse/css/viewchapter.css +traincourse/css/viewcourse.css +traincourse/js/browsecategory.js +traincourse/js/catalog.js +traincourse/js/categorychildren.js +traincourse/js/common.js +traincourse/js/createcourse.js +traincourse/js/editcategory.js +traincourse/js/editchapter.js +traincourse/js/managechapter.js +traincourse/js/managecourse.js +traincourse/js/viewchapter.js +traincourse/lang/de.php +traincourse/lang/en.php +traincourse/lang/fr.php +traincourse/lang/vi.php +traincourse/lang/zh-cn.php +traincourse/lang/zh-tw.php +traincourse/model.php +traincourse/videostream.php +traincourse/view/admin.html.php +traincourse/view/browse.html.php +traincourse/view/browsecategory.html.php +traincourse/view/categorychildren.html.php +traincourse/view/createcourse.html.php +traincourse/view/editcategory.html.php +traincourse/view/editchapter.html.php +traincourse/view/editcourse.html.php +traincourse/view/managechapter.html.php +traincourse/view/managecourse.html.php +traincourse/view/side.html.php +traincourse/view/uploadcourse.html.php +traincourse/view/video.html.php +traincourse/view/viewchapter.html.php +traincourse/view/viewcourse.html.php +trainplan/config.php +trainplan/control.php +trainplan/css/browse.css +trainplan/lang/en.php +trainplan/lang/zh-cn.php +trainplan/lang/zh-tw.php +trainplan/model.php +trainplan/view/batchcreate.html.php +trainplan/view/batchedit.html.php +trainplan/view/browse.html.php +trainplan/view/create.html.php +trainplan/view/edit.html.php +trainplan/view/finish.html.php +trainplan/view/summary.html.php +trainplan/view/view.html.php +tree/config.php +tree/control.php +tree/css/common.css +tree/css/edit.en.css +tree/css/edit.vi.css +tree/css/edit.zh-cn.css +tree/css/edit.zh-tw.css +tree/css/index.html +tree/ext/control/browse.php +tree/ext/control/browsehost.php +tree/ext/control/edithost.php +tree/ext/lang/de/feedback.php +tree/ext/lang/de/host.php +tree/ext/lang/en/feedback.php +tree/ext/lang/en/host.php +tree/ext/lang/fr/feedback.php +tree/ext/lang/fr/host.php +tree/ext/lang/vi/feedback.php +tree/ext/lang/vi/host.php +tree/ext/lang/zh-cn/feedback.php +tree/ext/lang/zh-cn/host.php +tree/ext/lang/zh-tw/feedback.php +tree/ext/lang/zh-tw/host.php +tree/ext/model/class/host.class.php +tree/ext/model/class/zentaobiz.class.php +tree/ext/model/xuanxuan.php +tree/ext/model/zentaobiz.php +tree/ext/view/browse.zentaobiz.html.hook.php +tree/ext/view/browsehost.html.php +tree/ext/view/edithost.html.php +tree/ext/view/m.ajaxgetdropmenu.html.php +tree/index.html +tree/js/browse.js +tree/js/browsetask.js +tree/js/common.js +tree/js/index.html +tree/lang/de.php +tree/lang/en.php +tree/lang/fr.php +tree/lang/index.html +tree/lang/vi.php +tree/lang/zh-cn.php +tree/lang/zh-tw.php +tree/model.php +tree/view/ajaxgetdropmenu.html.php +tree/view/browse.html.php +tree/view/browsetask.html.php +tree/view/edit.html.php +tree/view/index.html +trip/config.php +trip/control.php +trip/css/common.css +trip/css/create.css +trip/css/edit.css +trip/ext/model/oa.php +trip/js/browse.js +trip/js/common.js +trip/js/searchcustomer.js +trip/lang/de.php +trip/lang/en.php +trip/lang/fr.php +trip/lang/vi.php +trip/lang/zh-cn.php +trip/lang/zh-tw.php +trip/model.php +trip/view/browse.html.php +trip/view/create.html.php +trip/view/edit.html.php +trip/view/m.browse.html.php +trip/view/m.create.html.php +trip/view/m.edit.html.php +trip/view/m.view.html.php +trip/view/view.html.php +trip/view/x.browse.html.php +tutorial/control.php +tutorial/css/index.css +tutorial/css/index.html +tutorial/css/start.css +tutorial/index.html +tutorial/js/index.html +tutorial/js/index.js +tutorial/lang/de.php +tutorial/lang/en.php +tutorial/lang/fr.php +tutorial/lang/index.html +tutorial/lang/vi.php +tutorial/lang/zh-cn.php +tutorial/lang/zh-tw.php +tutorial/model.php +tutorial/view/index.html +tutorial/view/index.html.php +tutorial/view/start.html.php +upgrade/config.php +upgrade/control.php +upgrade/css/afterexec.css +upgrade/css/afterexec.en.css +upgrade/css/afterexec.vi.css +upgrade/css/common.css +upgrade/css/execute.css +upgrade/css/index.html +upgrade/css/mergeprogram.css +upgrade/css/mergerepo.css +upgrade/css/to15guide.css +upgrade/ext/config/bizext.php +upgrade/ext/config/zentaobiz.php +upgrade/ext/config/zentaomax.php +upgrade/ext/control/execute.php +upgrade/ext/control/index.php +upgrade/ext/control/selectversion.php +upgrade/ext/lang/de/bizext.php +upgrade/ext/lang/de/zentaobiz.php +upgrade/ext/lang/en/bizext.php +upgrade/ext/lang/en/zentaobiz.php +upgrade/ext/lang/en/zentaomax.php +upgrade/ext/lang/fr/bizext.php +upgrade/ext/lang/fr/zentaobiz.php +upgrade/ext/lang/vi/bizext.php +upgrade/ext/lang/vi/zentaobiz.php +upgrade/ext/lang/vi/zentaomax.php +upgrade/ext/lang/zh-cn/bizext.php +upgrade/ext/lang/zh-cn/zentaobiz.php +upgrade/ext/lang/zh-cn/zentaomax.php +upgrade/ext/lang/zh-tw/bizext.php +upgrade/ext/lang/zh-tw/zentaobiz.php +upgrade/ext/lang/zh-tw/zentaomax.php +upgrade/ext/model/bizext.php +upgrade/ext/model/class/bizext.class.php +upgrade/ext/model/class/traditionalchinese.php +upgrade/ext/model/class/zentaobiz.class.php +upgrade/ext/model/class/zentaomax.class.php +upgrade/ext/model/flow.php +upgrade/ext/model/hook/appendExec.bizext.php +upgrade/ext/model/hook/appendExec.zentaobiz.php +upgrade/ext/model/hook/execute.max.php +upgrade/ext/model/hook/execute.zentaobiz.php +upgrade/ext/model/hook/getConfirm.max.php +upgrade/ext/model/hook/getConfirm.zentaobiz.php +upgrade/ext/view/afterexec.bizext.html.hook.php +upgrade/ext/view/execute.bizext.html.hook.php +upgrade/ext/view/selectversion.bizext.html.hook.php +upgrade/ext/view/to15guide.zentaomax.html.hook.php +upgrade/index.html +upgrade/js/backup.js +upgrade/js/common.js +upgrade/js/execute.js +upgrade/js/index.html +upgrade/js/license.js +upgrade/js/mergeprogram.js +upgrade/js/mergerepo.js +upgrade/lang/de.php +upgrade/lang/en.php +upgrade/lang/fr.php +upgrade/lang/index.html +upgrade/lang/version.php +upgrade/lang/vi.php +upgrade/lang/zh-cn.php +upgrade/lang/zh-tw.php +upgrade/model.php +upgrade/view/afterexec.html.php +upgrade/view/backup.html.php +upgrade/view/checkextension.html.php +upgrade/view/confirm.html.php +upgrade/view/consistency.html.php +upgrade/view/createprogram.html.php +upgrade/view/execute.html.php +upgrade/view/index.html +upgrade/view/license.html.php +upgrade/view/mergebyline.html.php +upgrade/view/mergebyproduct.html.php +upgrade/view/mergebysprint.html.php +upgrade/view/mergeprogram.html.php +upgrade/view/mergerepo.html.php +upgrade/view/mergetips.html.php +upgrade/view/renameobject.html.php +upgrade/view/selectversion.html.php +upgrade/view/to15guide.html.php +user/config.php +user/control.php +user/css/batchcreate.css +user/css/batchcreate.en.css +user/css/batchcreate.vi.css +user/css/batchcreate.zh-cn.css +user/css/batchcreate.zh-tw.css +user/css/batchedit.css +user/css/common.css +user/css/deny.css +user/css/dynamic.css +user/css/edit.css +user/css/index.html +user/css/login.css +user/css/m.common.css +user/css/m.login.css +user/css/managecontacts.css +user/css/profile.css +user/css/profile.en.css +user/css/profile.vi.css +user/css/profile.zh-cn.css +user/css/profile.zh-tw.css +user/css/reset.css +user/css/task.css +user/ext/config/feedback.php +user/ext/control/batchcreate.php +user/ext/control/create.php +user/ext/control/effort.php +user/ext/control/effortcalendar.php +user/ext/control/importldap.php +user/ext/control/login.php +user/ext/control/logout.php +user/ext/control/todocalendar.php +user/ext/control/view.php +user/ext/css/effort/effort.css +user/ext/css/effortcalendar/effortcalendar.css +user/ext/css/login/zentaomax.css +user/ext/css/todocalendar/todocalendar.css +user/ext/js/common/feedback.js +user/ext/js/effort/effort.js +user/ext/js/importldap/ldapauth.js +user/ext/lang/de/bizext.php +user/ext/lang/de/calendar.php +user/ext/lang/de/effort.php +user/ext/lang/de/feedback.php +user/ext/lang/de/ldapauth.php +user/ext/lang/de/xuanxuan.php +user/ext/lang/de/zentaobiz.php +user/ext/lang/en/bizext.php +user/ext/lang/en/calendar.php +user/ext/lang/en/effort.php +user/ext/lang/en/feedback.php +user/ext/lang/en/ldapauth.php +user/ext/lang/en/xuanxuan.php +user/ext/lang/en/zentaobiz.php +user/ext/lang/en/zentaomax.php +user/ext/lang/fr/bizext.php +user/ext/lang/fr/calendar.php +user/ext/lang/fr/effort.php +user/ext/lang/fr/feedback.php +user/ext/lang/fr/ldapauth.php +user/ext/lang/fr/zentaobiz.php +user/ext/lang/vi/bizext.php +user/ext/lang/vi/calendar.php +user/ext/lang/vi/effort.php +user/ext/lang/vi/feedback.php +user/ext/lang/vi/ldapauth.php +user/ext/lang/vi/zentaobiz.php +user/ext/lang/zh-cn/bizext.php +user/ext/lang/zh-cn/calendar.php +user/ext/lang/zh-cn/effort.php +user/ext/lang/zh-cn/feedback.php +user/ext/lang/zh-cn/ldapauth.php +user/ext/lang/zh-cn/xuanxuan.php +user/ext/lang/zh-cn/zentaobiz.php +user/ext/lang/zh-cn/zentaomax.php +user/ext/lang/zh-tw/bizext.php +user/ext/lang/zh-tw/calendar.php +user/ext/lang/zh-tw/effort.php +user/ext/lang/zh-tw/feedback.php +user/ext/lang/zh-tw/ldapauth.php +user/ext/lang/zh-tw/xuanxuan.php +user/ext/lang/zh-tw/zentaobiz.php +user/ext/lang/zh-tw/zentaomax.php +user/ext/model/bizext.php +user/ext/model/class/bizext.class.php +user/ext/model/class/feedback.class.php +user/ext/model/class/ldapauth.class.php +user/ext/model/class/oa.class.php +user/ext/model/class/zentaobiz.class.php +user/ext/model/class/zentaomax.class.php +user/ext/model/feedback.php +user/ext/model/getbyaccount.php +user/ext/model/hook/batchCreate.bizext.php +user/ext/model/hook/batchCreate.zentaobiz.php +user/ext/model/hook/create.bizext.php +user/ext/model/hook/create.zentaobiz.php +user/ext/model/hook/importLDAP.bizext.php +user/ext/model/hook/importLDAP.zentaobiz.php +user/ext/model/ldapauth.php +user/ext/model/oa.php +user/ext/model/zentaobiz.php +user/ext/model/zentaomax.php +user/ext/view/batchcreate.bizext.html.hook.php +user/ext/view/batchcreate.feedback.html.hook.php +user/ext/view/batchedit.feedback.html.hook.php +user/ext/view/create.feedback.html.hook.php +user/ext/view/edit.feedback.html.hook.php +user/ext/view/effort.calendar.html.hook.php +user/ext/view/effort.html.php +user/ext/view/effortcalendar.html.php +user/ext/view/featurebar.calendar.html.hook.php +user/ext/view/featurebar.html.php +user/ext/view/importldap.feedback.html.hook.php +user/ext/view/importldap.html.php +user/ext/view/login.bizext.html.hook.php +user/ext/view/profile.feedback.html.hook.php +user/ext/view/risk.html.php +user/ext/view/todo.calendar.html.hook.php +user/ext/view/todocalendar.html.php +user/index.html +user/js/batchcreate.js +user/js/batchedit.js +user/js/common.js +user/js/create.js +user/js/edit.js +user/js/index.html +user/js/login.js +user/js/m.common.js +user/js/m.login.js +user/js/reset.js +user/js/todo.js +user/lang/de.php +user/lang/en.php +user/lang/fr.php +user/lang/index.html +user/lang/vi.php +user/lang/zh-cn.php +user/lang/zh-tw.php +user/model.php +user/view/ajaxprinttemplates.html.php +user/view/batchcreate.html.php +user/view/batchedit.html.php +user/view/bug.html.php +user/view/create.html.php +user/view/cropavatar.html.php +user/view/delete.html.php +user/view/deny.html.php +user/view/dynamic.html.php +user/view/edit.html.php +user/view/execution.html.php +user/view/featurebar.html.php +user/view/index.html +user/view/issue.html.php +user/view/login.html.php +user/view/m.bug.html.php +user/view/m.deny.html.php +user/view/m.dynamic.html.php +user/view/m.effort.html.php +user/view/m.effortcalendar.html.php +user/view/m.execution.html.php +user/view/m.featurebar.html.php +user/view/m.login.html.php +user/view/m.profile.html.php +user/view/m.story.html.php +user/view/m.task.html.php +user/view/m.testcase.html.php +user/view/m.testtask.html.php +user/view/m.todo.html.php +user/view/m.todocalendar.html.php +user/view/profile.html.php +user/view/reset.html.php +user/view/story.html.php +user/view/task.html.php +user/view/team.html.php +user/view/testcase.html.php +user/view/testtask.html.php +user/view/todo.html.php +vm/config.php +vm/control.php +vm/css/create.css +vm/js/browse.js +vm/js/common.js +vm/js/create.js +vm/lang/de.php +vm/lang/en.php +vm/lang/fr.php +vm/lang/zh-cn.php +vm/lang/zh-tw.php +vm/model.php +vm/view/browse.html.php +vm/view/create.html.php +vm/view/view.html.php +webhook/config.php +webhook/control.php +webhook/css/common.css +webhook/css/create.css +webhook/css/create.en.css +webhook/css/create.vi.css +webhook/css/create.zh-cn.css +webhook/css/create.zh-tw.css +webhook/css/edit.css +webhook/css/edit.en.css +webhook/css/edit.vi.css +webhook/css/edit.zh-cn.css +webhook/css/edit.zh-tw.css +webhook/css/index.html +webhook/index.html +webhook/js/bind.js +webhook/js/create.js +webhook/js/edit.js +webhook/js/index.html +webhook/lang/de.php +webhook/lang/en.php +webhook/lang/fr.php +webhook/lang/index.html +webhook/lang/vi.php +webhook/lang/zh-cn.php +webhook/lang/zh-tw.php +webhook/model.php +webhook/view/bind.html.php +webhook/view/browse.html.php +webhook/view/choosedept.html.php +webhook/view/create.html.php +webhook/view/edit.html.php +webhook/view/header.html.php +webhook/view/index.html +webhook/view/log.html.php +weekly/control.php +weekly/index.html +weekly/lang/de.php +weekly/lang/en.php +weekly/lang/fr.php +weekly/lang/index.html +weekly/lang/vi.php +weekly/lang/zh-cn.php +weekly/lang/zh-tw.php +weekly/model.php +weekly/view/index.html +weekly/view/index.html.php +workestimation/config.php +workestimation/control.php +workestimation/lang/de.php +workestimation/lang/en.php +workestimation/lang/fr.php +workestimation/lang/vi.php +workestimation/lang/zh-cn.php +workestimation/lang/zh-tw.php +workestimation/model.php +workestimation/view/index.html.php +workflow/config.php +workflow/control.php +workflow/css/browse.css +workflow/css/browsedb.css +workflow/css/common.css +workflow/css/create.css +workflow/css/edit.css +workflow/css/flowchart.css +workflow/css/header.css +workflow/css/index.html +workflow/css/release.css +workflow/css/setfulltextsearch.css +workflow/css/ui.css +workflow/css/upgrade.css +workflow/ext/config/flow.php +workflow/ext/config/index.html +workflow/ext/control/ajaxgetapps.php +workflow/ext/control/flowchart.php +workflow/ext/control/index.html +workflow/ext/css/browse/flow.css +workflow/ext/css/browse/index.html +workflow/ext/css/common/flow.css +workflow/ext/css/common/index.html +workflow/ext/css/flowchart/flow.css +workflow/ext/css/flowchart/index.html +workflow/ext/css/index.html +workflow/ext/css/setrelation/flow.css +workflow/ext/css/setrelation/index.html +workflow/ext/css/ui/flow.css +workflow/ext/css/ui/index.html +workflow/ext/index.html +workflow/ext/lang/de/flow.php +workflow/ext/lang/en/flow.php +workflow/ext/lang/en/index.html +workflow/ext/lang/fr/flow.php +workflow/ext/lang/index.html +workflow/ext/lang/vi/flow.php +workflow/ext/lang/vi/index.html +workflow/ext/lang/zh-cn/flow.php +workflow/ext/lang/zh-cn/index.html +workflow/ext/lang/zh-tw/flow.php +workflow/ext/model/class/flow.class.php +workflow/ext/model/class/index.html +workflow/ext/model/flow.php +workflow/ext/model/index.html +workflow/ext/view/browse.flow.html.hook.php +workflow/ext/view/browsedb.flow.html.hook.php +workflow/ext/view/copy.flow.html.hook.php +workflow/ext/view/edit.flow.html.hook.php +workflow/ext/view/flowchart.flow.html.hook.php +workflow/ext/view/index.html +workflow/ext/view/release.flow.html.hook.php +workflow/ext/view/setcss.flow.html.hook.php +workflow/ext/view/setjs.flow.html.hook.php +workflow/ext/view/ui.flow.html.hook.php +workflow/index.html +workflow/js/browse.js +workflow/js/browsedb.js +workflow/js/common.js +workflow/js/copy.js +workflow/js/create.js +workflow/js/edit.js +workflow/js/flowchart.js +workflow/js/index.html +workflow/js/release.js +workflow/js/setfulltextsearch.js +workflow/js/ui.js +workflow/js/upgrade.js +workflow/lang/de.php +workflow/lang/en.php +workflow/lang/fr.php +workflow/lang/index.html +workflow/lang/vi.php +workflow/lang/zh-cn.php +workflow/lang/zh-tw.php +workflow/model.php +workflow/view/browse.html.php +workflow/view/browsedb.html.php +workflow/view/card.html.php +workflow/view/copy.html.php +workflow/view/create.html.php +workflow/view/edit.html.php +workflow/view/flowchart.html.php +workflow/view/header.html.php +workflow/view/index.html +workflow/view/list.html.php +workflow/view/release.html.php +workflow/view/setcss.html.php +workflow/view/setfulltextsearch.html.php +workflow/view/setjs.html.php +workflow/view/side.html.php +workflow/view/ui.html.php +workflow/view/upgrade.html.php +workflow/view/view.html.php +workflowaction/config.php +workflowaction/control.php +workflowaction/css/browse.css +workflowaction/css/common.css +workflowaction/css/index.html +workflowaction/ext/config/flow.php +workflowaction/ext/config/index.html +workflowaction/ext/css/browse/flow.css +workflowaction/ext/css/browse/index.html +workflowaction/ext/css/common/flow.css +workflowaction/ext/css/common/index.html +workflowaction/ext/css/index.html +workflowaction/ext/css/setnotice/flow.css +workflowaction/ext/css/setnotice/index.html +workflowaction/ext/css/view/flow.css +workflowaction/ext/css/view/index.html +workflowaction/ext/index.html +workflowaction/ext/lang/de/flow.php +workflowaction/ext/lang/en/flow.php +workflowaction/ext/lang/en/index.html +workflowaction/ext/lang/fr/flow.php +workflowaction/ext/lang/index.html +workflowaction/ext/lang/zh-cn/flow.php +workflowaction/ext/lang/zh-cn/index.html +workflowaction/ext/lang/zh-tw/flow.php +workflowaction/ext/model/class/flow.class.php +workflowaction/ext/model/class/index.html +workflowaction/ext/model/flow.php +workflowaction/ext/model/index.html +workflowaction/ext/view/browse.flow.html.hook.php +workflowaction/ext/view/create.flow.html.hook.php +workflowaction/ext/view/edit.flow.html.hook.php +workflowaction/ext/view/index.html +workflowaction/ext/view/setnotice.flow.html.hook.php +workflowaction/ext/view/setverification.flow.html.hook.php +workflowaction/ext/view/view.flow.html.hook.php +workflowaction/index.html +workflowaction/js/browse.js +workflowaction/js/common.js +workflowaction/js/edit.js +workflowaction/js/index.html +workflowaction/js/setnotice.js +workflowaction/js/setverification.js +workflowaction/lang/de.php +workflowaction/lang/en.php +workflowaction/lang/fr.php +workflowaction/lang/index.html +workflowaction/lang/vi.php +workflowaction/lang/zh-cn.php +workflowaction/lang/zh-tw.php +workflowaction/model.php +workflowaction/view/browse.html.php +workflowaction/view/create.html.php +workflowaction/view/edit.html.php +workflowaction/view/index.html +workflowaction/view/previewbatchoperate.html.php +workflowaction/view/previewbrowse.html.php +workflowaction/view/previewdetail.html.php +workflowaction/view/previewoperate.html.php +workflowaction/view/setnotice.html.php +workflowaction/view/setverification.html.php +workflowaction/view/view.html.php +workflowcondition/config.php +workflowcondition/control.php +workflowcondition/css/browse.css +workflowcondition/css/common.css +workflowcondition/css/index.html +workflowcondition/ext/css/common/flow.css +workflowcondition/ext/css/common/index.html +workflowcondition/ext/css/index.html +workflowcondition/ext/index.html +workflowcondition/ext/view/browse.flow.html.hook.php +workflowcondition/ext/view/browse.html.php +workflowcondition/ext/view/create.flow.html.hook.php +workflowcondition/ext/view/edit.flow.html.hook.php +workflowcondition/ext/view/index.html +workflowcondition/index.html +workflowcondition/js/browse.js +workflowcondition/js/common.js +workflowcondition/js/create.js +workflowcondition/js/edit.js +workflowcondition/js/index.html +workflowcondition/lang/de.php +workflowcondition/lang/en.php +workflowcondition/lang/fr.php +workflowcondition/lang/index.html +workflowcondition/lang/vi.php +workflowcondition/lang/zh-cn.php +workflowcondition/lang/zh-tw.php +workflowcondition/model.php +workflowcondition/view/browse.html.php +workflowcondition/view/create.html.php +workflowcondition/view/edit.html.php +workflowcondition/view/index.html +workflowdatasource/config.php +workflowdatasource/control.php +workflowdatasource/css/common.css +workflowdatasource/css/create.css +workflowdatasource/css/edit.css +workflowdatasource/css/index.html +workflowdatasource/ext/config/flow.php +workflowdatasource/ext/config/index.html +workflowdatasource/ext/css/browse/flow.css +workflowdatasource/ext/css/browse/index.html +workflowdatasource/ext/css/create/flow.css +workflowdatasource/ext/css/create/index.html +workflowdatasource/ext/css/edit/flow.css +workflowdatasource/ext/css/edit/index.html +workflowdatasource/ext/css/index.html +workflowdatasource/ext/index.html +workflowdatasource/ext/lang/de/flow.php +workflowdatasource/ext/lang/en/flow.php +workflowdatasource/ext/lang/en/index.html +workflowdatasource/ext/lang/fr/flow.php +workflowdatasource/ext/lang/index.html +workflowdatasource/ext/lang/vi/flow.php +workflowdatasource/ext/lang/vi/index.html +workflowdatasource/ext/lang/zh-cn/flow.php +workflowdatasource/ext/lang/zh-cn/index.html +workflowdatasource/ext/lang/zh-tw/flow.php +workflowdatasource/ext/model/class/flow.class.php +workflowdatasource/ext/model/class/index.html +workflowdatasource/ext/model/flow.php +workflowdatasource/ext/model/index.html +workflowdatasource/ext/view/browse.flow.html.hook.php +workflowdatasource/ext/view/create.flow.html.hook.php +workflowdatasource/ext/view/edit.flow.html.hook.php +workflowdatasource/ext/view/index.html +workflowdatasource/index.html +workflowdatasource/js/browse.js +workflowdatasource/js/create.js +workflowdatasource/js/edit.js +workflowdatasource/js/index.html +workflowdatasource/lang/de.php +workflowdatasource/lang/en.php +workflowdatasource/lang/fr.php +workflowdatasource/lang/index.html +workflowdatasource/lang/vi.php +workflowdatasource/lang/zh-cn.php +workflowdatasource/lang/zh-tw.php +workflowdatasource/model.php +workflowdatasource/view/browse.html.php +workflowdatasource/view/create.html.php +workflowdatasource/view/edit.html.php +workflowdatasource/view/index.html +workflowfield/config.php +workflowfield/control.php +workflowfield/css/browse.css +workflowfield/css/common.css +workflowfield/css/create.css +workflowfield/css/edit.css +workflowfield/css/index.html +workflowfield/css/setexport.css +workflowfield/css/setsearch.css +workflowfield/css/setvalue.css +workflowfield/ext/config/flow.php +workflowfield/ext/config/index.html +workflowfield/ext/control/ajaxgetsubstatuscontrol.php +workflowfield/ext/control/index.html +workflowfield/ext/css/browse/flow.css +workflowfield/ext/css/browse/index.html +workflowfield/ext/css/common/flow.css +workflowfield/ext/css/common/index.html +workflowfield/ext/css/create/flow.css +workflowfield/ext/css/create/index.html +workflowfield/ext/css/edit/flow.css +workflowfield/ext/css/edit/index.html +workflowfield/ext/css/index.html +workflowfield/ext/css/setexport/flow.css +workflowfield/ext/css/setexport/index.html +workflowfield/ext/css/setsearch/flow.css +workflowfield/ext/css/setsearch/index.html +workflowfield/ext/index.html +workflowfield/ext/js/index.html +workflowfield/ext/js/setexport/flow.js +workflowfield/ext/js/setexport/index.html +workflowfield/ext/js/setsearch/flow.js +workflowfield/ext/js/setsearch/index.html +workflowfield/ext/lang/de/flow.php +workflowfield/ext/lang/en/flow.php +workflowfield/ext/lang/en/index.html +workflowfield/ext/lang/fr/flow.php +workflowfield/ext/lang/index.html +workflowfield/ext/lang/zh-cn/flow.php +workflowfield/ext/lang/zh-cn/index.html +workflowfield/ext/lang/zh-tw/flow.php +workflowfield/ext/model/class/flow.class.php +workflowfield/ext/model/class/index.html +workflowfield/ext/model/flow.php +workflowfield/ext/model/index.html +workflowfield/ext/view/browse.flow.html.hook.php +workflowfield/ext/view/create.flow.html.hook.php +workflowfield/ext/view/edit.flow.html.hook.php +workflowfield/ext/view/index.html +workflowfield/ext/view/setexport.flow.html.hook.php +workflowfield/ext/view/setsearch.flow.html.hook.php +workflowfield/index.html +workflowfield/js/browse.js +workflowfield/js/common.js +workflowfield/js/create.js +workflowfield/js/edit.js +workflowfield/js/import.js +workflowfield/js/index.html +workflowfield/js/setexport.js +workflowfield/js/setsearch.js +workflowfield/js/setvalue.js +workflowfield/js/showimport.js +workflowfield/lang/de.php +workflowfield/lang/en.php +workflowfield/lang/fr.php +workflowfield/lang/index.html +workflowfield/lang/vi.php +workflowfield/lang/zh-cn.php +workflowfield/lang/zh-tw.php +workflowfield/model.php +workflowfield/view/addsqlvar.html.php +workflowfield/view/browse.html.php +workflowfield/view/create.html.php +workflowfield/view/edit.html.php +workflowfield/view/expression.html.php +workflowfield/view/fields.html.php +workflowfield/view/import.html.php +workflowfield/view/index.html +workflowfield/view/setexport.html.php +workflowfield/view/setsearch.html.php +workflowfield/view/setvalue.html.php +workflowfield/view/showimport.html.php +workflowhook/config.php +workflowhook/control.php +workflowhook/css/browse.css +workflowhook/css/common.css +workflowhook/css/index.html +workflowhook/ext/config/flow.php +workflowhook/ext/config/index.html +workflowhook/ext/css/common/flow.css +workflowhook/ext/css/common/flow.en.css +workflowhook/ext/css/common/flow.vi.css +workflowhook/ext/css/common/index.html +workflowhook/ext/css/index.html +workflowhook/ext/index.html +workflowhook/ext/lang/de/flow.php +workflowhook/ext/lang/en/flow.php +workflowhook/ext/lang/en/index.html +workflowhook/ext/lang/fr/flow.php +workflowhook/ext/lang/index.html +workflowhook/ext/lang/vi/flow.php +workflowhook/ext/lang/vi/index.html +workflowhook/ext/lang/zh-cn/flow.php +workflowhook/ext/lang/zh-cn/index.html +workflowhook/ext/lang/zh-tw/flow.php +workflowhook/ext/view/browse.flow.html.hook.php +workflowhook/ext/view/browse.html.php +workflowhook/ext/view/create.flow.html.hook.php +workflowhook/ext/view/edit.flow.html.hook.php +workflowhook/ext/view/index.html +workflowhook/index.html +workflowhook/js/browse.js +workflowhook/js/common.js +workflowhook/js/create.js +workflowhook/js/edit.js +workflowhook/js/index.html +workflowhook/lang/de.php +workflowhook/lang/en.php +workflowhook/lang/fr.php +workflowhook/lang/index.html +workflowhook/lang/vi.php +workflowhook/lang/zh-cn.php +workflowhook/lang/zh-tw.php +workflowhook/model.php +workflowhook/view/browse.html.php +workflowhook/view/create.html.php +workflowhook/view/edit.html.php +workflowhook/view/expression.html.php +workflowhook/view/index.html +workflowlabel/config.php +workflowlabel/control.php +workflowlabel/css/browse.css +workflowlabel/css/common.css +workflowlabel/css/index.html +workflowlabel/ext/css/browse/flow.css +workflowlabel/ext/css/browse/index.html +workflowlabel/ext/css/common/flow.css +workflowlabel/ext/css/common/index.html +workflowlabel/ext/css/index.html +workflowlabel/ext/index.html +workflowlabel/ext/view/browse.flow.html.hook.php +workflowlabel/ext/view/index.html +workflowlabel/index.html +workflowlabel/js/browse.js +workflowlabel/js/common.js +workflowlabel/js/edit.js +workflowlabel/js/index.html +workflowlabel/lang/de.php +workflowlabel/lang/en.php +workflowlabel/lang/fr.php +workflowlabel/lang/index.html +workflowlabel/lang/vi.php +workflowlabel/lang/zh-cn.php +workflowlabel/lang/zh-tw.php +workflowlabel/model.php +workflowlabel/view/browse.html.php +workflowlabel/view/create.html.php +workflowlabel/view/edit.html.php +workflowlabel/view/index.html +workflowlabel/view/preview.html.php +workflowlayout/config.php +workflowlayout/control.php +workflowlayout/css/admin.css +workflowlayout/css/block.css +workflowlayout/css/index.html +workflowlayout/ext/config/flow.php +workflowlayout/ext/config/index.html +workflowlayout/ext/css/admin/flow.css +workflowlayout/ext/css/admin/index.html +workflowlayout/ext/css/index.html +workflowlayout/ext/index.html +workflowlayout/ext/js/admin/flow.js +workflowlayout/ext/js/admin/index.html +workflowlayout/ext/js/index.html +workflowlayout/ext/lang/de/flow.php +workflowlayout/ext/lang/en/flow.php +workflowlayout/ext/lang/en/index.html +workflowlayout/ext/lang/fr/flow.php +workflowlayout/ext/lang/index.html +workflowlayout/ext/lang/vi/flow.php +workflowlayout/ext/lang/vi/index.html +workflowlayout/ext/view/admin.flow.html.hook.php +workflowlayout/ext/view/index.html +workflowlayout/index.html +workflowlayout/js/admin.js +workflowlayout/js/block.js +workflowlayout/js/common.js +workflowlayout/js/index.html +workflowlayout/lang/de.php +workflowlayout/lang/en.php +workflowlayout/lang/fr.php +workflowlayout/lang/index.html +workflowlayout/lang/vi.php +workflowlayout/lang/zh-cn.php +workflowlayout/lang/zh-tw.php +workflowlayout/model.php +workflowlayout/view/admin.html.php +workflowlayout/view/block.html.php +workflowlayout/view/fields.html.php +workflowlayout/view/index.html +workflowlayout/view/prevmodules.html.php +workflowlayout/view/subtables.html.php +workflowlinkage/config.php +workflowlinkage/control.php +workflowlinkage/css/browse.css +workflowlinkage/css/index.html +workflowlinkage/ext/css/common/flow.css +workflowlinkage/ext/css/common/index.html +workflowlinkage/ext/css/index.html +workflowlinkage/ext/index.html +workflowlinkage/ext/view/browse.flow.html.hook.php +workflowlinkage/ext/view/create.flow.html.hook.php +workflowlinkage/ext/view/edit.flow.html.hook.php +workflowlinkage/ext/view/index.html +workflowlinkage/index.html +workflowlinkage/js/browse.js +workflowlinkage/js/common.js +workflowlinkage/js/create.js +workflowlinkage/js/edit.js +workflowlinkage/js/index.html +workflowlinkage/lang/de.php +workflowlinkage/lang/en.php +workflowlinkage/lang/fr.php +workflowlinkage/lang/index.html +workflowlinkage/lang/vi.php +workflowlinkage/lang/zh-cn.php +workflowlinkage/lang/zh-tw.php +workflowlinkage/model.php +workflowlinkage/view/browse.html.php +workflowlinkage/view/create.html.php +workflowlinkage/view/edit.html.php +workflowlinkage/view/index.html +workflowrelation/config.php +workflowrelation/control.php +workflowrelation/css/admin.css +workflowrelation/css/index.html +workflowrelation/ext/css/admin/flow.css +workflowrelation/ext/css/admin/index.html +workflowrelation/ext/css/index.html +workflowrelation/ext/index.html +workflowrelation/ext/view/admin.flow.html.hook.php +workflowrelation/ext/view/index.html +workflowrelation/index.html +workflowrelation/js/admin.js +workflowrelation/js/index.html +workflowrelation/lang/de.php +workflowrelation/lang/en.php +workflowrelation/lang/fr.php +workflowrelation/lang/index.html +workflowrelation/lang/vi.php +workflowrelation/lang/zh-cn.php +workflowrelation/lang/zh-tw.php +workflowrelation/model.php +workflowrelation/view/admin.html.php +workflowrelation/view/index.html +workflowreport/config.php +workflowreport/control.php +workflowreport/css/browse.css +workflowreport/css/index.html +workflowreport/index.html +workflowreport/js/browse.js +workflowreport/js/create.js +workflowreport/js/edit.js +workflowreport/js/index.html +workflowreport/lang/de.php +workflowreport/lang/en.php +workflowreport/lang/fr.php +workflowreport/lang/index.html +workflowreport/lang/zh-cn.php +workflowreport/lang/zh-tw.php +workflowreport/model.php +workflowreport/view/ajaxpreview.html.php +workflowreport/view/browse.html.php +workflowreport/view/create.html.php +workflowreport/view/edit.html.php +workflowreport/view/index.html +workflowrule/config.php +workflowrule/control.php +workflowrule/css/common.css +workflowrule/css/index.html +workflowrule/ext/css/browse/flow.css +workflowrule/ext/css/browse/index.html +workflowrule/ext/css/index.html +workflowrule/ext/index.html +workflowrule/ext/view/browse.flow.html.hook.php +workflowrule/ext/view/index.html +workflowrule/ext/view/view.flow.html.hook.php +workflowrule/index.html +workflowrule/js/index.html +workflowrule/lang/de.php +workflowrule/lang/en.php +workflowrule/lang/fr.php +workflowrule/lang/index.html +workflowrule/lang/vi.php +workflowrule/lang/zh-cn.php +workflowrule/lang/zh-tw.php +workflowrule/model.php +workflowrule/view/browse.html.php +workflowrule/view/create.html.php +workflowrule/view/edit.html.php +workflowrule/view/index.html +workflowrule/view/view.html.php +zoutput/config.php +zoutput/control.php +zoutput/js/browse.js +zoutput/lang/en.php +zoutput/lang/zh-cn.php +zoutput/lang/zh-tw.php +zoutput/model.php +zoutput/view/batchcreate.html.php +zoutput/view/batchedit.html.php +zoutput/view/browse.html.php +zoutput/view/create.html.php +zoutput/view/edit.html.php +zoutput/view/view.html.php \ No newline at end of file diff --git a/module/upgrade/model.php b/module/upgrade/model.php index c0461c46a5..b8eba484ac 100644 --- a/module/upgrade/model.php +++ b/module/upgrade/model.php @@ -5696,9 +5696,9 @@ class upgradeModel extends model */ public function getEXTFiles() { - $files = array(); - $allModules = scandir($this->app->moduleRoot); - $skipModules = $this->getEncryptModules($allModules); + $files = array(); + $allModules = scandir($this->app->moduleRoot); + $skipModules = $this->getEncryptModules($allModules); foreach($allModules as $module) { @@ -5816,6 +5816,9 @@ class upgradeModel extends model /* Determine whether the current file is encrypted. */ if(strpos($line, "extension_loaded('ionCube Loader')") === false) { + $maxFiles = file_get_contents('maxfiles.php'); + if(strpos($maxFiles, $fileName) !== false) continue; + $files[$fileName] = $fileName; } } @@ -5826,15 +5829,15 @@ class upgradeModel extends model /** * Move extent files. - * + * * @access public - * @return void + * @return array */ public function moveEXTFiles() { $data = fixer::input('post')->get(); $customRoot = $this->app->appRoot . 'extension' . DIRECTORY_SEPARATOR . 'custom'; - if(!is_dir($customRoot)) @mkdir($customRoot, 0777); + $response = array('result' => 'success'); foreach($data->files as $file) { @@ -5842,8 +5845,79 @@ class upgradeModel extends model $fileName = basename($file); $fromPath = $this->app->getModuleRoot() . $file; $toPath = $dirRoot . DIRECTORY_SEPARATOR . $fileName; - if(!is_dir($dirRoot)) @mkdir($dirRoot, 0777, true); + if(!is_dir($dirRoot)) + { + if(!@mkdir($dirRoot, 0777, true)) + { + $response['result'] = 'fail'; + $response['message'] = $this->lang->upgrade->moveEXTFileFail;; + $response['command'] = 'chmod o=rwx -R '. $this->app->appRoot . 'extension/custom'; + + return $response; + } + } copy($fromPath, $toPath); + $this->replaceEXTFile($toPath); } + + return $response; + } + + /** + * Remove charge directory. + * + * @access public + * @return array + */ + public function removeChargeDir() + { + $allModules = scandir($this->app->moduleRoot); + $skipModules = $this->getEncryptModules($allModules); + $zfile = $this->app->loadClass('zfile'); + $response = array('result' => 'success'); + $command = array(); + foreach($skipModules as $module) + { + if(in_array($module, $this->config->upgrade->PMSModules)) continue; + + $dirPath = $this->app->moduleRoot . $module; + if(!$zfile->removeDir($dirPath)) $command[] = 'rm -f -r ' . $dirPath; + } + + if(!empty($command)) + { + $response['result'] = 'fail'; + $response['message'] = $this->lang->upgrade->afterDeleted; + $response['command'] = $command; + } + + return $response; + } + + /** + * Replace extent file. + * + * @param string $filePath + * @access public + * @return void + */ + public function replaceEXTFile($filePath) + { + $content = file_get_contents($filePath); + if(strpos(basename($filePath), 'html')) + { + $content = preg_replace("#(include )'((../){2,})([a-z]+/)#", '$1' . '$app->getModuleRoot() . ' . "'$4", $content); + } + else + { + $dirPath = dirname($filePath); + $dir = str_replace($this->app->appRoot . 'extension' . DIRECTORY_SEPARATOR . 'custom' .DIRECTORY_SEPARATOR , '', $dirPath); + $moduleName = explode(DIRECTORY_SEPARATOR, $dir)[0]; + + $content = str_replace("include '../../control.php';", "helper::importControl('$moduleName');", $content); + $content = str_replace("helper::import('../../control.php');", "helper::importControl('$moduleName');", $content); + $content = str_replace('helper::import(dirname(dirname(dirname(__FILE__))) . "/control.php");', "helper::importControl('$moduleName');", $content); + } + file_put_contents($filePath, $content); } } diff --git a/module/upgrade/view/confirmcustom.html.php b/module/upgrade/view/confirmcustom.html.php new file mode 100644 index 0000000000..e7bd93d1ea --- /dev/null +++ b/module/upgrade/view/confirmcustom.html.php @@ -0,0 +1,26 @@ + + * @package upgrade + * @version $Id: confirmcustom.html.php 4129 2022-02-23 10:20:14Z $ + */ +?> + +