├── assets ├── .yii └── 56baf066 │ ├── rating │ ├── star.gif │ ├── delete.gif │ └── jquery.rating.css │ ├── jquery.multifile.js │ ├── treeview │ └── images │ │ ├── file.gif │ │ ├── plus.gif │ │ ├── folder.gif │ │ ├── minus.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 │ └── jquery.autocomplete.css │ └── yiitab │ └── jquery.yiitab.css ├── images └── .yii ├── protected ├── messages │ └── .yii ├── runtime │ └── .yii ├── extensions │ └── .yii ├── views │ ├── system │ │ └── .yii │ ├── post │ │ ├── create.php │ │ └── update.php │ ├── user │ │ ├── create.php │ │ └── update.php │ └── site │ │ └── login.php ├── commands │ └── shell │ │ └── .yii ├── .htaccess ├── yiic ├── yiic.php ├── components │ └── views │ │ └── mainMenu.php ├── config │ └── console.php ├── yiic.bat └── models │ └── ContactForm.php ├── lib ├── yii │ ├── cli │ │ ├── runtime │ │ │ └── .yii │ │ └── views │ │ │ ├── webapp │ │ │ ├── assets │ │ │ │ └── .yii │ │ │ ├── images │ │ │ │ └── .yii │ │ │ ├── protected │ │ │ │ ├── messages │ │ │ │ │ └── .yii │ │ │ │ ├── runtime │ │ │ │ │ └── .yii │ │ │ │ ├── extensions │ │ │ │ │ └── .yii │ │ │ │ ├── views │ │ │ │ │ ├── system │ │ │ │ │ │ └── .yii │ │ │ │ │ └── site │ │ │ │ │ │ └── login.php │ │ │ │ ├── commands │ │ │ │ │ └── shell │ │ │ │ │ │ └── .yii │ │ │ │ ├── .htaccess │ │ │ │ ├── yiic │ │ │ │ ├── yiic.php │ │ │ │ ├── components │ │ │ │ │ ├── views │ │ │ │ │ │ └── mainMenu.php │ │ │ │ │ └── UserIdentity.php │ │ │ │ ├── config │ │ │ │ │ └── console.php │ │ │ │ ├── yiic.bat │ │ │ │ └── models │ │ │ │ │ └── ContactForm.php │ │ │ ├── themes │ │ │ │ └── classic │ │ │ │ │ └── views │ │ │ │ │ ├── layouts │ │ │ │ │ └── .yii │ │ │ │ │ ├── site │ │ │ │ │ └── .yii │ │ │ │ │ ├── system │ │ │ │ │ └── .yii │ │ │ │ │ └── .htaccess │ │ │ ├── css │ │ │ │ └── bg.gif │ │ │ └── index.php │ │ │ └── shell │ │ │ ├── module │ │ │ ├── models │ │ │ │ └── .yii │ │ │ ├── components │ │ │ │ └── .yii │ │ │ ├── messages │ │ │ │ └── .yii │ │ │ ├── views │ │ │ │ ├── layouts │ │ │ │ │ └── .yii │ │ │ │ └── default │ │ │ │ │ └── index.php │ │ │ ├── controllers │ │ │ │ └── DefaultController.php │ │ │ └── module.php │ │ │ ├── controller │ │ │ └── view.php │ │ │ └── crud │ │ │ ├── create.php │ │ │ ├── update.php │ │ │ └── _form.php │ ├── .htaccess │ ├── yii-powered.png │ ├── vendors │ │ ├── htmlpurifier │ │ │ └── standalone │ │ │ │ └── HTMLPurifier │ │ │ │ ├── ConfigSchema │ │ │ │ ├── schema │ │ │ │ │ ├── info.ini │ │ │ │ │ ├── CSS.txt │ │ │ │ │ ├── HTML.txt │ │ │ │ │ ├── Attr.txt │ │ │ │ │ ├── Core.txt │ │ │ │ │ ├── FilterParam.txt │ │ │ │ │ ├── URI.txt │ │ │ │ │ ├── Test.txt │ │ │ │ │ ├── Output.txt │ │ │ │ │ ├── Cache.txt │ │ │ │ │ ├── Filter.txt │ │ │ │ │ ├── AutoFormatParam.txt │ │ │ │ │ ├── Attr.IDBlacklist.txt │ │ │ │ │ ├── AutoFormat.txt │ │ │ │ │ ├── HTML.TidyAdd.txt │ │ │ │ │ ├── HTML.TidyRemove.txt │ │ │ │ │ ├── CSS.Proprietary.txt │ │ │ │ │ ├── Test.ForceNoIconv.txt │ │ │ │ │ ├── Core.EscapeInvalidTags.txt │ │ │ │ │ ├── HTML.Strict.txt │ │ │ │ │ ├── CSS.DefinitionRev.txt │ │ │ │ │ ├── URI.DefinitionRev.txt │ │ │ │ │ ├── CSS.AllowImportant.txt │ │ │ │ │ ├── HTML.Trusted.txt │ │ │ │ │ ├── HTML.XHTML.txt │ │ │ │ │ ├── Attr.AllowedRev.txt │ │ │ │ │ ├── HTML.CustomDoctype.txt │ │ │ │ │ ├── URI.DefaultScheme.txt │ │ │ │ │ ├── URI.DefinitionID.txt │ │ │ │ │ ├── Attr.AllowedRel.txt │ │ │ │ │ ├── Output.CommentScriptContents.txt │ │ │ │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ │ │ │ ├── AutoFormat.Linkify.txt │ │ │ │ │ ├── URI.Disable.txt │ │ │ │ │ ├── Attr.DefaultTextDir.txt │ │ │ │ │ ├── URI.HostBlacklist.txt │ │ │ │ │ ├── Core.Language.txt │ │ │ │ │ ├── Core.RemoveScriptContents.txt │ │ │ │ │ ├── Attr.DefaultInvalidImage.txt │ │ │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ │ │ ├── Filter.Custom.txt │ │ │ │ │ ├── URI.DisableResources.txt │ │ │ │ │ ├── AutoFormat.Custom.txt │ │ │ │ │ ├── URI.OverrideAllowedSchemes.txt │ │ │ │ │ ├── AutoFormatParam.PurifierLinkifyDocURL.txt │ │ │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ │ │ ├── Filter.YouTube.txt │ │ │ │ │ ├── HTML.Parent.txt │ │ │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ │ │ ├── HTML.Proprietary.txt │ │ │ │ │ ├── Cache.SerializerPath.txt │ │ │ │ │ ├── Core.RemoveInvalidImg.txt │ │ │ │ │ ├── Output.Newline.txt │ │ │ │ │ ├── URI.AllowedSchemes.txt │ │ │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ │ │ ├── Core.EscapeInvalidChildren.txt │ │ │ │ │ ├── URI.MakeAbsolute.txt │ │ │ │ │ ├── Core.CollectErrors.txt │ │ │ │ │ ├── URI.DisableExternal.txt │ │ │ │ │ ├── Attr.DefaultImageAlt.txt │ │ │ │ │ ├── CSS.AllowTricky.txt │ │ │ │ │ ├── Core.ConvertDocumentToFragment.txt │ │ │ │ │ ├── HTML.Doctype.txt │ │ │ │ │ ├── Attr.IDPrefix.txt │ │ │ │ │ ├── FilterParam.ExtractStyleBlocksEscaping.txt │ │ │ │ │ ├── HTML.MaxImgLength.txt │ │ │ │ │ ├── HTML.SafeEmbed.txt │ │ │ │ │ ├── Output.SortAttr.txt │ │ │ │ │ ├── HTML.SafeObject.txt │ │ │ │ │ ├── HTML.DefinitionRev.txt │ │ │ │ │ ├── URI.DisableExternalResources.txt │ │ │ │ │ ├── FilterParam.ExtractStyleBlocksTidyImpl.txt │ │ │ │ │ ├── Attr.AllowedFrameTargets.txt │ │ │ │ │ ├── Core.EscapeNonASCIICharacters.txt │ │ │ │ │ ├── Core.MaintainLineNumbers.txt │ │ │ │ │ ├── HTML.BlockWrapper.txt │ │ │ │ │ ├── Core.HiddenElements.txt │ │ │ │ │ ├── URI.MungeResources.txt │ │ │ │ │ ├── CSS.MaxImgLength.txt │ │ │ │ │ ├── CSS.AllowedProperties.txt │ │ │ │ │ ├── Attr.EnableID.txt │ │ │ │ │ ├── HTML.AllowedAttributes.txt │ │ │ │ │ ├── Attr.IDPrefixLocal.txt │ │ │ │ │ ├── URI.Base.txt │ │ │ │ │ ├── Core.DirectLexLineNumberSyncInterval.txt │ │ │ │ │ ├── HTML.TidyLevel.txt │ │ │ │ │ ├── HTML.CoreModules.txt │ │ │ │ │ ├── Core.AggressivelyFixLt.txt │ │ │ │ │ ├── HTML.AllowedElements.txt │ │ │ │ │ ├── Core.ColorKeywords.txt │ │ │ │ │ ├── Core.Encoding.txt │ │ │ │ │ ├── HTML.AllowedModules.txt │ │ │ │ │ ├── HTML.ForbiddenElements.txt │ │ │ │ │ ├── URI.Host.txt │ │ │ │ │ ├── HTML.Allowed.txt │ │ │ │ │ ├── Output.TidyFormat.txt │ │ │ │ │ ├── HTML.ForbiddenAttributes.txt │ │ │ │ │ └── URI.MungeSecretKey.txt │ │ │ │ ├── Exception.php │ │ │ │ └── Interchange │ │ │ │ │ ├── Namespace.php │ │ │ │ │ └── Id.php │ │ │ │ ├── Printer │ │ │ │ ├── ConfigForm.js │ │ │ │ └── ConfigForm.css │ │ │ │ └── Language │ │ │ │ ├── classes │ │ │ │ └── en-x-test.php │ │ │ │ └── messages │ │ │ │ ├── en-x-test.php │ │ │ │ └── en-x-testmini.php │ │ ├── TextHighlighter │ │ │ └── Text │ │ │ │ ├── TODO │ │ │ │ ├── sample.css │ │ │ │ └── html.xml │ │ └── jquery │ │ │ ├── treeview │ │ │ └── LICENSE.txt │ │ │ ├── autocomplete │ │ │ └── LICENSE.txt │ │ │ ├── LICENSE.txt │ │ │ └── maskedinput │ │ │ └── LICENSE.txt │ ├── web │ │ ├── js │ │ │ └── source │ │ │ │ ├── rating │ │ │ │ ├── star.gif │ │ │ │ ├── delete.gif │ │ │ │ └── jquery.rating.css │ │ │ │ ├── jquery.multifile.js │ │ │ │ ├── treeview │ │ │ │ └── images │ │ │ │ │ ├── file.gif │ │ │ │ │ ├── minus.gif │ │ │ │ │ ├── plus.gif │ │ │ │ │ ├── folder.gif │ │ │ │ │ ├── folder-closed.gif │ │ │ │ │ ├── treeview-gray.gif │ │ │ │ │ ├── treeview-red.gif │ │ │ │ │ ├── treeview-black.gif │ │ │ │ │ ├── treeview-default.gif │ │ │ │ │ ├── treeview-famfamfam.gif │ │ │ │ │ ├── treeview-gray-line.gif │ │ │ │ │ ├── treeview-red-line.gif │ │ │ │ │ ├── treeview-black-line.gif │ │ │ │ │ ├── treeview-default-line.gif │ │ │ │ │ └── treeview-famfamfam-line.gif │ │ │ │ ├── autocomplete │ │ │ │ ├── indicator.gif │ │ │ │ └── jquery.autocomplete.css │ │ │ │ └── yiitab │ │ │ │ └── jquery.yiitab.css │ │ ├── widgets │ │ │ └── captcha │ │ │ │ └── Duality.ttf │ │ ├── actions │ │ │ └── CInlineAction.php │ │ └── COutputEvent.php │ ├── views │ │ ├── zh_tw │ │ │ ├── profile-callstack-firebug.php │ │ │ ├── log-firebug.php │ │ │ ├── profile-summary-firebug.php │ │ │ ├── profile-callstack.php │ │ │ ├── log.php │ │ │ ├── error503.php │ │ │ └── error403.php │ │ ├── ru │ │ │ ├── profile-callstack-firebug.php │ │ │ ├── log-firebug.php │ │ │ ├── profile-summary-firebug.php │ │ │ ├── profile-callstack.php │ │ │ ├── log.php │ │ │ └── error503.php │ │ ├── he │ │ │ ├── profile-callstack-firebug.php │ │ │ ├── log-firebug.php │ │ │ ├── profile-summary-firebug.php │ │ │ ├── profile-callstack.php │ │ │ ├── log.php │ │ │ └── error503.php │ │ ├── ja │ │ │ ├── profile-callstack-firebug.php │ │ │ ├── log-firebug.php │ │ │ ├── profile-summary-firebug.php │ │ │ ├── profile-callstack.php │ │ │ ├── log.php │ │ │ └── error503.php │ │ ├── no │ │ │ ├── profile-callstack-firebug.php │ │ │ ├── log-firebug.php │ │ │ ├── profile-summary-firebug.php │ │ │ ├── profile-callstack.php │ │ │ ├── log.php │ │ │ └── error503.php │ │ ├── zh_cn │ │ │ ├── profile-callstack-firebug.php │ │ │ ├── log-firebug.php │ │ │ ├── profile-summary-firebug.php │ │ │ ├── log.php │ │ │ ├── profile-callstack.php │ │ │ ├── error503.php │ │ │ └── error403.php │ │ ├── es │ │ │ ├── profile-callstack-firebug.php │ │ │ ├── log-firebug.php │ │ │ ├── profile-summary-firebug.php │ │ │ ├── profile-callstack.php │ │ │ ├── log.php │ │ │ └── error503.php │ │ ├── id │ │ │ ├── profile-callstack-firebug.php │ │ │ ├── log-firebug.php │ │ │ ├── profile-summary-firebug.php │ │ │ ├── profile-callstack.php │ │ │ ├── log.php │ │ │ └── error503.php │ │ ├── profile-callstack-firebug.php │ │ ├── ro │ │ │ ├── profile-callstack-firebug.php │ │ │ ├── log-firebug.php │ │ │ ├── profile-summary-firebug.php │ │ │ ├── profile-callstack.php │ │ │ ├── log.php │ │ │ └── error503.php │ │ ├── pt │ │ │ ├── profile-callstack-firebug.php │ │ │ ├── log-firebug.php │ │ │ ├── profile-summary-firebug.php │ │ │ ├── profile-callstack.php │ │ │ ├── log.php │ │ │ └── error503.php │ │ ├── sv │ │ │ ├── profile-callstack-firebug.php │ │ │ ├── log-firebug.php │ │ │ ├── profile-summary-firebug.php │ │ │ ├── profile-callstack.php │ │ │ ├── log.php │ │ │ └── error503.php │ │ ├── bg │ │ │ ├── profile-callstack-firebug.php │ │ │ ├── log-firebug.php │ │ │ ├── profile-summary-firebug.php │ │ │ ├── profile-callstack.php │ │ │ ├── log.php │ │ │ └── error503.php │ │ ├── nl │ │ │ ├── profile-callstack-firebug.php │ │ │ ├── log-firebug.php │ │ │ ├── profile-summary-firebug.php │ │ │ ├── profile-callstack.php │ │ │ └── log.php │ │ ├── fr │ │ │ ├── profile-callstack-firebug.php │ │ │ ├── log-firebug.php │ │ │ ├── profile-summary-firebug.php │ │ │ ├── profile-callstack.php │ │ │ └── log.php │ │ ├── de │ │ │ ├── profile-callstack-firebug.php │ │ │ ├── log-firebug.php │ │ │ ├── profile-summary-firebug.php │ │ │ ├── profile-callstack.php │ │ │ ├── log.php │ │ │ └── error503.php │ │ ├── log-firebug.php │ │ ├── profile-summary-firebug.php │ │ ├── profile-callstack.php │ │ ├── log.php │ │ └── error503.php │ ├── i18n │ │ └── data │ │ │ └── README.txt │ ├── yiic │ ├── base │ │ ├── CException.php │ │ ├── CExceptionEvent.php │ │ └── CModelEvent.php │ ├── db │ │ ├── CDbException.php │ │ └── schema │ │ │ ├── pgsql │ │ │ └── CPgsqlTableSchema.php │ │ │ ├── mysql │ │ │ └── CMysqlTableSchema.php │ │ │ ├── oci │ │ │ └── COciTableSchema.php │ │ │ ├── sqlite │ │ │ └── CSqliteColumnSchema.php │ │ │ └── mssql │ │ │ └── CMssqlTableSchema.php │ ├── messages │ │ └── config.php │ ├── yiic.bat │ ├── yii.php │ └── yiic.php └── .htaccess ├── themes └── classic │ └── views │ ├── layouts │ └── .yii │ ├── site │ └── .yii │ ├── system │ └── .yii │ └── .htaccess ├── css └── bg.gif └── index.php /assets/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protected/messages/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protected/runtime/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/cli/runtime/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protected/extensions/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protected/views/system/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /protected/commands/shell/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/classic/views/layouts/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/classic/views/site/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/classic/views/system/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /lib/yii/cli/views/webapp/assets/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/cli/views/webapp/images/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protected/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /lib/yii/cli/views/shell/module/models/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/cli/views/shell/module/components/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/cli/views/shell/module/messages/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/cli/views/webapp/protected/messages/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/cli/views/webapp/protected/runtime/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/cli/views/shell/module/views/layouts/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/cli/views/webapp/protected/extensions/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/cli/views/webapp/protected/views/system/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/classic/views/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /lib/yii/cli/views/webapp/protected/commands/shell/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/cli/views/webapp/themes/classic/views/layouts/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/cli/views/webapp/themes/classic/views/site/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/cli/views/webapp/themes/classic/views/system/.yii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/cli/views/webapp/protected/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /css/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/DompetJebol/master/css/bg.gif -------------------------------------------------------------------------------- /lib/yii/cli/views/webapp/themes/classic/views/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /lib/yii/yii-powered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ATA/DompetJebol/master/lib/yii/yii-powered.png -------------------------------------------------------------------------------- /protected/yiic: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | render('index'); 8 | } 9 | } -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklist.txt: -------------------------------------------------------------------------------- 1 | Attr.IDBlacklist 2 | TYPE: list 3 | DEFAULT: array() 4 | DESCRIPTION: Array of IDs not allowed in the document. 5 | -------------------------------------------------------------------------------- /protected/yiic.php: -------------------------------------------------------------------------------- 1 | Injectors) 3 | -------------------------------------------------------------------------------- /lib/yii/cli/views/webapp/protected/yiic.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
  • 'active') : array()); ?>
  • 5 | 6 | 7 | -------------------------------------------------------------------------------- /lib/yii/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 | 9 | -------------------------------------------------------------------------------- /lib/yii/cli/views/webapp/protected/components/views/mainMenu.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/Exception.php: -------------------------------------------------------------------------------- 1 | echo $this->action->id; ?>" of controller " echo $this->id; ?>". 2 |
    You may customize this view by editing the file " echo __FILE__; ?>". 3 | -------------------------------------------------------------------------------- /lib/yii/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 | 11 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/Language/messages/en-x-test.php: -------------------------------------------------------------------------------- 1 | 'HTML Purifier X' 9 | ); 10 | 11 | -------------------------------------------------------------------------------- /protected/config/console.php: -------------------------------------------------------------------------------- 1 | dirname(__FILE__).DIRECTORY_SEPARATOR.'..', 7 | 'name'=>'My Console Application', 8 | ); -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/cli/views/webapp/protected/config/console.php: -------------------------------------------------------------------------------- 1 | dirname(__FILE__).DIRECTORY_SEPARATOR.'..', 7 | 'name'=>'My Console Application', 8 | ); -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/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 | 12 | -------------------------------------------------------------------------------- /lib/yii/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 | 12 | -------------------------------------------------------------------------------- /protected/views/post/create.php: -------------------------------------------------------------------------------- 1 |

    New Post

    2 | 3 |
    4 | [] 5 | [] 6 |
    7 | 8 | renderPartial('_form', array( 9 | 'model'=>$model, 10 | 'update'=>false, 11 | )); ?> -------------------------------------------------------------------------------- /protected/views/user/create.php: -------------------------------------------------------------------------------- 1 |

    New User

    2 | 3 |
    4 | [] 5 | [] 6 |
    7 | 8 | renderPartial('_form', array( 9 | 'model'=>$model, 10 | 'update'=>false, 11 | )); ?> -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/cli/views/shell/module/views/default/index.php: -------------------------------------------------------------------------------- 1 |

    2 | This is the view content for action "action->id; ?>". 3 | The action belongs to the controller "" in the "module->id; ?>" module. 4 |

    5 |

    6 | You may customize this page by editing 7 |

    -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/Language/messages/en-x-testmini.php: -------------------------------------------------------------------------------- 1 | 'HTML Purifier XNone' 10 | ); 11 | 12 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.CustomDoctype.txt: -------------------------------------------------------------------------------- 1 | HTML.CustomDoctype 2 | TYPE: string/null 3 | VERSION: 2.0.1 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 | A custom doctype for power-users who defined there own document 8 | type. This directive only applies when %HTML.Doctype is blank. 9 | 10 | 11 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | run(); 12 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.DefaultScheme.txt: -------------------------------------------------------------------------------- 1 | URI.DefaultScheme 2 | TYPE: string 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 | -------------------------------------------------------------------------------- /lib/yii/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 | 12 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/cli/views/webapp/index.php: -------------------------------------------------------------------------------- 1 | run(); 12 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/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 | 13 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/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 | 11 | 12 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /protected/views/post/update.php: -------------------------------------------------------------------------------- 1 |

    Update Post id; ?>

    2 | 3 |
    4 | [] 5 | [] 6 | [] 7 |
    8 | 9 | renderPartial('_form', array( 10 | 'model'=>$model, 11 | 'update'=>true, 12 | )); ?> -------------------------------------------------------------------------------- /protected/views/user/update.php: -------------------------------------------------------------------------------- 1 |

    Update User id; ?>

    2 | 3 |
    4 | [] 5 | [] 6 | [] 7 |
    8 | 9 | renderPartial('_form', array( 10 | 'model'=>$model, 11 | 'update'=>true, 12 | )); ?> -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.DisableResources.txt: -------------------------------------------------------------------------------- 1 | URI.DisableResources 2 | TYPE: bool 3 | VERSION: 1.3.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

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

    12 | 13 | -------------------------------------------------------------------------------- /lib/yii/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 | 13 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormatParam.PurifierLinkifyDocURL.txt: -------------------------------------------------------------------------------- 1 | AutoFormatParam.PurifierLinkifyDocURL 2 | TYPE: string 3 | VERSION: 2.0.1 4 | DEFAULT: '#%s' 5 | --DESCRIPTION-- 6 | 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 | 13 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/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 | This directive enables YouTube video embedding in HTML Purifier. Check 8 | this document 9 | on embedding videos for more information on what this filter does. 10 |

    11 | -------------------------------------------------------------------------------- /lib/yii/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 | 13 | -------------------------------------------------------------------------------- /lib/yii/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 | 13 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/Interchange/Namespace.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 | 14 | -------------------------------------------------------------------------------- /lib/yii/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 | 13 | -------------------------------------------------------------------------------- /lib/yii/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 -------------------------------------------------------------------------------- /lib/yii/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 | 14 | -------------------------------------------------------------------------------- /lib/yii/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 | ) 12 | --DESCRIPTION-- 13 | Whitelist that defines the schemes that a URI is allowed to have. This 14 | prevents XSS attacks from using pseudo-schemes like javascript or mocha. 15 | -------------------------------------------------------------------------------- /lib/yii/i18n/data/README.txt: -------------------------------------------------------------------------------- 1 | 2 | CLDR v1.6 (July 2, 2008) 3 | 4 | This directory contains the CLDR data files in form of PHP scripts. 5 | They are obtained by extracting the CLDR data (http://www.unicode.org/cldr/) 6 | with the script "tools/cldr/build.php". 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 | -------------------------------------------------------------------------------- /lib/yii/yiic: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | 9 | * @link http://www.yiiframework.com/ 10 | * @copyright Copyright © 2008 Yii Software LLC 11 | * @license http://www.yiiframework.com/license/ 12 | * @version $Id: yiic 692 2009-02-17 19:15:20Z qiang.xue $ 13 | */ 14 | 15 | require_once(dirname(__FILE__).'/yiic.php'); 16 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidChildren.txt: -------------------------------------------------------------------------------- 1 | Core.EscapeInvalidChildren 2 | TYPE: bool 3 | DEFAULT: false 4 | --DESCRIPTION-- 5 | When true, a child is found that is not allowed in the context of the 6 | parent element will be transformed into text as if it were ASCII. When 7 | false, that element and all internal tags will be dropped, though text will 8 | be preserved. There is no option for dropping the element but preserving 9 | child nodes. 10 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/views/ru/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/views/he/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/views/ja/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/views/no/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/views/zh_cn/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/views/es/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/views/id/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/views/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/views/ro/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/views/pt/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/views/sv/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/views/bg/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /lib/yii/views/nl/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/views/fr/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.DefaultImageAlt.txt: -------------------------------------------------------------------------------- 1 | Attr.DefaultImageAlt 2 | TYPE: string/null 3 | DEFAULT: null 4 | --DESCRIPTION-- 5 | This is the content of the alt tag of an image if the user had not 6 | previously specified an alt attribute. This applies to all images without 7 | a valid alt attribute, as opposed to %Attr.DefaultInvalidImageAlt, which 8 | only applies to invalid images, and overrides in the case of an invalid image. 9 | Default behavior with null is to use the basename of the src tag for the alt. 10 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/views/de/profile-callstack-firebug.php: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/FilterParam.ExtractStyleBlocksEscaping.txt: -------------------------------------------------------------------------------- 1 | FilterParam.ExtractStyleBlocksEscaping 2 | TYPE: bool 3 | VERSION: 3.0.0 4 | DEFAULT: true 5 | ALIASES: Filter.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 | 15 | -------------------------------------------------------------------------------- /lib/yii/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 |

    -------------------------------------------------------------------------------- /lib/yii/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 probably want 11 | to enable this with %HTML.SafeObject. 12 | Highly experimental. 13 |

    -------------------------------------------------------------------------------- /lib/yii/base/CException.php: -------------------------------------------------------------------------------- 1 | 6 | * @link http://www.yiiframework.com/ 7 | * @copyright Copyright © 2008-2009 Yii Software LLC 8 | * @license http://www.yiiframework.com/license/ 9 | */ 10 | 11 | /** 12 | * CException represents a generic exception for all purposes. 13 | * 14 | * @author Qiang Xue 15 | * @version $Id: CException.php 433 2008-12-30 22:59:17Z qiang.xue $ 16 | * @package system.base 17 | * @since 1.0 18 | */ 19 | class CException extends Exception 20 | { 21 | } 22 | 23 | -------------------------------------------------------------------------------- /lib/yii/db/CDbException.php: -------------------------------------------------------------------------------- 1 | 6 | * @link http://www.yiiframework.com/ 7 | * @copyright Copyright © 2008-2009 Yii Software LLC 8 | * @license http://www.yiiframework.com/license/ 9 | */ 10 | 11 | /** 12 | * CDbException represents an exception that is caused by some DB-related operations. 13 | * 14 | * @author Qiang Xue 15 | * @version $Id: CDbException.php 433 2008-12-30 22:59:17Z qiang.xue $ 16 | * @package system.db 17 | * @since 1.0 18 | */ 19 | class CDbException extends CException 20 | { 21 | } -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/views/zh_cn/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/views/zh_tw/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/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 may also want to 10 | enable %HTML.SafeEmbed for maximum interoperability with Internet Explorer, 11 | although embed tags will cause your website to stop validating. 12 | Highly experimental. 13 |

    14 | -------------------------------------------------------------------------------- /lib/yii/views/id/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/views/ja/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/views/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/views/bg/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/views/he/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/views/no/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/views/pt/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/views/ro/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/views/ru/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/views/sv/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/views/es/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/messages/config.php: -------------------------------------------------------------------------------- 1 | dirname(__FILE__).DIRECTORY_SEPARATOR.'..', 8 | 'messagePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'messages', 9 | 'languages'=>array('zh_cn','zh_tw','de','es','sv','he','nl','pt','ru','it','fr','ja','pl','hu','ro','id','vi','bg'), 10 | 'fileTypes'=>array('php'), 11 | 'exclude'=>array( 12 | '.svn', 13 | 'yiilite.php', 14 | '/i18n/data', 15 | '/messages', 16 | '/vendors', 17 | '/web/js', 18 | ), 19 | ); -------------------------------------------------------------------------------- /lib/yii/views/de/log-firebug.php: -------------------------------------------------------------------------------- 1 | 24 | -------------------------------------------------------------------------------- /lib/yii/views/fr/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/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 | 17 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/FilterParam.ExtractStyleBlocksTidyImpl.txt: -------------------------------------------------------------------------------- 1 | FilterParam.ExtractStyleBlocksTidyImpl 2 | TYPE: mixed/null 3 | VERSION: 3.1.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 |

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

    10 |

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

    15 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/views/nl/log-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/views/zh_cn/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /lib/yii/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 | 17 | -------------------------------------------------------------------------------- /lib/yii/views/ru/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /lib/yii/views/zh_tw/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /lib/yii/views/ja/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /lib/yii/cli/views/shell/crud/create.php: -------------------------------------------------------------------------------- 1 | 10 |

    New

    11 | 12 |
    13 | ["; ?>] 14 | ["; ?>] 15 |
    16 | 17 | renderPartial('_form', array( 18 | 'model'=>\$model, 19 | 'update'=>false, 20 | )); ?>"; ?> 21 | -------------------------------------------------------------------------------- /lib/yii/views/he/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /lib/yii/views/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /lib/yii/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 | 19 | -------------------------------------------------------------------------------- /lib/yii/views/es/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /lib/yii/views/ro/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /lib/yii/views/bg/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /lib/yii/views/id/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /lib/yii/views/no/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /lib/yii/views/pt/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /lib/yii/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 | 20 | -------------------------------------------------------------------------------- /lib/yii/views/sv/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /lib/yii/views/fr/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 23 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/views/nl/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/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 http://www.yiiframework.com/ 10 | rem @copyright Copyright © 2008 Yii Software LLC 11 | rem @license http://www.yiiframework.com/license/ 12 | rem @version $Id: yiic.bat 2 2008-09-28 12:03:53Z qiang.xue $ 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 -------------------------------------------------------------------------------- /lib/yii/db/schema/pgsql/CPgsqlTableSchema.php: -------------------------------------------------------------------------------- 1 | 6 | * @link http://www.yiiframework.com/ 7 | * @copyright Copyright © 2008-2009 Yii Software LLC 8 | * @license http://www.yiiframework.com/license/ 9 | */ 10 | 11 | /** 12 | * CPgsqlTable represents the metadata for a PostgreSQL table. 13 | * 14 | * @author Qiang Xue 15 | * @version $Id: CPgsqlTableSchema.php 433 2008-12-30 22:59:17Z qiang.xue $ 16 | * @package system.db.schema.pgsql 17 | * @since 1.0 18 | */ 19 | class CPgsqlTableSchema extends CDbTableSchema 20 | { 21 | /** 22 | * @var string name of the schema that this table belongs to. 23 | */ 24 | public $schemaName; 25 | } 26 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/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 | -------------------------------------------------------------------------------- /lib/yii/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 | 20 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Attr.IDPrefixLocal.txt: -------------------------------------------------------------------------------- 1 | Attr.IDPrefixLocal 2 | TYPE: string 3 | VERSION: 1.2.0 4 | DEFAULT: '' 5 | --DESCRIPTION-- 6 | Temporary prefix for IDs used in conjunction with %Attr.IDPrefix. If you 7 | need to allow multiple sets of user content on web page, you may need to 8 | have a seperate prefix that changes with each iteration. This way, 9 | seperately submitted user content displayed on the same page doesn't 10 | clobber each other. Ideal values are unique identifiers for the content it 11 | represents (i.e. the id of the row in the database). Be sure to add a 12 | seperator (like an underscore) at the end. Warning: this directive will 13 | not work unless %Attr.IDPrefix is set to a non-empty value! 14 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.Base.txt: -------------------------------------------------------------------------------- 1 | URI.Base 2 | TYPE: string/null 3 | VERSION: 2.1.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

    8 | The base URI is the URI of the document this purified HTML will be 9 | inserted into. This information is important if HTML Purifier needs 10 | to calculate absolute URIs from relative URIs, such as when %URI.MakeAbsolute 11 | is on. You may use a non-absolute URI for this value, but behavior 12 | may vary (%URI.MakeAbsolute deals nicely with both absolute and 13 | relative paths, but forwards-compatibility is not guaranteed). 14 | Warning: If set, the scheme on this URI 15 | overrides the one specified by %URI.DefaultScheme. 16 |

    17 | 18 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.DirectLexLineNumberSyncInterval.txt: -------------------------------------------------------------------------------- 1 | Core.DirectLexLineNumberSyncInterval 2 | TYPE: int 3 | VERSION: 2.0.0 4 | DEFAULT: 0 5 | --DESCRIPTION-- 6 | 7 |

    8 | Specifies the number of tokens the DirectLex line number tracking 9 | implementations should process before attempting to resyncronize the 10 | current line count by manually counting all previous new-lines. When 11 | at 0, this functionality is disabled. Lower values will decrease 12 | performance, and this is only strictly necessary if the counting 13 | algorithm is buggy (in which case you should report it as a bug). 14 | This has no effect when %Core.MaintainLineNumbers is disabled or DirectLex is 15 | not being used. 16 |

    17 | 18 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.TidyLevel.txt: -------------------------------------------------------------------------------- 1 | HTML.TidyLevel 2 | TYPE: string 3 | VERSION: 2.0.0 4 | DEFAULT: 'medium' 5 | --DESCRIPTION-- 6 | 7 |

    General level of cleanliness the Tidy module should enforce. 8 | There are four allowed values:

    9 |
    10 |
    none
    11 |
    No extra tidying should be done
    12 |
    light
    13 |
    Only fix elements that would be discarded otherwise due to 14 | lack of support in doctype
    15 |
    medium
    16 |
    Enforce best practices
    17 |
    heavy
    18 |
    Transform all deprecated elements and attributes to standards 19 | compliant equivalents
    20 |
    21 | 22 | --ALLOWED-- 23 | 'none', 'light', 'medium', 'heavy' 24 | -------------------------------------------------------------------------------- /lib/yii/views/de/profile-summary-firebug.php: -------------------------------------------------------------------------------- 1 | 24 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.CoreModules.txt: -------------------------------------------------------------------------------- 1 | HTML.CoreModules 2 | TYPE: lookup 3 | VERSION: 2.0.0 4 | --DEFAULT-- 5 | array ( 6 | 'Structure' => true, 7 | 'Text' => true, 8 | 'Hypertext' => true, 9 | 'List' => true, 10 | 'NonXMLCommonAttributes' => true, 11 | 'XMLCommonAttributes' => true, 12 | 'CommonAttributes' => true, 13 | ) 14 | --DESCRIPTION-- 15 | 16 |

    17 | Certain modularized doctypes (XHTML, namely), have certain modules 18 | that must be included for the doctype to be an conforming document 19 | type: put those modules here. By default, XHTML's core modules 20 | are used. You can set this to a blank array to disable core module 21 | protection, but this is not recommended. 22 |

    23 | 24 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.AggressivelyFixLt.txt: -------------------------------------------------------------------------------- 1 | Core.AggressivelyFixLt 2 | TYPE: bool 3 | VERSION: 2.1.0 4 | DEFAULT: true 5 | --DESCRIPTION-- 6 |

    7 | This directive enables aggressive pre-filter fixes HTML Purifier can 8 | perform in order to ensure that open angled-brackets do not get killed 9 | during parsing stage. Enabling this will result in two preg_replace_callback 10 | calls and at least two preg_replace calls for every HTML document parsed; 11 | if your users make very well-formed HTML, you can set this directive false. 12 | This has no effect when DirectLex is used. 13 |

    14 |

    15 | Notice: This directive's default turned from false to true 16 | in HTML Purifier 3.2.0. 17 |

    -------------------------------------------------------------------------------- /lib/yii/cli/views/shell/crud/update.php: -------------------------------------------------------------------------------- 1 | 10 |

    Update {$ID}; ?>"; ?>

    11 | 12 |
    13 | ["; ?>] 14 | ["; ?>] 15 | ["; ?>] 16 |
    17 | 18 | renderPartial('_form', array( 19 | 'model'=>\$model, 20 | 'update'=>true, 21 | )); ?>"; ?> -------------------------------------------------------------------------------- /lib/yii/db/schema/mysql/CMysqlTableSchema.php: -------------------------------------------------------------------------------- 1 | 6 | * @link http://www.yiiframework.com/ 7 | * @copyright Copyright © 2008-2009 Yii Software LLC 8 | * @license http://www.yiiframework.com/license/ 9 | */ 10 | 11 | /** 12 | * CMysqlTableSchema represents the metadata for a MySQL table. 13 | * 14 | * @author Qiang Xue 15 | * @version $Id: CMysqlTableSchema.php 433 2008-12-30 22:59:17Z qiang.xue $ 16 | * @package system.db.schema.mysql 17 | * @since 1.0 18 | */ 19 | class CMysqlTableSchema extends CDbTableSchema 20 | { 21 | /** 22 | * @var string name of the schema (database) that this table belongs to. 23 | * Defaults to null, meaning no schema (or the current database). 24 | */ 25 | public $schemaName; 26 | } 27 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.AllowedElements.txt: -------------------------------------------------------------------------------- 1 | HTML.AllowedElements 2 | TYPE: lookup/null 3 | VERSION: 1.3.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 |

    7 | If HTML Purifier's tag set is unsatisfactory for your needs, you 8 | can overload it with your own list of tags to allow. Note that this 9 | method is subtractive: it does its job by taking away from HTML Purifier 10 | usual feature set, so you cannot add a tag that HTML Purifier never 11 | supported in the first place (like embed, form or head). If you 12 | change this, you probably also want to change %HTML.AllowedAttributes. 13 |

    14 |

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

    18 | 19 | -------------------------------------------------------------------------------- /lib/yii/cli/views/shell/module/module.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | class extends CWebModule 4 | { 5 | public function init() 6 | { 7 | // this method is called when the module is being created 8 | // you may place code here to customize the module or the application 9 | 10 | // import the module-level models and components 11 | $this->setImport(array( 12 | '.models.*', 13 | '.components.*', 14 | )); 15 | } 16 | 17 | public function beforeControllerAction($controller, $action) 18 | { 19 | if(parent::beforeControllerAction($controller, $action)) 20 | { 21 | // this method is called before any module controller action is performed 22 | // you may place customized code here 23 | return true; 24 | } 25 | else 26 | return false; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /lib/yii/db/schema/oci/COciTableSchema.php: -------------------------------------------------------------------------------- 1 | 6 | * @link http://www.yiiframework.com/ 7 | * @copyright Copyright © 2008-2009 Yii Software LLC 8 | * @license http://www.yiiframework.com/license/ 9 | */ 10 | 11 | /** 12 | * COciTableSchema represents the metadata for a Ora table. 13 | * 14 | * @author Ricardo Grana 15 | * @version $Id: COciTableSchema.php 939 2009-04-15 19:37:34Z qiang.xue@gmail.com $ 16 | * @package system.db.schema.oci 17 | * @since 1.0.5 18 | */ 19 | class COciTableSchema extends CDbTableSchema 20 | { 21 | /** 22 | * @var string name of the schema (database) that this table belongs to. 23 | * Defaults to null, meaning no schema (or the current database). 24 | */ 25 | public $schemaName; 26 | } 27 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.ColorKeywords.txt: -------------------------------------------------------------------------------- 1 | Core.ColorKeywords 2 | TYPE: hash 3 | VERSION: 2.0.0 4 | --DEFAULT-- 5 | array ( 6 | 'maroon' => '#800000', 7 | 'red' => '#FF0000', 8 | 'orange' => '#FFA500', 9 | 'yellow' => '#FFFF00', 10 | 'olive' => '#808000', 11 | 'purple' => '#800080', 12 | 'fuchsia' => '#FF00FF', 13 | 'white' => '#FFFFFF', 14 | 'lime' => '#00FF00', 15 | 'green' => '#008000', 16 | 'navy' => '#000080', 17 | 'blue' => '#0000FF', 18 | 'aqua' => '#00FFFF', 19 | 'teal' => '#008080', 20 | 'black' => '#000000', 21 | 'silver' => '#C0C0C0', 22 | 'gray' => '#808080', 23 | ) 24 | --DESCRIPTION-- 25 | 26 | Lookup array of color names to six digit hexadecimal number corresponding 27 | to color, with preceding hash mark. Used when parsing colors. 28 | 29 | 30 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.Encoding.txt: -------------------------------------------------------------------------------- 1 | Core.Encoding 2 | TYPE: istring 3 | DEFAULT: 'utf-8' 4 | --DESCRIPTION-- 5 | If for some reason you are unable to convert all webpages to UTF-8, you can 6 | use this directive as a stop-gap compatibility change to let HTML Purifier 7 | deal with non UTF-8 input. This technique has notable deficiencies: 8 | absolutely no characters outside of the selected character encoding will be 9 | preserved, not even the ones that have been ampersand escaped (this is due 10 | to a UTF-8 specific feature that automatically resolves all 11 | entities), making it pretty useless for anything except the most I18N-blind 12 | applications, although %Core.EscapeNonASCIICharacters offers fixes this 13 | trouble with another tradeoff. This directive only accepts ISO-8859-1 if 14 | iconv is not enabled. 15 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.AllowedModules.txt: -------------------------------------------------------------------------------- 1 | HTML.AllowedModules 2 | TYPE: lookup/null 3 | VERSION: 2.0.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

    8 | A doctype comes with a set of usual modules to use. Without having 9 | to mucking about with the doctypes, you can quickly activate or 10 | disable these modules by specifying which modules you wish to allow 11 | with this directive. This is most useful for unit testing specific 12 | modules, although end users may find it useful for their own ends. 13 |

    14 |

    15 | If you specify a module that does not exist, the manager will silently 16 | fail to use it, so be careful! User-defined modules are not affected 17 | by this directive. Modules defined in %HTML.CoreModules are not 18 | affected by this directive. 19 |

    20 | 21 | -------------------------------------------------------------------------------- /lib/yii/yii.php: -------------------------------------------------------------------------------- 1 | 6 | * @link http://www.yiiframework.com/ 7 | * @copyright Copyright © 2008-2009 Yii Software LLC 8 | * @license http://www.yiiframework.com/license/ 9 | * @version $Id: yii.php 433 2008-12-30 22:59:17Z qiang.xue $ 10 | * @package system 11 | * @since 1.0 12 | */ 13 | 14 | require(dirname(__FILE__).'/YiiBase.php'); 15 | 16 | /** 17 | * Yii is a helper class serving common framework functionalities. 18 | * 19 | * It encapsulates {@link YiiBase} which provides the actual implementation. 20 | * By writing your own Yii class, you can customize some functionalities of YiiBase. 21 | * 22 | * @author Qiang Xue 23 | * @version $Id: yii.php 433 2008-12-30 22:59:17Z qiang.xue $ 24 | * @package system 25 | * @since 1.0 26 | */ 27 | class Yii extends YiiBase 28 | { 29 | } 30 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.ForbiddenElements.txt: -------------------------------------------------------------------------------- 1 | HTML.ForbiddenElements 2 | TYPE: lookup 3 | VERSION: 3.1.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 |

    7 | This was, perhaps, the most requested feature ever in HTML 8 | Purifier. Please don't abuse it! This is the logical inverse of 9 | %HTML.AllowedElements, and it will override that directive, or any 10 | other directive. 11 |

    12 |

    13 | If possible, %HTML.Allowed is recommended over this directive, because it 14 | can sometimes be difficult to tell whether or not you've forbidden all of 15 | the behavior you would like to disallow. If you forbid img 16 | with the expectation of preventing images on your site, you'll be in for 17 | a nasty surprise when people start using the background-image 18 | CSS property. 19 |

    20 | -------------------------------------------------------------------------------- /lib/yii/views/he/profile-callstack.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | $entry) 14 | { 15 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 16 | list($proc,$time,$level)=$entry; 17 | $proc=CHtml::encode($proc); 18 | $time=sprintf('%0.5f',$time); 19 | $spaces=str_repeat(' ',$level*8); 20 | 21 | echo << 23 | 24 | 25 | 26 | EOD; 27 | } 28 | ?> 29 |
    5 | דוח ניתוח פרופילים 6 |
    פרוצדורהזמן
    {$spaces}{$proc}{$time}
    30 | -------------------------------------------------------------------------------- /lib/yii/views/ja/profile-callstack.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | $entry) 14 | { 15 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 16 | list($proc,$time,$level)=$entry; 17 | $proc=CHtml::encode($proc); 18 | $time=sprintf('%0.5f',$time); 19 | $spaces=str_repeat(' ',$level*8); 20 | 21 | echo << 23 | 24 | 25 | 26 | EOD; 27 | } 28 | ?> 29 |
    5 | プロファイリング コールスタック レポート 6 |
    プロシージャ時間 (s)
    {$spaces}{$proc}{$time}
    30 | -------------------------------------------------------------------------------- /lib/yii/views/ru/profile-callstack.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | $entry) 14 | { 15 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 16 | list($proc,$time,$level)=$entry; 17 | $proc=CHtml::encode($proc); 18 | $time=sprintf('%0.5f',$time); 19 | $spaces=str_repeat(' ',$level*8); 20 | 21 | echo << 23 | 24 | 25 | 26 | EOD; 27 | } 28 | ?> 29 |
    5 | Стек вызовов 6 |
    ПроцедураВремя (с)
    {$spaces}{$proc}{$time}
    30 | -------------------------------------------------------------------------------- /lib/yii/views/zh_tw/profile-callstack.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | $entry) 14 | { 15 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 16 | list($proc,$time,$level)=$entry; 17 | $proc=CHtml::encode($proc); 18 | $time=sprintf('%0.5f',$time); 19 | $spaces=str_repeat(' ',$level*8); 20 | 21 | echo << 23 | 24 | 25 | 26 | EOD; 27 | } 28 | ?> 29 |
    5 | Profiling Callstack 報告 6 |
    程序時間 (秒)
    {$spaces}{$proc}{$time}
    30 | -------------------------------------------------------------------------------- /lib/yii/views/id/profile-callstack.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | $entry) 14 | { 15 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 16 | list($proc,$time,$level)=$entry; 17 | $proc=CHtml::encode($proc); 18 | $time=sprintf('%0.5f',$time); 19 | $spaces=str_repeat(' ',$level*8); 20 | 21 | echo << 23 | 24 | 25 | 26 | EOD; 27 | } 28 | ?> 29 |
    5 | Laporan Profil Callstack 6 |
    ProsedurJam
    {$spaces}{$proc}{$time}
    30 | -------------------------------------------------------------------------------- /lib/yii/views/no/profile-callstack.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | $entry) 14 | { 15 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 16 | list($proc,$time,$level)=$entry; 17 | $proc=CHtml::encode($proc); 18 | $time=sprintf('%0.5f',$time); 19 | $spaces=str_repeat(' ',$level*8); 20 | 21 | echo << 23 | 24 | 25 | 26 | EOD; 27 | } 28 | ?> 29 |
    5 | Profileringsrapport 6 |
    FunksjoneTid (sek)
    {$spaces}{$proc}{$time}
    30 | -------------------------------------------------------------------------------- /lib/yii/views/bg/profile-callstack.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | $entry) 14 | { 15 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 16 | list($proc,$time,$level)=$entry; 17 | $proc=CHtml::encode($proc); 18 | $time=sprintf('%0.5f',$time); 19 | $spaces=str_repeat(' ',$level*8); 20 | 21 | echo << 23 | 24 | 25 | 26 | EOD; 27 | } 28 | ?> 29 |
    5 | Обобщен доклад от профилирането 6 |
    ПроцедураВреме (на)
    {$spaces}{$proc}{$time}
    30 | 31 | -------------------------------------------------------------------------------- /lib/yii/views/profile-callstack.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | $entry) 14 | { 15 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 16 | list($proc,$time,$level)=$entry; 17 | $proc=CHtml::encode($proc); 18 | $time=sprintf('%0.5f',$time); 19 | $spaces=str_repeat(' ',$level*8); 20 | 21 | echo << 23 | 24 | 25 | 26 | EOD; 27 | } 28 | ?> 29 |
    5 | Profiling Callstack Report 6 |
    ProcedureTime (s)
    {$spaces}{$proc}{$time}
    30 | -------------------------------------------------------------------------------- /lib/yii/views/ro/profile-callstack.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | $entry) 14 | { 15 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 16 | list($proc,$time,$level)=$entry; 17 | $proc=CHtml::encode($proc); 18 | $time=sprintf('%0.5f',$time); 19 | $spaces=str_repeat(' ',$level*8); 20 | 21 | echo << 23 | 24 | 25 | 26 | EOD; 27 | } 28 | ?> 29 |
    5 | Profiling Callstack Report 6 |
    ProceduraTimp(i)
    {$spaces}{$proc}{$time}
    30 | -------------------------------------------------------------------------------- /lib/yii/views/sv/profile-callstack.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | $entry) 14 | { 15 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 16 | list($proc,$time,$level)=$entry; 17 | $proc=CHtml::encode($proc); 18 | $time=sprintf('%0.5f',$time); 19 | $spaces=str_repeat(' ',$level*8); 20 | 21 | echo << 23 | 24 | 25 | 26 | EOD; 27 | } 28 | ?> 29 |
    5 | Profileringsrapport - Anropsstack 6 |
    ProcedurTid (s)
    {$spaces}{$proc}{$time}
    30 | -------------------------------------------------------------------------------- /lib/yii/views/zh_cn/log.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | $log) 16 | { 17 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 18 | $message=CHtml::encode($log[0]); 19 | $time=date('H:i:s.',$log[3]).(int)(($log[3]-(int)$log[3])*1000000); 20 | 21 | echo << 23 | 24 | 25 | 26 | 27 | 28 | EOD; 29 | } 30 | ?> 31 |
    5 | 程序日志 6 |
    时间等级类别信息
    {$time}{$log[1]}{$log[2]}{$message}
    32 | -------------------------------------------------------------------------------- /lib/yii/views/zh_tw/log.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | $log) 16 | { 17 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 18 | $message=CHtml::encode($log[0]); 19 | $time=date('H:i:s.',$log[3]).(int)(($log[3]-(int)$log[3])*1000000); 20 | 21 | echo << 23 | 24 | 25 | 26 | 27 | 28 | EOD; 29 | } 30 | ?> 31 |
    5 | 應用程式日誌 6 |
    時間戳等級分類訊息
    {$time}{$log[1]}{$log[2]}{$message}
    32 | -------------------------------------------------------------------------------- /lib/yii/views/es/profile-callstack.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | $entry) 14 | { 15 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 16 | list($proc,$time,$level)=$entry; 17 | $proc=CHtml::encode($proc); 18 | $time=sprintf('%0.5f',$time); 19 | $spaces=str_repeat(' ',$level*8); 20 | 21 | echo << 23 | 24 | 25 | 26 | EOD; 27 | } 28 | ?> 29 |
    5 | Profiling Callstack Report 6 |
    ProcedimientoTiempo (s)
    {$spaces}{$proc}{$time}
    30 | -------------------------------------------------------------------------------- /protected/views/site/login.php: -------------------------------------------------------------------------------- 1 | pageTitle=Yii::app()->name . ' - Login'; ?> 2 | 3 |

    Login

    4 | 5 |
    6 | 7 | 8 | 9 | 10 |
    11 | 12 | 13 |
    14 | 15 |
    16 | 17 | 18 |

    19 | Hint: You may login with demo/demo or admin/admin. 20 |

    21 |
    22 | 23 |
    24 | 25 | 26 |
    27 | 28 |
    29 | 30 | 31 | 32 |
    -------------------------------------------------------------------------------- /lib/yii/views/ja/log.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | $log) 16 | { 17 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 18 | $message=CHtml::encode($log[0]); 19 | $time=date('H:i:s.',$log[3]).(int)(($log[3]-(int)$log[3])*1000000); 20 | 21 | echo << 23 | 24 | 25 | 26 | 27 | 28 | EOD; 29 | } 30 | ?> 31 |
    5 | アプリケーションログ 6 |
    タイムスタンプレベルカテゴリメッセージ
    {$time}{$log[1]}{$log[2]}{$message}
    32 | -------------------------------------------------------------------------------- /lib/yii/views/pt/profile-callstack.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | $entry) 14 | { 15 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 16 | list($proc,$time,$level)=$entry; 17 | $proc=CHtml::encode($proc); 18 | $time=sprintf('%0.5f',$time); 19 | $spaces=str_repeat(' ',$level*8); 20 | 21 | echo << 23 | 24 | 25 | 26 | EOD; 27 | } 28 | ?> 29 |
    5 | Relatorio de Profiling do Callstack 6 |
    ProcedimentoTempo (s)
    {$spaces}{$proc}{$time}
    30 | -------------------------------------------------------------------------------- /lib/yii/views/he/log.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | $log) 16 | { 17 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 18 | $message=CHtml::encode($log[0]); 19 | $time=date('H:i:s.',$log[3]).(int)(($log[3]-(int)$log[3])*1000000); 20 | 21 | echo << 23 | 24 | 25 | 26 | 27 | 28 | EOD; 29 | } 30 | ?> 31 |
    5 | רשומות האפליקציה 6 |
    זמןרמהקטגוריההודעה
    {$time}{$log[1]}{$log[2]}{$message}
    32 | -------------------------------------------------------------------------------- /lib/yii/views/id/log.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | $log) 16 | { 17 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 18 | $message=CHtml::encode($log[0]); 19 | $time=date('H:i:s.',$log[3]).(int)(($log[3]-(int)$log[3])*1000000); 20 | 21 | echo << 23 | 24 | 25 | 26 | 27 | 28 | EOD; 29 | } 30 | ?> 31 |
    5 | Log Aplikasi 6 |
    WaktuTingkatKategoriPesan
    {$time}{$log[1]}{$log[2]}{$message}
    32 | -------------------------------------------------------------------------------- /lib/yii/views/no/log.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | $log) 16 | { 17 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 18 | $message=CHtml::encode($log[0]); 19 | $time=date('H:i:s.',$log[3]).(int)(($log[3]-(int)$log[3])*1000000); 20 | 21 | echo << 23 | 24 | 25 | 26 | 27 | 28 | EOD; 29 | } 30 | ?> 31 |
    5 | Applikasjonslogg 6 |
    TidNivåKategoriMelding
    {$time}{$log[1]}{$log[2]}{$message}
    32 | -------------------------------------------------------------------------------- /lib/yii/views/zh_cn/profile-callstack.php: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | $entry ) { 13 | $color = ($index % 2) ? '#F5F5F5' : '#EBF8FE'; 14 | list ( $proc, $time, $level ) = $entry; 15 | $proc = CHtml::encode ( $proc ); 16 | $time = sprintf ( '%0.5f', $time ); 17 | $spaces = str_repeat ( ' ', $level * 8 ); 18 | 19 | echo << 21 | 22 | 23 | 24 | EOD; 25 | } 26 | ?> 27 |
    程序概要分析 - 堆栈调用报告
    步骤时间 (秒)
    {$spaces}{$proc}{$time}
    28 | -------------------------------------------------------------------------------- /lib/yii/views/fr/profile-callstack.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | $entry) 14 | { 15 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 16 | list($proc,$time,$level)=$entry; 17 | $proc=CHtml::encode($proc); 18 | $time=sprintf('%0.5f',$time); 19 | $spaces=str_repeat(' ',$level*8); 20 | 21 | echo << 23 | 24 | 25 | 26 | EOD; 27 | } 28 | ?> 29 |
    5 | Profiling Callstack Report 6 |
    ProcedureTime (s)
    {$spaces}{$proc}{$time}
    30 | -------------------------------------------------------------------------------- /lib/yii/views/ro/log.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | $log) 16 | { 17 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 18 | $message=CHtml::encode($log[0]); 19 | $time=date('H:i:s.',$log[3]).(int)(($log[3]-(int)$log[3])*1000000); 20 | 21 | echo << 23 | 24 | 25 | 26 | 27 | 28 | EOD; 29 | } 30 | ?> 31 |
    5 | Log aplicatie 6 |
    TimestampNivelCategorieMesaj
    {$time}{$log[1]}{$log[2]}{$message}
    32 | -------------------------------------------------------------------------------- /lib/yii/cli/views/webapp/protected/views/site/login.php: -------------------------------------------------------------------------------- 1 | pageTitle=Yii::app()->name . ' - Login'; ?> 2 | 3 |

    Login

    4 | 5 |
    6 | 7 | 8 | 9 | 10 |
    11 | 12 | 13 |
    14 | 15 |
    16 | 17 | 18 |

    19 | Hint: You may login with demo/demo or admin/admin. 20 |

    21 |
    22 | 23 |
    24 | 25 | 26 |
    27 | 28 |
    29 | 30 | 31 | 32 |
    -------------------------------------------------------------------------------- /lib/yii/views/de/profile-callstack.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | $entry) 14 | { 15 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 16 | list($proc,$time,$level)=$entry; 17 | $proc=CHtml::encode($proc); 18 | $time=sprintf('%0.5f',$time); 19 | $spaces=str_repeat(' ',$level*8); 20 | 21 | echo << 23 | 24 | 25 | 26 | EOD; 27 | } 28 | ?> 29 |
    5 | Ergebnisse der Leistungsmessung anhand des Aufrufstapels 6 |
    ProzedurZeit (s)
    {$spaces}{$proc}{$time}
    30 | 31 | -------------------------------------------------------------------------------- /lib/yii/views/pt/log.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | $log) 16 | { 17 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 18 | $message=CHtml::encode($log[0]); 19 | $time=date('H:i:s.',$log[3]).(int)(($log[3]-(int)$log[3])*1000000); 20 | 21 | echo << 23 | 24 | 25 | 26 | 27 | 28 | EOD; 29 | } 30 | ?> 31 |
    5 | Log da Aplicação 6 |
    TimestampNívelCategoriaMensagem
    {$time}{$log[1]}{$log[2]}{$message}
    32 | -------------------------------------------------------------------------------- /lib/yii/views/sv/log.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | $log) 16 | { 17 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 18 | $message=CHtml::encode($log[0]); 19 | $time=date('H:i:s.',$log[3]).(int)(($log[3]-(int)$log[3])*1000000); 20 | 21 | echo << 23 | 24 | 25 | 26 | 27 | 28 | EOD; 29 | } 30 | ?> 31 |
    5 | Applikationslogg 6 |
    TimestampNivåKategoriMeddelande
    {$time}{$log[1]}{$log[2]}{$message}
    32 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.Host.txt: -------------------------------------------------------------------------------- 1 | URI.Host 2 | TYPE: string/null 3 | VERSION: 1.2.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

    8 | Defines the domain name of the server, so we can determine whether or 9 | an absolute URI is from your website or not. Not strictly necessary, 10 | as users should be using relative URIs to reference resources on your 11 | website. It will, however, let you use absolute URIs to link to 12 | subdomains of the domain you post here: i.e. example.com will allow 13 | sub.example.com. However, higher up domains will still be excluded: 14 | if you set %URI.Host to sub.example.com, example.com will be blocked. 15 | Note: This directive overrides %URI.Base because 16 | a given page may be on a sub-domain, but you wish HTML Purifier to be 17 | more relaxed and allow some of the parent domains too. 18 |

    19 | 20 | -------------------------------------------------------------------------------- /lib/yii/views/de/log.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | $log) 16 | { 17 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 18 | $message=CHtml::encode($log[0]); 19 | $time=date('H:i:s.',$log[3]).(int)(($log[3]-(int)$log[3])*1000000); 20 | 21 | echo << 23 | 24 | 25 | 26 | 27 | 28 | EOD; 29 | } 30 | ?> 31 |
    5 | Anwendungsprotokoll 6 |
    ZeitstempelStufeKategorieNachricht
    {$time}{$log[1]}{$log[2]}{$message}
    32 | 33 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/Interchange/Id.php: -------------------------------------------------------------------------------- 1 | namespace = $namespace; 13 | $this->directive = $directive; 14 | } 15 | 16 | /** 17 | * @warning This is NOT magic, to ensure that people don't abuse SPL and 18 | * cause problems for PHP 5.0 support. 19 | */ 20 | public function toString() { 21 | return $this->namespace . '.' . $this->directive; 22 | } 23 | 24 | public static function make($id) { 25 | list($namespace, $directive) = explode('.', $id); 26 | return new HTMLPurifier_ConfigSchema_Interchange_Id($namespace, $directive); 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Allowed.txt: -------------------------------------------------------------------------------- 1 | HTML.Allowed 2 | TYPE: itext/null 3 | VERSION: 2.0.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

    8 | This is a convenience directive that rolls the functionality of 9 | %HTML.AllowedElements and %HTML.AllowedAttributes into one directive. 10 | Specify elements and attributes that are allowed using: 11 | element1[attr1|attr2],element2.... You can also use 12 | newlines instead of commas to separate elements. 13 |

    14 |

    15 | Warning: 16 | All of the constraints on the component directives are still enforced. 17 | The syntax is a subset of TinyMCE's valid_elements 18 | whitelist: directly copy-pasting it here will probably result in 19 | broken whitelists. If %HTML.AllowedElements or %HTML.AllowedAttributes 20 | are set, this directive has no effect. 21 |

    22 | 23 | -------------------------------------------------------------------------------- /lib/yii/views/log.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | $log) 16 | { 17 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 18 | $message='
    '.CHtml::encode(wordwrap($log[0])).'
    '; 19 | $time=date('H:i:s.',$log[3]).(int)(($log[3]-(int)$log[3])*1000000); 20 | 21 | echo << 23 | 24 | 25 | 26 | 27 | 28 | EOD; 29 | } 30 | ?> 31 |
    5 | Application Log 6 |
    TimestampLevelCategoryMessage
    {$time}{$log[1]}{$log[2]}{$message}
    32 | -------------------------------------------------------------------------------- /lib/yii/views/bg/log.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | $log) 16 | { 17 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 18 | $message='
    '.CHtml::encode(wordwrap($log[0])).'
    '; 19 | $time=date('H:i:s.',$log[3]).(int)(($log[3]-(int)$log[3])*1000000); 20 | 21 | echo << 23 | 24 | 25 | 26 | 27 | 28 | EOD; 29 | } 30 | ?> 31 |
    5 | Дневник на приложението 6 |
    TimestampНивоКатегорияСъобщение
    {$time}{$log[1]}{$log[2]}{$message}
    32 | 33 | -------------------------------------------------------------------------------- /lib/yii/views/es/log.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | $log) 16 | { 17 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 18 | $message='
    '.CHtml::encode(wordwrap($log[0])).'
    '; 19 | $time=date('H:i:s.',$log[3]).(int)(($log[3]-(int)$log[3])*1000000); 20 | 21 | echo << 23 | 24 | 25 | 26 | 27 | 28 | EOD; 29 | } 30 | ?> 31 |
    5 | Application Log 6 |
    TimestampLevelCategoryMessage
    {$time}{$log[1]}{$log[2]}{$message}
    32 | -------------------------------------------------------------------------------- /lib/yii/views/ru/log.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | $log) 16 | { 17 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 18 | $message='
    '.CHtml::encode(wordwrap($log[0])).'
    '; 19 | $time=date('H:i:s.',$log[3]).(int)(($log[3]-(int)$log[3])*1000000); 20 | 21 | echo << 23 | 24 | 25 | 26 | 27 | 28 | EOD; 29 | } 30 | ?> 31 |
    5 | Журнал приложения 6 |
    ВремяУровеньКатегорияСообщение
    {$time}{$log[1]}{$log[2]}{$message}
    32 | -------------------------------------------------------------------------------- /lib/yii/yiic.php: -------------------------------------------------------------------------------- 1 | 9 | * @link http://www.yiiframework.com/ 10 | * @copyright Copyright © 2008-2009 Yii Software LLC 11 | * @license http://www.yiiframework.com/license/ 12 | * @version $Id: yiic.php 1211 2009-07-05 04:54:10Z qiang.xue $ 13 | */ 14 | 15 | // fix for fcgi 16 | defined('STDIN') or define('STDIN', fopen('php://stdin', 'r')); 17 | 18 | defined('YII_DEBUG') or define('YII_DEBUG',true); 19 | error_reporting(E_ALL ^ E_NOTICE); 20 | 21 | require_once(dirname(__FILE__).'/yii.php'); 22 | 23 | if(isset($config)) 24 | { 25 | $app=Yii::createConsoleApplication($config); 26 | $app->commandRunner->addCommands(YII_PATH.'/cli/commands'); 27 | } 28 | else 29 | $app=Yii::createConsoleApplication(array('basePath'=>dirname(__FILE__).'/cli')); 30 | 31 | $app->run(); -------------------------------------------------------------------------------- /lib/yii/views/fr/log.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | $log) 16 | { 17 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 18 | $message=CHtml::encode($log[0]); 19 | $time=date('H:i:s.',$log[3]).(int)(($log[3]-(int)$log[3])*1000000); 20 | 21 | echo << 23 | 24 | 25 | 26 | 27 | 28 | EOD; 29 | } 30 | ?> 31 |
    5 | Journal d'application 6 |
    HeureNiveauCategorieMessage
    {$time}{$log[1]}{$log[2]}{$message}
    32 | -------------------------------------------------------------------------------- /lib/yii/views/nl/profile-callstack.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 10 | 11 | 12 | $entry) { 14 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 15 | list($proc,$time,$level)=$entry; 16 | $proc=CHtml::encode($proc); 17 | $time=sprintf('%0.5f',$time); 18 | $spaces=str_repeat(' ',$level*8); 19 | 20 | echo << 22 | 23 | 24 | 25 | EOD; 26 | } 27 | ?> 28 |
    5 | Profiling Callstack Rapport 6 |
    ProcedureTijd (s)
    {$spaces}{$proc}{$time}
    29 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Output.TidyFormat.txt: -------------------------------------------------------------------------------- 1 | Output.TidyFormat 2 | TYPE: bool 3 | VERSION: 1.1.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

    7 | Determines whether or not to run Tidy on the final output for pretty 8 | formatting reasons, such as indentation and wrap. 9 |

    10 |

    11 | This can greatly improve readability for editors who are hand-editing 12 | the HTML, but is by no means necessary as HTML Purifier has already 13 | fixed all major errors the HTML may have had. Tidy is a non-default 14 | extension, and this directive will silently fail if Tidy is not 15 | available. 16 |

    17 |

    18 | If you are looking to make the overall look of your page's source 19 | better, I recommend running Tidy on the entire page rather than just 20 | user-content (after all, the indentation relative to the containing 21 | blocks will be incorrect). 22 |

    23 | --ALIASES-- 24 | Core.TidyFormat 25 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.ForbiddenAttributes.txt: -------------------------------------------------------------------------------- 1 | HTML.ForbiddenAttributes 2 | TYPE: lookup 3 | VERSION: 3.1.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 |

    7 | While this directive is similar to %HTML.AllowedAttributes, for 8 | forwards-compatibility with XML, this attribute has a different syntax. Instead of 9 | tag.attr, use tag@attr. To disallow href 10 | attributes in a tags, set this directive to 11 | a@href. You can also disallow an attribute globally with 12 | attr or *@attr (either syntax is fine; the latter 13 | is provided for consistency with %HTML.AllowedAttributes). 14 |

    15 |

    16 | Warning: This directive complements %HTML.ForbiddenElements, 17 | accordingly, check 18 | out that directive for a discussion of why you 19 | should think twice before using this directive. 20 |

    21 | -------------------------------------------------------------------------------- /lib/yii/views/nl/log.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | $log) { 14 | $color=($index%2)?'#F5F5F5':'#EBF8FE'; 15 | $message=CHtml::encode($log[0]); 16 | $time=date('H:i:s.',$log[3]).(int)(($log[3]-(int)$log[3])*1000000); 17 | 18 | echo << 20 | 21 | 22 | 23 | 24 | 25 | EOD; 26 | } 27 | ?> 28 |
    Applicatie Logboek
    TijdNiveauCategoreBericht
    {$time}{$log[1]}{$log[2]}{$message}
    29 | -------------------------------------------------------------------------------- /lib/yii/web/actions/CInlineAction.php: -------------------------------------------------------------------------------- 1 | 6 | * @link http://www.yiiframework.com/ 7 | * @copyright Copyright © 2008-2009 Yii Software LLC 8 | * @license http://www.yiiframework.com/license/ 9 | */ 10 | 11 | 12 | /** 13 | * CInlineAction represents an action that is defined as a controller method. 14 | * 15 | * The method name is like 'actionXYZ' where 'XYZ' stands for the action name. 16 | * 17 | * @author Qiang Xue 18 | * @version $Id: CInlineAction.php 433 2008-12-30 22:59:17Z qiang.xue $ 19 | * @package system.web.actions 20 | * @since 1.0 21 | */ 22 | class CInlineAction extends CAction 23 | { 24 | /** 25 | * Runs the action. 26 | * The action method defined in the controller is invoked. 27 | * This method is required by {@link CAction}. 28 | */ 29 | public function run() 30 | { 31 | $method='action'.$this->getId(); 32 | $this->getController()->$method(); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /lib/yii/base/CExceptionEvent.php: -------------------------------------------------------------------------------- 1 | 6 | * @link http://www.yiiframework.com/ 7 | * @copyright Copyright © 2008-2009 Yii Software LLC 8 | * @license http://www.yiiframework.com/license/ 9 | */ 10 | 11 | /** 12 | * CExceptionEvent represents the parameter for the {@link CApplication::onException onException} event. 13 | * 14 | * @author Qiang Xue 15 | * @version $Id: CExceptionEvent.php 870 2009-03-22 15:06:23Z qiang.xue $ 16 | * @package system.base 17 | * @since 1.0 18 | */ 19 | class CExceptionEvent extends CEvent 20 | { 21 | /** 22 | * @var CException the exception that this event is about. 23 | */ 24 | public $exception; 25 | 26 | /** 27 | * Constructor. 28 | * @param mixed sender of the event 29 | * @param CException the exception 30 | */ 31 | public function __construct($sender,$exception) 32 | { 33 | $this->exception=$exception; 34 | parent::__construct($sender); 35 | } 36 | } -------------------------------------------------------------------------------- /assets/56baf066/rating/jquery.rating.css: -------------------------------------------------------------------------------- 1 | /* jQuery.Rating Plugin CSS - http://www.fyneworks.com/jquery/star-rating/ */ 2 | div.rating{cursor:pointer;margin:2em;clear:both;display:block} 3 | div.rating:after{content:'.';display:block;height:0;width:0;clear:both;visibility:hidden} 4 | div.cancel,div.star{float:left;width:17px;height:15px;text-indent:-999em;cursor:pointer;display:block;background:transparent;overflow:hidden} 5 | div.cancel,div.cancel a{background:url('delete.gif') no-repeat 0 -16px} 6 | div.star,div.star a{background:url('star.gif') no-repeat 0 0px} 7 | div.cancel a,div.star a{display:block;width:16px;height:100%;background-position:0 0px;border:1 solid #FF0000} 8 | div.star_on a{background-position:0 -16px!important} 9 | div.star_hover a,div.star_live a:hover{background-position:0 -32px} 10 | /* Read Only CSS */ 11 | div.star_readonly a,div.star_readonly a:hover{cursor:default !important} 12 | /* Partial Star CSS */ 13 | div.star{background:transparent!important;overflow:hidden!important} 14 | /* END jQuery.Rating Plugin CSS */ -------------------------------------------------------------------------------- /lib/yii/web/js/source/rating/jquery.rating.css: -------------------------------------------------------------------------------- 1 | /* jQuery.Rating Plugin CSS - http://www.fyneworks.com/jquery/star-rating/ */ 2 | div.rating{cursor:pointer;margin:2em;clear:both;display:block} 3 | div.rating:after{content:'.';display:block;height:0;width:0;clear:both;visibility:hidden} 4 | div.cancel,div.star{float:left;width:17px;height:15px;text-indent:-999em;cursor:pointer;display:block;background:transparent;overflow:hidden} 5 | div.cancel,div.cancel a{background:url('delete.gif') no-repeat 0 -16px} 6 | div.star,div.star a{background:url('star.gif') no-repeat 0 0px} 7 | div.cancel a,div.star a{display:block;width:16px;height:100%;background-position:0 0px;border:1 solid #FF0000} 8 | div.star_on a{background-position:0 -16px!important} 9 | div.star_hover a,div.star_live a:hover{background-position:0 -32px} 10 | /* Read Only CSS */ 11 | div.star_readonly a,div.star_readonly a:hover{cursor:default !important} 12 | /* Partial Star CSS */ 13 | div.star{background:transparent!important;overflow:hidden!important} 14 | /* END jQuery.Rating Plugin CSS */ -------------------------------------------------------------------------------- /assets/56baf066/autocomplete/jquery.autocomplete.css: -------------------------------------------------------------------------------- 1 | .ac_results { 2 | padding: 0px; 3 | border: 1px solid black; 4 | background-color: white; 5 | overflow: hidden; 6 | z-index: 99999; 7 | } 8 | 9 | .ac_results ul { 10 | width: 100%; 11 | list-style-position: outside; 12 | list-style: none; 13 | padding: 0; 14 | margin: 0; 15 | } 16 | 17 | .ac_results li { 18 | margin: 0px; 19 | padding: 2px 5px; 20 | cursor: default; 21 | display: block; 22 | /* 23 | if width will be 100% horizontal scrollbar will apear 24 | when scroll mode will be used 25 | */ 26 | /*width: 100%;*/ 27 | font: menu; 28 | font-size: 12px; 29 | /* 30 | it is very important, if line-height not setted or setted 31 | in relative units scroll will be broken in firefox 32 | */ 33 | line-height: 16px; 34 | overflow: hidden; 35 | } 36 | 37 | .ac_loading { 38 | background: white url('indicator.gif') right center no-repeat; 39 | } 40 | 41 | .ac_odd { 42 | background-color: #eee; 43 | } 44 | 45 | .ac_over { 46 | background-color: #0A246A; 47 | color: white; 48 | } 49 | -------------------------------------------------------------------------------- /lib/yii/vendors/TextHighlighter/Text/sample.css: -------------------------------------------------------------------------------- 1 | .hl-default { 2 | color: Black; 3 | } 4 | .hl-code { 5 | color: Gray; 6 | } 7 | .hl-brackets { 8 | color: Olive; 9 | } 10 | .hl-comment { 11 | color: Orange; 12 | } 13 | .hl-quotes { 14 | color: Darkred; 15 | } 16 | .hl-string { 17 | color: Red; 18 | } 19 | .hl-identifier { 20 | color: Blue; 21 | } 22 | .hl-builtin { 23 | color: Teal; 24 | } 25 | .hl-reserved { 26 | color: Green; 27 | } 28 | .hl-inlinedoc { 29 | color: Blue; 30 | } 31 | .hl-var { 32 | color: Darkblue; 33 | } 34 | .hl-url { 35 | color: Blue; 36 | } 37 | .hl-special { 38 | color: Navy; 39 | } 40 | .hl-number { 41 | color: Maroon; 42 | } 43 | .hl-inlinetags { 44 | color: Blue; 45 | } 46 | .hl-main { 47 | background-color: White; 48 | } 49 | .hl-gutter { 50 | background-color: #999999; 51 | color: White 52 | } 53 | .hl-table { 54 | font-family: courier; 55 | font-size: 12px; 56 | border: solid 1px Lightgrey; 57 | } 58 | -------------------------------------------------------------------------------- /lib/yii/web/js/source/autocomplete/jquery.autocomplete.css: -------------------------------------------------------------------------------- 1 | .ac_results { 2 | padding: 0px; 3 | border: 1px solid black; 4 | background-color: white; 5 | overflow: hidden; 6 | z-index: 99999; 7 | } 8 | 9 | .ac_results ul { 10 | width: 100%; 11 | list-style-position: outside; 12 | list-style: none; 13 | padding: 0; 14 | margin: 0; 15 | } 16 | 17 | .ac_results li { 18 | margin: 0px; 19 | padding: 2px 5px; 20 | cursor: default; 21 | display: block; 22 | /* 23 | if width will be 100% horizontal scrollbar will apear 24 | when scroll mode will be used 25 | */ 26 | /*width: 100%;*/ 27 | font: menu; 28 | font-size: 12px; 29 | /* 30 | it is very important, if line-height not setted or setted 31 | in relative units scroll will be broken in firefox 32 | */ 33 | line-height: 16px; 34 | overflow: hidden; 35 | } 36 | 37 | .ac_loading { 38 | background: white url('indicator.gif') right center no-repeat; 39 | } 40 | 41 | .ac_odd { 42 | background-color: #eee; 43 | } 44 | 45 | .ac_over { 46 | background-color: #0A246A; 47 | color: white; 48 | } 49 | -------------------------------------------------------------------------------- /lib/yii/cli/views/shell/crud/_form.php: -------------------------------------------------------------------------------- 1 | 10 |
    11 | 12 |

    13 | Fields with * are required. 14 |

    15 | 16 | \n"; ?> 17 | 18 | \n"; ?> 19 | 20 | $column): ?> 21 |
    22 | generateInputLabel($modelClass,$column)."; ?>\n"; ?> 23 | generateInputField($modelClass,$column)."; ?>\n"; ?> 24 |
    25 | 26 | 27 |
    28 | \n"; ?> 29 |
    30 | 31 | \n"; ?> 32 | 33 |
    -------------------------------------------------------------------------------- /lib/yii/cli/views/webapp/protected/components/UserIdentity.php: -------------------------------------------------------------------------------- 1 | password 22 | 'demo'=>'demo', 23 | 'admin'=>'admin', 24 | ); 25 | if(!isset($users[$this->username])) 26 | $this->errorCode=self::ERROR_USERNAME_INVALID; 27 | else if($users[$this->username]!==$this->password) 28 | $this->errorCode=self::ERROR_PASSWORD_INVALID; 29 | else 30 | $this->errorCode=self::ERROR_NONE; 31 | return !$this->errorCode; 32 | } 33 | } -------------------------------------------------------------------------------- /lib/yii/views/zh_cn/error503.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 目前服务不可用 8 | 18 | 19 | 20 |

    目前服务不可用

    21 |

    22 | 系统目前正在维护中,请稍候再试. 23 |

    24 |

    25 | 对此带来的不便,深感歉意. 26 |

    27 |
    28 | 29 |
    30 | 31 | -------------------------------------------------------------------------------- /lib/yii/views/zh_tw/error503.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Service Unavailable 8 | 18 | 19 | 20 |

    目前無法提供服務

    21 |

    22 | 系統目前正在維護中. 請稍後再試. 23 |

    24 |

    25 | 謝謝. 26 |

    27 |
    28 | 29 |
    30 | 31 | -------------------------------------------------------------------------------- /lib/yii/web/COutputEvent.php: -------------------------------------------------------------------------------- 1 | 6 | * @link http://www.yiiframework.com/ 7 | * @copyright Copyright © 2008-2009 Yii Software LLC 8 | * @license http://www.yiiframework.com/license/ 9 | */ 10 | 11 | /** 12 | * COutputEvent represents the parameter for events related with output handling. 13 | * 14 | * An event handler may retrieve the captured {@link output} for further processing. 15 | * 16 | * @author Qiang Xue 17 | * @version $Id: COutputEvent.php 433 2008-12-30 22:59:17Z qiang.xue $ 18 | * @package system.web 19 | * @since 1.0 20 | */ 21 | class COutputEvent extends CEvent 22 | { 23 | /** 24 | * @var string the output to be processed. The processed output should be stored back to this property. 25 | */ 26 | public $output; 27 | 28 | /** 29 | * Constructor. 30 | * @param mixed sender of the event 31 | * @param string the output to be processed 32 | */ 33 | public function __construct($sender,$output) 34 | { 35 | parent::__construct($sender); 36 | $this->output=$output; 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /lib/yii/db/schema/sqlite/CSqliteColumnSchema.php: -------------------------------------------------------------------------------- 1 | 6 | * @link http://www.yiiframework.com/ 7 | * @copyright Copyright © 2008-2009 Yii Software LLC 8 | * @license http://www.yiiframework.com/license/ 9 | */ 10 | 11 | /** 12 | * CSqliteColumnSchema class describes the column meta data of a SQLite table. 13 | * 14 | * @author Qiang Xue 15 | * @version $Id: CSqliteColumnSchema.php 433 2008-12-30 22:59:17Z qiang.xue $ 16 | * @package system.db.schema.sqlite 17 | * @since 1.0 18 | */ 19 | class CSqliteColumnSchema extends CDbColumnSchema 20 | { 21 | /** 22 | * Extracts the default value for the column. 23 | * The value is typecasted to correct PHP type. 24 | * @param mixed the default value obtained from metadata 25 | */ 26 | protected function extractDefault($defaultValue) 27 | { 28 | if($this->type==='string') // PHP 5.2.6 adds single quotes while 5.2.0 doesn't 29 | $this->defaultValue=trim($defaultValue,"'\""); 30 | else 31 | $this->defaultValue=$this->typecast($defaultValue); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /protected/models/ContactForm.php: -------------------------------------------------------------------------------- 1 | !extension_loaded('gd')), 28 | ); 29 | } 30 | 31 | /** 32 | * Declares customized attribute labels. 33 | * If not declared here, an attribute would have a label that is 34 | * the same as its name with the first letter in upper case. 35 | */ 36 | public function attributeLabels() 37 | { 38 | return array( 39 | 'verifyCode'=>'Verification Code', 40 | ); 41 | } 42 | } -------------------------------------------------------------------------------- /lib/yii/views/ja/error503.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Service Unavailable 8 | 18 | 19 | 20 |

    サービスが提供されません

    21 |

    22 | システムは現在メンテナンス中です。また後で来てくださるようお願いします。 23 |

    24 |

    25 | ありがとうございます。 26 |

    27 |
    28 | 29 |
    30 | 31 | -------------------------------------------------------------------------------- /lib/yii/db/schema/mssql/CMssqlTableSchema.php: -------------------------------------------------------------------------------- 1 | 6 | * @author Christophe Boulain 7 | * @link http://www.yiiframework.com/ 8 | * @copyright Copyright © 2008-2009 Yii Software LLC 9 | * @license http://www.yiiframework.com/license/ 10 | */ 11 | 12 | /** 13 | * CMssqlTableSchema represents the metadata for a MSSQL table. 14 | * 15 | * @author Qiang Xue 16 | * @author Christophe Boulain 17 | * @version $Id: CMssqlTableSchema.php 820 2009-03-11 17:11:24Z qiang.xue $ 18 | * @package system.db.schema.mssql 19 | * @since 1.0.4 20 | */ 21 | class CMssqlTableSchema extends CDbTableSchema 22 | { 23 | /** 24 | * @var string name of the catalog (database) that this table belongs to. 25 | * Defaults to null, meaning no schema (or the current database). 26 | */ 27 | public $catalogName; 28 | /** 29 | * @var string name of the schema that this table belongs to. 30 | * Defaults to null, meaning no schema (or the current database owner). 31 | */ 32 | public $schemaName; 33 | } 34 | -------------------------------------------------------------------------------- /lib/yii/vendors/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.MungeSecretKey.txt: -------------------------------------------------------------------------------- 1 | URI.MungeSecretKey 2 | TYPE: string/null 3 | VERSION: 3.1.1 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 |

    7 | This directive enables secure checksum generation along with %URI.Munge. 8 | It should be set to a secure key that is not shared with anyone else. 9 | The checksum can be placed in the URI using %t. Use of this checksum 10 | affords an additional level of protection by allowing a redirector 11 | to check if a URI has passed through HTML Purifier with this line: 12 |

    13 | 14 |
    $checksum === sha1($secret_key . ':' . $url)
    15 | 16 |

    17 | If the output is TRUE, the redirector script should accept the URI. 18 |

    19 | 20 |

    21 | Please note that it would still be possible for an attacker to procure 22 | secure hashes en-mass by abusing your website's Preview feature or the 23 | like, but this service affords an additional level of protection 24 | that should be combined with website blacklisting. 25 |

    26 | 27 |

    28 | Remember this has no effect if %URI.Munge is not on. 29 |

    30 | -------------------------------------------------------------------------------- /assets/56baf066/yiitab/jquery.yiitab.css: -------------------------------------------------------------------------------- 1 | .yiiTab ul.tabs 2 | { 3 | padding: 2px 0; 4 | margin: 0; 5 | border-bottom: 1px solid #4F81BD; 6 | font: bold 12px Verdana, sans-serif; 7 | } 8 | 9 | .yiiTab ul.tabs li 10 | { 11 | list-style: none; 12 | margin: 0; 13 | display: inline; 14 | } 15 | 16 | .yiiTab ul.tabs a 17 | { 18 | -moz-border-radius-topleft:5px; 19 | -moz-border-radius-topright:5px; 20 | padding: 2px 0.5em; 21 | margin: 0 0 0 3px; 22 | border: 1px solid #4F81BD; 23 | border-bottom: none; 24 | background: #d3dfee; 25 | text-decoration: none; 26 | } 27 | 28 | .yiiTab ul.tabs a:link 29 | { 30 | color: #667; 31 | } 32 | 33 | .yiiTab ul.tabs a:visited 34 | { 35 | color: #667; 36 | } 37 | 38 | .yiiTab ul.tabs a:hover 39 | { 40 | color: #000; 41 | background: #E6F2FF; 42 | border-color: #227; 43 | } 44 | 45 | .yiiTab ul.tabs a.active 46 | { 47 | background: white; 48 | border-bottom: 1px solid white; 49 | } 50 | 51 | .yiiTab div.view 52 | { 53 | border-left: 1px solid #4F81BD; 54 | border-right: 1px solid #4F81BD; 55 | border-bottom: 1px solid #4F81BD; 56 | padding: 8px; 57 | margin: 0; 58 | } -------------------------------------------------------------------------------- /lib/yii/vendors/jquery/treeview/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2008 Jörn Zaefferer 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /lib/yii/cli/views/webapp/protected/models/ContactForm.php: -------------------------------------------------------------------------------- 1 | !extension_loaded('gd')), 28 | ); 29 | } 30 | 31 | /** 32 | * Declares customized attribute labels. 33 | * If not declared here, an attribute would have a label that is 34 | * the same as its name with the first letter in upper case. 35 | */ 36 | public function attributeLabels() 37 | { 38 | return array( 39 | 'verifyCode'=>'Verification Code', 40 | ); 41 | } 42 | } -------------------------------------------------------------------------------- /lib/yii/vendors/jquery/autocomplete/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2008 Jörn Zaefferer 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /lib/yii/vendors/jquery/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2008 John Resig, http://jquery.com/ 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /lib/yii/web/js/source/yiitab/jquery.yiitab.css: -------------------------------------------------------------------------------- 1 | .yiiTab ul.tabs 2 | { 3 | padding: 2px 0; 4 | margin: 0; 5 | border-bottom: 1px solid #4F81BD; 6 | font: bold 12px Verdana, sans-serif; 7 | } 8 | 9 | .yiiTab ul.tabs li 10 | { 11 | list-style: none; 12 | margin: 0; 13 | display: inline; 14 | } 15 | 16 | .yiiTab ul.tabs a 17 | { 18 | -moz-border-radius-topleft:5px; 19 | -moz-border-radius-topright:5px; 20 | padding: 2px 0.5em; 21 | margin: 0 0 0 3px; 22 | border: 1px solid #4F81BD; 23 | border-bottom: none; 24 | background: #d3dfee; 25 | text-decoration: none; 26 | } 27 | 28 | .yiiTab ul.tabs a:link 29 | { 30 | color: #667; 31 | } 32 | 33 | .yiiTab ul.tabs a:visited 34 | { 35 | color: #667; 36 | } 37 | 38 | .yiiTab ul.tabs a:hover 39 | { 40 | color: #000; 41 | background: #E6F2FF; 42 | border-color: #227; 43 | } 44 | 45 | .yiiTab ul.tabs a.active 46 | { 47 | background: white; 48 | border-bottom: 1px solid white; 49 | } 50 | 51 | .yiiTab div.view 52 | { 53 | border-left: 1px solid #4F81BD; 54 | border-right: 1px solid #4F81BD; 55 | border-bottom: 1px solid #4F81BD; 56 | padding: 8px; 57 | margin: 0; 58 | } -------------------------------------------------------------------------------- /lib/yii/views/error503.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Service Unavailable 8 | 18 | 19 | 20 |

    Service Unavailable

    21 |

    22 | Our system is currently under maintenance. Please come back later. 23 |

    24 |

    25 | Thank you. 26 |

    27 |
    28 | 29 |
    30 | 31 | -------------------------------------------------------------------------------- /lib/yii/vendors/TextHighlighter/Text/html.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /lib/yii/vendors/jquery/maskedinput/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2007 Josh Bush (digitalbush.com) 2 | 3 | Permission is hereby granted, free of charge, to any person 4 | obtaining a copy of this software and associated documentation 5 | files (the “Software”), to deal in the Software without 6 | restriction, including without limitation the rights to use, 7 | copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the 9 | Software is furnished to do so, subject to the following 10 | conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 17 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 19 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 20 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /lib/yii/views/id/error503.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Layanan Tidak Tersedia 8 | 18 | 19 | 20 |

    Layanan Tidak Tersedia

    21 |

    22 | Sistem kami saat ini dalam pemeliharaan. Silahkan kembali lagi nanti. 23 |

    24 |

    25 | Terima kasih. 26 |

    27 |
    28 | 29 |
    30 | 31 | -------------------------------------------------------------------------------- /lib/yii/views/es/error503.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Servicio No Disponible 8 | 18 | 19 | 20 |

    Servicio No Disponible

    21 |

    22 | Nuestro sistema está actualmente en mantenimiento. Por favor regrese más tarde. 23 |

    24 |

    25 | Gracias. 26 |

    27 |
    28 | 29 |
    30 | 31 | -------------------------------------------------------------------------------- /lib/yii/views/pt/error503.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Serviço Indisponível 8 | 18 | 19 | 20 |

    Serviço Indisponível

    21 |

    22 | Atualmente, nosso sistema encontra-se em manuntenção. Por favor, tente mais tarde. 23 |

    24 |

    25 | Obrigado. 26 |

    27 |
    28 | 29 |
    30 | 31 | -------------------------------------------------------------------------------- /lib/yii/views/he/error503.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | לא פעיל 8 | 19 | 20 | 21 |

    השירות לא פעיל כרגע

    22 |

    23 | המערכת שלנו עוברת תהליך שדרוג. אנא נסה שוב מאוחר יותר. 24 |

    25 |

    26 | תודה. 27 |

    28 |
    29 | 30 |
    31 | 32 | -------------------------------------------------------------------------------- /lib/yii/views/sv/error503.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Tjänsten ej tillgänglig 8 | 18 | 19 | 20 |

    Tjänsten ej tillgänglig

    21 |

    22 | Vårt system är för närvarande stängt pga underhåll. Vänligen kom tillbaka senare. 23 |

    24 |

    25 | Tack. 26 |

    27 |
    28 | 29 |
    30 | 31 | -------------------------------------------------------------------------------- /lib/yii/views/de/error503.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Dienst nicht verfügbar 8 | 18 | 19 | 20 |

    Dienst nicht verfügbar

    21 |

    22 | Unser System wird derzeit gewartet. Bitte versuchen Sie es später noch einmal. 23 |

    24 |

    25 | Vielen Dank. 26 |

    27 |
    28 | 29 |
    30 | 31 | 32 | -------------------------------------------------------------------------------- /lib/yii/views/no/error503.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Tjenesten er utilgjengelig 8 | 18 | 19 | 20 |

    Tjenesten er utilgjengelig

    21 |

    22 | Serveren er utilgjengelig for øyeblikket grunnet vedlikehold. Vennligst prøv senere. 23 |

    24 |

    25 | Takk! 26 |

    27 |
    28 | 29 |
    30 | 31 | -------------------------------------------------------------------------------- /lib/yii/views/ru/error503.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Служба временно недоступна 8 | 18 | 19 | 20 |

    Служба временно недоступна

    21 |

    22 | В настоящий момент производится техническое обслуживание системы. Возвращайтесь позже. 23 |

    24 |

    25 | Спасибо. 26 |

    27 |
    28 | 29 |
    30 | 31 | -------------------------------------------------------------------------------- /lib/yii/views/zh_cn/error403.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 未被授权 8 | 18 | 19 | 20 |

    未被授权

    21 |

    22 |

    23 | 你没有访问此页面的授权. 24 |

    25 |

    26 | 如果您认为此错误是服务器造成的,请与管理员联系 . 27 |

    28 |
    29 | 30 |
    31 | 32 | -------------------------------------------------------------------------------- /lib/yii/views/bg/error503.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Услугата е недостъпна 8 | 18 | 19 | 20 |

    Услугата е недостъпна

    21 |

    22 | В момента системата се подобрява или се отстранява проблем в нея. Моля, опитайте по-късно.

    23 |

    24 | Благодарим ви. 25 |

    26 |
    27 | 28 |
    29 | 30 | 31 | -------------------------------------------------------------------------------- /lib/yii/views/ro/error503.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Service indisponibil 8 | 18 | 19 | 20 |

    Service indisponibil

    21 |

    22 | Sistemul nostru este deocamdata intr-o perioada de mentenanta. Va rugam sa reveniti mai tarziu. 23 |

    24 |

    25 | Va multumim. 26 |

    27 |
    28 | 29 |
    30 | 31 | -------------------------------------------------------------------------------- /lib/yii/views/zh_tw/error403.php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | Unauthorized 8 | 18 | 19 | 20 |

    未被授權

    21 |

    22 |

    23 | 您沒有存取此頁面的適當憑據. 24 |

    25 |

    26 | 如果您認為是伺服器錯誤所造成, 請聯絡. 27 |

    28 |
    29 | 30 |
    31 | 32 | -------------------------------------------------------------------------------- /lib/yii/base/CModelEvent.php: -------------------------------------------------------------------------------- 1 | 6 | * @link http://www.yiiframework.com/ 7 | * @copyright Copyright © 2008-2009 Yii Software LLC 8 | * @license http://www.yiiframework.com/license/ 9 | */ 10 | 11 | 12 | /** 13 | * CModelEvent class. 14 | * 15 | * CModelEvent represents the event parameters needed by events raised by a model. 16 | * 17 | * @author Qiang Xue 18 | * @version $Id: CModelEvent.php 1185 2009-06-28 13:06:00Z qiang.xue $ 19 | * @package system.base 20 | * @since 1.0 21 | */ 22 | class CModelEvent extends CEvent 23 | { 24 | /** 25 | * @var boolean whether the model is in valid status and should continue its normal method execution cycles. Defaults to true. 26 | * For example, when this event is raised in a {@link CFormModel} object when executing {@link CModel::beforeValidate}, 27 | * if this property is false by the event handler, the {@link CModel::validate} method will quit after handling this event. 28 | * If true, the normal execution cycles will continue, including performing the real validations and calling 29 | * {@link CModel::afterValidate}. 30 | */ 31 | public $isValid=true; 32 | } 33 | --------------------------------------------------------------------------------