├── .gitignore ├── backend ├── views │ ├── user │ │ ├── view.php │ │ └── create.php │ ├── post │ │ └── create.php │ └── comment │ │ └── create.php ├── models │ └── .gitkeep ├── config │ ├── bootstrap.php │ ├── params-local.php │ └── params.php ├── runtime │ └── .gitignore ├── web │ ├── assets │ │ └── .gitignore │ ├── robots.txt │ └── favicon.ico └── assets │ └── AppAsset.php ├── console ├── controllers │ └── .gitkeep ├── models │ └── .gitkeep └── config │ ├── bootstrap.php │ ├── params-local.php │ ├── params.php │ └── main-local.php ├── vendor ├── bin │ ├── yii │ └── markdown ├── ezyang │ └── htmlpurifier │ │ ├── VERSION │ │ ├── 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 │ │ │ │ │ ├── HTML.CustomDoctype.txt │ │ │ │ │ ├── HTML.TargetBlank.txt │ │ │ │ │ ├── HTML.XHTML.txt │ │ │ │ │ ├── CSS.Trusted.txt │ │ │ │ │ ├── Attr.AllowedRev.txt │ │ │ │ │ ├── Attr.ForbiddenClasses.txt │ │ │ │ │ ├── URI.DefaultScheme.txt │ │ │ │ │ ├── URI.DefinitionID.txt │ │ │ │ │ ├── HTML.Trusted.txt │ │ │ │ │ ├── Cache.SerializerPermissions.txt │ │ │ │ │ ├── AutoFormat.Linkify.txt │ │ │ │ │ ├── HTML.SafeScripting.txt │ │ │ │ │ ├── Output.FlashCompat.txt │ │ │ │ │ ├── Attr.AllowedRel.txt │ │ │ │ │ ├── Core.Language.txt │ │ │ │ │ ├── Output.CommentScriptContents.txt │ │ │ │ │ ├── URI.Disable.txt │ │ │ │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ │ │ │ ├── Core.NormalizeNewlines.txt │ │ │ │ │ ├── Attr.DefaultTextDir.txt │ │ │ │ │ ├── Core.EnableIDNA.txt │ │ │ │ │ ├── Core.RemoveScriptContents.txt │ │ │ │ │ ├── HTML.FlashAllowFullScreen.txt │ │ │ │ │ ├── Filter.Custom.txt │ │ │ │ │ ├── URI.HostBlacklist.txt │ │ │ │ │ ├── AutoFormat.Custom.txt │ │ │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ │ │ ├── HTML.Parent.txt │ │ │ │ │ ├── Attr.DefaultInvalidImage.txt │ │ │ │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt │ │ │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ │ │ ├── URI.OverrideAllowedSchemes.txt │ │ │ │ │ ├── HTML.Proprietary.txt │ │ │ │ │ ├── Cache.SerializerPath.txt │ │ │ │ │ ├── Core.RemoveInvalidImg.txt │ │ │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ │ │ │ ├── CSS.AllowedFonts.txt │ │ │ │ │ ├── HTML.AllowedComments.txt │ │ │ │ │ ├── Output.Newline.txt │ │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ │ │ ├── URI.MakeAbsolute.txt │ │ │ │ │ ├── HTML.SafeIframe.txt │ │ │ │ │ ├── Core.RemoveProcessingInstructions.txt │ │ │ │ │ ├── Core.CollectErrors.txt │ │ │ │ │ ├── URI.DisableExternal.txt │ │ │ │ │ ├── HTML.SafeObject.txt │ │ │ │ │ ├── URI.DisableResources.txt │ │ │ │ │ ├── CSS.AllowTricky.txt │ │ │ │ │ ├── Core.ConvertDocumentToFragment.txt │ │ │ │ │ └── HTML.Doctype.txt │ │ │ │ └── Exception.php │ │ │ ├── DefinitionCache │ │ │ │ └── Serializer │ │ │ │ │ └── README │ │ │ ├── Printer │ │ │ │ ├── ConfigForm.js │ │ │ │ └── ConfigForm.css │ │ │ ├── Token │ │ │ │ ├── Start.php │ │ │ │ └── Empty.php │ │ │ ├── Language │ │ │ │ ├── classes │ │ │ │ │ └── en-x-test.php │ │ │ │ └── messages │ │ │ │ │ ├── en-x-test.php │ │ │ │ │ └── en-x-testmini.php │ │ │ ├── VarParserException.php │ │ │ ├── Exception.php │ │ │ ├── HTMLModule │ │ │ │ ├── Tidy │ │ │ │ │ └── Transitional.php │ │ │ │ ├── XMLCommonAttributes.php │ │ │ │ └── NonXMLCommonAttributes.php │ │ │ ├── URIScheme │ │ │ │ └── https.php │ │ │ └── AttrDef │ │ │ │ ├── URI │ │ │ │ └── Email.php │ │ │ │ └── Text.php │ │ ├── HTMLPurifier.composer.php │ │ ├── HTMLPurifier.path.php │ │ └── HTMLPurifier.auto.php │ │ ├── plugins │ │ └── phorum │ │ │ └── htmlpurifier │ │ │ └── README │ │ ├── WHATSNEW │ │ ├── extras │ │ └── HTMLPurifierExtras.auto.php │ │ └── CREDITS ├── yiisoft │ ├── yii2 │ │ ├── .htaccess │ │ ├── captcha │ │ │ ├── SpicyRice.ttf │ │ │ └── SpicyRice.md │ │ ├── views │ │ │ ├── _dropColumns.php │ │ │ ├── _dropTable.php │ │ │ ├── _foreignTables.php │ │ │ ├── _addColumns.php │ │ │ └── _dropForeignKeys.php │ │ ├── helpers │ │ │ ├── Url.php │ │ │ ├── FileHelper.php │ │ │ ├── StringHelper.php │ │ │ ├── ArrayHelper.php │ │ │ ├── Inflector.php │ │ │ └── Console.php │ │ ├── rbac │ │ │ ├── Role.php │ │ │ └── Permission.php │ │ ├── console │ │ │ └── Response.php │ │ ├── base │ │ │ └── UserException.php │ │ └── web │ │ │ └── JqueryAsset.php │ ├── yii2-gii │ │ ├── assets │ │ │ └── logo.png │ │ ├── generators │ │ │ ├── extension │ │ │ │ └── default │ │ │ │ │ └── AutoloadExample.php │ │ │ ├── module │ │ │ │ └── form.php │ │ │ ├── controller │ │ │ │ └── form.php │ │ │ └── form │ │ │ │ └── form.php │ │ └── views │ │ │ └── default │ │ │ └── diff.php │ ├── yii2-debug │ │ ├── assets │ │ │ ├── arrow.svg │ │ │ └── maximize.svg │ │ └── views │ │ │ └── default │ │ │ └── panels │ │ │ ├── mail │ │ │ └── summary.php │ │ │ ├── assets │ │ │ └── summary.php │ │ │ └── config │ │ │ └── summary.php │ └── yii2-bootstrap │ │ └── InputWidget.php ├── swiftmailer │ └── swiftmailer │ │ ├── VERSION │ │ ├── tests │ │ ├── _samples │ │ │ ├── files │ │ │ │ ├── data.txt │ │ │ │ ├── textfile.zip │ │ │ │ └── swiftmailer.png │ │ │ ├── smime │ │ │ │ └── CA.srl │ │ │ └── dkim │ │ │ │ └── dkim.test.pub │ │ ├── StreamCollector.php │ │ ├── fixtures │ │ │ └── EsmtpTransportFixture.php │ │ ├── acceptance │ │ │ └── Swift │ │ │ │ ├── AttachmentAcceptanceTest.php │ │ │ │ ├── EmbeddedFileAcceptanceTest.php │ │ │ │ └── MimePartAcceptanceTest.php │ │ ├── unit │ │ │ └── Swift │ │ │ │ └── Mime │ │ │ │ ├── SimpleMimeEntityTest.php │ │ │ │ └── HeaderEncoder │ │ │ │ └── Base64HeaderEncoderTest.php │ │ └── bug │ │ │ └── Swift │ │ │ └── Bug118Test.php │ │ ├── doc │ │ ├── uml │ │ │ ├── Mime.graffle │ │ │ ├── Encoders.graffle │ │ │ └── Transports.graffle │ │ └── index.rst │ │ ├── .gitattributes │ │ └── lib │ │ ├── dependency_maps │ │ └── message_deps.php │ │ └── classes │ │ └── Swift │ │ ├── Events │ │ └── EventListener.php │ │ ├── Signer.php │ │ └── Plugins │ │ └── Timer.php ├── bower │ ├── jquery │ │ ├── src │ │ │ ├── outro.js │ │ │ ├── var │ │ │ │ ├── arr.js │ │ │ │ ├── deletedIds.js │ │ │ │ ├── rnotwhite.js │ │ │ │ ├── document.js │ │ │ │ ├── push.js │ │ │ │ ├── concat.js │ │ │ │ ├── slice.js │ │ │ │ ├── class2type.js │ │ │ │ ├── indexOf.js │ │ │ │ ├── pnum.js │ │ │ │ ├── toString.js │ │ │ │ ├── hasOwn.js │ │ │ │ ├── documentElement.js │ │ │ │ ├── support.js │ │ │ │ └── rcssNum.js │ │ │ ├── selector.js │ │ │ ├── ajax │ │ │ │ ├── var │ │ │ │ │ ├── rquery.js │ │ │ │ │ ├── location.js │ │ │ │ │ └── nonce.js │ │ │ │ └── parseJSON.js │ │ │ ├── css │ │ │ │ └── var │ │ │ │ │ ├── rmargin.js │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ ├── rnumnonpx.js │ │ │ │ │ ├── isHidden.js │ │ │ │ │ └── getStyles.js │ │ │ ├── manipulation │ │ │ │ ├── var │ │ │ │ │ ├── rtagName.js │ │ │ │ │ ├── rleadingWhitespace.js │ │ │ │ │ ├── rcheckableType.js │ │ │ │ │ ├── rscriptType.js │ │ │ │ │ └── nodeNames.js │ │ │ │ ├── _evalUrl.js │ │ │ │ ├── createSafeFragment.js │ │ │ │ └── setGlobalEval.js │ │ │ ├── data │ │ │ │ ├── var │ │ │ │ │ ├── dataPriv.js │ │ │ │ │ ├── dataUser.js │ │ │ │ │ └── acceptData.js │ │ │ │ ├── support.js │ │ │ │ └── accepts.js │ │ │ ├── core │ │ │ │ ├── var │ │ │ │ │ └── rsingleTag.js │ │ │ │ └── DOMEval.js │ │ │ ├── traversing │ │ │ │ └── var │ │ │ │ │ ├── rneedsContext.js │ │ │ │ │ ├── siblings.js │ │ │ │ │ └── dir.js │ │ │ ├── event │ │ │ │ ├── support.js │ │ │ │ └── ajax.js │ │ │ ├── attributes.js │ │ │ ├── effects │ │ │ │ └── animatedSelector.js │ │ │ └── selector-sizzle.js │ │ └── bower.json │ ├── bootstrap │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── dist │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ └── npm.js │ │ └── less │ │ │ └── mixins │ │ │ ├── center-block.less │ │ │ ├── size.less │ │ │ ├── opacity.less │ │ │ ├── text-emphasis.less │ │ │ ├── text-overflow.less │ │ │ ├── background-variant.less │ │ │ ├── tab-focus.less │ │ │ ├── labels.less │ │ │ ├── resize.less │ │ │ ├── progress-bar.less │ │ │ ├── reset-filter.less │ │ │ ├── nav-divider.less │ │ │ ├── alerts.less │ │ │ ├── nav-vertical-align.less │ │ │ ├── responsive-visibility.less │ │ │ ├── border-radius.less │ │ │ └── reset-text.less │ ├── typeahead.js │ │ ├── src │ │ │ └── bloodhound │ │ │ │ └── version.js │ │ ├── .jshintrc │ │ ├── bower.json │ │ └── test │ │ │ ├── ci │ │ │ └── fixtures │ │ │ └── html.js │ ├── punycode │ │ └── bower.json │ ├── jquery.inputmask │ │ ├── .editorconfig │ │ └── dist │ │ │ └── min │ │ │ └── inputmask │ │ │ └── inputmask.dependencyLib.jquery.min.js │ └── yii2-pjax │ │ ├── bower.json │ │ └── package.json ├── 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 │ │ │ ├── empty-line.md │ │ │ ├── utf8-do-not-kill-characters.md │ │ │ ├── md1_nested_blockquotes.html │ │ │ ├── utf8-do-not-kill-characters.html │ │ │ ├── empty-line.html │ │ │ ├── md1_literal_quotes_in_titles.md │ │ │ ├── md1_strong_and_em_together.md │ │ │ ├── md1_tidyness.html │ │ │ ├── blockquote.html │ │ │ ├── hr.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 │ │ │ ├── list_and_reference.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 │ │ │ ├── list_and_reference.html │ │ │ ├── escape-in-link.md │ │ │ ├── inline-html.md │ │ │ ├── md1_links_inline_style.html │ │ │ ├── md1_auto_links.md │ │ │ ├── inline-html.html │ │ │ ├── blockquote-nested.html │ │ │ ├── code.html │ │ │ ├── escape-in-link.html │ │ │ ├── md1_tabs.md │ │ │ ├── md1_amps_and_angle_encoding.md │ │ │ ├── md1_links_reference_style.md │ │ │ ├── headline.html │ │ │ ├── md1_links_reference_style.html │ │ │ ├── html-block.md │ │ │ ├── md1_amps_and_angle_encoding.html │ │ │ ├── headline.md │ │ │ ├── html-block.html │ │ │ └── md1_tabs.html │ │ ├── github-data │ │ │ ├── del.md │ │ │ ├── issue-33.md │ │ │ ├── issue-33.html │ │ │ ├── del.html │ │ │ ├── lists.md │ │ │ ├── test_precedence.html │ │ │ ├── test_precedence.md │ │ │ ├── github-code-in-numbered-list.md │ │ │ ├── github-code-in-numbered-list.html │ │ │ ├── lists.html │ │ │ ├── non-tables.md │ │ │ ├── non-tables.html │ │ │ ├── issue-38.md │ │ │ ├── dense-block-markers2.md │ │ │ └── issue-38.html │ │ ├── bootstrap.php │ │ ├── extra-data │ │ │ ├── test_precedence.html │ │ │ ├── test_precedence.md │ │ │ ├── fenced-code.md │ │ │ ├── fenced-code.html │ │ │ └── special-attributes.md │ │ ├── markdown-ol-start-num-data │ │ │ ├── list.md │ │ │ └── list.html │ │ └── MarkdownExtraTest.php │ │ └── .scrutinizer.yml ├── autoload.php ├── composer │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ └── autoload_files.php └── fzaninotto │ └── faker │ ├── src │ └── Faker │ │ └── Provider │ │ ├── hy_AM │ │ └── Internet.php │ │ ├── ja_JP │ │ ├── PhoneNumber.php │ │ └── Company.php │ │ ├── zh_TW │ │ ├── Payment.php │ │ ├── Internet.php │ │ └── PhoneNumber.php │ │ ├── lv_LV │ │ ├── PhoneNumber.php │ │ └── Internet.php │ │ ├── fr_BE │ │ ├── Internet.php │ │ ├── Company.php │ │ └── PhoneNumber.php │ │ ├── kk_KZ │ │ ├── Internet.php │ │ ├── Color.php │ │ ├── PhoneNumber.php │ │ └── Payment.php │ │ ├── de_AT │ │ ├── Internet.php │ │ ├── Company.php │ │ └── PhoneNumber.php │ │ ├── nl_NL │ │ ├── Internet.php │ │ └── Company.php │ │ ├── nl_BE │ │ ├── Internet.php │ │ ├── Company.php │ │ └── PhoneNumber.php │ │ ├── uk_UA │ │ └── Internet.php │ │ ├── cs_CZ │ │ ├── PhoneNumber.php │ │ └── Internet.php │ │ ├── bn_BD │ │ ├── PhoneNumber.php │ │ └── Utils.php │ │ ├── hu_HU │ │ ├── PhoneNumber.php │ │ └── Company.php │ │ ├── it_IT │ │ └── Internet.php │ │ ├── en_ZA │ │ ├── Internet.php │ │ └── PhoneNumber.php │ │ ├── ru_RU │ │ ├── PhoneNumber.php │ │ └── Internet.php │ │ ├── de_DE │ │ ├── Internet.php │ │ └── PhoneNumber.php │ │ ├── me_ME │ │ └── PhoneNumber.php │ │ ├── bg_BG │ │ ├── Internet.php │ │ └── PhoneNumber.php │ │ ├── fi_FI │ │ ├── Internet.php │ │ └── PhoneNumber.php │ │ ├── ko_KR │ │ ├── Internet.php │ │ └── PhoneNumber.php │ │ ├── vi_VN │ │ └── Internet.php │ │ ├── sk_SK │ │ ├── PhoneNumber.php │ │ └── Internet.php │ │ ├── pl_PL │ │ ├── Internet.php │ │ └── PhoneNumber.php │ │ ├── pt_BR │ │ └── Internet.php │ │ ├── sl_SI │ │ ├── Internet.php │ │ └── PhoneNumber.php │ │ ├── PhoneNumber.php │ │ ├── en_GB │ │ └── Internet.php │ │ ├── en_AU │ │ └── Internet.php │ │ ├── en_UG │ │ ├── Internet.php │ │ └── PhoneNumber.php │ │ ├── es_PE │ │ └── PhoneNumber.php │ │ ├── es_ES │ │ └── Internet.php │ │ ├── tr_TR │ │ └── Internet.php │ │ ├── es_VE │ │ └── Internet.php │ │ ├── en_NZ │ │ └── Internet.php │ │ ├── ne_NP │ │ └── PhoneNumber.php │ │ ├── en_CA │ │ └── PhoneNumber.php │ │ ├── el_GR │ │ └── PhoneNumber.php │ │ ├── is_IS │ │ └── PhoneNumber.php │ │ ├── fr_FR │ │ └── Internet.php │ │ ├── da_DK │ │ └── PhoneNumber.php │ │ └── no_NO │ │ └── PhoneNumber.php │ ├── Makefile │ ├── phpunit.xml.dist │ ├── .travis.yml │ └── test │ └── documentor.php ├── frontend ├── config │ ├── bootstrap.php │ ├── params-local.php │ └── params.php ├── runtime │ └── .gitignore ├── web │ ├── assets │ │ └── .gitignore │ ├── robots.txt │ ├── test.php │ └── favicon.ico ├── views │ ├── site │ │ └── about.php │ └── post │ │ └── create.php └── assets │ └── AppAsset.php ├── sms.log ├── tests ├── codeception │ ├── backend │ │ ├── unit │ │ │ ├── fixtures │ │ │ │ └── data │ │ │ │ │ └── .gitkeep │ │ │ ├── _bootstrap.php │ │ │ ├── TestCase.php │ │ │ └── DbTestCase.php │ │ ├── acceptance │ │ │ └── _bootstrap.php │ │ ├── functional │ │ │ └── _bootstrap.php │ │ ├── unit.suite.yml │ │ ├── codeception.yml │ │ └── functional.suite.yml │ ├── console │ │ ├── unit │ │ │ ├── fixtures │ │ │ │ └── data │ │ │ │ │ └── .gitkeep │ │ │ ├── _bootstrap.php │ │ │ ├── TestCase.php │ │ │ └── DbTestCase.php │ │ ├── unit.suite.yml │ │ └── codeception.yml │ ├── common │ │ ├── unit │ │ │ ├── _bootstrap.php │ │ │ ├── TestCase.php │ │ │ ├── DbTestCase.php │ │ │ └── fixtures │ │ │ │ └── data │ │ │ │ └── models │ │ │ │ └── user.php │ │ ├── unit.suite.yml │ │ ├── fixtures │ │ │ ├── UserFixture.php │ │ │ └── data │ │ │ │ └── init_login.php │ │ ├── codeception.yml │ │ └── templates │ │ │ └── fixtures │ │ │ └── user.php │ ├── frontend │ │ ├── unit │ │ │ ├── _bootstrap.php │ │ │ ├── TestCase.php │ │ │ └── DbTestCase.php │ │ ├── acceptance │ │ │ ├── _bootstrap.php │ │ │ ├── AboutCept.php │ │ │ └── HomeCept.php │ │ ├── functional │ │ │ ├── _bootstrap.php │ │ │ ├── AboutCept.php │ │ │ └── HomeCept.php │ │ ├── unit.suite.yml │ │ ├── _pages │ │ │ └── AboutPage.php │ │ └── codeception.yml │ └── config │ │ ├── backend │ │ └── config.php │ │ ├── frontend │ │ └── config.php │ │ ├── unit.php │ │ ├── acceptance.php │ │ ├── config-local.php │ │ ├── common │ │ └── unit.php │ │ └── functional.php └── codeception.yml ├── common ├── config │ ├── params-local.php │ ├── params.php │ ├── bootstrap.php │ └── main.php └── mail │ ├── passwordResetToken-text.php │ ├── layouts │ └── text.php │ └── passwordResetToken-html.php ├── environments ├── dev │ ├── backend │ │ └── config │ │ │ └── params-local.php │ ├── common │ │ └── config │ │ │ └── params-local.php │ ├── console │ │ └── config │ │ │ ├── params-local.php │ │ │ └── main-local.php │ ├── frontend │ │ └── config │ │ │ └── params-local.php │ └── tests │ │ └── codeception │ │ └── config │ │ └── config-local.php └── prod │ ├── common │ └── config │ │ ├── params-local.php │ │ └── main-local.php │ ├── console │ └── config │ │ ├── main-local.php │ │ └── params-local.php │ ├── backend │ └── config │ │ ├── params-local.php │ │ └── main-local.php │ ├── frontend │ └── config │ │ ├── params-local.php │ │ └── main-local.php │ └── tests │ └── codeception │ └── config │ └── config-local.php └── vagrant └── provision └── always-as-root.sh /.gitignore: -------------------------------------------------------------------------------- 1 | /.project 2 | -------------------------------------------------------------------------------- /backend/views/user/view.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /console/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/models/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /console/models/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /vendor/bin/yii: -------------------------------------------------------------------------------- 1 | ../yiisoft/yii2/yii -------------------------------------------------------------------------------- /backend/config/bootstrap.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /environments/dev/backend/config/params-local.php: -------------------------------------------------------------------------------- 1 | 'admin@example.com', 4 | ]; 5 | -------------------------------------------------------------------------------- /console/config/params.php: -------------------------------------------------------------------------------- 1 | 'admin@example.com', 4 | ]; 5 | -------------------------------------------------------------------------------- /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/jquery/src/var/document.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.document; 3 | } ); 4 | -------------------------------------------------------------------------------- /backend/web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelweixi/blogdemo2/HEAD/backend/web/favicon.ico -------------------------------------------------------------------------------- /frontend/web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelweixi/blogdemo2/HEAD/frontend/web/favicon.ico -------------------------------------------------------------------------------- /vendor/bower/jquery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return window.location; 3 | } ); 4 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/md1_nested_blockquotes.md: -------------------------------------------------------------------------------- 1 | > foo 2 | > 3 | > > bar 4 | > 5 | > foo 6 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/manipulation/var/rtagName.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /<([\w:-]+)/ ); 3 | } ); 4 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/push.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.push; 5 | } ); 6 | -------------------------------------------------------------------------------- /tests/codeception/backend/unit/_bootstrap.php: -------------------------------------------------------------------------------- 1 | type pairs 4 | return {}; 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/newline.md: -------------------------------------------------------------------------------- 1 | This is a paragraph with a newline 2 | next line 3 | 4 | next par 5 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/data/var/dataPriv.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | } ); 6 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/data/var/dataUser.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/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; 3 | } ); 4 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/info.ini: -------------------------------------------------------------------------------- 1 | name = "HTML Purifier" 2 | 3 | ; vim: et sw=4 sts=4 4 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core" 3 | ], function( jQuery ) { 4 | return jQuery.now(); 5 | } ); 6 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/manipulation/var/rscriptType.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | return ( /^$|\/(?:java|ecma)script/i ); 3 | } ); 4 | -------------------------------------------------------------------------------- /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/yiisoft/yii2-gii/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelweixi/blogdemo2/HEAD/vendor/yiisoft/yii2-gii/assets/logo.png -------------------------------------------------------------------------------- /tests/codeception/config/backend/config.php: -------------------------------------------------------------------------------- 1 | This is a paragraph with a newline
2 | next line

3 |

next par

4 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/test_precedence.html: -------------------------------------------------------------------------------- 1 |

Not a headline but two HR:

2 |
3 |
4 |
5 |
6 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/captcha/SpicyRice.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelweixi/blogdemo2/HEAD/vendor/yiisoft/yii2/captcha/SpicyRice.ttf -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/toString.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.toString; 5 | } ); 6 | -------------------------------------------------------------------------------- /tests/codeception/config/unit.php: -------------------------------------------------------------------------------- 1 | A list within a blockquote: 2 | > 3 | > * asterisk 1 4 | > * asterisk 2 5 | > * asterisk 3 6 | -------------------------------------------------------------------------------- /tests/codeception/backend/acceptance/_bootstrap.php: -------------------------------------------------------------------------------- 1 | ['gii'], 4 | 'modules' => [ 5 | 'gii' => 'yii\gii\Module', 6 | ], 7 | ]; 8 | -------------------------------------------------------------------------------- /tests/codeception/frontend/functional/_bootstrap.php: -------------------------------------------------------------------------------- 1 | (?:<\/\1>|)$/ ); 5 | } ); 6 | -------------------------------------------------------------------------------- /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/cebe/markdown/tests/markdown-data/empty-line.md: -------------------------------------------------------------------------------- 1 | 0 2 | 3 | 0 4 | Lorem ipsum dolor 5 | 6 | Lorem ipsum dolor 7 | 0 8 | 9 | code 10 | 0 11 | 12 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/utf8-do-not-kill-characters.md: -------------------------------------------------------------------------------- 1 | абвгдеёжзийклмнопрстуфхцчшщъыьэюя 2 | 3 | there is a charater, 配 4 | 5 | Arabic Latter "م (M)" -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/doc/uml/Encoders.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelweixi/blogdemo2/HEAD/vendor/swiftmailer/swiftmailer/doc/uml/Encoders.graffle -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |

foo

2 |

bar

3 |
4 |

foo

5 | 6 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/doc/uml/Transports.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelweixi/blogdemo2/HEAD/vendor/swiftmailer/swiftmailer/doc/uml/Transports.graffle -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier.composer.php: -------------------------------------------------------------------------------- 1 | ['gii'], 4 | 'modules' => [ 5 | 'gii' => 'yii\gii\Module', 6 | ], 7 | ]; 8 | -------------------------------------------------------------------------------- /vendor/bower/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelweixi/blogdemo2/HEAD/vendor/bower/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /vendor/bower/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelweixi/blogdemo2/HEAD/vendor/bower/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /vendor/bower/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelweixi/blogdemo2/HEAD/vendor/bower/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /vendor/bower/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../var/pnum" 3 | ], function( pnum ) { 4 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); 5 | } ); 6 | -------------------------------------------------------------------------------- /vendor/bower/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelweixi/blogdemo2/HEAD/vendor/bower/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /vendor/bower/jquery/src/var/rcssNum.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/pnum" 3 | ], function( pnum ) { 4 | 5 | return new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); 6 | 7 | } ); 8 | -------------------------------------------------------------------------------- /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/markdown-data/utf8-do-not-kill-characters.html: -------------------------------------------------------------------------------- 1 |

абвгдеёжзийклмнопрстуфхцчшщъыьэюя

2 |

there is a charater, 配

3 |

Arabic Latter "م (M)"

4 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/files/textfile.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelweixi/blogdemo2/HEAD/vendor/swiftmailer/swiftmailer/tests/_samples/files/textfile.zip -------------------------------------------------------------------------------- /vendor/bower/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelweixi/blogdemo2/HEAD/vendor/bower/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /vendor/bower/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelweixi/blogdemo2/HEAD/vendor/bower/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /vendor/bower/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelweixi/blogdemo2/HEAD/vendor/bower/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /vendor/bower/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core", 3 | "../../selector" 4 | ], function( jQuery ) { 5 | return jQuery.expr.match.needsContext; 6 | } ); 7 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/github-data/del.html: -------------------------------------------------------------------------------- 1 |

this is striked out after

2 |

striked out

3 |

a line with ~~ in it ...

4 |

~~

5 |

~

6 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/empty-line.html: -------------------------------------------------------------------------------- 1 |

0

2 |

0 3 | Lorem ipsum dolor

4 |

Lorem ipsum dolor 5 | 0

6 |
code
7 | 
8 |

0

9 | -------------------------------------------------------------------------------- /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/swiftmailer/swiftmailer/tests/_samples/files/swiftmailer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelweixi/blogdemo2/HEAD/vendor/swiftmailer/swiftmailer/tests/_samples/files/swiftmailer.png -------------------------------------------------------------------------------- /common/config/params.php: -------------------------------------------------------------------------------- 1 | 'admin@example.com', 4 | 'supportEmail' => 'support@example.com', 5 | 'user.passwordResetTokenExpire' => 3600, 6 | ]; 7 | -------------------------------------------------------------------------------- /vendor/bower/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelweixi/blogdemo2/HEAD/vendor/bower/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /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/jquery/src/event/support.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/support" 3 | ], function( support ) { 4 | 5 | support.focusin = "onfocusin" in window; 6 | 7 | return support; 8 | 9 | } ); 10 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/md1_literal_quotes_in_titles.md: -------------------------------------------------------------------------------- 1 | Foo [bar][]. 2 | 3 | Foo [bar](/url/ "Title with "quotes" inside"). 4 | 5 | 6 | [bar]: /url/ "Title with "quotes" inside" 7 | 8 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/md1_strong_and_em_together.md: -------------------------------------------------------------------------------- 1 | ***This is strong and em.*** 2 | 3 | So is ***this*** word. 4 | 5 | ___This is strong and em.___ 6 | 7 | So is ___this___ word. 8 | -------------------------------------------------------------------------------- /tests/codeception/backend/unit.suite.yml: -------------------------------------------------------------------------------- 1 | # Codeception Test Suite Configuration 2 | 3 | # suite for unit (internal) tests. 4 | # RUN `build` COMMAND AFTER ADDING/REMOVING MODULES. 5 | 6 | class_name: UnitTester 7 | -------------------------------------------------------------------------------- /tests/codeception/common/unit.suite.yml: -------------------------------------------------------------------------------- 1 | # Codeception Test Suite Configuration 2 | 3 | # suite for unit (internal) tests. 4 | # RUN `build` COMMAND AFTER ADDING/REMOVING MODULES. 5 | 6 | class_name: UnitTester 7 | -------------------------------------------------------------------------------- /tests/codeception/console/unit.suite.yml: -------------------------------------------------------------------------------- 1 | # Codeception Test Suite Configuration 2 | 3 | # suite for unit (internal) tests. 4 | # RUN `build` COMMAND AFTER ADDING/REMOVING MODULES. 5 | 6 | class_name: UnitTester 7 | -------------------------------------------------------------------------------- /tests/codeception/frontend/unit.suite.yml: -------------------------------------------------------------------------------- 1 | # Codeception Test Suite Configuration 2 | 3 | # suite for unit (internal) tests. 4 | # RUN `build` COMMAND AFTER ADDING/REMOVING MODULES. 5 | 6 | class_name: UnitTester 7 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/md1_tidyness.html: -------------------------------------------------------------------------------- 1 |

A list within a blockquote:

2 | 7 |
8 | -------------------------------------------------------------------------------- /vendor/bower/bootstrap/less/mixins/size.less: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | .size(@width; @height) { 4 | width: @width; 5 | height: @height; 6 | } 7 | 8 | .square(@size) { 9 | .size(@size; @size); 10 | } 11 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/extra-data/test_precedence.html: -------------------------------------------------------------------------------- 1 |

Not a headline but a code block:

2 |
---
3 | 
4 |

Not a headline but two HR:

5 |
6 |
7 |
8 |
9 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/extra-data/test_precedence.md: -------------------------------------------------------------------------------- 1 | Not a headline but a code block: 2 | 3 | ``` 4 | --- 5 | ``` 6 | 7 | Not a headline but two HR: 8 | 9 | *** 10 | --- 11 | 12 | --- 13 | *** 14 | 15 | -------------------------------------------------------------------------------- /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. 7 | 8 | - test 9 | - test 10 | - test 11 | - test 12 | - test 13 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/github-data/test_precedence.html: -------------------------------------------------------------------------------- 1 |

Not a headline but a code block:

2 |
---
3 | 
4 |

Not a headline but two HR:

5 |
6 |
7 |
8 |
9 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/github-data/test_precedence.md: -------------------------------------------------------------------------------- 1 | Not a headline but a code block: 2 | 3 | ``` 4 | --- 5 | ``` 6 | 7 | Not a headline but two HR: 8 | 9 | *** 10 | --- 11 | 12 | --- 13 | *** 14 | 15 | -------------------------------------------------------------------------------- /vendor/bower/bootstrap/less/mixins/opacity.less: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | .opacity(@opacity) { 4 | opacity: @opacity; 5 | // IE8 filter 6 | @opacity-ie: (@opacity * 100); 7 | filter: ~"alpha(opacity=@{opacity-ie})"; 8 | } 9 | -------------------------------------------------------------------------------- /vendor/bower/bootstrap/less/mixins/text-emphasis.less: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | .text-emphasis-variant(@color) { 4 | color: @color; 5 | a&:hover, 6 | a&:focus { 7 | color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- 1 |

test test 2 | test

3 | 4 |

test 5 | test 6 | test

7 |
8 |

test

9 |

>this is not a quote

10 | -------------------------------------------------------------------------------- /tests/codeception/backend/unit/TestCase.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |

**

11 |

--

12 |

––

13 |

*

14 |

-

15 |

16 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/md1_literal_quotes_in_titles.html: -------------------------------------------------------------------------------- 1 |

Foo bar.

2 |

Foo bar.

3 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/.gitattributes: -------------------------------------------------------------------------------- 1 | *.crt -crlf 2 | *.key -crlf 3 | *.srl -crlf 4 | *.pub -crlf 5 | *.priv -crlf 6 | *.txt -crlf 7 | 8 | # ignore /notes in the git-generated distributed .zip archive 9 | /notes export-ignore 10 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/Token/Start.php: -------------------------------------------------------------------------------- 1 | content .= $arg; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/Language/classes/en-x-test.php: -------------------------------------------------------------------------------- 1 | Example: 2 | > 3 | > sub status { 4 | > print "working"; 5 | > } 6 | > 7 | > Or: 8 | > 9 | > sub status { 10 | > return "working"; 11 | > } 12 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/md1_inline_html_avanced.html: -------------------------------------------------------------------------------- 1 |

Simple block on one line:

2 |
foo
3 |

And nested without indentation:

4 |
5 |
6 |
7 | foo 8 |
9 |
10 |
bar
11 |
12 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/md1_inline_html_avanced.md: -------------------------------------------------------------------------------- 1 | Simple block on one line: 2 | 3 |
foo
4 | 5 | And nested without indentation: 6 | 7 |
8 |
9 |
10 | foo 11 |
12 |
13 |
bar
14 |
15 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/hr.md: -------------------------------------------------------------------------------- 1 | - - - 2 | 3 | --- 4 | 5 | ------ 6 | 7 | _ _ _ 8 | 9 | ___ 10 | 11 | _____________ 12 | 13 | ********* 14 | 15 | * * * 16 | 17 | *** 18 | 19 | ** 20 | 21 | -- 22 | 23 | –– 24 | 25 | * 26 | 27 | - 28 | 29 | – -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Nofollow.txt: -------------------------------------------------------------------------------- 1 | HTML.Nofollow 2 | TYPE: bool 3 | VERSION: 4.3.0 4 | DEFAULT: FALSE 5 | --DESCRIPTION-- 6 | If enabled, nofollow rel attributes are added to all outgoing links. 7 | --# vim: et sw=4 sts=4 8 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/md1_inline_html_comments.html: -------------------------------------------------------------------------------- 1 |

Paragraph one.

2 | 3 | 6 |

Paragraph two.

7 | 8 |

The end.

9 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TidyAdd.txt: -------------------------------------------------------------------------------- 1 | HTML.TidyAdd 2 | TYPE: lookup 3 | VERSION: 2.0.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | 7 | Fixes to add to the default set of Tidy fixes as per your level. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/VarParserException.php: -------------------------------------------------------------------------------- 1 | .striped(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/attributes.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./core", 3 | "./attributes/attr", 4 | "./attributes/prop", 5 | "./attributes/classes", 6 | "./attributes/val" 7 | ], function( jQuery ) { 8 | 9 | // Return jQuery for attributes-only inclusion 10 | return jQuery; 11 | } ); 12 | -------------------------------------------------------------------------------- /vendor/bower/punycode/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "punycode", 3 | "version": "1.3.2", 4 | "main": "punycode.js", 5 | "ignore": [ 6 | "coverage", 7 | "tests", 8 | ".*", 9 | "component.json", 10 | "Gruntfile.js", 11 | "node_modules", 12 | "package.json" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/md1_inline_html_comments.md: -------------------------------------------------------------------------------- 1 | Paragraph one. 2 | 3 | 4 | 5 | 8 | 9 | Paragraph two. 10 | 11 | 12 | 13 | The end. 14 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/WHATSNEW: -------------------------------------------------------------------------------- 1 | HTML Purifier 4.7.0 is a bugfix release, collecting two years 2 | worth of accumulated bug fixes. Highlighted bugfixes are updated 3 | YouTube filter code, corrected rgb() CSS parsing, and one new 4 | configuration option, %AutoFormat.RemoveEmpty.Predicate. 5 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-debug/assets/arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /common/config/bootstrap.php: -------------------------------------------------------------------------------- 1 | This is strong and em.

2 |

So is this word.

3 |

This is strong and em.

4 |

So is this word.

5 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.Proprietary.txt: -------------------------------------------------------------------------------- 1 | CSS.Proprietary 2 | TYPE: bool 3 | VERSION: 3.0.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | Whether or not to allow safe, proprietary CSS values. 9 |

10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/Exception.php: -------------------------------------------------------------------------------- 1 | In Markdown 1.0.0 and earlier. Version 2 | 8. This line turns into a list item. 3 | Because a hard-wrapped line in the 4 | middle of a paragraph looked like a 5 | list item.

6 |

Here's one with a bullet. 7 | * criminey

8 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/Language/messages/en-x-test.php: -------------------------------------------------------------------------------- 1 | 'HTML Purifier X' 9 | ); 10 | 11 | // vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /tests/codeception/common/fixtures/UserFixture.php: -------------------------------------------------------------------------------- 1 |

Example:

2 |
sub status {
 3 |     print "working";
 4 | }
 5 | 
6 |

Or:

7 |
sub status {
 8 |     return "working";
 9 | }
10 | 
11 | 12 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/lib/dependency_maps/message_deps.php: -------------------------------------------------------------------------------- 1 | register('message.message') 5 | ->asNewInstanceOf('Swift_Message') 6 | 7 | ->register('message.mimepart') 8 | ->asNewInstanceOf('Swift_MimePart') 9 | ; 10 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/blockquote-nested.md: -------------------------------------------------------------------------------- 1 | > ## This is a header. 2 | > 3 | > 1. This is the first list item. 4 | > 2. This is the second list item. 5 | > 6 | > Here's some example code: 7 | > 8 | > return shell_exec("echo $input | $markdown_script"); 9 | > 10 | > > quote here -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Test.ForceNoIconv.txt: -------------------------------------------------------------------------------- 1 | Test.ForceNoIconv 2 | TYPE: bool 3 | DEFAULT: false 4 | --DESCRIPTION-- 5 | When set to true, HTMLPurifier_Encoder will act as if iconv does not exist 6 | and use only pure PHP implementations. 7 | --# vim: et sw=4 sts=4 8 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/Makefile: -------------------------------------------------------------------------------- 1 | vendor/autoload.php: 2 | composer install --no-interaction --prefer-source --dev 3 | 4 | .PHONY: sniff 5 | sniff: vendor/autoload.php 6 | vendor/bin/phpcs --standard=PSR2 src -n 7 | 8 | .PHONY: test 9 | test: vendor/autoload.php 10 | vendor/bin/phpunit --verbose 11 | -------------------------------------------------------------------------------- /environments/prod/backend/config/main-local.php: -------------------------------------------------------------------------------- 1 | [ 4 | 'request' => [ 5 | // !!! insert a secret key in the following (if it is empty) - this is required by cookie validation 6 | 'cookieValidationKey' => '', 7 | ], 8 | ], 9 | ]; 10 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/code.md: -------------------------------------------------------------------------------- 1 | this is `inline code` 2 | 3 | this is ``inline code`` 4 | 5 | this is `` inline code `` 6 | 7 | this is `` inline ` code `` 8 | 9 | this is ``` inline `` code ``` 10 | 11 | code block 12 | 13 | code block 14 | 15 | this is code too: ` co 16 | ooo 17 | de ` -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/list_and_reference.html: -------------------------------------------------------------------------------- 1 |

link ref1

2 | 6 | 10 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidTags.txt: -------------------------------------------------------------------------------- 1 | Core.EscapeInvalidTags 2 | TYPE: bool 3 | DEFAULT: false 4 | --DESCRIPTION-- 5 | When true, invalid tags will be written back to the document as plain text. 6 | Otherwise, they are silently dropped. 7 | --# vim: et sw=4 sts=4 8 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/phpunit.xml.dist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ./test/Faker/ 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/fixtures/EsmtpTransportFixture.php: -------------------------------------------------------------------------------- 1 | render('_dropForeignKeys', [ 4 | 'table' => $table, 5 | 'foreignKeys' => $foreignKeys, 6 | ]); 7 | 8 | foreach ($fields as $field): ?> 9 | $this->dropColumn('', ''); 10 | [ 4 | 'request' => [ 5 | // !!! insert a secret key in the following (if it is empty) - this is required by cookie validation 6 | 'cookieValidationKey' => '', 7 | ], 8 | ], 9 | ]; 10 | -------------------------------------------------------------------------------- /vendor/bower/bootstrap/less/mixins/reset-filter.less: -------------------------------------------------------------------------------- 1 | // Reset filters for IE 2 | // 3 | // When you need to remove a gradient background, do not forget to use this to reset 4 | // the IE filter for IE9 and below. 5 | 6 | .reset-filter() { 7 | filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)")); 8 | } 9 | -------------------------------------------------------------------------------- /vendor/bower/jquery.inputmask/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | insert_final_newline = true 5 | charset = utf-8 6 | trim_trailing_whitespace = true 7 | 8 | [*.js] 9 | indent_style = tab 10 | 11 | [*.json] 12 | indent_style = space 13 | indent_size = 2 14 | 15 | [*.md] 16 | trim_trailing_whitespace = false 17 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/ajax/parseJSON.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core" 3 | ], function( jQuery ) { 4 | 5 | // Support: Android 2.3 6 | // Workaround failure to string-cast null input 7 | jQuery.parseJSON = function( data ) { 8 | return JSON.parse( data + "" ); 9 | }; 10 | 11 | return jQuery.parseJSON; 12 | 13 | } ); 14 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/traversing/var/siblings.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | 3 | return function( n, elem ) { 4 | var matched = []; 5 | 6 | for ( ; n; n = n.nextSibling ) { 7 | if ( n.nodeType === 1 && n !== elem ) { 8 | matched.push( n ); 9 | } 10 | } 11 | 12 | return matched; 13 | }; 14 | 15 | } ); 16 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/extra-data/fenced-code.md: -------------------------------------------------------------------------------- 1 | ``` 2 | 3 | fenced code block 4 | 5 | ``` 6 | 7 | ~~~ 8 | 9 | fenced with tildes 10 | 11 | ~~~ 12 | 13 | `````````` 14 | long fence 15 | 16 | ``` 17 | code about code 18 | ``` 19 | 20 | `````````` 21 | 22 | ``` .html #test 23 | fenced code block 24 | ``` 25 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/github-data/github-code-in-numbered-list.html: -------------------------------------------------------------------------------- 1 |
    2 |
  1. Item one.
  2. 3 |
  3. Item two with some code:

    4 |
    code one
     5 | 
    6 |
  4. 7 |
  5. Item three with code:

    8 |
    code two
     9 | 
    10 |
  6. 11 |
12 |

Paragraph.

13 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/github-data/lists.html: -------------------------------------------------------------------------------- 1 |

Text before list:

2 | 7 |

Text after list.

8 | 17 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/doc/index.rst: -------------------------------------------------------------------------------- 1 | Swiftmailer 2 | =========== 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | 7 | introduction 8 | overview 9 | installing 10 | help-resources 11 | including-the-files 12 | messages 13 | headers 14 | sending 15 | plugins 16 | japanese 17 | -------------------------------------------------------------------------------- /vendor/bower/bootstrap/less/mixins/nav-divider.less: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | .nav-divider(@color: #e5e5e5) { 6 | height: 1px; 7 | margin: ((@line-height-computed / 2) - 1) 0; 8 | overflow: hidden; 9 | background-color: @color; 10 | } 11 | -------------------------------------------------------------------------------- /common/config/main.php: -------------------------------------------------------------------------------- 1 | dirname(dirname(__DIR__)) . '/vendor', 4 | 'components' => [ 5 | 'cache' => [ 6 | 'class' => 'yii\caching\FileCache', 7 | ], 8 | 'authManager' => [ 9 | 'class' =>'yii\rbac\DbManager', 10 | ], 11 | ], 12 | ]; 13 | -------------------------------------------------------------------------------- /tests/codeception/config/config-local.php: -------------------------------------------------------------------------------- 1 | [ 4 | 'db' => [ 5 | 'dsn' => 'mysql:host=localhost;dbname=yii2_advanced_tests', 6 | 'username' => 'root', 7 | 'password' => '', 8 | 'charset' => 'utf8', 9 | ], 10 | ], 11 | ]; 12 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/github-data/non-tables.md: -------------------------------------------------------------------------------- 1 | Non-tables 2 | ---------- 3 | 4 | This line contains two pipes but is not a table. [[yii\widgets\DetailView|DetailView]] widget displays the details of a single data [[yii\widgets\DetailView::$model|model]]. 5 | 6 | the line above contains a space. 7 | 8 | looks | like | head 9 | -:| -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.DefinitionRev.txt: -------------------------------------------------------------------------------- 1 | CSS.DefinitionRev 2 | TYPE: int 3 | VERSION: 2.0.0 4 | DEFAULT: 1 5 | --DESCRIPTION-- 6 | 7 |

8 | Revision identifier for your custom definition. See 9 | %HTML.DefinitionRev for details. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DefinitionRev.txt: -------------------------------------------------------------------------------- 1 | URI.DefinitionRev 2 | TYPE: int 3 | VERSION: 2.1.0 4 | DEFAULT: 1 5 | --DESCRIPTION-- 6 | 7 |

8 | Revision identifier for your custom definition. See 9 | %HTML.DefinitionRev for details. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/ja_JP/PhoneNumber.php: -------------------------------------------------------------------------------- 1 | =1.7" 7 | }, 8 | "devDependencies": { 9 | "jquery": "~1.7", 10 | "jasmine-ajax": "~1.3.1", 11 | "jasmine-jquery": "~1.5.2" 12 | } 13 | } -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/github-data/non-tables.html: -------------------------------------------------------------------------------- 1 |

Non-tables

2 |

This line contains two pipes but is not a table. [[yii\widgets\DetailView|DetailView]] widget displays the details of a single data [[yii\widgets\DetailView::$model|model]].

3 |

the line above contains a space.

4 |

looks | like | head 5 | -:|

6 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/escape-in-link.md: -------------------------------------------------------------------------------- 1 | nice [video](http://www.youtube.com/video\-on\e). Nice\-vide\o star \* 2 | 3 | nice ![video](http://www.youtube.com/video\-on\e). Nice\-vide\o star \* 4 | 5 | [video]: http://www.youtube.com/video\-on\e 6 | 7 | [video] and and 8 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier.path.php: -------------------------------------------------------------------------------- 1 | creditCardDetails($valid); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Strict.txt: -------------------------------------------------------------------------------- 1 | HTML.Strict 2 | TYPE: bool 3 | VERSION: 1.3.0 4 | DEFAULT: false 5 | DEPRECATED-VERSION: 1.7.0 6 | DEPRECATED-USE: HTML.Doctype 7 | --DESCRIPTION-- 8 | Determines whether or not to use Transitional (loose) or Strict rulesets. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/inline-html.md: -------------------------------------------------------------------------------- 1 | this is inline **html** trailing 2 | 3 | © AT&T 4 | 5 | this is deleted this is not 6 | new text on new line 7 | 8 | this is deleted this is not 9 | new text on new line 10 | 11 | this line ends with < 12 | 13 | this line ends with & 14 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowImportant.txt: -------------------------------------------------------------------------------- 1 | CSS.AllowImportant 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 3.1.0 5 | --DESCRIPTION-- 6 | This parameter determines whether or not !important cascade modifiers should 7 | be allowed in user CSS. If false, !important will stripped. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /environments/dev/tests/codeception/config/config-local.php: -------------------------------------------------------------------------------- 1 | [ 4 | 'db' => [ 5 | 'dsn' => 'mysql:host=localhost;dbname=yii2_advanced_tests', 6 | 'username' => 'root', 7 | 'password' => '', 8 | 'charset' => 'utf8', 9 | ], 10 | ], 11 | ]; 12 | -------------------------------------------------------------------------------- /environments/prod/tests/codeception/config/config-local.php: -------------------------------------------------------------------------------- 1 | [ 4 | 'db' => [ 5 | 'dsn' => 'mysql:host=localhost;dbname=yii2_advanced_tests', 6 | 'username' => 'root', 7 | 'password' => '', 8 | 'charset' => 'utf8', 9 | ], 10 | ], 11 | ]; 12 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/extra-data/fenced-code.html: -------------------------------------------------------------------------------- 1 |

 2 | fenced code block
 3 | 
 4 | 
5 |

 6 | fenced with tildes
 7 | 
 8 | 
9 |
long fence
10 | 
11 | ```
12 | code about code
13 | ```
14 | 
15 | 
16 |
fenced code block
17 | 
18 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/github-data/issue-38.md: -------------------------------------------------------------------------------- 1 | > some text 2 | \``` 3 | // some code 4 | \``` 5 | 6 | > some text 7 | ``` 8 | // some code 9 | ``` 10 | 11 | > some text 12 | > ``` 13 | // some code 14 | ``` 15 | 16 | > some text 17 | > 18 | > ``` 19 | // some code 20 | ``` 21 | 22 | > some text 23 | 24 | ``` 25 | // some code 26 | ``` 27 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/lv_LV/PhoneNumber.php: -------------------------------------------------------------------------------- 1 | Just a URL.

2 |

URL and title.

3 |

URL and title.

4 |

URL and title.

5 |

Empty.

6 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/fr_BE/Internet.php: -------------------------------------------------------------------------------- 1 | 5 |
6 | Mail 7 |
8 | 9 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-gii/generators/extension/default/AutoloadExample.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | namespace namespace, 0, -1) ?>; 4 | 5 | /** 6 | * This is just an example. 7 | */ 8 | class AutoloadExample extends \yii\base\Widget 9 | { 10 | public function run() 11 | { 12 | return "Hello!"; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /tests/codeception/common/codeception.yml: -------------------------------------------------------------------------------- 1 | namespace: tests\codeception\common 2 | actor: Tester 3 | paths: 4 | tests: . 5 | log: _output 6 | data: _data 7 | helpers: _support 8 | settings: 9 | bootstrap: _bootstrap.php 10 | suite_class: \PHPUnit_Framework_TestSuite 11 | colors: true 12 | memory_limit: 1024M 13 | log: true 14 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.CustomDoctype.txt: -------------------------------------------------------------------------------- 1 | HTML.CustomDoctype 2 | TYPE: string/null 3 | VERSION: 2.0.1 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 | A custom doctype for power-users who defined their own document 8 | type. This directive only applies when %HTML.Doctype is blank. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.TargetBlank.txt: -------------------------------------------------------------------------------- 1 | HTML.TargetBlank 2 | TYPE: bool 3 | VERSION: 4.4.0 4 | DEFAULT: FALSE 5 | --DESCRIPTION-- 6 | If enabled, target=blank attributes are added to all outgoing links. 7 | (This includes links from an HTTPS version of a page to an HTTP version.) 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.XHTML.txt: -------------------------------------------------------------------------------- 1 | HTML.XHTML 2 | TYPE: bool 3 | DEFAULT: true 4 | VERSION: 1.1.0 5 | DEPRECATED-VERSION: 1.7.0 6 | DEPRECATED-USE: HTML.Doctype 7 | --DESCRIPTION-- 8 | Determines whether or not output is XHTML 1.0 or HTML 4.01 flavor. 9 | --ALIASES-- 10 | Core.XHTML 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/Language/messages/en-x-testmini.php: -------------------------------------------------------------------------------- 1 | 'HTML Purifier XNone' 10 | ); 11 | 12 | // vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.3 5 | - 5.4 6 | - 5.5 7 | - 5.6 8 | - 7.0 9 | - hhvm 10 | 11 | sudo: false 12 | 13 | before_script: 14 | - travis_retry composer self-update 15 | - travis_retry composer install --no-interaction --prefer-source --dev 16 | 17 | script: make sniff test 18 | -------------------------------------------------------------------------------- /tests/codeception/console/codeception.yml: -------------------------------------------------------------------------------- 1 | namespace: tests\codeception\console 2 | actor: Tester 3 | paths: 4 | tests: . 5 | log: _output 6 | data: _data 7 | helpers: _support 8 | settings: 9 | bootstrap: _bootstrap.php 10 | suite_class: \PHPUnit_Framework_TestSuite 11 | colors: true 12 | memory_limit: 1024M 13 | log: true 14 | -------------------------------------------------------------------------------- /tests/codeception/frontend/acceptance/AboutCept.php: -------------------------------------------------------------------------------- 1 | wantTo('ensure that about works'); 9 | AboutPage::openBy($I); 10 | $I->see('About', 'h1'); 11 | -------------------------------------------------------------------------------- /tests/codeception/frontend/functional/AboutCept.php: -------------------------------------------------------------------------------- 1 | wantTo('ensure that about works'); 9 | AboutPage::openBy($I); 10 | $I->see('About', 'h1'); 11 | -------------------------------------------------------------------------------- /vagrant/provision/always-as-root.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | #== Bash helpers == 4 | 5 | function info { 6 | echo " " 7 | echo "--> $1" 8 | echo " " 9 | } 10 | 11 | #== Provision script == 12 | 13 | info "Provision-script user: `whoami`" 14 | 15 | info "Restart web-stack" 16 | service php5-fpm restart 17 | service nginx restart 18 | service mysql restart -------------------------------------------------------------------------------- /vendor/bower/bootstrap/less/mixins/alerts.less: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | .alert-variant(@background; @border; @text-color) { 4 | background-color: @background; 5 | border-color: @border; 6 | color: @text-color; 7 | 8 | hr { 9 | border-top-color: darken(@border, 5%); 10 | } 11 | .alert-link { 12 | color: darken(@text-color, 10%); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-ol-start-num-data/list.md: -------------------------------------------------------------------------------- 1 | 1. item1, num1 2 | 2. item2, num2 3 | 4. item3, num3 4 | 5 | --- 6 | 7 | 3. item1, num3 8 | 12. item2, num4 9 | 125. item3, num5 10 | 11 | --- 12 | 13 | 4. item1, num4 14 | 12. item2, num5 15 | 125. item3, num6 16 | 17 | --- 18 | 19 | 5. item1, num5 20 | 12. item2, num6 21 | 125. item3, num7 -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- 1 | array($vendorDir . '/ezyang/htmlpurifier/library'), 10 | 'Diff' => array($vendorDir . '/phpspec/php-diff/lib'), 11 | ); 12 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/md1_auto_links.md: -------------------------------------------------------------------------------- 1 | Link: . 2 | 3 | With an ampersand: 4 | 5 | * In a list? 6 | * 7 | * It should. 8 | 9 | > Blockquoted: 10 | 11 | Auto-links should not occur here: `` 12 | 13 | or here: -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.Trusted.txt: -------------------------------------------------------------------------------- 1 | CSS.Trusted 2 | TYPE: bool 3 | VERSION: 4.2.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Indicates whether or not the user's CSS input is trusted or not. If the 7 | input is trusted, a more expansive set of allowed properties. See 8 | also %HTML.Trusted. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/de_AT/Internet.php: -------------------------------------------------------------------------------- 1 | this is inline html trailing

2 |

© AT&T

3 |

this is deleted this is not 4 | new text on new line

5 |

this is deleted this is not 6 | new text on new line

7 |

this line ends with <

8 |

this line ends with &

9 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier.auto.php: -------------------------------------------------------------------------------- 1 | 7 | Defines through what scheme the output will be served, in order to 8 | select the proper object validator when no scheme information is present. 9 |

10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DefinitionID.txt: -------------------------------------------------------------------------------- 1 | URI.DefinitionID 2 | TYPE: string/null 3 | VERSION: 2.1.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

8 | Unique identifier for a custom-built URI definition. If you want 9 | to add custom URIFilters, you must specify this value. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/Token/Empty.php: -------------------------------------------------------------------------------- 1 | empty = true; 11 | return $n; 12 | } 13 | } 14 | 15 | // vim: et sw=4 sts=4 16 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/nl_NL/Internet.php: -------------------------------------------------------------------------------- 1 | 7 |
8 | field($generator, 'moduleClass'); 10 | echo $form->field($generator, 'moduleID'); 11 | ?> 12 |
13 | -------------------------------------------------------------------------------- /common/mail/passwordResetToken-text.php: -------------------------------------------------------------------------------- 1 | urlManager->createAbsoluteUrl(['site/reset-password', 'token' => $user->password_reset_token]); 7 | ?> 8 | Hello username ?>, 9 | 10 | Follow the link below to reset your password: 11 | 12 | 13 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/extras/HTMLPurifierExtras.auto.php: -------------------------------------------------------------------------------- 1 | =1.8" 8 | }, 9 | "ignore": [ 10 | ".travis.yml", 11 | "Gemfile", 12 | "Gemfile.lock", 13 | "CONTRIBUTING.md", 14 | "vendor/", 15 | "script/", 16 | "test/" 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/bn_BD/PhoneNumber.php: -------------------------------------------------------------------------------- 1 | 8 | Directory permissions of the files and directories created inside 9 | the DefinitionCache/Serializer or other custom serializer path. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/it_IT/Internet.php: -------------------------------------------------------------------------------- 1 |

This is a header.

2 |
    3 |
  1. This is the first list item.
  2. 4 |
  3. This is the second list item.
  4. 5 |
6 |

Here's some example code:

7 |
return shell_exec("echo $input | $markdown_script");
 8 | 
9 |

quote here

10 |
11 | 12 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/code.html: -------------------------------------------------------------------------------- 1 |

this is inline code

2 |

this is `inline code`

3 |

this is inline code

4 |

this is inline ` code

5 |

this is inline `` code

6 |
code block
 7 | 
 8 | code block
 9 | 
10 |

this is code too: co 11 | ooo 12 | de

13 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.Linkify.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.Linkify 2 | TYPE: bool 3 | VERSION: 2.0.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | This directive turns on linkification, auto-linking http, ftp and 9 | https URLs. a tags with the href attribute 10 | must be allowed. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeScripting.txt: -------------------------------------------------------------------------------- 1 | HTML.SafeScripting 2 | TYPE: lookup 3 | VERSION: 4.5.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit script tags to external scripts in documents. 8 | Inline scripting is not allowed, and the script must match an explicit whitelist. 9 |

10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.FlashCompat.txt: -------------------------------------------------------------------------------- 1 | Output.FlashCompat 2 | TYPE: bool 3 | VERSION: 4.1.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | If true, HTML Purifier will generate Internet Explorer compatibility 8 | code for all object code. This is highly recommended if you enable 9 | %HTML.SafeObject. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/bn_BD/Utils.php: -------------------------------------------------------------------------------- 1 | field($generator, 'controllerClass'); 7 | echo $form->field($generator, 'actions'); 8 | echo $form->field($generator, 'viewPath'); 9 | echo $form->field($generator, 'baseClass'); 10 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/CREDITS: -------------------------------------------------------------------------------- 1 | 2 | CREDITS 3 | 4 | Almost everything written by Edward Z. Yang (Ambush Commander). Lots of thanks 5 | to the DevNetwork Community for their help (see docs/ref-devnetwork.html for 6 | more details), Feyd especially (namely IPv6 and optimization). Thanks to RSnake 7 | for letting me package his fantastic XSS cheatsheet for a smoketest. 8 | 9 | vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRel.txt: -------------------------------------------------------------------------------- 1 | Attr.AllowedRel 2 | TYPE: lookup 3 | VERSION: 1.6.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | List of allowed forward document relationships in the rel attribute. Common 7 | values may be nofollow or print. By default, this is empty, meaning that no 8 | document relationships are allowed. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/Printer/ConfigForm.css: -------------------------------------------------------------------------------- 1 | 2 | .hp-config {} 3 | 4 | .hp-config tbody th {text-align:right; padding-right:0.5em;} 5 | .hp-config thead, .hp-config .namespace {background:#3C578C; color:#FFF;} 6 | .hp-config .namespace th {text-align:center;} 7 | .hp-config .verbose {display:none;} 8 | .hp-config .controls {text-align:center;} 9 | 10 | /* vim: et sw=4 sts=4 */ 11 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/de_DE/Internet.php: -------------------------------------------------------------------------------- 1 | render('_dropForeignKeys', [ 10 | 'table' => $table, 11 | 'foreignKeys' => $foreignKeys, 12 | ]) ?> 13 | $this->dropTable(''); 14 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/views/_foreignTables.php: -------------------------------------------------------------------------------- 1 | 9 | * Has foreign keys to the tables: 10 | * 11 | 12 | * - `` 13 | 8 | beginPage() ?> 9 | beginBody() ?> 10 | 11 | endBody() ?> 12 | endPage() ?> 13 | -------------------------------------------------------------------------------- /tests/codeception/frontend/acceptance/HomeCept.php: -------------------------------------------------------------------------------- 1 | wantTo('ensure that home page works'); 8 | $I->amOnPage(Yii::$app->homeUrl); 9 | $I->see('My Company'); 10 | $I->seeLink('About'); 11 | $I->click('About'); 12 | $I->see('This is the About page.'); 13 | -------------------------------------------------------------------------------- /tests/codeception/frontend/functional/HomeCept.php: -------------------------------------------------------------------------------- 1 | wantTo('ensure that home page works'); 8 | $I->amOnPage(Yii::$app->homeUrl); 9 | $I->see('My Company'); 10 | $I->seeLink('About'); 11 | $I->click('About'); 12 | $I->see('This is the About page.'); 13 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.Language.txt: -------------------------------------------------------------------------------- 1 | Core.Language 2 | TYPE: string 3 | VERSION: 2.0.0 4 | DEFAULT: 'en' 5 | --DESCRIPTION-- 6 | 7 | ISO 639 language code for localizable things in HTML Purifier to use, 8 | which is mainly error reporting. There is currently only an English (en) 9 | translation, so this directive is currently useless. 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Output.CommentScriptContents.txt: -------------------------------------------------------------------------------- 1 | Output.CommentScriptContents 2 | TYPE: bool 3 | VERSION: 2.0.0 4 | DEFAULT: true 5 | --DESCRIPTION-- 6 | Determines whether or not HTML Purifier should attempt to fix up the 7 | contents of script tags for legacy browsers with comments. 8 | --ALIASES-- 9 | Core.CommentScriptContents 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.Disable.txt: -------------------------------------------------------------------------------- 1 | URI.Disable 2 | TYPE: bool 3 | VERSION: 1.3.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | Disables all URIs in all forms. Not sure why you'd want to do that 9 | (after all, the Internet's founded on the notion of a hyperlink). 10 |

11 | 12 | --ALIASES-- 13 | Attr.DisableURI 14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/bg_BG/Internet.php: -------------------------------------------------------------------------------- 1 | 7 | Whether or not to normalize newlines to the operating 8 | system default. When false, HTML Purifier 9 | will attempt to preserve mixed newline files. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/kk_KZ/Color.php: -------------------------------------------------------------------------------- 1 | 9 | This directive enables HTML Purifier to remove not only script tags 10 | but all of their contents. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/cs_CZ/Internet.php: -------------------------------------------------------------------------------- 1 | 7 | Whether or not to permit embedded Flash content from 8 | %HTML.SafeObject to expand to the full screen. Corresponds to 9 | the allowFullScreen parameter. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/Tidy/Transitional.php: -------------------------------------------------------------------------------- 1 | data)): 4 | ?> 5 | 8 | 9 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/views/_addColumns.php: -------------------------------------------------------------------------------- 1 | 2 | $this->addColumn('', '', $this->); 9 | render('_addForeignKeys', [ 12 | 'table' => $table, 13 | 'foreignKeys' => $foreignKeys, 14 | ]); 15 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Filter.Custom.txt: -------------------------------------------------------------------------------- 1 | Filter.Custom 2 | TYPE: list 3 | VERSION: 3.1.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 |

7 | This directive can be used to add custom filters; it is nearly the 8 | equivalent of the now deprecated HTMLPurifier->addFilter() 9 | method. Specify an array of concrete implementations. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.HostBlacklist.txt: -------------------------------------------------------------------------------- 1 | URI.HostBlacklist 2 | TYPE: list 3 | VERSION: 1.3.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | List of strings that are forbidden in the host of any URI. Use it to kill 7 | domain names of spam, etc. Note that it will catch anything in the domain, 8 | so moo.com will catch moo.com.example.com. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/zh_TW/Internet.php: -------------------------------------------------------------------------------- 1 | userName(); 10 | } 11 | 12 | public function domainWord() 13 | { 14 | return \Faker\Factory::create('en_US')->domainWord(); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/acceptance/Swift/EmbeddedFileAcceptanceTest.php: -------------------------------------------------------------------------------- 1 | nice video. Nice-vide\o star *

2 |

nice video. Nice-vide\o star *

3 |

video and http://www.youtube.com/video-on\e and m\a-il@cebe.cc

4 | -------------------------------------------------------------------------------- /vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- 1 | $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier.composer.php', 10 | '2c102faa651ef8ea5874edb585946bce' => $vendorDir . '/swiftmailer/swiftmailer/lib/swift_required.php', 11 | ); 12 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.Custom.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.Custom 2 | TYPE: list 3 | VERSION: 2.0.1 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | 7 |

8 | This directive can be used to add custom auto-format injectors. 9 | Specify an array of injector names (class name minus the prefix) 10 | or concrete implementations. Injector class must exist. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/PhoneNumber.php: -------------------------------------------------------------------------------- 1 | title = 'About'; 8 | $this->params['breadcrumbs'][] = $this->title; 9 | ?> 10 |
11 |

title) ?>

12 | 13 |

This is the About page. You may modify the following file to customize its content:

14 | 15 | 16 |
17 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./core", 3 | "../external/sizzle/dist/sizzle" 4 | ], function( jQuery, Sizzle ) { 5 | 6 | jQuery.find = Sizzle; 7 | jQuery.expr = Sizzle.selectors; 8 | jQuery.expr[ ":" ] = jQuery.expr.pseudos; 9 | jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; 10 | jQuery.text = Sizzle.getText; 11 | jQuery.isXMLDoc = Sizzle.isXML; 12 | jQuery.contains = Sizzle.contains; 13 | 14 | } ); 15 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklistRegexp.txt: -------------------------------------------------------------------------------- 1 | Attr.IDBlacklistRegexp 2 | TYPE: string/null 3 | VERSION: 1.6.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | PCRE regular expression to be matched against all IDs. If the expression is 7 | matches, the ID is rejected. Use this with care: may cause significant 8 | degradation. ID matching is done after all other validation. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Parent.txt: -------------------------------------------------------------------------------- 1 | HTML.Parent 2 | TYPE: string 3 | VERSION: 1.3.0 4 | DEFAULT: 'div' 5 | --DESCRIPTION-- 6 | 7 |

8 | String name of element that HTML fragment passed to library will be 9 | inserted in. An interesting variation would be using span as the 10 | parent element, meaning that only inline tags would be allowed. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/URIScheme/https.php: -------------------------------------------------------------------------------- 1 | 7 | This directive causes span tags without any attributes 8 | to be removed. It will also remove spans that had all attributes 9 | removed during processing. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/bower/bootstrap/less/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- 1 | // Navbar vertical align 2 | // 3 | // Vertically center elements in the navbar. 4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin. 5 | 6 | .navbar-vertical-align(@element-height) { 7 | margin-top: ((@navbar-height - @element-height) / 2); 8 | margin-bottom: ((@navbar-height - @element-height) / 2); 9 | } 10 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.PurifierLinkify 2 | TYPE: bool 3 | VERSION: 2.0.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | Internal auto-formatter that converts configuration directives in 9 | syntax %Namespace.Directive to links. a tags 10 | with the href attribute must be allowed. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-debug/views/default/panels/config/summary.php: -------------------------------------------------------------------------------- 1 | 4 | 11 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/Url.php: -------------------------------------------------------------------------------- 1 | 14 | * @since 2.0 15 | */ 16 | class Url extends BaseUrl 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../core", 3 | "../event" 4 | ], function( jQuery ) { 5 | 6 | // Attach a bunch of functions for handling common AJAX events 7 | jQuery.each( [ 8 | "ajaxStart", 9 | "ajaxStop", 10 | "ajaxComplete", 11 | "ajaxError", 12 | "ajaxSuccess", 13 | "ajaxSend" 14 | ], function( i, type ) { 15 | jQuery.fn[ type ] = function( fn ) { 16 | return this.on( type, fn ); 17 | }; 18 | } ); 19 | 20 | } ); 21 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/md1_tabs.md: -------------------------------------------------------------------------------- 1 | + this is a list item 2 | indented with tabs 3 | 4 | + this is a list item 5 | indented with spaces 6 | 7 | Code: 8 | 9 | this code block is indented by one tab 10 | 11 | And: 12 | 13 | this code block is indented by two tabs 14 | 15 | And: 16 | 17 | + this is an example list item 18 | indented with tabs 19 | 20 | + this is an example list item 21 | indented with spaces 22 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.DisplayLinkURI.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.DisplayLinkURI 2 | TYPE: bool 3 | VERSION: 3.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | This directive turns on the in-text display of URIs in <a> tags, and disables 8 | those links. For example, example becomes 9 | example (http://example.com). 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.OverrideAllowedSchemes.txt: -------------------------------------------------------------------------------- 1 | URI.OverrideAllowedSchemes 2 | TYPE: bool 3 | DEFAULT: true 4 | --DESCRIPTION-- 5 | If this is set to true (which it is by default), you can override 6 | %URI.AllowedSchemes by simply registering a HTMLPurifier_URIScheme to the 7 | registry. If false, you will also have to update that directive in order 8 | to add more schemes. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/rbac/Role.php: -------------------------------------------------------------------------------- 1 | 12 | * @since 2.0 13 | */ 14 | class Role extends Item 15 | { 16 | /** 17 | * @inheritdoc 18 | */ 19 | public $type = self::TYPE_ROLE; 20 | } 21 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/manipulation/_evalUrl.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../ajax" 3 | ], function( jQuery ) { 4 | 5 | jQuery._evalUrl = function( url ) { 6 | return jQuery.ajax( { 7 | url: url, 8 | 9 | // Make this explicit, since user can override this through ajaxSetup (#11264) 10 | type: "GET", 11 | dataType: "script", 12 | async: false, 13 | global: false, 14 | "throws": true 15 | } ); 16 | }; 17 | 18 | return jQuery._evalUrl; 19 | 20 | } ); 21 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/es_PE/PhoneNumber.php: -------------------------------------------------------------------------------- 1 | 7 | Whether or not to allow proprietary elements and attributes in your 8 | documents, as per HTMLPurifier_HTMLModule_Proprietary. 9 | Warning: This can cause your documents to stop 10 | validating! 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-debug/assets/maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/css/var/isHidden.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../../core", 3 | "../../selector" 4 | 5 | // css is assumed 6 | ], function( jQuery ) { 7 | 8 | return function( elem, el ) { 9 | 10 | // isHidden might be called from jQuery#filter function; 11 | // in that case, element will be second argument 12 | elem = el || elem; 13 | return jQuery.css( elem, "display" ) === "none" || 14 | !jQuery.contains( elem.ownerDocument, elem ); 15 | }; 16 | } ); 17 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPath.txt: -------------------------------------------------------------------------------- 1 | Cache.SerializerPath 2 | TYPE: string/null 3 | VERSION: 2.0.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

8 | Absolute path with no trailing slash to store serialized definitions in. 9 | Default is within the 10 | HTML Purifier library inside DefinitionCache/Serializer. This 11 | path must be writable by the webserver. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveInvalidImg.txt: -------------------------------------------------------------------------------- 1 | Core.RemoveInvalidImg 2 | TYPE: bool 3 | DEFAULT: true 4 | VERSION: 1.3.0 5 | --DESCRIPTION-- 6 | 7 |

8 | This directive enables pre-emptive URI checking in img 9 | tags, as the attribute validation strategy is not authorized to 10 | remove elements from the document. Revert to pre-1.3.0 behavior by setting to false. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/en_ZA/PhoneNumber.php: -------------------------------------------------------------------------------- 1 | 8 | Location of configuration documentation to link to, let %s substitute 9 | into the configuration's namespace and directive names sans the percent 10 | sign. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/en_UG/PhoneNumber.php: -------------------------------------------------------------------------------- 1 | 14 | * @since 2.0 15 | */ 16 | class Response extends \yii\base\Response 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/FileHelper.php: -------------------------------------------------------------------------------- 1 | 14 | * @author Alex Makarov 15 | * @since 2.0 16 | */ 17 | class FileHelper extends BaseFileHelper 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/StringHelper.php: -------------------------------------------------------------------------------- 1 | 14 | * @author Alex Makarov 15 | * @since 2.0 16 | */ 17 | class StringHelper extends BaseStringHelper 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/rbac/Permission.php: -------------------------------------------------------------------------------- 1 | 12 | * @since 2.0 13 | */ 14 | class Permission extends Item 15 | { 16 | /** 17 | * @inheritdoc 18 | */ 19 | public $type = self::TYPE_PERMISSION; 20 | } 21 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/md1_amps_and_angle_encoding.md: -------------------------------------------------------------------------------- 1 | AT&T has an ampersand in their name. 2 | 3 | AT&T is another way to write it. 4 | 5 | This & that. 6 | 7 | 4 < 5. 8 | 9 | 6 > 5. 10 | 11 | Here's a [link] [1] with an ampersand in the URL. 12 | 13 | Here's a link with an amersand in the link text: [AT&T] [2]. 14 | 15 | Here's an inline [link](/script?foo=1&bar=2). 16 | 17 | 18 | [1]: http://example.com/?foo=1&bar=2 19 | [2]: http://att.com/ "AT&T" -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/md1_links_reference_style.md: -------------------------------------------------------------------------------- 1 | Foo [bar] [1]. 2 | 3 | Foo [bar][1]. 4 | 5 | Foo [bar] 6 | [1]. 7 | 8 | [1]: /url/ "Title" 9 | 10 | 11 | With [embedded [brackets]] [b]. 12 | 13 | 14 | Indented [once][]. 15 | 16 | Indented [twice][]. 17 | 18 | Indented [thrice][]. 19 | 20 | Indented [four][] times. 21 | 22 | [once]: /url 23 | 24 | [twice]: /url 25 | 26 | [thrice]: /url 27 | 28 | [four]: /url 29 | 30 | 31 | [b]: /url/ 32 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/kk_KZ/Payment.php: -------------------------------------------------------------------------------- 1 | 7 | Allows you to manually specify a set of allowed fonts. If 8 | NULL, all fonts are allowed. This directive 9 | affects generic names (serif, sans-serif, monospace, cursive, 10 | fantasy) as well as specific font families. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/ja_JP/Company.php: -------------------------------------------------------------------------------- 1 | [ 4 | 'cookieParams' => [ 5 | 'path' => '/path1/', 6 | ] 7 | ], 8 | ``` 9 | and 10 | ```php 11 | 'session' => [ 12 | 'cookieParams' => [ 13 | 'path' => '/path2/', 14 | ] 15 | ], 16 | ``` 17 | 18 | In the following starts a Blockquote: 19 | > this is a blockquote 20 | 21 | par 22 | *** 23 | par 24 | 25 | This is some text 26 | # Headline1 27 | more text -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/headline.html: -------------------------------------------------------------------------------- 1 |

a h1 heading

2 |

par1

3 |

a h2 heading

4 |

par2

5 |

a h4 heading

6 |

par3

7 |

another h1

8 |

par4

9 |

another h2

10 |

par5

11 |

a h4 heading

12 |

a h4 heading

13 |
h6
14 |
h7
15 |

16 |

head

17 |

hallo 18 | hallo

19 |

test

20 |

test

21 |

#1 has been fixed

22 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/data/support.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "../var/document", 3 | "../var/support" 4 | ], function( document, support ) { 5 | 6 | ( function() { 7 | var div = document.createElement( "div" ); 8 | 9 | // Support: IE<9 10 | support.deleteExpando = true; 11 | try { 12 | delete div.test; 13 | } catch ( e ) { 14 | support.deleteExpando = false; 15 | } 16 | 17 | // Null elements to avoid leaks in IE. 18 | div = null; 19 | } )(); 20 | 21 | return support; 22 | 23 | } ); 24 | -------------------------------------------------------------------------------- /vendor/bower/jquery/src/manipulation/createSafeFragment.js: -------------------------------------------------------------------------------- 1 | define( [ 2 | "./var/nodeNames" 3 | ], function( nodeNames ) { 4 | 5 | function createSafeFragment( document ) { 6 | var list = nodeNames.split( "|" ), 7 | safeFrag = document.createDocumentFragment(); 8 | 9 | if ( safeFrag.createElement ) { 10 | while ( list.length ) { 11 | safeFrag.createElement( 12 | list.pop() 13 | ); 14 | } 15 | } 16 | return safeFrag; 17 | } 18 | 19 | return createSafeFragment; 20 | } ); 21 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/URI/Email.php: -------------------------------------------------------------------------------- 1 | 8 | Newline string to format final output with. If left null, HTML Purifier 9 | will auto-detect the default newline type of the system and use that; 10 | you can manually override it here. Remember, \r\n is Windows, \r 11 | is Mac, and \n is Unix. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-gii/views/default/diff.php: -------------------------------------------------------------------------------- 1 | 5 |
6 | 7 |
Diff is not supported for this file type.
8 | 9 |
Identical.
10 | 11 |
12 | 13 |
14 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/lib/classes/Swift/Events/EventListener.php: -------------------------------------------------------------------------------- 1 | Foo bar.

2 |

Foo bar.

3 |

Foo bar.

4 |

With embedded [brackets].

5 |

Indented once.

6 |

Indented twice.

7 |

Indented thrice.

8 |

Indented [four][] times.

9 |
[four]: /url
10 | 
11 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/en_NZ/Internet.php: -------------------------------------------------------------------------------- 1 | field($generator, 'viewName'); 7 | echo $form->field($generator, 'modelClass'); 8 | echo $form->field($generator, 'scenarioName'); 9 | echo $form->field($generator, 'viewPath'); 10 | echo $form->field($generator, 'enableI18N')->checkbox(); 11 | echo $form->field($generator, 'messageCategory'); 12 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/views/_dropForeignKeys.php: -------------------------------------------------------------------------------- 1 | $fkData): ?> 2 | // drops foreign key for table `` 3 | $this->dropForeignKey( 4 | '', 5 | '' 6 | ); 7 | 8 | // drops index for column `` 9 | $this->dropIndex( 10 | '', 11 | '' 12 | ); 13 | 14 | 16 | */ 17 | interface Swift_Signer 18 | { 19 | public function reset(); 20 | } 21 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/ArrayHelper.php: -------------------------------------------------------------------------------- 1 | 15 | * @since 2.0 16 | */ 17 | class ArrayHelper extends BaseArrayHelper 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/Inflector.php: -------------------------------------------------------------------------------- 1 | 14 | * @since 2.0 15 | */ 16 | class Inflector extends BaseInflector 17 | { 18 | } 19 | -------------------------------------------------------------------------------- /backend/assets/AppAsset.php: -------------------------------------------------------------------------------- 1 | [ 4 | 'db' => [ 5 | 'class' => 'yii\db\Connection', 6 | 'dsn' => 'mysql:host=localhost;dbname=yii2advanced', 7 | 'username' => 'root', 8 | 'password' => '', 9 | 'charset' => 'utf8', 10 | ], 11 | 'mailer' => [ 12 | 'class' => 'yii\swiftmailer\Mailer', 13 | 'viewPath' => '@common/mail', 14 | ], 15 | ], 16 | ]; 17 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/html-block.md: -------------------------------------------------------------------------------- 1 | paragraph 1 is here 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
ab
cd
13 | 14 | more markdown here 15 | 16 | < this is not an html tag 17 | 18 | some inline **md** 21 | 22 | some inline **md** 23 | 24 | self-closing on block level: 25 | 26 |

this is a paragraph

27 |
-------------------------------------------------------------------------------- /backend/views/post/create.php: -------------------------------------------------------------------------------- 1 | title = '新增文章'; 10 | $this->params['breadcrumbs'][] = ['label' => '文章管理', 'url' => ['index']]; 11 | $this->params['breadcrumbs'][] = $this->title; 12 | ?> 13 |
14 | 15 |

title) ?>

16 | 17 | render('_form', [ 18 | 'model' => $model, 19 | ]) ?> 20 | 21 |
22 | -------------------------------------------------------------------------------- /frontend/assets/AppAsset.php: -------------------------------------------------------------------------------- 1 | AT&T has an ampersand in their name.

2 |

AT&T is another way to write it.

3 |

This & that.

4 |

4 < 5.

5 |

6 > 5.

6 |

Here's a link with an ampersand in the URL.

7 |

Here's a link with an amersand in the link text: AT&T.

8 |

Here's an inline link.

9 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-ol-start-num-data/list.html: -------------------------------------------------------------------------------- 1 |
    2 |
  1. item1, num1
  2. 3 |
  3. item2, num2
  4. 4 |
  5. item3, num3
  6. 5 |
6 |
7 |
    8 |
  1. item1, num3
  2. 9 |
  3. item2, num4
  4. 10 |
  5. item3, num5
  6. 11 |
12 |
13 |
    14 |
  1. item1, num4
  2. 15 |
  3. item2, num5
  4. 16 |
  5. item3, num6
  6. 17 |
18 |
19 |
    20 |
  1. item1, num5
  2. 21 |
  3. item2, num6
  4. 22 |
  5. item3, num7
  6. 23 |
24 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions 2 | TYPE: lookup 3 | VERSION: 4.0.0 4 | DEFAULT: array('td' => true, 'th' => true) 5 | --DESCRIPTION-- 6 |

7 | When %AutoFormat.RemoveEmpty and %AutoFormat.RemoveEmpty.RemoveNbsp 8 | are enabled, this directive defines what HTML elements should not be 9 | removede if they have only a non-breaking space in them. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Cache.DefinitionImpl.txt: -------------------------------------------------------------------------------- 1 | Cache.DefinitionImpl 2 | TYPE: string/null 3 | VERSION: 2.0.0 4 | DEFAULT: 'Serializer' 5 | --DESCRIPTION-- 6 | 7 | This directive defines which method to use when caching definitions, 8 | the complex data-type that makes HTML Purifier tick. Set to null 9 | to disable caching (not recommended, as you will see a definite 10 | performance degradation). 11 | 12 | --ALIASES-- 13 | Core.DefinitionCache 14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/XMLCommonAttributes.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'xml:lang' => 'LanguageCode', 16 | ) 17 | ); 18 | } 19 | 20 | // vim: et sw=4 sts=4 21 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/pl_PL/PhoneNumber.php: -------------------------------------------------------------------------------- 1 | title = 'Create User'; 10 | $this->params['breadcrumbs'][] = ['label' => 'Users', 'url' => ['index']]; 11 | $this->params['breadcrumbs'][] = $this->title; 12 | ?> 13 |
14 | 15 |

title) ?>

16 | 17 | render('_form', [ 18 | 'model' => $model, 19 | ]) ?> 20 | 21 |
22 | -------------------------------------------------------------------------------- /frontend/views/post/create.php: -------------------------------------------------------------------------------- 1 | title = 'Create Post'; 10 | $this->params['breadcrumbs'][] = ['label' => 'Posts', 'url' => ['index']]; 11 | $this->params['breadcrumbs'][] = $this->title; 12 | ?> 13 |
14 | 15 |

title) ?>

16 | 17 | render('_form', [ 18 | 'model' => $model, 19 | ]) ?> 20 | 21 |
22 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/headline.md: -------------------------------------------------------------------------------- 1 | # a h1 heading 2 | 3 | par1 4 | 5 | ## a h2 heading 6 | 7 | par2 8 | 9 | #### a h4 heading 10 | 11 | par3 12 | 13 | another h1 14 | ========== 15 | 16 | par4 17 | 18 | another h2 19 | ---------- 20 | 21 | par5 22 | 23 | #### a h4 heading #### 24 | 25 | #### a h4 heading ######## 26 | 27 | ###### h6 28 | 29 | ####### h7 30 | 31 | 32 | head 33 | ---- 34 | 35 | hallo 36 | hallo 37 | test 38 | ==== 39 | test 40 | 41 | #1 has been fixed 42 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'lang' => 'LanguageCode', 16 | ) 17 | ); 18 | } 19 | 20 | // vim: et sw=4 sts=4 21 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/en_CA/PhoneNumber.php: -------------------------------------------------------------------------------- 1 | urlManager->createAbsoluteUrl(['site/reset-password', 'token' => $user->password_reset_token]); 8 | ?> 9 |
10 |

Hello username) ?>,

11 | 12 |

Follow the link below to reset your password:

13 | 14 |

15 |
16 | -------------------------------------------------------------------------------- /vendor/bower/jquery.inputmask/dist/min/inputmask/inputmask.dependencyLib.jquery.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * inputmask.dependencyLib.jquery.min.js 3 | * http://github.com/RobinHerbots/jquery.inputmask 4 | * Copyright (c) 2010 - 2016 Robin Herbots 5 | * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php) 6 | * Version: 3.2.7 7 | */ 8 | !function(a){"function"==typeof define&&define.amd?define(["jquery"],a):"object"==typeof exports?module.exports=a(require("jquery")):a(jQuery)}(function(a){return window.dependencyLib=a,a}); -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.MakeAbsolute.txt: -------------------------------------------------------------------------------- 1 | URI.MakeAbsolute 2 | TYPE: bool 3 | VERSION: 2.1.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | Converts all URIs into absolute forms. This is useful when the HTML 9 | being filtered assumes a specific base path, but will actually be 10 | viewed in a different context (and setting an alternate base URI is 11 | not possible). %URI.Base must be set for this directive to work. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/zh_TW/PhoneNumber.php: -------------------------------------------------------------------------------- 1 | register('properties.charset')->asValue(null); 12 | 13 | return Swift_MimePart::newInstance(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/helpers/Console.php: -------------------------------------------------------------------------------- 1 | 15 | * @since 2.0 16 | */ 17 | class Console extends BaseConsole 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.SafeIframe.txt: -------------------------------------------------------------------------------- 1 | HTML.SafeIframe 2 | TYPE: bool 3 | VERSION: 4.4.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit iframe tags in untrusted documents. This 8 | directive must be accompanied by a whitelist of permitted iframes, 9 | such as %URI.SafeIframeRegexp, otherwise it will fatally error. 10 | This directive has no effect on strict doctypes, as iframes are not 11 | valid. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/de_AT/PhoneNumber.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | class PhoneNumber extends \Faker\Provider\PhoneNumber 9 | { 10 | /** 11 | * @var array Icelandic phone number formats. 12 | */ 13 | protected static $formats = array( 14 | '+354 ### ####', 15 | '+354 #######', 16 | '+354#######', 17 | '### ####', 18 | '#######', 19 | ); 20 | } 21 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/unit/Swift/Mime/HeaderEncoder/Base64HeaderEncoderTest.php: -------------------------------------------------------------------------------- 1 | assertEquals('B', $encoder->getName()); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /backend/views/comment/create.php: -------------------------------------------------------------------------------- 1 | title = 'Create Comment'; 10 | $this->params['breadcrumbs'][] = ['label' => 'Comments', 'url' => ['index']]; 11 | $this->params['breadcrumbs'][] = $this->title; 12 | ?> 13 |
14 | 15 |

title) ?>

16 | 17 | render('_form', [ 18 | 'model' => $model, 19 | ]) ?> 20 | 21 |
22 | -------------------------------------------------------------------------------- /tests/codeception/common/fixtures/data/init_login.php: -------------------------------------------------------------------------------- 1 | 'erau', 6 | 'auth_key' => 'tUu1qHcde0diwUol3xeI-18MuHkkprQI', 7 | // password_0 8 | 'password_hash' => '$2y$13$nJ1WDlBaGcbCdbNC5.5l4.sgy.OMEKCqtDQOdQ2OWpgiKRWYyzzne', 9 | 'password_reset_token' => 'RkD_Jw0_8HEedzLk7MM-ZKEFfYR7VbMr_1392559490', 10 | 'created_at' => '1392559490', 11 | 'updated_at' => '1392559490', 12 | 'email' => 'sfriesen@jenkins.info', 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/github-data/issue-38.html: -------------------------------------------------------------------------------- 1 |

some text 2 | `` 3 | // some code 4 | \``

5 |
6 |

some text

7 |
// some code
 8 | 
9 |
10 |

some text

11 |
// some code
12 | 
13 |
14 |

some text

15 |
// some code
16 | 
17 |
18 |

some text

19 |
20 |
// some code
21 | 
22 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.RemoveProcessingInstructions.txt: -------------------------------------------------------------------------------- 1 | Core.RemoveProcessingInstructions 2 | TYPE: bool 3 | VERSION: 4.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Instead of escaping processing instructions in the form <? ... 7 | ?>, remove it out-right. This may be useful if the HTML 8 | you are validating contains XML processing instruction gunk, however, 9 | it can also be user-unfriendly for people attempting to post PHP 10 | snippets. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/fr_FR/Internet.php: -------------------------------------------------------------------------------- 1 | 7 | */ 8 | class PhoneNumber extends \Faker\Provider\PhoneNumber 9 | { 10 | /** 11 | * @var array Danish phonenumber formats. 12 | */ 13 | protected static $formats = array( 14 | '+45 ## ## ## ##', 15 | '+45 #### ####', 16 | '+45########', 17 | '## ## ## ##', 18 | '#### ####', 19 | '########', 20 | ); 21 | } 22 | -------------------------------------------------------------------------------- /tests/codeception/config/common/unit.php: -------------------------------------------------------------------------------- 1 | 'app-common', 13 | 'basePath' => dirname(__DIR__), 14 | ] 15 | ); 16 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/MarkdownExtraTest.php: -------------------------------------------------------------------------------- 1 | 8 | * @group extra 9 | */ 10 | class MarkdownExtraTest extends BaseMarkdownTest 11 | { 12 | public function createMarkdown() 13 | { 14 | return new MarkdownExtra(); 15 | } 16 | 17 | public function getDataPaths() 18 | { 19 | return [ 20 | 'markdown-data' => __DIR__ . '/markdown-data', 21 | 'extra-data' => __DIR__ . '/extra-data', 22 | ]; 23 | } 24 | } -------------------------------------------------------------------------------- /vendor/yiisoft/yii2-bootstrap/InputWidget.php: -------------------------------------------------------------------------------- 1 | 14 | * @since 2.0.6 15 | */ 16 | class InputWidget extends \yii\widgets\InputWidget 17 | { 18 | use BootstrapWidgetTrait; 19 | } 20 | -------------------------------------------------------------------------------- /tests/codeception/common/unit/fixtures/data/models/user.php: -------------------------------------------------------------------------------- 1 | 'bayer.hudson', 6 | 'auth_key' => 'HP187Mvq7Mmm3CTU80dLkGmni_FUH_lR', 7 | //password_0 8 | 'password_hash' => '$2y$13$EjaPFBnZOQsHdGuHI.xvhuDp1fHpo8hKRSk6yshqa9c5EG8s3C3lO', 9 | 'password_reset_token' => 'ExzkCOaYc1L8IOBs4wdTGGbgNiG3Wz1I_1402312317', 10 | 'created_at' => '1402312317', 11 | 'updated_at' => '1402312317', 12 | 'email' => 'nicole.paucek@schultz.info', 13 | ], 14 | ]; 15 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/html-block.html: -------------------------------------------------------------------------------- 1 |

paragraph 1 is here

2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |
ab
cd
12 |

more markdown here

13 |

< this is not an html tag

14 |

<thisisnotanhtmltag

15 |

some inline md

16 |

some inline md

17 |

self-closing on block level:

18 |

this is a paragraph

19 |
20 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/fr_BE/PhoneNumber.php: -------------------------------------------------------------------------------- 1 | 15 | * @since 2.0 16 | */ 17 | class UserException extends Exception 18 | { 19 | } 20 | -------------------------------------------------------------------------------- /vendor/bower/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/extra-data/special-attributes.md: -------------------------------------------------------------------------------- 1 | Header 1 {#header1} 2 | ======== 3 | 4 | ## Header 2 ## {#header2} 5 | 6 | ## The Site ## {.main} 7 | 8 | ## The Site ## {.main .shine #the-site} 9 | 10 | [link](url){#id1 .class} 11 | ![img](url){#id2 .class} 12 | 13 | 14 | [link][linkref] or [linkref] 15 | ![img][linkref] 16 | 17 | [linkref]: http://url.de/ "optional title" {#id .class} 18 | 19 | this is just normal text {.main .shine #the-site} 20 | 21 | some { brackets 22 | 23 | some } brackets 24 | 25 | some { } brackets -------------------------------------------------------------------------------- /vendor/bower/typeahead.js/test/fixtures/html.js: -------------------------------------------------------------------------------- 1 | var fixtures = fixtures || {}; 2 | 3 | fixtures.html = { 4 | input: '', 5 | hint: '', 6 | dataset: [ 7 | '
', 8 | '

one

', 9 | '

two

', 10 | '

three

', 11 | '
' 12 | ].join('') 13 | }; 14 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/md1_tabs.html: -------------------------------------------------------------------------------- 1 |
    2 |
  • this is a list item 3 | indented with tabs

    4 |
  • 5 |
  • this is a list item 6 | indented with spaces

    7 |
  • 8 |
9 |

Code:

10 |
this code block is indented by one tab
11 | 
12 |

And:

13 |
	this code block is indented by two tabs
14 | 
15 |

And:

16 |
+	this is an example list item
17 | 	indented with tabs
18 | 
19 | +   this is an example list item
20 |     indented with spaces
21 | 
22 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.CollectErrors.txt: -------------------------------------------------------------------------------- 1 | Core.CollectErrors 2 | TYPE: bool 3 | VERSION: 2.0.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 | Whether or not to collect errors found while filtering the document. This 8 | is a useful way to give feedback to your users. Warning: 9 | Currently this feature is very patchy and experimental, with lots of 10 | possible error messages not yet implemented. It will not cause any 11 | problems, but it may not help your users either. 12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /tests/codeception/common/templates/fixtures/user.php: -------------------------------------------------------------------------------- 1 | getSecurity(); 8 | 9 | return [ 10 | 'username' => $faker->userName, 11 | 'email' => $faker->email, 12 | 'auth_key' => $security->generateRandomString(), 13 | 'password_hash' => $security->generatePasswordHash('password_' . $index), 14 | 'password_reset_token' => $security->generateRandomString() . '_' . time(), 15 | 'created_at' => time(), 16 | 'updated_at' => time(), 17 | ]; 18 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DisableExternal.txt: -------------------------------------------------------------------------------- 1 | URI.DisableExternal 2 | TYPE: bool 3 | VERSION: 1.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Disables links to external websites. This is a highly effective anti-spam 7 | and anti-pagerank-leech measure, but comes at a hefty price: nolinks or 8 | images outside of your domain will be allowed. Non-linkified URIs will 9 | still be preserved. If you want to be able to link to subdomains or use 10 | absolute URIs, specify %URI.Host for your website. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/bg_BG/PhoneNumber.php: -------------------------------------------------------------------------------- 1 | 7 | Whether or not to permit object tags in documents, with a number of extra 8 | security features added to prevent script execution. This is similar to 9 | what websites like MySpace do to object tags. You should also enable 10 | %Output.FlashCompat in order to generate Internet Explorer 11 | compatibility code for your object tags. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/URI.DisableResources.txt: -------------------------------------------------------------------------------- 1 | URI.DisableResources 2 | TYPE: bool 3 | VERSION: 4.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Disables embedding resources, essentially meaning no pictures. You can 8 | still link to them though. See %URI.DisableExternalResources for why 9 | this might be a good idea. 10 |

11 |

12 | Note: While this directive has been available since 1.3.0, 13 | it didn't actually start doing anything until 4.2.0. 14 |

15 | --# vim: et sw=4 sts=4 16 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/de_DE/PhoneNumber.php: -------------------------------------------------------------------------------- 1 | parseCDATA($string); 18 | } 19 | } 20 | 21 | // vim: et sw=4 sts=4 22 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/src/Faker/Provider/no_NO/PhoneNumber.php: -------------------------------------------------------------------------------- 1 | _message = new Swift_Message(); 10 | } 11 | 12 | public function testCallingGenerateIdChangesTheMessageId() 13 | { 14 | $currentId = $this->_message->getId(); 15 | $this->_message->generateId(); 16 | $newId = $this->_message->getId(); 17 | 18 | $this->assertNotEquals($currentId, $newId); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/captcha/SpicyRice.md: -------------------------------------------------------------------------------- 1 | ## Spicy Rice font 2 | 3 | * **Author:** Brian J. Bonislawsky, Astigmatic (AOETI, Astigmatic One Eye Typographic Institute) 4 | * **License:** SIL Open Font License (OFL), version 1.1, [notes and FAQ](http://scripts.sil.org/OFL) 5 | 6 | ## Links 7 | 8 | * [Astigmatic](http://www.astigmatic.com/) 9 | * [Google WebFonts](http://www.google.com/webfonts/specimen/Spicy+Rice) 10 | * [fontsquirrel.com](http://www.fontsquirrel.com/fonts/spicy-rice) 11 | * [fontspace.com](http://www.fontspace.com/astigmatic-one-eye-typographic-institute/spicy-rice) 12 | -------------------------------------------------------------------------------- /tests/codeception/backend/codeception.yml: -------------------------------------------------------------------------------- 1 | namespace: tests\codeception\backend 2 | actor: Tester 3 | paths: 4 | tests: . 5 | log: _output 6 | data: _data 7 | helpers: _support 8 | settings: 9 | bootstrap: _bootstrap.php 10 | suite_class: \PHPUnit_Framework_TestSuite 11 | colors: true 12 | memory_limit: 1024M 13 | log: true 14 | config: 15 | # the entry script URL (with host info) for functional and acceptance tests 16 | # PLEASE ADJUST IT TO THE ACTUAL ENTRY SCRIPT URL 17 | test_entry_url: http://localhost:8080/backend/web/index-test.php 18 | -------------------------------------------------------------------------------- /tests/codeception/frontend/codeception.yml: -------------------------------------------------------------------------------- 1 | namespace: tests\codeception\frontend 2 | actor: Tester 3 | paths: 4 | tests: . 5 | log: _output 6 | data: _data 7 | helpers: _support 8 | settings: 9 | bootstrap: _bootstrap.php 10 | suite_class: \PHPUnit_Framework_TestSuite 11 | colors: true 12 | memory_limit: 1024M 13 | log: true 14 | config: 15 | # the entry script URL (with host info) for functional and acceptance tests 16 | # PLEASE ADJUST IT TO THE ACTUAL ENTRY SCRIPT URL 17 | test_entry_url: http://localhost:8080/frontend/web/index-test.php 18 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/CSS.AllowTricky.txt: -------------------------------------------------------------------------------- 1 | CSS.AllowTricky 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 3.1.0 5 | --DESCRIPTION-- 6 | This parameter determines whether or not to allow "tricky" CSS properties and 7 | values. Tricky CSS properties/values can drastically modify page layout or 8 | be used for deceptive practices but do not directly constitute a security risk. 9 | For example, display:none; is considered a tricky property that 10 | will only be allowed if this directive is set to true. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/Core.ConvertDocumentToFragment.txt: -------------------------------------------------------------------------------- 1 | Core.ConvertDocumentToFragment 2 | TYPE: bool 3 | DEFAULT: true 4 | --DESCRIPTION-- 5 | 6 | This parameter determines whether or not the filter should convert 7 | input that is a full document with html and body tags to a fragment 8 | of just the contents of a body tag. This parameter is simply something 9 | HTML Purifier can do during an edge-case: for most inputs, this 10 | processing is not necessary. 11 | 12 | --ALIASES-- 13 | Core.AcceptFullDocuments 14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /vendor/fzaninotto/faker/test/documentor.php: -------------------------------------------------------------------------------- 1 | seed(1); 6 | $documentor = new Faker\Documentor($generator); 7 | ?> 8 | getFormatters() as $provider => $formatters): ?> 9 | 10 | ### `` 11 | 12 | $example): ?> 13 | // 14 | 15 | 16 | 14 | * @since 2.0 15 | */ 16 | class JqueryAsset extends AssetBundle 17 | { 18 | public $sourcePath = '@bower/jquery/dist'; 19 | public $js = [ 20 | 'jquery.js', 21 | ]; 22 | } 23 | -------------------------------------------------------------------------------- /tests/codeception/backend/functional.suite.yml: -------------------------------------------------------------------------------- 1 | # Codeception Test Suite Configuration 2 | 3 | # suite for functional (integration) tests. 4 | # emulate web requests and make application process them. 5 | # (tip: better to use with frameworks). 6 | 7 | # RUN `build` COMMAND AFTER ADDING/REMOVING MODULES. 8 | #basic/web/index.php 9 | class_name: FunctionalTester 10 | modules: 11 | enabled: 12 | - Filesystem 13 | - Yii2 14 | - tests\codeception\common\_support\FixtureHelper 15 | config: 16 | Yii2: 17 | configFile: '../config/backend/functional.php' 18 | -------------------------------------------------------------------------------- /tests/codeception/config/functional.php: -------------------------------------------------------------------------------- 1 | [ 7 | 'request' => [ 8 | // it's not recommended to run functional tests with CSRF validation enabled 9 | 'enableCsrfValidation' => false, 10 | // but if you absolutely need it set cookie domain to localhost 11 | /* 12 | 'csrfCookie' => [ 13 | 'domain' => 'localhost', 14 | ], 15 | */ 16 | ], 17 | ], 18 | ]; -------------------------------------------------------------------------------- /vendor/bower/bootstrap/less/mixins/border-radius.less: -------------------------------------------------------------------------------- 1 | // Single side border-radius 2 | 3 | .border-top-radius(@radius) { 4 | border-top-right-radius: @radius; 5 | border-top-left-radius: @radius; 6 | } 7 | .border-right-radius(@radius) { 8 | border-bottom-right-radius: @radius; 9 | border-top-right-radius: @radius; 10 | } 11 | .border-bottom-radius(@radius) { 12 | border-bottom-right-radius: @radius; 13 | border-bottom-left-radius: @radius; 14 | } 15 | .border-left-radius(@radius) { 16 | border-bottom-left-radius: @radius; 17 | border-top-left-radius: @radius; 18 | } 19 | -------------------------------------------------------------------------------- /vendor/bower/bootstrap/less/mixins/reset-text.less: -------------------------------------------------------------------------------- 1 | .reset-text() { 2 | font-family: @font-family-base; 3 | // We deliberately do NOT reset font-size. 4 | font-style: normal; 5 | font-weight: normal; 6 | letter-spacing: normal; 7 | line-break: auto; 8 | line-height: @line-height-base; 9 | text-align: left; // Fallback for where `start` is not supported 10 | text-align: start; 11 | text-decoration: none; 12 | text-shadow: none; 13 | text-transform: none; 14 | white-space: normal; 15 | word-break: normal; 16 | word-spacing: normal; 17 | word-wrap: normal; 18 | } 19 | -------------------------------------------------------------------------------- /vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/HTML.Doctype.txt: -------------------------------------------------------------------------------- 1 | HTML.Doctype 2 | TYPE: string/null 3 | DEFAULT: NULL 4 | --DESCRIPTION-- 5 | Doctype to use during filtering. Technically speaking this is not actually 6 | a doctype (as it does not identify a corresponding DTD), but we are using 7 | this name for sake of simplicity. When non-blank, this will override any 8 | older directives like %HTML.XHTML or %HTML.Strict. 9 | --ALLOWED-- 10 | 'HTML 4.01 Transitional', 'HTML 4.01 Strict', 'XHTML 1.0 Transitional', 'XHTML 1.0 Strict', 'XHTML 1.1' 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/lib/classes/Swift/Plugins/Timer.php: -------------------------------------------------------------------------------- 1 |