gitextract_zm9qj3qj/ ├── .gitignore ├── .htaccess ├── Makefile ├── VERSION ├── config/ │ ├── config.php │ ├── filter.php │ └── my.example.php ├── db/ │ └── blog.sql ├── framework/ │ ├── base/ │ │ ├── control.class.php │ │ ├── helper.class.php │ │ ├── model.class.php │ │ └── router.class.php │ ├── control.class.php │ ├── helper.class.php │ ├── model.class.php │ ├── router.class.php │ └── tests/ │ └── helper/ │ ├── .case001.expect │ ├── .case002.expect │ ├── .case003.expect │ ├── .case004.expect │ ├── case001.php │ ├── case002.php │ ├── case003.php │ ├── case004.php │ ├── import1.php │ └── import2.php ├── index.php ├── js/ │ └── my.js ├── lib/ │ ├── base/ │ │ ├── dao/ │ │ │ └── dao.class.php │ │ ├── filter/ │ │ │ └── filter.class.php │ │ ├── front/ │ │ │ └── front.class.php │ │ └── pager/ │ │ └── pager.class.php │ ├── dao/ │ │ └── dao.class.php │ ├── filter/ │ │ └── filter.class.php │ ├── front/ │ │ └── front.class.php │ ├── mobile/ │ │ └── mobile.class.php │ ├── pager/ │ │ └── pager.class.php │ └── purifier/ │ ├── purifier.class.php │ └── standalone/ │ └── HTMLPurifier/ │ ├── ConfigSchema/ │ │ ├── Builder/ │ │ │ ├── ConfigSchema.php │ │ │ └── Xml.php │ │ ├── Exception.php │ │ ├── Interchange/ │ │ │ ├── Directive.php │ │ │ └── Id.php │ │ ├── Interchange.php │ │ ├── InterchangeBuilder.php │ │ ├── Validator.php │ │ ├── ValidatorAtom.php │ │ ├── schema/ │ │ │ ├── Attr.AllowedClasses.txt │ │ │ ├── Attr.AllowedFrameTargets.txt │ │ │ ├── Attr.AllowedRel.txt │ │ │ ├── Attr.AllowedRev.txt │ │ │ ├── Attr.ClassUseCDATA.txt │ │ │ ├── Attr.DefaultImageAlt.txt │ │ │ ├── Attr.DefaultInvalidImage.txt │ │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ │ ├── Attr.DefaultTextDir.txt │ │ │ ├── Attr.EnableID.txt │ │ │ ├── Attr.ForbiddenClasses.txt │ │ │ ├── Attr.IDBlacklist.txt │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ ├── Attr.IDPrefix.txt │ │ │ ├── Attr.IDPrefixLocal.txt │ │ │ ├── AutoFormat.AutoParagraph.txt │ │ │ ├── AutoFormat.Custom.txt │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ ├── AutoFormat.Linkify.txt │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt │ │ │ ├── AutoFormat.RemoveEmpty.txt │ │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt │ │ │ ├── CSS.AllowImportant.txt │ │ │ ├── CSS.AllowTricky.txt │ │ │ ├── CSS.AllowedFonts.txt │ │ │ ├── CSS.AllowedProperties.txt │ │ │ ├── CSS.DefinitionRev.txt │ │ │ ├── CSS.ForbiddenProperties.txt │ │ │ ├── CSS.MaxImgLength.txt │ │ │ ├── CSS.Proprietary.txt │ │ │ ├── CSS.Trusted.txt │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ ├── Cache.SerializerPath.txt │ │ │ ├── Cache.SerializerPermissions.txt │ │ │ ├── Core.AggressivelyFixLt.txt │ │ │ ├── Core.AllowHostnameUnderscore.txt │ │ │ ├── Core.CollectErrors.txt │ │ │ ├── Core.ColorKeywords.txt │ │ │ ├── Core.ConvertDocumentToFragment.txt │ │ │ ├── Core.DirectLexLineNumberSyncInterval.txt │ │ │ ├── Core.DisableExcludes.txt │ │ │ ├── Core.EnableIDNA.txt │ │ │ ├── Core.Encoding.txt │ │ │ ├── Core.EscapeInvalidChildren.txt │ │ │ ├── Core.EscapeInvalidTags.txt │ │ │ ├── Core.EscapeNonASCIICharacters.txt │ │ │ ├── Core.HiddenElements.txt │ │ │ ├── Core.Language.txt │ │ │ ├── Core.LexerImpl.txt │ │ │ ├── Core.MaintainLineNumbers.txt │ │ │ ├── Core.NormalizeNewlines.txt │ │ │ ├── Core.RemoveInvalidImg.txt │ │ │ ├── Core.RemoveProcessingInstructions.txt │ │ │ ├── Core.RemoveScriptContents.txt │ │ │ ├── Filter.Custom.txt │ │ │ ├── Filter.ExtractStyleBlocks.Escaping.txt │ │ │ ├── Filter.ExtractStyleBlocks.Scope.txt │ │ │ ├── Filter.ExtractStyleBlocks.TidyImpl.txt │ │ │ ├── Filter.ExtractStyleBlocks.txt │ │ │ ├── Filter.YouTube.txt │ │ │ ├── HTML.Allowed.txt │ │ │ ├── HTML.AllowedAttributes.txt │ │ │ ├── HTML.AllowedComments.txt │ │ │ ├── HTML.AllowedCommentsRegexp.txt │ │ │ ├── HTML.AllowedElements.txt │ │ │ ├── HTML.AllowedModules.txt │ │ │ ├── HTML.Attr.Name.UseCDATA.txt │ │ │ ├── HTML.BlockWrapper.txt │ │ │ ├── HTML.CoreModules.txt │ │ │ ├── HTML.CustomDoctype.txt │ │ │ ├── HTML.DefinitionID.txt │ │ │ ├── HTML.DefinitionRev.txt │ │ │ ├── HTML.Doctype.txt │ │ │ ├── HTML.FlashAllowFullScreen.txt │ │ │ ├── HTML.ForbiddenAttributes.txt │ │ │ ├── HTML.ForbiddenElements.txt │ │ │ ├── HTML.MaxImgLength.txt │ │ │ ├── HTML.Nofollow.txt │ │ │ ├── HTML.Parent.txt │ │ │ ├── HTML.Proprietary.txt │ │ │ ├── HTML.SafeEmbed.txt │ │ │ ├── HTML.SafeIframe.txt │ │ │ ├── HTML.SafeObject.txt │ │ │ ├── HTML.SafeScripting.txt │ │ │ ├── HTML.Strict.txt │ │ │ ├── HTML.TargetBlank.txt │ │ │ ├── HTML.TidyAdd.txt │ │ │ ├── HTML.TidyLevel.txt │ │ │ ├── HTML.TidyRemove.txt │ │ │ ├── HTML.Trusted.txt │ │ │ ├── HTML.XHTML.txt │ │ │ ├── Output.CommentScriptContents.txt │ │ │ ├── Output.FixInnerHTML.txt │ │ │ ├── Output.FlashCompat.txt │ │ │ ├── Output.Newline.txt │ │ │ ├── Output.SortAttr.txt │ │ │ ├── Output.TidyFormat.txt │ │ │ ├── Test.ForceNoIconv.txt │ │ │ ├── URI.AllowedSchemes.txt │ │ │ ├── URI.Base.txt │ │ │ ├── URI.DefaultScheme.txt │ │ │ ├── URI.DefinitionID.txt │ │ │ ├── URI.DefinitionRev.txt │ │ │ ├── URI.Disable.txt │ │ │ ├── URI.DisableExternal.txt │ │ │ ├── URI.DisableExternalResources.txt │ │ │ ├── URI.DisableResources.txt │ │ │ ├── URI.Host.txt │ │ │ ├── URI.HostBlacklist.txt │ │ │ ├── URI.MakeAbsolute.txt │ │ │ ├── URI.Munge.txt │ │ │ ├── URI.MungeResources.txt │ │ │ ├── URI.MungeSecretKey.txt │ │ │ ├── URI.OverrideAllowedSchemes.txt │ │ │ ├── URI.SafeIframeRegexp.txt │ │ │ └── info.ini │ │ └── schema.ser │ ├── EntityLookup/ │ │ └── entities.ser │ ├── Filter/ │ │ ├── ExtractStyleBlocks.php │ │ └── YouTube.php │ ├── Language/ │ │ ├── classes/ │ │ │ └── en-x-test.php │ │ └── messages/ │ │ ├── en-x-test.php │ │ ├── en-x-testmini.php │ │ └── en.php │ ├── Lexer/ │ │ └── PH5P.php │ ├── Printer/ │ │ ├── CSSDefinition.php │ │ ├── ConfigForm.css │ │ ├── ConfigForm.js │ │ ├── ConfigForm.php │ │ └── HTMLDefinition.php │ └── Printer.php ├── module/ │ ├── blog/ │ │ ├── control.php │ │ ├── css/ │ │ │ └── common.css │ │ ├── lang/ │ │ │ ├── en.php │ │ │ └── zh-cn.php │ │ ├── model.php │ │ └── view/ │ │ ├── create.html.php │ │ ├── edit.html.php │ │ ├── index.html.php │ │ └── view.html.php │ ├── common/ │ │ ├── lang/ │ │ │ ├── en.php │ │ │ └── zh-cn.php │ │ ├── model.php │ │ └── view/ │ │ ├── footer.html.php │ │ ├── header.html.php │ │ └── nav.html.php │ ├── file/ │ │ ├── config.php │ │ ├── control.php │ │ ├── lang/ │ │ │ ├── en.php │ │ │ ├── zh-cn.php │ │ │ └── zh-tw.php │ │ └── model.php │ └── index/ │ ├── control.php │ ├── css/ │ │ └── index.css │ ├── js/ │ │ └── index.js │ ├── lang/ │ │ ├── en.php │ │ └── zh-cn.php │ └── view/ │ └── index.html.php ├── theme/ │ └── my.css └── tools/ ├── build/ │ ├── debian/ │ │ ├── README.Debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── dirs │ │ ├── docs │ │ ├── files │ │ ├── postinst.ex │ │ ├── postrm.ex │ │ ├── preinst.ex │ │ ├── prerm.ex │ │ ├── rules │ │ └── watch.ex │ └── pear/ │ └── package.xml ├── chanzhi/ │ ├── control.class.php │ ├── helper.class.php │ ├── myrouter.class.php │ └── process.php ├── ranzhi/ │ ├── helper.class.php │ ├── myrouter.class.php │ └── process.php └── zentao/ ├── front.class.php ├── myrouter.class.php └── process.php