├── disconf-web ├── bin │ ├── .gitignore │ ├── __init__.py │ └── sql │ │ ├── __init__.py │ │ └── get_create_one_user_sql.sql.py ├── src │ ├── main │ │ ├── .gitignore │ │ ├── resources │ │ │ ├── .gitignore │ │ │ ├── messages │ │ │ │ ├── app-service-info.properties │ │ │ │ ├── app-controller-info.properties │ │ │ │ ├── sign-service-info.properties │ │ │ │ ├── sign-controller-info.properties │ │ │ │ └── config-controller-info.properties │ │ │ ├── spring-cache.properties │ │ │ └── ehcache.xml │ │ ├── webapp │ │ │ ├── Release │ │ │ └── jpaas_control │ │ └── java │ │ │ └── com │ │ │ └── baidu │ │ │ ├── disconf │ │ │ └── web │ │ │ │ ├── tools │ │ │ │ └── .gitignore │ │ │ │ ├── service │ │ │ │ ├── user │ │ │ │ │ ├── constant │ │ │ │ │ │ ├── validation-user.properties │ │ │ │ │ │ └── UserConstant.java │ │ │ │ │ ├── facade │ │ │ │ │ │ ├── UserFacade.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── UserFacadeImpl.java │ │ │ │ │ ├── service │ │ │ │ │ │ ├── AuthMgr.java │ │ │ │ │ │ ├── UserInnerMgr.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── AuthMgrImpl.java │ │ │ │ │ ├── form │ │ │ │ │ │ ├── UserListForm.java │ │ │ │ │ │ └── PasswordModifyForm.java │ │ │ │ │ └── dao │ │ │ │ │ │ ├── UserDao.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ └── UserDaoImpl.java │ │ │ │ ├── role │ │ │ │ │ ├── constant │ │ │ │ │ │ └── RoleConstant.java │ │ │ │ │ ├── dao │ │ │ │ │ │ ├── RoleDao.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── RoleDaoImpl.java │ │ │ │ │ ├── service │ │ │ │ │ │ ├── RoleMgr.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── RoleMgrImpl.java │ │ │ │ │ └── bo │ │ │ │ │ │ └── RoleEnum.java │ │ │ │ ├── config │ │ │ │ │ ├── service │ │ │ │ │ │ └── ConfigHistoryMgr.java │ │ │ │ │ ├── resource │ │ │ │ │ │ └── config-service-info.properties │ │ │ │ │ ├── dao │ │ │ │ │ │ ├── ConfigHistoryDao.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── ConfigHistoryDaoImpl.java │ │ │ │ │ ├── utils │ │ │ │ │ │ └── ConfigUtils.java │ │ │ │ │ ├── form │ │ │ │ │ │ ├── ConfListForm.java │ │ │ │ │ │ └── VersionListForm.java │ │ │ │ │ └── bo │ │ │ │ │ │ └── ConfigHistory.java │ │ │ │ ├── sign │ │ │ │ │ ├── dao │ │ │ │ │ │ ├── SignDao.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── SignDaoImpl.java │ │ │ │ │ ├── service │ │ │ │ │ │ └── SignMgr.java │ │ │ │ │ └── utils │ │ │ │ │ │ └── SignUtils.java │ │ │ │ ├── roleres │ │ │ │ │ ├── dao │ │ │ │ │ │ ├── RoleResourceDao.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── RoleResourceDaoImpl.java │ │ │ │ │ └── service │ │ │ │ │ │ └── RoleResourceMgr.java │ │ │ │ ├── app │ │ │ │ │ ├── form │ │ │ │ │ │ ├── AppListForm.java │ │ │ │ │ │ └── AppNewForm.java │ │ │ │ │ ├── vo │ │ │ │ │ │ └── AppListVo.java │ │ │ │ │ └── dao │ │ │ │ │ │ ├── AppDao.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ └── AppDaoImpl.java │ │ │ │ ├── env │ │ │ │ │ ├── dao │ │ │ │ │ │ ├── EnvDao.java │ │ │ │ │ │ └── impl │ │ │ │ │ │ │ └── EnvDaoImpl.java │ │ │ │ │ ├── vo │ │ │ │ │ │ └── EnvListVo.java │ │ │ │ │ ├── service │ │ │ │ │ │ └── EnvMgr.java │ │ │ │ │ └── bo │ │ │ │ │ │ └── Env.java │ │ │ │ └── zookeeper │ │ │ │ │ ├── config │ │ │ │ │ └── ZooConfig.java │ │ │ │ │ ├── form │ │ │ │ │ └── ZkDeployForm.java │ │ │ │ │ └── service │ │ │ │ │ └── ZkDeployMgr.java │ │ │ │ ├── tasks │ │ │ │ └── IConfigConsistencyMonitorService.java │ │ │ │ ├── common │ │ │ │ ├── Constants.java │ │ │ │ └── email │ │ │ │ │ └── MyAuthenticator.java │ │ │ │ └── web │ │ │ │ └── auth │ │ │ │ ├── constant │ │ │ │ └── LoginConstant.java │ │ │ │ └── login │ │ │ │ └── RedisLogin.java │ │ │ ├── dsp │ │ │ └── common │ │ │ │ ├── dao │ │ │ │ └── DB.java │ │ │ │ ├── exception │ │ │ │ ├── base │ │ │ │ │ ├── GlobalExceptionAware.java │ │ │ │ │ ├── Codeable.java │ │ │ │ │ └── DspException.java │ │ │ │ ├── DocumentNotFoundException.java │ │ │ │ ├── AccessDeniedException.java │ │ │ │ ├── DaoException.java │ │ │ │ ├── UnExpectedException.java │ │ │ │ ├── RemoteException.java │ │ │ │ └── FileUploadException.java │ │ │ │ ├── annotation │ │ │ │ └── NoAuth.java │ │ │ │ ├── utils │ │ │ │ ├── DataTransfer.java │ │ │ │ ├── IpUtils.java │ │ │ │ └── DaoUtils.java │ │ │ │ ├── context │ │ │ │ └── ContextReader.java │ │ │ │ ├── constant │ │ │ │ ├── DataFormatConstants.java │ │ │ │ ├── WebConstants.java │ │ │ │ └── ModuleCode.java │ │ │ │ ├── form │ │ │ │ └── RequestFormBase.java │ │ │ │ ├── vo │ │ │ │ ├── JsonObject.java │ │ │ │ └── JsonSimpleObject.java │ │ │ │ ├── constraint │ │ │ │ ├── PasswordConstraint.java │ │ │ │ ├── PageOrderConstraint.java │ │ │ │ ├── validation │ │ │ │ │ ├── PasswordValidator.java │ │ │ │ │ ├── PageOrderValidator.java │ │ │ │ │ ├── MaxValidatorForDouble.java │ │ │ │ │ ├── MinValidatorForDouble.java │ │ │ │ │ └── ListInValidator.java │ │ │ │ ├── CommonNameConstraint.java │ │ │ │ ├── ListInConstraint.java │ │ │ │ └── UserNameConstraint.java │ │ │ │ └── listener │ │ │ │ ├── ContextListener.java │ │ │ │ └── StartupListener.java │ │ │ ├── unbiz │ │ │ └── common │ │ │ │ └── genericdao │ │ │ │ ├── param │ │ │ │ ├── ExpressionParam.java │ │ │ │ ├── IncrParam.java │ │ │ │ ├── LikeParam.java │ │ │ │ ├── NotParam.java │ │ │ │ ├── GteParam.java │ │ │ │ ├── LteParam.java │ │ │ │ ├── LessThanParam.java │ │ │ │ ├── GreaterThanParam.java │ │ │ │ └── BetweenParam.java │ │ │ │ ├── bo │ │ │ │ └── InsertOption.java │ │ │ │ ├── operator │ │ │ │ ├── Pair.java │ │ │ │ ├── Match.java │ │ │ │ ├── Order.java │ │ │ │ ├── Modify.java │ │ │ │ └── Query.java │ │ │ │ ├── annotation │ │ │ │ ├── Sequence.java │ │ │ │ └── Column.java │ │ │ │ └── sequence │ │ │ │ └── SequenceGenerator.java │ │ │ └── ub │ │ │ └── common │ │ │ ├── dbmanage │ │ │ ├── rule │ │ │ │ └── DBShardingRule.java │ │ │ └── router │ │ │ │ └── Router.java │ │ │ └── db │ │ │ └── DaoPage.java │ └── test │ │ ├── resources │ │ ├── file2 │ │ │ ├── confA.properties │ │ │ ├── utf-file.pml │ │ │ └── utf-file.properties │ │ ├── files │ │ │ ├── originalFile.txt │ │ │ └── revisedFile.txt │ │ ├── datasource-test.properties │ │ ├── sql │ │ │ └── base │ │ │ │ └── goldendata │ │ │ │ └── 1_0_0 │ │ │ │ └── disconf.sql │ │ └── application.properties │ │ └── java │ │ └── com │ │ └── baidu │ │ └── disconf │ │ └── web │ │ └── test │ │ ├── AllTestSuite.java │ │ └── common │ │ ├── BaseNoMockTC.java │ │ ├── BaseTestBeforeClass.java │ │ └── BaseTestCase.java ├── html │ ├── tools │ │ ├── node_modules │ │ │ ├── ejs │ │ │ │ ├── .gitmodules │ │ │ │ ├── test │ │ │ │ │ └── fixtures │ │ │ │ │ │ ├── backslash.ejs │ │ │ │ │ │ ├── backslash.html │ │ │ │ │ │ ├── para.ejs │ │ │ │ │ │ ├── user.ejs │ │ │ │ │ │ ├── pet.ejs │ │ │ │ │ │ ├── double-quote.html │ │ │ │ │ │ ├── fail.ejs │ │ │ │ │ │ ├── single-quote.html │ │ │ │ │ │ ├── single-quote.ejs │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ ├── includes │ │ │ │ │ │ ├── menu-item.ejs │ │ │ │ │ │ └── menu │ │ │ │ │ │ │ └── item.ejs │ │ │ │ │ │ ├── double-quote.ejs │ │ │ │ │ │ ├── messed.html │ │ │ │ │ │ ├── include.css.html │ │ │ │ │ │ ├── include.css.ejs │ │ │ │ │ │ ├── messed.ejs │ │ │ │ │ │ ├── error.ejs │ │ │ │ │ │ ├── no.newlines.html │ │ │ │ │ │ ├── include.ejs │ │ │ │ │ │ ├── menu.html │ │ │ │ │ │ ├── newlines.ejs │ │ │ │ │ │ ├── include.html │ │ │ │ │ │ ├── newlines.html │ │ │ │ │ │ ├── no.newlines.ejs │ │ │ │ │ │ ├── comments.html │ │ │ │ │ │ ├── error.out │ │ │ │ │ │ ├── comments.ejs │ │ │ │ │ │ └── menu.ejs │ │ │ │ ├── index.js │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── examples │ │ │ │ │ ├── list.ejs │ │ │ │ │ ├── functions.ejs │ │ │ │ │ ├── list.js │ │ │ │ │ ├── functions.js │ │ │ │ │ └── client.html │ │ │ │ ├── benchmark.js │ │ │ │ ├── Makefile │ │ │ │ └── lib │ │ │ │ │ └── utils.js │ │ │ └── eventproxy │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ └── debug │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── index.js │ │ │ │ │ ├── example │ │ │ │ │ ├── wildcards.js │ │ │ │ │ ├── app.js │ │ │ │ │ ├── worker.js │ │ │ │ │ └── browser.html │ │ │ │ │ └── component.json │ │ │ │ ├── .npmignore │ │ │ │ └── component.json │ │ ├── gen_html.sh │ │ └── gen_html.bat │ ├── .gitignore │ ├── dep │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ └── noie.css │ │ │ ├── img │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ └── glyphicons-halflings-white.png │ │ │ └── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ └── jquery-ui-1.10.4.custom │ │ │ ├── css │ │ │ └── ui-lightness │ │ │ │ └── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ └── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ └── datePicker.html │ ├── assets │ │ ├── img │ │ │ ├── bohemian.jpg │ │ │ ├── header-bg.png │ │ │ ├── index-big.jpg │ │ │ └── index-big.psd │ │ └── js │ │ │ ├── index.js │ │ │ ├── footer.js │ │ │ ├── zkinfo.js │ │ │ ├── newapp.js │ │ │ ├── modify_password.js │ │ │ └── newconfigitem.js │ ├── unitTpl │ │ ├── basefoot.html.tpl │ │ ├── basehead.html.tpl │ │ ├── leftbar.html.tpl │ │ └── nav.html.tpl │ ├── build.sh │ └── mainTpl │ │ └── index.tpl.html ├── sql │ ├── 201512 │ │ └── 20151225.sql │ ├── 20160701 │ │ └── 20160701.sql │ ├── deprecated │ │ ├── 20141201 │ │ │ └── .gitignore │ │ ├── 20141226 │ │ │ └── .gitignore │ │ ├── 20150101 │ │ │ └── disconf.sql │ │ ├── 20150320 │ │ │ └── disconf.sql │ │ ├── 20150611 │ │ │ └── .gitignore │ │ ├── .gitignore │ │ └── readme.txt │ └── readme.md ├── profile │ └── rd │ │ ├── .gitignore │ │ ├── zoo.properties │ │ ├── jdbc-mysql.properties │ │ ├── application-demo.properties │ │ ├── redis-config.properties │ │ └── log4j.properties ├── .gitignore └── deploy │ └── build_java.sh ├── docs ├── .gitignore ├── source │ ├── others │ │ ├── index.rst │ │ ├── sponsor.md │ │ └── src │ │ │ ├── sponsor.rst │ │ │ └── users.rst │ ├── config │ │ └── index.rst │ ├── quick │ │ └── index.rst │ ├── question │ │ ├── index.rst │ │ ├── src │ │ │ ├── disconf-web-question.rst │ │ │ └── disconf-question.rst │ │ ├── disconf-web-question.md │ │ └── disconf-question.md │ ├── install │ │ ├── index.rst │ │ ├── 01.md │ │ └── src │ │ │ └── 01.rst │ ├── tutorial-web │ │ ├── index.rst │ │ └── Tutorial6.md │ ├── design │ │ ├── index.rst │ │ ├── 局限性和注意事项.md │ │ └── src │ │ │ └── 局限性和注意事项.rst │ ├── tutorial-client │ │ ├── Tutorial10.md │ │ ├── src │ │ │ ├── Tutorial10.rst │ │ │ └── Tutorial7.rst │ │ ├── Tutorial7.md │ │ ├── index.rst │ │ ├── Tutorial9.md │ │ └── Tutorial13-unify-notify.md │ └── index.rst ├── README.md └── myMake.sh ├── sql └── .gitignore ├── disconf-core ├── README.md ├── .gitignore └── src │ ├── main │ └── java │ │ └── com │ │ └── baidu │ │ └── disconf │ │ └── core │ │ └── common │ │ ├── restful │ │ ├── core │ │ │ └── UnreliableInterface.java │ │ ├── retry │ │ │ └── RetryStrategy.java │ │ └── RestfulFactory.java │ │ ├── utils │ │ ├── http │ │ │ ├── HttpResponseCallbackHandler.java │ │ │ └── impl │ │ │ │ └── HttpResponseCallbackHandlerJsonHandler.java │ │ ├── MyStringUtils.java │ │ ├── ZooUtils.java │ │ └── GsonUtils.java │ │ └── json │ │ └── ValueVo.java │ └── test │ └── java │ └── com │ └── baidu │ └── disconf │ └── core │ └── test │ ├── path │ └── ZooPathMgrTestCase.java │ ├── utils │ └── MyStringUtilsTestCase.java │ └── TestSuite.java ├── disconf-client ├── src │ ├── test │ │ ├── resources │ │ │ ├── testJson.json │ │ │ ├── testProperties.properties │ │ │ ├── res │ │ │ │ └── testXml.xml │ │ │ ├── testXml.xml │ │ │ └── applicationContext.xml │ │ └── java │ │ │ └── com │ │ │ └── baidu │ │ │ └── disconf │ │ │ └── client │ │ │ └── test │ │ │ ├── watch │ │ │ ├── WatchMgrTestCase.java │ │ │ └── mock │ │ │ │ └── WatchMgrMock.java │ │ │ ├── config │ │ │ └── ConfigMgrTestCase.java │ │ │ ├── core │ │ │ └── DisconfCoreMgrTestCase.java │ │ │ ├── store │ │ │ └── DisconfStoreMgrTestCase.java │ │ │ ├── model │ │ │ ├── EmptyConf.java │ │ │ ├── ServiceA2UpdateCallback.java │ │ │ ├── ServiceA.java │ │ │ └── ServiceAUpdateCallback.java │ │ │ ├── scan │ │ │ └── ScanMgrTestCase.java │ │ │ ├── support │ │ │ └── utils │ │ │ │ └── DirUtils.java │ │ │ └── TestSuite.java │ └── main │ │ ├── java │ │ └── com │ │ │ └── baidu │ │ │ └── disconf │ │ │ └── client │ │ │ ├── addons │ │ │ └── properties │ │ │ │ ├── ReconfigurableBean.java │ │ │ │ ├── IReloadablePropertiesListener.java │ │ │ │ ├── IReconfigurationAware.java │ │ │ │ ├── ReloadableProperties.java │ │ │ │ ├── PropertiesReloadedEvent.java │ │ │ │ └── ReloadConfiguration.java │ │ │ ├── common │ │ │ ├── update │ │ │ │ ├── IDisconfUpdate.java │ │ │ │ ├── IDisconfUpdatePipeline.java │ │ │ │ └── IDisconfSysUpdate.java │ │ │ ├── constants │ │ │ │ └── Constants.java │ │ │ ├── annotations │ │ │ │ ├── DisconfFileItem.java │ │ │ │ ├── DisconfActiveBackupService.java │ │ │ │ ├── DisconfUpdateService.java │ │ │ │ ├── DisconfItem.java │ │ │ │ └── DisconfFile.java │ │ │ └── model │ │ │ │ └── DisConfCommonModel.java │ │ │ ├── store │ │ │ ├── DisconfStorePipelineProcessor.java │ │ │ ├── processor │ │ │ │ ├── impl │ │ │ │ │ └── DisconfStorePipelineProcessorImpl.java │ │ │ │ └── model │ │ │ │ │ └── DisconfValue.java │ │ │ └── DisconfStoreProcessorFactory.java │ │ │ ├── core │ │ │ ├── filetype │ │ │ │ ├── DisconfFileTypeProcessor.java │ │ │ │ └── impl │ │ │ │ │ ├── DisconfXmlProcessorImpl.java │ │ │ │ │ └── DisconfAnyFileProcessorImpl.java │ │ │ ├── processor │ │ │ │ └── DisconfCoreProcessor.java │ │ │ └── DisconfCoreMgr.java │ │ │ ├── DisconfMgrBeanSecond.java │ │ │ ├── scan │ │ │ ├── inner │ │ │ │ └── statically │ │ │ │ │ ├── StaticScannerMgr.java │ │ │ │ │ ├── strategy │ │ │ │ │ ├── ScanStaticStrategy.java │ │ │ │ │ └── impl │ │ │ │ │ │ └── SpringScanStatic.java │ │ │ │ │ └── StaticScannerMgrFactory.java │ │ │ ├── ScanFactory.java │ │ │ └── ScanMgr.java │ │ │ ├── config │ │ │ └── inner │ │ │ │ └── DisInnerConfigAnnotation.java │ │ │ ├── fetcher │ │ │ └── FetcherMgr.java │ │ │ ├── support │ │ │ └── registry │ │ │ │ ├── RegistryFactory.java │ │ │ │ └── Registry.java │ │ │ ├── usertools │ │ │ └── IDisconfDataGetter.java │ │ │ └── watch │ │ │ ├── inner │ │ │ └── DisconfSysUpdateCallback.java │ │ │ └── WatchMgr.java │ │ └── resources │ │ └── disconf_sys.properties ├── README.md ├── .gitignore └── deploy │ └── package-jar.xml ├── .travis.yml └── .gitignore /disconf-web/bin/.gitignore: -------------------------------------------------------------------------------- 1 | db -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | *.iml 3 | *.pyc -------------------------------------------------------------------------------- /disconf-web/src/main/.gitignore: -------------------------------------------------------------------------------- 1 | online-resources -------------------------------------------------------------------------------- /sql/.gitignore: -------------------------------------------------------------------------------- 1 | didi/2016-06-21-2.sql 2 | didi -------------------------------------------------------------------------------- /disconf-web/html/tools/node_modules/ejs/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /disconf-web/sql/deprecated/20150611/.gitignore: -------------------------------------------------------------------------------- 1 | *.sql -------------------------------------------------------------------------------- /disconf-web/bin/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'knightliao' 2 | -------------------------------------------------------------------------------- /disconf-web/bin/sql/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'knightliao' 2 | -------------------------------------------------------------------------------- /disconf-web/html/tools/gen_html.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | node parse.js -------------------------------------------------------------------------------- /disconf-web/sql/deprecated/.gitignore: -------------------------------------------------------------------------------- 1 | /20150301 2 | /20150420 -------------------------------------------------------------------------------- /disconf-web/html/.gitignore: -------------------------------------------------------------------------------- 1 | /output 2 | /.idea 3 | /.DS_Store 4 | -------------------------------------------------------------------------------- /disconf-web/sql/deprecated/20141201/.gitignore: -------------------------------------------------------------------------------- 1 | /disconf-*.sql 2 | -------------------------------------------------------------------------------- /disconf-web/sql/deprecated/20141226/.gitignore: -------------------------------------------------------------------------------- 1 | /disconf-*.sql 2 | -------------------------------------------------------------------------------- /disconf-core/README.md: -------------------------------------------------------------------------------- 1 | disconf-core 2 | ============ 3 | 4 | 分布式配置基础包模块 -------------------------------------------------------------------------------- /disconf-web/html/tools/node_modules/ejs/test/fixtures/backslash.ejs: -------------------------------------------------------------------------------- 1 | \foo -------------------------------------------------------------------------------- /disconf-web/html/tools/node_modules/ejs/test/fixtures/backslash.html: -------------------------------------------------------------------------------- 1 | \foo -------------------------------------------------------------------------------- /disconf-web/html/tools/node_modules/ejs/test/fixtures/para.ejs: -------------------------------------------------------------------------------- 1 |
hey
-------------------------------------------------------------------------------- /disconf-client/src/test/resources/testJson.json: -------------------------------------------------------------------------------- 1 | {"message": {}, "success": "true"} -------------------------------------------------------------------------------- /disconf-web/html/dep/bootstrap/css/noie.css: -------------------------------------------------------------------------------- 1 | .wmd-show { 2 | width: 628px; 3 | } -------------------------------------------------------------------------------- /disconf-web/html/tools/node_modules/ejs/test/fixtures/user.ejs: -------------------------------------------------------------------------------- 1 |loki's "wheelchair"
-------------------------------------------------------------------------------- /disconf-web/html/tools/node_modules/ejs/test/fixtures/fail.ejs: -------------------------------------------------------------------------------- 1 | <% function foo() return 'foo'; %> -------------------------------------------------------------------------------- /disconf-web/html/tools/node_modules/ejs/test/fixtures/single-quote.html: -------------------------------------------------------------------------------- 1 |loki's wheelchair
-------------------------------------------------------------------------------- /disconf-web/src/main/java/com/baidu/disconf/web/tools/.gitignore: -------------------------------------------------------------------------------- 1 | /UserCreateToolsInner.java 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: java 2 | 3 | after_success: 4 | - mvn clean cobertura:cobertura coveralls:report -------------------------------------------------------------------------------- /disconf-web/html/tools/gen_html.bat: -------------------------------------------------------------------------------- 1 | 2 | 3 | echo %~dp0 4 | 5 | cd %~dp0 6 | 7 | node parse.js 8 | -------------------------------------------------------------------------------- /disconf-web/html/tools/node_modules/ejs/test/fixtures/single-quote.ejs: -------------------------------------------------------------------------------- 1 |<%= 'loki' %>'s wheelchair
-------------------------------------------------------------------------------- /disconf-web/html/tools/node_modules/ejs/test/fixtures/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | foo: '<%= value %>'; 3 | } -------------------------------------------------------------------------------- /disconf-web/html/tools/node_modules/ejs/test/fixtures/includes/menu-item.ejs: -------------------------------------------------------------------------------- 1 |<%= "lo" + 'ki' %>'s "wheelchair"
-------------------------------------------------------------------------------- /disconf-web/html/tools/node_modules/ejs/test/fixtures/messed.html: -------------------------------------------------------------------------------- 1 |