├── .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 newlinenext par
4 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/test_precedence.html: -------------------------------------------------------------------------------- 1 |Not a headline but two HR:
2 |foo
2 |4 |bar
3 |
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
striked out
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 |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 |A list within a blockquote:
2 |3 |
7 |- asterisk 1
4 |- asterisk 2
5 |- asterisk 3
6 |
Not a headline but a code block:
2 |---
3 |
4 | Not a headline but two HR:
5 |Not a headline but a code block:
2 |---
3 |
4 | Not a headline but two HR:
5 |test test 2 | test
3 | 4 |8 |test 5 | test 6 | test
7 |
test
9 |>this is not a quote
10 | -------------------------------------------------------------------------------- /tests/codeception/backend/unit/TestCase.php: -------------------------------------------------------------------------------- 1 | 2 |**
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 |And nested without indentation:
4 |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 |Item two with some code:
4 |code one
5 |
6 | Item three with code:
8 |code two
9 |
10 | Paragraph.
13 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/github-data/lists.html: -------------------------------------------------------------------------------- 1 |Text before list:
2 |Text after list.
8 |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 |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 . Nice\-vide\o star \* 4 | 5 | [video]: http://www.youtube.com/video\-on\e 6 | 7 | [video] and
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 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/vendor/fzaninotto/faker/src/Faker/Provider/fr_BE/Internet.php:
--------------------------------------------------------------------------------
1 |
5 |
8 |
9 |
--------------------------------------------------------------------------------
/vendor/yiisoft/yii2-gii/generators/extension/default/AutoloadExample.php:
--------------------------------------------------------------------------------
1 | = "
2 |
3 | namespace = substr($generator->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: © AT&T
3 |this is deleted this is not
4 | new text on new line
this is deleted this is not
6 | new text on new line
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 |Here's some example code:
7 |return shell_exec("echo $input | $markdown_script");
8 |
9 | 11 | 12 | -------------------------------------------------------------------------------- /vendor/cebe/markdown/tests/markdown-data/code.html: -------------------------------------------------------------------------------- 1 |quote here
10 |
this is inline code
this is `inline code`
this is inline code
this is inline ` code
this is inline `` code
code block
7 |
8 | code block
9 |
10 | this is code too: co
11 | ooo
12 | de
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 |
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('= $table ?>'); 14 | -------------------------------------------------------------------------------- /vendor/yiisoft/yii2/views/_foreignTables.php: -------------------------------------------------------------------------------- 1 | 9 | * Has foreign keys to the tables: 10 | * 11 | 12 | * - `= $fkData['relatedTable'] ?>` 13 | 8 | beginPage() ?> 9 | beginBody() ?> 10 | = $content ?> 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. Whenfalse, 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('=
3 | $table
4 | ?>', '=
5 | $field['property']
6 | ?>', $this->=
7 | $field['decorators']
8 | ?>);
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 |
nice . Nice-vide\o star *
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 |This is the About page. You may modify the following file to customize its content:
14 | 15 |= __FILE__ ?>
16 | 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 causesspan 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 |
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 perHTMLPurifier_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 |
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 | par1
3 |par2
5 |par3
7 |par4
9 |par5
11 |hallo 18 | hallo
19 |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 |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 `= $fkData['relatedTable'] ?>`
3 | $this->dropForeignKey(
4 | '= $fkData['fk'] ?>',
5 | '= $table ?>'
6 | );
7 |
8 | // drops index for column `= $column ?>`
9 | $this->dropIndex(
10 | '= $fkData['idx'] ?>',
11 | '= $table ?>'
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 | | a | 6 |b | 7 |
| c | 10 |d | 11 |
this is a paragraph
27 |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 |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 |Hello = Html::encode($user->username) ?>,
11 | 12 |Follow the link below to reset your password:
13 | 14 |= Html::a(Html::encode($resetLink), $resetLink) ?>
15 |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 |6 |some text 2 | `
5 |` 3 | // some code 4 | \``
10 |some text
7 |9 |// some code 8 |
14 |some text
11 |13 |// some code 12 |
18 |some text
15 |17 |// some code 16 |
20 |some text
19 |
// 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 || a | 5 |b | 6 |
| c | 9 |d | 10 |
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 |one
two
three
this is a list item 3 | indented with tabs
4 |this is a list item 6 | indented with spaces
7 |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 |
= Html::encode($this->title) ?>
16 | 17 | = $this->render('_form', [ 18 | 'model' => $model, 19 | ]) ?> 20 | 21 |