├── .dockerignore ├── .drone-ci.yml ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature-request.md ├── PULL_REQUEST_TEMPLATE.md └── dependabot.yml ├── .gitignore ├── .gitlab-ci.yml.bak ├── Jenkinsfile ├── LICENSE.md ├── Makefile ├── README.md ├── VERSION ├── backend ├── .air.conf ├── .editorconfig ├── .golangci.yml ├── Dockerfile ├── Makefile ├── README.md ├── cmd │ ├── main.go │ ├── serve │ │ └── serve.go │ └── version │ │ └── version.go ├── docs │ ├── docs.go │ ├── swagger.json │ └── swagger.yaml ├── go.mod ├── go.sum ├── go.work ├── go.work.sum ├── hack │ └── scripts │ │ ├── gencopyright.sh │ │ └── gendocs.sh ├── internal │ ├── app │ │ ├── model │ │ │ ├── app.go │ │ │ ├── app_response.go │ │ │ ├── base.go │ │ │ ├── component.go │ │ │ ├── middleware.go │ │ │ ├── namespace.go │ │ │ ├── snippet.go │ │ │ ├── system.go │ │ │ └── validate_form.go │ │ ├── patch │ │ │ ├── patch.go │ │ │ ├── patch20221103.go │ │ │ └── patch20230106.go │ │ ├── router │ │ │ ├── app.go │ │ │ ├── app_backup.go │ │ │ ├── app_utils.go │ │ │ ├── base │ │ │ │ └── base.go │ │ │ ├── cluster.go │ │ │ ├── const.go │ │ │ ├── dbservice.go │ │ │ ├── health.go │ │ │ ├── middle.go │ │ │ ├── middleware.go │ │ │ ├── namespace.go │ │ │ ├── node.go │ │ │ ├── render.go │ │ │ ├── router.go │ │ │ ├── snippet.go │ │ │ ├── system.go │ │ │ ├── tool.go │ │ │ └── valid.go │ │ ├── serve │ │ │ └── serve.go │ │ ├── service │ │ │ ├── app │ │ │ │ ├── component │ │ │ │ │ ├── componet.go │ │ │ │ │ ├── const.go │ │ │ │ │ ├── deployment.go │ │ │ │ │ ├── interface.go │ │ │ │ │ ├── job.go │ │ │ │ │ ├── statefulset.go │ │ │ │ │ └── status.go │ │ │ │ ├── error.go │ │ │ │ ├── install.go │ │ │ │ ├── instance.go │ │ │ │ ├── instance │ │ │ │ │ ├── account.go │ │ │ │ │ ├── backup.go │ │ │ │ │ ├── deprecated.go │ │ │ │ │ ├── domain.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── extra.go │ │ │ │ │ ├── helm.go │ │ │ │ │ ├── instance.go │ │ │ │ │ ├── log.go │ │ │ │ │ ├── metric.go │ │ │ │ │ ├── setting.go │ │ │ │ │ ├── status.go │ │ │ │ │ ├── update.go │ │ │ │ │ └── util.go │ │ │ │ └── manage.go │ │ │ ├── component │ │ │ │ └── component.go │ │ │ ├── middleware │ │ │ │ ├── error.go │ │ │ │ ├── middleware.go │ │ │ │ ├── mysql.go │ │ │ │ ├── mysql_config_test.go │ │ │ │ └── type.go │ │ │ ├── namespace │ │ │ │ ├── const.go │ │ │ │ ├── instance.go │ │ │ │ └── manage.go │ │ │ ├── node │ │ │ │ └── node.go │ │ │ ├── service.go │ │ │ └── snippet │ │ │ │ ├── const.go │ │ │ │ ├── manage.go │ │ │ │ └── snippet.go │ │ └── validator │ │ │ ├── field │ │ │ ├── field.go │ │ │ └── regex.go │ │ │ ├── translation │ │ │ └── en.go │ │ │ └── validator.go │ └── pkg │ │ ├── analysis │ │ ├── action.go │ │ └── analysis.go │ │ ├── app │ │ ├── app_server_test.go │ │ ├── const.go │ │ ├── gitea.go │ │ ├── gitlab.go │ │ ├── sonarqube.go │ │ ├── tools.go │ │ ├── type.go │ │ └── validator.go │ │ ├── constant │ │ ├── app.go │ │ ├── const.go │ │ └── env.go │ │ ├── db │ │ └── manage │ │ │ ├── manage.go │ │ │ ├── mysql.go │ │ │ ├── parse.go │ │ │ ├── postgresql.go │ │ │ └── server.go │ │ ├── job │ │ ├── alive.go │ │ ├── httptls.go │ │ └── job.go │ │ ├── kube │ │ ├── cluster │ │ │ ├── cluster.go │ │ │ ├── const.go │ │ │ └── error.go │ │ ├── metric │ │ │ ├── metric.go │ │ │ └── type.go │ │ ├── store │ │ │ └── store.go │ │ └── value_read.go │ │ └── retcode │ │ └── errors.go ├── licenses │ ├── Z-PUBLIC-LICENSE-1.2.md │ └── z-public-1.2.tpl ├── pkg │ ├── cron │ │ ├── cron.go │ │ └── factory.go │ ├── ext │ │ └── router │ │ │ ├── factory │ │ │ └── factory.go │ │ │ └── render │ │ │ └── render.go │ ├── external │ │ └── mysql │ │ │ └── mysql.go │ ├── helm │ │ ├── const.go │ │ ├── field.go │ │ ├── form │ │ │ ├── const.go │ │ │ └── type.go │ │ ├── helm.go │ │ ├── kube.go │ │ ├── parse.go │ │ ├── push.go │ │ ├── push │ │ │ └── push.go │ │ ├── repo.go │ │ ├── repo_update.go │ │ ├── schema │ │ │ ├── category.go │ │ │ ├── const.go │ │ │ ├── schema.go │ │ │ └── type.go │ │ └── search.go │ ├── httplib │ │ ├── market │ │ │ └── market_client.go │ │ ├── type.go │ │ └── util.go │ ├── license │ │ └── license.go │ ├── logging │ │ ├── context.go │ │ ├── context_fileds_hook.go │ │ ├── flag.go │ │ └── logging.go │ ├── parse │ │ ├── error.go │ │ ├── parse.go │ │ └── parse_test.go │ └── utils │ │ ├── kvpath │ │ └── parse.go │ │ └── tls │ │ ├── error.go │ │ └── tls.go └── staging │ └── src │ ├── git.zcorp.cc │ └── pangu │ │ └── cne-api-ext │ │ ├── ext │ │ └── ext.go │ │ └── go.mod │ └── gitlab.zcorp.cc │ └── pangu │ └── app-sdk │ ├── go.mod │ ├── go.sum │ └── pkg │ ├── gitea │ ├── error.go │ ├── gitea_client.go │ └── gitea_type.go │ ├── gitlab │ ├── error.go │ └── gilab_client.go │ ├── httplib │ ├── error.go │ ├── type.go │ └── util.go │ └── sonar │ ├── sonar_client.go │ └── sonar_type.go ├── docker-compose.yml ├── docker ├── Dockerfile ├── Dockerfile.api ├── prebuildfs │ ├── opt │ │ └── easysoft │ │ │ ├── .components.json │ │ │ └── scripts │ │ │ ├── libcomponent.sh │ │ │ ├── libeasysoft.sh │ │ │ ├── libfile.sh │ │ │ ├── libfs.sh │ │ │ ├── libhook.sh │ │ │ ├── liblog.sh │ │ │ ├── libmysql.sh │ │ │ ├── libnet.sh │ │ │ ├── libos.sh │ │ │ ├── libpersistence.sh │ │ │ ├── libservice.sh │ │ │ ├── libvalidations.sh │ │ │ ├── libversion.sh │ │ │ └── libwebserver.sh │ └── usr │ │ └── sbin │ │ └── install_packages └── rootfs │ ├── apps │ └── qucheng │ │ └── config │ │ └── my.php │ ├── etc │ ├── apache2 │ │ └── sites-enabled │ │ │ └── site.conf.tpl │ ├── cron.d │ │ └── www-data │ ├── php │ │ └── 7.4 │ │ │ └── php.ini.tpl │ └── s6 │ │ ├── s6-available │ │ ├── .s6-svscan │ │ │ └── finish │ │ ├── apache │ │ │ ├── finish │ │ │ └── run │ │ ├── backend │ │ │ ├── finish │ │ │ └── run │ │ └── cron │ │ │ ├── finish │ │ │ └── run │ │ ├── s6-enable │ │ └── .s6-svscan │ │ │ └── finish │ │ └── s6-init │ │ ├── envs │ │ └── run │ └── usr │ └── bin │ └── entrypoint.sh ├── frontend ├── adminer │ ├── adminer.css │ └── index.php ├── api │ └── v1 │ │ ├── entries │ │ ├── adminpassword.php │ │ ├── error.php │ │ └── tokens.php │ │ └── lang │ │ └── zh-cn.php ├── bin │ ├── backup.sh │ └── ztcli ├── config │ ├── config.php │ ├── filter.php │ ├── qucheng.php │ ├── routes.php │ └── timezones.php ├── db │ ├── data.sql │ ├── update1.0.3.sql │ ├── update1.1.1.sql │ ├── update1.1.2.sql │ ├── update1.2.0.sql │ ├── update1.4.0.sql │ ├── update1.4.1.sql │ ├── update1.6.0.sql │ ├── update2.3.0.sql │ ├── update2.3.1.sql │ ├── update2.6.0.sql │ ├── update2.6.1.sql │ └── update2.6.2.sql ├── framework │ ├── api │ │ ├── entry.class.php │ │ ├── helper.class.php │ │ └── router.class.php │ ├── base │ │ ├── control.class.php │ │ ├── helper.class.php │ │ ├── model.class.php │ │ └── router.class.php │ ├── control.class.php │ ├── helper.class.php │ ├── model.class.php │ ├── router.class.php │ └── tests │ │ └── helper │ │ ├── .101.setmember.onelevel.et │ │ ├── .110.setmember.multilevel.et │ │ ├── .201.getwebroot.inbrowse.et │ │ ├── .202.getwebroot.inshell.et │ │ ├── 101.setmember.onelevel.php │ │ ├── 110.setmember.multilevel.php │ │ ├── 201.getwebroot.inbrowse.php │ │ └── 202.getwebroot.inshell.php ├── lib │ ├── api │ │ └── api.class.php │ ├── base │ │ ├── dao │ │ │ └── dao.class.php │ │ ├── filter │ │ │ └── filter.class.php │ │ ├── front │ │ │ └── front.class.php │ │ └── pager │ │ │ └── pager.class.php │ ├── captcha │ │ ├── captcha.class.php │ │ └── font │ │ │ ├── captcha0.ttf │ │ │ ├── captcha1.ttf │ │ │ ├── captcha2.ttf │ │ │ ├── captcha3.ttf │ │ │ ├── captcha4.ttf │ │ │ └── captcha5.ttf │ ├── crontab │ │ └── crontab.class.php │ ├── dao │ │ └── dao.class.php │ ├── date │ │ └── date.class.php │ ├── dingapi │ │ └── dingapi.class.php │ ├── feishuapi │ │ └── feishuapi.class.php │ ├── filter │ │ └── filter.class.php │ ├── front │ │ └── front.class.php │ ├── htmlup │ │ └── htmlup.class.php │ ├── mobile │ │ └── mobile.class.php │ ├── pager │ │ └── pager.class.php │ ├── parsedownextraplugin │ │ ├── LICENSE.txt │ │ ├── parsedown.php │ │ ├── parsedownextra.php │ │ └── parsedownextraplugin.class.php │ ├── pclzip │ │ ├── gnu-lgpl.txt │ │ ├── pclzip.class.php │ │ └── readme.txt │ ├── phpmailer │ │ ├── LICENSE │ │ ├── README │ │ ├── class.pop3.php │ │ ├── class.smtp.php │ │ ├── language │ │ │ ├── phpmailer.lang-ar.php │ │ │ ├── phpmailer.lang-br.php │ │ │ ├── phpmailer.lang-ca.php │ │ │ ├── phpmailer.lang-ch.php │ │ │ ├── phpmailer.lang-cz.php │ │ │ ├── phpmailer.lang-de.php │ │ │ ├── phpmailer.lang-dk.php │ │ │ ├── phpmailer.lang-es.php │ │ │ ├── phpmailer.lang-et.php │ │ │ ├── phpmailer.lang-fi.php │ │ │ ├── phpmailer.lang-fo.php │ │ │ ├── phpmailer.lang-fr.php │ │ │ ├── phpmailer.lang-hu.php │ │ │ ├── phpmailer.lang-it.php │ │ │ ├── phpmailer.lang-ja.php │ │ │ ├── phpmailer.lang-nl.php │ │ │ ├── phpmailer.lang-no.php │ │ │ ├── phpmailer.lang-pl.php │ │ │ ├── phpmailer.lang-ro.php │ │ │ ├── phpmailer.lang-ru.php │ │ │ ├── phpmailer.lang-se.php │ │ │ ├── phpmailer.lang-tr.php │ │ │ ├── phpmailer.lang-zh-cn.php │ │ │ └── phpmailer.lang-zh-tw.php │ │ ├── ntlm_sasl_client.php │ │ └── phpmailer.class.php │ ├── phpthumb │ │ ├── GdThumb.inc.php │ │ ├── PhpThumb.inc.php │ │ ├── ThumbBase.inc.php │ │ ├── phpthumb.class.php │ │ └── thumb_plugins │ │ │ └── gd_reflection.inc.php │ ├── pinyin │ │ ├── data │ │ │ └── words │ │ └── pinyin.class.php │ ├── purifier │ │ ├── HTMLPurifier.auto.php │ │ ├── HTMLPurifier.autoload-legacy.php │ │ ├── HTMLPurifier.autoload.php │ │ ├── HTMLPurifier.composer.php │ │ ├── HTMLPurifier.func.php │ │ ├── HTMLPurifier.includes.php │ │ ├── HTMLPurifier.kses.php │ │ ├── HTMLPurifier.path.php │ │ ├── HTMLPurifier.php │ │ ├── HTMLPurifier.safe-includes.php │ │ ├── HTMLPurifier │ │ │ ├── Arborize.php │ │ │ ├── AttrCollections.php │ │ │ ├── AttrDef.php │ │ │ ├── AttrDef │ │ │ │ ├── CSS.php │ │ │ │ ├── CSS │ │ │ │ │ ├── AlphaValue.php │ │ │ │ │ ├── Background.php │ │ │ │ │ ├── BackgroundPosition.php │ │ │ │ │ ├── Border.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── Composite.php │ │ │ │ │ ├── DenyElementDecorator.php │ │ │ │ │ ├── Filter.php │ │ │ │ │ ├── Font.php │ │ │ │ │ ├── FontFamily.php │ │ │ │ │ ├── Ident.php │ │ │ │ │ ├── ImportantDecorator.php │ │ │ │ │ ├── Length.php │ │ │ │ │ ├── ListStyle.php │ │ │ │ │ ├── Multiple.php │ │ │ │ │ ├── Number.php │ │ │ │ │ ├── Percentage.php │ │ │ │ │ ├── TextDecoration.php │ │ │ │ │ └── URI.php │ │ │ │ ├── Clone.php │ │ │ │ ├── Enum.php │ │ │ │ ├── HTML │ │ │ │ │ ├── Bool.php │ │ │ │ │ ├── Class.php │ │ │ │ │ ├── Color.php │ │ │ │ │ ├── FrameTarget.php │ │ │ │ │ ├── ID.php │ │ │ │ │ ├── Length.php │ │ │ │ │ ├── LinkTypes.php │ │ │ │ │ ├── MultiLength.php │ │ │ │ │ ├── Nmtokens.php │ │ │ │ │ └── Pixels.php │ │ │ │ ├── Integer.php │ │ │ │ ├── Lang.php │ │ │ │ ├── Switch.php │ │ │ │ ├── Text.php │ │ │ │ ├── URI.php │ │ │ │ └── URI │ │ │ │ │ ├── Email.php │ │ │ │ │ ├── Email │ │ │ │ │ └── SimpleCheck.php │ │ │ │ │ ├── Host.php │ │ │ │ │ ├── IPv4.php │ │ │ │ │ └── IPv6.php │ │ │ ├── AttrTransform.php │ │ │ ├── AttrTransform │ │ │ │ ├── Background.php │ │ │ │ ├── BdoDir.php │ │ │ │ ├── BgColor.php │ │ │ │ ├── BoolToCSS.php │ │ │ │ ├── Border.php │ │ │ │ ├── EnumToCSS.php │ │ │ │ ├── ImgRequired.php │ │ │ │ ├── ImgSpace.php │ │ │ │ ├── Input.php │ │ │ │ ├── Lang.php │ │ │ │ ├── Length.php │ │ │ │ ├── Name.php │ │ │ │ ├── NameSync.php │ │ │ │ ├── Nofollow.php │ │ │ │ ├── SafeEmbed.php │ │ │ │ ├── SafeObject.php │ │ │ │ ├── SafeParam.php │ │ │ │ ├── ScriptRequired.php │ │ │ │ ├── TargetBlank.php │ │ │ │ ├── TargetNoopener.php │ │ │ │ ├── TargetNoreferrer.php │ │ │ │ └── Textarea.php │ │ │ ├── AttrTypes.php │ │ │ ├── AttrValidator.php │ │ │ ├── Bootstrap.php │ │ │ ├── CSSDefinition.php │ │ │ ├── ChildDef.php │ │ │ ├── ChildDef │ │ │ │ ├── Chameleon.php │ │ │ │ ├── Custom.php │ │ │ │ ├── Empty.php │ │ │ │ ├── List.php │ │ │ │ ├── Optional.php │ │ │ │ ├── Required.php │ │ │ │ ├── StrictBlockquote.php │ │ │ │ └── Table.php │ │ │ ├── Config.php │ │ │ ├── ConfigSchema.php │ │ │ ├── ConfigSchema │ │ │ │ ├── Builder │ │ │ │ │ ├── ConfigSchema.php │ │ │ │ │ └── Xml.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Interchange.php │ │ │ │ ├── Interchange │ │ │ │ │ ├── Directive.php │ │ │ │ │ └── Id.php │ │ │ │ ├── InterchangeBuilder.php │ │ │ │ ├── Validator.php │ │ │ │ ├── ValidatorAtom.php │ │ │ │ ├── schema.ser │ │ │ │ └── schema │ │ │ │ │ ├── Attr.AllowedClasses.txt │ │ │ │ │ ├── Attr.AllowedFrameTargets.txt │ │ │ │ │ ├── Attr.AllowedRel.txt │ │ │ │ │ ├── Attr.AllowedRev.txt │ │ │ │ │ ├── Attr.ClassUseCDATA.txt │ │ │ │ │ ├── Attr.DefaultImageAlt.txt │ │ │ │ │ ├── Attr.DefaultInvalidImage.txt │ │ │ │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ │ │ │ ├── Attr.DefaultTextDir.txt │ │ │ │ │ ├── Attr.EnableID.txt │ │ │ │ │ ├── Attr.ForbiddenClasses.txt │ │ │ │ │ ├── Attr.ID.HTML5.txt │ │ │ │ │ ├── Attr.IDBlacklist.txt │ │ │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ │ │ ├── Attr.IDPrefix.txt │ │ │ │ │ ├── Attr.IDPrefixLocal.txt │ │ │ │ │ ├── AutoFormat.AutoParagraph.txt │ │ │ │ │ ├── AutoFormat.Custom.txt │ │ │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ │ │ ├── AutoFormat.Linkify.txt │ │ │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ │ │ ├── AutoFormat.RemoveEmpty.Predicate.txt │ │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt │ │ │ │ │ ├── AutoFormat.RemoveEmpty.txt │ │ │ │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt │ │ │ │ │ ├── CSS.AllowDuplicates.txt │ │ │ │ │ ├── CSS.AllowImportant.txt │ │ │ │ │ ├── CSS.AllowTricky.txt │ │ │ │ │ ├── CSS.AllowedFonts.txt │ │ │ │ │ ├── CSS.AllowedProperties.txt │ │ │ │ │ ├── CSS.DefinitionRev.txt │ │ │ │ │ ├── CSS.ForbiddenProperties.txt │ │ │ │ │ ├── CSS.MaxImgLength.txt │ │ │ │ │ ├── CSS.Proprietary.txt │ │ │ │ │ ├── CSS.Trusted.txt │ │ │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ │ │ ├── Cache.SerializerPath.txt │ │ │ │ │ ├── Cache.SerializerPermissions.txt │ │ │ │ │ ├── Core.AggressivelyFixLt.txt │ │ │ │ │ ├── Core.AggressivelyRemoveScript.txt │ │ │ │ │ ├── Core.AllowHostnameUnderscore.txt │ │ │ │ │ ├── Core.AllowParseManyTags.txt │ │ │ │ │ ├── Core.CollectErrors.txt │ │ │ │ │ ├── Core.ColorKeywords.txt │ │ │ │ │ ├── Core.ConvertDocumentToFragment.txt │ │ │ │ │ ├── Core.DirectLexLineNumberSyncInterval.txt │ │ │ │ │ ├── Core.DisableExcludes.txt │ │ │ │ │ ├── Core.EnableIDNA.txt │ │ │ │ │ ├── Core.Encoding.txt │ │ │ │ │ ├── Core.EscapeInvalidChildren.txt │ │ │ │ │ ├── Core.EscapeInvalidTags.txt │ │ │ │ │ ├── Core.EscapeNonASCIICharacters.txt │ │ │ │ │ ├── Core.HiddenElements.txt │ │ │ │ │ ├── Core.Language.txt │ │ │ │ │ ├── Core.LegacyEntityDecoder.txt │ │ │ │ │ ├── Core.LexerImpl.txt │ │ │ │ │ ├── Core.MaintainLineNumbers.txt │ │ │ │ │ ├── Core.NormalizeNewlines.txt │ │ │ │ │ ├── Core.RemoveInvalidImg.txt │ │ │ │ │ ├── Core.RemoveProcessingInstructions.txt │ │ │ │ │ ├── Core.RemoveScriptContents.txt │ │ │ │ │ ├── Filter.Custom.txt │ │ │ │ │ ├── Filter.ExtractStyleBlocks.Escaping.txt │ │ │ │ │ ├── Filter.ExtractStyleBlocks.Scope.txt │ │ │ │ │ ├── Filter.ExtractStyleBlocks.TidyImpl.txt │ │ │ │ │ ├── Filter.ExtractStyleBlocks.txt │ │ │ │ │ ├── Filter.YouTube.txt │ │ │ │ │ ├── HTML.Allowed.txt │ │ │ │ │ ├── HTML.AllowedAttributes.txt │ │ │ │ │ ├── HTML.AllowedComments.txt │ │ │ │ │ ├── HTML.AllowedCommentsRegexp.txt │ │ │ │ │ ├── HTML.AllowedElements.txt │ │ │ │ │ ├── HTML.AllowedModules.txt │ │ │ │ │ ├── HTML.Attr.Name.UseCDATA.txt │ │ │ │ │ ├── HTML.BlockWrapper.txt │ │ │ │ │ ├── HTML.CoreModules.txt │ │ │ │ │ ├── HTML.CustomDoctype.txt │ │ │ │ │ ├── HTML.DefinitionID.txt │ │ │ │ │ ├── HTML.DefinitionRev.txt │ │ │ │ │ ├── HTML.Doctype.txt │ │ │ │ │ ├── HTML.FlashAllowFullScreen.txt │ │ │ │ │ ├── HTML.ForbiddenAttributes.txt │ │ │ │ │ ├── HTML.ForbiddenElements.txt │ │ │ │ │ ├── HTML.Forms.txt │ │ │ │ │ ├── HTML.MaxImgLength.txt │ │ │ │ │ ├── HTML.Nofollow.txt │ │ │ │ │ ├── HTML.Parent.txt │ │ │ │ │ ├── HTML.Proprietary.txt │ │ │ │ │ ├── HTML.SafeEmbed.txt │ │ │ │ │ ├── HTML.SafeIframe.txt │ │ │ │ │ ├── HTML.SafeObject.txt │ │ │ │ │ ├── HTML.SafeScripting.txt │ │ │ │ │ ├── HTML.Strict.txt │ │ │ │ │ ├── HTML.TargetBlank.txt │ │ │ │ │ ├── HTML.TargetNoopener.txt │ │ │ │ │ ├── HTML.TargetNoreferrer.txt │ │ │ │ │ ├── HTML.TidyAdd.txt │ │ │ │ │ ├── HTML.TidyLevel.txt │ │ │ │ │ ├── HTML.TidyRemove.txt │ │ │ │ │ ├── HTML.Trusted.txt │ │ │ │ │ ├── HTML.XHTML.txt │ │ │ │ │ ├── Output.CommentScriptContents.txt │ │ │ │ │ ├── Output.FixInnerHTML.txt │ │ │ │ │ ├── Output.FlashCompat.txt │ │ │ │ │ ├── Output.Newline.txt │ │ │ │ │ ├── Output.SortAttr.txt │ │ │ │ │ ├── Output.TidyFormat.txt │ │ │ │ │ ├── Test.ForceNoIconv.txt │ │ │ │ │ ├── URI.AllowedSchemes.txt │ │ │ │ │ ├── URI.Base.txt │ │ │ │ │ ├── URI.DefaultScheme.txt │ │ │ │ │ ├── URI.DefinitionID.txt │ │ │ │ │ ├── URI.DefinitionRev.txt │ │ │ │ │ ├── URI.Disable.txt │ │ │ │ │ ├── URI.DisableExternal.txt │ │ │ │ │ ├── URI.DisableExternalResources.txt │ │ │ │ │ ├── URI.DisableResources.txt │ │ │ │ │ ├── URI.Host.txt │ │ │ │ │ ├── URI.HostBlacklist.txt │ │ │ │ │ ├── URI.MakeAbsolute.txt │ │ │ │ │ ├── URI.Munge.txt │ │ │ │ │ ├── URI.MungeResources.txt │ │ │ │ │ ├── URI.MungeSecretKey.txt │ │ │ │ │ ├── URI.OverrideAllowedSchemes.txt │ │ │ │ │ ├── URI.SafeIframeRegexp.txt │ │ │ │ │ └── info.ini │ │ │ ├── ContentSets.php │ │ │ ├── Context.php │ │ │ ├── Definition.php │ │ │ ├── DefinitionCache.php │ │ │ ├── DefinitionCache │ │ │ │ ├── Decorator.php │ │ │ │ ├── Decorator │ │ │ │ │ ├── Cleanup.php │ │ │ │ │ ├── Memory.php │ │ │ │ │ └── Template.php.in │ │ │ │ ├── Null.php │ │ │ │ ├── Serializer.php │ │ │ │ └── Serializer │ │ │ │ │ └── README │ │ │ ├── DefinitionCacheFactory.php │ │ │ ├── Doctype.php │ │ │ ├── DoctypeRegistry.php │ │ │ ├── ElementDef.php │ │ │ ├── Encoder.php │ │ │ ├── EntityLookup.php │ │ │ ├── EntityLookup │ │ │ │ └── entities.ser │ │ │ ├── EntityParser.php │ │ │ ├── ErrorCollector.php │ │ │ ├── ErrorStruct.php │ │ │ ├── Exception.php │ │ │ ├── Filter.php │ │ │ ├── Filter │ │ │ │ ├── ExtractStyleBlocks.php │ │ │ │ └── YouTube.php │ │ │ ├── Generator.php │ │ │ ├── HTMLDefinition.php │ │ │ ├── HTMLModule.php │ │ │ ├── HTMLModule │ │ │ │ ├── Bdo.php │ │ │ │ ├── CommonAttributes.php │ │ │ │ ├── Edit.php │ │ │ │ ├── Forms.php │ │ │ │ ├── Hypertext.php │ │ │ │ ├── Iframe.php │ │ │ │ ├── Image.php │ │ │ │ ├── Legacy.php │ │ │ │ ├── List.php │ │ │ │ ├── Name.php │ │ │ │ ├── Nofollow.php │ │ │ │ ├── NonXMLCommonAttributes.php │ │ │ │ ├── Object.php │ │ │ │ ├── Presentation.php │ │ │ │ ├── Proprietary.php │ │ │ │ ├── Ruby.php │ │ │ │ ├── SafeEmbed.php │ │ │ │ ├── SafeObject.php │ │ │ │ ├── SafeScripting.php │ │ │ │ ├── Scripting.php │ │ │ │ ├── StyleAttribute.php │ │ │ │ ├── Tables.php │ │ │ │ ├── Target.php │ │ │ │ ├── TargetBlank.php │ │ │ │ ├── TargetNoopener.php │ │ │ │ ├── TargetNoreferrer.php │ │ │ │ ├── Text.php │ │ │ │ ├── Tidy.php │ │ │ │ ├── Tidy │ │ │ │ │ ├── Name.php │ │ │ │ │ ├── Proprietary.php │ │ │ │ │ ├── Strict.php │ │ │ │ │ ├── Transitional.php │ │ │ │ │ ├── XHTML.php │ │ │ │ │ └── XHTMLAndHTML4.php │ │ │ │ └── XMLCommonAttributes.php │ │ │ ├── HTMLModuleManager.php │ │ │ ├── IDAccumulator.php │ │ │ ├── Injector.php │ │ │ ├── Injector │ │ │ │ ├── AutoParagraph.php │ │ │ │ ├── DisplayLinkURI.php │ │ │ │ ├── Linkify.php │ │ │ │ ├── PurifierLinkify.php │ │ │ │ ├── RemoveEmpty.php │ │ │ │ ├── RemoveSpansWithoutAttributes.php │ │ │ │ └── SafeObject.php │ │ │ ├── Language.php │ │ │ ├── Language │ │ │ │ ├── classes │ │ │ │ │ └── en-x-test.php │ │ │ │ └── messages │ │ │ │ │ ├── en-x-test.php │ │ │ │ │ ├── en-x-testmini.php │ │ │ │ │ └── en.php │ │ │ ├── LanguageFactory.php │ │ │ ├── Length.php │ │ │ ├── Lexer.php │ │ │ ├── Lexer │ │ │ │ ├── DOMLex.php │ │ │ │ ├── DirectLex.php │ │ │ │ └── PH5P.php │ │ │ ├── Node.php │ │ │ ├── Node │ │ │ │ ├── Comment.php │ │ │ │ ├── Element.php │ │ │ │ └── Text.php │ │ │ ├── PercentEncoder.php │ │ │ ├── Printer.php │ │ │ ├── Printer │ │ │ │ ├── CSSDefinition.php │ │ │ │ ├── ConfigForm.css │ │ │ │ ├── ConfigForm.js │ │ │ │ ├── ConfigForm.php │ │ │ │ └── HTMLDefinition.php │ │ │ ├── PropertyList.php │ │ │ ├── PropertyListIterator.php │ │ │ ├── Queue.php │ │ │ ├── Strategy.php │ │ │ ├── Strategy │ │ │ │ ├── Composite.php │ │ │ │ ├── Core.php │ │ │ │ ├── FixNesting.php │ │ │ │ ├── MakeWellFormed.php │ │ │ │ ├── RemoveForeignElements.php │ │ │ │ └── ValidateAttributes.php │ │ │ ├── StringHash.php │ │ │ ├── StringHashParser.php │ │ │ ├── TagTransform.php │ │ │ ├── TagTransform │ │ │ │ ├── Font.php │ │ │ │ └── Simple.php │ │ │ ├── Token.php │ │ │ ├── Token │ │ │ │ ├── Comment.php │ │ │ │ ├── Empty.php │ │ │ │ ├── End.php │ │ │ │ ├── Start.php │ │ │ │ ├── Tag.php │ │ │ │ └── Text.php │ │ │ ├── TokenFactory.php │ │ │ ├── URI.php │ │ │ ├── URIDefinition.php │ │ │ ├── URIFilter.php │ │ │ ├── URIFilter │ │ │ │ ├── DisableExternal.php │ │ │ │ ├── DisableExternalResources.php │ │ │ │ ├── DisableResources.php │ │ │ │ ├── HostBlacklist.php │ │ │ │ ├── MakeAbsolute.php │ │ │ │ ├── Munge.php │ │ │ │ └── SafeIframe.php │ │ │ ├── URIParser.php │ │ │ ├── URIScheme.php │ │ │ ├── URIScheme │ │ │ │ ├── data.php │ │ │ │ ├── file.php │ │ │ │ ├── ftp.php │ │ │ │ ├── http.php │ │ │ │ ├── https.php │ │ │ │ ├── mailto.php │ │ │ │ ├── news.php │ │ │ │ ├── nntp.php │ │ │ │ └── tel.php │ │ │ ├── URISchemeRegistry.php │ │ │ ├── UnitConverter.php │ │ │ ├── VarParser.php │ │ │ ├── VarParser │ │ │ │ ├── Flexible.php │ │ │ │ └── Native.php │ │ │ ├── VarParserException.php │ │ │ └── Zipper.php │ │ └── purifier.class.php │ ├── qrcode │ │ └── qrcode.class.php │ ├── requests │ │ ├── Requests │ │ │ ├── Auth.php │ │ │ ├── Auth │ │ │ │ └── Basic.php │ │ │ ├── Cookie.php │ │ │ ├── Cookie │ │ │ │ └── Jar.php │ │ │ ├── Exception.php │ │ │ ├── Exception │ │ │ │ ├── HTTP.php │ │ │ │ ├── HTTP │ │ │ │ │ ├── 304.php │ │ │ │ │ ├── 305.php │ │ │ │ │ ├── 306.php │ │ │ │ │ ├── 400.php │ │ │ │ │ ├── 401.php │ │ │ │ │ ├── 402.php │ │ │ │ │ ├── 403.php │ │ │ │ │ ├── 404.php │ │ │ │ │ ├── 405.php │ │ │ │ │ ├── 406.php │ │ │ │ │ ├── 407.php │ │ │ │ │ ├── 408.php │ │ │ │ │ ├── 409.php │ │ │ │ │ ├── 410.php │ │ │ │ │ ├── 411.php │ │ │ │ │ ├── 412.php │ │ │ │ │ ├── 413.php │ │ │ │ │ ├── 414.php │ │ │ │ │ ├── 415.php │ │ │ │ │ ├── 416.php │ │ │ │ │ ├── 417.php │ │ │ │ │ ├── 418.php │ │ │ │ │ ├── 428.php │ │ │ │ │ ├── 429.php │ │ │ │ │ ├── 431.php │ │ │ │ │ ├── 500.php │ │ │ │ │ ├── 501.php │ │ │ │ │ ├── 502.php │ │ │ │ │ ├── 503.php │ │ │ │ │ ├── 504.php │ │ │ │ │ ├── 505.php │ │ │ │ │ ├── 511.php │ │ │ │ │ └── Unknown.php │ │ │ │ ├── Transport.php │ │ │ │ └── Transport │ │ │ │ │ └── cURL.php │ │ │ ├── Hooker.php │ │ │ ├── Hooks.php │ │ │ ├── IDNAEncoder.php │ │ │ ├── IPv6.php │ │ │ ├── IRI.php │ │ │ ├── Proxy.php │ │ │ ├── Proxy │ │ │ │ └── HTTP.php │ │ │ ├── Response.php │ │ │ ├── Response │ │ │ │ └── Headers.php │ │ │ ├── SSL.php │ │ │ ├── Session.php │ │ │ ├── Transport.php │ │ │ ├── Transport │ │ │ │ ├── cURL.php │ │ │ │ ├── cacert.pem │ │ │ │ └── fsockopen.php │ │ │ └── Utility │ │ │ │ ├── CaseInsensitiveDictionary.php │ │ │ │ └── FilteredIterator.php │ │ ├── loader.php │ │ └── requests.class.php │ ├── scm │ │ ├── config.php │ │ ├── gitlab.class.php │ │ ├── gitrepo.class.php │ │ ├── scm.class.php │ │ ├── scmTest.php │ │ └── subversion.class.php │ ├── sendcloud │ │ └── sendcloud.class.php │ ├── snoopy │ │ ├── AUTHORS │ │ ├── COPYING.lib │ │ ├── ChangeLog │ │ ├── FAQ │ │ ├── INSTALL │ │ ├── NEWS │ │ ├── README │ │ ├── TODO │ │ └── snoopy.class.php │ ├── spliter │ │ └── spliter.class.php │ ├── spyc │ │ ├── COPYING │ │ └── spyc.class.php │ ├── ubb │ │ └── ubb.class.php │ ├── wechatapi │ │ └── wechatapi.class.php │ ├── zdb │ │ └── zdb.class.php │ ├── zfile │ │ └── zfile.class.php │ └── ztcloud │ │ └── ztcloud.class.php ├── module │ ├── action │ │ ├── config.php │ │ ├── lang │ │ │ └── zh-cn.php │ │ └── model.php │ ├── admin │ │ ├── config.php │ │ ├── control.php │ │ ├── css │ │ │ └── init.css │ │ ├── lang │ │ │ └── zh-cn.php │ │ ├── model.php │ │ └── view │ │ │ ├── index.html.php │ │ │ └── init.html.php │ ├── backup │ │ ├── config.php │ │ ├── control.php │ │ ├── css │ │ │ ├── index.css │ │ │ ├── index.zh-cn.css │ │ │ └── setting.css │ │ ├── js │ │ │ ├── index.js │ │ │ └── setting.js │ │ ├── lang │ │ │ └── zh-cn.php │ │ ├── model.php │ │ └── view │ │ │ ├── index.html.php │ │ │ └── setting.html.php │ ├── cne │ │ ├── lang │ │ │ └── zh-cn.php │ │ └── model.php │ ├── common │ │ ├── lang │ │ │ ├── common.php │ │ │ ├── menu.php │ │ │ └── zh-cn.php │ │ ├── model.php │ │ └── view │ │ │ ├── action.html.php │ │ │ ├── carousel.html.php │ │ │ ├── chart.html.php │ │ │ ├── chosen.html.php │ │ │ ├── customfield.html.php │ │ │ ├── datatable.fix.html.php │ │ │ ├── datatable.html.php │ │ │ ├── datepicker.html.php │ │ │ ├── footer.html.php │ │ │ ├── footer.lite.html.php │ │ │ ├── form.html.php │ │ │ ├── gantt.html.php │ │ │ ├── header.html.php │ │ │ ├── header.lite.html.php │ │ │ ├── kindeditor.html.php │ │ │ ├── mail.footer.html.php │ │ │ ├── mail.header.html.php │ │ │ ├── markdown.html.php │ │ │ ├── noticeimport.html.php │ │ │ ├── pastetext.html.php │ │ │ ├── querymenu.html.php │ │ │ ├── sortable.html.php │ │ │ ├── sparkline.html.php │ │ │ ├── syntaxhighlighter.html.php │ │ │ ├── tablesorter.html.php │ │ │ ├── treetable.html.php │ │ │ ├── validation.html.php │ │ │ └── ztree.html.php │ ├── company │ │ ├── config.php │ │ ├── lang │ │ │ └── zh-cn.php │ │ └── model.php │ ├── custom │ │ ├── config.php │ │ ├── lang │ │ │ └── zh-cn.php │ │ └── model.php │ ├── entry │ │ ├── config.php │ │ ├── control.php │ │ ├── css │ │ │ ├── browse.css │ │ │ ├── create.css │ │ │ ├── edit.css │ │ │ └── log.css │ │ ├── js │ │ │ ├── create.js │ │ │ └── edit.js │ │ ├── lang │ │ │ └── zh-cn.php │ │ ├── model.php │ │ └── view │ │ │ ├── browse.html.php │ │ │ ├── create.html.php │ │ │ ├── edit.html.php │ │ │ ├── header.html.php │ │ │ └── log.html.php │ ├── file │ │ ├── config.php │ │ ├── control.php │ │ ├── lang │ │ │ └── zh-cn.php │ │ ├── model.php │ │ └── view │ │ │ ├── buildexporttpl.html.php │ │ │ ├── buildform.html.php │ │ │ ├── download.html.php │ │ │ ├── edit.html.php │ │ │ ├── export.html.php │ │ │ ├── export2csv.html.php │ │ │ ├── export2html.html.php │ │ │ ├── export2xml.html.php │ │ │ ├── printfiles.html.php │ │ │ └── uploadimages.html.php │ ├── index │ │ ├── control.php │ │ ├── css │ │ │ └── index.css │ │ ├── js │ │ │ └── index.js │ │ ├── lang │ │ │ └── zh-cn.php │ │ └── view │ │ │ └── index.html.php │ ├── instance │ │ ├── config.php │ │ ├── control.php │ │ ├── css │ │ │ ├── backupsettings.css │ │ │ ├── install.css │ │ │ ├── upgrade.css │ │ │ └── view.css │ │ ├── js │ │ │ ├── backupsettings.js │ │ │ ├── custominstall.js │ │ │ ├── install.js │ │ │ ├── restoresettings.js │ │ │ ├── tosenior.js │ │ │ ├── upgrade.js │ │ │ └── view.js │ │ ├── lang │ │ │ └── zh-cn.php │ │ ├── model.php │ │ └── view │ │ │ ├── advance.html.php │ │ │ ├── backup.html.php │ │ │ ├── backupsettings.html.php │ │ │ ├── baseinfo.html.php │ │ │ ├── custominstall.html.php │ │ │ ├── editname.html.php │ │ │ ├── install.html.php │ │ │ ├── resourceerror.html.php │ │ │ ├── restoresettings.html.php │ │ │ ├── tosenior.html.php │ │ │ ├── upgrade.html.php │ │ │ └── view.html.php │ ├── misc │ │ ├── control.php │ │ ├── css │ │ │ └── about.css │ │ ├── lang │ │ │ └── zh-cn.php │ │ └── view │ │ │ └── about.html.php │ ├── my │ │ ├── config.php │ │ ├── control.php │ │ ├── css │ │ │ ├── changepassword.zh-cn.css │ │ │ ├── common.css │ │ │ ├── doc.css │ │ │ ├── dynamic.css │ │ │ ├── editprofile.css │ │ │ ├── guidechangetheme.css │ │ │ ├── index.css │ │ │ ├── managecontacts.css │ │ │ ├── profile.css │ │ │ ├── profile.zh-cn.css │ │ │ ├── requirement.css │ │ │ ├── score.css │ │ │ ├── team.css │ │ │ └── todo.css │ │ ├── js │ │ │ ├── changepassword.js │ │ │ ├── common.js │ │ │ ├── doc.js │ │ │ ├── editprofile.js │ │ │ ├── index.js │ │ │ ├── managecontacts.js │ │ │ ├── profile.js │ │ │ └── requirement.js │ │ ├── lang │ │ │ └── zh-cn.php │ │ └── view │ │ │ ├── changepassword.html.php │ │ │ ├── dynamic.html.php │ │ │ ├── editprofile.html.php │ │ │ ├── index.html.php │ │ │ ├── instancesblock.html.php │ │ │ ├── overviewblock.html.php │ │ │ └── profile.html.php │ ├── navigation │ │ ├── control.php │ │ ├── css │ │ │ ├── browse.css │ │ │ ├── configure.css │ │ │ ├── create.css │ │ │ ├── edit.css │ │ │ └── settings.css │ │ ├── js │ │ │ ├── browse.js │ │ │ ├── configure.js │ │ │ ├── create.js │ │ │ ├── edit.js │ │ │ └── settings.js │ │ ├── lang │ │ │ └── zh-cn.php │ │ ├── model.php │ │ └── view │ │ │ ├── ajaxgetpinnedinstance.html.php │ │ │ ├── browse.html.php │ │ │ ├── configure.html.php │ │ │ ├── create.html.php │ │ │ ├── edit.html.php │ │ │ └── settings.html.php │ ├── setting │ │ └── model.php │ ├── solution │ │ ├── config.php │ │ ├── control.php │ │ ├── css │ │ │ ├── browse.css │ │ │ ├── browsemarket.css │ │ │ ├── common.css │ │ │ ├── install.css │ │ │ ├── progress.css │ │ │ ├── view.css │ │ │ └── viewmarket.css │ │ ├── js │ │ │ ├── install.js │ │ │ ├── progress.js │ │ │ └── view.js │ │ ├── lang │ │ │ └── zh-cn.php │ │ ├── model.php │ │ └── view │ │ │ ├── browse.html.php │ │ │ ├── browsemarket.html.php │ │ │ ├── editname.html.php │ │ │ ├── install.html.php │ │ │ ├── progress.html.php │ │ │ ├── view.html.php │ │ │ └── viewmarket.html.php │ ├── space │ │ ├── control.php │ │ ├── css │ │ │ └── browse.css │ │ ├── js │ │ │ ├── browse.js │ │ │ └── common.js │ │ ├── lang │ │ │ └── zh-cn.php │ │ ├── model.php │ │ └── view │ │ │ ├── ajaxgetdropmenu.html.php │ │ │ ├── browse.html.php │ │ │ ├── browsebycard.html.php │ │ │ └── browsebylist.html.php │ ├── store │ │ ├── config.php │ │ ├── control.php │ │ ├── css │ │ │ ├── appview.css │ │ │ └── browse.css │ │ ├── js │ │ │ └── browse.js │ │ ├── lang │ │ │ └── zh-cn.php │ │ ├── model.php │ │ └── view │ │ │ ├── appview.html.php │ │ │ └── browse.html.php │ ├── system │ │ ├── control.php │ │ ├── css │ │ │ ├── dblist.css │ │ │ ├── editdomain.css │ │ │ ├── editldap.css │ │ │ ├── index.css │ │ │ ├── installldap.css │ │ │ ├── installsmtp.css │ │ │ ├── ldapview.css │ │ │ ├── ossview.css │ │ │ └── smtpview.css │ │ ├── js │ │ │ ├── dblist.js │ │ │ ├── editdomain.js │ │ │ ├── editldap.js │ │ │ ├── editslb.js │ │ │ ├── editsmtp.js │ │ │ ├── installldap.js │ │ │ ├── installsmtp.js │ │ │ ├── ldapview.js │ │ │ ├── ossview.js │ │ │ └── smtpview.js │ │ ├── lang │ │ │ └── zh-cn.php │ │ ├── model.php │ │ └── view │ │ │ ├── dblist.html.php │ │ │ ├── domainview.html.php │ │ │ ├── editdomain.html.php │ │ │ ├── editldap.html.php │ │ │ ├── editslb.html.php │ │ │ ├── editsmtp.html.php │ │ │ ├── index.html.php │ │ │ ├── installldap.html.php │ │ │ ├── installsmtp.html.php │ │ │ ├── ldapform.html.php │ │ │ ├── ldapview.html.php │ │ │ ├── ossview.html.php │ │ │ ├── slbview.html.php │ │ │ ├── smtpform.html.php │ │ │ └── smtpview.html.php │ ├── upgrade │ │ ├── config.php │ │ ├── lang │ │ │ ├── version.php │ │ │ └── zh-cn.php │ │ └── model.php │ └── user │ │ ├── config.php │ │ ├── control.php │ │ ├── css │ │ ├── batchcreate.css │ │ ├── batchcreate.en.css │ │ ├── batchcreate.vi.css │ │ ├── batchcreate.zh-cn.css │ │ ├── batchcreate.zh-tw.css │ │ ├── batchedit.css │ │ ├── common.css │ │ ├── create.css │ │ ├── deny.css │ │ ├── dynamic.css │ │ ├── edit.css │ │ ├── login.css │ │ ├── managecontacts.css │ │ ├── profile.css │ │ ├── profile.en.css │ │ ├── profile.vi.css │ │ ├── profile.zh-cn.css │ │ ├── profile.zh-tw.css │ │ ├── reset.css │ │ └── task.css │ │ ├── js │ │ ├── batchcreate.js │ │ ├── batchedit.js │ │ ├── common.js │ │ ├── create.js │ │ ├── edit.js │ │ ├── login.js │ │ ├── reset.js │ │ └── todo.js │ │ ├── lang │ │ └── zh-cn.php │ │ ├── model.php │ │ └── view │ │ ├── ajaxprinttemplates.html.php │ │ ├── batchcreate.html.php │ │ ├── batchedit.html.php │ │ ├── create.html.php │ │ ├── cropavatar.html.php │ │ ├── delete.html.php │ │ ├── deny.html.php │ │ ├── dynamic.html.php │ │ ├── edit.html.php │ │ ├── featurebar.html.php │ │ ├── issue.html.php │ │ ├── login.html.php │ │ ├── profile.html.php │ │ └── reset.html.php ├── test │ ├── class │ │ ├── company.class.php │ │ ├── store.class.php │ │ └── user.class.php │ ├── config │ │ └── config.php │ ├── data │ │ ├── action.yaml │ │ ├── common │ │ │ ├── color │ │ │ │ └── v1.yaml │ │ │ ├── date │ │ │ │ └── v1.yaml │ │ │ ├── file │ │ │ │ └── v1.yaml │ │ │ ├── groups │ │ │ │ └── v1.yaml │ │ │ ├── ip │ │ │ │ └── v1.yaml │ │ │ ├── phone │ │ │ │ └── v1.yaml │ │ │ ├── user │ │ │ │ └── v1.yaml │ │ │ └── version │ │ │ │ └── v1.yaml │ │ ├── company.yaml │ │ ├── sql │ │ │ ├── 001_company.sql │ │ │ └── 002_user.sql │ │ ├── user.yaml │ │ └── zentao │ │ │ ├── blockdefault.yaml │ │ │ ├── blockrandom.yaml │ │ │ ├── config.php │ │ │ └── processor.php │ ├── lib │ │ ├── controlapi.php │ │ ├── db.class.php │ │ ├── init.php │ │ ├── initapi.php │ │ ├── rest.php │ │ ├── spyc.php │ │ ├── utils.php │ │ └── yaml.class.php │ ├── model │ │ ├── store │ │ │ └── getappinfo.php │ │ └── user │ │ │ ├── authorize.php │ │ │ ├── checkpassword.php │ │ │ ├── getbyid.php │ │ │ └── resetpassword.php │ ├── runtime │ │ ├── .zd.conf │ │ ├── conf │ │ │ └── ztf.conf │ │ ├── data │ │ │ ├── address │ │ │ │ └── cn.v1.xlsx │ │ │ ├── color │ │ │ │ └── v1.xlsx │ │ │ ├── country │ │ │ │ └── v1.xlsx │ │ │ ├── name │ │ │ │ ├── cn.family.v1.xlsx │ │ │ │ ├── cn.given.v1.xlsx │ │ │ │ ├── en.family.v1.xlsx │ │ │ │ └── en.given.v1.xlsx │ │ │ └── words │ │ │ │ └── v1 │ │ │ │ ├── ф╗ЛшпНшпНх║У.xlsx │ │ │ │ ├── ф╗гшпНшпНх║У.xlsx │ │ │ │ ├── хЙпшпНшпНх║У.xlsx │ │ │ │ ├── хКишпНшпНх║У.xlsx │ │ │ │ ├── хКйшпНшпНх║У.xlsx │ │ │ │ ├── хРНшпНшпНх║У.xlsx │ │ │ │ ├── х╜вхо╣шпНхБЪш░Ушпн.xlsx │ │ │ │ ├── цХ░шпНшпНх║У.xlsx │ │ │ │ ├── ш┐ЮшпНшпНх║У.xlsx │ │ │ │ └── щЗПшпНшпНх║У.xlsx │ │ ├── demo │ │ │ ├── 01_range.yaml │ │ │ ├── 02_fix.yaml │ │ │ ├── 03_more_fields.yaml │ │ │ ├── 04_rand.yaml │ │ │ ├── 05_loop.yaml │ │ │ ├── 06_from_file.yaml │ │ │ ├── 07_nest.yaml │ │ │ ├── 08_format.yaml │ │ │ ├── 09_length.yaml │ │ │ ├── 10_brace.yaml │ │ │ ├── 11_loop_m_n.yaml │ │ │ ├── 12_function.yaml │ │ │ ├── 13_value.yaml │ │ │ ├── 14_config.yaml │ │ │ ├── 15_from_range.yaml │ │ │ ├── 16_from_instance.yaml │ │ │ ├── 17_nest_recursive.yaml │ │ │ ├── 18_multi_from.yaml │ │ │ ├── 19_from_excel.yaml │ │ │ ├── 20_use_results.yaml │ │ │ ├── 21_override.yaml │ │ │ ├── 22_color.yaml │ │ │ ├── 23_country.yaml │ │ │ ├── 24_domain.yaml │ │ │ ├── 25_email.yaml │ │ │ ├── 26_ip.yaml │ │ │ ├── 27_name.yaml │ │ │ ├── 28_datetime.yaml │ │ │ ├── 29_uuid.yaml │ │ │ ├── 30_article.yaml │ │ │ ├── advanced.yaml │ │ │ ├── config.yaml │ │ │ ├── default.yaml │ │ │ ├── multi.yaml │ │ │ ├── number.yaml │ │ │ ├── output │ │ │ │ └── _test02.csv │ │ │ ├── t.yaml │ │ │ ├── tables.sql │ │ │ ├── user.txt │ │ │ └── zentao.sql │ │ ├── log │ │ │ ├── 001 │ │ │ │ ├── err.txt │ │ │ │ ├── log.txt │ │ │ │ ├── result.json │ │ │ │ └── result.txt │ │ │ ├── 002 │ │ │ │ ├── err.txt │ │ │ │ ├── log.txt │ │ │ │ ├── result.json │ │ │ │ └── result.txt │ │ │ ├── 003 │ │ │ │ ├── err.txt │ │ │ │ ├── log.txt │ │ │ │ ├── result.json │ │ │ │ └── result.txt │ │ │ └── bak │ │ │ │ ├── 001 │ │ │ │ ├── err.txt │ │ │ │ ├── log.txt │ │ │ │ ├── result.json │ │ │ │ └── result.txt │ │ │ │ ├── 002 │ │ │ │ ├── log.txt │ │ │ │ ├── result.json │ │ │ │ └── result.txt │ │ │ │ ├── 003 │ │ │ │ ├── log.txt │ │ │ │ ├── result.json │ │ │ │ └── result.txt │ │ │ │ ├── 004 │ │ │ │ ├── log.txt │ │ │ │ ├── result.json │ │ │ │ └── result.txt │ │ │ │ ├── 005 │ │ │ │ ├── log.txt │ │ │ │ ├── result.json │ │ │ │ └── result.txt │ │ │ │ ├── 006 │ │ │ │ ├── log.txt │ │ │ │ ├── result.json │ │ │ │ └── result.txt │ │ │ │ ├── 007 │ │ │ │ ├── err.txt │ │ │ │ ├── log.txt │ │ │ │ ├── result.json │ │ │ │ └── result.txt │ │ │ │ ├── 008 │ │ │ │ ├── err.txt │ │ │ │ ├── log.txt │ │ │ │ ├── result.json │ │ │ │ └── result.txt │ │ │ │ └── 009 │ │ │ │ ├── err.txt │ │ │ │ ├── log.txt │ │ │ │ ├── result.json │ │ │ │ └── result.txt │ │ ├── runtime │ │ │ └── protobuf │ │ │ │ ├── bin │ │ │ │ └── linux │ │ │ │ │ └── protoc │ │ │ │ ├── convert.php │ │ │ │ ├── person.proto │ │ │ │ ├── setup.txt │ │ │ │ └── vendor │ │ │ │ ├── autoload.php │ │ │ │ ├── composer │ │ │ │ ├── ClassLoader.php │ │ │ │ ├── InstalledVersions.php │ │ │ │ ├── LICENSE │ │ │ │ ├── autoload_classmap.php │ │ │ │ ├── autoload_namespaces.php │ │ │ │ ├── autoload_psr4.php │ │ │ │ ├── autoload_real.php │ │ │ │ ├── autoload_static.php │ │ │ │ ├── installed.json │ │ │ │ ├── installed.php │ │ │ │ └── platform_check.php │ │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── composer.json │ │ │ │ └── src │ │ │ │ ├── GPBMetadata │ │ │ │ └── Google │ │ │ │ │ └── Protobuf │ │ │ │ │ ├── Any.php │ │ │ │ │ ├── Api.php │ │ │ │ │ ├── Duration.php │ │ │ │ │ ├── FieldMask.php │ │ │ │ │ ├── GPBEmpty.php │ │ │ │ │ ├── Internal │ │ │ │ │ └── Descriptor.php │ │ │ │ │ ├── SourceContext.php │ │ │ │ │ ├── Struct.php │ │ │ │ │ ├── Timestamp.php │ │ │ │ │ ├── Type.php │ │ │ │ │ └── Wrappers.php │ │ │ │ ├── Google │ │ │ │ └── Protobuf │ │ │ │ │ ├── Any.php │ │ │ │ │ ├── Api.php │ │ │ │ │ ├── BoolValue.php │ │ │ │ │ ├── BytesValue.php │ │ │ │ │ ├── Descriptor.php │ │ │ │ │ ├── DescriptorPool.php │ │ │ │ │ ├── DoubleValue.php │ │ │ │ │ ├── Duration.php │ │ │ │ │ ├── Enum.php │ │ │ │ │ ├── EnumDescriptor.php │ │ │ │ │ ├── EnumValue.php │ │ │ │ │ ├── EnumValueDescriptor.php │ │ │ │ │ ├── Field.php │ │ │ │ │ ├── Field │ │ │ │ │ ├── Cardinality.php │ │ │ │ │ └── Kind.php │ │ │ │ │ ├── FieldDescriptor.php │ │ │ │ │ ├── FieldMask.php │ │ │ │ │ ├── Field_Cardinality.php │ │ │ │ │ ├── Field_Kind.php │ │ │ │ │ ├── FloatValue.php │ │ │ │ │ ├── GPBEmpty.php │ │ │ │ │ ├── Int32Value.php │ │ │ │ │ ├── Int64Value.php │ │ │ │ │ ├── Internal │ │ │ │ │ ├── AnyBase.php │ │ │ │ │ ├── CodedInputStream.php │ │ │ │ │ ├── CodedOutputStream.php │ │ │ │ │ ├── Descriptor.php │ │ │ │ │ ├── DescriptorPool.php │ │ │ │ │ ├── DescriptorProto.php │ │ │ │ │ ├── DescriptorProto │ │ │ │ │ │ ├── ExtensionRange.php │ │ │ │ │ │ └── ReservedRange.php │ │ │ │ │ ├── DescriptorProto_ExtensionRange.php │ │ │ │ │ ├── DescriptorProto_ReservedRange.php │ │ │ │ │ ├── EnumBuilderContext.php │ │ │ │ │ ├── EnumDescriptor.php │ │ │ │ │ ├── EnumDescriptorProto.php │ │ │ │ │ ├── EnumDescriptorProto │ │ │ │ │ │ └── EnumReservedRange.php │ │ │ │ │ ├── EnumDescriptorProto_EnumReservedRange.php │ │ │ │ │ ├── EnumOptions.php │ │ │ │ │ ├── EnumValueDescriptorProto.php │ │ │ │ │ ├── EnumValueOptions.php │ │ │ │ │ ├── ExtensionRangeOptions.php │ │ │ │ │ ├── FieldDescriptor.php │ │ │ │ │ ├── FieldDescriptorProto.php │ │ │ │ │ ├── FieldDescriptorProto │ │ │ │ │ │ ├── Label.php │ │ │ │ │ │ └── Type.php │ │ │ │ │ ├── FieldDescriptorProto_Label.php │ │ │ │ │ ├── FieldDescriptorProto_Type.php │ │ │ │ │ ├── FieldOptions.php │ │ │ │ │ ├── FieldOptions │ │ │ │ │ │ ├── CType.php │ │ │ │ │ │ └── JSType.php │ │ │ │ │ ├── FieldOptions_CType.php │ │ │ │ │ ├── FieldOptions_JSType.php │ │ │ │ │ ├── FileDescriptor.php │ │ │ │ │ ├── FileDescriptorProto.php │ │ │ │ │ ├── FileDescriptorSet.php │ │ │ │ │ ├── FileOptions.php │ │ │ │ │ ├── FileOptions │ │ │ │ │ │ └── OptimizeMode.php │ │ │ │ │ ├── FileOptions_OptimizeMode.php │ │ │ │ │ ├── GPBDecodeException.php │ │ │ │ │ ├── GPBJsonWire.php │ │ │ │ │ ├── GPBLabel.php │ │ │ │ │ ├── GPBType.php │ │ │ │ │ ├── GPBUtil.php │ │ │ │ │ ├── GPBWire.php │ │ │ │ │ ├── GPBWireType.php │ │ │ │ │ ├── GeneratedCodeInfo.php │ │ │ │ │ ├── GeneratedCodeInfo │ │ │ │ │ │ └── Annotation.php │ │ │ │ │ ├── GeneratedCodeInfo_Annotation.php │ │ │ │ │ ├── GetPublicDescriptorTrait.php │ │ │ │ │ ├── HasPublicDescriptorTrait.php │ │ │ │ │ ├── MapEntry.php │ │ │ │ │ ├── MapField.php │ │ │ │ │ ├── MapFieldIter.php │ │ │ │ │ ├── Message.php │ │ │ │ │ ├── MessageBuilderContext.php │ │ │ │ │ ├── MessageOptions.php │ │ │ │ │ ├── MethodDescriptorProto.php │ │ │ │ │ ├── MethodOptions.php │ │ │ │ │ ├── MethodOptions │ │ │ │ │ │ └── IdempotencyLevel.php │ │ │ │ │ ├── MethodOptions_IdempotencyLevel.php │ │ │ │ │ ├── OneofDescriptor.php │ │ │ │ │ ├── OneofDescriptorProto.php │ │ │ │ │ ├── OneofField.php │ │ │ │ │ ├── OneofOptions.php │ │ │ │ │ ├── RawInputStream.php │ │ │ │ │ ├── RepeatedField.php │ │ │ │ │ ├── RepeatedFieldIter.php │ │ │ │ │ ├── ServiceDescriptorProto.php │ │ │ │ │ ├── ServiceOptions.php │ │ │ │ │ ├── SourceCodeInfo.php │ │ │ │ │ ├── SourceCodeInfo │ │ │ │ │ │ └── Location.php │ │ │ │ │ ├── SourceCodeInfo_Location.php │ │ │ │ │ ├── TimestampBase.php │ │ │ │ │ ├── UninterpretedOption.php │ │ │ │ │ ├── UninterpretedOption │ │ │ │ │ │ └── NamePart.php │ │ │ │ │ └── UninterpretedOption_NamePart.php │ │ │ │ │ ├── ListValue.php │ │ │ │ │ ├── Method.php │ │ │ │ │ ├── Mixin.php │ │ │ │ │ ├── NullValue.php │ │ │ │ │ ├── OneofDescriptor.php │ │ │ │ │ ├── Option.php │ │ │ │ │ ├── SourceContext.php │ │ │ │ │ ├── StringValue.php │ │ │ │ │ ├── Struct.php │ │ │ │ │ ├── Syntax.php │ │ │ │ │ ├── Timestamp.php │ │ │ │ │ ├── Type.php │ │ │ │ │ ├── UInt32Value.php │ │ │ │ │ ├── UInt64Value.php │ │ │ │ │ └── Value.php │ │ │ │ └── phpdoc.dist.xml │ │ ├── users │ │ │ ├── 1.yaml │ │ │ ├── names.txt │ │ │ └── test │ │ │ │ ├── _account.yaml │ │ │ │ ├── _test01.yaml │ │ │ │ ├── _test02.yaml │ │ │ │ ├── _test03.yaml │ │ │ │ └── dir │ │ │ │ ├── config.yaml │ │ │ │ └── users.txt │ │ ├── yaml │ │ │ ├── article │ │ │ │ └── chinese │ │ │ │ │ └── slang │ │ │ │ │ ├── 01.yaml │ │ │ │ │ ├── sample.txt │ │ │ │ │ └── sample.yaml │ │ │ ├── color │ │ │ │ └── v1.yaml │ │ │ ├── country │ │ │ │ └── v1.yaml │ │ │ ├── domain │ │ │ │ ├── domain.v1.yaml │ │ │ │ ├── esp.v1.yaml │ │ │ │ └── postfix.v1.yaml │ │ │ ├── email │ │ │ │ └── v1.yaml │ │ │ ├── ip │ │ │ │ ├── v1.yaml │ │ │ │ └── v2.yaml │ │ │ ├── log │ │ │ │ ├── agent.txt │ │ │ │ ├── apache.access.v1.yaml │ │ │ │ └── uri.txt │ │ │ ├── name │ │ │ │ ├── cnaccount.v1.yaml │ │ │ │ ├── cnreal.v1.yaml │ │ │ │ ├── enaccount.v1.yaml │ │ │ │ ├── enreal.v1.yaml │ │ │ │ ├── letters.v1.yaml │ │ │ │ └── numbers.v1.yaml │ │ │ ├── out │ │ │ │ └── test-apache-log.txt │ │ │ ├── test │ │ │ │ ├── _test-config.yaml │ │ │ │ ├── _test-instacnes.yaml │ │ │ │ └── _test-ranges.yaml │ │ │ ├── time │ │ │ │ ├── date.v1.yaml │ │ │ │ ├── monthday.v1.yaml │ │ │ │ └── time.v1.yaml │ │ │ ├── uuid │ │ │ │ ├── prefix.yaml │ │ │ │ └── v1.yaml │ │ │ └── zentao │ │ │ │ ├── ip │ │ │ │ └── private.yaml │ │ │ │ └── number │ │ │ │ └── v1.yaml │ │ ├── z │ │ ├── zd │ │ └── ztf │ ├── tmp │ │ └── dblog.php │ └── ztest ├── tmp │ ├── .keepdir │ ├── cache │ │ └── .keepdir │ └── log │ │ └── .keepdir ├── tools │ └── minifyfront.php └── www │ ├── .htaccess │ ├── api.php │ ├── background.jpg │ ├── checktable.php │ ├── favicon.ico │ ├── index.php │ ├── js │ ├── all.js │ ├── bindranzhi.js │ ├── chartjs │ │ ├── chart.line.min.js │ │ ├── chart.min.js │ │ └── excanvas.min.js │ ├── codemirror │ │ └── spell_checker │ │ │ ├── en_US.aff │ │ │ └── en_US.dic │ ├── datatable │ │ ├── min.css │ │ └── min.js │ ├── dhtmlxgantt │ │ ├── ext │ │ │ ├── dhtmlxgantt_critical_path.js │ │ │ ├── dhtmlxgantt_fullscreen.js │ │ │ ├── dhtmlxgantt_marker.js │ │ │ └── dhtmlxgantt_smart_rendering.js │ │ ├── lang │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ ├── min.css │ │ └── min.js │ ├── echarts │ │ └── echarts.common.min.js │ ├── fingerprint │ │ ├── Gruntfile.js │ │ ├── fingerprint.js │ │ ├── package.json │ │ └── specs │ │ │ ├── fingerprint_spec.js │ │ │ ├── lib │ │ │ ├── jasmine-1.3.1 │ │ │ │ ├── jasmine-html.js │ │ │ │ ├── jasmine.css │ │ │ │ └── jasmine.js │ │ │ └── phantom-jasmine │ │ │ │ ├── console-runner.js │ │ │ │ └── run_jasmine_test.coffee │ │ │ ├── run.sh │ │ │ └── test_runner.html │ ├── html2canvas │ │ └── min.js │ ├── html5shiv │ │ └── min.js │ ├── jquery │ │ ├── chosen │ │ │ ├── min.css │ │ │ └── min.js │ │ ├── datetimepicker │ │ │ ├── min.css │ │ │ └── min.js │ │ ├── flot │ │ │ ├── excanvas.min.js │ │ │ └── jquery.flot.min.js │ │ ├── form │ │ │ ├── min.js │ │ │ └── zentao.js │ │ ├── json │ │ │ └── editor.js │ │ ├── lib.js │ │ ├── placeholder │ │ │ └── min.js │ │ ├── reverseorder │ │ │ └── raw.js │ │ ├── tablesorter │ │ │ ├── metadata.js │ │ │ └── min.js │ │ ├── treetable │ │ │ ├── min.js │ │ │ └── raw.js │ │ ├── treeview │ │ │ └── min.js │ │ ├── validation │ │ │ └── min.js │ │ └── ztree │ │ │ ├── css │ │ │ ├── img │ │ │ │ ├── diy │ │ │ │ │ ├── 1_close.png │ │ │ │ │ ├── 1_open.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── 6.png │ │ │ │ │ ├── 7.png │ │ │ │ │ ├── 8.png │ │ │ │ │ └── 9.png │ │ │ │ ├── line_conn.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── zTreeStandard.gif │ │ │ │ └── zTreeStandard.png │ │ │ └── ztree.css │ │ │ └── js │ │ │ └── ztree.js │ ├── kindeditor │ │ ├── Makefile │ │ ├── kindeditor.css │ │ ├── kindeditor.js │ │ ├── kindeditor.min.css │ │ ├── kindeditor.min.js │ │ ├── lang │ │ │ ├── ar.js │ │ │ ├── en.js │ │ │ ├── fr.js │ │ │ ├── ja.js │ │ │ ├── zh_CN.js │ │ │ └── zh_TW.js │ │ ├── license.txt │ │ ├── plugins │ │ │ ├── anchor │ │ │ │ └── anchor.js │ │ │ ├── autoheight │ │ │ │ └── autoheight.js │ │ │ ├── baidumap │ │ │ │ ├── baidumap.js │ │ │ │ ├── index.html │ │ │ │ └── map.html │ │ │ ├── clearhtml │ │ │ │ └── clearhtml.js │ │ │ ├── code │ │ │ │ ├── code.js │ │ │ │ ├── prettify.css │ │ │ │ └── prettify.js │ │ │ ├── emoticons │ │ │ │ ├── emoticons.js │ │ │ │ └── images │ │ │ │ │ ├── 0.gif │ │ │ │ │ ├── 1.gif │ │ │ │ │ ├── 10.gif │ │ │ │ │ ├── 100.gif │ │ │ │ │ ├── 101.gif │ │ │ │ │ ├── 102.gif │ │ │ │ │ ├── 103.gif │ │ │ │ │ ├── 104.gif │ │ │ │ │ ├── 105.gif │ │ │ │ │ ├── 106.gif │ │ │ │ │ ├── 107.gif │ │ │ │ │ ├── 108.gif │ │ │ │ │ ├── 109.gif │ │ │ │ │ ├── 11.gif │ │ │ │ │ ├── 110.gif │ │ │ │ │ ├── 111.gif │ │ │ │ │ ├── 112.gif │ │ │ │ │ ├── 113.gif │ │ │ │ │ ├── 114.gif │ │ │ │ │ ├── 115.gif │ │ │ │ │ ├── 116.gif │ │ │ │ │ ├── 117.gif │ │ │ │ │ ├── 118.gif │ │ │ │ │ ├── 119.gif │ │ │ │ │ ├── 12.gif │ │ │ │ │ ├── 120.gif │ │ │ │ │ ├── 121.gif │ │ │ │ │ ├── 122.gif │ │ │ │ │ ├── 123.gif │ │ │ │ │ ├── 124.gif │ │ │ │ │ ├── 125.gif │ │ │ │ │ ├── 126.gif │ │ │ │ │ ├── 127.gif │ │ │ │ │ ├── 128.gif │ │ │ │ │ ├── 129.gif │ │ │ │ │ ├── 13.gif │ │ │ │ │ ├── 130.gif │ │ │ │ │ ├── 131.gif │ │ │ │ │ ├── 132.gif │ │ │ │ │ ├── 133.gif │ │ │ │ │ ├── 134.gif │ │ │ │ │ ├── 14.gif │ │ │ │ │ ├── 15.gif │ │ │ │ │ ├── 16.gif │ │ │ │ │ ├── 17.gif │ │ │ │ │ ├── 18.gif │ │ │ │ │ ├── 19.gif │ │ │ │ │ ├── 2.gif │ │ │ │ │ ├── 20.gif │ │ │ │ │ ├── 21.gif │ │ │ │ │ ├── 22.gif │ │ │ │ │ ├── 23.gif │ │ │ │ │ ├── 24.gif │ │ │ │ │ ├── 25.gif │ │ │ │ │ ├── 26.gif │ │ │ │ │ ├── 27.gif │ │ │ │ │ ├── 28.gif │ │ │ │ │ ├── 29.gif │ │ │ │ │ ├── 3.gif │ │ │ │ │ ├── 30.gif │ │ │ │ │ ├── 31.gif │ │ │ │ │ ├── 32.gif │ │ │ │ │ ├── 33.gif │ │ │ │ │ ├── 34.gif │ │ │ │ │ ├── 35.gif │ │ │ │ │ ├── 36.gif │ │ │ │ │ ├── 37.gif │ │ │ │ │ ├── 38.gif │ │ │ │ │ ├── 39.gif │ │ │ │ │ ├── 4.gif │ │ │ │ │ ├── 40.gif │ │ │ │ │ ├── 41.gif │ │ │ │ │ ├── 42.gif │ │ │ │ │ ├── 43.gif │ │ │ │ │ ├── 44.gif │ │ │ │ │ ├── 45.gif │ │ │ │ │ ├── 46.gif │ │ │ │ │ ├── 47.gif │ │ │ │ │ ├── 48.gif │ │ │ │ │ ├── 49.gif │ │ │ │ │ ├── 5.gif │ │ │ │ │ ├── 50.gif │ │ │ │ │ ├── 51.gif │ │ │ │ │ ├── 52.gif │ │ │ │ │ ├── 53.gif │ │ │ │ │ ├── 54.gif │ │ │ │ │ ├── 55.gif │ │ │ │ │ ├── 56.gif │ │ │ │ │ ├── 57.gif │ │ │ │ │ ├── 58.gif │ │ │ │ │ ├── 59.gif │ │ │ │ │ ├── 6.gif │ │ │ │ │ ├── 60.gif │ │ │ │ │ ├── 61.gif │ │ │ │ │ ├── 62.gif │ │ │ │ │ ├── 63.gif │ │ │ │ │ ├── 64.gif │ │ │ │ │ ├── 65.gif │ │ │ │ │ ├── 66.gif │ │ │ │ │ ├── 67.gif │ │ │ │ │ ├── 68.gif │ │ │ │ │ ├── 69.gif │ │ │ │ │ ├── 7.gif │ │ │ │ │ ├── 70.gif │ │ │ │ │ ├── 71.gif │ │ │ │ │ ├── 72.gif │ │ │ │ │ ├── 73.gif │ │ │ │ │ ├── 74.gif │ │ │ │ │ ├── 75.gif │ │ │ │ │ ├── 76.gif │ │ │ │ │ ├── 77.gif │ │ │ │ │ ├── 78.gif │ │ │ │ │ ├── 79.gif │ │ │ │ │ ├── 8.gif │ │ │ │ │ ├── 80.gif │ │ │ │ │ ├── 81.gif │ │ │ │ │ ├── 82.gif │ │ │ │ │ ├── 83.gif │ │ │ │ │ ├── 84.gif │ │ │ │ │ ├── 85.gif │ │ │ │ │ ├── 86.gif │ │ │ │ │ ├── 87.gif │ │ │ │ │ ├── 88.gif │ │ │ │ │ ├── 89.gif │ │ │ │ │ ├── 9.gif │ │ │ │ │ ├── 90.gif │ │ │ │ │ ├── 91.gif │ │ │ │ │ ├── 92.gif │ │ │ │ │ ├── 93.gif │ │ │ │ │ ├── 94.gif │ │ │ │ │ ├── 95.gif │ │ │ │ │ ├── 96.gif │ │ │ │ │ ├── 97.gif │ │ │ │ │ ├── 98.gif │ │ │ │ │ ├── 99.gif │ │ │ │ │ └── static.gif │ │ │ ├── filemanager │ │ │ │ ├── filemanager.js │ │ │ │ └── images │ │ │ │ │ ├── file-16.gif │ │ │ │ │ ├── file-64.gif │ │ │ │ │ ├── folder-16.gif │ │ │ │ │ ├── folder-64.gif │ │ │ │ │ └── go-up.gif │ │ │ ├── flash │ │ │ │ └── flash.js │ │ │ ├── image │ │ │ │ ├── image.js │ │ │ │ └── images │ │ │ │ │ ├── align_left.gif │ │ │ │ │ ├── align_right.gif │ │ │ │ │ ├── align_top.gif │ │ │ │ │ └── refresh.png │ │ │ ├── insertfile │ │ │ │ └── insertfile.js │ │ │ ├── lineheight │ │ │ │ └── lineheight.js │ │ │ ├── link │ │ │ │ └── link.js │ │ │ ├── map │ │ │ │ ├── map.html │ │ │ │ └── map.js │ │ │ ├── media │ │ │ │ └── media.js │ │ │ ├── multiimage │ │ │ │ ├── images │ │ │ │ │ ├── image.png │ │ │ │ │ ├── select-files-en.png │ │ │ │ │ ├── select-files-zh_CN.png │ │ │ │ │ └── swfupload.swf │ │ │ │ └── multiimage.js │ │ │ ├── pagebreak │ │ │ │ └── pagebreak.js │ │ │ ├── plainpaste │ │ │ │ └── plainpaste.js │ │ │ ├── preview │ │ │ │ └── preview.js │ │ │ ├── quickformat │ │ │ │ └── quickformat.js │ │ │ ├── table │ │ │ │ └── table.js │ │ │ ├── template │ │ │ │ ├── html │ │ │ │ │ ├── 1.html │ │ │ │ │ ├── 2.html │ │ │ │ │ └── 3.html │ │ │ │ └── template.js │ │ │ └── wordpaste │ │ │ │ └── wordpaste.js │ │ └── themes │ │ │ ├── common │ │ │ ├── anchor.gif │ │ │ ├── blank.gif │ │ │ ├── flash.gif │ │ │ ├── loading.gif │ │ │ ├── media.gif │ │ │ └── rm.gif │ │ │ └── default │ │ │ └── default.png │ ├── markdown │ │ ├── fontawesome │ │ │ ├── css │ │ │ │ └── fontawesome.min.css │ │ │ └── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ ├── simplemde.min.css │ │ └── simplemde.min.js │ ├── md5.js │ ├── misc │ │ ├── base64.js │ │ ├── date.js │ │ ├── fusioncharts.js │ │ └── highlight │ │ │ ├── export.html │ │ │ ├── highlight.pack.js │ │ │ └── styles │ │ │ ├── code.css │ │ │ └── googlecode.css │ ├── my.full.js │ ├── respond │ │ └── min.js │ ├── uploader │ │ ├── min.css │ │ └── min.js │ ├── vue │ │ └── vue.js │ ├── xterm │ │ ├── LICENSE │ │ ├── README.md │ │ ├── css │ │ │ └── xterm.css │ │ ├── lib │ │ │ ├── xterm.js │ │ │ └── xterm.js.map │ │ ├── package.json │ │ ├── src │ │ │ ├── browser │ │ │ │ ├── AccessibilityManager.ts │ │ │ │ ├── Clipboard.ts │ │ │ │ ├── ColorContrastCache.ts │ │ │ │ ├── Dom.ts │ │ │ │ ├── Lifecycle.ts │ │ │ │ ├── Linkifier2.ts │ │ │ │ ├── LocalizableStrings.ts │ │ │ │ ├── OscLinkProvider.ts │ │ │ │ ├── RenderDebouncer.ts │ │ │ │ ├── ScreenDprMonitor.ts │ │ │ │ ├── Terminal.ts │ │ │ │ ├── TimeBasedDebouncer.ts │ │ │ │ ├── Types.d.ts │ │ │ │ ├── Viewport.ts │ │ │ │ ├── decorations │ │ │ │ │ ├── BufferDecorationRenderer.ts │ │ │ │ │ ├── ColorZoneStore.ts │ │ │ │ │ └── OverviewRulerRenderer.ts │ │ │ │ ├── input │ │ │ │ │ ├── CompositionHelper.ts │ │ │ │ │ ├── Mouse.ts │ │ │ │ │ └── MoveToCell.ts │ │ │ │ ├── public │ │ │ │ │ └── Terminal.ts │ │ │ │ ├── renderer │ │ │ │ │ ├── dom │ │ │ │ │ │ ├── DomRenderer.ts │ │ │ │ │ │ └── DomRendererRowFactory.ts │ │ │ │ │ └── shared │ │ │ │ │ │ ├── CellColorResolver.ts │ │ │ │ │ │ ├── CharAtlasCache.ts │ │ │ │ │ │ ├── CharAtlasUtils.ts │ │ │ │ │ │ ├── Constants.ts │ │ │ │ │ │ ├── CustomGlyphs.ts │ │ │ │ │ │ ├── DevicePixelObserver.ts │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── RendererUtils.ts │ │ │ │ │ │ ├── SelectionRenderModel.ts │ │ │ │ │ │ ├── TextureAtlas.ts │ │ │ │ │ │ └── Types.d.ts │ │ │ │ ├── selection │ │ │ │ │ ├── SelectionModel.ts │ │ │ │ │ └── Types.d.ts │ │ │ │ └── services │ │ │ │ │ ├── CharSizeService.ts │ │ │ │ │ ├── CharacterJoinerService.ts │ │ │ │ │ ├── CoreBrowserService.ts │ │ │ │ │ ├── MouseService.ts │ │ │ │ │ ├── RenderService.ts │ │ │ │ │ ├── SelectionService.ts │ │ │ │ │ ├── Services.ts │ │ │ │ │ └── ThemeService.ts │ │ │ ├── common │ │ │ │ ├── CircularList.ts │ │ │ │ ├── Clone.ts │ │ │ │ ├── Color.ts │ │ │ │ ├── CoreTerminal.ts │ │ │ │ ├── EventEmitter.ts │ │ │ │ ├── InputHandler.ts │ │ │ │ ├── Lifecycle.ts │ │ │ │ ├── MultiKeyMap.ts │ │ │ │ ├── Platform.ts │ │ │ │ ├── SortedList.ts │ │ │ │ ├── TaskQueue.ts │ │ │ │ ├── TypedArrayUtils.ts │ │ │ │ ├── Types.d.ts │ │ │ │ ├── WindowsMode.ts │ │ │ │ ├── buffer │ │ │ │ │ ├── AttributeData.ts │ │ │ │ │ ├── Buffer.ts │ │ │ │ │ ├── BufferLine.ts │ │ │ │ │ ├── BufferRange.ts │ │ │ │ │ ├── BufferReflow.ts │ │ │ │ │ ├── BufferSet.ts │ │ │ │ │ ├── CellData.ts │ │ │ │ │ ├── Constants.ts │ │ │ │ │ ├── Marker.ts │ │ │ │ │ └── Types.d.ts │ │ │ │ ├── data │ │ │ │ │ ├── Charsets.ts │ │ │ │ │ └── EscapeSequences.ts │ │ │ │ ├── input │ │ │ │ │ ├── Keyboard.ts │ │ │ │ │ ├── TextDecoder.ts │ │ │ │ │ ├── UnicodeV6.ts │ │ │ │ │ ├── WriteBuffer.ts │ │ │ │ │ └── XParseColor.ts │ │ │ │ ├── parser │ │ │ │ │ ├── Constants.ts │ │ │ │ │ ├── DcsParser.ts │ │ │ │ │ ├── EscapeSequenceParser.ts │ │ │ │ │ ├── OscParser.ts │ │ │ │ │ ├── Params.ts │ │ │ │ │ └── Types.d.ts │ │ │ │ ├── public │ │ │ │ │ ├── AddonManager.ts │ │ │ │ │ ├── BufferApiView.ts │ │ │ │ │ ├── BufferLineApiView.ts │ │ │ │ │ ├── BufferNamespaceApi.ts │ │ │ │ │ ├── ParserApi.ts │ │ │ │ │ └── UnicodeApi.ts │ │ │ │ └── services │ │ │ │ │ ├── BufferService.ts │ │ │ │ │ ├── CharsetService.ts │ │ │ │ │ ├── CoreMouseService.ts │ │ │ │ │ ├── CoreService.ts │ │ │ │ │ ├── DecorationService.ts │ │ │ │ │ ├── InstantiationService.ts │ │ │ │ │ ├── LogService.ts │ │ │ │ │ ├── OptionsService.ts │ │ │ │ │ ├── OscLinkService.ts │ │ │ │ │ ├── ServiceRegistry.ts │ │ │ │ │ ├── Services.ts │ │ │ │ │ └── UnicodeService.ts │ │ │ └── headless │ │ │ │ ├── Terminal.ts │ │ │ │ ├── Types.d.ts │ │ │ │ └── public │ │ │ │ └── Terminal.ts │ │ └── typings │ │ │ └── xterm.d.ts │ └── zui │ │ ├── carousel │ │ ├── min.css │ │ └── min.js │ │ ├── imgcutter │ │ ├── min.css │ │ └── min.js │ │ ├── kanban │ │ ├── min.css │ │ └── min.js │ │ ├── lang.ja.min.js │ │ └── min.js │ ├── robots.txt │ ├── theme │ ├── blackberry │ │ └── style.css │ ├── blue │ │ └── style.css │ ├── browser │ │ ├── chrome.css │ │ ├── firefox.css │ │ ├── ie.6.css │ │ ├── ie.css │ │ ├── opera.css │ │ └── safari.css │ ├── classic │ │ └── style.css │ ├── cyan │ │ └── style.css │ ├── default │ │ ├── bindranzhi.css │ │ ├── en.blackberry.css │ │ ├── en.blue.css │ │ ├── en.classic.css │ │ ├── en.cyan.css │ │ ├── en.default.css │ │ ├── en.green.css │ │ ├── en.pink.css │ │ ├── en.purple.css │ │ ├── en.qucheng.css │ │ ├── en.red.css │ │ ├── fonts │ │ │ ├── zenicon.eot │ │ │ ├── zenicon.svg │ │ │ ├── zenicon.ttf │ │ │ └── zenicon.woff │ │ ├── images │ │ │ ├── chosen │ │ │ │ └── chosen-sprite.png │ │ │ ├── kindeditor │ │ │ │ └── save.gif │ │ │ ├── main │ │ │ │ ├── annual_data_bg.png │ │ │ │ ├── annual_data_layout.png │ │ │ │ ├── annual_layout_header.png │ │ │ │ ├── chanzhi.ico │ │ │ │ ├── connect_fail.png │ │ │ │ ├── db_logo.svg │ │ │ │ ├── doc-file.png │ │ │ │ ├── doc-lib.png │ │ │ │ ├── doc-module.png │ │ │ │ ├── doc_create.png │ │ │ │ ├── doc_create_lib.png │ │ │ │ ├── green.png │ │ │ │ ├── green_corner.svg │ │ │ │ ├── icon.png │ │ │ │ ├── kanban.png │ │ │ │ ├── ldap_logo.jpg │ │ │ │ ├── license.svg │ │ │ │ ├── logo.png │ │ │ │ ├── logo2.png │ │ │ │ ├── medal.svg │ │ │ │ ├── meshiot.ico │ │ │ │ ├── minio_logo.svg │ │ │ │ ├── mysql.svg │ │ │ │ ├── new_theme.png │ │ │ │ ├── new_theme_en.png │ │ │ │ ├── no_content.png │ │ │ │ ├── no_network.png │ │ │ │ ├── no_result.png │ │ │ │ ├── qrcode.png │ │ │ │ ├── qucheng-logo.svg │ │ │ │ ├── qucheng.svg │ │ │ │ ├── redis.svg │ │ │ │ ├── scrum.png │ │ │ │ ├── tab_home.png │ │ │ │ ├── tab_home_gray.png │ │ │ │ ├── tab_my.png │ │ │ │ ├── tab_my_gray.png │ │ │ │ ├── tab_project.png │ │ │ │ ├── tab_project_gray.png │ │ │ │ ├── tab_report.png │ │ │ │ ├── tab_report_gray.png │ │ │ │ ├── tab_todoes.png │ │ │ │ ├── tab_todoes_gray.png │ │ │ │ ├── tutorial.png │ │ │ │ ├── tutorial_en.png │ │ │ │ ├── version-new.svg │ │ │ │ ├── version-upgrade.svg │ │ │ │ ├── visions.png │ │ │ │ ├── visions_en.png │ │ │ │ ├── waterfall.png │ │ │ │ ├── weixin.jpg │ │ │ │ ├── xuanxuan.ico │ │ │ │ ├── ydisk.ico │ │ │ │ ├── zdoo.ico │ │ │ │ ├── zendata.png │ │ │ │ ├── zentao.png │ │ │ │ ├── zt-icons.png │ │ │ │ ├── zt-logo-en.png │ │ │ │ ├── zt-logo.png │ │ │ │ └── ztf.png │ │ │ ├── repo │ │ │ │ ├── avatar.jpeg │ │ │ │ ├── dir.png │ │ │ │ └── txt.png │ │ │ ├── treetable │ │ │ │ ├── toggle-collapse-dark.png │ │ │ │ ├── toggle-collapse-light.png │ │ │ │ ├── toggle-expand-dark.png │ │ │ │ └── toggle-expand-light.png │ │ │ └── treeview │ │ │ │ ├── file.gif │ │ │ │ ├── folder-closed.gif │ │ │ │ ├── folder.gif │ │ │ │ ├── minus.gif │ │ │ │ ├── plus.gif │ │ │ │ ├── treeview-black-line.gif │ │ │ │ ├── treeview-black.gif │ │ │ │ ├── treeview-default-line.gif │ │ │ │ ├── treeview-default.gif │ │ │ │ ├── treeview-famfamfam-line.gif │ │ │ │ ├── treeview-famfamfam.gif │ │ │ │ ├── treeview-gray-line.gif │ │ │ │ ├── treeview-gray.gif │ │ │ │ ├── treeview-red-line.gif │ │ │ │ └── treeview-red.gif │ │ ├── index.css │ │ ├── style.css │ │ ├── treetable.css │ │ ├── treeview.css │ │ ├── x.style.css │ │ ├── zh-cn.blackberry.css │ │ ├── zh-cn.blue.css │ │ ├── zh-cn.classic.css │ │ ├── zh-cn.cyan.css │ │ ├── zh-cn.default.css │ │ ├── zh-cn.green.css │ │ ├── zh-cn.pink.css │ │ ├── zh-cn.purple.css │ │ ├── zh-cn.qucheng.css │ │ └── zh-cn.red.css │ ├── green │ │ └── style.css │ ├── lang │ │ ├── de.css │ │ ├── en.css │ │ ├── fr.css │ │ ├── vi.css │ │ ├── zh-cn.css │ │ └── zh-tw.css │ ├── pink │ │ └── style.css │ ├── purple │ │ └── style.css │ ├── qucheng │ │ └── style.css │ ├── red │ │ └── style.css │ └── zui │ │ ├── css │ │ └── min.css │ │ └── fonts │ │ ├── Oswald-Light.ttf │ │ ├── Oswald-Medium.ttf │ │ ├── Oswald-Regular.ttf │ │ ├── ZentaoIcon.eot │ │ ├── ZentaoIcon.svg │ │ ├── ZentaoIcon.ttf │ │ └── ZentaoIcon.woff │ ├── tip4japanese.html │ ├── upgrade-cli.php │ └── upgrading.html └── misc └── img └── logical-architecture.png /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/.dockerignore -------------------------------------------------------------------------------- /.drone-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/.drone-ci.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/.gitlab-ci.yml.bak -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.2.0 2 | -------------------------------------------------------------------------------- /backend/.air.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/.air.conf -------------------------------------------------------------------------------- /backend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/.editorconfig -------------------------------------------------------------------------------- /backend/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/.golangci.yml -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/Makefile -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- 1 | # cne-api 2 | 3 | 云原生应用交付平台API服务 -------------------------------------------------------------------------------- /backend/cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/cmd/main.go -------------------------------------------------------------------------------- /backend/cmd/serve/serve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/cmd/serve/serve.go -------------------------------------------------------------------------------- /backend/cmd/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/cmd/version/version.go -------------------------------------------------------------------------------- /backend/docs/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/docs/docs.go -------------------------------------------------------------------------------- /backend/docs/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/docs/swagger.json -------------------------------------------------------------------------------- /backend/docs/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/docs/swagger.yaml -------------------------------------------------------------------------------- /backend/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/go.mod -------------------------------------------------------------------------------- /backend/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/go.sum -------------------------------------------------------------------------------- /backend/go.work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/go.work -------------------------------------------------------------------------------- /backend/go.work.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/go.work.sum -------------------------------------------------------------------------------- /backend/hack/scripts/gencopyright.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/hack/scripts/gencopyright.sh -------------------------------------------------------------------------------- /backend/hack/scripts/gendocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/hack/scripts/gendocs.sh -------------------------------------------------------------------------------- /backend/internal/app/model/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/model/app.go -------------------------------------------------------------------------------- /backend/internal/app/model/app_response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/model/app_response.go -------------------------------------------------------------------------------- /backend/internal/app/model/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/model/base.go -------------------------------------------------------------------------------- /backend/internal/app/model/component.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/model/component.go -------------------------------------------------------------------------------- /backend/internal/app/model/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/model/middleware.go -------------------------------------------------------------------------------- /backend/internal/app/model/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/model/namespace.go -------------------------------------------------------------------------------- /backend/internal/app/model/snippet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/model/snippet.go -------------------------------------------------------------------------------- /backend/internal/app/model/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/model/system.go -------------------------------------------------------------------------------- /backend/internal/app/model/validate_form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/model/validate_form.go -------------------------------------------------------------------------------- /backend/internal/app/patch/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/patch/patch.go -------------------------------------------------------------------------------- /backend/internal/app/patch/patch20221103.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/patch/patch20221103.go -------------------------------------------------------------------------------- /backend/internal/app/patch/patch20230106.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/patch/patch20230106.go -------------------------------------------------------------------------------- /backend/internal/app/router/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/router/app.go -------------------------------------------------------------------------------- /backend/internal/app/router/app_backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/router/app_backup.go -------------------------------------------------------------------------------- /backend/internal/app/router/app_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/router/app_utils.go -------------------------------------------------------------------------------- /backend/internal/app/router/base/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/router/base/base.go -------------------------------------------------------------------------------- /backend/internal/app/router/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/router/cluster.go -------------------------------------------------------------------------------- /backend/internal/app/router/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/router/const.go -------------------------------------------------------------------------------- /backend/internal/app/router/dbservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/router/dbservice.go -------------------------------------------------------------------------------- /backend/internal/app/router/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/router/health.go -------------------------------------------------------------------------------- /backend/internal/app/router/middle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/router/middle.go -------------------------------------------------------------------------------- /backend/internal/app/router/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/router/middleware.go -------------------------------------------------------------------------------- /backend/internal/app/router/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/router/namespace.go -------------------------------------------------------------------------------- /backend/internal/app/router/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/router/node.go -------------------------------------------------------------------------------- /backend/internal/app/router/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/router/render.go -------------------------------------------------------------------------------- /backend/internal/app/router/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/router/router.go -------------------------------------------------------------------------------- /backend/internal/app/router/snippet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/router/snippet.go -------------------------------------------------------------------------------- /backend/internal/app/router/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/router/system.go -------------------------------------------------------------------------------- /backend/internal/app/router/tool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/router/tool.go -------------------------------------------------------------------------------- /backend/internal/app/router/valid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/router/valid.go -------------------------------------------------------------------------------- /backend/internal/app/serve/serve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/serve/serve.go -------------------------------------------------------------------------------- /backend/internal/app/service/app/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/service/app/error.go -------------------------------------------------------------------------------- /backend/internal/app/service/app/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/service/app/install.go -------------------------------------------------------------------------------- /backend/internal/app/service/app/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/service/app/instance.go -------------------------------------------------------------------------------- /backend/internal/app/service/app/instance/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/service/app/instance/log.go -------------------------------------------------------------------------------- /backend/internal/app/service/app/manage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/service/app/manage.go -------------------------------------------------------------------------------- /backend/internal/app/service/middleware/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/service/middleware/error.go -------------------------------------------------------------------------------- /backend/internal/app/service/middleware/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/service/middleware/mysql.go -------------------------------------------------------------------------------- /backend/internal/app/service/node/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/service/node/node.go -------------------------------------------------------------------------------- /backend/internal/app/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/service/service.go -------------------------------------------------------------------------------- /backend/internal/app/service/snippet/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/service/snippet/const.go -------------------------------------------------------------------------------- /backend/internal/app/validator/field/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/validator/field/field.go -------------------------------------------------------------------------------- /backend/internal/app/validator/field/regex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/validator/field/regex.go -------------------------------------------------------------------------------- /backend/internal/app/validator/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/app/validator/validator.go -------------------------------------------------------------------------------- /backend/internal/pkg/analysis/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/analysis/action.go -------------------------------------------------------------------------------- /backend/internal/pkg/analysis/analysis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/analysis/analysis.go -------------------------------------------------------------------------------- /backend/internal/pkg/app/app_server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/app/app_server_test.go -------------------------------------------------------------------------------- /backend/internal/pkg/app/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/app/const.go -------------------------------------------------------------------------------- /backend/internal/pkg/app/gitea.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/app/gitea.go -------------------------------------------------------------------------------- /backend/internal/pkg/app/gitlab.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/app/gitlab.go -------------------------------------------------------------------------------- /backend/internal/pkg/app/sonarqube.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/app/sonarqube.go -------------------------------------------------------------------------------- /backend/internal/pkg/app/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/app/tools.go -------------------------------------------------------------------------------- /backend/internal/pkg/app/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/app/type.go -------------------------------------------------------------------------------- /backend/internal/pkg/app/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/app/validator.go -------------------------------------------------------------------------------- /backend/internal/pkg/constant/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/constant/app.go -------------------------------------------------------------------------------- /backend/internal/pkg/constant/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/constant/const.go -------------------------------------------------------------------------------- /backend/internal/pkg/constant/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/constant/env.go -------------------------------------------------------------------------------- /backend/internal/pkg/db/manage/manage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/db/manage/manage.go -------------------------------------------------------------------------------- /backend/internal/pkg/db/manage/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/db/manage/mysql.go -------------------------------------------------------------------------------- /backend/internal/pkg/db/manage/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/db/manage/parse.go -------------------------------------------------------------------------------- /backend/internal/pkg/db/manage/postgresql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/db/manage/postgresql.go -------------------------------------------------------------------------------- /backend/internal/pkg/db/manage/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/db/manage/server.go -------------------------------------------------------------------------------- /backend/internal/pkg/job/alive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/job/alive.go -------------------------------------------------------------------------------- /backend/internal/pkg/job/httptls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/job/httptls.go -------------------------------------------------------------------------------- /backend/internal/pkg/job/job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/job/job.go -------------------------------------------------------------------------------- /backend/internal/pkg/kube/cluster/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/kube/cluster/cluster.go -------------------------------------------------------------------------------- /backend/internal/pkg/kube/cluster/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/kube/cluster/const.go -------------------------------------------------------------------------------- /backend/internal/pkg/kube/cluster/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/kube/cluster/error.go -------------------------------------------------------------------------------- /backend/internal/pkg/kube/metric/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/kube/metric/metric.go -------------------------------------------------------------------------------- /backend/internal/pkg/kube/metric/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/kube/metric/type.go -------------------------------------------------------------------------------- /backend/internal/pkg/kube/store/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/kube/store/store.go -------------------------------------------------------------------------------- /backend/internal/pkg/kube/value_read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/kube/value_read.go -------------------------------------------------------------------------------- /backend/internal/pkg/retcode/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/internal/pkg/retcode/errors.go -------------------------------------------------------------------------------- /backend/licenses/Z-PUBLIC-LICENSE-1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/licenses/Z-PUBLIC-LICENSE-1.2.md -------------------------------------------------------------------------------- /backend/licenses/z-public-1.2.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/licenses/z-public-1.2.tpl -------------------------------------------------------------------------------- /backend/pkg/cron/cron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/cron/cron.go -------------------------------------------------------------------------------- /backend/pkg/cron/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/cron/factory.go -------------------------------------------------------------------------------- /backend/pkg/ext/router/factory/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/ext/router/factory/factory.go -------------------------------------------------------------------------------- /backend/pkg/ext/router/render/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/ext/router/render/render.go -------------------------------------------------------------------------------- /backend/pkg/external/mysql/mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/external/mysql/mysql.go -------------------------------------------------------------------------------- /backend/pkg/helm/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/helm/const.go -------------------------------------------------------------------------------- /backend/pkg/helm/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/helm/field.go -------------------------------------------------------------------------------- /backend/pkg/helm/form/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/helm/form/const.go -------------------------------------------------------------------------------- /backend/pkg/helm/form/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/helm/form/type.go -------------------------------------------------------------------------------- /backend/pkg/helm/helm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/helm/helm.go -------------------------------------------------------------------------------- /backend/pkg/helm/kube.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/helm/kube.go -------------------------------------------------------------------------------- /backend/pkg/helm/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/helm/parse.go -------------------------------------------------------------------------------- /backend/pkg/helm/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/helm/push.go -------------------------------------------------------------------------------- /backend/pkg/helm/push/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/helm/push/push.go -------------------------------------------------------------------------------- /backend/pkg/helm/repo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/helm/repo.go -------------------------------------------------------------------------------- /backend/pkg/helm/repo_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/helm/repo_update.go -------------------------------------------------------------------------------- /backend/pkg/helm/schema/category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/helm/schema/category.go -------------------------------------------------------------------------------- /backend/pkg/helm/schema/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/helm/schema/const.go -------------------------------------------------------------------------------- /backend/pkg/helm/schema/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/helm/schema/schema.go -------------------------------------------------------------------------------- /backend/pkg/helm/schema/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/helm/schema/type.go -------------------------------------------------------------------------------- /backend/pkg/helm/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/helm/search.go -------------------------------------------------------------------------------- /backend/pkg/httplib/market/market_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/httplib/market/market_client.go -------------------------------------------------------------------------------- /backend/pkg/httplib/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/httplib/type.go -------------------------------------------------------------------------------- /backend/pkg/httplib/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/httplib/util.go -------------------------------------------------------------------------------- /backend/pkg/license/license.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/license/license.go -------------------------------------------------------------------------------- /backend/pkg/logging/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/logging/context.go -------------------------------------------------------------------------------- /backend/pkg/logging/context_fileds_hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/logging/context_fileds_hook.go -------------------------------------------------------------------------------- /backend/pkg/logging/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/logging/flag.go -------------------------------------------------------------------------------- /backend/pkg/logging/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/logging/logging.go -------------------------------------------------------------------------------- /backend/pkg/parse/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/parse/error.go -------------------------------------------------------------------------------- /backend/pkg/parse/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/parse/parse.go -------------------------------------------------------------------------------- /backend/pkg/parse/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/parse/parse_test.go -------------------------------------------------------------------------------- /backend/pkg/utils/kvpath/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/utils/kvpath/parse.go -------------------------------------------------------------------------------- /backend/pkg/utils/tls/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/utils/tls/error.go -------------------------------------------------------------------------------- /backend/pkg/utils/tls/tls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/backend/pkg/utils/tls/tls.go -------------------------------------------------------------------------------- /backend/staging/src/git.zcorp.cc/pangu/cne-api-ext/ext/ext.go: -------------------------------------------------------------------------------- 1 | package ext 2 | -------------------------------------------------------------------------------- /backend/staging/src/git.zcorp.cc/pangu/cne-api-ext/go.mod: -------------------------------------------------------------------------------- 1 | module git.zcorp.cc/pangu/cne-api-ext 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Dockerfile.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/docker/Dockerfile.api -------------------------------------------------------------------------------- /docker/prebuildfs/usr/sbin/install_packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/docker/prebuildfs/usr/sbin/install_packages -------------------------------------------------------------------------------- /docker/rootfs/apps/qucheng/config/my.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/docker/rootfs/apps/qucheng/config/my.php -------------------------------------------------------------------------------- /docker/rootfs/etc/cron.d/www-data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/docker/rootfs/etc/cron.d/www-data -------------------------------------------------------------------------------- /docker/rootfs/etc/php/7.4/php.ini.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/docker/rootfs/etc/php/7.4/php.ini.tpl -------------------------------------------------------------------------------- /docker/rootfs/etc/s6/s6-available/.s6-svscan/finish: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exit 0 3 | -------------------------------------------------------------------------------- /docker/rootfs/etc/s6/s6-available/apache/finish: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | s6-svscanctl -t /etc/s6/s6-enable -------------------------------------------------------------------------------- /docker/rootfs/etc/s6/s6-available/apache/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/docker/rootfs/etc/s6/s6-available/apache/run -------------------------------------------------------------------------------- /docker/rootfs/etc/s6/s6-available/backend/finish: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | s6-svscanctl -t /etc/s6/s6-enable 3 | -------------------------------------------------------------------------------- /docker/rootfs/etc/s6/s6-available/backend/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/docker/rootfs/etc/s6/s6-available/backend/run -------------------------------------------------------------------------------- /docker/rootfs/etc/s6/s6-available/cron/finish: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | s6-svscanctl -t /etc/s6/s6-enable 3 | -------------------------------------------------------------------------------- /docker/rootfs/etc/s6/s6-available/cron/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/docker/rootfs/etc/s6/s6-available/cron/run -------------------------------------------------------------------------------- /docker/rootfs/etc/s6/s6-enable/.s6-svscan/finish: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | exit 0 3 | -------------------------------------------------------------------------------- /docker/rootfs/etc/s6/s6-init/envs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/docker/rootfs/etc/s6/s6-init/envs -------------------------------------------------------------------------------- /docker/rootfs/etc/s6/s6-init/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/docker/rootfs/etc/s6/s6-init/run -------------------------------------------------------------------------------- /docker/rootfs/usr/bin/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/docker/rootfs/usr/bin/entrypoint.sh -------------------------------------------------------------------------------- /frontend/adminer/adminer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/adminer/adminer.css -------------------------------------------------------------------------------- /frontend/adminer/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/adminer/index.php -------------------------------------------------------------------------------- /frontend/api/v1/entries/adminpassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/api/v1/entries/adminpassword.php -------------------------------------------------------------------------------- /frontend/api/v1/entries/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/api/v1/entries/error.php -------------------------------------------------------------------------------- /frontend/api/v1/entries/tokens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/api/v1/entries/tokens.php -------------------------------------------------------------------------------- /frontend/api/v1/lang/zh-cn.php: -------------------------------------------------------------------------------- 1 | upgrade = new stdclass(); 3 | -------------------------------------------------------------------------------- /frontend/module/upgrade/lang/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/upgrade/lang/version.php -------------------------------------------------------------------------------- /frontend/module/upgrade/lang/zh-cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/upgrade/lang/zh-cn.php -------------------------------------------------------------------------------- /frontend/module/upgrade/model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/upgrade/model.php -------------------------------------------------------------------------------- /frontend/module/user/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/config.php -------------------------------------------------------------------------------- /frontend/module/user/control.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/control.php -------------------------------------------------------------------------------- /frontend/module/user/css/batchcreate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/css/batchcreate.css -------------------------------------------------------------------------------- /frontend/module/user/css/batchcreate.en.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/css/batchcreate.en.css -------------------------------------------------------------------------------- /frontend/module/user/css/batchcreate.vi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/css/batchcreate.vi.css -------------------------------------------------------------------------------- /frontend/module/user/css/batchedit.css: -------------------------------------------------------------------------------- 1 | th.required:after {position: relative; right: 10px;} 2 | -------------------------------------------------------------------------------- /frontend/module/user/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/css/common.css -------------------------------------------------------------------------------- /frontend/module/user/css/create.css: -------------------------------------------------------------------------------- 1 | .checkbox-primary {display:inline-block; padding-right:10px;} 2 | -------------------------------------------------------------------------------- /frontend/module/user/css/deny.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/css/deny.css -------------------------------------------------------------------------------- /frontend/module/user/css/dynamic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/css/dynamic.css -------------------------------------------------------------------------------- /frontend/module/user/css/edit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/css/edit.css -------------------------------------------------------------------------------- /frontend/module/user/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/css/login.css -------------------------------------------------------------------------------- /frontend/module/user/css/managecontacts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/css/managecontacts.css -------------------------------------------------------------------------------- /frontend/module/user/css/profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/css/profile.css -------------------------------------------------------------------------------- /frontend/module/user/css/profile.en.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/css/profile.en.css -------------------------------------------------------------------------------- /frontend/module/user/css/profile.vi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/css/profile.vi.css -------------------------------------------------------------------------------- /frontend/module/user/css/profile.zh-cn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/css/profile.zh-cn.css -------------------------------------------------------------------------------- /frontend/module/user/css/profile.zh-tw.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/css/profile.zh-tw.css -------------------------------------------------------------------------------- /frontend/module/user/css/reset.css: -------------------------------------------------------------------------------- 1 | .alert-info > h5 > span {color: red;} 2 | -------------------------------------------------------------------------------- /frontend/module/user/css/task.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/css/task.css -------------------------------------------------------------------------------- /frontend/module/user/js/batchcreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/js/batchcreate.js -------------------------------------------------------------------------------- /frontend/module/user/js/batchedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/js/batchedit.js -------------------------------------------------------------------------------- /frontend/module/user/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/js/common.js -------------------------------------------------------------------------------- /frontend/module/user/js/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/js/create.js -------------------------------------------------------------------------------- /frontend/module/user/js/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/js/edit.js -------------------------------------------------------------------------------- /frontend/module/user/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/js/login.js -------------------------------------------------------------------------------- /frontend/module/user/js/reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/js/reset.js -------------------------------------------------------------------------------- /frontend/module/user/js/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/js/todo.js -------------------------------------------------------------------------------- /frontend/module/user/lang/zh-cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/lang/zh-cn.php -------------------------------------------------------------------------------- /frontend/module/user/model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/model.php -------------------------------------------------------------------------------- /frontend/module/user/view/batchedit.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/view/batchedit.html.php -------------------------------------------------------------------------------- /frontend/module/user/view/create.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/view/create.html.php -------------------------------------------------------------------------------- /frontend/module/user/view/cropavatar.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/view/cropavatar.html.php -------------------------------------------------------------------------------- /frontend/module/user/view/delete.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/view/delete.html.php -------------------------------------------------------------------------------- /frontend/module/user/view/deny.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/view/deny.html.php -------------------------------------------------------------------------------- /frontend/module/user/view/dynamic.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/view/dynamic.html.php -------------------------------------------------------------------------------- /frontend/module/user/view/edit.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/view/edit.html.php -------------------------------------------------------------------------------- /frontend/module/user/view/featurebar.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/view/featurebar.html.php -------------------------------------------------------------------------------- /frontend/module/user/view/issue.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/view/issue.html.php -------------------------------------------------------------------------------- /frontend/module/user/view/login.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/view/login.html.php -------------------------------------------------------------------------------- /frontend/module/user/view/profile.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/view/profile.html.php -------------------------------------------------------------------------------- /frontend/module/user/view/reset.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/module/user/view/reset.html.php -------------------------------------------------------------------------------- /frontend/test/class/company.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/class/company.class.php -------------------------------------------------------------------------------- /frontend/test/class/store.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/class/store.class.php -------------------------------------------------------------------------------- /frontend/test/class/user.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/class/user.class.php -------------------------------------------------------------------------------- /frontend/test/config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/config/config.php -------------------------------------------------------------------------------- /frontend/test/data/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/data/action.yaml -------------------------------------------------------------------------------- /frontend/test/data/common/color/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/data/common/color/v1.yaml -------------------------------------------------------------------------------- /frontend/test/data/common/date/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/data/common/date/v1.yaml -------------------------------------------------------------------------------- /frontend/test/data/common/file/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/data/common/file/v1.yaml -------------------------------------------------------------------------------- /frontend/test/data/common/groups/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/data/common/groups/v1.yaml -------------------------------------------------------------------------------- /frontend/test/data/common/ip/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/data/common/ip/v1.yaml -------------------------------------------------------------------------------- /frontend/test/data/common/phone/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/data/common/phone/v1.yaml -------------------------------------------------------------------------------- /frontend/test/data/common/user/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/data/common/user/v1.yaml -------------------------------------------------------------------------------- /frontend/test/data/common/version/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/data/common/version/v1.yaml -------------------------------------------------------------------------------- /frontend/test/data/company.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/data/company.yaml -------------------------------------------------------------------------------- /frontend/test/data/sql/001_company.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/data/sql/001_company.sql -------------------------------------------------------------------------------- /frontend/test/data/sql/002_user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/data/sql/002_user.sql -------------------------------------------------------------------------------- /frontend/test/data/user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/data/user.yaml -------------------------------------------------------------------------------- /frontend/test/data/zentao/blockdefault.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/data/zentao/blockdefault.yaml -------------------------------------------------------------------------------- /frontend/test/data/zentao/blockrandom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/data/zentao/blockrandom.yaml -------------------------------------------------------------------------------- /frontend/test/data/zentao/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/data/zentao/config.php -------------------------------------------------------------------------------- /frontend/test/data/zentao/processor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/data/zentao/processor.php -------------------------------------------------------------------------------- /frontend/test/lib/controlapi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/lib/controlapi.php -------------------------------------------------------------------------------- /frontend/test/lib/db.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/lib/db.class.php -------------------------------------------------------------------------------- /frontend/test/lib/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/lib/init.php -------------------------------------------------------------------------------- /frontend/test/lib/initapi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/lib/initapi.php -------------------------------------------------------------------------------- /frontend/test/lib/rest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/lib/rest.php -------------------------------------------------------------------------------- /frontend/test/lib/spyc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/lib/spyc.php -------------------------------------------------------------------------------- /frontend/test/lib/utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/lib/utils.php -------------------------------------------------------------------------------- /frontend/test/lib/yaml.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/lib/yaml.class.php -------------------------------------------------------------------------------- /frontend/test/model/store/getappinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/model/store/getappinfo.php -------------------------------------------------------------------------------- /frontend/test/model/user/authorize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/model/user/authorize.php -------------------------------------------------------------------------------- /frontend/test/model/user/checkpassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/model/user/checkpassword.php -------------------------------------------------------------------------------- /frontend/test/model/user/getbyid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/model/user/getbyid.php -------------------------------------------------------------------------------- /frontend/test/model/user/resetpassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/model/user/resetpassword.php -------------------------------------------------------------------------------- /frontend/test/runtime/.zd.conf: -------------------------------------------------------------------------------- 1 | Version = 1 2 | Language = zh 3 | -------------------------------------------------------------------------------- /frontend/test/runtime/conf/ztf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/conf/ztf.conf -------------------------------------------------------------------------------- /frontend/test/runtime/data/address/cn.v1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/data/address/cn.v1.xlsx -------------------------------------------------------------------------------- /frontend/test/runtime/data/color/v1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/data/color/v1.xlsx -------------------------------------------------------------------------------- /frontend/test/runtime/data/country/v1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/data/country/v1.xlsx -------------------------------------------------------------------------------- /frontend/test/runtime/demo/01_range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/01_range.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/02_fix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/02_fix.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/04_rand.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/04_rand.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/05_loop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/05_loop.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/06_from_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/06_from_file.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/07_nest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/07_nest.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/08_format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/08_format.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/09_length.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/09_length.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/10_brace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/10_brace.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/11_loop_m_n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/11_loop_m_n.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/12_function.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/12_function.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/13_value.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/13_value.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/14_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/14_config.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/15_from_range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/15_from_range.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/18_multi_from.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/18_multi_from.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/19_from_excel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/19_from_excel.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/21_override.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/21_override.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/22_color.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/22_color.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/23_country.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/23_country.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/24_domain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/24_domain.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/25_email.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/25_email.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/26_ip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/26_ip.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/27_name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/27_name.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/28_datetime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/28_datetime.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/29_uuid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/29_uuid.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/30_article.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/30_article.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/advanced.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/advanced.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/config.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/default.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/multi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/multi.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/number.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/number.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/output/_test02.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/output/_test02.csv -------------------------------------------------------------------------------- /frontend/test/runtime/demo/t.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/t.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/demo/tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/tables.sql -------------------------------------------------------------------------------- /frontend/test/runtime/demo/user.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/user.txt -------------------------------------------------------------------------------- /frontend/test/runtime/demo/zentao.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/demo/zentao.sql -------------------------------------------------------------------------------- /frontend/test/runtime/log/001/err.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/001/err.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/001/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/001/log.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/001/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/001/result.json -------------------------------------------------------------------------------- /frontend/test/runtime/log/001/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/001/result.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/002/err.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/002/err.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/002/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/002/log.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/002/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/002/result.json -------------------------------------------------------------------------------- /frontend/test/runtime/log/002/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/002/result.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/003/err.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/003/err.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/003/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/003/log.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/003/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/003/result.json -------------------------------------------------------------------------------- /frontend/test/runtime/log/003/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/003/result.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/001/err.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/001/err.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/001/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/001/log.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/001/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/001/result.json -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/001/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/001/result.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/002/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/002/log.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/002/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/002/result.json -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/002/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/002/result.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/003/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/003/log.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/003/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/003/result.json -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/003/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/003/result.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/004/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/004/log.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/004/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/004/result.json -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/004/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/004/result.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/005/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/005/log.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/005/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/005/result.json -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/005/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/005/result.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/006/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/006/log.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/006/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/006/result.json -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/006/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/006/result.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/007/err.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/007/err.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/007/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/007/log.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/007/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/007/result.json -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/007/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/007/result.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/008/err.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/008/err.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/008/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/008/log.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/008/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/008/result.json -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/008/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/008/result.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/009/err.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/009/err.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/009/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/009/log.txt -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/009/result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/009/result.json -------------------------------------------------------------------------------- /frontend/test/runtime/log/bak/009/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/log/bak/009/result.txt -------------------------------------------------------------------------------- /frontend/test/runtime/users/1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/users/1.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/users/names.txt: -------------------------------------------------------------------------------- 1 | aaron 2 | bob 3 | carl -------------------------------------------------------------------------------- /frontend/test/runtime/users/test/_test01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/users/test/_test01.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/users/test/_test02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/users/test/_test02.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/users/test/_test03.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/users/test/_test03.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/users/test/dir/users.txt: -------------------------------------------------------------------------------- 1 | aaron 2 | ben 3 | carl 4 | -------------------------------------------------------------------------------- /frontend/test/runtime/yaml/color/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/yaml/color/v1.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/yaml/country/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/yaml/country/v1.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/yaml/domain/esp.v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/yaml/domain/esp.v1.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/yaml/email/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/yaml/email/v1.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/yaml/ip/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/yaml/ip/v1.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/yaml/ip/v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/yaml/ip/v2.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/yaml/log/agent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/yaml/log/agent.txt -------------------------------------------------------------------------------- /frontend/test/runtime/yaml/log/uri.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/yaml/log/uri.txt -------------------------------------------------------------------------------- /frontend/test/runtime/yaml/out/test-apache-log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/test/runtime/yaml/time/date.v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/yaml/time/date.v1.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/yaml/time/time.v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/yaml/time/time.v1.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/yaml/uuid/prefix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/yaml/uuid/prefix.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/yaml/uuid/v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/yaml/uuid/v1.yaml -------------------------------------------------------------------------------- /frontend/test/runtime/z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/z -------------------------------------------------------------------------------- /frontend/test/runtime/zd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/zd -------------------------------------------------------------------------------- /frontend/test/runtime/ztf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/runtime/ztf -------------------------------------------------------------------------------- /frontend/test/tmp/dblog.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/test/ztest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/test/ztest -------------------------------------------------------------------------------- /frontend/tmp/.keepdir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/tmp/cache/.keepdir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/tmp/log/.keepdir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/tools/minifyfront.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/tools/minifyfront.php -------------------------------------------------------------------------------- /frontend/www/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/.htaccess -------------------------------------------------------------------------------- /frontend/www/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/api.php -------------------------------------------------------------------------------- /frontend/www/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/background.jpg -------------------------------------------------------------------------------- /frontend/www/checktable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/checktable.php -------------------------------------------------------------------------------- /frontend/www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/favicon.ico -------------------------------------------------------------------------------- /frontend/www/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/index.php -------------------------------------------------------------------------------- /frontend/www/js/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/all.js -------------------------------------------------------------------------------- /frontend/www/js/bindranzhi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/bindranzhi.js -------------------------------------------------------------------------------- /frontend/www/js/chartjs/chart.line.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/chartjs/chart.line.min.js -------------------------------------------------------------------------------- /frontend/www/js/chartjs/chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/chartjs/chart.min.js -------------------------------------------------------------------------------- /frontend/www/js/chartjs/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/chartjs/excanvas.min.js -------------------------------------------------------------------------------- /frontend/www/js/datatable/min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/datatable/min.css -------------------------------------------------------------------------------- /frontend/www/js/datatable/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/datatable/min.js -------------------------------------------------------------------------------- /frontend/www/js/dhtmlxgantt/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/dhtmlxgantt/lang/zh-cn.js -------------------------------------------------------------------------------- /frontend/www/js/dhtmlxgantt/lang/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/dhtmlxgantt/lang/zh-tw.js -------------------------------------------------------------------------------- /frontend/www/js/dhtmlxgantt/min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/dhtmlxgantt/min.css -------------------------------------------------------------------------------- /frontend/www/js/dhtmlxgantt/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/dhtmlxgantt/min.js -------------------------------------------------------------------------------- /frontend/www/js/echarts/echarts.common.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/echarts/echarts.common.min.js -------------------------------------------------------------------------------- /frontend/www/js/fingerprint/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/fingerprint/Gruntfile.js -------------------------------------------------------------------------------- /frontend/www/js/fingerprint/fingerprint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/fingerprint/fingerprint.js -------------------------------------------------------------------------------- /frontend/www/js/fingerprint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/fingerprint/package.json -------------------------------------------------------------------------------- /frontend/www/js/fingerprint/specs/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/fingerprint/specs/run.sh -------------------------------------------------------------------------------- /frontend/www/js/html2canvas/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/html2canvas/min.js -------------------------------------------------------------------------------- /frontend/www/js/html5shiv/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/html5shiv/min.js -------------------------------------------------------------------------------- /frontend/www/js/jquery/chosen/min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/jquery/chosen/min.css -------------------------------------------------------------------------------- /frontend/www/js/jquery/chosen/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/jquery/chosen/min.js -------------------------------------------------------------------------------- /frontend/www/js/jquery/datetimepicker/min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/jquery/datetimepicker/min.css -------------------------------------------------------------------------------- /frontend/www/js/jquery/datetimepicker/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/jquery/datetimepicker/min.js -------------------------------------------------------------------------------- /frontend/www/js/jquery/flot/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/jquery/flot/excanvas.min.js -------------------------------------------------------------------------------- /frontend/www/js/jquery/form/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/jquery/form/min.js -------------------------------------------------------------------------------- /frontend/www/js/jquery/form/zentao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/jquery/form/zentao.js -------------------------------------------------------------------------------- /frontend/www/js/jquery/json/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/jquery/json/editor.js -------------------------------------------------------------------------------- /frontend/www/js/jquery/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/jquery/lib.js -------------------------------------------------------------------------------- /frontend/www/js/jquery/placeholder/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/jquery/placeholder/min.js -------------------------------------------------------------------------------- /frontend/www/js/jquery/reverseorder/raw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/jquery/reverseorder/raw.js -------------------------------------------------------------------------------- /frontend/www/js/jquery/tablesorter/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/jquery/tablesorter/min.js -------------------------------------------------------------------------------- /frontend/www/js/jquery/treetable/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/jquery/treetable/min.js -------------------------------------------------------------------------------- /frontend/www/js/jquery/treetable/raw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/jquery/treetable/raw.js -------------------------------------------------------------------------------- /frontend/www/js/jquery/treeview/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/jquery/treeview/min.js -------------------------------------------------------------------------------- /frontend/www/js/jquery/validation/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/jquery/validation/min.js -------------------------------------------------------------------------------- /frontend/www/js/jquery/ztree/css/ztree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/jquery/ztree/css/ztree.css -------------------------------------------------------------------------------- /frontend/www/js/jquery/ztree/js/ztree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/jquery/ztree/js/ztree.js -------------------------------------------------------------------------------- /frontend/www/js/kindeditor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/kindeditor/Makefile -------------------------------------------------------------------------------- /frontend/www/js/kindeditor/kindeditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/kindeditor/kindeditor.css -------------------------------------------------------------------------------- /frontend/www/js/kindeditor/kindeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/kindeditor/kindeditor.js -------------------------------------------------------------------------------- /frontend/www/js/kindeditor/kindeditor.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/kindeditor/kindeditor.min.css -------------------------------------------------------------------------------- /frontend/www/js/kindeditor/kindeditor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/kindeditor/kindeditor.min.js -------------------------------------------------------------------------------- /frontend/www/js/kindeditor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/kindeditor/lang/ar.js -------------------------------------------------------------------------------- /frontend/www/js/kindeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/kindeditor/lang/en.js -------------------------------------------------------------------------------- /frontend/www/js/kindeditor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/kindeditor/lang/fr.js -------------------------------------------------------------------------------- /frontend/www/js/kindeditor/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/kindeditor/lang/ja.js -------------------------------------------------------------------------------- /frontend/www/js/kindeditor/lang/zh_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/kindeditor/lang/zh_CN.js -------------------------------------------------------------------------------- /frontend/www/js/kindeditor/lang/zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/kindeditor/lang/zh_TW.js -------------------------------------------------------------------------------- /frontend/www/js/kindeditor/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/kindeditor/license.txt -------------------------------------------------------------------------------- /frontend/www/js/kindeditor/plugins/map/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/kindeditor/plugins/map/map.js -------------------------------------------------------------------------------- /frontend/www/js/markdown/simplemde.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/markdown/simplemde.min.css -------------------------------------------------------------------------------- /frontend/www/js/markdown/simplemde.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/markdown/simplemde.min.js -------------------------------------------------------------------------------- /frontend/www/js/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/md5.js -------------------------------------------------------------------------------- /frontend/www/js/misc/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/misc/base64.js -------------------------------------------------------------------------------- /frontend/www/js/misc/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/misc/date.js -------------------------------------------------------------------------------- /frontend/www/js/misc/fusioncharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/misc/fusioncharts.js -------------------------------------------------------------------------------- /frontend/www/js/misc/highlight/export.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/misc/highlight/export.html -------------------------------------------------------------------------------- /frontend/www/js/my.full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/my.full.js -------------------------------------------------------------------------------- /frontend/www/js/respond/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/respond/min.js -------------------------------------------------------------------------------- /frontend/www/js/uploader/min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/uploader/min.css -------------------------------------------------------------------------------- /frontend/www/js/uploader/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/uploader/min.js -------------------------------------------------------------------------------- /frontend/www/js/vue/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/vue/vue.js -------------------------------------------------------------------------------- /frontend/www/js/xterm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/xterm/LICENSE -------------------------------------------------------------------------------- /frontend/www/js/xterm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/xterm/README.md -------------------------------------------------------------------------------- /frontend/www/js/xterm/css/xterm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/xterm/css/xterm.css -------------------------------------------------------------------------------- /frontend/www/js/xterm/lib/xterm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/xterm/lib/xterm.js -------------------------------------------------------------------------------- /frontend/www/js/xterm/lib/xterm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/xterm/lib/xterm.js.map -------------------------------------------------------------------------------- /frontend/www/js/xterm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/xterm/package.json -------------------------------------------------------------------------------- /frontend/www/js/xterm/src/browser/Dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/xterm/src/browser/Dom.ts -------------------------------------------------------------------------------- /frontend/www/js/xterm/src/browser/Terminal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/xterm/src/browser/Terminal.ts -------------------------------------------------------------------------------- /frontend/www/js/xterm/src/browser/Types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/xterm/src/browser/Types.d.ts -------------------------------------------------------------------------------- /frontend/www/js/xterm/src/browser/Viewport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/xterm/src/browser/Viewport.ts -------------------------------------------------------------------------------- /frontend/www/js/xterm/src/common/Clone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/xterm/src/common/Clone.ts -------------------------------------------------------------------------------- /frontend/www/js/xterm/src/common/Color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/xterm/src/common/Color.ts -------------------------------------------------------------------------------- /frontend/www/js/xterm/src/common/Lifecycle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/xterm/src/common/Lifecycle.ts -------------------------------------------------------------------------------- /frontend/www/js/xterm/src/common/Platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/xterm/src/common/Platform.ts -------------------------------------------------------------------------------- /frontend/www/js/xterm/src/common/TaskQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/xterm/src/common/TaskQueue.ts -------------------------------------------------------------------------------- /frontend/www/js/xterm/src/common/Types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/xterm/src/common/Types.d.ts -------------------------------------------------------------------------------- /frontend/www/js/xterm/src/headless/Types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/xterm/src/headless/Types.d.ts -------------------------------------------------------------------------------- /frontend/www/js/xterm/typings/xterm.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/xterm/typings/xterm.d.ts -------------------------------------------------------------------------------- /frontend/www/js/zui/carousel/min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/zui/carousel/min.css -------------------------------------------------------------------------------- /frontend/www/js/zui/carousel/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/zui/carousel/min.js -------------------------------------------------------------------------------- /frontend/www/js/zui/imgcutter/min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/zui/imgcutter/min.css -------------------------------------------------------------------------------- /frontend/www/js/zui/imgcutter/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/zui/imgcutter/min.js -------------------------------------------------------------------------------- /frontend/www/js/zui/kanban/min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/zui/kanban/min.css -------------------------------------------------------------------------------- /frontend/www/js/zui/kanban/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/zui/kanban/min.js -------------------------------------------------------------------------------- /frontend/www/js/zui/lang.ja.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/zui/lang.ja.min.js -------------------------------------------------------------------------------- /frontend/www/js/zui/min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/js/zui/min.js -------------------------------------------------------------------------------- /frontend/www/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /frontend/www/theme/blackberry/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/blackberry/style.css -------------------------------------------------------------------------------- /frontend/www/theme/blue/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/blue/style.css -------------------------------------------------------------------------------- /frontend/www/theme/browser/chrome.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/www/theme/browser/firefox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/browser/firefox.css -------------------------------------------------------------------------------- /frontend/www/theme/browser/ie.6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/browser/ie.6.css -------------------------------------------------------------------------------- /frontend/www/theme/browser/ie.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/www/theme/browser/opera.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/browser/opera.css -------------------------------------------------------------------------------- /frontend/www/theme/browser/safari.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/browser/safari.css -------------------------------------------------------------------------------- /frontend/www/theme/classic/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/classic/style.css -------------------------------------------------------------------------------- /frontend/www/theme/cyan/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/cyan/style.css -------------------------------------------------------------------------------- /frontend/www/theme/default/bindranzhi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/bindranzhi.css -------------------------------------------------------------------------------- /frontend/www/theme/default/en.blackberry.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/en.blackberry.css -------------------------------------------------------------------------------- /frontend/www/theme/default/en.blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/en.blue.css -------------------------------------------------------------------------------- /frontend/www/theme/default/en.classic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/en.classic.css -------------------------------------------------------------------------------- /frontend/www/theme/default/en.cyan.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/en.cyan.css -------------------------------------------------------------------------------- /frontend/www/theme/default/en.default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/en.default.css -------------------------------------------------------------------------------- /frontend/www/theme/default/en.green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/en.green.css -------------------------------------------------------------------------------- /frontend/www/theme/default/en.pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/en.pink.css -------------------------------------------------------------------------------- /frontend/www/theme/default/en.purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/en.purple.css -------------------------------------------------------------------------------- /frontend/www/theme/default/en.qucheng.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/en.qucheng.css -------------------------------------------------------------------------------- /frontend/www/theme/default/en.red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/en.red.css -------------------------------------------------------------------------------- /frontend/www/theme/default/fonts/zenicon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/fonts/zenicon.eot -------------------------------------------------------------------------------- /frontend/www/theme/default/fonts/zenicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/fonts/zenicon.svg -------------------------------------------------------------------------------- /frontend/www/theme/default/fonts/zenicon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/fonts/zenicon.ttf -------------------------------------------------------------------------------- /frontend/www/theme/default/fonts/zenicon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/fonts/zenicon.woff -------------------------------------------------------------------------------- /frontend/www/theme/default/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/www/theme/default/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/style.css -------------------------------------------------------------------------------- /frontend/www/theme/default/treetable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/treetable.css -------------------------------------------------------------------------------- /frontend/www/theme/default/treeview.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/treeview.css -------------------------------------------------------------------------------- /frontend/www/theme/default/x.style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/x.style.css -------------------------------------------------------------------------------- /frontend/www/theme/default/zh-cn.blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/zh-cn.blue.css -------------------------------------------------------------------------------- /frontend/www/theme/default/zh-cn.classic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/zh-cn.classic.css -------------------------------------------------------------------------------- /frontend/www/theme/default/zh-cn.cyan.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/zh-cn.cyan.css -------------------------------------------------------------------------------- /frontend/www/theme/default/zh-cn.default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/zh-cn.default.css -------------------------------------------------------------------------------- /frontend/www/theme/default/zh-cn.green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/zh-cn.green.css -------------------------------------------------------------------------------- /frontend/www/theme/default/zh-cn.pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/zh-cn.pink.css -------------------------------------------------------------------------------- /frontend/www/theme/default/zh-cn.purple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/zh-cn.purple.css -------------------------------------------------------------------------------- /frontend/www/theme/default/zh-cn.qucheng.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/zh-cn.qucheng.css -------------------------------------------------------------------------------- /frontend/www/theme/default/zh-cn.red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/default/zh-cn.red.css -------------------------------------------------------------------------------- /frontend/www/theme/green/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/green/style.css -------------------------------------------------------------------------------- /frontend/www/theme/lang/de.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/www/theme/lang/en.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/lang/en.css -------------------------------------------------------------------------------- /frontend/www/theme/lang/fr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/lang/fr.css -------------------------------------------------------------------------------- /frontend/www/theme/lang/vi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/lang/vi.css -------------------------------------------------------------------------------- /frontend/www/theme/lang/zh-cn.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/www/theme/lang/zh-tw.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/www/theme/pink/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/pink/style.css -------------------------------------------------------------------------------- /frontend/www/theme/purple/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/purple/style.css -------------------------------------------------------------------------------- /frontend/www/theme/qucheng/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/qucheng/style.css -------------------------------------------------------------------------------- /frontend/www/theme/red/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/red/style.css -------------------------------------------------------------------------------- /frontend/www/theme/zui/css/min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/zui/css/min.css -------------------------------------------------------------------------------- /frontend/www/theme/zui/fonts/Oswald-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/zui/fonts/Oswald-Light.ttf -------------------------------------------------------------------------------- /frontend/www/theme/zui/fonts/ZentaoIcon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/zui/fonts/ZentaoIcon.eot -------------------------------------------------------------------------------- /frontend/www/theme/zui/fonts/ZentaoIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/zui/fonts/ZentaoIcon.svg -------------------------------------------------------------------------------- /frontend/www/theme/zui/fonts/ZentaoIcon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/zui/fonts/ZentaoIcon.ttf -------------------------------------------------------------------------------- /frontend/www/theme/zui/fonts/ZentaoIcon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/theme/zui/fonts/ZentaoIcon.woff -------------------------------------------------------------------------------- /frontend/www/tip4japanese.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/tip4japanese.html -------------------------------------------------------------------------------- /frontend/www/upgrade-cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/upgrade-cli.php -------------------------------------------------------------------------------- /frontend/www/upgrading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/frontend/www/upgrading.html -------------------------------------------------------------------------------- /misc/img/logical-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easysoft/quickon/HEAD/misc/img/logical-architecture.png --------------------------------------------------------------------------------