├── console ├── controllers │ └── .gitkeep ├── models │ └── .gitkeep ├── runtime │ └── .gitignore ├── tests │ ├── _log │ │ └── .gitignore │ ├── _data │ │ └── dump.sql │ ├── .gitignore │ ├── unit │ │ ├── _bootstrap.php │ │ ├── TestCase.php │ │ └── DbTestCase.php │ ├── _helpers │ │ ├── CodeHelper.php │ │ ├── TestHelper.php │ │ └── WebHelper.php │ ├── unit.suite.yml │ └── _config.php └── config │ ├── .gitignore │ ├── main-local.php │ ├── params-local.php │ └── params.php ├── backend ├── models │ └── .gitkeep ├── config │ ├── bootstrap.php │ ├── params-local.php │ └── params.php ├── tests │ ├── _log │ │ └── .gitignore │ ├── _data │ │ └── dump.sql │ ├── unit │ │ ├── _bootstrap.php │ │ ├── TestCase.php │ │ └── DbTestCase.php │ ├── acceptance │ │ └── _bootstrap.php │ ├── functional │ │ └── _bootstrap.php │ ├── .gitignore │ ├── _helpers │ │ ├── CodeHelper.php │ │ ├── TestHelper.php │ │ └── WebHelper.php │ ├── unit.suite.yml │ └── _config.php ├── base │ ├── BaseBackModel.php │ ├── BaseBackModule.php │ ├── BaseBackAction.php │ └── BaseBackActiveRecord.php └── views │ └── content │ └── _include │ └── _forms │ ├── _color.php │ ├── _date.php │ ├── _file.php │ ├── _flash.php │ ├── _img.php │ ├── _radio.php │ ├── _text.php │ ├── _default.php │ ├── _select.php │ ├── _checkbox.php │ ├── _password.php │ ├── _textarea.php │ ├── _linkfield.php │ ├── _morevaluefield.php │ └── linkfieldselect.php ├── robots.txt ├── frontend ├── config │ ├── bootstrap.php │ ├── params-local.php │ └── params.php ├── tests │ ├── _log │ │ └── .gitignore │ ├── _data │ │ └── dump.sql │ ├── unit │ │ ├── _bootstrap.php │ │ ├── TestCase.php │ │ └── DbTestCase.php │ ├── acceptance │ │ ├── _bootstrap.php │ │ ├── AboutCept.php │ │ └── HomeCept.php │ ├── functional │ │ ├── _bootstrap.php │ │ ├── AboutCept.php │ │ └── HomeCept.php │ ├── .gitignore │ ├── _helpers │ │ ├── WebHelper.php │ │ ├── CodeHelper.php │ │ └── TestHelper.php │ ├── _pages │ │ └── AboutPage.php │ ├── unit.suite.yml │ └── _config.php ├── themes │ ├── default │ │ ├── 新建文本文档.txt │ │ └── content │ │ │ └── _include │ │ │ └── _formtypes │ │ │ ├── _date.php │ │ │ ├── _file.php │ │ │ ├── _img.php │ │ │ ├── _text.php │ │ │ ├── _color.php │ │ │ ├── _default.php │ │ │ ├── _editor.php │ │ │ ├── _flash.php │ │ │ ├── _radio.php │ │ │ ├── _checkbox.php │ │ │ ├── _password.php │ │ │ ├── _select.php │ │ │ ├── _textarea.php │ │ │ ├── _linkfield.php │ │ │ ├── _linkfieldselect.php │ │ │ └── _morevaluefield.php │ └── basic │ │ └── content │ │ └── _include │ │ └── _formtypes │ │ ├── _img.php │ │ ├── _color.php │ │ ├── _date.php │ │ ├── _default.php │ │ ├── _file.php │ │ ├── _flash.php │ │ ├── _radio.php │ │ ├── _text.php │ │ ├── _checkbox.php │ │ ├── _editor.php │ │ ├── _password.php │ │ ├── _select.php │ │ ├── _textarea.php │ │ ├── _linkfield.php │ │ ├── _linkfieldselect.php │ │ └── _morevaluefield.php ├── base │ ├── BaseFrontAction.php │ ├── BaseFrontModel.php │ ├── BaseFrontActiveRecord.php │ └── BaseFrontController.php └── widgets │ └── views │ └── loop-data │ ├── item-notime.php │ ├── item.php │ ├── item-bold.php │ └── fragment.php ├── static ├── assets │ └── .gitignore ├── common │ ├── libs │ │ ├── pikaday │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ └── .editorconfig │ │ └── kindeditor │ │ │ ├── asp │ │ │ └── JSON_2.0.4.asp │ │ │ ├── themes │ │ │ ├── common │ │ │ │ ├── rm.gif │ │ │ │ ├── blank.gif │ │ │ │ ├── flash.gif │ │ │ │ ├── media.gif │ │ │ │ ├── anchor.gif │ │ │ │ └── loading.gif │ │ │ ├── qq │ │ │ │ └── editor.gif │ │ │ └── default │ │ │ │ ├── default.png │ │ │ │ └── background.png │ │ │ ├── asp.net │ │ │ └── bin │ │ │ │ └── LitJSON.dll │ │ │ ├── jsp │ │ │ └── lib │ │ │ │ ├── commons-io-1.4.jar │ │ │ │ ├── json_simple-1.1.jar │ │ │ │ └── commons-fileupload-1.2.1.jar │ │ │ ├── plugins │ │ │ ├── emoticons │ │ │ │ └── images │ │ │ │ │ ├── 0.gif │ │ │ │ │ ├── 1.gif │ │ │ │ │ ├── 10.gif │ │ │ │ │ ├── 11.gif │ │ │ │ │ ├── 12.gif │ │ │ │ │ ├── 13.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 │ │ │ │ │ ├── 100.gif │ │ │ │ │ ├── 101.gif │ │ │ │ │ ├── 102.gif │ │ │ │ │ ├── 103.gif │ │ │ │ │ ├── 104.gif │ │ │ │ │ ├── 105.gif │ │ │ │ │ ├── 106.gif │ │ │ │ │ ├── 107.gif │ │ │ │ │ ├── 108.gif │ │ │ │ │ ├── 109.gif │ │ │ │ │ ├── 110.gif │ │ │ │ │ ├── 111.gif │ │ │ │ │ ├── 112.gif │ │ │ │ │ ├── 113.gif │ │ │ │ │ ├── 114.gif │ │ │ │ │ ├── 115.gif │ │ │ │ │ ├── 116.gif │ │ │ │ │ ├── 117.gif │ │ │ │ │ ├── 118.gif │ │ │ │ │ ├── 119.gif │ │ │ │ │ ├── 120.gif │ │ │ │ │ ├── 121.gif │ │ │ │ │ ├── 122.gif │ │ │ │ │ ├── 123.gif │ │ │ │ │ ├── 124.gif │ │ │ │ │ ├── 125.gif │ │ │ │ │ ├── 126.gif │ │ │ │ │ ├── 127.gif │ │ │ │ │ ├── 128.gif │ │ │ │ │ ├── 129.gif │ │ │ │ │ ├── 130.gif │ │ │ │ │ ├── 131.gif │ │ │ │ │ ├── 132.gif │ │ │ │ │ ├── 133.gif │ │ │ │ │ ├── 134.gif │ │ │ │ │ └── static.gif │ │ │ ├── image │ │ │ │ └── images │ │ │ │ │ ├── refresh.png │ │ │ │ │ ├── align_left.gif │ │ │ │ │ ├── align_right.gif │ │ │ │ │ └── align_top.gif │ │ │ ├── filemanager │ │ │ │ └── images │ │ │ │ │ ├── go-up.gif │ │ │ │ │ ├── file-16.gif │ │ │ │ │ ├── file-64.gif │ │ │ │ │ ├── folder-16.gif │ │ │ │ │ └── folder-64.gif │ │ │ ├── multiimage │ │ │ │ └── images │ │ │ │ │ ├── image.png │ │ │ │ │ ├── swfupload.swf │ │ │ │ │ ├── select-files-en.png │ │ │ │ │ └── select-files-zh_CN.png │ │ │ └── template │ │ │ │ └── html │ │ │ │ └── 1.html │ │ │ ├── attached │ │ │ └── image │ │ │ │ └── 20140713 │ │ │ │ ├── 20140713112949_64137.gif │ │ │ │ ├── 20140713113220_87063.jpg │ │ │ │ ├── 20140713121236_74368.gif │ │ │ │ └── 20140713121259_52876.gif │ │ │ └── examples │ │ │ └── jquery-ui │ │ │ └── css │ │ │ └── smoothness │ │ │ └── images │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ └── images │ │ ├── ad680.gif │ │ ├── yuan.png │ │ ├── yuan02.png │ │ ├── banner01.jpg │ │ ├── banner02.jpg │ │ ├── banner03.jpg │ │ ├── banner04.jpg │ │ ├── banner05.jpg │ │ ├── leftbtn.png │ │ ├── rightbtn.png │ │ ├── leftbtn02.png │ │ └── rightbtn02.png └── themes │ └── default │ └── images │ ├── ad2.png │ ├── nav.jpg │ ├── ad680.gif │ ├── dian.jpg │ ├── menu.png │ ├── yuan.png │ ├── banner01.jpg │ ├── banner02.jpg │ ├── banner03.jpg │ ├── banner04.jpg │ ├── banner05.jpg │ ├── leftbtn.png │ ├── menuli.png │ ├── rightbtn.png │ ├── yuan02.png │ ├── bg_Title1.jpg │ ├── bg_Title2.gif │ ├── bg_Title9.gif │ ├── leftbtn02.png │ ├── rightbtn02.png │ └── bg_bigtitle.jpg ├── vendor ├── bower │ ├── jquery │ │ ├── src │ │ │ ├── outro.js │ │ │ ├── sizzle │ │ │ │ └── test │ │ │ │ │ └── data │ │ │ │ │ └── empty.js │ │ │ ├── selector.js │ │ │ ├── var │ │ │ │ ├── arr.js │ │ │ │ ├── rnotwhite.js │ │ │ │ ├── strundefined.js │ │ │ │ ├── push.js │ │ │ │ ├── slice.js │ │ │ │ ├── class2type.js │ │ │ │ ├── concat.js │ │ │ │ ├── indexOf.js │ │ │ │ ├── pnum.js │ │ │ │ ├── toString.js │ │ │ │ ├── hasOwn.js │ │ │ │ └── support.js │ │ │ ├── ajax │ │ │ │ ├── var │ │ │ │ │ ├── rquery.js │ │ │ │ │ └── nonce.js │ │ │ │ └── parseJSON.js │ │ │ ├── css │ │ │ │ └── var │ │ │ │ │ ├── rmargin.js │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ ├── rnumnonpx.js │ │ │ │ │ └── getStyles.js │ │ │ ├── data │ │ │ │ └── var │ │ │ │ │ ├── data_priv.js │ │ │ │ │ └── data_user.js │ │ │ ├── manipulation │ │ │ │ └── var │ │ │ │ │ └── rcheckableType.js │ │ │ ├── core │ │ │ │ └── var │ │ │ │ │ └── rsingleTag.js │ │ │ ├── traversing │ │ │ │ └── var │ │ │ │ │ └── rneedsContext.js │ │ │ ├── event │ │ │ │ └── support.js │ │ │ ├── attributes.js │ │ │ ├── deprecated.js │ │ │ └── effects │ │ │ │ └── animatedSelector.js │ │ ├── .bowerrc │ │ ├── .travis.yml │ │ ├── .jscsrc │ │ ├── .gitattributes │ │ ├── .npmignore │ │ └── .jshintrc │ ├── yii2-pjax │ │ ├── test │ │ │ ├── views │ │ │ │ ├── empty.erb │ │ │ │ ├── boom.erb │ │ │ │ ├── nested_title.erb │ │ │ │ ├── referer.erb │ │ │ │ ├── fragment.erb │ │ │ │ ├── hello.erb │ │ │ │ ├── timeout.erb │ │ │ │ ├── double_title.erb │ │ │ │ ├── env.erb │ │ │ │ ├── long.erb │ │ │ │ ├── anchor.erb │ │ │ │ └── scripts.erb │ │ │ ├── evaled.js │ │ │ └── favicon.ico │ │ └── bower.json │ ├── bootstrap │ │ ├── grunt │ │ │ └── .jshintrc │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── dist │ │ │ └── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ └── less │ │ │ └── mixins │ │ │ ├── center-block.less │ │ │ ├── text-emphasis.less │ │ │ ├── size.less │ │ │ ├── opacity.less │ │ │ ├── background-variant.less │ │ │ ├── text-overflow.less │ │ │ ├── tab-focus.less │ │ │ ├── resize.less │ │ │ ├── labels.less │ │ │ ├── progress-bar.less │ │ │ ├── reset-filter.less │ │ │ └── nav-divider.less │ ├── jquery.inputmask │ │ └── js │ │ │ └── phone-codes │ │ │ └── phone-nl.js │ ├── typeahead.js │ │ ├── src │ │ │ └── bloodhound │ │ │ │ └── version.js │ │ ├── .jshintrc │ │ └── bower.json │ └── punycode │ │ └── bower.json ├── ezyang │ └── htmlpurifier │ │ ├── VERSION │ │ ├── benchmarks │ │ ├── .htaccess │ │ └── samples │ │ │ └── Lexer │ │ │ ├── 4.html │ │ │ └── DISCLAIMER.txt │ │ ├── maintenance │ │ ├── .htaccess │ │ ├── regenerate-docs.sh │ │ ├── merge-library.php │ │ └── compile-doxygen.sh │ │ ├── .gitattributes │ │ ├── tests │ │ ├── HTMLPurifier │ │ │ ├── PHPT │ │ │ │ ├── .gitignore │ │ │ │ ├── stub.phpt │ │ │ │ ├── func.phpt │ │ │ │ └── utf8.phpt │ │ │ ├── StringHashParser │ │ │ │ ├── Default.txt │ │ │ │ ├── OverrideSingle.txt │ │ │ │ ├── AppendMultiline.txt │ │ │ │ └── Simple.txt │ │ │ ├── ConfigTest-create.ini │ │ │ ├── ConfigTest-finalize.ini │ │ │ ├── HTMLT │ │ │ │ ├── whitespace-preserve.htmlt │ │ │ │ ├── empty.htmlt │ │ │ │ ├── basic.htmlt │ │ │ │ ├── inline-list-loop.htmlt │ │ │ │ ├── trusted-comments.htmlt │ │ │ │ ├── file-uri.htmlt │ │ │ │ ├── id-default.htmlt │ │ │ │ ├── disable-uri.htmlt │ │ │ │ ├── name.htmlt │ │ │ │ ├── trusted-comments-required.htmlt │ │ │ │ ├── blacklist-preserve.htmlt │ │ │ │ ├── trusted-comments-table.htmlt │ │ │ │ ├── style-onload.htmlt │ │ │ │ ├── id-enabled.htmlt │ │ │ │ ├── css-allowed-preserve.htmlt │ │ │ │ ├── safe-iframe-invalid.htmlt │ │ │ │ ├── inline-wraps-block.htmlt │ │ │ │ ├── strict-underline.htmlt │ │ │ │ ├── blacklist-remove.htmlt │ │ │ │ ├── strict-blockquote.htmlt │ │ │ │ ├── tidy-background.htmlt │ │ │ │ ├── css-allowed-remove.htmlt │ │ │ │ ├── allowed-preserve.htmlt │ │ │ │ ├── strict-blockquote-with-inline.htmlt │ │ │ │ ├── allowed-remove.htmlt │ │ │ │ ├── shift-jis-preserve-yen.htmlt │ │ │ │ ├── id-img.htmlt │ │ │ │ └── shift-jis-remove-yen.htmlt │ │ │ ├── ConfigSchema │ │ │ │ └── Validator │ │ │ │ │ └── directive │ │ │ │ │ ├── ignoreNamespace.vtest │ │ │ │ │ ├── defaultNullWithAllowed.vtest │ │ │ │ │ ├── descriptionNotEmpty.vtest │ │ │ │ │ ├── typeDefined.vtest │ │ │ │ │ ├── typeExists.vtest │ │ │ │ │ ├── defaultType.vtest │ │ │ │ │ ├── allowedNotEmpty.vtest │ │ │ │ │ ├── defaultIsAllowed.vtest │ │ │ │ │ ├── allowedIsString.vtest │ │ │ │ │ ├── valueAliasesAliasIsString.vtest │ │ │ │ │ ├── typeWithAllowedIsStringType.vtest │ │ │ │ │ ├── unique.vtest │ │ │ │ │ ├── valueAliasesNotAliasSelf.vtest │ │ │ │ │ ├── valueAliasesRealIsString.vtest │ │ │ │ │ ├── typeWithValueAliasesIsStringType.vtest │ │ │ │ │ ├── valueAliasesAliasNotAllowed.vtest │ │ │ │ │ └── valueAliasesRealAllowed.vtest │ │ │ ├── ConfigTest-loadIni.ini │ │ │ ├── DefinitionCache │ │ │ │ └── SerializerTest │ │ │ │ │ └── README │ │ │ ├── DefinitionTestable.php │ │ │ ├── AttrTransformHarness.php │ │ │ └── HTMLModuleHarness.php │ │ ├── default_load.php │ │ └── tmp │ │ │ └── README │ │ ├── plugins │ │ └── phorum │ │ │ └── .gitignore │ │ ├── smoketests │ │ ├── test-schema │ │ │ ├── info.ini │ │ │ ├── Directive.txt │ │ │ ├── Type.txt │ │ │ ├── Type.int.txt │ │ │ ├── Type.bool.txt │ │ │ ├── Type.float.txt │ │ │ ├── Type.mixed.txt │ │ │ ├── Type.list.txt │ │ │ ├── Type.string.txt │ │ │ ├── Type.text.txt │ │ │ ├── Type.istring.txt │ │ │ ├── Type.hash.txt │ │ │ ├── Type.itext.txt │ │ │ ├── Directive.Allowed.txt │ │ │ ├── Type.nullbool.txt │ │ │ ├── Directive.Deprecated.txt │ │ │ └── Type.lookup.txt │ │ └── img.png │ │ ├── art │ │ ├── logo.png │ │ ├── 100cases.png │ │ ├── favicon.ico │ │ ├── powered.png │ │ ├── 1000passes.png │ │ ├── icon-16x16.png │ │ ├── icon-32x32.png │ │ ├── icon-64x64.png │ │ └── logo-large.png │ │ ├── library │ │ ├── HTMLPurifier │ │ │ ├── ConfigSchema │ │ │ │ ├── schema │ │ │ │ │ ├── info.ini │ │ │ │ │ ├── Attr.IDBlacklist.txt │ │ │ │ │ ├── HTML.Nofollow.txt │ │ │ │ │ ├── HTML.TidyAdd.txt │ │ │ │ │ ├── HTML.TidyRemove.txt │ │ │ │ │ ├── CSS.Proprietary.txt │ │ │ │ │ ├── Test.ForceNoIconv.txt │ │ │ │ │ ├── Core.EscapeInvalidTags.txt │ │ │ │ │ ├── CSS.DefinitionRev.txt │ │ │ │ │ ├── URI.DefinitionRev.txt │ │ │ │ │ ├── Attr.AllowedClasses.txt │ │ │ │ │ ├── HTML.Strict.txt │ │ │ │ │ └── CSS.AllowImportant.txt │ │ │ │ └── Exception.php │ │ │ ├── DefinitionCache │ │ │ │ └── Serializer │ │ │ │ │ └── README │ │ │ ├── Printer │ │ │ │ └── ConfigForm.js │ │ │ ├── Token │ │ │ │ └── Start.php │ │ │ ├── Language │ │ │ │ ├── classes │ │ │ │ │ └── en-x-test.php │ │ │ │ └── messages │ │ │ │ │ └── en-x-test.php │ │ │ ├── VarParserException.php │ │ │ └── Exception.php │ │ ├── HTMLPurifier.composer.php │ │ └── HTMLPurifier.path.php │ │ └── docs │ │ ├── specimens │ │ └── img.png │ │ └── fixquotes.htc ├── yiisoft │ ├── yii2 │ │ ├── .htaccess │ │ └── captcha │ │ │ └── SpicyRice.ttf │ ├── yii2-debug │ │ ├── assets │ │ │ └── bg.png │ │ └── views │ │ │ └── default │ │ │ └── panels │ │ │ └── mail │ │ │ └── summary.php │ └── yii2-gii │ │ └── assets │ │ └── logo.png ├── swiftmailer │ └── swiftmailer │ │ ├── VERSION │ │ ├── tests │ │ ├── _samples │ │ │ ├── files │ │ │ │ ├── data.txt │ │ │ │ └── textfile.zip │ │ │ └── smime │ │ │ │ └── CA.srl │ │ ├── StreamCollector.php │ │ └── fixtures │ │ │ └── EsmtpTransportFixture.php │ │ ├── .gitattributes │ │ ├── doc │ │ ├── uml │ │ │ ├── Mime.graffle │ │ │ ├── Encoders.graffle │ │ │ └── Transports.graffle │ │ └── index.rst │ │ └── lib │ │ └── dependency_maps │ │ └── message_deps.php ├── cebe │ └── markdown │ │ ├── tests │ │ ├── markdown-data │ │ │ ├── md1_nested_blockquotes.md │ │ │ ├── paragraph.md │ │ │ ├── newline.md │ │ │ ├── paragraph.html │ │ │ ├── test_precedence.md │ │ │ ├── newline.html │ │ │ ├── test_precedence.html │ │ │ ├── README │ │ │ ├── md1_tidyness.md │ │ │ ├── blockquote.md │ │ │ ├── md1_nested_blockquotes.html │ │ │ ├── list_and_reference.md │ │ │ ├── md1_literal_quotes_in_titles.md │ │ │ ├── md1_strong_and_em_together.md │ │ │ ├── md1_tidyness.html │ │ │ ├── blockquote.html │ │ │ ├── hr.html │ │ │ ├── list_and_reference.html │ │ │ ├── md1_literal_quotes_in_titles.html │ │ │ ├── md1_blockquotes_with_code_blocks.md │ │ │ ├── md1_inline_html_avanced.html │ │ │ ├── md1_inline_html_avanced.md │ │ │ ├── hr.md │ │ │ ├── md1_inline_html_comments.html │ │ │ ├── emphasis.md │ │ │ ├── md1_links_inline_style.md │ │ │ ├── list-marker-in-paragraph.md │ │ │ ├── md1_inline_html_comments.md │ │ │ ├── md1_strong_and_em_together.html │ │ │ ├── list-marker-in-paragraph.html │ │ │ ├── md1_blockquotes_with_code_blocks.html │ │ │ ├── blockquote-nested.md │ │ │ ├── code.md │ │ │ └── inline-html.md │ │ ├── github-data │ │ │ ├── lists.md │ │ │ ├── del.md │ │ │ ├── issue-33.md │ │ │ ├── issue-33.html │ │ │ ├── lists.html │ │ │ ├── del.html │ │ │ ├── test_precedence.html │ │ │ ├── test_precedence.md │ │ │ ├── github-code-in-numbered-list.md │ │ │ ├── issue-38.md │ │ │ └── github-code-in-numbered-list.html │ │ ├── bootstrap.php │ │ └── extra-data │ │ │ ├── test_precedence.html │ │ │ ├── test_precedence.md │ │ │ └── fenced-code.md │ │ └── .scrutinizer.yml ├── autoload.php ├── composer │ └── autoload_classmap.php └── fzaninotto │ └── faker │ ├── Makefile │ ├── phpunit.xml.dist │ ├── .travis.yml │ └── src │ └── Faker │ └── Provider │ └── ja_JP │ └── PhoneNumber.php ├── common ├── tests │ ├── _log │ │ └── .gitignore │ ├── _data │ │ └── dump.sql │ ├── unit │ │ ├── _bootstrap.php │ │ ├── TestCase.php │ │ └── DbTestCase.php │ ├── _helpers │ │ ├── CodeHelper.php │ │ ├── TestHelper.php │ │ └── WebHelper.php │ ├── fixtures │ │ └── UserFixture.php │ ├── unit.suite.yml │ └── _config.php └── config │ ├── params-local.php │ └── params.php ├── .bowerrc ├── README.md ├── favicon.ico ├── environments ├── dev │ ├── backend │ │ └── config │ │ │ └── params-local.php │ ├── common │ │ └── config │ │ │ └── params-local.php │ ├── console │ │ └── config │ │ │ ├── main-local.php │ │ │ └── params-local.php │ └── frontend │ │ └── config │ │ └── params-local.php └── prod │ ├── backend │ └── config │ │ ├── main-local.php │ │ └── params-local.php │ ├── common │ └── config │ │ └── params-local.php │ ├── console │ └── config │ │ ├── main-local.php │ │ └── params-local.php │ └── frontend │ └── config │ ├── main-local.php │ └── params-local.php ├── data ├── preview │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── 10.png │ └── 11.png └── attachment │ ├── test.jpg │ ├── test │ ├── ad2.png │ └── xxx.jpg │ ├── image │ └── 20140713 │ │ ├── 20140713120159_29187.jpg │ │ ├── 20140713121435_57859.png │ │ ├── 20140713121436_21461.gif │ │ ├── 20140713121436_26177.gif │ │ ├── 20140713121436_26927.jpg │ │ ├── 20140713121436_51000.gif │ │ ├── 20140713121436_51811.jpg │ │ ├── 20140713121436_57735.jpg │ │ ├── 20140713121436_72902.gif │ │ ├── 20140713121436_80513.gif │ │ ├── 20140713121437_12395.jpg │ │ ├── 20140713121437_13059.png │ │ ├── 20140713121437_18541.png │ │ ├── 20140713121437_33417.png │ │ ├── 20140713121437_34211.png │ │ ├── 20140713121437_40574.png │ │ ├── 20140713121437_68713.png │ │ ├── 20140713121437_87398.png │ │ ├── 20140713121437_89032.png │ │ ├── 20140713121437_93350.png │ │ ├── 20140713121437_97201.png │ │ ├── 20140713122236_95690.jpg │ │ ├── 20140713130225_37237.jpg │ │ ├── 20140713130901_57872.gif │ │ ├── 20140713130943_90395.jpg │ │ ├── 20140713131046_78617.jpg │ │ ├── 20140713131203_78389.jpg │ │ └── 20140713131215_67779.png │ └── image_test │ ├── 20140713 │ ├── 20140713132342_83366.jpg │ ├── 20140713133231_63022.jpg │ ├── 20140713133532_96171.png │ ├── 20140713133758_70600.jpg │ ├── 20140713134059_61657.gif │ ├── 20140713134203_32175.jpg │ └── 20140713134333_12466.gif │ └── 20140716 │ ├── 20140716091603_86146.png │ └── 20140716133318_57219.png └── components └── base ├── BaseModel.php └── BaseModule.php /console/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/models/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /console/models/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /backend/config/bootstrap.php: -------------------------------------------------------------------------------- 1 | 500
2 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/VERSION: -------------------------------------------------------------------------------- 1 | Swift-5.3.0 2 | -------------------------------------------------------------------------------- /backend/config/params-local.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/README.md -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/favicon.ico -------------------------------------------------------------------------------- /static/common/libs/pikaday/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .c9revisions 3 | -------------------------------------------------------------------------------- /vendor/bower/jquery/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } -------------------------------------------------------------------------------- /vendor/bower/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define([ "./selector-sizzle" ]); 2 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/.gitattributes: -------------------------------------------------------------------------------- 1 | configdoc/usage.xml -crlf 2 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/PHPT/.gitignore: -------------------------------------------------------------------------------- 1 | *.php 2 | -------------------------------------------------------------------------------- /environments/dev/backend/config/params-local.php: -------------------------------------------------------------------------------- 1 | 'admin@example.com', 4 | ]; 5 | -------------------------------------------------------------------------------- /console/config/params.php: -------------------------------------------------------------------------------- 1 | 'admin@example.com', 4 | ]; 5 | -------------------------------------------------------------------------------- /data/attachment/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/data/attachment/test.jpg -------------------------------------------------------------------------------- /frontend/config/params.php: -------------------------------------------------------------------------------- 1 | 'admin@example.com', 4 | ]; 5 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^margin/); 3 | }); 4 | -------------------------------------------------------------------------------- /vendor/bower/yii2-pjax/test/evaled.js: -------------------------------------------------------------------------------- 1 | window.evaledSrcScript = true 2 | window.evaledScriptLoaded() 3 | -------------------------------------------------------------------------------- /common/tests/unit/_bootstrap.php: -------------------------------------------------------------------------------- 1 | foo 2 | > 3 | > > bar 4 | > 5 | > foo 6 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/smoketests/test-schema/info.ini: -------------------------------------------------------------------------------- 1 | name = "Test Schema" 2 | 3 | ; vim: et sw=4 sts=4 4 | -------------------------------------------------------------------------------- /backend/tests/acceptance/_bootstrap.php: -------------------------------------------------------------------------------- 1 | type pairs 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/concat.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.concat; 5 | }); 6 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.indexOf; 5 | }); 6 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/paragraph.md: -------------------------------------------------------------------------------- 1 | paragraph1 word2 2 | 3 | paragraph2 word2 word3 4 | paragraph2 line2 -------------------------------------------------------------------------------- /static/themes/default/images/ad680.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/static/themes/default/images/ad680.gif -------------------------------------------------------------------------------- /static/themes/default/images/dian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/static/themes/default/images/dian.jpg -------------------------------------------------------------------------------- /static/themes/default/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/static/themes/default/images/menu.png -------------------------------------------------------------------------------- /static/themes/default/images/yuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/static/themes/default/images/yuan.png -------------------------------------------------------------------------------- /vendor/bower/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return [ "Top", "Right", "Bottom", "Left" ]; 3 | }); 4 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source; 3 | }); 4 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/newline.md: -------------------------------------------------------------------------------- 1 | This is a paragraph with a newline 2 | next line 3 | 4 | next par 5 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/ConfigTest-create.ini: -------------------------------------------------------------------------------- 1 | [Cake] 2 | Sprinkles = 42 3 | 4 | ; vim: et sw=4 sts=4 5 | -------------------------------------------------------------------------------- /static/themes/default/images/banner01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/static/themes/default/images/banner01.jpg -------------------------------------------------------------------------------- /static/themes/default/images/banner02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/static/themes/default/images/banner02.jpg -------------------------------------------------------------------------------- /static/themes/default/images/banner03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/static/themes/default/images/banner03.jpg -------------------------------------------------------------------------------- /static/themes/default/images/banner04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/static/themes/default/images/banner04.jpg -------------------------------------------------------------------------------- /static/themes/default/images/banner05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/static/themes/default/images/banner05.jpg -------------------------------------------------------------------------------- /static/themes/default/images/leftbtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/static/themes/default/images/leftbtn.png -------------------------------------------------------------------------------- /static/themes/default/images/menuli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/static/themes/default/images/menuli.png -------------------------------------------------------------------------------- /static/themes/default/images/rightbtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/static/themes/default/images/rightbtn.png -------------------------------------------------------------------------------- /static/themes/default/images/yuan02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/static/themes/default/images/yuan02.png -------------------------------------------------------------------------------- /vendor/bower/jquery/src/data/var/data_priv.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | }); 6 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/data/var/data_user.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | }); 6 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^(?:checkbox|radio)$/i); 3 | }); 4 | -------------------------------------------------------------------------------- /vendor/bower/yii2-pjax/test/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/vendor/bower/yii2-pjax/test/favicon.ico -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/art/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/vendor/ezyang/htmlpurifier/art/logo.png -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/info.ini: -------------------------------------------------------------------------------- 1 | name = "HTML Purifier" 2 | 3 | ; vim: et sw=4 sts=4 4 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-debug/assets/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/vendor/yiisoft/yii2-debug/assets/bg.png -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-gii/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/vendor/yiisoft/yii2-gii/assets/logo.png -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/captcha/SpicyRice.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/vendor/yiisoft/yii2/captcha/SpicyRice.ttf -------------------------------------------------------------------------------- /static/themes/default/images/bg_Title1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/static/themes/default/images/bg_Title1.jpg -------------------------------------------------------------------------------- /static/themes/default/images/bg_Title2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/static/themes/default/images/bg_Title2.gif -------------------------------------------------------------------------------- /static/themes/default/images/bg_Title9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/static/themes/default/images/bg_Title9.gif -------------------------------------------------------------------------------- /static/themes/default/images/leftbtn02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/static/themes/default/images/leftbtn02.png -------------------------------------------------------------------------------- /static/themes/default/images/rightbtn02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/static/themes/default/images/rightbtn02.png -------------------------------------------------------------------------------- /vendor/bower/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core" 3 | ], function( jQuery ) { 4 | return jQuery.now(); 5 | }); 6 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/github-data/lists.md: -------------------------------------------------------------------------------- 1 | Text before list: 2 | * item 1, 3 | * item 2, 4 | * item 3. 5 | 6 | Text after list. -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/paragraph.html: -------------------------------------------------------------------------------- 1 |paragraph1 word2
2 |paragraph2 word2 word3 3 | paragraph2 line2
4 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/test_precedence.md: -------------------------------------------------------------------------------- 1 | Not a headline but two HR: 2 | 3 | *** 4 | --- 5 | 6 | --- 7 | *** 8 | 9 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/art/100cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/vendor/ezyang/htmlpurifier/art/100cases.png -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/art/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/vendor/ezyang/htmlpurifier/art/favicon.ico -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/art/powered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/vendor/ezyang/htmlpurifier/art/powered.png -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/ConfigTest-finalize.ini: -------------------------------------------------------------------------------- 1 | [Poem] 2 | Meter = alexandrine 3 | 4 | ; vim: et sw=4 sts=4 5 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLT/whitespace-preserve.htmlt: -------------------------------------------------------------------------------- 1 | --HTML-- 2 | Foo bar 3 | --# vim: et sw=4 sts=4 4 | -------------------------------------------------------------------------------- /static/themes/default/images/bg_bigtitle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/static/themes/default/images/bg_bigtitle.jpg -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/newline.html: -------------------------------------------------------------------------------- 1 |This is a paragraph with a newline
2 | next line
next par
4 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/test_precedence.html: -------------------------------------------------------------------------------- 1 |Not a headline but two HR:
2 |<%= title 'Hello' %> Hello!
2 | 3 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/blockquote.md: -------------------------------------------------------------------------------- 1 | > test test 2 | > test 3 | 4 | > test 5 | test 6 | test 7 | 8 | test 9 | 10 | >this is not a quote -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/benchmarks/samples/Lexer/4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/vendor/ezyang/htmlpurifier/benchmarks/samples/Lexer/4.html -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier.composer.php: -------------------------------------------------------------------------------- 1 | <%= request.referer %> 2 | 3 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |foo
2 |4 |bar
3 |
foo
5 | 6 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLT/inline-list-loop.htmlt: -------------------------------------------------------------------------------- 1 | --HTML-- 2 |Foo
3 |Bar
7 |Hello!
3 | How's it going? 4 | 5 | -------------------------------------------------------------------------------- /vendor/bower/yii2-pjax/test/views/timeout.erb: -------------------------------------------------------------------------------- 1 | <%= title 'Timeout!' %> 2 | 3 |SLOW DOWN!
4 | 5 | 6 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLT/file-uri.htmlt: -------------------------------------------------------------------------------- 1 | --INI-- 2 | URI.AllowedSchemes = file 3 | --HTML-- 4 | foo 5 | --# vim: et sw=4 sts=4 6 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLT/id-default.htmlt: -------------------------------------------------------------------------------- 1 | --HTML-- 2 | foobar 3 | --EXPECT-- 4 | foobar 5 | --# vim: et sw=4 sts=4 6 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/files/textfile.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/vendor/swiftmailer/swiftmailer/tests/_samples/files/textfile.zip -------------------------------------------------------------------------------- /static/common/libs/kindeditor/plugins/filemanager/images/file-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/static/common/libs/kindeditor/plugins/filemanager/images/file-16.gif -------------------------------------------------------------------------------- /static/common/libs/kindeditor/plugins/filemanager/images/file-64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/static/common/libs/kindeditor/plugins/filemanager/images/file-64.gif -------------------------------------------------------------------------------- /vendor/bower/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/vendor/bower/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/github-data/issue-33.html: -------------------------------------------------------------------------------- 1 |hey, check [this].
2 |
3 | [this]: https://github.com/cebe/markdown
4 |
5 | is a vaild reference.
6 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/github-data/lists.html: -------------------------------------------------------------------------------- 1 |Text before list:
2 |Text after list.
8 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/smoketests/test-schema/Type.int.txt: -------------------------------------------------------------------------------- 1 | Type.int 2 | TYPE: int 3 | DEFAULT: 23 4 | DESCRIPTION: The int type is an signed integer. 5 | --# vim: et sw=4 sts=4 6 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLT/disable-uri.htmlt: -------------------------------------------------------------------------------- 1 | --INI-- 2 | URI.Disable = true 3 | --HTML-- 4 |this is striked out after
striked out
a line with ~~ in it ...
4 |~~
5 |~
6 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/list_and_reference.md: -------------------------------------------------------------------------------- 1 | link [ref1] 2 | 3 | - item 1 [ref2] 4 | - item 2 5 | 6 | [ref1]: http://example.com/a 7 | [ref2]: http://example.com/b 8 | a -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/DefinitionCache/Serializer/README: -------------------------------------------------------------------------------- 1 | This is a dummy file to prevent Git from ignoring this empty directory. 2 | 3 | vim: et sw=4 sts=4 4 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/smoketests/test-schema/Type.bool.txt: -------------------------------------------------------------------------------- 1 | Type.bool 2 | TYPE: bool 3 | DEFAULT: false 4 | DESCRIPTION: The boolean type is true or false. 5 | --# vim: et sw=4 sts=4 6 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/DefinitionCache/SerializerTest/README: -------------------------------------------------------------------------------- 1 | This is a dummy file to prevent Git from ignoring this empty directory. 2 | 3 | vim: et sw=4 sts=4 4 | -------------------------------------------------------------------------------- /backend/base/BaseBackModule.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | getColorForm($value);?> 9 | -------------------------------------------------------------------------------- /frontend/themes/basic/content/_include/_formtypes/_date.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | getDateForm($value);?> 9 | -------------------------------------------------------------------------------- /frontend/themes/basic/content/_include/_formtypes/_default.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | getTextForm($value);?> 9 | -------------------------------------------------------------------------------- /frontend/themes/basic/content/_include/_formtypes/_file.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | getFileForm($value);?> 9 | -------------------------------------------------------------------------------- /frontend/themes/basic/content/_include/_formtypes/_flash.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | getFlashForm($value);?> 9 | -------------------------------------------------------------------------------- /frontend/themes/basic/content/_include/_formtypes/_radio.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | getRadioForm($value);?> 9 | -------------------------------------------------------------------------------- /frontend/themes/basic/content/_include/_formtypes/_text.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | getTextForm($value);?> 9 | -------------------------------------------------------------------------------- /frontend/themes/default/content/_include/_formtypes/_date.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | getDateForm($value);?> 9 | -------------------------------------------------------------------------------- /frontend/themes/default/content/_include/_formtypes/_file.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | getFileForm($value);?> 9 | -------------------------------------------------------------------------------- /frontend/themes/default/content/_include/_formtypes/_img.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | getImgForm($value);?> 9 | -------------------------------------------------------------------------------- /frontend/themes/default/content/_include/_formtypes/_text.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | getTextForm($value);?> 9 | -------------------------------------------------------------------------------- /frontend/themes/basic/content/_include/_formtypes/_checkbox.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | getCheckboxForm($value);?> 9 | -------------------------------------------------------------------------------- /frontend/themes/basic/content/_include/_formtypes/_editor.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | getEditorForm($value);?> 9 | -------------------------------------------------------------------------------- /frontend/themes/basic/content/_include/_formtypes/_password.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | getPasswordForm($value);?> 9 | -------------------------------------------------------------------------------- /frontend/themes/default/content/_include/_formtypes/_color.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | getColorForm($value);?> 9 | -------------------------------------------------------------------------------- /frontend/themes/default/content/_include/_formtypes/_default.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | getTextForm($value);?> 9 | -------------------------------------------------------------------------------- /frontend/themes/default/content/_include/_formtypes/_editor.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | getEditorForm($value);?> 9 | -------------------------------------------------------------------------------- /frontend/themes/default/content/_include/_formtypes/_flash.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | getFlashForm($value);?> 9 | -------------------------------------------------------------------------------- /frontend/themes/default/content/_include/_formtypes/_radio.php: -------------------------------------------------------------------------------- 1 | 7 | 8 | getRadioForm($value);?> 9 | -------------------------------------------------------------------------------- /static/common/libs/kindeditor/plugins/multiimage/images/select-files-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiifans/lulucms/HEAD/static/common/libs/kindeditor/plugins/multiimage/images/select-files-en.png -------------------------------------------------------------------------------- /vendor/bower/bootstrap/less/mixins/center-block.less: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | .center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /vendor/bower/bootstrap/less/mixins/text-emphasis.less: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | .text-emphasis-variant(@color) { 4 | color: @color; 5 | a&:hover { 6 | color: darken(@color, 10%); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vendor/bower/yii2-pjax/test/views/env.erb: -------------------------------------------------------------------------------- 1 || Foo |
Long Page
3 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/md1_tidyness.html: -------------------------------------------------------------------------------- 1 |8 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/ConfigSchema/Validator/directive/descriptionNotEmpty.vtest: -------------------------------------------------------------------------------- 1 | ERROR: Description in directive 'Ns.Dir' must not be empty 2 | ---- 3 | Ns.Dir 4 | TYPE: int 5 | DEFAULT: 0 6 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/tests/HTMLPurifier/HTMLT/style-onload.htmlt: -------------------------------------------------------------------------------- 1 | --INI-- 2 | Core.CollectErrors = true 3 | --HTML-- 4 |A list within a blockquote:
2 |3 |
7 |- asterisk 1
4 |- asterisk 2
5 |- asterisk 3
6 |