├── demos ├── hangman │ ├── assets │ │ └── empty │ ├── protected │ │ ├── runtime │ │ │ └── empty │ │ ├── .htaccess │ │ ├── views │ │ │ ├── game │ │ │ │ ├── lose.php │ │ │ │ ├── win.php │ │ │ │ ├── play.php │ │ │ │ └── guess.php │ │ │ └── layouts │ │ │ │ └── main.php │ │ └── config │ │ │ └── main.php │ └── index.php ├── blog │ ├── assets │ │ └── .gitignore │ ├── protected │ │ ├── .htaccess │ │ ├── runtime │ │ │ └── .gitignore │ │ ├── data │ │ │ ├── blog.db │ │ │ ├── blog-test.db │ │ │ └── dbgen.php │ │ ├── yiic │ │ ├── views │ │ │ ├── post │ │ │ │ ├── create.php │ │ │ │ ├── update.php │ │ │ │ ├── index.php │ │ │ │ ├── _comments.php │ │ │ │ └── admin.php │ │ │ ├── site │ │ │ │ ├── pages │ │ │ │ │ └── about.php │ │ │ │ └── error.php │ │ │ ├── layouts │ │ │ │ ├── column1.php │ │ │ │ └── column2.php │ │ │ └── comment │ │ │ │ ├── index.php │ │ │ │ └── update.php │ │ ├── tests │ │ │ ├── fixtures │ │ │ │ ├── tbl_tag.php │ │ │ │ ├── tbl_user.php │ │ │ │ ├── tbl_lookup.php │ │ │ │ ├── tbl_post.php │ │ │ │ └── tbl_comment.php │ │ │ ├── unit │ │ │ │ ├── TagTest.php │ │ │ │ ├── LookupTest.php │ │ │ │ ├── PostTest.php │ │ │ │ └── UserTest.php │ │ │ ├── bootstrap.php │ │ │ └── phpunit.xml │ │ ├── yiic.php │ │ ├── components │ │ │ ├── views │ │ │ │ ├── recentComments.php │ │ │ │ └── userMenu.php │ │ │ ├── UserMenu.php │ │ │ ├── RecentComments.php │ │ │ └── TagCloud.php │ │ ├── config │ │ │ ├── console.php │ │ │ └── test.php │ │ └── yiic.bat │ ├── themes │ │ └── classic │ │ │ └── views │ │ │ └── .htaccess │ ├── css │ │ └── bg.gif │ ├── index.php │ └── index-test.php ├── phonebook │ ├── protected │ │ ├── .htaccess │ │ ├── data │ │ │ ├── phonebook.db │ │ │ └── schema.sql │ │ ├── models │ │ │ └── Contact.php │ │ └── config │ │ │ └── main.php │ ├── flex │ │ ├── bin │ │ │ ├── phonebook.swf │ │ │ ├── playerProductInstall.swf │ │ │ └── history │ │ │ │ └── history.css │ │ ├── .flexProperties │ │ ├── .settings │ │ │ ├── com.adobe.flexbuilder.project.prefs │ │ │ └── org.eclipse.core.resources.prefs │ │ ├── html-template │ │ │ ├── playerProductInstall.swf │ │ │ └── history │ │ │ │ └── history.css │ │ └── .project │ └── index.php └── helloworld │ ├── protected │ ├── .htaccess │ └── controllers │ │ └── SiteController.php │ └── index.php ├── framework ├── .htaccess ├── cli │ ├── runtime │ │ └── .gitignore │ └── views │ │ ├── webapp │ │ ├── assets │ │ │ ├── hg-hgkeep │ │ │ └── git-gitignore │ │ ├── images │ │ │ ├── hg-hgkeep │ │ │ └── git-gitkeep │ │ ├── protected │ │ │ ├── vendor │ │ │ │ ├── hg-hgkeep │ │ │ │ └── git-gitkeep │ │ │ ├── extensions │ │ │ │ ├── hg-hgkeep │ │ │ │ └── git-gitkeep │ │ │ ├── messages │ │ │ │ ├── git-gitkeep │ │ │ │ └── hg-hgkeep │ │ │ ├── migrations │ │ │ │ ├── hg-hgkeep │ │ │ │ └── git-gitkeep │ │ │ ├── runtime │ │ │ │ ├── hg-hgkeep │ │ │ │ └── git-gitignore │ │ │ ├── tests │ │ │ │ ├── unit │ │ │ │ │ ├── hg-hgkeep │ │ │ │ │ └── git-gitkeep │ │ │ │ ├── fixtures │ │ │ │ │ ├── git-gitkeep │ │ │ │ │ └── hg-hgkeep │ │ │ │ ├── report │ │ │ │ │ ├── hg-hgkeep │ │ │ │ │ └── git-gitignore │ │ │ │ ├── bootstrap.php │ │ │ │ └── phpunit.xml │ │ │ ├── commands │ │ │ │ └── shell │ │ │ │ │ ├── git-gitkeep │ │ │ │ │ └── hg-hgkeep │ │ │ ├── .htaccess │ │ │ ├── yiic │ │ │ ├── data │ │ │ │ └── testdrive.db │ │ │ ├── yiic.php │ │ │ ├── views │ │ │ │ ├── layouts │ │ │ │ │ ├── column1.php │ │ │ │ │ └── column2.php │ │ │ │ └── site │ │ │ │ │ ├── error.php │ │ │ │ │ └── pages │ │ │ │ │ └── about.php │ │ │ ├── config │ │ │ │ ├── test.php │ │ │ │ ├── database.php │ │ │ │ └── console.php │ │ │ └── yiic.bat │ │ ├── themes │ │ │ └── classic │ │ │ │ └── views │ │ │ │ ├── site │ │ │ │ ├── hg-hgkeep │ │ │ │ └── git-gitkeep │ │ │ │ ├── layouts │ │ │ │ ├── git-gitkeep │ │ │ │ └── hg-hgkeep │ │ │ │ ├── system │ │ │ │ ├── git-gitkeep │ │ │ │ └── hg-hgkeep │ │ │ │ └── .htaccess │ │ ├── css │ │ │ └── bg.gif │ │ ├── hg-hgignore │ │ ├── index.php │ │ └── index-test.php │ │ └── shell │ │ ├── module │ │ ├── messages │ │ │ └── .gitignore │ │ ├── models │ │ │ └── .gitignore │ │ ├── components │ │ │ └── .gitignore │ │ ├── views │ │ │ ├── layouts │ │ │ │ └── .gitignore │ │ │ └── default │ │ │ │ └── index.php │ │ └── controllers │ │ │ └── DefaultController.php │ │ └── model │ │ ├── test.php │ │ └── fixture.php ├── gii │ ├── generators │ │ ├── module │ │ │ ├── templates │ │ │ │ └── default │ │ │ │ │ ├── messages │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── models │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── components │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── views │ │ │ │ │ ├── layouts │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ └── default │ │ │ │ │ │ └── index.php │ │ │ │ │ └── controllers │ │ │ │ │ └── DefaultController.php │ │ │ └── ModuleGenerator.php │ │ ├── crud │ │ │ └── CrudGenerator.php │ │ ├── form │ │ │ └── FormGenerator.php │ │ ├── controller │ │ │ └── ControllerGenerator.php │ │ └── model │ │ │ └── ModelGenerator.php │ ├── assets │ │ ├── images │ │ │ └── logo.png │ │ └── js │ │ │ └── fancybox │ │ │ ├── blank.gif │ │ │ ├── fancybox.png │ │ │ ├── fancy_close.png │ │ │ ├── fancybox-x.png │ │ │ ├── fancybox-y.png │ │ │ ├── fancy_loading.png │ │ │ ├── fancy_nav_left.png │ │ │ ├── fancy_nav_right.png │ │ │ ├── fancy_shadow_e.png │ │ │ ├── fancy_shadow_n.png │ │ │ ├── fancy_shadow_ne.png │ │ │ ├── fancy_shadow_nw.png │ │ │ ├── fancy_shadow_s.png │ │ │ ├── fancy_shadow_se.png │ │ │ ├── fancy_shadow_sw.png │ │ │ ├── fancy_shadow_w.png │ │ │ ├── fancy_title_left.png │ │ │ ├── fancy_title_main.png │ │ │ ├── fancy_title_over.png │ │ │ └── fancy_title_right.png │ ├── views │ │ ├── default │ │ │ ├── error.php │ │ │ ├── login.php │ │ │ └── index.php │ │ ├── layouts │ │ │ └── column1.php │ │ └── common │ │ │ ├── diff.php │ │ │ └── code.php │ └── components │ │ ├── TextDiff.php │ │ └── UserIdentity.php ├── yii-powered.png ├── vendors │ ├── Net_IDNA2 │ │ └── Net │ │ │ └── IDNA2 │ │ │ ├── Exception.php │ │ │ └── Exception │ │ │ └── Nameprep.php │ ├── htmlpurifier │ │ └── standalone │ │ │ └── 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 │ │ │ │ ├── URI.DefinitionID.txt │ │ │ │ ├── Attr.AllowedRev.txt │ │ │ │ ├── Attr.ForbiddenClasses.txt │ │ │ │ ├── HTML.Trusted.txt │ │ │ │ ├── HTML.SafeScripting.txt │ │ │ │ ├── Output.FlashCompat.txt │ │ │ │ ├── Attr.AllowedRel.txt │ │ │ │ ├── AutoFormat.Linkify.txt │ │ │ │ ├── CSS.AllowDuplicates.txt │ │ │ │ ├── HTML.TargetNoreferrer.txt │ │ │ │ ├── Output.CommentScriptContents.txt │ │ │ │ ├── URI.Disable.txt │ │ │ │ ├── Core.Language.txt │ │ │ │ ├── Core.NormalizeNewlines.txt │ │ │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ │ │ ├── Attr.DefaultTextDir.txt │ │ │ │ ├── Core.EnableIDNA.txt │ │ │ │ ├── Core.RemoveScriptContents.txt │ │ │ │ ├── HTML.FlashAllowFullScreen.txt │ │ │ │ ├── URI.HostBlacklist.txt │ │ │ │ ├── AutoFormat.Custom.txt │ │ │ │ ├── Filter.Custom.txt │ │ │ │ ├── HTML.TargetNoopener.txt │ │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ │ ├── HTML.Parent.txt │ │ │ │ ├── Attr.DefaultInvalidImage.txt │ │ │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt │ │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ │ ├── HTML.Forms.txt │ │ │ │ ├── URI.OverrideAllowedSchemes.txt │ │ │ │ ├── Core.AllowParseManyTags.txt │ │ │ │ ├── HTML.Proprietary.txt │ │ │ │ ├── Cache.SerializerPath.txt │ │ │ │ ├── Core.RemoveInvalidImg.txt │ │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ │ │ ├── CSS.AllowedFonts.txt │ │ │ │ ├── HTML.AllowedComments.txt │ │ │ │ ├── Output.Newline.txt │ │ │ │ ├── Attr.ID.HTML5.txt │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ │ ├── URI.MakeAbsolute.txt │ │ │ │ ├── HTML.SafeIframe.txt │ │ │ │ ├── Core.RemoveProcessingInstructions.txt │ │ │ │ ├── URI.DefaultScheme.txt │ │ │ │ ├── Core.CollectErrors.txt │ │ │ │ ├── Cache.SerializerPermissions.txt │ │ │ │ ├── URI.DisableExternal.txt │ │ │ │ ├── HTML.SafeObject.txt │ │ │ │ ├── URI.DisableResources.txt │ │ │ │ ├── CSS.AllowTricky.txt │ │ │ │ ├── Core.ConvertDocumentToFragment.txt │ │ │ │ ├── HTML.Doctype.txt │ │ │ │ ├── Attr.IDPrefix.txt │ │ │ │ ├── Core.DisableExcludes.txt │ │ │ │ ├── CSS.ForbiddenProperties.txt │ │ │ │ ├── HTML.Attr.Name.UseCDATA.txt │ │ │ │ ├── Attr.DefaultImageAlt.txt │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt │ │ │ │ ├── HTML.SafeEmbed.txt │ │ │ │ ├── HTML.MaxImgLength.txt │ │ │ │ ├── Core.EscapeInvalidChildren.txt │ │ │ │ ├── Filter.ExtractStyleBlocks.Escaping.txt │ │ │ │ ├── Filter.YouTube.txt │ │ │ │ ├── URI.AllowedSchemes.txt │ │ │ │ ├── Output.SortAttr.txt │ │ │ │ ├── HTML.DefinitionRev.txt │ │ │ │ ├── Output.FixInnerHTML.txt │ │ │ │ ├── URI.DisableExternalResources.txt │ │ │ │ ├── Attr.AllowedFrameTargets.txt │ │ │ │ ├── Core.EscapeNonASCIICharacters.txt │ │ │ │ ├── Core.MaintainLineNumbers.txt │ │ │ │ ├── HTML.BlockWrapper.txt │ │ │ │ ├── Core.AggressivelyRemoveScript.txt │ │ │ │ ├── Core.AllowHostnameUnderscore.txt │ │ │ │ ├── Core.HiddenElements.txt │ │ │ │ ├── Filter.ExtractStyleBlocks.TidyImpl.txt │ │ │ │ ├── URI.MungeResources.txt │ │ │ │ ├── CSS.AllowedProperties.txt │ │ │ │ ├── CSS.MaxImgLength.txt │ │ │ │ ├── HTML.AllowedAttributes.txt │ │ │ │ ├── Attr.EnableID.txt │ │ │ │ └── AutoFormat.RemoveEmpty.Predicate.txt │ │ │ └── Exception.php │ │ │ └── Printer │ │ │ ├── ConfigForm.js │ │ │ └── ConfigForm.css │ └── TextHighlighter │ │ └── Text │ │ └── TODO ├── web │ ├── js │ │ └── source │ │ │ ├── rating │ │ │ ├── star.gif │ │ │ └── delete.gif │ │ │ ├── treeview │ │ │ └── images │ │ │ │ ├── file.gif │ │ │ │ ├── plus.gif │ │ │ │ ├── folder.gif │ │ │ │ ├── minus.gif │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── folder-closed.gif │ │ │ │ ├── treeview-black.gif │ │ │ │ ├── treeview-gray.gif │ │ │ │ ├── treeview-red.gif │ │ │ │ ├── treeview-default.gif │ │ │ │ ├── treeview-black-line.gif │ │ │ │ ├── treeview-famfamfam.gif │ │ │ │ ├── treeview-gray-line.gif │ │ │ │ ├── treeview-red-line.gif │ │ │ │ ├── treeview-default-line.gif │ │ │ │ └── treeview-famfamfam-line.gif │ │ │ ├── autocomplete │ │ │ └── indicator.gif │ │ │ └── jui │ │ │ └── css │ │ │ ├── base │ │ │ └── images │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ └── smoothness │ │ │ └── images │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ └── widgets │ │ └── captcha │ │ ├── SpicyRice.ttf │ │ └── SpicyRice.md ├── zii │ └── widgets │ │ └── assets │ │ ├── gridview │ │ ├── bg.gif │ │ ├── up.gif │ │ ├── delete.png │ │ ├── down.gif │ │ ├── update.png │ │ ├── view.png │ │ └── loading.gif │ │ ├── listview │ │ ├── up.gif │ │ ├── down.gif │ │ └── loading.gif │ │ └── detailview │ │ └── styles.css ├── yiic ├── i18n │ └── data │ │ └── README.txt ├── views │ ├── ru │ │ ├── profile-callstack-firebug.php │ │ ├── profile-summary-firebug.php │ │ └── log-firebug.php │ ├── da │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── he │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── ja │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── no │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── zh_cn │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── ca │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── el │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── es │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── fr │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── id │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── ko │ │ ├── profile-callstack-firebug.php │ │ ├── profile-summary-firebug.php │ │ └── log-firebug.php │ ├── profile-callstack-firebug.php │ ├── ro │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── sk │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── vi │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── ar │ │ ├── profile-callstack-firebug.php │ │ ├── profile-summary-firebug.php │ │ └── log-firebug.php │ ├── lt │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── zh_tw │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── fi │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── pl │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── pt │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── sv │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── uk │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── bg │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── hr │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── nl │ │ ├── profile-callstack-firebug.php │ │ ├── profile-summary-firebug.php │ │ └── log-firebug.php │ ├── pt_br │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── it │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── lv │ │ ├── profile-callstack-firebug.php │ │ ├── profile-summary-firebug.php │ │ └── log-firebug.php │ ├── de │ │ ├── profile-callstack-firebug.php │ │ ├── log-firebug.php │ │ └── profile-summary-firebug.php │ ├── profile-summary-firebug.php │ └── log-firebug.php ├── base │ └── CException.php ├── db │ └── schema │ │ ├── pgsql │ │ └── CPgsqlTableSchema.php │ │ ├── oci │ │ └── COciTableSchema.php │ │ ├── mysql │ │ └── CMysqlTableSchema.php │ │ └── cubrid │ │ └── CCubridTableSchema.php └── yiic.bat └── requirements ├── views └── .htaccess └── messages ├── .htaccess └── config.php /demos/hangman/assets/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demos/blog/assets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /demos/hangman/protected/runtime/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /framework/cli/runtime/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/assets/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/images/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demos/blog/protected/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /demos/blog/protected/runtime/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/images/git-gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements/views/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /demos/hangman/protected/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /demos/phonebook/protected/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/vendor/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements/messages/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /demos/helloworld/protected/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /framework/cli/views/shell/module/messages/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /framework/cli/views/shell/module/models/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/extensions/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/messages/git-gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/messages/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/migrations/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/runtime/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/tests/unit/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/vendor/git-gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demos/blog/themes/classic/views/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /framework/cli/views/shell/module/components/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /framework/cli/views/shell/module/views/layouts/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/commands/shell/git-gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/commands/shell/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/extensions/git-gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/migrations/git-gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/tests/fixtures/git-gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/tests/fixtures/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/tests/report/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/tests/unit/git-gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/themes/classic/views/site/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/assets/git-gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/themes/classic/views/layouts/git-gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/themes/classic/views/layouts/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/themes/classic/views/site/git-gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/themes/classic/views/system/git-gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/themes/classic/views/system/hg-hgkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/gii/generators/module/templates/default/messages/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /framework/gii/generators/module/templates/default/models/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/runtime/git-gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /framework/cli/views/webapp/themes/classic/views/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /framework/gii/generators/module/templates/default/components/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /framework/gii/generators/module/templates/default/views/layouts/.gitkeep: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/tests/report/git-gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /demos/blog/css/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/demos/blog/css/bg.gif -------------------------------------------------------------------------------- /framework/yii-powered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/framework/yii-powered.png -------------------------------------------------------------------------------- /demos/blog/protected/data/blog.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/demos/blog/protected/data/blog.db -------------------------------------------------------------------------------- /demos/blog/protected/yiic: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | 2 | 3 | -------------------------------------------------------------------------------- /framework/gii/assets/js/fancybox/fancy_nav_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/framework/gii/assets/js/fancybox/fancy_nav_left.png -------------------------------------------------------------------------------- /framework/gii/assets/js/fancybox/fancy_nav_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/framework/gii/assets/js/fancybox/fancy_nav_right.png -------------------------------------------------------------------------------- /framework/gii/assets/js/fancybox/fancy_shadow_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/framework/gii/assets/js/fancybox/fancy_shadow_e.png -------------------------------------------------------------------------------- /framework/gii/assets/js/fancybox/fancy_shadow_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/framework/gii/assets/js/fancybox/fancy_shadow_n.png -------------------------------------------------------------------------------- /framework/gii/assets/js/fancybox/fancy_shadow_ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/framework/gii/assets/js/fancybox/fancy_shadow_ne.png -------------------------------------------------------------------------------- /framework/gii/assets/js/fancybox/fancy_shadow_nw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/framework/gii/assets/js/fancybox/fancy_shadow_nw.png -------------------------------------------------------------------------------- /framework/gii/assets/js/fancybox/fancy_shadow_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/framework/gii/assets/js/fancybox/fancy_shadow_s.png -------------------------------------------------------------------------------- /framework/gii/assets/js/fancybox/fancy_shadow_se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/framework/gii/assets/js/fancybox/fancy_shadow_se.png -------------------------------------------------------------------------------- /framework/gii/assets/js/fancybox/fancy_shadow_sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/framework/gii/assets/js/fancybox/fancy_shadow_sw.png -------------------------------------------------------------------------------- /framework/gii/assets/js/fancybox/fancy_shadow_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/framework/gii/assets/js/fancybox/fancy_shadow_w.png -------------------------------------------------------------------------------- /framework/gii/assets/js/fancybox/fancy_title_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/framework/gii/assets/js/fancybox/fancy_title_left.png -------------------------------------------------------------------------------- /framework/gii/assets/js/fancybox/fancy_title_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/framework/gii/assets/js/fancybox/fancy_title_main.png -------------------------------------------------------------------------------- /framework/gii/assets/js/fancybox/fancy_title_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/framework/gii/assets/js/fancybox/fancy_title_over.png -------------------------------------------------------------------------------- /demos/phonebook/flex/.settings/com.adobe.flexbuilder.project.prefs: -------------------------------------------------------------------------------- 1 | #Wed Oct 08 08:18:30 EDT 2008 2 | eclipse.preferences.version=1 3 | upgradeSDK/fb3= 4 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/data/testdrive.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/framework/cli/views/webapp/protected/data/testdrive.db -------------------------------------------------------------------------------- /framework/gii/assets/js/fancybox/fancy_title_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/framework/gii/assets/js/fancybox/fancy_title_right.png -------------------------------------------------------------------------------- /framework/gii/views/default/error.php: -------------------------------------------------------------------------------- 1 |

Error

2 | 3 |
4 | 5 |
-------------------------------------------------------------------------------- /framework/web/js/source/treeview/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/framework/web/js/source/treeview/images/ajax-loader.gif -------------------------------------------------------------------------------- /demos/phonebook/flex/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Wed Oct 08 03:19:04 GMT 2008 2 | eclipse.preferences.version=1 3 | encoding/=utf-8 4 | -------------------------------------------------------------------------------- /framework/web/js/source/treeview/images/folder-closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/framework/web/js/source/treeview/images/folder-closed.gif -------------------------------------------------------------------------------- /framework/web/js/source/treeview/images/treeview-black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/framework/web/js/source/treeview/images/treeview-black.gif -------------------------------------------------------------------------------- /framework/web/js/source/treeview/images/treeview-gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/framework/web/js/source/treeview/images/treeview-gray.gif -------------------------------------------------------------------------------- /framework/web/js/source/treeview/images/treeview-red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/framework/web/js/source/treeview/images/treeview-red.gif -------------------------------------------------------------------------------- /demos/phonebook/flex/html-template/playerProductInstall.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/demos/phonebook/flex/html-template/playerProductInstall.swf -------------------------------------------------------------------------------- /framework/web/js/source/treeview/images/treeview-default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/framework/web/js/source/treeview/images/treeview-default.gif -------------------------------------------------------------------------------- /framework/gii/generators/crud/CrudGenerator.php: -------------------------------------------------------------------------------- 1 | You Lose! 2 | 3 |

The word was: word; ?>.

4 | 5 |

6 | -------------------------------------------------------------------------------- /demos/hangman/protected/views/game/win.php: -------------------------------------------------------------------------------- 1 |

You Win!

2 | 3 |

The word was: word; ?>.

4 | 5 |

6 | -------------------------------------------------------------------------------- /framework/gii/generators/controller/ControllerGenerator.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Create Post', 4 | ); 5 | ?> 6 |

Create Post

7 | 8 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /framework/cli/views/shell/module/controllers/DefaultController.php: -------------------------------------------------------------------------------- 1 | render('index'); 8 | } 9 | } -------------------------------------------------------------------------------- /demos/blog/protected/tests/fixtures/tbl_tag.php: -------------------------------------------------------------------------------- 1 | 'yii', 6 | 'frequency'=>1, 7 | ), 8 | array( 9 | 'name'=>'blog', 10 | 'frequency'=>1, 11 | ), 12 | ); 13 | -------------------------------------------------------------------------------- /demos/hangman/index.php: -------------------------------------------------------------------------------- 1 | run(); -------------------------------------------------------------------------------- /demos/helloworld/index.php: -------------------------------------------------------------------------------- 1 | run(); -------------------------------------------------------------------------------- /framework/cli/views/webapp/hg-hgignore: -------------------------------------------------------------------------------- 1 | syntax: glob 2 | 3 | syntax: regexp 4 | # ignore all except .hgkeep 5 | ^assets/(?!.*\.hgkeep$).+ 6 | ^protected/runtime/(?!.*\.hgkeep$).+ 7 | ^protected/tests/report/(?!.*\.hgkeep$).+ 8 | -------------------------------------------------------------------------------- /framework/web/js/source/jui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/yii/HEAD/framework/web/js/source/jui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /demos/blog/protected/tests/unit/TagTest.php: -------------------------------------------------------------------------------- 1 | 'Tag', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /demos/blog/protected/yiic.php: -------------------------------------------------------------------------------- 1 | pageTitle=Yii::app()->name . ' - About'; 3 | $this->breadcrumbs=array( 4 | 'About', 5 | ); 6 | ?> 7 |

About

8 | 9 |

This is the "about" page for my blog site.

-------------------------------------------------------------------------------- /demos/blog/protected/tests/unit/LookupTest.php: -------------------------------------------------------------------------------- 1 | 'Lookup', 7 | ); 8 | 9 | public function testCreate() 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /demos/blog/protected/views/layouts/column1.php: -------------------------------------------------------------------------------- 1 | beginContent('/layouts/main'); ?> 2 |
3 |
4 | 5 |
6 |
7 | endContent(); ?> -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/yiic.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | class DefaultController extends Controller 4 | { 5 | public function actionIndex() 6 | { 7 | $this->render('index'); 8 | } 9 | } -------------------------------------------------------------------------------- /framework/gii/views/layouts/column1.php: -------------------------------------------------------------------------------- 1 | beginContent('gii.views.layouts.main'); ?> 2 |
3 |
4 | 5 |
6 |
7 | endContent(); ?> -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/views/layouts/column1.php: -------------------------------------------------------------------------------- 1 | 2 | beginContent('//layouts/main'); ?> 3 |
4 | 5 |
6 | endContent(); ?> -------------------------------------------------------------------------------- /demos/blog/protected/tests/fixtures/tbl_user.php: -------------------------------------------------------------------------------- 1 | 'demo', 6 | 'password'=>'$2a$10$JTJf6/XqC94rrOtzuF397OHa4mbmZrVTBOQCmYD9U.obZRUut4BoC', 7 | 'email'=>'webmaster@example.com', 8 | ), 9 | ); 10 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Nofollow.txt: -------------------------------------------------------------------------------- 1 | HTML.Nofollow 2 | TYPE: bool 3 | VERSION: 4.3.0 4 | DEFAULT: FALSE 5 | --DESCRIPTION-- 6 | If enabled, nofollow rel attributes are added to all outgoing links. 7 | --# vim: et sw=4 sts=4 8 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /demos/blog/protected/views/comment/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Comments', 4 | ); 5 | ?> 6 | 7 |

Comments

8 | 9 | widget('zii.widgets.CListView', array( 10 | 'dataProvider'=>$dataProvider, 11 | 'itemView'=>'_view', 12 | )); ?> 13 | -------------------------------------------------------------------------------- /demos/blog/protected/views/site/error.php: -------------------------------------------------------------------------------- 1 | pageTitle=Yii::app()->name . ' - Error'; 3 | $this->breadcrumbs=array( 4 | 'Error', 5 | ); 6 | ?> 7 | 8 |

Error

9 | 10 |
11 | 12 |
-------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.TidyRemove.txt: -------------------------------------------------------------------------------- 1 | HTML.TidyRemove 2 | TYPE: lookup 3 | VERSION: 2.0.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | 7 | Fixes to remove from the default set of Tidy fixes as per your level. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /demos/blog/protected/views/post/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | $model->title=>$model->url, 4 | 'Update', 5 | ); 6 | ?> 7 | 8 |

Update title); ?>

9 | 10 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/Exception.php: -------------------------------------------------------------------------------- 1 | 2 | getRecentComments() as $comment): ?> 3 |
  • authorLink; ?> on 4 | post->title), $comment->getUrl()); ?> 5 |
  • 6 | 7 | -------------------------------------------------------------------------------- /demos/blog/protected/config/console.php: -------------------------------------------------------------------------------- 1 | dirname(__FILE__).DIRECTORY_SEPARATOR.'..', 7 | 'name'=>'My Console Application', 8 | ); -------------------------------------------------------------------------------- /demos/blog/protected/views/comment/update.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Comments'=>array('index'), 4 | 'Update Comment #'.$model->id, 5 | ); 6 | ?> 7 | 8 |

    Update Comment #id; ?>

    9 | 10 | renderPartial('_form', array('model'=>$model)); ?> -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /demos/hangman/protected/config/main.php: -------------------------------------------------------------------------------- 1 | 'Hangman Game', 5 | 'defaultController'=>'game', 6 | 'components'=>array( 7 | 'urlManager'=>array( 8 | 'urlFormat'=>'path', 9 | 'rules'=>array( 10 | 'game/guess/'=>'game/guess', 11 | ), 12 | ), 13 | ), 14 | ); -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidTags.txt: -------------------------------------------------------------------------------- 1 | Core.EscapeInvalidTags 2 | TYPE: bool 3 | DEFAULT: false 4 | --DESCRIPTION-- 5 | When true, invalid tags will be written back to the document as plain text. 6 | Otherwise, they are silently dropped. 7 | --# vim: et sw=4 sts=4 8 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/CSS.DefinitionRev.txt: -------------------------------------------------------------------------------- 1 | CSS.DefinitionRev 2 | TYPE: int 3 | VERSION: 2.0.0 4 | DEFAULT: 1 5 | --DESCRIPTION-- 6 | 7 |

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

    11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.AllowedClasses.txt: -------------------------------------------------------------------------------- 1 | Attr.AllowedClasses 2 | TYPE: lookup/null 3 | VERSION: 4.0.0 4 | DEFAULT: null 5 | --DESCRIPTION-- 6 | List of allowed class values in the class attribute. By default, this is null, 7 | which means all classes are allowed. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /demos/blog/protected/tests/fixtures/tbl_lookup.php: -------------------------------------------------------------------------------- 1 | array( 6 | 'name' => '', 7 | 'code' => '', 8 | 'type' => '', 9 | 'position' => '', 10 | ), 11 | 'sample2'=>array( 12 | 'name' => '', 13 | 'code' => '', 14 | 'type' => '', 15 | 'position' => '', 16 | ), 17 | */ 18 | ); 19 | -------------------------------------------------------------------------------- /framework/gii/views/common/diff.php: -------------------------------------------------------------------------------- 1 | 2 |
    Diff is not supported for this file type.
    3 | 4 |
    No changes.
    5 | 6 |
    7 |
    8 |
    9 | 10 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Strict.txt: -------------------------------------------------------------------------------- 1 | HTML.Strict 2 | TYPE: bool 3 | VERSION: 1.3.0 4 | DEFAULT: false 5 | DEPRECATED-VERSION: 1.7.0 6 | DEPRECATED-USE: HTML.Doctype 7 | --DESCRIPTION-- 8 | Determines whether or not to use Transitional (loose) or Strict rulesets. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /demos/blog/protected/data/dbgen.php: -------------------------------------------------------------------------------- 1 | exec($sql); 13 | } 14 | -------------------------------------------------------------------------------- /demos/blog/protected/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | 2 |

    Posts Tagged with

    3 | 4 | 5 | widget('zii.widgets.CListView', array( 6 | 'dataProvider'=>$dataProvider, 7 | 'itemView'=>'_view', 8 | 'template'=>"{items}\n{pager}", 9 | )); ?> 10 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/CSS.AllowImportant.txt: -------------------------------------------------------------------------------- 1 | CSS.AllowImportant 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 3.1.0 5 | --DESCRIPTION-- 6 | This parameter determines whether or not !important cascade modifiers should 7 | be allowed in user CSS. If false, !important will stripped. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/tests/bootstrap.php: -------------------------------------------------------------------------------- 1 | title=CHtml::encode(Yii::app()->user->name); 10 | parent::init(); 11 | } 12 | 13 | protected function renderContent() 14 | { 15 | $this->render('userMenu'); 16 | } 17 | } -------------------------------------------------------------------------------- /demos/helloworld/protected/controllers/SiteController.php: -------------------------------------------------------------------------------- 1 | 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 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /demos/blog/protected/tests/fixtures/tbl_post.php: -------------------------------------------------------------------------------- 1 | array( 5 | 'title'=>'test post 1', 6 | 'content'=>"This blog is powered by [Yii framework](https://www.yiiframework.com).", 7 | 'status'=>2, 8 | 'create_time'=>1230952187, 9 | 'update_time'=>1230952187, 10 | 'author_id'=>1, 11 | 'tags'=>'yii, blog', 12 | ), 13 | ); 14 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/views/site/error.php: -------------------------------------------------------------------------------- 1 | pageTitle=Yii::app()->name . ' - Error'; 6 | $this->breadcrumbs=array( 7 | 'Error', 8 | ); 9 | ?> 10 | 11 |

    Error

    12 | 13 |
    14 | 15 |
    -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/CSS.Trusted.txt: -------------------------------------------------------------------------------- 1 | CSS.Trusted 2 | TYPE: bool 3 | VERSION: 4.2.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Indicates whether or not the user's CSS input is trusted or not. If the 7 | input is trusted, a more expansive set of allowed properties. See 8 | also %HTML.Trusted. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRev.txt: -------------------------------------------------------------------------------- 1 | Attr.AllowedRev 2 | TYPE: lookup 3 | VERSION: 1.6.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | List of allowed reverse document relationships in the rev attribute. This 7 | attribute is a bit of an edge-case; if you don't know what it is for, stay 8 | away. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.ForbiddenClasses.txt: -------------------------------------------------------------------------------- 1 | Attr.ForbiddenClasses 2 | TYPE: lookup 3 | VERSION: 4.0.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | List of forbidden class values in the class attribute. By default, this is 7 | empty, which means that no classes are forbidden. See also %Attr.AllowedClasses. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/views/site/pages/about.php: -------------------------------------------------------------------------------- 1 | pageTitle=Yii::app()->name . ' - About'; 5 | $this->breadcrumbs=array( 6 | 'About', 7 | ); 8 | ?> 9 |

    About

    10 | 11 |

    This is a "static" page. You may change the content of this page 12 | by updating the file .

    13 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Trusted.txt: -------------------------------------------------------------------------------- 1 | HTML.Trusted 2 | TYPE: bool 3 | VERSION: 2.0.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Indicates whether or not the user input is trusted or not. If the input is 7 | trusted, a more expansive set of allowed tags and attributes will be used. 8 | See also %CSS.Trusted. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /demos/blog/index.php: -------------------------------------------------------------------------------- 1 | run(); 12 | -------------------------------------------------------------------------------- /demos/phonebook/index.php: -------------------------------------------------------------------------------- 1 | run(); 12 | -------------------------------------------------------------------------------- /framework/gii/views/default/login.php: -------------------------------------------------------------------------------- 1 | 12 | -------------------------------------------------------------------------------- /demos/blog/protected/tests/unit/PostTest.php: -------------------------------------------------------------------------------- 1 | 'Post', 11 | 'comments'=>'Comment', 12 | ); 13 | 14 | public function testSave() 15 | { 16 | // write code here to test post saving method 17 | } 18 | } -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.SafeScripting.txt: -------------------------------------------------------------------------------- 1 | HTML.SafeScripting 2 | TYPE: lookup 3 | VERSION: 4.5.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 |

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

    10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /demos/blog/protected/tests/phpunit.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /framework/gii/views/default/index.php: -------------------------------------------------------------------------------- 1 |

    Welcome to Yii Code Generator!

    2 | 3 |

    4 | You may use the following generators to quickly build up your Yii application: 5 |

    6 |
      7 | module->controllerMap as $name=>$config): ?> 8 |
    • 9 | 10 |
    11 | 12 | -------------------------------------------------------------------------------- /framework/vendors/TextHighlighter/Text/TODO: -------------------------------------------------------------------------------- 1 | # $Id: TODO,v 1.1 2007/06/03 02:35:28 ssttoo Exp $ 2 | 3 | Major issues to solve (but I currently have no idea how) : 4 | 5 | - speedup highlighting process 6 | 7 | - switching between highlighters depending on context, for example : 8 | PHP code -> HTML -> (JavaScript|CSS) 9 | 10 | 11 | # vim: set autoindent tabstop=4 shiftwidth=4 softtabstop=4 tw=78: */ 12 | 13 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.Linkify.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.Linkify 2 | TYPE: bool 3 | VERSION: 2.0.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

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

    12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /demos/blog/protected/components/views/userMenu.php: -------------------------------------------------------------------------------- 1 |
      2 |
    • 3 |
    • 4 |
    • pendingCommentCount . ')'; ?>
    • 5 |
    • 6 |
    -------------------------------------------------------------------------------- /demos/phonebook/flex/bin/history/history.css: -------------------------------------------------------------------------------- 1 | /* This CSS stylesheet defines styles used by required elements in a flex application page that supports browser history */ 2 | 3 | #ie_historyFrame { width: 0px; height: 0px; display:none } 4 | #firefox_anchorDiv { width: 0px; height: 0px; display:none } 5 | #safari_formDiv { width: 0px; height: 0px; display:none } 6 | #safari_rememberDiv { width: 0px; height: 0px; display:none } 7 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/CSS.AllowDuplicates.txt: -------------------------------------------------------------------------------- 1 | CSS.AllowDuplicates 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 4.8.0 5 | --DESCRIPTION-- 6 |

    7 | By default, HTML Purifier removes duplicate CSS properties, 8 | like color:red; color:blue. If this is set to 9 | true, duplicate properties are allowed. 10 |

    11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.TargetNoreferrer.txt: -------------------------------------------------------------------------------- 1 | HTML.TargetNoreferrer 2 | TYPE: bool 3 | VERSION: 4.8.0 4 | DEFAULT: TRUE 5 | --DESCRIPTION-- 6 | If enabled, noreferrer rel attributes are added to links which have 7 | a target attribute associated with them. This prevents malicious 8 | destinations from overwriting the original window. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.NormalizeNewlines.txt: -------------------------------------------------------------------------------- 1 | Core.NormalizeNewlines 2 | TYPE: bool 3 | VERSION: 4.2.0 4 | DEFAULT: true 5 | --DESCRIPTION-- 6 |

    7 | Whether or not to normalize newlines to the operating 8 | system default. When false, HTML Purifier 9 | will attempt to preserve mixed newline files. 10 |

    11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /demos/phonebook/flex/html-template/history/history.css: -------------------------------------------------------------------------------- 1 | /* This CSS stylesheet defines styles used by required elements in a flex application page that supports browser history */ 2 | 3 | #ie_historyFrame { width: 0px; height: 0px; display:none } 4 | #firefox_anchorDiv { width: 0px; height: 0px; display:none } 5 | #safari_formDiv { width: 0px; height: 0px; display:none } 6 | #safari_rememberDiv { width: 0px; height: 0px; display:none } 7 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImageAlt.txt: -------------------------------------------------------------------------------- 1 | Attr.DefaultInvalidImageAlt 2 | TYPE: string 3 | DEFAULT: 'Invalid image' 4 | --DESCRIPTION-- 5 | This is the content of the alt tag of an invalid image if the user had not 6 | previously specified an alt attribute. It has no effect when the image is 7 | valid but there was no alt attribute present. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.DefaultTextDir.txt: -------------------------------------------------------------------------------- 1 | Attr.DefaultTextDir 2 | TYPE: string 3 | DEFAULT: 'ltr' 4 | --DESCRIPTION-- 5 | Defines the default text direction (ltr or rtl) of the document being 6 | parsed. This generally is the same as the value of the dir attribute in 7 | HTML, or ltr if that is not specified. 8 | --ALLOWED-- 9 | 'ltr', 'rtl' 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.EnableIDNA.txt: -------------------------------------------------------------------------------- 1 | Core.EnableIDNA 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 4.4.0 5 | --DESCRIPTION-- 6 | Allows international domain names in URLs. This configuration option 7 | requires the PEAR Net_IDNA2 module to be installed. It operates by 8 | punycoding any internationalized host names for maximum portability. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/tests/phpunit.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.RemoveScriptContents.txt: -------------------------------------------------------------------------------- 1 | Core.RemoveScriptContents 2 | TYPE: bool/null 3 | DEFAULT: NULL 4 | VERSION: 2.0.0 5 | DEPRECATED-VERSION: 2.1.0 6 | DEPRECATED-USE: Core.HiddenElements 7 | --DESCRIPTION-- 8 |

    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 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.FlashAllowFullScreen.txt: -------------------------------------------------------------------------------- 1 | HTML.FlashAllowFullScreen 2 | TYPE: bool 3 | VERSION: 4.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

    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 | -------------------------------------------------------------------------------- /framework/yiic: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | 9 | * @link https://www.yiiframework.com/ 10 | * @copyright 2008 Yii Software LLC 11 | * @license https://www.yiiframework.com/license/ 12 | */ 13 | 14 | require_once(dirname(__FILE__).'/yiic.php'); 15 | -------------------------------------------------------------------------------- /framework/gii/views/common/code.php: -------------------------------------------------------------------------------- 1 | type==='php') 3 | { 4 | echo '
    '; 5 | highlight_string($file->content); 6 | echo '
    '; 7 | } 8 | elseif(in_array($file->type,array('txt','js','css','sql'))) 9 | { 10 | echo '
    '; 11 | echo nl2br($file->content); 12 | echo '
    '; 13 | } 14 | else 15 | echo '
    Preview is not available for this file type.
    '; 16 | ?> -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.HostBlacklist.txt: -------------------------------------------------------------------------------- 1 | URI.HostBlacklist 2 | TYPE: list 3 | VERSION: 1.3.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | List of strings that are forbidden in the host of any URI. Use it to kill 7 | domain names of spam, etc. Note that it will catch anything in the domain, 8 | so moo.com will catch moo.com.example.com. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Filter.Custom.txt: -------------------------------------------------------------------------------- 1 | Filter.Custom 2 | TYPE: list 3 | VERSION: 3.1.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 |

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

    11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.TargetNoopener.txt: -------------------------------------------------------------------------------- 1 | --# vim: et sw=4 sts=4 2 | HTML.TargetNoopener 3 | TYPE: bool 4 | VERSION: 4.8.0 5 | DEFAULT: TRUE 6 | --DESCRIPTION-- 7 | If enabled, noopener rel attributes are added to links which have 8 | a target attribute associated with them. This prevents malicious 9 | destinations from overwriting the original window. 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /demos/hangman/protected/views/layouts/main.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Hangman Game 6 | 7 | 8 | 9 |

    Hangman Game

    10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklistRegexp.txt: -------------------------------------------------------------------------------- 1 | Attr.IDBlacklistRegexp 2 | TYPE: string/null 3 | VERSION: 1.6.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | PCRE regular expression to be matched against all IDs. If the expression is 7 | matches, the ID is rejected. Use this with care: may cause significant 8 | degradation. ID matching is done after all other validation. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Parent.txt: -------------------------------------------------------------------------------- 1 | HTML.Parent 2 | TYPE: string 3 | VERSION: 1.3.0 4 | DEFAULT: 'div' 5 | --DESCRIPTION-- 6 | 7 |

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

    12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/config/test.php: -------------------------------------------------------------------------------- 1 | array( 7 | 'fixture'=>array( 8 | 'class'=>'system.test.CDbFixtureManager', 9 | ), 10 | /* uncomment the following to provide test database connection 11 | 'db'=>array( 12 | 'connectionString'=>'DSN for test database', 13 | ), 14 | */ 15 | ), 16 | ) 17 | ); 18 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImage.txt: -------------------------------------------------------------------------------- 1 | Attr.DefaultInvalidImage 2 | TYPE: string 3 | DEFAULT: '' 4 | --DESCRIPTION-- 5 | This is the default image an img tag will be pointed to if it does not have 6 | a valid src attribute. In future versions, we may allow the image tag to 7 | be removed completely, but due to design issues, this is not possible right 8 | now. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveSpansWithoutAttributes.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.RemoveSpansWithoutAttributes 2 | TYPE: bool 3 | VERSION: 4.0.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

    7 | This directive causes span tags without any attributes 8 | to be removed. It will also remove spans that had all attributes 9 | removed during processing. 10 |

    11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /demos/blog/protected/components/RecentComments.php: -------------------------------------------------------------------------------- 1 | findRecentComments($this->maxComments); 13 | } 14 | 15 | protected function renderContent() 16 | { 17 | $this->render('recentComments'); 18 | } 19 | } -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.DisplayLinkURI.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.DisplayLinkURI 2 | TYPE: bool 3 | VERSION: 3.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

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

    11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.PurifierLinkify 2 | TYPE: bool 3 | VERSION: 2.0.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

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

    12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Forms.txt: -------------------------------------------------------------------------------- 1 | HTML.Forms 2 | TYPE: bool 3 | VERSION: 4.13.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

    7 | Whether or not to permit form elements in the user input, regardless of 8 | %HTML.Trusted value. Please be very careful when using this functionality, as 9 | enabling forms in untrusted documents may allow for phishing attacks. 10 |

    11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /demos/blog/protected/yiic.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem ------------------------------------------------------------- 4 | rem Yii command line script for Windows. 5 | rem This is the bootstrap script for running yiic on Windows. 6 | rem ------------------------------------------------------------- 7 | 8 | @setlocal 9 | 10 | set BIN_PATH=%~dp0 11 | 12 | if "%PHP_COMMAND%" == "" set PHP_COMMAND=php.exe 13 | 14 | %PHP_COMMAND% "%BIN_PATH%yiic.php" %* 15 | 16 | @endlocal -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.AllowParseManyTags.txt: -------------------------------------------------------------------------------- 1 | Core.AllowParseManyTags 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 4.10.1 5 | --DESCRIPTION-- 6 |

    7 | This directive allows parsing of many nested tags. 8 | If you set true, relaxes any hardcoded limit from the parser. 9 | However, in that case it may cause a Dos attack. 10 | Be careful when enabling it. 11 |

    12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/config/database.php: -------------------------------------------------------------------------------- 1 | 'sqlite:'.dirname(__FILE__).'/../data/testdrive.db', 6 | // uncomment the following lines to use a MySQL database 7 | /* 8 | 'connectionString' => 'mysql:host=localhost;dbname=testdrive', 9 | 'emulatePrepare' => true, 10 | 'username' => 'root', 11 | 'password' => '', 12 | 'charset' => 'utf8', 13 | */ 14 | ); -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Proprietary.txt: -------------------------------------------------------------------------------- 1 | HTML.Proprietary 2 | TYPE: bool 3 | VERSION: 3.1.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

    7 | Whether or not to allow proprietary elements and attributes in your 8 | documents, as per HTMLPurifier_HTMLModule_Proprietary. 9 | Warning: This can cause your documents to stop 10 | validating! 11 |

    12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /demos/phonebook/protected/models/Contact.php: -------------------------------------------------------------------------------- 1 | 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 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.RemoveInvalidImg.txt: -------------------------------------------------------------------------------- 1 | Core.RemoveInvalidImg 2 | TYPE: bool 3 | DEFAULT: true 4 | VERSION: 1.3.0 5 | --DESCRIPTION-- 6 | 7 |

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

    12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/yiic.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem ------------------------------------------------------------- 4 | rem Yii command line script for Windows. 5 | rem This is the bootstrap script for running yiic on Windows. 6 | rem ------------------------------------------------------------- 7 | 8 | @setlocal 9 | 10 | set BIN_PATH=%~dp0 11 | 12 | if "%PHP_COMMAND%" == "" set PHP_COMMAND=php.exe 13 | 14 | "%PHP_COMMAND%" "%BIN_PATH%yiic.php" %* 15 | 16 | @endlocal -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.DocURL.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.PurifierLinkify.DocURL 2 | TYPE: string 3 | VERSION: 2.0.1 4 | DEFAULT: '#%s' 5 | ALIASES: AutoFormatParam.PurifierLinkifyDocURL 6 | --DESCRIPTION-- 7 |

    8 | Location of configuration documentation to link to, let %s substitute 9 | into the configuration's namespace and directive names sans the percent 10 | sign. 11 |

    12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /demos/blog/protected/tests/fixtures/tbl_comment.php: -------------------------------------------------------------------------------- 1 | array( 6 | 'content' => '', 7 | 'status' => '', 8 | 'create_time' => '', 9 | 'author' => '', 10 | 'email' => '', 11 | 'url' => '', 12 | 'post_id' => '', 13 | ), 14 | 'sample2'=>array( 15 | 'content' => '', 16 | 'status' => '', 17 | 'create_time' => '', 18 | 'author' => '', 19 | 'email' => '', 20 | 'url' => '', 21 | 'post_id' => '', 22 | ), 23 | */ 24 | ); 25 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/CSS.AllowedFonts.txt: -------------------------------------------------------------------------------- 1 | CSS.AllowedFonts 2 | TYPE: lookup/null 3 | VERSION: 4.3.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 |

    7 | Allows you to manually specify a set of allowed fonts. If 8 | NULL, all fonts are allowed. This directive 9 | affects generic names (serif, sans-serif, monospace, cursive, 10 | fantasy) as well as specific font families. 11 |

    12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.AllowedComments.txt: -------------------------------------------------------------------------------- 1 | HTML.AllowedComments 2 | TYPE: lookup 3 | VERSION: 4.4.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | A whitelist which indicates what explicit comment bodies should be 7 | allowed, modulo leading and trailing whitespace. See also %HTML.AllowedCommentsRegexp 8 | (these directives are union'ed together, so a comment is considered 9 | valid if any directive deems it valid.) 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Output.Newline.txt: -------------------------------------------------------------------------------- 1 | Output.Newline 2 | TYPE: string/null 3 | VERSION: 2.0.1 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

    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 | -------------------------------------------------------------------------------- /framework/i18n/data/README.txt: -------------------------------------------------------------------------------- 1 | 2 | CLDR v23.1 (May 15, 2013) 3 | 4 | This directory contains the CLDR data files in form of PHP scripts. 5 | They are obtained by extracting the CLDR data (https://unicode.org/Public/cldr/23.1/) 6 | with the script "build/build cldr". 7 | 8 | Only the data relevant to date and number formatting are extracted. 9 | Each PHP file contains an array representing the data for a particular 10 | locale. Data inherited from parent locales are also in the array. 11 | -------------------------------------------------------------------------------- /framework/views/ru/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demos/hangman/protected/views/game/play.php: -------------------------------------------------------------------------------- 1 |

    This is the game of Hangman. You must guess a word, a letter at a time. 2 | If you make too many mistakes, you lose the game!

    3 | 4 | 5 | 6 | 7 | 8 |
    9 | 10 | 11 | 12 | You must choose a difficulty level! 13 | 14 | 15 | -------------------------------------------------------------------------------- /framework/cli/views/shell/module/views/default/index.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | $this->module->id, 4 | ); 5 | ?> 6 |

    uniqueId . '/' . $this->action->id; ?>

    7 | 8 |

    9 | This is the view content for action "action->id; ?>". 10 | The action belongs to the controller "" in the "module->id; ?>" module. 11 |

    12 |

    13 | You may customize this page by editing 14 |

    -------------------------------------------------------------------------------- /framework/views/da/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/he/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/ja/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/no/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/zh_cn/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/ca/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/el/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/es/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/fr/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/id/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/ko/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/ro/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/sk/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/vi/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.ID.HTML5.txt: -------------------------------------------------------------------------------- 1 | Attr.ID.HTML5 2 | TYPE: bool/null 3 | DEFAULT: null 4 | VERSION: 4.8.0 5 | --DESCRIPTION-- 6 | In HTML5, restrictions on the format of the id attribute have been significantly 7 | relaxed, such that any string is valid so long as it contains no spaces and 8 | is at least one character. In lieu of a general HTML5 compatibility flag, 9 | set this configuration directive to true to use the relaxed rules. 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions 2 | TYPE: lookup 3 | VERSION: 4.0.0 4 | DEFAULT: array('td' => true, 'th' => true) 5 | --DESCRIPTION-- 6 |

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

    11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /framework/views/ar/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/lt/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/zh_tw/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/base/CException.php: -------------------------------------------------------------------------------- 1 | 6 | * @link https://www.yiiframework.com/ 7 | * @copyright 2008-2013 Yii Software LLC 8 | * @license https://www.yiiframework.com/license/ 9 | */ 10 | 11 | /** 12 | * CException represents a generic exception for all purposes. 13 | * 14 | * @author Qiang Xue 15 | * @package system.base 16 | * @since 1.0 17 | */ 18 | class CException extends Exception 19 | { 20 | } 21 | 22 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /framework/views/fi/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/pl/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/pt/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/sv/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/uk/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.MakeAbsolute.txt: -------------------------------------------------------------------------------- 1 | URI.MakeAbsolute 2 | TYPE: bool 3 | VERSION: 2.1.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

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

    13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /framework/views/bg/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /framework/views/hr/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/nl/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/pt_br/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/index.php: -------------------------------------------------------------------------------- 1 | run(); 14 | -------------------------------------------------------------------------------- /framework/views/it/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /demos/blog/index-test.php: -------------------------------------------------------------------------------- 1 | run(); 16 | -------------------------------------------------------------------------------- /framework/cli/views/shell/model/test.php: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | class Test extends CDbTestCase 12 | { 13 | public $fixtures=array( 14 | ''=>'', 15 | ); 16 | 17 | public function testCreate() 18 | { 19 | 20 | } 21 | } -------------------------------------------------------------------------------- /framework/views/lv/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demos/phonebook/flex/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | phonebook 4 | 5 | 6 | 7 | 8 | 9 | com.adobe.flexbuilder.project.flexbuilder 10 | 11 | 12 | 13 | 14 | 15 | com.adobe.flexbuilder.project.flexnature 16 | com.adobe.flexbuilder.project.actionscriptnature 17 | 18 | 19 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.DefaultScheme.txt: -------------------------------------------------------------------------------- 1 | URI.DefaultScheme 2 | TYPE: string/null 3 | DEFAULT: 'http' 4 | --DESCRIPTION-- 5 | 6 |

    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 | 11 |

    12 | Starting with HTML Purifier 4.9.0, the default scheme can be null, in 13 | which case we reject all URIs which do not have explicit schemes. 14 |

    15 | --# vim: et sw=4 sts=4 16 | -------------------------------------------------------------------------------- /framework/views/de/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/index-test.php: -------------------------------------------------------------------------------- 1 | run(); 16 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPermissions.txt: -------------------------------------------------------------------------------- 1 | Cache.SerializerPermissions 2 | TYPE: int/null 3 | VERSION: 4.3.0 4 | DEFAULT: 0755 5 | --DESCRIPTION-- 6 | 7 |

    8 | Directory permissions of the files and directories created inside 9 | the DefinitionCache/Serializer or other custom serializer path. 10 |

    11 |

    12 | In HTML Purifier 4.8.0, this also supports NULL, 13 | which means that no chmod'ing or directory creation shall 14 | occur. 15 |

    16 | --# vim: et sw=4 sts=4 17 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.SafeObject.txt: -------------------------------------------------------------------------------- 1 | HTML.SafeObject 2 | TYPE: bool 3 | VERSION: 3.1.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

    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 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /demos/blog/protected/components/TagCloud.php: -------------------------------------------------------------------------------- 1 | findTagWeights($this->maxTags); 13 | 14 | foreach($tags as $tag=>$weight) 15 | { 16 | $link=CHtml::link(CHtml::encode($tag), array('post/index','tag'=>$tag)); 17 | echo CHtml::tag('span', array( 18 | 'class'=>'tag', 19 | 'style'=>"font-size:{$weight}pt", 20 | ), $link)."\n"; 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /framework/web/widgets/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](https://scripts.sil.org/OFL) 5 | 6 | ## Links 7 | 8 | * [Astigmatic](http://www.astigmatic.com/) 9 | * [Google WebFonts](https://www.google.com/webfonts/specimen/Spicy+Rice) 10 | * [fontsquirrel.com](https://www.fontsquirrel.com/fonts/spicy-rice) 11 | * [fontspace.com](https://www.fontspace.com/astigmatic-one-eye-typographic-institute/spicy-rice) 12 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.IDPrefix.txt: -------------------------------------------------------------------------------- 1 | Attr.IDPrefix 2 | TYPE: string 3 | VERSION: 1.2.0 4 | DEFAULT: '' 5 | --DESCRIPTION-- 6 | String to prefix to IDs. If you have no idea what IDs your pages may use, 7 | you may opt to simply add a prefix to all user-submitted ID attributes so 8 | that they are still usable, but will not conflict with core page IDs. 9 | Example: setting the directive to 'user_' will result in a user submitted 10 | 'foo' to become 'user_foo' Be sure to set %HTML.EnableAttrID to true 11 | before using this. 12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.DisableExcludes.txt: -------------------------------------------------------------------------------- 1 | Core.DisableExcludes 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 4.5.0 5 | --DESCRIPTION-- 6 |

    7 | This directive disables SGML-style exclusions, e.g. the exclusion of 8 | <object> in any descendant of a 9 | <pre> tag. Disabling excludes will allow some 10 | invalid documents to pass through HTML Purifier, but HTML Purifier 11 | will also be less likely to accidentally remove large documents during 12 | processing. 13 |

    14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/CSS.ForbiddenProperties.txt: -------------------------------------------------------------------------------- 1 | CSS.ForbiddenProperties 2 | TYPE: lookup 3 | VERSION: 4.2.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 |

    7 | This is the logical inverse of %CSS.AllowedProperties, and it will 8 | override that directive or any other directive. If possible, 9 | %CSS.AllowedProperties is recommended over this directive, 10 | because it can sometimes be difficult to tell whether or not you've 11 | forbidden all of the CSS properties you truly would like to disallow. 12 |

    13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Attr.Name.UseCDATA.txt: -------------------------------------------------------------------------------- 1 | HTML.Attr.Name.UseCDATA 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 4.0.0 5 | --DESCRIPTION-- 6 | The W3C specification DTD defines the name attribute to be CDATA, not ID, due 7 | to limitations of DTD. In certain documents, this relaxed behavior is desired, 8 | whether it is to specify duplicate names, or to specify names that would be 9 | illegal IDs (for example, names that begin with a digit.) Set this configuration 10 | directive to true to use the relaxed parsing rules. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /demos/phonebook/protected/config/main.php: -------------------------------------------------------------------------------- 1 | dirname(__FILE__).DIRECTORY_SEPARATOR.'..', 7 | 'name'=>'Yii Framework: Phone Book Demo', 8 | 9 | // autoloading model and component classes 10 | 'import'=>array( 11 | 'application.models.*', 12 | 'application.components.*', 13 | ), 14 | 15 | // application components 16 | 'components'=>array( 17 | 'db'=>array( 18 | 'connectionString'=>'sqlite:protected/data/phonebook.db', 19 | ), 20 | ), 21 | ); -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.DefaultImageAlt.txt: -------------------------------------------------------------------------------- 1 | Attr.DefaultImageAlt 2 | TYPE: string/null 3 | DEFAULT: null 4 | VERSION: 3.2.0 5 | --DESCRIPTION-- 6 | This is the content of the alt tag of an image if the user had not 7 | previously specified an alt attribute. This applies to all images without 8 | a valid alt attribute, as opposed to %Attr.DefaultInvalidImageAlt, which 9 | only applies to invalid images, and overrides in the case of an invalid image. 10 | Default behavior with null is to use the basename of the src tag for the alt. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.RemoveEmpty.RemoveNbsp 2 | TYPE: bool 3 | VERSION: 4.0.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

    7 | When enabled, HTML Purifier will treat any elements that contain only 8 | non-breaking spaces as well as regular whitespace as empty, and remove 9 | them when %AutoFormat.RemoveEmpty is enabled. 10 |

    11 |

    12 | See %AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions for a list of elements 13 | that don't have this behavior applied to them. 14 |

    15 | --# vim: et sw=4 sts=4 16 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.SafeEmbed.txt: -------------------------------------------------------------------------------- 1 | HTML.SafeEmbed 2 | TYPE: bool 3 | VERSION: 3.1.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

    7 | Whether or not to permit embed 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 embed tags. Embed is a proprietary 10 | element and will cause your website to stop validating; you should 11 | see if you can use %Output.FlashCompat with %HTML.SafeObject instead 12 | first.

    13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.MaxImgLength.txt: -------------------------------------------------------------------------------- 1 | HTML.MaxImgLength 2 | TYPE: int/null 3 | DEFAULT: 1200 4 | VERSION: 3.1.1 5 | --DESCRIPTION-- 6 |

    7 | This directive controls the maximum number of pixels in the width and 8 | height attributes in img tags. This is 9 | in place to prevent imagecrash attacks, disable with null at your own risk. 10 | This directive is similar to %CSS.MaxImgLength, and both should be 11 | concurrently edited, although there are 12 | subtle differences in the input format (the HTML max is an integer). 13 |

    14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /requirements/messages/config.php: -------------------------------------------------------------------------------- 1 | dirname(__FILE__).DIRECTORY_SEPARATOR.'..', 8 | 'messagePath'=>dirname(__FILE__), 9 | 'languages'=>array('zh_cn','zh_tw','de','es','el','sv','he','nl','pt','ru','it','fr','ja','pl','hu','ro','id','vi','bg','uk','cs','da'), 10 | 'fileTypes'=>array('php'), 11 | 'overwrite'=>true, 12 | 'translator'=>'t', 13 | 'exclude'=>array( 14 | '.gitignore', 15 | '/messages', 16 | '/views', 17 | ), 18 | ); 19 | -------------------------------------------------------------------------------- /demos/blog/protected/tests/unit/UserTest.php: -------------------------------------------------------------------------------- 1 | 'User', 7 | ); 8 | 9 | public function testValidatePassword() 10 | { 11 | $this->assertTrue($this->users(0)->validatePassword('demo')); 12 | $this->assertFalse($this->users(0)->validatePassword('wrong')); 13 | 14 | } 15 | 16 | public function testChangePassword() 17 | { 18 | $user=$this->users(0); 19 | $user->password=$user->hashPassword('newpwd'); 20 | $this->assertFalse($user->validatePassword('demo')); 21 | $this->assertTrue($user->validatePassword('newpwd')); 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidChildren.txt: -------------------------------------------------------------------------------- 1 | Core.EscapeInvalidChildren 2 | TYPE: bool 3 | DEFAULT: false 4 | --DESCRIPTION-- 5 |

    Warning: this configuration option is no longer does anything as of 4.6.0.

    6 | 7 |

    When true, a child is found that is not allowed in the context of the 8 | parent element will be transformed into text as if it were ASCII. When 9 | false, that element and all internal tags will be dropped, though text will 10 | be preserved. There is no option for dropping the element but preserving 11 | child nodes.

    12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.Escaping.txt: -------------------------------------------------------------------------------- 1 | Filter.ExtractStyleBlocks.Escaping 2 | TYPE: bool 3 | VERSION: 3.0.0 4 | DEFAULT: true 5 | ALIASES: Filter.ExtractStyleBlocksEscaping, FilterParam.ExtractStyleBlocksEscaping 6 | --DESCRIPTION-- 7 | 8 |

    9 | Whether or not to escape the dangerous characters <, > and & 10 | as \3C, \3E and \26, respectively. This is can be safely set to false 11 | if the contents of StyleBlocks will be placed in an external stylesheet, 12 | where there is no risk of it being interpreted as HTML. 13 |

    14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Filter.YouTube.txt: -------------------------------------------------------------------------------- 1 | Filter.YouTube 2 | TYPE: bool 3 | VERSION: 3.1.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

    7 | Warning: Deprecated in favor of %HTML.SafeObject and 8 | %Output.FlashCompat (turn both on to allow YouTube videos and other 9 | Flash content). 10 |

    11 |

    12 | This directive enables YouTube video embedding in HTML Purifier. Check 13 | this document 14 | on embedding videos for more information on what this filter does. 15 |

    16 | --# vim: et sw=4 sts=4 17 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.AllowedSchemes.txt: -------------------------------------------------------------------------------- 1 | URI.AllowedSchemes 2 | TYPE: lookup 3 | --DEFAULT-- 4 | array ( 5 | 'http' => true, 6 | 'https' => true, 7 | 'mailto' => true, 8 | 'ftp' => true, 9 | 'nntp' => true, 10 | 'news' => true, 11 | 'tel' => true, 12 | ) 13 | --DESCRIPTION-- 14 | Whitelist that defines the schemes that a URI is allowed to have. This 15 | prevents XSS attacks from using pseudo-schemes like javascript or mocha. 16 | There is also support for the data and file 17 | URI schemes, but they are not enabled by default. 18 | --# vim: et sw=4 sts=4 19 | -------------------------------------------------------------------------------- /demos/hangman/protected/views/game/guess.php: -------------------------------------------------------------------------------- 1 |

    Please make a guess

    2 | 3 |

    guessWord; ?>

    4 | 5 |

    You have made misses; ?> bad guesses out of a maximum of level; ?>.

    6 | 7 | 8 | 9 |

    Guess: 10 | isGuessed(chr($i))) 14 | echo "\n".CHtml::linkButton(chr($i),array('submit'=>array('guess','g'=>chr($i)))); 15 | } 16 | ?> 17 |

    18 | 19 |

    array('giveup'))); ?>

    20 | 21 | 22 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Output.SortAttr.txt: -------------------------------------------------------------------------------- 1 | Output.SortAttr 2 | TYPE: bool 3 | VERSION: 3.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

    7 | If true, HTML Purifier will sort attributes by name before writing them back 8 | to the document, converting a tag like: <el b="" a="" c="" /> 9 | to <el a="" b="" c="" />. This is a workaround for 10 | a bug in FCKeditor which causes it to swap attributes order, adding noise 11 | to text diffs. If you're not seeing this bug, chances are, you don't need 12 | this directive. 13 |

    14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /framework/gii/components/TextDiff.php: -------------------------------------------------------------------------------- 1 | render($diff); 21 | } 22 | } -------------------------------------------------------------------------------- /demos/blog/protected/views/post/_comments.php: -------------------------------------------------------------------------------- 1 | 2 |
    3 | 4 | id}", $comment->getUrl($post), array( 5 | 'class'=>'cid', 6 | 'title'=>'Permalink to this comment', 7 | )); ?> 8 | 9 |
    10 | authorLink; ?> says: 11 |
    12 | 13 |
    14 | create_time); ?> 15 |
    16 | 17 |
    18 | content)); ?> 19 |
    20 | 21 |
    22 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/views/layouts/column2.php: -------------------------------------------------------------------------------- 1 | 2 | beginContent('//layouts/main'); ?> 3 |
    4 |
    5 | 6 |
    7 |
    8 |
    9 | 21 |
    22 | endContent(); ?> -------------------------------------------------------------------------------- /framework/db/schema/pgsql/CPgsqlTableSchema.php: -------------------------------------------------------------------------------- 1 | 6 | * @link https://www.yiiframework.com/ 7 | * @copyright 2008-2013 Yii Software LLC 8 | * @license https://www.yiiframework.com/license/ 9 | */ 10 | 11 | /** 12 | * CPgsqlTable represents the metadata for a PostgreSQL table. 13 | * 14 | * @author Qiang Xue 15 | * @package system.db.schema.pgsql 16 | * @since 1.0 17 | */ 18 | class CPgsqlTableSchema extends CDbTableSchema 19 | { 20 | /** 21 | * @var string name of the schema that this table belongs to. 22 | */ 23 | public $schemaName; 24 | } 25 | -------------------------------------------------------------------------------- /framework/gii/generators/module/templates/default/views/default/index.php: -------------------------------------------------------------------------------- 1 | 2 | /* @var $this DefaultController */ 3 | 4 | $this->breadcrumbs=array( 5 | $this->module->id, 6 | ); 7 | ?> 8 |

    echo $this->uniqueId . '/' . $this->action->id; ?>

    9 | 10 |

    11 | This is the view content for action " echo $this->action->id; ?>". 12 | The action belongs to the controller " echo get_class($this); ?>" 13 | in the " echo $this->module->id; ?>" module. 14 |

    15 |

    16 | You may customize this page by editing echo __FILE__; ?> 17 |

    -------------------------------------------------------------------------------- /demos/blog/protected/config/test.php: -------------------------------------------------------------------------------- 1 | array( 7 | 'fixture'=>array( 8 | 'class'=>'system.test.CDbFixtureManager', 9 | ), 10 | 'db'=>array( 11 | 'connectionString'=>'sqlite:'.dirname(__FILE__).'/../data/blog-test.db', 12 | ), 13 | // uncomment the following to use a MySQL database 14 | /* 15 | 'db'=>array( 16 | 'connectionString' => 'mysql:host=localhost;dbname=blog-test', 17 | 'emulatePrepare' => true, 18 | 'username' => 'root', 19 | 'password' => '', 20 | 'charset' => 'utf8', 21 | ), 22 | */ 23 | ), 24 | ) 25 | ); 26 | -------------------------------------------------------------------------------- /framework/yiic.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem ------------------------------------------------------------- 4 | rem Yii command line script for Windows. 5 | rem 6 | rem This is the bootstrap script for running yiic on Windows. 7 | rem 8 | rem @author Qiang Xue 9 | rem @link https://www.yiiframework.com/ 10 | rem @copyright 2008 Yii Software LLC 11 | rem @license https://www.yiiframework.com/license/ 12 | rem @version $Id$ 13 | rem ------------------------------------------------------------- 14 | 15 | @setlocal 16 | 17 | set YII_PATH=%~dp0 18 | 19 | if "%PHP_COMMAND%" == "" set PHP_COMMAND=php.exe 20 | 21 | "%PHP_COMMAND%" "%YII_PATH%yiic" %* 22 | 23 | @endlocal -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.DefinitionRev.txt: -------------------------------------------------------------------------------- 1 | HTML.DefinitionRev 2 | TYPE: int 3 | VERSION: 2.0.0 4 | DEFAULT: 1 5 | --DESCRIPTION-- 6 | 7 |

    8 | Revision identifier for your custom definition specified in 9 | %HTML.DefinitionID. This serves the same purpose: uniquely identifying 10 | your custom definition, but this one does so in a chronological 11 | context: revision 3 is more up-to-date then revision 2. Thus, when 12 | this gets incremented, the cache handling is smart enough to clean 13 | up any older revisions of your definition as well as flush the 14 | cache. 15 |

    16 | --# vim: et sw=4 sts=4 17 | -------------------------------------------------------------------------------- /framework/views/ja/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/zh_cn/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/zh_cn/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/zh_tw/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/gii/components/UserIdentity.php: -------------------------------------------------------------------------------- 1 | getController()->getModule()->password; 13 | if($password===null) 14 | throw new CException('Please configure the "password" property of the "gii" module.'); 15 | elseif($password===false || $password===$this->password) 16 | $this->errorCode=self::ERROR_NONE; 17 | else 18 | $this->errorCode=self::ERROR_UNKNOWN_IDENTITY; 19 | return !$this->errorCode; 20 | } 21 | } -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Output.FixInnerHTML.txt: -------------------------------------------------------------------------------- 1 | Output.FixInnerHTML 2 | TYPE: bool 3 | VERSION: 4.3.0 4 | DEFAULT: true 5 | --DESCRIPTION-- 6 |

    7 | If true, HTML Purifier will protect against Internet Explorer's 8 | mishandling of the innerHTML attribute by appending 9 | a space to any attribute that does not contain angled brackets, spaces 10 | or quotes, but contains a backtick. This slightly changes the 11 | semantics of any given attribute, so if this is unacceptable and 12 | you do not use innerHTML on any of your pages, you can 13 | turn this directive off. 14 |

    15 | --# vim: et sw=4 sts=4 16 | -------------------------------------------------------------------------------- /framework/views/bg/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/da/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/el/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/fr/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/id/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/pl/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/ro/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/ru/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/sk/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/vi/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/zh_tw/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.DisableExternalResources.txt: -------------------------------------------------------------------------------- 1 | URI.DisableExternalResources 2 | TYPE: bool 3 | VERSION: 1.3.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Disables the embedding of external resources, preventing users from 7 | embedding things like images from other hosts. This prevents access 8 | tracking (good for email viewers), bandwidth leeching, cross-site request 9 | forging, goatse.cx posting, and other nasties, but also results in a loss 10 | of end-user functionality (they can't directly post a pic they posted from 11 | Flickr anymore). Use it if you don't have a robust user-content moderation 12 | team. 13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /framework/views/ar/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/he/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/ja/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/no/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/pt/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/pt_br/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/ca/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/de/log-firebug.php: -------------------------------------------------------------------------------- 1 | 24 | -------------------------------------------------------------------------------- /framework/views/es/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/fr/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/he/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/ca/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/el/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/es/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/fi/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/hr/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/ko/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/ro/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/uk/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/vi/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/ar/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/bg/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/da/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/fi/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/hr/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/id/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/ko/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/lt/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/lt/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/no/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/ru/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/sk/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/sv/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/uk/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /demos/blog/protected/views/layouts/column2.php: -------------------------------------------------------------------------------- 1 | beginContent('/layouts/main'); ?> 2 |
    3 |
    4 |
    5 | 6 |
    7 |
    8 |
    9 | 20 |
    21 |
    22 | endContent(); ?> -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.AllowedFrameTargets.txt: -------------------------------------------------------------------------------- 1 | Attr.AllowedFrameTargets 2 | TYPE: lookup 3 | DEFAULT: array() 4 | --DESCRIPTION-- 5 | Lookup table of all allowed link frame targets. Some commonly used link 6 | targets include _blank, _self, _parent and _top. Values should be 7 | lowercase, as validation will be done in a case-sensitive manner despite 8 | W3C's recommendation. XHTML 1.0 Strict does not permit the target attribute 9 | so this directive will have no effect in that doctype. XHTML 1.1 does not 10 | enable the Target module by default, you will have to manually enable it 11 | (see the module documentation for more details.) 12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.EscapeNonASCIICharacters.txt: -------------------------------------------------------------------------------- 1 | Core.EscapeNonASCIICharacters 2 | TYPE: bool 3 | VERSION: 1.4.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | This directive overcomes a deficiency in %Core.Encoding by blindly 7 | converting all non-ASCII characters into decimal numeric entities before 8 | converting it to its native encoding. This means that even characters that 9 | can be expressed in the non-UTF-8 encoding will be entity-ized, which can 10 | be a real downer for encodings like Big5. It also assumes that the ASCII 11 | repetoire is available, although this is the case for almost all encodings. 12 | Anyway, use UTF-8! 13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.MaintainLineNumbers.txt: -------------------------------------------------------------------------------- 1 | Core.MaintainLineNumbers 2 | TYPE: bool/null 3 | VERSION: 2.0.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

    8 | If true, HTML Purifier will add line number information to all tokens. 9 | This is useful when error reporting is turned on, but can result in 10 | significant performance degradation and should not be used when 11 | unnecessary. This directive must be used with the DirectLex lexer, 12 | as the DOMLex lexer does not (yet) support this functionality. 13 | If the value is null, an appropriate value will be selected based 14 | on other configuration. 15 |

    16 | --# vim: et sw=4 sts=4 17 | -------------------------------------------------------------------------------- /framework/views/nl/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/pl/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/pt/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/pt_br/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/sv/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.BlockWrapper.txt: -------------------------------------------------------------------------------- 1 | HTML.BlockWrapper 2 | TYPE: string 3 | VERSION: 1.3.0 4 | DEFAULT: 'p' 5 | --DESCRIPTION-- 6 | 7 |

    8 | String name of element to wrap inline elements that are inside a block 9 | context. This only occurs in the children of blockquote in strict mode. 10 |

    11 |

    12 | Example: by default value, 13 | <blockquote>Foo</blockquote> would become 14 | <blockquote><p>Foo</p></blockquote>. 15 | The <p> tags can be replaced with whatever you desire, 16 | as long as it is a block level element. 17 |

    18 | --# vim: et sw=4 sts=4 19 | -------------------------------------------------------------------------------- /framework/views/it/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/it/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/views/lv/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/cli/views/shell/model/fixture.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | return array( 11 | /* 12 | 'sample1'=>array( 13 | columns as $name=>$column) { 14 | if($table->sequenceName===null || $table->primaryKey!==$column->name) 15 | echo "\t\t'$name' => '',\n"; 16 | } ?> 17 | ), 18 | 'sample2'=>array( 19 | columns as $name=>$column) { 20 | if($table->sequenceName===null || $table->primaryKey!==$column->name) 21 | echo "\t\t'$name' => '',\n"; 22 | } ?> 23 | ), 24 | */ 25 | ); 26 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.AggressivelyRemoveScript.txt: -------------------------------------------------------------------------------- 1 | Core.AggressivelyRemoveScript 2 | TYPE: bool 3 | VERSION: 4.9.0 4 | DEFAULT: true 5 | --DESCRIPTION-- 6 |

    7 | This directive enables aggressive pre-filter removal of 8 | script tags. This is not necessary for security, 9 | but it can help work around a bug in libxml where embedded 10 | HTML elements inside script sections cause the parser to 11 | choke. To revert to pre-4.9.0 behavior, set this to false. 12 | This directive has no effect if %Core.Trusted is true, 13 | %Core.RemoveScriptContents is false, or %Core.HiddenElements 14 | does not contain script. 15 |

    16 | --# vim: et sw=4 sts=4 17 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.AllowHostnameUnderscore.txt: -------------------------------------------------------------------------------- 1 | Core.AllowHostnameUnderscore 2 | TYPE: bool 3 | VERSION: 4.6.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

    7 | By RFC 1123, underscores are not permitted in host names. 8 | (This is in contrast to the specification for DNS, RFC 9 | 2181, which allows underscores.) 10 | However, most browsers do the right thing when faced with 11 | an underscore in the host name, and so some poorly written 12 | websites are written with the expectation this should work. 13 | Setting this parameter to true relaxes our allowed character 14 | check so that underscores are permitted. 15 |

    16 | --# vim: et sw=4 sts=4 17 | -------------------------------------------------------------------------------- /framework/views/lv/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/views/nl/log-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /framework/db/schema/oci/COciTableSchema.php: -------------------------------------------------------------------------------- 1 | 6 | * @link https://www.yiiframework.com/ 7 | * @copyright 2008-2013 Yii Software LLC 8 | * @license https://www.yiiframework.com/license/ 9 | */ 10 | 11 | /** 12 | * COciTableSchema represents the metadata for an Oracle table. 13 | * 14 | * @author Ricardo Grana 15 | * @package system.db.schema.oci 16 | */ 17 | class COciTableSchema extends CDbTableSchema 18 | { 19 | /** 20 | * @var string name of the schema (database) that this table belongs to. 21 | * Defaults to null, meaning no schema (or the current database). 22 | */ 23 | public $schemaName; 24 | } 25 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.HiddenElements.txt: -------------------------------------------------------------------------------- 1 | Core.HiddenElements 2 | TYPE: lookup 3 | --DEFAULT-- 4 | array ( 5 | 'script' => true, 6 | 'style' => true, 7 | ) 8 | --DESCRIPTION-- 9 | 10 |

    11 | This directive is a lookup array of elements which should have their 12 | contents removed when they are not allowed by the HTML definition. 13 | For example, the contents of a script tag are not 14 | normally shown in a document, so if script tags are to be removed, 15 | their contents should be removed to. This is opposed to a b 16 | tag, which defines some presentational changes but does not hide its 17 | contents. 18 |

    19 | --# vim: et sw=4 sts=4 20 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.TidyImpl.txt: -------------------------------------------------------------------------------- 1 | Filter.ExtractStyleBlocks.TidyImpl 2 | TYPE: mixed/null 3 | VERSION: 3.1.0 4 | DEFAULT: NULL 5 | ALIASES: FilterParam.ExtractStyleBlocksTidyImpl 6 | --DESCRIPTION-- 7 |

    8 | If left NULL, HTML Purifier will attempt to instantiate a csstidy 9 | class to use for internal cleaning. This will usually be good enough. 10 |

    11 |

    12 | However, for trusted user input, you can set this to false to 13 | disable cleaning. In addition, you can supply your own concrete implementation 14 | of Tidy's interface to use, although I don't know why you'd want to do that. 15 |

    16 | --# vim: et sw=4 sts=4 17 | -------------------------------------------------------------------------------- /framework/zii/widgets/assets/detailview/styles.css: -------------------------------------------------------------------------------- 1 | table.detail-view .null 2 | { 3 | color: pink; 4 | } 5 | 6 | table.detail-view 7 | { 8 | background: white; 9 | border-collapse: collapse; 10 | width: 100%; 11 | margin: 0; 12 | } 13 | 14 | table.detail-view th, table.detail-view td 15 | { 16 | font-size: 0.9em; 17 | border: 1px white solid; 18 | padding: 0.3em 0.6em; 19 | vertical-align: top; 20 | } 21 | 22 | table.detail-view th 23 | { 24 | text-align: right; 25 | width: 160px; 26 | } 27 | 28 | table.detail-view tr.odd 29 | { 30 | background:#E5F1F4; 31 | } 32 | 33 | table.detail-view tr.even 34 | { 35 | background:#F8F8F8; 36 | } 37 | 38 | table.detail-view tr.odd th 39 | { 40 | } 41 | 42 | table.detail-view tr.even th 43 | { 44 | } 45 | -------------------------------------------------------------------------------- /framework/db/schema/mysql/CMysqlTableSchema.php: -------------------------------------------------------------------------------- 1 | 6 | * @link https://www.yiiframework.com/ 7 | * @copyright 2008-2013 Yii Software LLC 8 | * @license https://www.yiiframework.com/license/ 9 | */ 10 | 11 | /** 12 | * CMysqlTableSchema represents the metadata for a MySQL table. 13 | * 14 | * @author Qiang Xue 15 | * @package system.db.schema.mysql 16 | * @since 1.0 17 | */ 18 | class CMysqlTableSchema extends CDbTableSchema 19 | { 20 | /** 21 | * @var string name of the schema (database) that this table belongs to. 22 | * Defaults to null, meaning no schema (or the current database). 23 | */ 24 | public $schemaName; 25 | } 26 | -------------------------------------------------------------------------------- /framework/gii/generators/model/ModelGenerator.php: -------------------------------------------------------------------------------- 1 | getRequest()->getIsAjaxRequest()) 14 | { 15 | $all = array(); 16 | if(!empty($db) && Yii::app()->hasComponent($db)!==false && (Yii::app()->getComponent($db) instanceof CDbConnection)) 17 | $all=array_keys(Yii::app()->{$db}->schema->getTables()); 18 | 19 | echo json_encode($all); 20 | } 21 | else 22 | throw new CHttpException(404,'The requested page does not exist.'); 23 | } 24 | } -------------------------------------------------------------------------------- /demos/blog/protected/views/post/admin.php: -------------------------------------------------------------------------------- 1 | breadcrumbs=array( 3 | 'Manage Posts', 4 | ); 5 | ?> 6 |

    Manage Posts

    7 | 8 | widget('zii.widgets.grid.CGridView', array( 9 | 'dataProvider'=>$model->search(), 10 | 'filter'=>$model, 11 | 'columns'=>array( 12 | array( 13 | 'name'=>'title', 14 | 'type'=>'raw', 15 | 'value'=>'CHtml::link(CHtml::encode($data->title), $data->url)' 16 | ), 17 | array( 18 | 'name'=>'status', 19 | 'value'=>'Lookup::item("PostStatus",$data->status)', 20 | 'filter'=>Lookup::items('PostStatus'), 21 | ), 22 | array( 23 | 'name'=>'create_time', 24 | 'type'=>'datetime', 25 | 'filter'=>false, 26 | ), 27 | array( 28 | 'class'=>'CButtonColumn', 29 | ), 30 | ), 31 | )); ?> 32 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.MungeResources.txt: -------------------------------------------------------------------------------- 1 | URI.MungeResources 2 | TYPE: bool 3 | VERSION: 3.1.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

    7 | If true, any URI munging directives like %URI.Munge 8 | will also apply to embedded resources, such as <img src="">. 9 | Be careful enabling this directive if you have a redirector script 10 | that does not use the Location HTTP header; all of your images 11 | and other embedded resources will break. 12 |

    13 |

    14 | Warning: It is strongly advised you use this in conjunction 15 | %URI.MungeSecretKey to mitigate the security risk of an open redirector. 16 |

    17 | --# vim: et sw=4 sts=4 18 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/CSS.AllowedProperties.txt: -------------------------------------------------------------------------------- 1 | CSS.AllowedProperties 2 | TYPE: lookup/null 3 | VERSION: 3.1.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

    8 | If HTML Purifier's style attributes set is unsatisfactory for your needs, 9 | you can overload it with your own list of tags to allow. Note that this 10 | method is subtractive: it does its job by taking away from HTML Purifier 11 | usual feature set, so you cannot add an attribute that HTML Purifier never 12 | supported in the first place. 13 |

    14 |

    15 | Warning: If another directive conflicts with the 16 | elements here, that directive will win and override. 17 |

    18 | --# vim: et sw=4 sts=4 19 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/CSS.MaxImgLength.txt: -------------------------------------------------------------------------------- 1 | CSS.MaxImgLength 2 | TYPE: string/null 3 | DEFAULT: '1200px' 4 | VERSION: 3.1.1 5 | --DESCRIPTION-- 6 |

    7 | This parameter sets the maximum allowed length on img tags, 8 | effectively the width and height properties. 9 | Only absolute units of measurement (in, pt, pc, mm, cm) and pixels (px) are allowed. This is 10 | in place to prevent imagecrash attacks, disable with null at your own risk. 11 | This directive is similar to %HTML.MaxImgLength, and both should be 12 | concurrently edited, although there are 13 | subtle differences in the input format (the CSS max is a number with 14 | a unit). 15 |

    16 | --# vim: et sw=4 sts=4 17 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.AllowedAttributes.txt: -------------------------------------------------------------------------------- 1 | HTML.AllowedAttributes 2 | TYPE: lookup/null 3 | VERSION: 1.3.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

    8 | If HTML Purifier's attribute set is unsatisfactory, overload it! 9 | The syntax is "tag.attr" or "*.attr" for the global attributes 10 | (style, id, class, dir, lang, xml:lang). 11 |

    12 |

    13 | Warning: If another directive conflicts with the 14 | elements here, that directive will win and override. For 15 | example, %HTML.EnableAttrID will take precedence over *.id in this 16 | directive. You must set that directive to true before you can use 17 | IDs at all. 18 |

    19 | --# vim: et sw=4 sts=4 20 | -------------------------------------------------------------------------------- /framework/views/de/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 24 | -------------------------------------------------------------------------------- /framework/db/schema/cubrid/CCubridTableSchema.php: -------------------------------------------------------------------------------- 1 | 6 | * @link https://www.yiiframework.com/ 7 | * @copyright 2008-2013 Yii Software LLC 8 | * @license https://www.yiiframework.com/license/ 9 | */ 10 | 11 | /** 12 | * CCubridTableSchema represents the metadata for a CUBRID database table. 13 | * 14 | * @author Esen Sagynov 15 | * @package system.db.schema.cubrid 16 | * @since 1.1.16 17 | */ 18 | class CCubridTableSchema extends CDbTableSchema 19 | { 20 | /** 21 | * @var string name of the schema (database) that this table belongs to. 22 | * Defaults to null, meaning no schema (or the current database). 23 | */ 24 | public $schemaName; 25 | } 26 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.EnableID.txt: -------------------------------------------------------------------------------- 1 | Attr.EnableID 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 1.2.0 5 | --DESCRIPTION-- 6 | Allows the ID attribute in HTML. This is disabled by default due to the 7 | fact that without proper configuration user input can easily break the 8 | validation of a webpage by specifying an ID that is already on the 9 | surrounding HTML. If you don't mind throwing caution to the wind, enable 10 | this directive, but I strongly recommend you also consider blacklisting IDs 11 | you use (%Attr.IDBlacklist) or prefixing all user supplied IDs 12 | (%Attr.IDPrefix). When set to true HTML Purifier reverts to the behavior of 13 | pre-1.2.0 versions. 14 | --ALIASES-- 15 | HTML.EnableAttrID 16 | --# vim: et sw=4 sts=4 17 | -------------------------------------------------------------------------------- /framework/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.Predicate.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.RemoveEmpty.Predicate 2 | TYPE: hash 3 | VERSION: 4.7.0 4 | DEFAULT: array('colgroup' => array(), 'th' => array(), 'td' => array(), 'iframe' => array('src')) 5 | --DESCRIPTION-- 6 |

    7 | Given that an element has no contents, it will be removed by default, unless 8 | this predicate dictates otherwise. The predicate can either be an associative 9 | map from tag name to list of attributes that must be present for the element 10 | to be considered preserved: thus, the default always preserves colgroup, 11 | th and td, and also iframe if it 12 | has a src. 13 |

    14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /framework/cli/views/webapp/protected/config/console.php: -------------------------------------------------------------------------------- 1 | dirname(__FILE__).DIRECTORY_SEPARATOR.'..', 7 | 'name'=>'My Console Application', 8 | 9 | // preloading 'log' component 10 | 'preload'=>array('log'), 11 | 12 | // application components 13 | 'components'=>array( 14 | 15 | // database settings are configured in database.php 16 | 'db'=>require(dirname(__FILE__).'/database.php'), 17 | 18 | 'log'=>array( 19 | 'class'=>'CLogRouter', 20 | 'routes'=>array( 21 | array( 22 | 'class'=>'CFileLogRoute', 23 | 'levels'=>'error, warning', 24 | ), 25 | ), 26 | ), 27 | 28 | ), 29 | ); 30 | --------------------------------------------------------------------------------