├── .github ├── FUNDING.yml └── workflows │ └── codesee-arch-diagram.yml ├── LICENSE ├── README.txt ├── autoload.php ├── config.php ├── custom ├── format.json ├── genre.json ├── theme.json ├── upload_langs.json └── warnings.json ├── funky.php ├── library ├── langs │ └── en.php ├── plugins │ ├── daisyTheme.php │ ├── getRel.php │ ├── keep.txt │ ├── logoImage.php │ ├── readChapters.php │ ├── readingMode.php │ ├── simpleAlert.php │ ├── started.php │ └── userLangs.php ├── secrets │ ├── README.txt │ └── started.txt └── themes │ └── nucleus │ ├── info.php │ ├── pages │ ├── chapter.tpl │ ├── index.tpl │ ├── releases.tpl │ ├── title.tpl │ └── titles.tpl │ └── parts │ ├── alert.tpl │ ├── footer.tpl │ ├── header.tpl │ └── menu.tpl ├── public ├── .htaccess ├── activate.php ├── ajax │ ├── account │ │ ├── login.php │ │ ├── logout.php │ │ ├── settings.php │ │ ├── signup.php │ │ └── updateLang.php │ ├── alerts │ │ └── dismiss.php │ ├── chapters │ │ ├── add.php │ │ ├── edit.php │ │ └── read.php │ ├── images │ │ └── tmp.php │ └── titles │ │ ├── add.php │ │ └── edit.php ├── api.php ├── assets │ ├── favicon │ │ ├── about.txt │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ └── site.webmanifest │ ├── js.cookie.js │ ├── miku_cursor │ │ ├── CREDITS.txt │ │ ├── busy.png │ │ ├── diagonal-1.png │ │ ├── diagonal-2.png │ │ ├── handwriting.png │ │ ├── help.png │ │ ├── link.png │ │ ├── move.png │ │ ├── pos-select.png │ │ ├── resize-h.png │ │ ├── resize-v.png │ │ ├── select-alt.png │ │ ├── select-alt2.png │ │ ├── select.png │ │ ├── text.png │ │ ├── unavailable.png │ │ └── working.png │ ├── nucleus │ │ ├── autotheme.js │ │ ├── carousel.js │ │ ├── logo.png │ │ ├── tabs.js │ │ └── tags.js │ ├── other │ │ ├── kofi_button_blue.png │ │ ├── kofi_s_tag_white.png │ │ └── paypal-donate-button.png │ └── page.js ├── chapter.php ├── index.php ├── install.php ├── releases.php ├── title.php └── titles.php ├── session.php ├── software ├── HTMLPurifier │ ├── CREDITS │ ├── HTMLPurifier.auto.php │ ├── HTMLPurifier.autoload-legacy.php │ ├── HTMLPurifier.autoload.php │ ├── HTMLPurifier.composer.php │ ├── HTMLPurifier.func.php │ ├── HTMLPurifier.includes.php │ ├── HTMLPurifier.kses.php │ ├── HTMLPurifier.path.php │ ├── HTMLPurifier.php │ ├── HTMLPurifier.safe-includes.php │ ├── HTMLPurifier │ │ ├── Arborize.php │ │ ├── AttrCollections.php │ │ ├── AttrDef.php │ │ ├── AttrDef │ │ │ ├── CSS.php │ │ │ ├── CSS │ │ │ │ ├── AlphaValue.php │ │ │ │ ├── Background.php │ │ │ │ ├── BackgroundPosition.php │ │ │ │ ├── Border.php │ │ │ │ ├── Color.php │ │ │ │ ├── Composite.php │ │ │ │ ├── DenyElementDecorator.php │ │ │ │ ├── Filter.php │ │ │ │ ├── Font.php │ │ │ │ ├── FontFamily.php │ │ │ │ ├── Ident.php │ │ │ │ ├── ImportantDecorator.php │ │ │ │ ├── Length.php │ │ │ │ ├── ListStyle.php │ │ │ │ ├── Multiple.php │ │ │ │ ├── Number.php │ │ │ │ ├── Percentage.php │ │ │ │ ├── TextDecoration.php │ │ │ │ └── URI.php │ │ │ ├── Clone.php │ │ │ ├── Enum.php │ │ │ ├── HTML │ │ │ │ ├── Bool.php │ │ │ │ ├── Class.php │ │ │ │ ├── Color.php │ │ │ │ ├── ContentEditable.php │ │ │ │ ├── FrameTarget.php │ │ │ │ ├── ID.php │ │ │ │ ├── Length.php │ │ │ │ ├── LinkTypes.php │ │ │ │ ├── MultiLength.php │ │ │ │ ├── Nmtokens.php │ │ │ │ └── Pixels.php │ │ │ ├── Integer.php │ │ │ ├── Lang.php │ │ │ ├── Switch.php │ │ │ ├── Text.php │ │ │ ├── URI.php │ │ │ └── URI │ │ │ │ ├── Email.php │ │ │ │ ├── Email │ │ │ │ └── SimpleCheck.php │ │ │ │ ├── Host.php │ │ │ │ ├── IPv4.php │ │ │ │ └── IPv6.php │ │ ├── AttrTransform.php │ │ ├── AttrTransform │ │ │ ├── Background.php │ │ │ ├── BdoDir.php │ │ │ ├── BgColor.php │ │ │ ├── BoolToCSS.php │ │ │ ├── Border.php │ │ │ ├── EnumToCSS.php │ │ │ ├── ImgRequired.php │ │ │ ├── ImgSpace.php │ │ │ ├── Input.php │ │ │ ├── Lang.php │ │ │ ├── Length.php │ │ │ ├── Name.php │ │ │ ├── NameSync.php │ │ │ ├── Nofollow.php │ │ │ ├── SafeEmbed.php │ │ │ ├── SafeObject.php │ │ │ ├── SafeParam.php │ │ │ ├── ScriptRequired.php │ │ │ ├── TargetBlank.php │ │ │ ├── TargetNoopener.php │ │ │ ├── TargetNoreferrer.php │ │ │ └── Textarea.php │ │ ├── AttrTypes.php │ │ ├── AttrValidator.php │ │ ├── Bootstrap.php │ │ ├── CSSDefinition.php │ │ ├── ChildDef.php │ │ ├── ChildDef │ │ │ ├── Chameleon.php │ │ │ ├── Custom.php │ │ │ ├── Empty.php │ │ │ ├── List.php │ │ │ ├── Optional.php │ │ │ ├── Required.php │ │ │ ├── StrictBlockquote.php │ │ │ └── Table.php │ │ ├── Config.php │ │ ├── ConfigSchema.php │ │ ├── ConfigSchema │ │ │ ├── Builder │ │ │ │ ├── ConfigSchema.php │ │ │ │ └── Xml.php │ │ │ ├── Exception.php │ │ │ ├── Interchange.php │ │ │ ├── Interchange │ │ │ │ ├── Directive.php │ │ │ │ └── Id.php │ │ │ ├── InterchangeBuilder.php │ │ │ ├── Validator.php │ │ │ ├── ValidatorAtom.php │ │ │ ├── schema.ser │ │ │ └── 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.ID.HTML5.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.Predicate.txt │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt │ │ │ │ ├── AutoFormat.RemoveEmpty.txt │ │ │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt │ │ │ │ ├── CSS.AllowDuplicates.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.AggressivelyRemoveScript.txt │ │ │ │ ├── Core.AllowHostnameUnderscore.txt │ │ │ │ ├── Core.AllowParseManyTags.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.LegacyEntityDecoder.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.Forms.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.TargetNoopener.txt │ │ │ │ ├── HTML.TargetNoreferrer.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 │ │ ├── ContentSets.php │ │ ├── Context.php │ │ ├── Definition.php │ │ ├── DefinitionCache.php │ │ ├── DefinitionCache │ │ │ ├── Decorator.php │ │ │ ├── Decorator │ │ │ │ ├── Cleanup.php │ │ │ │ ├── Memory.php │ │ │ │ └── Template.php.in │ │ │ ├── Null.php │ │ │ ├── Serializer.php │ │ │ └── Serializer │ │ │ │ ├── HTML │ │ │ │ └── 4.15.0,f474c0a322b208e83d22d3aef33ecb184bc71d31,1.ser │ │ │ │ └── README │ │ ├── DefinitionCacheFactory.php │ │ ├── Doctype.php │ │ ├── DoctypeRegistry.php │ │ ├── ElementDef.php │ │ ├── Encoder.php │ │ ├── EntityLookup.php │ │ ├── EntityLookup │ │ │ └── entities.ser │ │ ├── EntityParser.php │ │ ├── ErrorCollector.php │ │ ├── ErrorStruct.php │ │ ├── Exception.php │ │ ├── Filter.php │ │ ├── Filter │ │ │ ├── ExtractStyleBlocks.php │ │ │ └── YouTube.php │ │ ├── Generator.php │ │ ├── HTMLDefinition.php │ │ ├── HTMLModule.php │ │ ├── HTMLModule │ │ │ ├── Bdo.php │ │ │ ├── CommonAttributes.php │ │ │ ├── Edit.php │ │ │ ├── Forms.php │ │ │ ├── Hypertext.php │ │ │ ├── Iframe.php │ │ │ ├── Image.php │ │ │ ├── Legacy.php │ │ │ ├── List.php │ │ │ ├── Name.php │ │ │ ├── Nofollow.php │ │ │ ├── NonXMLCommonAttributes.php │ │ │ ├── Object.php │ │ │ ├── Presentation.php │ │ │ ├── Proprietary.php │ │ │ ├── Ruby.php │ │ │ ├── SafeEmbed.php │ │ │ ├── SafeObject.php │ │ │ ├── SafeScripting.php │ │ │ ├── Scripting.php │ │ │ ├── StyleAttribute.php │ │ │ ├── Tables.php │ │ │ ├── Target.php │ │ │ ├── TargetBlank.php │ │ │ ├── TargetNoopener.php │ │ │ ├── TargetNoreferrer.php │ │ │ ├── Text.php │ │ │ ├── Tidy.php │ │ │ ├── Tidy │ │ │ │ ├── Name.php │ │ │ │ ├── Proprietary.php │ │ │ │ ├── Strict.php │ │ │ │ ├── Transitional.php │ │ │ │ ├── XHTML.php │ │ │ │ └── XHTMLAndHTML4.php │ │ │ └── XMLCommonAttributes.php │ │ ├── HTMLModuleManager.php │ │ ├── IDAccumulator.php │ │ ├── Injector.php │ │ ├── Injector │ │ │ ├── AutoParagraph.php │ │ │ ├── DisplayLinkURI.php │ │ │ ├── Linkify.php │ │ │ ├── PurifierLinkify.php │ │ │ ├── RemoveEmpty.php │ │ │ ├── RemoveSpansWithoutAttributes.php │ │ │ └── SafeObject.php │ │ ├── Language.php │ │ ├── Language │ │ │ └── messages │ │ │ │ └── en.php │ │ ├── LanguageFactory.php │ │ ├── Length.php │ │ ├── Lexer.php │ │ ├── Lexer │ │ │ ├── DOMLex.php │ │ │ ├── DirectLex.php │ │ │ └── PH5P.php │ │ ├── Node.php │ │ ├── Node │ │ │ ├── Comment.php │ │ │ ├── Element.php │ │ │ └── Text.php │ │ ├── PercentEncoder.php │ │ ├── Printer.php │ │ ├── Printer │ │ │ ├── CSSDefinition.php │ │ │ ├── ConfigForm.css │ │ │ ├── ConfigForm.js │ │ │ ├── ConfigForm.php │ │ │ └── HTMLDefinition.php │ │ ├── PropertyList.php │ │ ├── PropertyListIterator.php │ │ ├── Queue.php │ │ ├── Strategy.php │ │ ├── Strategy │ │ │ ├── Composite.php │ │ │ ├── Core.php │ │ │ ├── FixNesting.php │ │ │ ├── MakeWellFormed.php │ │ │ ├── RemoveForeignElements.php │ │ │ └── ValidateAttributes.php │ │ ├── StringHash.php │ │ ├── StringHashParser.php │ │ ├── TagTransform.php │ │ ├── TagTransform │ │ │ ├── Font.php │ │ │ └── Simple.php │ │ ├── Token.php │ │ ├── Token │ │ │ ├── Comment.php │ │ │ ├── Empty.php │ │ │ ├── End.php │ │ │ ├── Start.php │ │ │ ├── Tag.php │ │ │ └── Text.php │ │ ├── TokenFactory.php │ │ ├── URI.php │ │ ├── URIDefinition.php │ │ ├── URIFilter.php │ │ ├── URIFilter │ │ │ ├── DisableExternal.php │ │ │ ├── DisableExternalResources.php │ │ │ ├── DisableResources.php │ │ │ ├── HostBlacklist.php │ │ │ ├── MakeAbsolute.php │ │ │ ├── Munge.php │ │ │ └── SafeIframe.php │ │ ├── URIParser.php │ │ ├── URIScheme.php │ │ ├── URIScheme │ │ │ ├── data.php │ │ │ ├── file.php │ │ │ ├── ftp.php │ │ │ ├── http.php │ │ │ ├── https.php │ │ │ ├── mailto.php │ │ │ ├── news.php │ │ │ ├── nntp.php │ │ │ └── tel.php │ │ ├── URISchemeRegistry.php │ │ ├── UnitConverter.php │ │ ├── VarParser.php │ │ ├── VarParser │ │ │ ├── Flexible.php │ │ │ └── Native.php │ │ ├── VarParserException.php │ │ └── Zipper.php │ └── LICENSE ├── PARSEDOWN LICENSE.txt ├── PHPMailer │ ├── DSNConfigurator.php │ ├── Exception.php │ ├── LICENSE │ ├── OAuth.php │ ├── OAuthTokenProvider.php │ ├── PHPMailer.php │ ├── POP3.php │ ├── SMTP.php │ └── VERSION ├── Parsedown.php ├── SleekDB │ ├── Cache.php │ ├── Classes │ │ ├── CacheHandler.php │ │ ├── ConditionsHandler.php │ │ ├── DocumentFinder.php │ │ ├── DocumentReducer.php │ │ ├── DocumentUpdater.php │ │ ├── IoHelper.php │ │ └── NestedHelper.php │ ├── Exceptions │ │ ├── IOException.php │ │ ├── IdNotAllowedException.php │ │ ├── InvalidArgumentException.php │ │ ├── InvalidConfigurationException.php │ │ ├── InvalidPropertyAccessException.php │ │ └── JsonException.php │ ├── LICENSE │ ├── Query.php │ ├── QueryBuilder.php │ ├── SleekDB.php │ └── Store.php └── Smarty │ ├── Autoloader.php │ ├── LICENSE │ ├── Smarty.class.php │ ├── bootstrap.php │ ├── cache │ └── keep.txt │ ├── compile │ └── keep.txt │ ├── config │ └── keep.txt │ ├── debug.tpl │ ├── functions.php │ ├── plugins │ ├── block.textformat.php │ ├── function.counter.php │ ├── function.cycle.php │ ├── function.fetch.php │ ├── function.html_checkboxes.php │ ├── function.html_image.php │ ├── function.html_options.php │ ├── function.html_radios.php │ ├── function.html_select_date.php │ ├── function.html_select_time.php │ ├── function.html_table.php │ ├── function.mailto.php │ ├── function.math.php │ ├── modifier.capitalize.php │ ├── modifier.count.php │ ├── modifier.date_format.php │ ├── modifier.debug_print_var.php │ ├── modifier.escape.php │ ├── modifier.explode.php │ ├── modifier.mb_wordwrap.php │ ├── modifier.number_format.php │ ├── modifier.regex_replace.php │ ├── modifier.replace.php │ ├── modifier.spacify.php │ ├── modifier.truncate.php │ ├── modifiercompiler.cat.php │ ├── modifiercompiler.count_characters.php │ ├── modifiercompiler.count_paragraphs.php │ ├── modifiercompiler.count_sentences.php │ ├── modifiercompiler.count_words.php │ ├── modifiercompiler.default.php │ ├── modifiercompiler.escape.php │ ├── modifiercompiler.from_charset.php │ ├── modifiercompiler.indent.php │ ├── modifiercompiler.lower.php │ ├── modifiercompiler.nl2br.php │ ├── modifiercompiler.noprint.php │ ├── modifiercompiler.round.php │ ├── modifiercompiler.str_repeat.php │ ├── modifiercompiler.string_format.php │ ├── modifiercompiler.strip.php │ ├── modifiercompiler.strip_tags.php │ ├── modifiercompiler.strlen.php │ ├── modifiercompiler.to_charset.php │ ├── modifiercompiler.unescape.php │ ├── modifiercompiler.upper.php │ ├── modifiercompiler.wordwrap.php │ ├── outputfilter.trimwhitespace.php │ ├── shared.escape_special_chars.php │ ├── shared.literal_compiler_param.php │ ├── shared.make_timestamp.php │ ├── shared.mb_str_replace.php │ ├── shared.mb_unicode.php │ └── variablefilter.htmlspecialchars.php │ └── sysplugins │ ├── smarty_cacheresource.php │ ├── smarty_cacheresource_custom.php │ ├── smarty_cacheresource_keyvaluestore.php │ ├── smarty_data.php │ ├── smarty_internal_block.php │ ├── smarty_internal_cacheresource_file.php │ ├── smarty_internal_compile_append.php │ ├── smarty_internal_compile_assign.php │ ├── smarty_internal_compile_block.php │ ├── smarty_internal_compile_block_child.php │ ├── smarty_internal_compile_block_parent.php │ ├── smarty_internal_compile_break.php │ ├── smarty_internal_compile_call.php │ ├── smarty_internal_compile_capture.php │ ├── smarty_internal_compile_child.php │ ├── smarty_internal_compile_config_load.php │ ├── smarty_internal_compile_continue.php │ ├── smarty_internal_compile_debug.php │ ├── smarty_internal_compile_eval.php │ ├── smarty_internal_compile_extends.php │ ├── smarty_internal_compile_for.php │ ├── smarty_internal_compile_foreach.php │ ├── smarty_internal_compile_function.php │ ├── smarty_internal_compile_if.php │ ├── smarty_internal_compile_include.php │ ├── smarty_internal_compile_insert.php │ ├── smarty_internal_compile_ldelim.php │ ├── smarty_internal_compile_make_nocache.php │ ├── smarty_internal_compile_nocache.php │ ├── smarty_internal_compile_parent.php │ ├── smarty_internal_compile_private_block_plugin.php │ ├── smarty_internal_compile_private_foreachsection.php │ ├── smarty_internal_compile_private_function_plugin.php │ ├── smarty_internal_compile_private_modifier.php │ ├── smarty_internal_compile_private_object_block_function.php │ ├── smarty_internal_compile_private_object_function.php │ ├── smarty_internal_compile_private_print_expression.php │ ├── smarty_internal_compile_private_registered_block.php │ ├── smarty_internal_compile_private_registered_function.php │ ├── smarty_internal_compile_private_special_variable.php │ ├── smarty_internal_compile_rdelim.php │ ├── smarty_internal_compile_section.php │ ├── smarty_internal_compile_setfilter.php │ ├── smarty_internal_compile_shared_inheritance.php │ ├── smarty_internal_compile_while.php │ ├── smarty_internal_compilebase.php │ ├── smarty_internal_config_file_compiler.php │ ├── smarty_internal_configfilelexer.php │ ├── smarty_internal_configfileparser.php │ ├── smarty_internal_data.php │ ├── smarty_internal_debug.php │ ├── smarty_internal_errorhandler.php │ ├── smarty_internal_extension_handler.php │ ├── smarty_internal_method_addautoloadfilters.php │ ├── smarty_internal_method_adddefaultmodifiers.php │ ├── smarty_internal_method_append.php │ ├── smarty_internal_method_appendbyref.php │ ├── smarty_internal_method_assignbyref.php │ ├── smarty_internal_method_assignglobal.php │ ├── smarty_internal_method_clearallassign.php │ ├── smarty_internal_method_clearallcache.php │ ├── smarty_internal_method_clearassign.php │ ├── smarty_internal_method_clearcache.php │ ├── smarty_internal_method_clearcompiledtemplate.php │ ├── smarty_internal_method_clearconfig.php │ ├── smarty_internal_method_compileallconfig.php │ ├── smarty_internal_method_compilealltemplates.php │ ├── smarty_internal_method_configload.php │ ├── smarty_internal_method_createdata.php │ ├── smarty_internal_method_getautoloadfilters.php │ ├── smarty_internal_method_getconfigvariable.php │ ├── smarty_internal_method_getconfigvars.php │ ├── smarty_internal_method_getdebugtemplate.php │ ├── smarty_internal_method_getdefaultmodifiers.php │ ├── smarty_internal_method_getglobal.php │ ├── smarty_internal_method_getregisteredobject.php │ ├── smarty_internal_method_getstreamvariable.php │ ├── smarty_internal_method_gettags.php │ ├── smarty_internal_method_gettemplatevars.php │ ├── smarty_internal_method_literals.php │ ├── smarty_internal_method_loadfilter.php │ ├── smarty_internal_method_loadplugin.php │ ├── smarty_internal_method_mustcompile.php │ ├── smarty_internal_method_registercacheresource.php │ ├── smarty_internal_method_registerclass.php │ ├── smarty_internal_method_registerdefaultconfighandler.php │ ├── smarty_internal_method_registerdefaultpluginhandler.php │ ├── smarty_internal_method_registerdefaulttemplatehandler.php │ ├── smarty_internal_method_registerfilter.php │ ├── smarty_internal_method_registerobject.php │ ├── smarty_internal_method_registerplugin.php │ ├── smarty_internal_method_registerresource.php │ ├── smarty_internal_method_setautoloadfilters.php │ ├── smarty_internal_method_setdebugtemplate.php │ ├── smarty_internal_method_setdefaultmodifiers.php │ ├── smarty_internal_method_unloadfilter.php │ ├── smarty_internal_method_unregistercacheresource.php │ ├── smarty_internal_method_unregisterfilter.php │ ├── smarty_internal_method_unregisterobject.php │ ├── smarty_internal_method_unregisterplugin.php │ ├── smarty_internal_method_unregisterresource.php │ ├── smarty_internal_nocache_insert.php │ ├── smarty_internal_parsetree.php │ ├── smarty_internal_parsetree_code.php │ ├── smarty_internal_parsetree_dq.php │ ├── smarty_internal_parsetree_dqcontent.php │ ├── smarty_internal_parsetree_tag.php │ ├── smarty_internal_parsetree_template.php │ ├── smarty_internal_parsetree_text.php │ ├── smarty_internal_resource_eval.php │ ├── smarty_internal_resource_extends.php │ ├── smarty_internal_resource_file.php │ ├── smarty_internal_resource_php.php │ ├── smarty_internal_resource_stream.php │ ├── smarty_internal_resource_string.php │ ├── smarty_internal_runtime_cachemodify.php │ ├── smarty_internal_runtime_cacheresourcefile.php │ ├── smarty_internal_runtime_capture.php │ ├── smarty_internal_runtime_codeframe.php │ ├── smarty_internal_runtime_filterhandler.php │ ├── smarty_internal_runtime_foreach.php │ ├── smarty_internal_runtime_getincludepath.php │ ├── smarty_internal_runtime_inheritance.php │ ├── smarty_internal_runtime_make_nocache.php │ ├── smarty_internal_runtime_tplfunction.php │ ├── smarty_internal_runtime_updatecache.php │ ├── smarty_internal_runtime_updatescope.php │ ├── smarty_internal_runtime_writefile.php │ ├── smarty_internal_smartytemplatecompiler.php │ ├── smarty_internal_template.php │ ├── smarty_internal_templatebase.php │ ├── smarty_internal_templatecompilerbase.php │ ├── smarty_internal_templatelexer.php │ ├── smarty_internal_templateparser.php │ ├── smarty_internal_testinstall.php │ ├── smarty_internal_undefined.php │ ├── smarty_resource.php │ ├── smarty_resource_custom.php │ ├── smarty_resource_recompiled.php │ ├── smarty_resource_uncompiled.php │ ├── smarty_security.php │ ├── smarty_template_cached.php │ ├── smarty_template_compiled.php │ ├── smarty_template_config.php │ ├── smarty_template_resource_base.php │ ├── smarty_template_source.php │ ├── smarty_undefined_variable.php │ ├── smarty_variable.php │ ├── smartycompilerexception.php │ └── smartyexception.php └── version.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/codesee-arch-diagram.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/.github/workflows/codesee-arch-diagram.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/LICENSE -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/README.txt -------------------------------------------------------------------------------- /autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/autoload.php -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/config.php -------------------------------------------------------------------------------- /custom/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/custom/format.json -------------------------------------------------------------------------------- /custom/genre.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/custom/genre.json -------------------------------------------------------------------------------- /custom/theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/custom/theme.json -------------------------------------------------------------------------------- /custom/upload_langs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/custom/upload_langs.json -------------------------------------------------------------------------------- /custom/warnings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/custom/warnings.json -------------------------------------------------------------------------------- /funky.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/funky.php -------------------------------------------------------------------------------- /library/langs/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/library/langs/en.php -------------------------------------------------------------------------------- /library/plugins/daisyTheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/library/plugins/daisyTheme.php -------------------------------------------------------------------------------- /library/plugins/getRel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/library/plugins/getRel.php -------------------------------------------------------------------------------- /library/plugins/keep.txt: -------------------------------------------------------------------------------- 1 | Keep this, GitHub! -------------------------------------------------------------------------------- /library/plugins/logoImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/library/plugins/logoImage.php -------------------------------------------------------------------------------- /library/plugins/readChapters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/library/plugins/readChapters.php -------------------------------------------------------------------------------- /library/plugins/readingMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/library/plugins/readingMode.php -------------------------------------------------------------------------------- /library/plugins/simpleAlert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/library/plugins/simpleAlert.php -------------------------------------------------------------------------------- /library/plugins/started.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/library/plugins/started.php -------------------------------------------------------------------------------- /library/plugins/userLangs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/library/plugins/userLangs.php -------------------------------------------------------------------------------- /library/secrets/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/library/secrets/README.txt -------------------------------------------------------------------------------- /library/secrets/started.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/themes/nucleus/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/library/themes/nucleus/info.php -------------------------------------------------------------------------------- /library/themes/nucleus/pages/chapter.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/library/themes/nucleus/pages/chapter.tpl -------------------------------------------------------------------------------- /library/themes/nucleus/pages/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/library/themes/nucleus/pages/index.tpl -------------------------------------------------------------------------------- /library/themes/nucleus/pages/releases.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/library/themes/nucleus/pages/releases.tpl -------------------------------------------------------------------------------- /library/themes/nucleus/pages/title.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/library/themes/nucleus/pages/title.tpl -------------------------------------------------------------------------------- /library/themes/nucleus/pages/titles.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/library/themes/nucleus/pages/titles.tpl -------------------------------------------------------------------------------- /library/themes/nucleus/parts/alert.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/library/themes/nucleus/parts/alert.tpl -------------------------------------------------------------------------------- /library/themes/nucleus/parts/footer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/library/themes/nucleus/parts/footer.tpl -------------------------------------------------------------------------------- /library/themes/nucleus/parts/header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/library/themes/nucleus/parts/header.tpl -------------------------------------------------------------------------------- /library/themes/nucleus/parts/menu.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/library/themes/nucleus/parts/menu.tpl -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/activate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/activate.php -------------------------------------------------------------------------------- /public/ajax/account/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/ajax/account/login.php -------------------------------------------------------------------------------- /public/ajax/account/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/ajax/account/logout.php -------------------------------------------------------------------------------- /public/ajax/account/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/ajax/account/settings.php -------------------------------------------------------------------------------- /public/ajax/account/signup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/ajax/account/signup.php -------------------------------------------------------------------------------- /public/ajax/account/updateLang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/ajax/account/updateLang.php -------------------------------------------------------------------------------- /public/ajax/alerts/dismiss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/ajax/alerts/dismiss.php -------------------------------------------------------------------------------- /public/ajax/chapters/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/ajax/chapters/add.php -------------------------------------------------------------------------------- /public/ajax/chapters/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/ajax/chapters/edit.php -------------------------------------------------------------------------------- /public/ajax/chapters/read.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/ajax/chapters/read.php -------------------------------------------------------------------------------- /public/ajax/images/tmp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/ajax/images/tmp.php -------------------------------------------------------------------------------- /public/ajax/titles/add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/ajax/titles/add.php -------------------------------------------------------------------------------- /public/ajax/titles/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/ajax/titles/edit.php -------------------------------------------------------------------------------- /public/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/api.php -------------------------------------------------------------------------------- /public/assets/favicon/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/favicon/about.txt -------------------------------------------------------------------------------- /public/assets/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/assets/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/assets/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /public/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /public/assets/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/favicon/site.webmanifest -------------------------------------------------------------------------------- /public/assets/js.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/js.cookie.js -------------------------------------------------------------------------------- /public/assets/miku_cursor/CREDITS.txt: -------------------------------------------------------------------------------- 1 | By: MIMI DESTINO 2 | Source: https://www.rw-designer.com/cursor-set/miku-hatsune-md -------------------------------------------------------------------------------- /public/assets/miku_cursor/busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/miku_cursor/busy.png -------------------------------------------------------------------------------- /public/assets/miku_cursor/diagonal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/miku_cursor/diagonal-1.png -------------------------------------------------------------------------------- /public/assets/miku_cursor/diagonal-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/miku_cursor/diagonal-2.png -------------------------------------------------------------------------------- /public/assets/miku_cursor/handwriting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/miku_cursor/handwriting.png -------------------------------------------------------------------------------- /public/assets/miku_cursor/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/miku_cursor/help.png -------------------------------------------------------------------------------- /public/assets/miku_cursor/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/miku_cursor/link.png -------------------------------------------------------------------------------- /public/assets/miku_cursor/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/miku_cursor/move.png -------------------------------------------------------------------------------- /public/assets/miku_cursor/pos-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/miku_cursor/pos-select.png -------------------------------------------------------------------------------- /public/assets/miku_cursor/resize-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/miku_cursor/resize-h.png -------------------------------------------------------------------------------- /public/assets/miku_cursor/resize-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/miku_cursor/resize-v.png -------------------------------------------------------------------------------- /public/assets/miku_cursor/select-alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/miku_cursor/select-alt.png -------------------------------------------------------------------------------- /public/assets/miku_cursor/select-alt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/miku_cursor/select-alt2.png -------------------------------------------------------------------------------- /public/assets/miku_cursor/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/miku_cursor/select.png -------------------------------------------------------------------------------- /public/assets/miku_cursor/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/miku_cursor/text.png -------------------------------------------------------------------------------- /public/assets/miku_cursor/unavailable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/miku_cursor/unavailable.png -------------------------------------------------------------------------------- /public/assets/miku_cursor/working.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/miku_cursor/working.png -------------------------------------------------------------------------------- /public/assets/nucleus/autotheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/nucleus/autotheme.js -------------------------------------------------------------------------------- /public/assets/nucleus/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/nucleus/carousel.js -------------------------------------------------------------------------------- /public/assets/nucleus/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/nucleus/logo.png -------------------------------------------------------------------------------- /public/assets/nucleus/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/nucleus/tabs.js -------------------------------------------------------------------------------- /public/assets/nucleus/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/nucleus/tags.js -------------------------------------------------------------------------------- /public/assets/other/kofi_button_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/other/kofi_button_blue.png -------------------------------------------------------------------------------- /public/assets/other/kofi_s_tag_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/other/kofi_s_tag_white.png -------------------------------------------------------------------------------- /public/assets/other/paypal-donate-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/other/paypal-donate-button.png -------------------------------------------------------------------------------- /public/assets/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/assets/page.js -------------------------------------------------------------------------------- /public/chapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/chapter.php -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/index.php -------------------------------------------------------------------------------- /public/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/install.php -------------------------------------------------------------------------------- /public/releases.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/releases.php -------------------------------------------------------------------------------- /public/title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/title.php -------------------------------------------------------------------------------- /public/titles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/public/titles.php -------------------------------------------------------------------------------- /session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/session.php -------------------------------------------------------------------------------- /software/HTMLPurifier/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/CREDITS -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier.auto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier.auto.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier.autoload-legacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier.autoload-legacy.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier.autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier.autoload.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier.composer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier.composer.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier.func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier.func.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier.includes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier.includes.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier.kses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier.kses.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier.path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier.path.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier.safe-includes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier.safe-includes.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Arborize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Arborize.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrCollections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrCollections.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/CSS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/CSS.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/AlphaValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/AlphaValue.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Background.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Background.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/BackgroundPosition.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Border.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Border.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Color.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Composite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Composite.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/DenyElementDecorator.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Filter.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Font.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Font.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/FontFamily.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/FontFamily.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Ident.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Ident.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/ImportantDecorator.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Length.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Length.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/ListStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/ListStyle.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Multiple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Multiple.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Number.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Number.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Percentage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/Percentage.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/TextDecoration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/TextDecoration.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/CSS/URI.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/Clone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/Clone.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/Enum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/Enum.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/HTML/Bool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/HTML/Bool.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/HTML/Class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/HTML/Class.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/HTML/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/HTML/Color.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/HTML/ContentEditable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/HTML/ContentEditable.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/HTML/FrameTarget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/HTML/FrameTarget.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/HTML/ID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/HTML/ID.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/HTML/Length.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/HTML/Length.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/HTML/LinkTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/HTML/LinkTypes.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/HTML/MultiLength.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/HTML/MultiLength.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/HTML/Nmtokens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/HTML/Nmtokens.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/HTML/Pixels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/HTML/Pixels.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/Integer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/Integer.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/Lang.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/Switch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/Switch.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/Text.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/URI.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/URI/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/URI/Email.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/URI/Email/SimpleCheck.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/URI/Host.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/URI/Host.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/URI/IPv4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/URI/IPv4.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrDef/URI/IPv6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrDef/URI/IPv6.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrTransform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrTransform.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrTransform/Background.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrTransform/Background.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrTransform/BdoDir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrTransform/BdoDir.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrTransform/BgColor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrTransform/BgColor.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrTransform/BoolToCSS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrTransform/BoolToCSS.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrTransform/Border.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrTransform/Border.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrTransform/EnumToCSS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrTransform/EnumToCSS.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrTransform/ImgRequired.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrTransform/ImgRequired.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrTransform/ImgSpace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrTransform/ImgSpace.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrTransform/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrTransform/Input.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrTransform/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrTransform/Lang.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrTransform/Length.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrTransform/Length.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrTransform/Name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrTransform/Name.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrTransform/NameSync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrTransform/NameSync.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrTransform/Nofollow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrTransform/Nofollow.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrTransform/SafeEmbed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrTransform/SafeEmbed.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrTransform/SafeObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrTransform/SafeObject.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrTransform/SafeParam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrTransform/SafeParam.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrTransform/ScriptRequired.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrTransform/ScriptRequired.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrTransform/TargetBlank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrTransform/TargetBlank.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrTransform/TargetNoopener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrTransform/TargetNoopener.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrTransform/TargetNoreferrer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrTransform/TargetNoreferrer.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrTransform/Textarea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrTransform/Textarea.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrTypes.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/AttrValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/AttrValidator.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Bootstrap.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/CSSDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/CSSDefinition.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ChildDef.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ChildDef.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ChildDef/Chameleon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ChildDef/Chameleon.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ChildDef/Custom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ChildDef/Custom.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ChildDef/Empty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ChildDef/Empty.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ChildDef/List.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ChildDef/List.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ChildDef/Optional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ChildDef/Optional.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ChildDef/Required.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ChildDef/Required.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ChildDef/StrictBlockquote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ChildDef/StrictBlockquote.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ChildDef/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ChildDef/Table.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Config.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/Builder/ConfigSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/Builder/ConfigSchema.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/Builder/Xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/Builder/Xml.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/Exception.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/Interchange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/Interchange.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/Interchange/Directive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/Interchange/Directive.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/Interchange/Id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/Interchange/Id.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/InterchangeBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/InterchangeBuilder.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/Validator.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/ValidatorAtom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/ValidatorAtom.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema.ser -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.AllowedClasses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.AllowedClasses.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.AllowedFrameTargets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.AllowedFrameTargets.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRel.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.AllowedRev.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.ClassUseCDATA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.ClassUseCDATA.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.DefaultImageAlt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.DefaultImageAlt.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImage.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImageAlt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.DefaultInvalidImageAlt.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.DefaultTextDir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.DefaultTextDir.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.EnableID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.EnableID.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.ForbiddenClasses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.ForbiddenClasses.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.ID.HTML5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.ID.HTML5.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklist.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklistRegexp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.IDBlacklistRegexp.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.IDPrefix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.IDPrefix.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.IDPrefixLocal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Attr.IDPrefixLocal.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.AutoParagraph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.AutoParagraph.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.Custom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.Custom.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.DisplayLinkURI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.DisplayLinkURI.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.Linkify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.Linkify.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.DocURL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.DocURL.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.Predicate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.Predicate.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveSpansWithoutAttributes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveSpansWithoutAttributes.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/CSS.AllowDuplicates.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/CSS.AllowDuplicates.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/CSS.AllowImportant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/CSS.AllowImportant.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/CSS.AllowTricky.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/CSS.AllowTricky.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/CSS.AllowedFonts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/CSS.AllowedFonts.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/CSS.AllowedProperties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/CSS.AllowedProperties.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/CSS.DefinitionRev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/CSS.DefinitionRev.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/CSS.ForbiddenProperties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/CSS.ForbiddenProperties.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/CSS.MaxImgLength.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/CSS.MaxImgLength.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/CSS.Proprietary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/CSS.Proprietary.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/CSS.Trusted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/CSS.Trusted.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Cache.DefinitionImpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Cache.DefinitionImpl.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPath.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPermissions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPermissions.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.AggressivelyFixLt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.AggressivelyFixLt.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.AggressivelyRemoveScript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.AggressivelyRemoveScript.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.AllowHostnameUnderscore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.AllowHostnameUnderscore.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.AllowParseManyTags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.AllowParseManyTags.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.CollectErrors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.CollectErrors.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.ColorKeywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.ColorKeywords.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.ConvertDocumentToFragment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.ConvertDocumentToFragment.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.DirectLexLineNumberSyncInterval.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.DirectLexLineNumberSyncInterval.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.DisableExcludes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.DisableExcludes.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.EnableIDNA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.EnableIDNA.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.Encoding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.Encoding.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidChildren.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidChildren.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidTags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidTags.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.EscapeNonASCIICharacters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.EscapeNonASCIICharacters.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.HiddenElements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.HiddenElements.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.Language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.Language.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.LegacyEntityDecoder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.LegacyEntityDecoder.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.LexerImpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.LexerImpl.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.MaintainLineNumbers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.MaintainLineNumbers.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.NormalizeNewlines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.NormalizeNewlines.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.RemoveInvalidImg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.RemoveInvalidImg.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.RemoveProcessingInstructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.RemoveProcessingInstructions.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.RemoveScriptContents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Core.RemoveScriptContents.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Filter.Custom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Filter.Custom.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.Escaping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.Escaping.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.Scope.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.Scope.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.TidyImpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.TidyImpl.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Filter.ExtractStyleBlocks.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Filter.YouTube.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Filter.YouTube.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.Allowed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.Allowed.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.AllowedAttributes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.AllowedAttributes.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.AllowedComments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.AllowedComments.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.AllowedCommentsRegexp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.AllowedCommentsRegexp.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.AllowedElements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.AllowedElements.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.AllowedModules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.AllowedModules.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.Attr.Name.UseCDATA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.Attr.Name.UseCDATA.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.BlockWrapper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.BlockWrapper.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.CoreModules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.CoreModules.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.CustomDoctype.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.CustomDoctype.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.DefinitionID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.DefinitionID.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.DefinitionRev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.DefinitionRev.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.Doctype.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.Doctype.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.FlashAllowFullScreen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.FlashAllowFullScreen.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.ForbiddenAttributes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.ForbiddenAttributes.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.ForbiddenElements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.ForbiddenElements.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.Forms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.Forms.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.MaxImgLength.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.MaxImgLength.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.Nofollow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.Nofollow.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.Parent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.Parent.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.Proprietary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.Proprietary.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.SafeEmbed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.SafeEmbed.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.SafeIframe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.SafeIframe.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.SafeObject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.SafeObject.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.SafeScripting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.SafeScripting.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.Strict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.Strict.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.TargetBlank.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.TargetBlank.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.TargetNoopener.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.TargetNoopener.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.TargetNoreferrer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.TargetNoreferrer.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.TidyAdd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.TidyAdd.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.TidyLevel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.TidyLevel.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.TidyRemove.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.TidyRemove.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.Trusted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.Trusted.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.XHTML.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/HTML.XHTML.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Output.CommentScriptContents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Output.CommentScriptContents.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Output.FixInnerHTML.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Output.FixInnerHTML.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Output.FlashCompat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Output.FlashCompat.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Output.Newline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Output.Newline.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Output.SortAttr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Output.SortAttr.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Output.TidyFormat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Output.TidyFormat.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Test.ForceNoIconv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/Test.ForceNoIconv.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.AllowedSchemes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.AllowedSchemes.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.Base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.Base.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.DefaultScheme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.DefaultScheme.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.DefinitionID.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.DefinitionID.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.DefinitionRev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.DefinitionRev.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.Disable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.Disable.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.DisableExternal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.DisableExternal.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.DisableExternalResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.DisableExternalResources.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.DisableResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.DisableResources.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.Host.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.Host.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.HostBlacklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.HostBlacklist.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.MakeAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.MakeAbsolute.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.Munge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.Munge.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.MungeResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.MungeResources.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.MungeSecretKey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.MungeSecretKey.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.OverrideAllowedSchemes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.OverrideAllowedSchemes.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.SafeIframeRegexp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/URI.SafeIframeRegexp.txt -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ConfigSchema/schema/info.ini: -------------------------------------------------------------------------------- 1 | name = "HTML Purifier" 2 | 3 | ; vim: et sw=4 sts=4 4 | -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ContentSets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ContentSets.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Context.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Definition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Definition.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/DefinitionCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/DefinitionCache.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/DefinitionCache/Decorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/DefinitionCache/Decorator.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/DefinitionCache/Decorator/Cleanup.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/DefinitionCache/Decorator/Memory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/DefinitionCache/Decorator/Memory.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/DefinitionCache/Decorator/Template.php.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/DefinitionCache/Decorator/Template.php.in -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/DefinitionCache/Null.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/DefinitionCache/Null.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/DefinitionCache/Serializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/DefinitionCache/Serializer.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/DefinitionCache/Serializer/HTML/4.15.0,f474c0a322b208e83d22d3aef33ecb184bc71d31,1.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/DefinitionCache/Serializer/HTML/4.15.0,f474c0a322b208e83d22d3aef33ecb184bc71d31,1.ser -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/DefinitionCache/Serializer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/DefinitionCache/Serializer/README -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/DefinitionCacheFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/DefinitionCacheFactory.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Doctype.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Doctype.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/DoctypeRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/DoctypeRegistry.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ElementDef.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ElementDef.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Encoder.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/EntityLookup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/EntityLookup.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/EntityLookup/entities.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/EntityLookup/entities.ser -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/EntityParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/EntityParser.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ErrorCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ErrorCollector.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/ErrorStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/ErrorStruct.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Exception.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Filter.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Filter/ExtractStyleBlocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Filter/ExtractStyleBlocks.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Filter/YouTube.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Filter/YouTube.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Generator.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLDefinition.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/Bdo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/Bdo.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/CommonAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/CommonAttributes.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/Edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/Edit.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/Forms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/Forms.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/Hypertext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/Hypertext.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/Iframe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/Iframe.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/Image.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/Legacy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/Legacy.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/List.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/List.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/Name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/Name.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/Nofollow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/Nofollow.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/Object.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/Object.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/Presentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/Presentation.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/Proprietary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/Proprietary.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/Ruby.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/Ruby.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/SafeEmbed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/SafeEmbed.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/SafeObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/SafeObject.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/SafeScripting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/SafeScripting.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/Scripting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/Scripting.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/StyleAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/StyleAttribute.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/Tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/Tables.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/Target.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/Target.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/TargetBlank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/TargetBlank.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/TargetNoopener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/TargetNoopener.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/TargetNoreferrer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/TargetNoreferrer.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/Text.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/Tidy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/Tidy.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/Tidy/Name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/Tidy/Name.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/Tidy/Proprietary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/Tidy/Proprietary.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/Tidy/Strict.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/Tidy/Strict.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/Tidy/Transitional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/Tidy/Transitional.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/Tidy/XHTML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/Tidy/XHTML.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/Tidy/XHTMLAndHTML4.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModule/XMLCommonAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModule/XMLCommonAttributes.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/HTMLModuleManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/HTMLModuleManager.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/IDAccumulator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/IDAccumulator.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Injector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Injector.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Injector/AutoParagraph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Injector/AutoParagraph.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Injector/DisplayLinkURI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Injector/DisplayLinkURI.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Injector/Linkify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Injector/Linkify.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Injector/PurifierLinkify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Injector/PurifierLinkify.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Injector/RemoveEmpty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Injector/RemoveEmpty.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Injector/RemoveSpansWithoutAttributes.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Injector/SafeObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Injector/SafeObject.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Language.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Language/messages/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Language/messages/en.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/LanguageFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/LanguageFactory.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Length.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Length.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Lexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Lexer.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Lexer/DOMLex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Lexer/DOMLex.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Lexer/DirectLex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Lexer/DirectLex.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Lexer/PH5P.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Lexer/PH5P.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Node.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Node/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Node/Comment.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Node/Element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Node/Element.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Node/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Node/Text.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/PercentEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/PercentEncoder.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Printer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Printer.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Printer/CSSDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Printer/CSSDefinition.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Printer/ConfigForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Printer/ConfigForm.css -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Printer/ConfigForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Printer/ConfigForm.js -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Printer/ConfigForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Printer/ConfigForm.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Printer/HTMLDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Printer/HTMLDefinition.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/PropertyList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/PropertyList.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/PropertyListIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/PropertyListIterator.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Queue.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Strategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Strategy.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Strategy/Composite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Strategy/Composite.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Strategy/Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Strategy/Core.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Strategy/FixNesting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Strategy/FixNesting.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Strategy/MakeWellFormed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Strategy/MakeWellFormed.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Strategy/RemoveForeignElements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Strategy/RemoveForeignElements.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Strategy/ValidateAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Strategy/ValidateAttributes.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/StringHash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/StringHash.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/StringHashParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/StringHashParser.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/TagTransform.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/TagTransform.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/TagTransform/Font.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/TagTransform/Font.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/TagTransform/Simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/TagTransform/Simple.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Token.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Token/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Token/Comment.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Token/Empty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Token/Empty.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Token/End.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Token/End.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Token/Start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Token/Start.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Token/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Token/Tag.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Token/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Token/Text.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/TokenFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/TokenFactory.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/URI.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/URIDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/URIDefinition.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/URIFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/URIFilter.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/URIFilter/DisableExternal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/URIFilter/DisableExternal.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/URIFilter/DisableExternalResources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/URIFilter/DisableExternalResources.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/URIFilter/DisableResources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/URIFilter/DisableResources.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/URIFilter/HostBlacklist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/URIFilter/HostBlacklist.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/URIFilter/MakeAbsolute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/URIFilter/MakeAbsolute.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/URIFilter/Munge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/URIFilter/Munge.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/URIFilter/SafeIframe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/URIFilter/SafeIframe.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/URIParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/URIParser.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/URIScheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/URIScheme.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/URIScheme/data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/URIScheme/data.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/URIScheme/file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/URIScheme/file.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/URIScheme/ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/URIScheme/ftp.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/URIScheme/http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/URIScheme/http.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/URIScheme/https.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/URIScheme/https.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/URIScheme/mailto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/URIScheme/mailto.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/URIScheme/news.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/URIScheme/news.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/URIScheme/nntp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/URIScheme/nntp.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/URIScheme/tel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/URIScheme/tel.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/URISchemeRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/URISchemeRegistry.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/UnitConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/UnitConverter.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/VarParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/VarParser.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/VarParser/Flexible.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/VarParser/Flexible.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/VarParser/Native.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/VarParser/Native.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/VarParserException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/VarParserException.php -------------------------------------------------------------------------------- /software/HTMLPurifier/HTMLPurifier/Zipper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/HTMLPurifier/Zipper.php -------------------------------------------------------------------------------- /software/HTMLPurifier/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/HTMLPurifier/LICENSE -------------------------------------------------------------------------------- /software/PARSEDOWN LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/PARSEDOWN LICENSE.txt -------------------------------------------------------------------------------- /software/PHPMailer/DSNConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/PHPMailer/DSNConfigurator.php -------------------------------------------------------------------------------- /software/PHPMailer/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/PHPMailer/Exception.php -------------------------------------------------------------------------------- /software/PHPMailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/PHPMailer/LICENSE -------------------------------------------------------------------------------- /software/PHPMailer/OAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/PHPMailer/OAuth.php -------------------------------------------------------------------------------- /software/PHPMailer/OAuthTokenProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/PHPMailer/OAuthTokenProvider.php -------------------------------------------------------------------------------- /software/PHPMailer/PHPMailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/PHPMailer/PHPMailer.php -------------------------------------------------------------------------------- /software/PHPMailer/POP3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/PHPMailer/POP3.php -------------------------------------------------------------------------------- /software/PHPMailer/SMTP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/PHPMailer/SMTP.php -------------------------------------------------------------------------------- /software/PHPMailer/VERSION: -------------------------------------------------------------------------------- 1 | 6.8.0 -------------------------------------------------------------------------------- /software/Parsedown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Parsedown.php -------------------------------------------------------------------------------- /software/SleekDB/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/SleekDB/Cache.php -------------------------------------------------------------------------------- /software/SleekDB/Classes/CacheHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/SleekDB/Classes/CacheHandler.php -------------------------------------------------------------------------------- /software/SleekDB/Classes/ConditionsHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/SleekDB/Classes/ConditionsHandler.php -------------------------------------------------------------------------------- /software/SleekDB/Classes/DocumentFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/SleekDB/Classes/DocumentFinder.php -------------------------------------------------------------------------------- /software/SleekDB/Classes/DocumentReducer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/SleekDB/Classes/DocumentReducer.php -------------------------------------------------------------------------------- /software/SleekDB/Classes/DocumentUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/SleekDB/Classes/DocumentUpdater.php -------------------------------------------------------------------------------- /software/SleekDB/Classes/IoHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/SleekDB/Classes/IoHelper.php -------------------------------------------------------------------------------- /software/SleekDB/Classes/NestedHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/SleekDB/Classes/NestedHelper.php -------------------------------------------------------------------------------- /software/SleekDB/Exceptions/IOException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/SleekDB/Exceptions/IOException.php -------------------------------------------------------------------------------- /software/SleekDB/Exceptions/IdNotAllowedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/SleekDB/Exceptions/IdNotAllowedException.php -------------------------------------------------------------------------------- /software/SleekDB/Exceptions/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/SleekDB/Exceptions/InvalidArgumentException.php -------------------------------------------------------------------------------- /software/SleekDB/Exceptions/InvalidConfigurationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/SleekDB/Exceptions/InvalidConfigurationException.php -------------------------------------------------------------------------------- /software/SleekDB/Exceptions/InvalidPropertyAccessException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/SleekDB/Exceptions/InvalidPropertyAccessException.php -------------------------------------------------------------------------------- /software/SleekDB/Exceptions/JsonException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/SleekDB/Exceptions/JsonException.php -------------------------------------------------------------------------------- /software/SleekDB/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/SleekDB/LICENSE -------------------------------------------------------------------------------- /software/SleekDB/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/SleekDB/Query.php -------------------------------------------------------------------------------- /software/SleekDB/QueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/SleekDB/QueryBuilder.php -------------------------------------------------------------------------------- /software/SleekDB/SleekDB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/SleekDB/SleekDB.php -------------------------------------------------------------------------------- /software/SleekDB/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/SleekDB/Store.php -------------------------------------------------------------------------------- /software/Smarty/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/Autoloader.php -------------------------------------------------------------------------------- /software/Smarty/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/LICENSE -------------------------------------------------------------------------------- /software/Smarty/Smarty.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/Smarty.class.php -------------------------------------------------------------------------------- /software/Smarty/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/bootstrap.php -------------------------------------------------------------------------------- /software/Smarty/cache/keep.txt: -------------------------------------------------------------------------------- 1 | GitHub, please -------------------------------------------------------------------------------- /software/Smarty/compile/keep.txt: -------------------------------------------------------------------------------- 1 | GitHub, please -------------------------------------------------------------------------------- /software/Smarty/config/keep.txt: -------------------------------------------------------------------------------- 1 | GitHub, please -------------------------------------------------------------------------------- /software/Smarty/debug.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/debug.tpl -------------------------------------------------------------------------------- /software/Smarty/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/functions.php -------------------------------------------------------------------------------- /software/Smarty/plugins/block.textformat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/block.textformat.php -------------------------------------------------------------------------------- /software/Smarty/plugins/function.counter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/function.counter.php -------------------------------------------------------------------------------- /software/Smarty/plugins/function.cycle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/function.cycle.php -------------------------------------------------------------------------------- /software/Smarty/plugins/function.fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/function.fetch.php -------------------------------------------------------------------------------- /software/Smarty/plugins/function.html_checkboxes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/function.html_checkboxes.php -------------------------------------------------------------------------------- /software/Smarty/plugins/function.html_image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/function.html_image.php -------------------------------------------------------------------------------- /software/Smarty/plugins/function.html_options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/function.html_options.php -------------------------------------------------------------------------------- /software/Smarty/plugins/function.html_radios.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/function.html_radios.php -------------------------------------------------------------------------------- /software/Smarty/plugins/function.html_select_date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/function.html_select_date.php -------------------------------------------------------------------------------- /software/Smarty/plugins/function.html_select_time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/function.html_select_time.php -------------------------------------------------------------------------------- /software/Smarty/plugins/function.html_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/function.html_table.php -------------------------------------------------------------------------------- /software/Smarty/plugins/function.mailto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/function.mailto.php -------------------------------------------------------------------------------- /software/Smarty/plugins/function.math.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/function.math.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifier.capitalize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifier.capitalize.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifier.count.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifier.count.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifier.date_format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifier.date_format.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifier.debug_print_var.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifier.debug_print_var.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifier.escape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifier.escape.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifier.explode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifier.explode.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifier.mb_wordwrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifier.mb_wordwrap.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifier.number_format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifier.number_format.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifier.regex_replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifier.regex_replace.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifier.replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifier.replace.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifier.spacify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifier.spacify.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifier.truncate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifier.truncate.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifiercompiler.cat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifiercompiler.cat.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifiercompiler.count_characters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifiercompiler.count_characters.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifiercompiler.count_paragraphs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifiercompiler.count_paragraphs.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifiercompiler.count_sentences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifiercompiler.count_sentences.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifiercompiler.count_words.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifiercompiler.count_words.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifiercompiler.default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifiercompiler.default.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifiercompiler.escape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifiercompiler.escape.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifiercompiler.from_charset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifiercompiler.from_charset.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifiercompiler.indent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifiercompiler.indent.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifiercompiler.lower.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifiercompiler.lower.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifiercompiler.nl2br.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifiercompiler.nl2br.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifiercompiler.noprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifiercompiler.noprint.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifiercompiler.round.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifiercompiler.round.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifiercompiler.str_repeat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifiercompiler.str_repeat.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifiercompiler.string_format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifiercompiler.string_format.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifiercompiler.strip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifiercompiler.strip.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifiercompiler.strip_tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifiercompiler.strip_tags.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifiercompiler.strlen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifiercompiler.strlen.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifiercompiler.to_charset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifiercompiler.to_charset.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifiercompiler.unescape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifiercompiler.unescape.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifiercompiler.upper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifiercompiler.upper.php -------------------------------------------------------------------------------- /software/Smarty/plugins/modifiercompiler.wordwrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/modifiercompiler.wordwrap.php -------------------------------------------------------------------------------- /software/Smarty/plugins/outputfilter.trimwhitespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/outputfilter.trimwhitespace.php -------------------------------------------------------------------------------- /software/Smarty/plugins/shared.escape_special_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/shared.escape_special_chars.php -------------------------------------------------------------------------------- /software/Smarty/plugins/shared.literal_compiler_param.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/shared.literal_compiler_param.php -------------------------------------------------------------------------------- /software/Smarty/plugins/shared.make_timestamp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/shared.make_timestamp.php -------------------------------------------------------------------------------- /software/Smarty/plugins/shared.mb_str_replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/shared.mb_str_replace.php -------------------------------------------------------------------------------- /software/Smarty/plugins/shared.mb_unicode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/shared.mb_unicode.php -------------------------------------------------------------------------------- /software/Smarty/plugins/variablefilter.htmlspecialchars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/plugins/variablefilter.htmlspecialchars.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_cacheresource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_cacheresource.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_cacheresource_custom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_cacheresource_custom.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_cacheresource_keyvaluestore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_cacheresource_keyvaluestore.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_data.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_block.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_cacheresource_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_cacheresource_file.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_append.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_assign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_assign.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_block.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_block_child.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_block_child.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_block_parent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_block_parent.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_break.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_break.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_call.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_call.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_capture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_capture.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_child.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_child.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_config_load.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_config_load.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_continue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_continue.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_debug.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_eval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_eval.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_extends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_extends.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_for.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_for.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_foreach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_foreach.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_function.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_if.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_if.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_include.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_insert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_insert.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_ldelim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_ldelim.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_make_nocache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_make_nocache.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_nocache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_nocache.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_parent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_parent.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_private_block_plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_private_block_plugin.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_private_foreachsection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_private_foreachsection.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_private_function_plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_private_function_plugin.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_private_modifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_private_modifier.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_private_object_block_function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_private_object_block_function.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_private_object_function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_private_object_function.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_private_print_expression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_private_print_expression.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_private_registered_block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_private_registered_block.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_private_registered_function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_private_registered_function.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_private_special_variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_private_special_variable.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_rdelim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_rdelim.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_section.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_setfilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_setfilter.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_shared_inheritance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_shared_inheritance.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compile_while.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compile_while.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_compilebase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_compilebase.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_config_file_compiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_config_file_compiler.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_configfilelexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_configfilelexer.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_configfileparser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_configfileparser.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_data.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_debug.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_errorhandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_errorhandler.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_extension_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_extension_handler.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_addautoloadfilters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_addautoloadfilters.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_adddefaultmodifiers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_adddefaultmodifiers.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_append.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_appendbyref.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_appendbyref.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_assignbyref.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_assignbyref.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_assignglobal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_assignglobal.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_clearallassign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_clearallassign.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_clearallcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_clearallcache.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_clearassign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_clearassign.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_clearcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_clearcache.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_clearcompiledtemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_clearcompiledtemplate.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_clearconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_clearconfig.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_compileallconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_compileallconfig.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_compilealltemplates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_compilealltemplates.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_configload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_configload.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_createdata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_createdata.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_getautoloadfilters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_getautoloadfilters.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_getconfigvariable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_getconfigvariable.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_getconfigvars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_getconfigvars.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_getdebugtemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_getdebugtemplate.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_getdefaultmodifiers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_getdefaultmodifiers.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_getglobal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_getglobal.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_getregisteredobject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_getregisteredobject.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_getstreamvariable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_getstreamvariable.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_gettags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_gettags.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_gettemplatevars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_gettemplatevars.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_literals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_literals.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_loadfilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_loadfilter.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_loadplugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_loadplugin.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_mustcompile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_mustcompile.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_registercacheresource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_registercacheresource.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_registerclass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_registerclass.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_registerdefaultconfighandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_registerdefaultconfighandler.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_registerdefaultpluginhandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_registerdefaultpluginhandler.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_registerdefaulttemplatehandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_registerdefaulttemplatehandler.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_registerfilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_registerfilter.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_registerobject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_registerobject.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_registerplugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_registerplugin.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_registerresource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_registerresource.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_setautoloadfilters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_setautoloadfilters.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_setdebugtemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_setdebugtemplate.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_setdefaultmodifiers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_setdefaultmodifiers.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_unloadfilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_unloadfilter.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_unregistercacheresource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_unregistercacheresource.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_unregisterfilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_unregisterfilter.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_unregisterobject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_unregisterobject.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_unregisterplugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_unregisterplugin.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_method_unregisterresource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_method_unregisterresource.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_nocache_insert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_nocache_insert.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_parsetree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_parsetree.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_parsetree_code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_parsetree_code.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_parsetree_dq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_parsetree_dq.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_parsetree_dqcontent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_parsetree_dqcontent.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_parsetree_tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_parsetree_tag.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_parsetree_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_parsetree_template.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_parsetree_text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_parsetree_text.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_resource_eval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_resource_eval.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_resource_extends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_resource_extends.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_resource_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_resource_file.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_resource_php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_resource_php.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_resource_stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_resource_stream.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_resource_string.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_resource_string.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_runtime_cachemodify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_runtime_cachemodify.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_runtime_cacheresourcefile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_runtime_cacheresourcefile.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_runtime_capture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_runtime_capture.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_runtime_codeframe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_runtime_codeframe.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_runtime_filterhandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_runtime_filterhandler.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_runtime_foreach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_runtime_foreach.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_runtime_getincludepath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_runtime_getincludepath.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_runtime_inheritance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_runtime_inheritance.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_runtime_make_nocache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_runtime_make_nocache.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_runtime_tplfunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_runtime_tplfunction.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_runtime_updatecache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_runtime_updatecache.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_runtime_updatescope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_runtime_updatescope.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_runtime_writefile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_runtime_writefile.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_smartytemplatecompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_smartytemplatecompiler.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_template.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_templatebase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_templatebase.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_templatecompilerbase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_templatecompilerbase.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_templatelexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_templatelexer.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_templateparser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_templateparser.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_testinstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_testinstall.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_internal_undefined.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_internal_undefined.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_resource.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_resource_custom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_resource_custom.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_resource_recompiled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_resource_recompiled.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_resource_uncompiled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_resource_uncompiled.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_security.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_template_cached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_template_cached.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_template_compiled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_template_compiled.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_template_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_template_config.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_template_resource_base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_template_resource_base.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_template_source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_template_source.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_undefined_variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_undefined_variable.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smarty_variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smarty_variable.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smartycompilerexception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smartycompilerexception.php -------------------------------------------------------------------------------- /software/Smarty/sysplugins/smartyexception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintly2k/FoOlSlideX/HEAD/software/Smarty/sysplugins/smartyexception.php -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 0.3.1-alpha 2 | --------------------------------------------------------------------------------