├── .gitignore ├── .gitmodules ├── CHANGELOG.txt ├── Gruntfile.js ├── README.md ├── config-sample.php ├── favicon.ico ├── index.php ├── licenses.txt ├── oc-admin ├── admins.php ├── ajax │ ├── ajax.php │ └── index.php ├── appearance.php ├── categories.php ├── comments.php ├── controller │ ├── index.php │ └── settings │ │ ├── advanced.php │ │ ├── comments.php │ │ ├── currencies.php │ │ ├── index.php │ │ ├── latestsearches.php │ │ ├── locations.php │ │ ├── mailserver.php │ │ ├── main.php │ │ ├── media.php │ │ ├── permalinks.php │ │ └── spamnbots.php ├── custom_fields.php ├── emails.php ├── gui │ ├── forgot_password.php │ ├── index.php │ ├── login.php │ └── recover.php ├── images │ ├── close.png │ ├── index.php │ └── osclass-logo.gif ├── index.php ├── items.php ├── languages.php ├── login.php ├── main.php ├── market.php ├── media.php ├── pages.php ├── plugins.php ├── settings.php ├── stats.php ├── style │ ├── backoffice_login.css │ └── index.php ├── themes │ ├── index.php │ └── modern │ │ ├── admins │ │ ├── frm.php │ │ └── index.php │ │ ├── appearance │ │ ├── add.php │ │ ├── add_widget.php │ │ ├── index.php │ │ ├── view.php │ │ └── widgets.php │ │ ├── categories │ │ ├── iframe.php │ │ └── index.php │ │ ├── comments │ │ ├── frm.php │ │ └── index.php │ │ ├── css │ │ └── main.css │ │ ├── emails │ │ ├── frm.php │ │ └── index.php │ │ ├── fields │ │ ├── iframe.php │ │ └── index.php │ │ ├── functions.php │ │ ├── guideline │ │ ├── index.php │ │ └── parts │ │ │ ├── grid.php │ │ │ ├── layout.php │ │ │ └── menu.php │ │ ├── images │ │ ├── arrow.png │ │ ├── arrow2.png │ │ ├── arrow_down.png │ │ ├── arrow_up.png │ │ ├── bnt-overlay.png │ │ ├── favicon-114.png │ │ ├── favicon-144.png │ │ ├── favicon-48.png │ │ ├── favicon-57.png │ │ ├── favicon-72.png │ │ ├── gr-a.png │ │ ├── gr-b.png │ │ ├── gr-c.png │ │ ├── gr-d.png │ │ ├── gr-e.png │ │ ├── gr-f.png │ │ ├── gr-g.png │ │ ├── gr-h.png │ │ ├── gr-i.png │ │ ├── icon-new-window.png │ │ ├── info-icon.png │ │ ├── loading.gif │ │ ├── market-buy.png │ │ ├── market-split.png │ │ ├── market-split.psd │ │ ├── osc-tooltip-error.gif │ │ ├── osc-tooltip-gray.gif │ │ ├── question.png │ │ ├── sort_asc.png │ │ ├── sort_desc.png │ │ ├── spinner_loading.gif │ │ ├── split-switch.png │ │ ├── split.ai │ │ ├── split.png │ │ ├── split@2x.png │ │ └── switch.png │ │ ├── items │ │ ├── frm.php │ │ ├── index.php │ │ ├── reported.php │ │ └── settings.php │ │ ├── js │ │ ├── location.js │ │ ├── market.js │ │ ├── osc.js │ │ └── ui-osc.js │ │ ├── languages │ │ ├── add.php │ │ ├── frm.php │ │ └── index.php │ │ ├── less │ │ ├── categories.less │ │ ├── columns.less │ │ ├── definitions.less │ │ ├── flashmessage.less │ │ ├── forms.less │ │ ├── functions.less │ │ ├── guideline.less │ │ ├── header.less │ │ ├── helpbox.less │ │ ├── layout.less │ │ ├── main.less │ │ ├── market-item.less │ │ ├── market.less │ │ ├── osc.less │ │ ├── pages-categories.less │ │ ├── pages-dashboard.less │ │ ├── pages-listing.less │ │ ├── pages-plugins.less │ │ ├── pages-settings.less │ │ ├── pages-stats.less │ │ ├── pages-themes.less │ │ ├── render-page.less │ │ ├── reset-jquery-ui.less │ │ ├── sidebar.less │ │ ├── split.less │ │ ├── table.less │ │ ├── treeview.less │ │ ├── ui-elements.less │ │ └── widget-box.less │ │ ├── main │ │ └── index.php │ │ ├── market │ │ ├── header.php │ │ ├── index.php │ │ └── section.php │ │ ├── media │ │ └── index.php │ │ ├── pages │ │ ├── frm.php │ │ └── index.php │ │ ├── parts │ │ ├── footer.php │ │ └── header.php │ │ ├── plugins │ │ ├── add.php │ │ ├── configuration.php │ │ ├── index.php │ │ └── view.php │ │ ├── settings │ │ ├── advanced.php │ │ ├── comments.php │ │ ├── currencies.php │ │ ├── currency_form.php │ │ ├── index.php │ │ ├── locations.php │ │ ├── mailserver.php │ │ ├── media.php │ │ ├── permalinks.php │ │ ├── searches.php │ │ └── spamNbots.php │ │ ├── stats │ │ ├── comments.php │ │ ├── items.php │ │ ├── reports.php │ │ └── users.php │ │ ├── tools │ │ ├── backup.php │ │ ├── category.php │ │ ├── import.php │ │ ├── locations.php │ │ ├── maintenance.php │ │ ├── upgrade.php │ │ └── version.php │ │ ├── upgrade │ │ └── index.php │ │ └── users │ │ ├── alerts.php │ │ ├── ban.php │ │ ├── ban_frm.php │ │ ├── frm.php │ │ ├── index.php │ │ └── settings.php ├── tools.php ├── upgrade.php └── users.php ├── oc-content ├── downloads │ ├── index.php │ └── oc-temp │ │ └── index.php ├── index.php ├── languages │ ├── en_US │ │ ├── core.mo │ │ ├── core.po │ │ ├── index.php │ │ ├── mail.sql │ │ ├── messages.mo │ │ ├── messages.po │ │ ├── theme.mo │ │ └── theme.po │ └── index.php ├── plugins │ ├── google_analytics │ │ ├── admin.php │ │ ├── footer.php │ │ ├── index.php │ │ └── languages │ │ │ ├── cs_CZ │ │ │ ├── messages.mo │ │ │ └── messages.po │ │ │ ├── de_DE │ │ │ ├── messages.mo │ │ │ └── messages.po │ │ │ ├── en_US │ │ │ └── messages.po │ │ │ ├── fa_IR │ │ │ ├── messages.mo │ │ │ └── messages.po │ │ │ ├── lt_LT │ │ │ ├── messages.mo │ │ │ └── messages.po │ │ │ ├── lv_LV │ │ │ ├── messages.mo │ │ │ └── messages.po │ │ │ ├── ru_RU │ │ │ ├── messages.mo │ │ │ └── messages.po │ │ │ ├── sk_SK │ │ │ ├── messages.mo │ │ │ └── messages.po │ │ │ ├── sv_SE │ │ │ ├── messages.mo │ │ │ └── messages.po │ │ │ ├── th_TH │ │ │ ├── messages.mo │ │ │ └── messages.po │ │ │ └── vi_VN │ │ │ ├── messages.mo │ │ │ └── messages.po │ ├── google_maps │ │ ├── admin │ │ │ └── settings.php │ │ ├── index.php │ │ ├── languages │ │ │ ├── en_US │ │ │ │ ├── messages.mo │ │ │ │ └── messages.po │ │ │ └── es_ES │ │ │ │ ├── messages.mo │ │ │ │ └── messages.po │ │ └── map.php │ └── index.php ├── themes │ └── index.php └── uploads │ ├── index.php │ ├── page-images │ └── index.php │ └── temp │ └── index.php ├── oc-includes ├── AjaxUploader.php ├── Akismet.class.php ├── Bcrypt.php ├── 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 │ │ │ │ ├── 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.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.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 │ │ │ │ └── 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 │ │ │ ├── classes │ │ │ │ └── en-x-test.php │ │ │ └── messages │ │ │ │ ├── en-x-test.php │ │ │ │ ├── en-x-testmini.php │ │ │ │ └── en.php │ │ ├── LanguageFactory.php │ │ ├── Length.php │ │ ├── Lexer.php │ │ ├── Lexer │ │ │ ├── DOMLex.php │ │ │ ├── DirectLex.php │ │ │ ├── PEARSax3.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 │ ├── INSTALL │ ├── LICENSE │ └── NEWS ├── images │ ├── arrow_expanded.png │ ├── arrow_noexpanded.png │ ├── cross.png │ ├── index.php │ ├── loading.gif │ ├── next.gif │ ├── osclass-logo.png │ ├── past.gif │ ├── question.png │ └── tick.png ├── index.php ├── json │ ├── JSON.php │ ├── LICENSE │ └── index.php ├── libcurlemu │ ├── LICENSE │ ├── README │ ├── class_HTTPRetriever.php │ ├── example.php │ ├── index.php │ ├── libcurlemu.inc.php │ ├── libcurlexternal.inc.php │ └── libcurlnative.inc.php ├── openssl-cryptor │ └── Cryptor.php ├── osclass │ ├── AdminThemes.php │ ├── ItemActions.php │ ├── Logger │ │ ├── LogDatabase.php │ │ ├── LogOsclass.php │ │ ├── Logger.php │ │ └── index.php │ ├── Themes.php │ ├── UserActions.php │ ├── WebThemes.php │ ├── alerts.php │ ├── assets │ │ ├── css │ │ │ ├── index.php │ │ │ ├── jquery-ui │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_flat_0_000000_40x100.png │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_0_f3f3f3_40x100.png │ │ │ │ │ ├── ui-bg_flat_0_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_flat_100_e6e6e6_40x100.png │ │ │ │ │ ├── ui-bg_flat_100_f2f2f2_40x100.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_dadada_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_e6e6e6_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_95_fef1ec_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ └── jquery.ui.datepicker.css │ │ │ └── jquery.fancybox.css │ │ ├── fonts │ │ │ └── Arial.ttf │ │ ├── images │ │ │ ├── mockup_01.png │ │ │ ├── mockup_03.png │ │ │ ├── mockup_09.png │ │ │ ├── mockup_11.png │ │ │ ├── mockup_16.png │ │ │ └── t.gif │ │ ├── index.php │ │ ├── js │ │ │ ├── colorpicker │ │ │ │ ├── css │ │ │ │ │ ├── colorpicker.css │ │ │ │ │ └── layout.css │ │ │ │ ├── images │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── colorpicker_background.png │ │ │ │ │ ├── colorpicker_hex.png │ │ │ │ │ ├── colorpicker_hsb_b.png │ │ │ │ │ ├── colorpicker_hsb_h.png │ │ │ │ │ ├── colorpicker_hsb_s.png │ │ │ │ │ ├── colorpicker_indic.gif │ │ │ │ │ ├── colorpicker_overlay.png │ │ │ │ │ ├── colorpicker_rgb_b.png │ │ │ │ │ ├── colorpicker_rgb_g.png │ │ │ │ │ ├── colorpicker_rgb_r.png │ │ │ │ │ ├── colorpicker_select.gif │ │ │ │ │ ├── colorpicker_submit.png │ │ │ │ │ ├── custom_background.png │ │ │ │ │ ├── custom_hex.png │ │ │ │ │ ├── custom_hsb_b.png │ │ │ │ │ ├── custom_hsb_h.png │ │ │ │ │ ├── custom_hsb_s.png │ │ │ │ │ ├── custom_indic.gif │ │ │ │ │ ├── custom_rgb_b.png │ │ │ │ │ ├── custom_rgb_g.png │ │ │ │ │ ├── custom_rgb_r.png │ │ │ │ │ ├── custom_submit.png │ │ │ │ │ ├── select.png │ │ │ │ │ ├── select2.png │ │ │ │ │ └── slider.png │ │ │ │ └── js │ │ │ │ │ ├── colorpicker.js │ │ │ │ │ ├── eye.js │ │ │ │ │ ├── layout.js │ │ │ │ │ └── utils.js │ │ │ ├── date.js │ │ │ ├── fancybox │ │ │ │ ├── blank.gif │ │ │ │ ├── fancybox_loading.gif │ │ │ │ ├── fancybox_overlay.png │ │ │ │ ├── fancybox_sprite.png │ │ │ │ ├── helpers │ │ │ │ │ ├── fancybox_buttons.png │ │ │ │ │ ├── jquery.fancybox-buttons.css │ │ │ │ │ ├── jquery.fancybox-buttons.js │ │ │ │ │ ├── jquery.fancybox-media.js │ │ │ │ │ ├── jquery.fancybox-thumbs.css │ │ │ │ │ └── jquery.fancybox-thumbs.js │ │ │ │ ├── jquery.fancybox.css │ │ │ │ ├── jquery.fancybox.js │ │ │ │ └── jquery.fancybox.pack.js │ │ │ ├── fineuploader │ │ │ │ ├── edit.gif │ │ │ │ ├── fineuploader.css │ │ │ │ ├── jquery.fineuploader.min.js │ │ │ │ ├── loading.gif │ │ │ │ └── processing.gif │ │ │ ├── index.php │ │ │ ├── jquery-migrate.min.js │ │ │ ├── jquery-ui.min.js │ │ │ ├── jquery.json.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.treeview.js │ │ │ ├── jquery.ui.nestedSortable.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── tabber-minimized.js │ │ │ └── tinymce │ │ │ │ ├── changelog.txt │ │ │ │ ├── langs │ │ │ │ └── readme.md │ │ │ │ ├── license.txt │ │ │ │ ├── plugins │ │ │ │ ├── advlist │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── anchor │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── autolink │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── autoresize │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── autosave │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── bbcode │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── charmap │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── code │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── colorpicker │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── contextmenu │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── directionality │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── emoticons │ │ │ │ │ ├── img │ │ │ │ │ │ ├── smiley-cool.gif │ │ │ │ │ │ ├── smiley-cry.gif │ │ │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ │ │ ├── smiley-frown.gif │ │ │ │ │ │ ├── smiley-innocent.gif │ │ │ │ │ │ ├── smiley-kiss.gif │ │ │ │ │ │ ├── smiley-laughing.gif │ │ │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ │ │ ├── smiley-sealed.gif │ │ │ │ │ │ ├── smiley-smile.gif │ │ │ │ │ │ ├── smiley-surprised.gif │ │ │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ │ │ ├── smiley-undecided.gif │ │ │ │ │ │ ├── smiley-wink.gif │ │ │ │ │ │ └── smiley-yell.gif │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── example │ │ │ │ │ ├── dialog.html │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── example_dependency │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── fullpage │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── fullscreen │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── hr │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── image │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── imagetools │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── importcss │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── insertdatetime │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── layer │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── legacyoutput │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── link │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── lists │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── media │ │ │ │ │ ├── moxieplayer.swf │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── nonbreaking │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── noneditable │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── pagebreak │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── paste │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── preview │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── print │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── save │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── searchreplace │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── spellchecker │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── tabfocus │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── table │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── template │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── textcolor │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── textpattern │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── visualblocks │ │ │ │ │ ├── css │ │ │ │ │ │ └── visualblocks.css │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── visualchars │ │ │ │ │ └── plugin.min.js │ │ │ │ └── wordcount │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── skins │ │ │ │ └── lightgray │ │ │ │ │ ├── content.inline.min.css │ │ │ │ │ ├── content.min.css │ │ │ │ │ ├── fonts │ │ │ │ │ ├── tinymce-small.eot │ │ │ │ │ ├── tinymce-small.svg │ │ │ │ │ ├── tinymce-small.ttf │ │ │ │ │ ├── tinymce-small.woff │ │ │ │ │ ├── tinymce.eot │ │ │ │ │ ├── tinymce.svg │ │ │ │ │ ├── tinymce.ttf │ │ │ │ │ └── tinymce.woff │ │ │ │ │ ├── img │ │ │ │ │ ├── anchor.gif │ │ │ │ │ ├── loader.gif │ │ │ │ │ ├── object.gif │ │ │ │ │ └── trans.gif │ │ │ │ │ ├── skin.ie7.min.css │ │ │ │ │ └── skin.min.css │ │ │ │ ├── themes │ │ │ │ └── modern │ │ │ │ │ └── theme.min.js │ │ │ │ └── tinymce.min.js │ │ └── release.notes.php │ ├── classes │ │ ├── AdminMenu.php │ │ ├── AdminToolbar.php │ │ ├── Breadcrumb.php │ │ ├── Cache.php │ │ ├── Dependencies.php │ │ ├── EmailVariables.php │ │ ├── ImageProcessing.php │ │ ├── Pagination.php │ │ ├── Plugins.php │ │ ├── RSSFeed.php │ │ ├── Rewrite.php │ │ ├── Scripts.php │ │ ├── Sitemap.php │ │ ├── Stats.php │ │ ├── Styles.php │ │ ├── database │ │ │ ├── DAO.php │ │ │ ├── DBCommandClass.php │ │ │ ├── DBConnectionClass.php │ │ │ ├── DBRecordsetClass.php │ │ │ └── index.php │ │ ├── datatables │ │ │ ├── AlertsDataTable.php │ │ │ ├── BanRulesDataTable.php │ │ │ ├── CommentsDataTable.php │ │ │ ├── DataTable.php │ │ │ ├── ItemsDataTable.php │ │ │ ├── MediaDataTable.php │ │ │ ├── PagesDataTable.php │ │ │ ├── UsersDataTable.php │ │ │ └── index.php │ │ └── index.php │ ├── compatibility.php │ ├── controller │ │ ├── ajax.php │ │ ├── contact.php │ │ ├── custom.php │ │ ├── index.php │ │ ├── item.php │ │ ├── language.php │ │ ├── login.php │ │ ├── main.php │ │ ├── page.php │ │ ├── register.php │ │ ├── search.php │ │ ├── user-non-secure.php │ │ └── user.php │ ├── core │ │ ├── AdminBaseModel.php │ │ ├── AdminSecBaseModel.php │ │ ├── BaseModel.php │ │ ├── Cookie.php │ │ ├── Object_Cache_Factory.php │ │ ├── Params.php │ │ ├── SecBaseModel.php │ │ ├── Session.php │ │ ├── Translation.php │ │ ├── View.php │ │ ├── WebSecBaseModel.php │ │ ├── caches │ │ │ ├── Object_Cache_apc.php │ │ │ ├── Object_Cache_default.php │ │ │ └── Object_Cache_memcache.php │ │ ├── iObject_Cache.php │ │ └── index.php │ ├── cron.php │ ├── db.php │ ├── default-constants.php │ ├── emails.php │ ├── formatting.php │ ├── frm │ │ ├── Admin.form.class.php │ │ ├── Alert.form.class.php │ │ ├── BanRule.form.class.php │ │ ├── Category.form.class.php │ │ ├── Comment.form.class.php │ │ ├── Contact.form.class.php │ │ ├── Field.form.class.php │ │ ├── Form.form.class.php │ │ ├── Item.form.class.php │ │ ├── Language.form.class.php │ │ ├── ManageItems.form.class.php │ │ ├── Page.form.class.php │ │ ├── SendFriend.form.class.php │ │ ├── User.form.class.php │ │ └── index.php │ ├── functions.php │ ├── gui │ │ ├── .gitignore │ │ ├── 404.php │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── admin │ │ │ ├── header.php │ │ │ └── settings.php │ │ ├── alert-form.php │ │ ├── common │ │ │ └── head.php │ │ ├── config.rb │ │ ├── contact.php │ │ ├── css │ │ │ ├── ajax-uploader.css │ │ │ ├── font-awesome-4.1.0 │ │ │ │ ├── css │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ └── font-awesome.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ ├── less │ │ │ │ │ ├── bordered-pulled.less │ │ │ │ │ ├── core.less │ │ │ │ │ ├── fixed-width.less │ │ │ │ │ ├── font-awesome.less │ │ │ │ │ ├── icons.less │ │ │ │ │ ├── larger.less │ │ │ │ │ ├── list.less │ │ │ │ │ ├── mixins.less │ │ │ │ │ ├── path.less │ │ │ │ │ ├── rotated-flipped.less │ │ │ │ │ ├── spinning.less │ │ │ │ │ ├── stacked.less │ │ │ │ │ └── variables.less │ │ │ │ └── scss │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ ├── _core.scss │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ ├── _icons.scss │ │ │ │ │ ├── _larger.scss │ │ │ │ │ ├── _list.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _path.scss │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ ├── _spinning.scss │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font-awesome.scss │ │ │ ├── main.css │ │ │ └── main.css.map │ │ ├── custom.php │ │ ├── favicon │ │ │ ├── favicon-114.png │ │ │ ├── favicon-144.png │ │ │ ├── favicon-48.png │ │ │ ├── favicon-57.png │ │ │ ├── favicon-72.png │ │ │ ├── favicon.ico │ │ │ └── favicon.png │ │ ├── fonts │ │ │ ├── icons.eot │ │ │ ├── icons.svg │ │ │ ├── icons.ttf │ │ │ ├── icons.woff │ │ │ ├── osclass-extra-light.eot │ │ │ ├── osclass-extra-light.ttf │ │ │ ├── osclass-extra-light.woff │ │ │ ├── osclass-regular.woff │ │ │ ├── osclass-ultra-light.eot │ │ │ ├── osclass-ultra-light.svg │ │ │ └── osclass-ultra-light.ttf │ │ ├── footer.php │ │ ├── functions.php │ │ ├── head.php │ │ ├── header.php │ │ ├── images │ │ │ ├── bullet_square.gif │ │ │ ├── button_bg.gif │ │ │ ├── button_light_orange_bg.gif │ │ │ ├── button_link_bg.gif │ │ │ ├── button_link_green_bg.gif │ │ │ ├── button_link_icon.gif │ │ │ ├── checkmark-partial.png │ │ │ ├── checkmark.png │ │ │ ├── comments_quotes.gif │ │ │ ├── cross.png │ │ │ ├── default-logo.jpg │ │ │ ├── icon-remove.png │ │ │ ├── icons.ai │ │ │ ├── icons.png │ │ │ ├── icons@2x 2.png │ │ │ ├── icons@2x.png │ │ │ ├── language_arrow.gif │ │ │ ├── no_photo.gif │ │ │ ├── order_by_current.gif │ │ │ ├── report_flag.gif │ │ │ ├── select_arrow.gif │ │ │ ├── tick.png │ │ │ └── user_default.gif │ │ ├── inc.search.php │ │ ├── index.php │ │ ├── index.php.tpl │ │ ├── item-contact.php │ │ ├── item-edit.php │ │ ├── item-post.php │ │ ├── item-send-friend.php │ │ ├── item-sidebar.php │ │ ├── item.php │ │ ├── js │ │ │ ├── delete_user.js │ │ │ ├── fancybox │ │ │ │ ├── blank.gif │ │ │ │ ├── fancybox_loading.gif │ │ │ │ ├── fancybox_sprite.png │ │ │ │ ├── helpers │ │ │ │ │ ├── fancybox_buttons.png │ │ │ │ │ ├── jquery.fancybox-buttons.css │ │ │ │ │ ├── jquery.fancybox-buttons.js │ │ │ │ │ ├── jquery.fancybox-thumbs.css │ │ │ │ │ └── jquery.fancybox-thumbs.js │ │ │ │ ├── jquery.fancybox.css │ │ │ │ ├── jquery.fancybox.js │ │ │ │ └── jquery.fancybox.pack.js │ │ │ ├── global.js │ │ │ ├── index.php │ │ │ ├── jquery-ui.js │ │ │ ├── jquery-ui │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_100_27b5cb_40x100.png │ │ │ │ │ ├── ui-bg_flat_50_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_999999_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_35c3d9_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_f8da4e_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_79c9ec_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_45_e14f1c_500x100.png │ │ │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ │ │ ├── ui-icons_0078ae_256x240.png │ │ │ │ │ ├── ui-icons_056b93_256x240.png │ │ │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ │ │ ├── ui-icons_e0fdff_256x240.png │ │ │ │ │ ├── ui-icons_f5e175_256x240.png │ │ │ │ │ ├── ui-icons_f7a50d_256x240.png │ │ │ │ │ └── ui-icons_fcd113_256x240.png │ │ │ │ ├── jquery-ui-1.10.2.custom.css │ │ │ │ └── jquery-ui-1.10.2.custom.min.css │ │ │ ├── jquery.js │ │ │ ├── jquery.uniform.js │ │ │ ├── jquery.validate.min.js │ │ │ └── tabber-minimized.js │ │ ├── languages │ │ │ └── en_US │ │ │ │ ├── theme.mo │ │ │ │ └── theme.po │ │ ├── loop-single-premium.php │ │ ├── loop-single.php │ │ ├── loop.php │ │ ├── main.php │ │ ├── package.json │ │ ├── page.php │ │ ├── sass │ │ │ ├── bourbon │ │ │ │ ├── _bourbon-deprecated-upcoming.scss │ │ │ │ ├── _bourbon.scss │ │ │ │ ├── addons │ │ │ │ │ ├── _button.scss │ │ │ │ │ ├── _clearfix.scss │ │ │ │ │ ├── _font-family.scss │ │ │ │ │ ├── _hide-text.scss │ │ │ │ │ ├── _html5-input-types.scss │ │ │ │ │ ├── _position.scss │ │ │ │ │ ├── _prefixer.scss │ │ │ │ │ ├── _retina-image.scss │ │ │ │ │ ├── _size.scss │ │ │ │ │ ├── _timing-functions.scss │ │ │ │ │ └── _triangle.scss │ │ │ │ ├── css3 │ │ │ │ │ ├── _animation.scss │ │ │ │ │ ├── _appearance.scss │ │ │ │ │ ├── _background-image.scss │ │ │ │ │ ├── _background-size.scss │ │ │ │ │ ├── _background.scss │ │ │ │ │ ├── _border-image.scss │ │ │ │ │ ├── _border-radius.scss │ │ │ │ │ ├── _box-sizing.scss │ │ │ │ │ ├── _columns.scss │ │ │ │ │ ├── _flex-box.scss │ │ │ │ │ ├── _font-face.scss │ │ │ │ │ ├── _hidpi-media-query.scss │ │ │ │ │ ├── _image-rendering.scss │ │ │ │ │ ├── _inline-block.scss │ │ │ │ │ ├── _keyframes.scss │ │ │ │ │ ├── _linear-gradient.scss │ │ │ │ │ ├── _perspective.scss │ │ │ │ │ ├── _placeholder.scss │ │ │ │ │ ├── _radial-gradient.scss │ │ │ │ │ ├── _transform.scss │ │ │ │ │ ├── _transition.scss │ │ │ │ │ └── _user-select.scss │ │ │ │ └── functions │ │ │ │ │ ├── _compact.scss │ │ │ │ │ ├── _deprecated-webkit-gradient.scss │ │ │ │ │ ├── _flex-grid.scss │ │ │ │ │ ├── _grid-width.scss │ │ │ │ │ ├── _linear-gradient.scss │ │ │ │ │ ├── _modular-scale.scss │ │ │ │ │ ├── _px-to-em.scss │ │ │ │ │ ├── _radial-gradient.scss │ │ │ │ │ ├── _render-gradients.scss │ │ │ │ │ ├── _tint-shade.scss │ │ │ │ │ └── _transition-property-name.scss │ │ │ ├── colors.scss │ │ │ ├── colors.scss.tpl │ │ │ ├── flashmessage-error.scss │ │ │ ├── footer.scss │ │ │ ├── form.scss │ │ │ ├── global.scss │ │ │ ├── header.scss │ │ │ ├── item.scss │ │ │ ├── list.scss │ │ │ ├── main.scss │ │ │ ├── mixins.scss │ │ │ ├── pagination.scss │ │ │ ├── plugin.scss │ │ │ ├── reset.scss │ │ │ ├── responsive.scss │ │ │ ├── responsive │ │ │ │ ├── 480.scss │ │ │ │ ├── 640.scss │ │ │ │ ├── 740.scss │ │ │ │ ├── form.scss │ │ │ │ ├── header.scss │ │ │ │ ├── item.scss │ │ │ │ ├── list.scss │ │ │ │ ├── show-hide.scss │ │ │ │ ├── structure.scss │ │ │ │ └── ui.scss │ │ │ ├── sidebar.scss │ │ │ ├── typo.scss │ │ │ ├── ui.scss │ │ │ └── user.scss │ │ ├── screenshot.png │ │ ├── screenshot │ │ │ ├── black │ │ │ │ └── screenshot.png │ │ │ ├── blue │ │ │ │ └── screenshot.png │ │ │ ├── purple │ │ │ │ └── screenshot.png │ │ │ └── red │ │ │ │ └── screenshot.png │ │ ├── search-sidebar.php │ │ ├── search.php │ │ ├── search_gallery.php │ │ ├── search_list.php │ │ ├── style.css │ │ ├── tabs.css │ │ ├── themes.json │ │ ├── user-alerts.php │ │ ├── user-change_email.php │ │ ├── user-change_password.php │ │ ├── user-change_username.php │ │ ├── user-custom.php │ │ ├── user-dashboard.php │ │ ├── user-forgot_password.php │ │ ├── user-items.php │ │ ├── user-login.php │ │ ├── user-profile.php │ │ ├── user-public-profile.php │ │ ├── user-public-sidebar.php │ │ ├── user-recover.php │ │ ├── user-register.php │ │ └── user-sidebar.php │ ├── helpers │ │ ├── hAdminMenu.php │ │ ├── hCache.php │ │ ├── hCategories.php │ │ ├── hDatabaseInfo.php │ │ ├── hDefines.php │ │ ├── hErrors.php │ │ ├── hItems.php │ │ ├── hLocale.php │ │ ├── hLocation.php │ │ ├── hMessages.php │ │ ├── hPage.php │ │ ├── hPagination.php │ │ ├── hPlugins.php │ │ ├── hPreference.php │ │ ├── hPremium.php │ │ ├── hSanitize.php │ │ ├── hSearch.php │ │ ├── hSecurity.php │ │ ├── hTheme.php │ │ ├── hTranslations.php │ │ ├── hUsers.php │ │ ├── hUtils.php │ │ ├── hValidate.php │ │ └── index.php │ ├── index.php │ ├── install-functions.php │ ├── install-location.php │ ├── install.php │ ├── installer │ │ ├── basic_data.php │ │ ├── basic_data.sql │ │ ├── index.php │ │ ├── install.css │ │ ├── install.js │ │ ├── pages.sql │ │ ├── readme.php │ │ ├── robots.txt │ │ ├── struct.sql │ │ └── vtip │ │ │ ├── css │ │ │ └── vtip.css │ │ │ ├── images │ │ │ └── vtip_arrow.png │ │ │ ├── index.php │ │ │ └── vtip.js │ ├── locales.php │ ├── mimes.php │ ├── model │ │ ├── Admin.php │ │ ├── Alerts.php │ │ ├── AlertsStats.php │ │ ├── BanRule.php │ │ ├── Category.php │ │ ├── CategoryStats.php │ │ ├── City.php │ │ ├── CityArea.php │ │ ├── CityStats.php │ │ ├── Country.php │ │ ├── CountryStats.php │ │ ├── Cron.php │ │ ├── Currency.php │ │ ├── Dump.php │ │ ├── Field.php │ │ ├── Item.php │ │ ├── ItemComment.php │ │ ├── ItemLocation.php │ │ ├── ItemResource.php │ │ ├── ItemStats.php │ │ ├── LatestSearches.php │ │ ├── LocationsTmp.php │ │ ├── Log.php │ │ ├── OSCLocale.php │ │ ├── Page.php │ │ ├── PluginCategory.php │ │ ├── Preference.php │ │ ├── Region.php │ │ ├── RegionStats.php │ │ ├── Search.php │ │ ├── SiteInfo.php │ │ ├── User.php │ │ ├── UserEmailTmp.php │ │ ├── Widget.php │ │ └── index.php │ ├── timezones.php │ ├── upgrade-funcs.php │ ├── user-agents.php │ └── utils.php ├── pclzip │ ├── gnu-lgpl.txt │ ├── index.php │ ├── pclzip.lib.php │ └── readme.txt ├── php-gettext │ ├── gettext.inc │ ├── gettext.php │ ├── index.php │ └── streams.php ├── phpmailer │ ├── class.phpmailer.php │ ├── class.pop3.php │ ├── class.smtp.php │ └── index.php ├── phpseclib │ ├── Common │ │ └── Functions │ │ │ ├── Objects.php │ │ │ └── Strings.php │ ├── Crypt │ │ ├── AES.php │ │ ├── Blowfish.php │ │ ├── Common │ │ │ ├── BlockCipher.php │ │ │ ├── PKCS.php │ │ │ ├── PKCS1.php │ │ │ ├── PKCS8.php │ │ │ ├── StreamCipher.php │ │ │ └── SymmetricKey.php │ │ ├── DES.php │ │ ├── Hash.php │ │ ├── RC2.php │ │ ├── RC4.php │ │ ├── RSA.php │ │ ├── RSA │ │ │ ├── MSBLOB.php │ │ │ ├── OpenSSH.php │ │ │ ├── PKCS1.php │ │ │ ├── PKCS8.php │ │ │ ├── PuTTY.php │ │ │ ├── Raw.php │ │ │ └── XML.php │ │ ├── Random.php │ │ ├── Rijndael.php │ │ ├── TripleDES.php │ │ └── Twofish.php │ ├── Exception │ │ ├── BadConfigurationException.php │ │ ├── FileNotFoundException.php │ │ ├── NoSupportedAlgorithmsException.php │ │ └── UnsupportedAlgorithmException.php │ ├── File │ │ ├── ANSI.php │ │ ├── ASN1.php │ │ ├── ASN1 │ │ │ ├── Element.php │ │ │ └── Maps │ │ │ │ ├── AccessDescription.php │ │ │ │ ├── AdministrationDomainName.php │ │ │ │ ├── AlgorithmIdentifier.php │ │ │ │ ├── AnotherName.php │ │ │ │ ├── Attribute.php │ │ │ │ ├── AttributeType.php │ │ │ │ ├── AttributeTypeAndValue.php │ │ │ │ ├── AttributeValue.php │ │ │ │ ├── Attributes.php │ │ │ │ ├── AuthorityInfoAccessSyntax.php │ │ │ │ ├── AuthorityKeyIdentifier.php │ │ │ │ ├── BaseDistance.php │ │ │ │ ├── BasicConstraints.php │ │ │ │ ├── BuiltInDomainDefinedAttribute.php │ │ │ │ ├── BuiltInDomainDefinedAttributes.php │ │ │ │ ├── BuiltInStandardAttributes.php │ │ │ │ ├── CPSuri.php │ │ │ │ ├── CRLDistributionPoints.php │ │ │ │ ├── CRLNumber.php │ │ │ │ ├── CRLReason.php │ │ │ │ ├── CertPolicyId.php │ │ │ │ ├── Certificate.php │ │ │ │ ├── CertificateIssuer.php │ │ │ │ ├── CertificateList.php │ │ │ │ ├── CertificatePolicies.php │ │ │ │ ├── CertificateSerialNumber.php │ │ │ │ ├── CertificationRequest.php │ │ │ │ ├── CertificationRequestInfo.php │ │ │ │ ├── CountryName.php │ │ │ │ ├── DigestInfo.php │ │ │ │ ├── DirectoryString.php │ │ │ │ ├── DisplayText.php │ │ │ │ ├── DistributionPoint.php │ │ │ │ ├── DistributionPointName.php │ │ │ │ ├── EDIPartyName.php │ │ │ │ ├── EncryptedData.php │ │ │ │ ├── EncryptedPrivateKeyInfo.php │ │ │ │ ├── ExtKeyUsageSyntax.php │ │ │ │ ├── Extension.php │ │ │ │ ├── ExtensionAttribute.php │ │ │ │ ├── ExtensionAttributes.php │ │ │ │ ├── Extensions.php │ │ │ │ ├── GeneralName.php │ │ │ │ ├── GeneralNames.php │ │ │ │ ├── GeneralSubtree.php │ │ │ │ ├── GeneralSubtrees.php │ │ │ │ ├── HoldInstructionCode.php │ │ │ │ ├── InvalidityDate.php │ │ │ │ ├── IssuerAltName.php │ │ │ │ ├── IssuingDistributionPoint.php │ │ │ │ ├── KeyIdentifier.php │ │ │ │ ├── KeyPurposeId.php │ │ │ │ ├── KeyUsage.php │ │ │ │ ├── Name.php │ │ │ │ ├── NameConstraints.php │ │ │ │ ├── NetworkAddress.php │ │ │ │ ├── NoticeReference.php │ │ │ │ ├── NumericUserIdentifier.php │ │ │ │ ├── ORAddress.php │ │ │ │ ├── OrganizationName.php │ │ │ │ ├── OrganizationalUnitNames.php │ │ │ │ ├── OtherPrimeInfo.php │ │ │ │ ├── OtherPrimeInfos.php │ │ │ │ ├── PBEParameter.php │ │ │ │ ├── PBES2params.php │ │ │ │ ├── PBKDF2params.php │ │ │ │ ├── PBMAC1params.php │ │ │ │ ├── PKCS9String.php │ │ │ │ ├── PersonalName.php │ │ │ │ ├── PolicyInformation.php │ │ │ │ ├── PolicyMappings.php │ │ │ │ ├── PolicyQualifierId.php │ │ │ │ ├── PolicyQualifierInfo.php │ │ │ │ ├── PostalAddress.php │ │ │ │ ├── PrivateDomainName.php │ │ │ │ ├── PrivateKey.php │ │ │ │ ├── PrivateKeyInfo.php │ │ │ │ ├── PrivateKeyUsagePeriod.php │ │ │ │ ├── PublicKeyAndChallenge.php │ │ │ │ ├── PublicKeyInfo.php │ │ │ │ ├── RC2CBCParameter.php │ │ │ │ ├── RDNSequence.php │ │ │ │ ├── RSAPrivateKey.php │ │ │ │ ├── RSAPublicKey.php │ │ │ │ ├── ReasonFlags.php │ │ │ │ ├── RelativeDistinguishedName.php │ │ │ │ ├── RevokedCertificate.php │ │ │ │ ├── SignedPublicKeyAndChallenge.php │ │ │ │ ├── SubjectAltName.php │ │ │ │ ├── SubjectDirectoryAttributes.php │ │ │ │ ├── SubjectPublicKeyInfo.php │ │ │ │ ├── TBSCertList.php │ │ │ │ ├── TBSCertificate.php │ │ │ │ ├── TerminalIdentifier.php │ │ │ │ ├── Time.php │ │ │ │ ├── UniqueIdentifier.php │ │ │ │ ├── UserNotice.php │ │ │ │ ├── Validity.php │ │ │ │ ├── netscape_ca_policy_url.php │ │ │ │ ├── netscape_cert_type.php │ │ │ │ └── netscape_comment.php │ │ └── X509.php │ ├── Math │ │ └── BigInteger.php │ ├── Net │ │ ├── SCP.php │ │ ├── SFTP.php │ │ ├── SFTP │ │ │ └── Stream.php │ │ ├── SSH1.php │ │ └── SSH2.php │ ├── System │ │ └── SSH │ │ │ ├── Agent.php │ │ │ └── Agent │ │ │ └── Identity.php │ ├── autoload.php │ ├── bootstrap.php │ └── openssl.cnf ├── recaptchalib.php └── recaptchalib │ ├── ReCaptcha │ ├── ReCaptcha.php │ ├── RequestMethod.php │ ├── RequestMethod │ │ ├── Curl.php │ │ ├── CurlPost.php │ │ ├── Post.php │ │ ├── Socket.php │ │ └── SocketPost.php │ ├── RequestParameters.php │ └── Response.php │ └── autoload.php ├── oc-load.php └── package.json /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "oc-content/themes/bender"] 2 | path = oc-content/themes/bender 3 | url = https://github.com/osclass/theme-bender.git 4 | -------------------------------------------------------------------------------- /config-sample.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/favicon.ico -------------------------------------------------------------------------------- /oc-admin/ajax/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-admin/controller/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-admin/controller/settings/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-admin/gui/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-admin/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/images/close.png -------------------------------------------------------------------------------- /oc-admin/images/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oc-admin/images/osclass-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/images/osclass-logo.gif -------------------------------------------------------------------------------- /oc-admin/style/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oc-admin/themes/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-admin/themes/modern/guideline/parts/menu.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/arrow.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/arrow2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/arrow2.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/arrow_down.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/arrow_up.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/bnt-overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/bnt-overlay.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/favicon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/favicon-114.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/favicon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/favicon-144.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/favicon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/favicon-48.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/favicon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/favicon-57.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/favicon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/favicon-72.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/gr-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/gr-a.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/gr-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/gr-b.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/gr-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/gr-c.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/gr-d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/gr-d.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/gr-e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/gr-e.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/gr-f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/gr-f.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/gr-g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/gr-g.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/gr-h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/gr-h.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/gr-i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/gr-i.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/icon-new-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/icon-new-window.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/info-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/info-icon.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/loading.gif -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/market-buy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/market-buy.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/market-split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/market-split.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/market-split.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/market-split.psd -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/osc-tooltip-error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/osc-tooltip-error.gif -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/osc-tooltip-gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/osc-tooltip-gray.gif -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/question.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/sort_asc.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/sort_desc.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/spinner_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/spinner_loading.gif -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/split-switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/split-switch.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/split.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/split.ai -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/split.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/split@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/split@2x.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/images/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-admin/themes/modern/images/switch.png -------------------------------------------------------------------------------- /oc-admin/themes/modern/less/guideline.less: -------------------------------------------------------------------------------- 1 | div.guideline-header{ 2 | position:relative; 3 | } 4 | pre, 5 | code { 6 | padding: 8px; 7 | background-color: @color-gray-light; 8 | border: 1px solid @color-gray-soft; 9 | word-break: break-all; 10 | word-wrap: break-word; 11 | white-space: pre; 12 | white-space: pre-wrap; 13 | .rounded-corners; 14 | } -------------------------------------------------------------------------------- /oc-admin/themes/modern/less/helpbox.less: -------------------------------------------------------------------------------- 1 | #help-box{ 2 | background:@warning-bg; 3 | border:solid 1px @warning-border; 4 | border-top:0; 5 | padding: 18px 30px; 6 | min-height:42px; 7 | color:@color-gray-dim; 8 | display:none; 9 | } 10 | #help-box h3{ 11 | margin:0; 12 | font-size:14px; 13 | } 14 | #help-box p{ 15 | margin:0; 16 | margin-top:12px; 17 | font-size:13px; 18 | margin-right:30px; 19 | line-height:18px; 20 | } -------------------------------------------------------------------------------- /oc-admin/themes/modern/less/pages-categories.less: -------------------------------------------------------------------------------- 1 | .category-details-form{ 2 | 3 | } -------------------------------------------------------------------------------- /oc-admin/themes/modern/less/pages-plugins.less: -------------------------------------------------------------------------------- 1 | .plugin-support-icon { 2 | margin: 5px; 3 | } -------------------------------------------------------------------------------- /oc-admin/themes/modern/less/pages-settings.less: -------------------------------------------------------------------------------- 1 | table.table-small td{ 2 | vertical-align: bottom; 3 | } 4 | .custom-date-time { 5 | 6 | #date { 7 | float:left; 8 | width:150px; 9 | } 10 | #time { 11 | margin-top:20px; 12 | float:left; 13 | width:150px; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /oc-admin/themes/modern/less/pages-stats.less: -------------------------------------------------------------------------------- 1 | #stats-page .widget-box-content{ 2 | height:225px; 3 | } -------------------------------------------------------------------------------- /oc-admin/themes/modern/parts/footer.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |
5 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /oc-content/downloads/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-content/downloads/oc-temp/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-content/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-content/languages/en_US/core.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-content/languages/en_US/core.mo -------------------------------------------------------------------------------- /oc-content/languages/en_US/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-content/languages/en_US/messages.mo -------------------------------------------------------------------------------- /oc-content/languages/en_US/theme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-content/languages/en_US/theme.mo -------------------------------------------------------------------------------- /oc-content/languages/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-content/plugins/google_analytics/footer.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oc-content/plugins/google_analytics/languages/cs_CZ/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-content/plugins/google_analytics/languages/cs_CZ/messages.mo -------------------------------------------------------------------------------- /oc-content/plugins/google_analytics/languages/de_DE/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-content/plugins/google_analytics/languages/de_DE/messages.mo -------------------------------------------------------------------------------- /oc-content/plugins/google_analytics/languages/fa_IR/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-content/plugins/google_analytics/languages/fa_IR/messages.mo -------------------------------------------------------------------------------- /oc-content/plugins/google_analytics/languages/lt_LT/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-content/plugins/google_analytics/languages/lt_LT/messages.mo -------------------------------------------------------------------------------- /oc-content/plugins/google_analytics/languages/lv_LV/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-content/plugins/google_analytics/languages/lv_LV/messages.mo -------------------------------------------------------------------------------- /oc-content/plugins/google_analytics/languages/ru_RU/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-content/plugins/google_analytics/languages/ru_RU/messages.mo -------------------------------------------------------------------------------- /oc-content/plugins/google_analytics/languages/sk_SK/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-content/plugins/google_analytics/languages/sk_SK/messages.mo -------------------------------------------------------------------------------- /oc-content/plugins/google_analytics/languages/sv_SE/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-content/plugins/google_analytics/languages/sv_SE/messages.mo -------------------------------------------------------------------------------- /oc-content/plugins/google_analytics/languages/th_TH/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-content/plugins/google_analytics/languages/th_TH/messages.mo -------------------------------------------------------------------------------- /oc-content/plugins/google_analytics/languages/vi_VN/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-content/plugins/google_analytics/languages/vi_VN/messages.mo -------------------------------------------------------------------------------- /oc-content/plugins/google_maps/languages/en_US/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-content/plugins/google_maps/languages/en_US/messages.mo -------------------------------------------------------------------------------- /oc-content/plugins/google_maps/languages/es_ES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-content/plugins/google_maps/languages/es_ES/messages.mo -------------------------------------------------------------------------------- /oc-content/plugins/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-content/themes/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-content/uploads/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-content/uploads/page-images/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-content/uploads/temp/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/CREDITS: -------------------------------------------------------------------------------- 1 | 2 | CREDITS 3 | 4 | Almost everything written by Edward Z. Yang (Ambush Commander). Lots of thanks 5 | to the DevNetwork Community for their help (see docs/ref-devnetwork.html for 6 | more details), Feyd especially (namely IPv6 and optimization). Thanks to RSnake 7 | for letting me package his fantastic XSS cheatsheet for a smoketest. 8 | 9 | vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier.auto.php: -------------------------------------------------------------------------------- 1 | purify($html, $config); 23 | } 24 | 25 | // vim: et sw=4 sts=4 26 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier.path.php: -------------------------------------------------------------------------------- 1 | parseCDATA($string); 18 | } 19 | } 20 | 21 | // vim: et sw=4 sts=4 22 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/AttrDef/URI/Email.php: -------------------------------------------------------------------------------- 1 | 5 | */ 6 | class HTMLPurifier_AttrTransform_ScriptRequired extends HTMLPurifier_AttrTransform 7 | { 8 | /** 9 | * @param array $attr 10 | * @param HTMLPurifier_Config $config 11 | * @param HTMLPurifier_Context $context 12 | * @return array 13 | */ 14 | public function transform($attr, $config, $context) 15 | { 16 | if (!isset($attr['type'])) { 17 | $attr['type'] = 'text/javascript'; 18 | } 19 | return $attr; 20 | } 21 | } 22 | 23 | // vim: et sw=4 sts=4 24 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/Exception.php: -------------------------------------------------------------------------------- 1 | 8 | This directive can be used to add custom auto-format injectors. 9 | Specify an array of injector names (class name minus the prefix) 10 | or concrete implementations. Injector class must exist. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.DisplayLinkURI.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.DisplayLinkURI 2 | TYPE: bool 3 | VERSION: 3.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

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

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

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

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.PurifierLinkify.DocURL.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.PurifierLinkify.DocURL 2 | TYPE: string 3 | VERSION: 2.0.1 4 | DEFAULT: '#%s' 5 | ALIASES: AutoFormatParam.PurifierLinkifyDocURL 6 | --DESCRIPTION-- 7 |

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

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

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

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions 2 | TYPE: lookup 3 | VERSION: 4.0.0 4 | DEFAULT: array('td' => true, 'th' => true) 5 | --DESCRIPTION-- 6 |

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

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveEmpty.RemoveNbsp.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.RemoveEmpty.RemoveNbsp 2 | TYPE: bool 3 | VERSION: 4.0.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

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

11 |

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

15 | --# vim: et sw=4 sts=4 16 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/AutoFormat.RemoveSpansWithoutAttributes.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.RemoveSpansWithoutAttributes 2 | TYPE: bool 3 | VERSION: 4.0.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

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

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/CSS.AllowDuplicates.txt: -------------------------------------------------------------------------------- 1 | CSS.AllowDuplicates 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 4.8.0 5 | --DESCRIPTION-- 6 |

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

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/CSS.AllowImportant.txt: -------------------------------------------------------------------------------- 1 | CSS.AllowImportant 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 3.1.0 5 | --DESCRIPTION-- 6 | This parameter determines whether or not !important cascade modifiers should 7 | be allowed in user CSS. If false, !important will stripped. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/CSS.AllowTricky.txt: -------------------------------------------------------------------------------- 1 | CSS.AllowTricky 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 3.1.0 5 | --DESCRIPTION-- 6 | This parameter determines whether or not to allow "tricky" CSS properties and 7 | values. Tricky CSS properties/values can drastically modify page layout or 8 | be used for deceptive practices but do not directly constitute a security risk. 9 | For example, display:none; is considered a tricky property that 10 | will only be allowed if this directive is set to true. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/CSS.AllowedFonts.txt: -------------------------------------------------------------------------------- 1 | CSS.AllowedFonts 2 | TYPE: lookup/null 3 | VERSION: 4.3.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 |

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

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/CSS.AllowedProperties.txt: -------------------------------------------------------------------------------- 1 | CSS.AllowedProperties 2 | TYPE: lookup/null 3 | VERSION: 3.1.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

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

14 |

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

18 | --# vim: et sw=4 sts=4 19 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/CSS.DefinitionRev.txt: -------------------------------------------------------------------------------- 1 | CSS.DefinitionRev 2 | TYPE: int 3 | VERSION: 2.0.0 4 | DEFAULT: 1 5 | --DESCRIPTION-- 6 | 7 |

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

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/CSS.ForbiddenProperties.txt: -------------------------------------------------------------------------------- 1 | CSS.ForbiddenProperties 2 | TYPE: lookup 3 | VERSION: 4.2.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 |

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

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/CSS.MaxImgLength.txt: -------------------------------------------------------------------------------- 1 | CSS.MaxImgLength 2 | TYPE: string/null 3 | DEFAULT: '1200px' 4 | VERSION: 3.1.1 5 | --DESCRIPTION-- 6 |

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

16 | --# vim: et sw=4 sts=4 17 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/CSS.Proprietary.txt: -------------------------------------------------------------------------------- 1 | CSS.Proprietary 2 | TYPE: bool 3 | VERSION: 3.0.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | Whether or not to allow safe, proprietary CSS values. 9 |

10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/CSS.Trusted.txt: -------------------------------------------------------------------------------- 1 | CSS.Trusted 2 | TYPE: bool 3 | VERSION: 4.2.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Indicates whether or not the user's CSS input is trusted or not. If the 7 | input is trusted, a more expansive set of allowed properties. See 8 | also %HTML.Trusted. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Cache.DefinitionImpl.txt: -------------------------------------------------------------------------------- 1 | Cache.DefinitionImpl 2 | TYPE: string/null 3 | VERSION: 2.0.0 4 | DEFAULT: 'Serializer' 5 | --DESCRIPTION-- 6 | 7 | This directive defines which method to use when caching definitions, 8 | the complex data-type that makes HTML Purifier tick. Set to null 9 | to disable caching (not recommended, as you will see a definite 10 | performance degradation). 11 | 12 | --ALIASES-- 13 | Core.DefinitionCache 14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPath.txt: -------------------------------------------------------------------------------- 1 | Cache.SerializerPath 2 | TYPE: string/null 3 | VERSION: 2.0.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

8 | Absolute path with no trailing slash to store serialized definitions in. 9 | Default is within the 10 | HTML Purifier library inside DefinitionCache/Serializer. This 11 | path must be writable by the webserver. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Cache.SerializerPermissions.txt: -------------------------------------------------------------------------------- 1 | Cache.SerializerPermissions 2 | TYPE: int/null 3 | VERSION: 4.3.0 4 | DEFAULT: 0755 5 | --DESCRIPTION-- 6 | 7 |

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

11 |

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

16 | --# vim: et sw=4 sts=4 17 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Core.AggressivelyRemoveScript.txt: -------------------------------------------------------------------------------- 1 | Core.AggressivelyRemoveScript 2 | TYPE: bool 3 | VERSION: 4.9.0 4 | DEFAULT: true 5 | --DESCRIPTION-- 6 |

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

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

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

16 | --# vim: et sw=4 sts=4 17 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Core.CollectErrors.txt: -------------------------------------------------------------------------------- 1 | Core.CollectErrors 2 | TYPE: bool 3 | VERSION: 2.0.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 | Whether or not to collect errors found while filtering the document. This 8 | is a useful way to give feedback to your users. Warning: 9 | Currently this feature is very patchy and experimental, with lots of 10 | possible error messages not yet implemented. It will not cause any 11 | problems, but it may not help your users either. 12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Core.ConvertDocumentToFragment.txt: -------------------------------------------------------------------------------- 1 | Core.ConvertDocumentToFragment 2 | TYPE: bool 3 | DEFAULT: true 4 | --DESCRIPTION-- 5 | 6 | This parameter determines whether or not the filter should convert 7 | input that is a full document with html and body tags to a fragment 8 | of just the contents of a body tag. This parameter is simply something 9 | HTML Purifier can do during an edge-case: for most inputs, this 10 | processing is not necessary. 11 | 12 | --ALIASES-- 13 | Core.AcceptFullDocuments 14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Core.DisableExcludes.txt: -------------------------------------------------------------------------------- 1 | Core.DisableExcludes 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 4.5.0 5 | --DESCRIPTION-- 6 |

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

14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Core.EnableIDNA.txt: -------------------------------------------------------------------------------- 1 | Core.EnableIDNA 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 4.4.0 5 | --DESCRIPTION-- 6 | Allows international domain names in URLs. This configuration option 7 | requires the PEAR Net_IDNA2 module to be installed. It operates by 8 | punycoding any internationalized host names for maximum portability. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidChildren.txt: -------------------------------------------------------------------------------- 1 | Core.EscapeInvalidChildren 2 | TYPE: bool 3 | DEFAULT: false 4 | --DESCRIPTION-- 5 |

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

6 | 7 |

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

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidTags.txt: -------------------------------------------------------------------------------- 1 | Core.EscapeInvalidTags 2 | TYPE: bool 3 | DEFAULT: false 4 | --DESCRIPTION-- 5 | When true, invalid tags will be written back to the document as plain text. 6 | Otherwise, they are silently dropped. 7 | --# vim: et sw=4 sts=4 8 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Core.EscapeNonASCIICharacters.txt: -------------------------------------------------------------------------------- 1 | Core.EscapeNonASCIICharacters 2 | TYPE: bool 3 | VERSION: 1.4.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | This directive overcomes a deficiency in %Core.Encoding by blindly 7 | converting all non-ASCII characters into decimal numeric entities before 8 | converting it to its native encoding. This means that even characters that 9 | can be expressed in the non-UTF-8 encoding will be entity-ized, which can 10 | be a real downer for encodings like Big5. It also assumes that the ASCII 11 | repetoire is available, although this is the case for almost all encodings. 12 | Anyway, use UTF-8! 13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Core.HiddenElements.txt: -------------------------------------------------------------------------------- 1 | Core.HiddenElements 2 | TYPE: lookup 3 | --DEFAULT-- 4 | array ( 5 | 'script' => true, 6 | 'style' => true, 7 | ) 8 | --DESCRIPTION-- 9 | 10 |

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

19 | --# vim: et sw=4 sts=4 20 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Core.Language.txt: -------------------------------------------------------------------------------- 1 | Core.Language 2 | TYPE: string 3 | VERSION: 2.0.0 4 | DEFAULT: 'en' 5 | --DESCRIPTION-- 6 | 7 | ISO 639 language code for localizable things in HTML Purifier to use, 8 | which is mainly error reporting. There is currently only an English (en) 9 | translation, so this directive is currently useless. 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Core.MaintainLineNumbers.txt: -------------------------------------------------------------------------------- 1 | Core.MaintainLineNumbers 2 | TYPE: bool/null 3 | VERSION: 2.0.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

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

16 | --# vim: et sw=4 sts=4 17 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Core.NormalizeNewlines.txt: -------------------------------------------------------------------------------- 1 | Core.NormalizeNewlines 2 | TYPE: bool 3 | VERSION: 4.2.0 4 | DEFAULT: true 5 | --DESCRIPTION-- 6 |

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

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Core.RemoveInvalidImg.txt: -------------------------------------------------------------------------------- 1 | Core.RemoveInvalidImg 2 | TYPE: bool 3 | DEFAULT: true 4 | VERSION: 1.3.0 5 | --DESCRIPTION-- 6 | 7 |

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

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Core.RemoveProcessingInstructions.txt: -------------------------------------------------------------------------------- 1 | Core.RemoveProcessingInstructions 2 | TYPE: bool 3 | VERSION: 4.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Instead of escaping processing instructions in the form <? ... 7 | ?>, remove it out-right. This may be useful if the HTML 8 | you are validating contains XML processing instruction gunk, however, 9 | it can also be user-unfriendly for people attempting to post PHP 10 | snippets. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Core.RemoveScriptContents.txt: -------------------------------------------------------------------------------- 1 | Core.RemoveScriptContents 2 | TYPE: bool/null 3 | DEFAULT: NULL 4 | VERSION: 2.0.0 5 | DEPRECATED-VERSION: 2.1.0 6 | DEPRECATED-USE: Core.HiddenElements 7 | --DESCRIPTION-- 8 |

9 | This directive enables HTML Purifier to remove not only script tags 10 | but all of their contents. 11 |

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Filter.Custom.txt: -------------------------------------------------------------------------------- 1 | Filter.Custom 2 | TYPE: list 3 | VERSION: 3.1.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 |

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

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

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

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

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

11 |

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

16 | --# vim: et sw=4 sts=4 17 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Filter.YouTube.txt: -------------------------------------------------------------------------------- 1 | Filter.YouTube 2 | TYPE: bool 3 | VERSION: 3.1.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

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

11 |

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

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

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

12 |

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

19 | --# vim: et sw=4 sts=4 20 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.AllowedComments.txt: -------------------------------------------------------------------------------- 1 | HTML.AllowedComments 2 | TYPE: lookup 3 | VERSION: 4.4.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | A whitelist which indicates what explicit comment bodies should be 7 | allowed, modulo leading and trailing whitespace. See also %HTML.AllowedCommentsRegexp 8 | (these directives are union'ed together, so a comment is considered 9 | valid if any directive deems it valid.) 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.Attr.Name.UseCDATA.txt: -------------------------------------------------------------------------------- 1 | HTML.Attr.Name.UseCDATA 2 | TYPE: bool 3 | DEFAULT: false 4 | VERSION: 4.0.0 5 | --DESCRIPTION-- 6 | The W3C specification DTD defines the name attribute to be CDATA, not ID, due 7 | to limitations of DTD. In certain documents, this relaxed behavior is desired, 8 | whether it is to specify duplicate names, or to specify names that would be 9 | illegal IDs (for example, names that begin with a digit.) Set this configuration 10 | directive to true to use the relaxed parsing rules. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.BlockWrapper.txt: -------------------------------------------------------------------------------- 1 | HTML.BlockWrapper 2 | TYPE: string 3 | VERSION: 1.3.0 4 | DEFAULT: 'p' 5 | --DESCRIPTION-- 6 | 7 |

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

11 |

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

18 | --# vim: et sw=4 sts=4 19 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.CustomDoctype.txt: -------------------------------------------------------------------------------- 1 | HTML.CustomDoctype 2 | TYPE: string/null 3 | VERSION: 2.0.1 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 | A custom doctype for power-users who defined their own document 8 | type. This directive only applies when %HTML.Doctype is blank. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.DefinitionRev.txt: -------------------------------------------------------------------------------- 1 | HTML.DefinitionRev 2 | TYPE: int 3 | VERSION: 2.0.0 4 | DEFAULT: 1 5 | --DESCRIPTION-- 6 | 7 |

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

16 | --# vim: et sw=4 sts=4 17 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.Doctype.txt: -------------------------------------------------------------------------------- 1 | HTML.Doctype 2 | TYPE: string/null 3 | DEFAULT: NULL 4 | --DESCRIPTION-- 5 | Doctype to use during filtering. Technically speaking this is not actually 6 | a doctype (as it does not identify a corresponding DTD), but we are using 7 | this name for sake of simplicity. When non-blank, this will override any 8 | older directives like %HTML.XHTML or %HTML.Strict. 9 | --ALLOWED-- 10 | 'HTML 4.01 Transitional', 'HTML 4.01 Strict', 'XHTML 1.0 Transitional', 'XHTML 1.0 Strict', 'XHTML 1.1' 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.FlashAllowFullScreen.txt: -------------------------------------------------------------------------------- 1 | HTML.FlashAllowFullScreen 2 | TYPE: bool 3 | VERSION: 4.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit embedded Flash content from 8 | %HTML.SafeObject to expand to the full screen. Corresponds to 9 | the allowFullScreen parameter. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.MaxImgLength.txt: -------------------------------------------------------------------------------- 1 | HTML.MaxImgLength 2 | TYPE: int/null 3 | DEFAULT: 1200 4 | VERSION: 3.1.1 5 | --DESCRIPTION-- 6 |

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

14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.Nofollow.txt: -------------------------------------------------------------------------------- 1 | HTML.Nofollow 2 | TYPE: bool 3 | VERSION: 4.3.0 4 | DEFAULT: FALSE 5 | --DESCRIPTION-- 6 | If enabled, nofollow rel attributes are added to all outgoing links. 7 | --# vim: et sw=4 sts=4 8 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.Parent.txt: -------------------------------------------------------------------------------- 1 | HTML.Parent 2 | TYPE: string 3 | VERSION: 1.3.0 4 | DEFAULT: 'div' 5 | --DESCRIPTION-- 6 | 7 |

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

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.Proprietary.txt: -------------------------------------------------------------------------------- 1 | HTML.Proprietary 2 | TYPE: bool 3 | VERSION: 3.1.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

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

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.SafeEmbed.txt: -------------------------------------------------------------------------------- 1 | HTML.SafeEmbed 2 | TYPE: bool 3 | VERSION: 3.1.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit embed tags in documents, with a number of extra 8 | security features added to prevent script execution. This is similar to 9 | what websites like MySpace do to embed tags. Embed is a proprietary 10 | element and will cause your website to stop validating; you should 11 | see if you can use %Output.FlashCompat with %HTML.SafeObject instead 12 | first.

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.SafeIframe.txt: -------------------------------------------------------------------------------- 1 | HTML.SafeIframe 2 | TYPE: bool 3 | VERSION: 4.4.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit iframe tags in untrusted documents. This 8 | directive must be accompanied by a whitelist of permitted iframes, 9 | such as %URI.SafeIframeRegexp, otherwise it will fatally error. 10 | This directive has no effect on strict doctypes, as iframes are not 11 | valid. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.SafeObject.txt: -------------------------------------------------------------------------------- 1 | HTML.SafeObject 2 | TYPE: bool 3 | VERSION: 3.1.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | Whether or not to permit object tags in documents, with a number of extra 8 | security features added to prevent script execution. This is similar to 9 | what websites like MySpace do to object tags. You should also enable 10 | %Output.FlashCompat in order to generate Internet Explorer 11 | compatibility code for your object tags. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.SafeScripting.txt: -------------------------------------------------------------------------------- 1 | HTML.SafeScripting 2 | TYPE: lookup 3 | VERSION: 4.5.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 |

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

10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.Strict.txt: -------------------------------------------------------------------------------- 1 | HTML.Strict 2 | TYPE: bool 3 | VERSION: 1.3.0 4 | DEFAULT: false 5 | DEPRECATED-VERSION: 1.7.0 6 | DEPRECATED-USE: HTML.Doctype 7 | --DESCRIPTION-- 8 | Determines whether or not to use Transitional (loose) or Strict rulesets. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.TargetBlank.txt: -------------------------------------------------------------------------------- 1 | HTML.TargetBlank 2 | TYPE: bool 3 | VERSION: 4.4.0 4 | DEFAULT: FALSE 5 | --DESCRIPTION-- 6 | If enabled, target=blank attributes are added to all outgoing links. 7 | (This includes links from an HTTPS version of a page to an HTTP version.) 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.TargetNoopener.txt: -------------------------------------------------------------------------------- 1 | --# vim: et sw=4 sts=4 2 | HTML.TargetNoopener 3 | TYPE: bool 4 | VERSION: 4.8.0 5 | DEFAULT: TRUE 6 | --DESCRIPTION-- 7 | If enabled, noopener rel attributes are added to links which have 8 | a target attribute associated with them. This prevents malicious 9 | destinations from overwriting the original window. 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.TargetNoreferrer.txt: -------------------------------------------------------------------------------- 1 | HTML.TargetNoreferrer 2 | TYPE: bool 3 | VERSION: 4.8.0 4 | DEFAULT: TRUE 5 | --DESCRIPTION-- 6 | If enabled, noreferrer rel attributes are added to links which have 7 | a target attribute associated with them. This prevents malicious 8 | destinations from overwriting the original window. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.TidyAdd.txt: -------------------------------------------------------------------------------- 1 | HTML.TidyAdd 2 | TYPE: lookup 3 | VERSION: 2.0.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | 7 | Fixes to add to the default set of Tidy fixes as per your level. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.TidyRemove.txt: -------------------------------------------------------------------------------- 1 | HTML.TidyRemove 2 | TYPE: lookup 3 | VERSION: 2.0.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | 7 | Fixes to remove from the default set of Tidy fixes as per your level. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.Trusted.txt: -------------------------------------------------------------------------------- 1 | HTML.Trusted 2 | TYPE: bool 3 | VERSION: 2.0.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Indicates whether or not the user input is trusted or not. If the input is 7 | trusted, a more expansive set of allowed tags and attributes will be used. 8 | See also %CSS.Trusted. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/HTML.XHTML.txt: -------------------------------------------------------------------------------- 1 | HTML.XHTML 2 | TYPE: bool 3 | DEFAULT: true 4 | VERSION: 1.1.0 5 | DEPRECATED-VERSION: 1.7.0 6 | DEPRECATED-USE: HTML.Doctype 7 | --DESCRIPTION-- 8 | Determines whether or not output is XHTML 1.0 or HTML 4.01 flavor. 9 | --ALIASES-- 10 | Core.XHTML 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Output.CommentScriptContents.txt: -------------------------------------------------------------------------------- 1 | Output.CommentScriptContents 2 | TYPE: bool 3 | VERSION: 2.0.0 4 | DEFAULT: true 5 | --DESCRIPTION-- 6 | Determines whether or not HTML Purifier should attempt to fix up the 7 | contents of script tags for legacy browsers with comments. 8 | --ALIASES-- 9 | Core.CommentScriptContents 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Output.FixInnerHTML.txt: -------------------------------------------------------------------------------- 1 | Output.FixInnerHTML 2 | TYPE: bool 3 | VERSION: 4.3.0 4 | DEFAULT: true 5 | --DESCRIPTION-- 6 |

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

15 | --# vim: et sw=4 sts=4 16 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Output.FlashCompat.txt: -------------------------------------------------------------------------------- 1 | Output.FlashCompat 2 | TYPE: bool 3 | VERSION: 4.1.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | If true, HTML Purifier will generate Internet Explorer compatibility 8 | code for all object code. This is highly recommended if you enable 9 | %HTML.SafeObject. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Output.Newline.txt: -------------------------------------------------------------------------------- 1 | Output.Newline 2 | TYPE: string/null 3 | VERSION: 2.0.1 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

8 | Newline string to format final output with. If left null, HTML Purifier 9 | will auto-detect the default newline type of the system and use that; 10 | you can manually override it here. Remember, \r\n is Windows, \r 11 | is Mac, and \n is Unix. 12 |

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Output.SortAttr.txt: -------------------------------------------------------------------------------- 1 | Output.SortAttr 2 | TYPE: bool 3 | VERSION: 3.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

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

14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/Test.ForceNoIconv.txt: -------------------------------------------------------------------------------- 1 | Test.ForceNoIconv 2 | TYPE: bool 3 | DEFAULT: false 4 | --DESCRIPTION-- 5 | When set to true, HTMLPurifier_Encoder will act as if iconv does not exist 6 | and use only pure PHP implementations. 7 | --# vim: et sw=4 sts=4 8 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/URI.AllowedSchemes.txt: -------------------------------------------------------------------------------- 1 | URI.AllowedSchemes 2 | TYPE: lookup 3 | --DEFAULT-- 4 | array ( 5 | 'http' => true, 6 | 'https' => true, 7 | 'mailto' => true, 8 | 'ftp' => true, 9 | 'nntp' => true, 10 | 'news' => true, 11 | 'tel' => true, 12 | ) 13 | --DESCRIPTION-- 14 | Whitelist that defines the schemes that a URI is allowed to have. This 15 | prevents XSS attacks from using pseudo-schemes like javascript or mocha. 16 | There is also support for the data and file 17 | URI schemes, but they are not enabled by default. 18 | --# vim: et sw=4 sts=4 19 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/URI.DefaultScheme.txt: -------------------------------------------------------------------------------- 1 | URI.DefaultScheme 2 | TYPE: string/null 3 | DEFAULT: 'http' 4 | --DESCRIPTION-- 5 | 6 |

7 | Defines through what scheme the output will be served, in order to 8 | select the proper object validator when no scheme information is present. 9 |

10 | 11 |

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

15 | --# vim: et sw=4 sts=4 16 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/URI.DefinitionID.txt: -------------------------------------------------------------------------------- 1 | URI.DefinitionID 2 | TYPE: string/null 3 | VERSION: 2.1.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

8 | Unique identifier for a custom-built URI definition. If you want 9 | to add custom URIFilters, you must specify this value. 10 |

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/URI.DefinitionRev.txt: -------------------------------------------------------------------------------- 1 | URI.DefinitionRev 2 | TYPE: int 3 | VERSION: 2.1.0 4 | DEFAULT: 1 5 | --DESCRIPTION-- 6 | 7 |

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

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/URI.Disable.txt: -------------------------------------------------------------------------------- 1 | URI.Disable 2 | TYPE: bool 3 | VERSION: 1.3.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

8 | Disables all URIs in all forms. Not sure why you'd want to do that 9 | (after all, the Internet's founded on the notion of a hyperlink). 10 |

11 | 12 | --ALIASES-- 13 | Attr.DisableURI 14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/URI.DisableExternal.txt: -------------------------------------------------------------------------------- 1 | URI.DisableExternal 2 | TYPE: bool 3 | VERSION: 1.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Disables links to external websites. This is a highly effective anti-spam 7 | and anti-pagerank-leech measure, but comes at a hefty price: nolinks or 8 | images outside of your domain will be allowed. Non-linkified URIs will 9 | still be preserved. If you want to be able to link to subdomains or use 10 | absolute URIs, specify %URI.Host for your website. 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/URI.DisableExternalResources.txt: -------------------------------------------------------------------------------- 1 | URI.DisableExternalResources 2 | TYPE: bool 3 | VERSION: 1.3.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Disables the embedding of external resources, preventing users from 7 | embedding things like images from other hosts. This prevents access 8 | tracking (good for email viewers), bandwidth leeching, cross-site request 9 | forging, goatse.cx posting, and other nasties, but also results in a loss 10 | of end-user functionality (they can't directly post a pic they posted from 11 | Flickr anymore). Use it if you don't have a robust user-content moderation 12 | team. 13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/URI.DisableResources.txt: -------------------------------------------------------------------------------- 1 | URI.DisableResources 2 | TYPE: bool 3 | VERSION: 4.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

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

11 |

12 | Note: While this directive has been available since 1.3.0, 13 | it didn't actually start doing anything until 4.2.0. 14 |

15 | --# vim: et sw=4 sts=4 16 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/URI.HostBlacklist.txt: -------------------------------------------------------------------------------- 1 | URI.HostBlacklist 2 | TYPE: list 3 | VERSION: 1.3.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | List of strings that are forbidden in the host of any URI. Use it to kill 7 | domain names of spam, etc. Note that it will catch anything in the domain, 8 | so moo.com will catch moo.com.example.com. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/URI.MakeAbsolute.txt: -------------------------------------------------------------------------------- 1 | URI.MakeAbsolute 2 | TYPE: bool 3 | VERSION: 2.1.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 |

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

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/URI.MungeResources.txt: -------------------------------------------------------------------------------- 1 | URI.MungeResources 2 | TYPE: bool 3 | VERSION: 3.1.1 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

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

13 |

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

17 | --# vim: et sw=4 sts=4 18 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/URI.OverrideAllowedSchemes.txt: -------------------------------------------------------------------------------- 1 | URI.OverrideAllowedSchemes 2 | TYPE: bool 3 | DEFAULT: true 4 | --DESCRIPTION-- 5 | If this is set to true (which it is by default), you can override 6 | %URI.AllowedSchemes by simply registering a HTMLPurifier_URIScheme to the 7 | registry. If false, you will also have to update that directive in order 8 | to add more schemes. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/ConfigSchema/schema/info.ini: -------------------------------------------------------------------------------- 1 | name = "HTML Purifier" 2 | 3 | ; vim: et sw=4 sts=4 4 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/DefinitionCache/Serializer/README: -------------------------------------------------------------------------------- 1 | This is a dummy file to prevent Git from ignoring this empty directory. 2 | 3 | vim: et sw=4 sts=4 4 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/Exception.php: -------------------------------------------------------------------------------- 1 | addBlankElement('a'); 21 | $a->attr_transform_post[] = new HTMLPurifier_AttrTransform_Nofollow(); 22 | } 23 | } 24 | 25 | // vim: et sw=4 sts=4 26 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/HTMLModule/NonXMLCommonAttributes.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'lang' => 'LanguageCode', 16 | ) 17 | ); 18 | } 19 | 20 | // vim: et sw=4 sts=4 21 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/HTMLModule/TargetBlank.php: -------------------------------------------------------------------------------- 1 | addBlankElement('a'); 20 | $a->attr_transform_post[] = new HTMLPurifier_AttrTransform_TargetBlank(); 21 | } 22 | } 23 | 24 | // vim: et sw=4 sts=4 25 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/HTMLModule/TargetNoopener.php: -------------------------------------------------------------------------------- 1 | addBlankElement('a'); 19 | $a->attr_transform_post[] = new HTMLPurifier_AttrTransform_TargetNoopener(); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/HTMLModule/TargetNoreferrer.php: -------------------------------------------------------------------------------- 1 | addBlankElement('a'); 19 | $a->attr_transform_post[] = new HTMLPurifier_AttrTransform_TargetNoreferrer(); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/HTMLModule/Tidy/Transitional.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'xml:lang' => 'LanguageCode', 16 | ) 17 | ); 18 | } 19 | 20 | // vim: et sw=4 sts=4 21 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/Language/classes/en-x-test.php: -------------------------------------------------------------------------------- 1 | 'HTML Purifier X' 9 | ); 10 | 11 | // vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/Language/messages/en-x-testmini.php: -------------------------------------------------------------------------------- 1 | 'HTML Purifier XNone' 10 | ); 11 | 12 | // vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/Printer/ConfigForm.css: -------------------------------------------------------------------------------- 1 | 2 | .hp-config {} 3 | 4 | .hp-config tbody th {text-align:right; padding-right:0.5em;} 5 | .hp-config thead, .hp-config .namespace {background:#3C578C; color:#FFF;} 6 | .hp-config .namespace th {text-align:center;} 7 | .hp-config .verbose {display:none;} 8 | .hp-config .controls {text-align:center;} 9 | 10 | /* vim: et sw=4 sts=4 */ 11 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/Printer/ConfigForm.js: -------------------------------------------------------------------------------- 1 | function toggleWriteability(id_of_patient, checked) { 2 | document.getElementById(id_of_patient).disabled = checked; 3 | } 4 | 5 | // vim: et sw=4 sts=4 6 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/Strategy/Core.php: -------------------------------------------------------------------------------- 1 | strategies[] = new HTMLPurifier_Strategy_RemoveForeignElements(); 11 | $this->strategies[] = new HTMLPurifier_Strategy_MakeWellFormed(); 12 | $this->strategies[] = new HTMLPurifier_Strategy_FixNesting(); 13 | $this->strategies[] = new HTMLPurifier_Strategy_ValidateAttributes(); 14 | } 15 | } 16 | 17 | // vim: et sw=4 sts=4 18 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/Token/Empty.php: -------------------------------------------------------------------------------- 1 | empty = true; 11 | return $n; 12 | } 13 | } 14 | 15 | // vim: et sw=4 sts=4 16 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/Token/End.php: -------------------------------------------------------------------------------- 1 | toNode not supported!"); 21 | } 22 | } 23 | 24 | // vim: et sw=4 sts=4 25 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/Token/Start.php: -------------------------------------------------------------------------------- 1 | get('EmbeddedURI', true)) { 19 | return true; 20 | } 21 | return parent::filter($uri, $config, $context); 22 | } 23 | } 24 | 25 | // vim: et sw=4 sts=4 26 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/URIFilter/DisableResources.php: -------------------------------------------------------------------------------- 1 | get('EmbeddedURI', true); 19 | } 20 | } 21 | 22 | // vim: et sw=4 sts=4 23 | -------------------------------------------------------------------------------- /oc-includes/htmlpurifier/HTMLPurifier/URIScheme/https.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-includes/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/images/loading.gif -------------------------------------------------------------------------------- /oc-includes/images/next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/images/next.gif -------------------------------------------------------------------------------- /oc-includes/images/osclass-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/images/osclass-logo.png -------------------------------------------------------------------------------- /oc-includes/images/past.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/images/past.gif -------------------------------------------------------------------------------- /oc-includes/images/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/images/question.png -------------------------------------------------------------------------------- /oc-includes/images/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/images/tick.png -------------------------------------------------------------------------------- /oc-includes/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-includes/json/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-includes/libcurlemu/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-includes/osclass/Logger/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/animated-overlay.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_flat_0_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_flat_0_000000_40x100.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_flat_0_f3f3f3_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_flat_0_f3f3f3_40x100.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_flat_0_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_flat_0_ffffff_40x100.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_flat_100_e6e6e6_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_flat_100_e6e6e6_40x100.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_flat_100_f2f2f2_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_flat_100_f2f2f2_40x100.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_flat_75_dadada_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_flat_75_dadada_40x100.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_flat_75_e6e6e6_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_flat_75_e6e6e6_40x100.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_inset-soft_95_fef1ec_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-bg_inset-soft_95_fef1ec_1x100.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/css/jquery-ui/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/css/jquery-ui/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/fonts/Arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/fonts/Arial.ttf -------------------------------------------------------------------------------- /oc-includes/osclass/assets/images/mockup_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/images/mockup_01.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/images/mockup_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/images/mockup_03.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/images/mockup_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/images/mockup_09.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/images/mockup_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/images/mockup_11.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/images/mockup_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/images/mockup_16.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/images/t.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/images/t.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/blank.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/colorpicker_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/colorpicker_background.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/colorpicker_hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/colorpicker_hex.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/colorpicker_hsb_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/colorpicker_hsb_b.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/colorpicker_hsb_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/colorpicker_hsb_h.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/colorpicker_hsb_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/colorpicker_hsb_s.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/colorpicker_indic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/colorpicker_indic.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/colorpicker_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/colorpicker_overlay.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/colorpicker_rgb_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/colorpicker_rgb_b.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/colorpicker_rgb_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/colorpicker_rgb_g.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/colorpicker_rgb_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/colorpicker_rgb_r.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/colorpicker_select.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/colorpicker_select.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/colorpicker_submit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/colorpicker_submit.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/custom_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/custom_background.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/custom_hex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/custom_hex.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/custom_hsb_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/custom_hsb_b.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/custom_hsb_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/custom_hsb_h.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/custom_hsb_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/custom_hsb_s.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/custom_indic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/custom_indic.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/custom_rgb_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/custom_rgb_b.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/custom_rgb_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/custom_rgb_g.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/custom_rgb_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/custom_rgb_r.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/custom_submit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/custom_submit.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/select.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/select2.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/colorpicker/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/colorpicker/images/slider.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/fancybox/blank.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/fancybox/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/fancybox/fancybox_loading.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/fancybox/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/fancybox/fancybox_overlay.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/fancybox/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/fancybox/fancybox_sprite.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/fancybox/helpers/fancybox_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/fancybox/helpers/fancybox_buttons.png -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/fineuploader/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/fineuploader/edit.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/fineuploader/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/fineuploader/loading.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/fineuploader/processing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/fineuploader/processing.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/langs/readme.md: -------------------------------------------------------------------------------- 1 | This is where language files should be placed. 2 | 3 | Please DO NOT translate these directly use this service: https://www.transifex.com/projects/p/tinymce/ 4 | -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/plugins/anchor/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("anchor",function(a){function b(){var b=a.selection.getNode(),c="";"A"==b.tagName&&(c=b.name||b.id||""),a.windowManager.open({title:"Anchor",body:{type:"textbox",name:"name",size:40,label:"Name",value:c},onsubmit:function(b){a.execCommand("mceInsertContent",!1,a.dom.createHTML("a",{id:b.data.name}))}})}a.addButton("anchor",{icon:"anchor",tooltip:"Anchor",onclick:b,stateSelector:"a:not([href])"}),a.addMenuItem("anchor",{icon:"anchor",text:"Anchor",context:"insert",onclick:b})}); -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/plugins/code/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("code",function(a){function b(){var b=a.windowManager.open({title:"Source code",body:{type:"textbox",name:"code",multiline:!0,minWidth:a.getParam("code_dialog_width",600),minHeight:a.getParam("code_dialog_height",Math.min(tinymce.DOM.getViewPort().h-200,500)),spellcheck:!1,style:"direction: ltr; text-align: left"},onSubmit:function(b){a.focus(),a.undoManager.transact(function(){a.setContent(b.data.code)}),a.selection.setCursorLocation(),a.nodeChanged()}});b.find("#code").value(a.getContent({source_view:!0}))}a.addCommand("mceCodeEditor",b),a.addButton("code",{icon:"code",tooltip:"Source code",onclick:b}),a.addMenuItem("code",{icon:"code",text:"Source code",context:"tools",onclick:b})}); -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-cool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-cool.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-cry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-cry.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-embarassed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-embarassed.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-foot-in-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-foot-in-mouth.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-frown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-frown.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-innocent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-innocent.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-kiss.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-laughing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-laughing.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-money-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-money-mouth.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-sealed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-sealed.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-smile.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-surprised.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-surprised.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-tongue-out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-tongue-out.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-undecided.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-undecided.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-wink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-wink.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-yell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/plugins/emoticons/img/smiley-yell.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/plugins/example/dialog.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |

Custom dialog

5 | Input some text: 6 | 7 | 8 | -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/plugins/example/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("example",function(a,b){a.addButton("example",{text:"My button",icon:!1,onclick:function(){a.windowManager.open({title:"Example plugin",body:[{type:"textbox",name:"title",label:"Title"}],onsubmit:function(b){a.insertContent("Title: "+b.data.title)}})}}),a.addMenuItem("example",{text:"Example plugin",context:"tools",onclick:function(){a.windowManager.open({title:"TinyMCE site",url:b+"/dialog.html",width:600,height:400,buttons:[{text:"Insert",onclick:function(){var b=a.windowManager.getWindows()[0];a.insertContent(b.getContentWindow().document.getElementById("content").value),b.close()}},{text:"Close",onclick:"close"}]})}})}); -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/plugins/example_dependency/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("example_dependency",function(){},["example"]); -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/plugins/hr/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("hr",function(a){a.addCommand("InsertHorizontalRule",function(){a.execCommand("mceInsertContent",!1,"
")}),a.addButton("hr",{icon:"hr",tooltip:"Horizontal line",cmd:"InsertHorizontalRule"}),a.addMenuItem("hr",{icon:"hr",text:"Horizontal line",cmd:"InsertHorizontalRule",context:"insert"})}); -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/plugins/media/moxieplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/plugins/media/moxieplayer.swf -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/plugins/nonbreaking/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("nonbreaking",function(a){var b=a.getParam("nonbreaking_force_tab");if(a.addCommand("mceNonBreaking",function(){a.insertContent(a.plugins.visualchars&&a.plugins.visualchars.state?' ':" "),a.dom.setAttrib(a.dom.select("span.mce-nbsp"),"data-mce-bogus","1")}),a.addButton("nonbreaking",{title:"Nonbreaking space",cmd:"mceNonBreaking"}),a.addMenuItem("nonbreaking",{text:"Nonbreaking space",cmd:"mceNonBreaking",context:"insert"}),b){var c=+b>1?+b:3;a.on("keydown",function(b){if(9==b.keyCode){if(b.shiftKey)return;b.preventDefault();for(var d=0;c>d;d++)a.execCommand("mceNonBreaking")}})}}); -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/plugins/print/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("print",function(a){a.addCommand("mcePrint",function(){a.getWin().print()}),a.addButton("print",{title:"Print",cmd:"mcePrint"}),a.addShortcut("Meta+P","","mcePrint"),a.addMenuItem("print",{text:"Print",cmd:"mcePrint",icon:"print",shortcut:"Meta+P",context:"file"})}); -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/skins/lightgray/fonts/tinymce-small.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/skins/lightgray/fonts/tinymce-small.eot -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/skins/lightgray/fonts/tinymce-small.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/skins/lightgray/fonts/tinymce-small.woff -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/skins/lightgray/fonts/tinymce.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/skins/lightgray/fonts/tinymce.eot -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/skins/lightgray/fonts/tinymce.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/skins/lightgray/fonts/tinymce.ttf -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/skins/lightgray/fonts/tinymce.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/skins/lightgray/fonts/tinymce.woff -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/skins/lightgray/img/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/skins/lightgray/img/anchor.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/skins/lightgray/img/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/skins/lightgray/img/loader.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/skins/lightgray/img/object.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/skins/lightgray/img/object.gif -------------------------------------------------------------------------------- /oc-includes/osclass/assets/js/tinymce/skins/lightgray/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/assets/js/tinymce/skins/lightgray/img/trans.gif -------------------------------------------------------------------------------- /oc-includes/osclass/classes/database/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-includes/osclass/classes/datatables/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-includes/osclass/classes/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-includes/osclass/controller/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-includes/osclass/core/iObject_Cache.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-includes/osclass/frm/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/.gitignore: -------------------------------------------------------------------------------- 1 | # Node 2 | node_modules 3 | 4 | # Sass 5 | .sass-cache 6 | 7 | # .gitkeep 8 | dist/* 9 | packages/* -------------------------------------------------------------------------------- /oc-includes/osclass/gui/config.rb: -------------------------------------------------------------------------------- 1 | css_dir = "css" 2 | sass_dir = "sass" 3 | output_style = :compressed #:expanded or :nested or :compact or :compressed 4 | line_comments = false -------------------------------------------------------------------------------- /oc-includes/osclass/gui/css/font-awesome-4.1.0/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/css/font-awesome-4.1.0/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /oc-includes/osclass/gui/css/font-awesome-4.1.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/css/font-awesome-4.1.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /oc-includes/osclass/gui/css/font-awesome-4.1.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/css/font-awesome-4.1.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /oc-includes/osclass/gui/css/font-awesome-4.1.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/css/font-awesome-4.1.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /oc-includes/osclass/gui/css/font-awesome-4.1.0/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .@{fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/css/font-awesome-4.1.0/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font-family: FontAwesome; 7 | font-style: normal; 8 | font-weight: normal; 9 | line-height: 1; 10 | -webkit-font-smoothing: antialiased; 11 | -moz-osx-font-smoothing: grayscale; 12 | } 13 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/css/font-awesome-4.1.0/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/css/font-awesome-4.1.0/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "spinning.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/css/font-awesome-4.1.0/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/css/font-awesome-4.1.0/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: -@fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/css/font-awesome-4.1.0/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/css/font-awesome-4.1.0/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/css/font-awesome-4.1.0/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .pull-right { float: right; } 11 | .pull-left { float: left; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.pull-left { margin-right: .3em; } 15 | &.pull-right { margin-left: .3em; } 16 | } 17 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/css/font-awesome-4.1.0/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font-family: FontAwesome; 7 | font-style: normal; 8 | font-weight: normal; 9 | line-height: 1; 10 | -webkit-font-smoothing: antialiased; 11 | -moz-osx-font-smoothing: grayscale; 12 | } 13 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/css/font-awesome-4.1.0/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/css/font-awesome-4.1.0/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/css/font-awesome-4.1.0/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/css/font-awesome-4.1.0/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/css/font-awesome-4.1.0/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/css/font-awesome-4.1.0/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "spinning"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/favicon/favicon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/favicon/favicon-114.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/favicon/favicon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/favicon/favicon-144.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/favicon/favicon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/favicon/favicon-48.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/favicon/favicon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/favicon/favicon-57.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/favicon/favicon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/favicon/favicon-72.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/favicon/favicon.ico -------------------------------------------------------------------------------- /oc-includes/osclass/gui/favicon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/favicon/favicon.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/fonts/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/fonts/icons.eot -------------------------------------------------------------------------------- /oc-includes/osclass/gui/fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/fonts/icons.ttf -------------------------------------------------------------------------------- /oc-includes/osclass/gui/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/fonts/icons.woff -------------------------------------------------------------------------------- /oc-includes/osclass/gui/fonts/osclass-extra-light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/fonts/osclass-extra-light.eot -------------------------------------------------------------------------------- /oc-includes/osclass/gui/fonts/osclass-extra-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/fonts/osclass-extra-light.ttf -------------------------------------------------------------------------------- /oc-includes/osclass/gui/fonts/osclass-extra-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/fonts/osclass-extra-light.woff -------------------------------------------------------------------------------- /oc-includes/osclass/gui/fonts/osclass-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/fonts/osclass-regular.woff -------------------------------------------------------------------------------- /oc-includes/osclass/gui/fonts/osclass-ultra-light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/fonts/osclass-ultra-light.eot -------------------------------------------------------------------------------- /oc-includes/osclass/gui/fonts/osclass-ultra-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/fonts/osclass-ultra-light.ttf -------------------------------------------------------------------------------- /oc-includes/osclass/gui/images/bullet_square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/images/bullet_square.gif -------------------------------------------------------------------------------- /oc-includes/osclass/gui/images/button_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/images/button_bg.gif -------------------------------------------------------------------------------- /oc-includes/osclass/gui/images/button_light_orange_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/images/button_light_orange_bg.gif -------------------------------------------------------------------------------- /oc-includes/osclass/gui/images/button_link_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/images/button_link_bg.gif -------------------------------------------------------------------------------- /oc-includes/osclass/gui/images/button_link_green_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/images/button_link_green_bg.gif -------------------------------------------------------------------------------- /oc-includes/osclass/gui/images/button_link_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/images/button_link_icon.gif -------------------------------------------------------------------------------- /oc-includes/osclass/gui/images/checkmark-partial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/images/checkmark-partial.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/images/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/images/checkmark.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/images/comments_quotes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/images/comments_quotes.gif -------------------------------------------------------------------------------- /oc-includes/osclass/gui/images/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/images/cross.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/images/default-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/images/default-logo.jpg -------------------------------------------------------------------------------- /oc-includes/osclass/gui/images/icon-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/images/icon-remove.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/images/icons.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/images/icons.ai -------------------------------------------------------------------------------- /oc-includes/osclass/gui/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/images/icons.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/images/icons@2x 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/images/icons@2x 2.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/images/icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/images/icons@2x.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/images/language_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/images/language_arrow.gif -------------------------------------------------------------------------------- /oc-includes/osclass/gui/images/no_photo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/images/no_photo.gif -------------------------------------------------------------------------------- /oc-includes/osclass/gui/images/order_by_current.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/images/order_by_current.gif -------------------------------------------------------------------------------- /oc-includes/osclass/gui/images/report_flag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/images/report_flag.gif -------------------------------------------------------------------------------- /oc-includes/osclass/gui/images/select_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/images/select_arrow.gif -------------------------------------------------------------------------------- /oc-includes/osclass/gui/images/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/images/tick.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/images/user_default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/images/user_default.gif -------------------------------------------------------------------------------- /oc-includes/osclass/gui/js/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/js/fancybox/blank.gif -------------------------------------------------------------------------------- /oc-includes/osclass/gui/js/fancybox/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/js/fancybox/fancybox_loading.gif -------------------------------------------------------------------------------- /oc-includes/osclass/gui/js/fancybox/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/js/fancybox/fancybox_sprite.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/js/fancybox/helpers/fancybox_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/js/fancybox/helpers/fancybox_buttons.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/js/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/js/jquery-ui/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/js/jquery-ui/images/animated-overlay.gif -------------------------------------------------------------------------------- /oc-includes/osclass/gui/js/jquery-ui/images/ui-bg_flat_100_27b5cb_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/js/jquery-ui/images/ui-bg_flat_100_27b5cb_40x100.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/js/jquery-ui/images/ui-bg_flat_50_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/js/jquery-ui/images/ui-bg_flat_50_ffffff_40x100.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/js/jquery-ui/images/ui-bg_flat_55_999999_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/js/jquery-ui/images/ui-bg_flat_55_999999_40x100.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/js/jquery-ui/images/ui-bg_flat_75_35c3d9_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/js/jquery-ui/images/ui-bg_flat_75_35c3d9_40x100.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/js/jquery-ui/images/ui-bg_flat_75_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/js/jquery-ui/images/ui-bg_flat_75_aaaaaa_40x100.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/js/jquery-ui/images/ui-bg_glass_55_f8da4e_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/js/jquery-ui/images/ui-bg_glass_55_f8da4e_1x400.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/js/jquery-ui/images/ui-bg_glass_75_79c9ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/js/jquery-ui/images/ui-bg_glass_75_79c9ec_1x400.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/js/jquery-ui/images/ui-bg_gloss-wave_45_e14f1c_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/js/jquery-ui/images/ui-bg_gloss-wave_45_e14f1c_500x100.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/js/jquery-ui/images/ui-bg_inset-hard_100_fcfdfd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/js/jquery-ui/images/ui-bg_inset-hard_100_fcfdfd_1x100.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/js/jquery-ui/images/ui-icons_0078ae_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/js/jquery-ui/images/ui-icons_0078ae_256x240.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/js/jquery-ui/images/ui-icons_056b93_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/js/jquery-ui/images/ui-icons_056b93_256x240.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/js/jquery-ui/images/ui-icons_d8e7f3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/js/jquery-ui/images/ui-icons_d8e7f3_256x240.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/js/jquery-ui/images/ui-icons_e0fdff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/js/jquery-ui/images/ui-icons_e0fdff_256x240.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/js/jquery-ui/images/ui-icons_f5e175_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/js/jquery-ui/images/ui-icons_f5e175_256x240.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/js/jquery-ui/images/ui-icons_f7a50d_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/js/jquery-ui/images/ui-icons_f7a50d_256x240.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/js/jquery-ui/images/ui-icons_fcd113_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/js/jquery-ui/images/ui-icons_fcd113_256x240.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/languages/en_US/theme.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/languages/en_US/theme.mo -------------------------------------------------------------------------------- /oc-includes/osclass/gui/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bender", 3 | "version": "3.1.4", 4 | "description": "Bender theme", 5 | "author": "Osclass", 6 | "devDependencies": { 7 | "grunt": "~0.4.1", 8 | "grunt-contrib-copy": "~0.4.1", 9 | "grunt-contrib-watch": "~0.5.1", 10 | "grunt-contrib-sass": "~0.4.1", 11 | "grunt-shell": "~0.3.1", 12 | "grunt-text-replace": "~0.3.9", 13 | "grunt-template": "~0.2.1" 14 | } 15 | } -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/bourbon/_bourbon-deprecated-upcoming.scss: -------------------------------------------------------------------------------- 1 | //************************************************************************// 2 | // These mixins/functions are deprecated 3 | // They will be removed in the next MAJOR version release 4 | //************************************************************************// 5 | @mixin box-shadow ($shadows...) { 6 | @include prefixer(box-shadow, $shadows, spec); 7 | @warn "box-shadow is deprecated and will be removed in the next major version release"; 8 | } 9 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/bourbon/addons/_clearfix.scss: -------------------------------------------------------------------------------- 1 | // Micro clearfix provides an easy way to contain floats without adding additional markup 2 | // 3 | // Example usage: 4 | // 5 | // // Contain all floats within .wrapper 6 | // .wrapper { 7 | // @include clearfix; 8 | // .content, 9 | // .sidebar { 10 | // float : left; 11 | // } 12 | // } 13 | 14 | @mixin clearfix { 15 | *zoom: 1; 16 | 17 | &:before, 18 | &:after { 19 | content: " "; 20 | display: table; 21 | } 22 | 23 | &:after { 24 | clear: both; 25 | } 26 | } 27 | 28 | // Acknowledgements 29 | // Micro clearfix: [Nicolas Gallagher](http://nicolasgallagher.com/micro-clearfix-hack/) 30 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/bourbon/addons/_font-family.scss: -------------------------------------------------------------------------------- 1 | $georgia: Georgia, Cambria, "Times New Roman", Times, serif; 2 | $helvetica: "Helvetica Neue", Helvetica, Arial, sans-serif; 3 | $lucida-grande: "Lucida Grande", Tahoma, Verdana, Arial, sans-serif; 4 | $monospace: "Bitstream Vera Sans Mono", Consolas, Courier, monospace; 5 | $verdana: Verdana, Geneva, sans-serif; 6 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/bourbon/addons/_hide-text.scss: -------------------------------------------------------------------------------- 1 | @mixin hide-text { 2 | color: transparent; 3 | font: 0/0 a; 4 | text-shadow: none; 5 | } 6 | 7 | // A CSS image replacement method that does not require the use of text-indent. 8 | // 9 | // Examples 10 | // 11 | // .ir { 12 | // @include hide-text; 13 | // } 14 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/bourbon/css3/_appearance.scss: -------------------------------------------------------------------------------- 1 | @mixin appearance ($value) { 2 | @include prefixer(appearance, $value, webkit moz ms o spec); 3 | } 4 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/bourbon/css3/_background-size.scss: -------------------------------------------------------------------------------- 1 | @mixin background-size ($lengths...) { 2 | @include prefixer(background-size, $lengths, webkit moz ms o spec); 3 | } 4 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/bourbon/css3/_box-sizing.scss: -------------------------------------------------------------------------------- 1 | @mixin box-sizing ($box) { 2 | // content-box | border-box | inherit 3 | @include prefixer(box-sizing, $box, webkit moz spec); 4 | } 5 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/bourbon/css3/_hidpi-media-query.scss: -------------------------------------------------------------------------------- 1 | // HiDPI mixin. Default value set to 1.3 to target Google Nexus 7 (http://bjango.com/articles/min-device-pixel-ratio/) 2 | @mixin hidpi($ratio: 1.3) { 3 | @media only screen and (-webkit-min-device-pixel-ratio: $ratio), 4 | only screen and (min--moz-device-pixel-ratio: $ratio), 5 | only screen and (-o-min-device-pixel-ratio: #{$ratio}/1), 6 | only screen and (min-resolution: #{round($ratio*96)}dpi), 7 | only screen and (min-resolution: #{$ratio}dppx) { 8 | @content; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/bourbon/css3/_image-rendering.scss: -------------------------------------------------------------------------------- 1 | @mixin image-rendering ($mode:optimizeQuality) { 2 | 3 | @if ($mode == optimize-contrast) { 4 | image-rendering: -moz-crisp-edges; 5 | image-rendering: -o-crisp-edges; 6 | image-rendering: -webkit-optimize-contrast; 7 | image-rendering: optimize-contrast; 8 | } 9 | 10 | @else { 11 | image-rendering: $mode; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/bourbon/css3/_inline-block.scss: -------------------------------------------------------------------------------- 1 | // Legacy support for inline-block in IE7 (maybe IE6) 2 | @mixin inline-block { 3 | display: inline-block; 4 | vertical-align: baseline; 5 | zoom: 1; 6 | *display: inline; 7 | *vertical-align: auto; 8 | } 9 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/bourbon/css3/_perspective.scss: -------------------------------------------------------------------------------- 1 | @mixin perspective($depth: none) { 2 | // none | 3 | @include prefixer(perspective, $depth, webkit moz o spec); 4 | } 5 | 6 | @mixin perspective-origin($value: 50% 50%) { 7 | @include prefixer(perspective-origin, $value, webkit moz o spec); 8 | } 9 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/bourbon/css3/_placeholder.scss: -------------------------------------------------------------------------------- 1 | $placeholders: '-webkit-input-placeholder', 2 | '-moz-placeholder', 3 | '-ms-input-placeholder'; 4 | 5 | @mixin placeholder { 6 | @each $placeholder in $placeholders { 7 | @if $placeholder == "-webkit-input-placeholder" { 8 | &::#{$placeholder} { 9 | @content; 10 | } 11 | } 12 | @else { 13 | &:#{$placeholder} { 14 | @content; 15 | } 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/bourbon/css3/_transform.scss: -------------------------------------------------------------------------------- 1 | @mixin transform($property: none) { 2 | // none | 3 | @include prefixer(transform, $property, webkit moz ms o spec); 4 | } 5 | 6 | @mixin transform-origin($axes: 50%) { 7 | // x-axis - left | center | right | length | % 8 | // y-axis - top | center | bottom | length | % 9 | // z-axis - length 10 | @include prefixer(transform-origin, $axes, webkit moz ms o spec); 11 | } 12 | 13 | @mixin transform-style ($style: flat) { 14 | @include prefixer(transform-style, $style, webkit moz ms o spec); 15 | } 16 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/bourbon/css3/_user-select.scss: -------------------------------------------------------------------------------- 1 | @mixin user-select($arg: none) { 2 | @include prefixer(user-select, $arg, webkit moz ms spec); 3 | } 4 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/bourbon/functions/_compact.scss: -------------------------------------------------------------------------------- 1 | // Remove `false` values from a list 2 | 3 | @function compact($vars...) { 4 | $list: (); 5 | @each $var in $vars { 6 | @if $var { 7 | $list: append($list, $var, comma); 8 | } 9 | } 10 | @return $list; 11 | } 12 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/bourbon/functions/_grid-width.scss: -------------------------------------------------------------------------------- 1 | @function grid-width($n) { 2 | @return $n * $gw-column + ($n - 1) * $gw-gutter; 3 | } 4 | 5 | // The $gw-column and $gw-gutter variables must be defined in your base stylesheet to properly use the grid-width function. 6 | // 7 | // $gw-column: 100px; // Column Width 8 | // $gw-gutter: 40px; // Gutter Width 9 | // 10 | // div { 11 | // width: grid-width(4); // returns 520px; 12 | // margin-left: $gw-gutter; // returns 40px; 13 | // } 14 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/bourbon/functions/_linear-gradient.scss: -------------------------------------------------------------------------------- 1 | @function linear-gradient($gradients...) { 2 | $type: linear; 3 | $type-gradient: append($type, $gradients, comma); 4 | 5 | @return $type-gradient; 6 | } 7 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/bourbon/functions/_px-to-em.scss: -------------------------------------------------------------------------------- 1 | // Convert pixels to ems 2 | // eg. for a relational value of 12px write em(12) when the parent is 16px 3 | // if the parent is another value say 24px write em(12, 24) 4 | 5 | @function em($pxval, $base: 16) { 6 | @return ($pxval / $base) * 1em; 7 | } 8 | 9 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/bourbon/functions/_render-gradients.scss: -------------------------------------------------------------------------------- 1 | // User for linear and radial gradients within background-image or border-image properties 2 | 3 | @function render-gradients($gradients, $gradient-type, $vendor: false) { 4 | $vendor-gradients: false; 5 | @if $vendor { 6 | $vendor-gradients: -#{$vendor}-#{$gradient-type}-gradient($gradients); 7 | } 8 | 9 | @else if $vendor == false { 10 | $vendor-gradients: "#{$gradient-type}-gradient(#{$gradients})"; 11 | $vendor-gradients: unquote($vendor-gradients); 12 | } 13 | @return $vendor-gradients; 14 | } 15 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/bourbon/functions/_tint-shade.scss: -------------------------------------------------------------------------------- 1 | // Add percentage of white to a color 2 | @function tint($color, $percent){ 3 | @return mix(white, $color, $percent); 4 | } 5 | 6 | // Add percentage of black to a color 7 | @function shade($color, $percent){ 8 | @return mix(black, $color, $percent); 9 | } 10 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/colors.scss: -------------------------------------------------------------------------------- 1 | $text-color-contrasted: false; 2 | $maincolor: #35C3D9; 3 | $text-color-contrasted: #fff; 4 | $buttonDarken: 5%; 5 | $textcolor:#333; 6 | $linkcolor:#069; 7 | $contrasted-default-dark: #000; 8 | $contrasted-default-light: #fff; 9 | $contrasted-default-extremelight: #35c3d9; 10 | $widgetbackground: #f7f7f7; 11 | $widgetbordercolor: darken($widgetbackground,5%); -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/colors.scss.tpl: -------------------------------------------------------------------------------- 1 | $text-color-contrasted: false; 2 | $maincolor: <%- theme.color.main %>; 3 | $text-color-contrasted: <%- theme.color.text %>; 4 | $buttonDarken: <%- theme.color.darken %>; 5 | $textcolor:#333; 6 | $linkcolor:#069; 7 | $contrasted-default-dark: #000; 8 | $contrasted-default-light: #fff; 9 | $contrasted-default-extremelight: #35c3d9; 10 | $widgetbackground: #f7f7f7; 11 | $widgetbordercolor: darken($widgetbackground,5%); -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/plugin.scss: -------------------------------------------------------------------------------- 1 | #plugin-hook .row{ 2 | clear:both; 3 | margin-bottom:10px; 4 | label{ 5 | margin-right:20px; 6 | } 7 | } -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/responsive.scss: -------------------------------------------------------------------------------- 1 | @media only screen and (max-width: 740px){ 2 | @import "responsive/740.scss"; 3 | } 4 | @media only screen and (max-width: 640px){ 5 | @import "responsive/640.scss"; 6 | } 7 | @media only screen and (max-width: 480px){ 8 | @import "responsive/480.scss"; 9 | } 10 | -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/responsive/640.scss: -------------------------------------------------------------------------------- 1 | body{ 2 | .item-header #type_dates{ 3 | float:none; 4 | } 5 | div.cell_3, 6 | div.cell_3:nth-child(2n){ 7 | margin:0; 8 | width: 100%; 9 | } 10 | } -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/responsive/form.scss: -------------------------------------------------------------------------------- 1 | .form-container-box{ 2 | width:auto; 3 | } 4 | .form-container .checkbox{ 5 | margin-bottom:15px; 6 | } 7 | .form-container .checkbox input{ 8 | width:auto; 9 | } 10 | 11 | .form-horizontal .actions{ 12 | margin:0; 13 | padding-left:0px; 14 | padding-right:0px; 15 | } 16 | .form-horizontal label{ 17 | float: none; 18 | width: 100%; 19 | font-size:0.85em; 20 | } 21 | .form-horizontal .controls { 22 | width:auto; 23 | margin-left:0; 24 | } 25 | 26 | body.item-post .select-box{ 27 | margin-bottom:10px; 28 | } 29 | #item-post select{ 30 | width:100%; 31 | } 32 | .form-horizontal .select-box{ 33 | width:100%; 34 | } -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/responsive/item.scss: -------------------------------------------------------------------------------- 1 | body.item #sidebar, 2 | body.user-public-profile #sidebar{ 3 | margin-top:20px; 4 | } 5 | .item-photos .thumbs{ 6 | float:none; 7 | margin-top:10px; 8 | width:100%; 9 | clear:both; 10 | } 11 | .item-photos .main-photo { 12 | width: 100%; 13 | float: none; 14 | } 15 | .item-photos .main-photo img{ 16 | width: 100%; 17 | } -------------------------------------------------------------------------------- /oc-includes/osclass/gui/sass/user.scss: -------------------------------------------------------------------------------- 1 | .user-card{ 2 | background-color:$widgetbackground; 3 | position: relative; 4 | padding-left:120px; 5 | height:120px; 6 | @include border-radius(4px); 7 | margin-bottom:25px; 8 | ul{ 9 | padding:15px; 10 | margin:0; 11 | list-style: none; 12 | } 13 | .name{ 14 | font-size:1.5em; 15 | margin-bottom:15px; 16 | } 17 | .website{ 18 | font-size:0.725em; 19 | } 20 | .location, 21 | .adress{ 22 | font-size:0.725em; 23 | } 24 | img{ 25 | position: absolute; 26 | left:0; 27 | top:0; 28 | @include border-left-radius(4px); 29 | width: 120px; 30 | } 31 | } -------------------------------------------------------------------------------- /oc-includes/osclass/gui/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/screenshot.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/screenshot/black/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/screenshot/black/screenshot.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/screenshot/blue/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/screenshot/blue/screenshot.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/screenshot/purple/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/screenshot/purple/screenshot.png -------------------------------------------------------------------------------- /oc-includes/osclass/gui/screenshot/red/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/gui/screenshot/red/screenshot.png -------------------------------------------------------------------------------- /oc-includes/osclass/helpers/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-includes/osclass/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-includes/osclass/installer/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-includes/osclass/installer/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /oc-admin/ -------------------------------------------------------------------------------- /oc-includes/osclass/installer/vtip/css/vtip.css: -------------------------------------------------------------------------------- 1 | p#vtip { display: none; position: absolute; padding: 10px; left: 5px; font-size: 0.8em; background-color: white; border: 1px solid #a6c9e2; -moz-border-radius: 5px; -webkit-border-radius: 5px; -kthml-border-radius: 5px; border-radius: 5px; z-index: 9999; max-width: 300px; } 2 | p#vtip #vtipArrow { position: absolute; top: -10px; left: 5px } -------------------------------------------------------------------------------- /oc-includes/osclass/installer/vtip/images/vtip_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osclass/Osclass/b1c67a2bd623748a3090b66d8ac5a0baf78172c8/oc-includes/osclass/installer/vtip/images/vtip_arrow.png -------------------------------------------------------------------------------- /oc-includes/osclass/installer/vtip/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-includes/osclass/model/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oc-includes/pclzip/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-includes/php-gettext/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-includes/phpmailer/index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /oc-includes/phpseclib/Exception/BadConfigurationException.php: -------------------------------------------------------------------------------- 1 | 11 | * @copyright 2015 Jim Wigginton 12 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 13 | * @link http://phpseclib.sourceforge.net 14 | */ 15 | 16 | namespace phpseclib\Exception; 17 | 18 | /** 19 | * BadConfigurationException 20 | * 21 | * @package BadConfigurationException 22 | * @author Jim Wigginton 23 | */ 24 | class BadConfigurationException extends \RuntimeException 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /oc-includes/phpseclib/Exception/FileNotFoundException.php: -------------------------------------------------------------------------------- 1 | 11 | * @copyright 2015 Jim Wigginton 12 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 13 | * @link http://phpseclib.sourceforge.net 14 | */ 15 | 16 | namespace phpseclib\Exception; 17 | 18 | /** 19 | * FileNotFoundException 20 | * 21 | * @package FileNotFoundException 22 | * @author Jim Wigginton 23 | */ 24 | class FileNotFoundException extends \RuntimeException 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /oc-includes/phpseclib/Exception/NoSupportedAlgorithmsException.php: -------------------------------------------------------------------------------- 1 | 11 | * @copyright 2015 Jim Wigginton 12 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 13 | * @link http://phpseclib.sourceforge.net 14 | */ 15 | 16 | namespace phpseclib\Exception; 17 | 18 | /** 19 | * NoSupportedAlgorithmsException 20 | * 21 | * @package NoSupportedAlgorithmsException 22 | * @author Jim Wigginton 23 | */ 24 | class NoSupportedAlgorithmsException extends \RuntimeException 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /oc-includes/phpseclib/Exception/UnsupportedAlgorithmException.php: -------------------------------------------------------------------------------- 1 | 11 | * @copyright 2015 Jim Wigginton 12 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 13 | * @link http://phpseclib.sourceforge.net 14 | */ 15 | 16 | namespace phpseclib\Exception; 17 | 18 | /** 19 | * UnsupportedAlgorithmException 20 | * 21 | * @package UnsupportedAlgorithmException 22 | * @author Jim Wigginton 23 | */ 24 | class UnsupportedAlgorithmException extends \RuntimeException 25 | { 26 | } 27 | -------------------------------------------------------------------------------- /oc-includes/phpseclib/File/ASN1/Maps/AttributeType.php: -------------------------------------------------------------------------------- 1 | 11 | * @copyright 2016 Jim Wigginton 12 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 13 | * @link http://phpseclib.sourceforge.net 14 | */ 15 | 16 | namespace phpseclib\File\ASN1\Maps; 17 | 18 | use phpseclib\File\ASN1; 19 | 20 | /** 21 | * AttributeType 22 | * 23 | * @package ASN1 24 | * @author Jim Wigginton 25 | * @access public 26 | */ 27 | abstract class AttributeType 28 | { 29 | const MAP = ['type' => ASN1::TYPE_OBJECT_IDENTIFIER]; 30 | } 31 | -------------------------------------------------------------------------------- /oc-includes/phpseclib/File/ASN1/Maps/AttributeValue.php: -------------------------------------------------------------------------------- 1 | 11 | * @copyright 2016 Jim Wigginton 12 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 13 | * @link http://phpseclib.sourceforge.net 14 | */ 15 | 16 | namespace phpseclib\File\ASN1\Maps; 17 | 18 | use phpseclib\File\ASN1; 19 | 20 | /** 21 | * AttributeValue 22 | * 23 | * @package ASN1 24 | * @author Jim Wigginton 25 | * @access public 26 | */ 27 | abstract class AttributeValue 28 | { 29 | const MAP = ['type' => ASN1::TYPE_ANY]; 30 | } 31 | -------------------------------------------------------------------------------- /oc-includes/phpseclib/File/ASN1/Maps/BaseDistance.php: -------------------------------------------------------------------------------- 1 | 11 | * @copyright 2016 Jim Wigginton 12 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 13 | * @link http://phpseclib.sourceforge.net 14 | */ 15 | 16 | namespace phpseclib\File\ASN1\Maps; 17 | 18 | use phpseclib\File\ASN1; 19 | 20 | /** 21 | * BaseDistance 22 | * 23 | * @package ASN1 24 | * @author Jim Wigginton 25 | * @access public 26 | */ 27 | abstract class BaseDistance 28 | { 29 | const MAP = ['type' => ASN1::TYPE_INTEGER]; 30 | } 31 | -------------------------------------------------------------------------------- /oc-includes/phpseclib/File/ASN1/Maps/CPSuri.php: -------------------------------------------------------------------------------- 1 | 11 | * @copyright 2016 Jim Wigginton 12 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 13 | * @link http://phpseclib.sourceforge.net 14 | */ 15 | 16 | namespace phpseclib\File\ASN1\Maps; 17 | 18 | use phpseclib\File\ASN1; 19 | 20 | /** 21 | * CPSuri 22 | * 23 | * @package ASN1 24 | * @author Jim Wigginton 25 | * @access public 26 | */ 27 | abstract class CPSuri 28 | { 29 | const MAP = ['type' => ASN1::TYPE_IA5_STRING]; 30 | } 31 | -------------------------------------------------------------------------------- /oc-includes/phpseclib/File/ASN1/Maps/CRLNumber.php: -------------------------------------------------------------------------------- 1 | 11 | * @copyright 2016 Jim Wigginton 12 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 13 | * @link http://phpseclib.sourceforge.net 14 | */ 15 | 16 | namespace phpseclib\File\ASN1\Maps; 17 | 18 | use phpseclib\File\ASN1; 19 | 20 | /** 21 | * CRLNumber 22 | * 23 | * @package ASN1 24 | * @author Jim Wigginton 25 | * @access public 26 | */ 27 | abstract class CRLNumber 28 | { 29 | const MAP = ['type' => ASN1::TYPE_INTEGER]; 30 | } 31 | -------------------------------------------------------------------------------- /oc-includes/phpseclib/File/ASN1/Maps/CertPolicyId.php: -------------------------------------------------------------------------------- 1 | 11 | * @copyright 2016 Jim Wigginton 12 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 13 | * @link http://phpseclib.sourceforge.net 14 | */ 15 | 16 | namespace phpseclib\File\ASN1\Maps; 17 | 18 | use phpseclib\File\ASN1; 19 | 20 | /** 21 | * CertPolicyId 22 | * 23 | * @package ASN1 24 | * @author Jim Wigginton 25 | * @access public 26 | */ 27 | abstract class CertPolicyId 28 | { 29 | const MAP = ['type' => ASN1::TYPE_OBJECT_IDENTIFIER]; 30 | } 31 | -------------------------------------------------------------------------------- /oc-includes/phpseclib/File/ASN1/Maps/CertificateIssuer.php: -------------------------------------------------------------------------------- 1 | 11 | * @copyright 2016 Jim Wigginton 12 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 13 | * @link http://phpseclib.sourceforge.net 14 | */ 15 | 16 | namespace phpseclib\File\ASN1\Maps; 17 | 18 | use phpseclib\File\ASN1; 19 | 20 | /** 21 | * CertificateIssuer 22 | * 23 | * @package ASN1 24 | * @author Jim Wigginton 25 | * @access public 26 | */ 27 | abstract class CertificateIssuer 28 | { 29 | const MAP = GeneralNames::MAP; 30 | } 31 | -------------------------------------------------------------------------------- /oc-includes/phpseclib/File/ASN1/Maps/EncryptedData.php: -------------------------------------------------------------------------------- 1 | 11 | * @copyright 2016 Jim Wigginton 12 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 13 | * @link http://phpseclib.sourceforge.net 14 | */ 15 | 16 | namespace phpseclib\File\ASN1\Maps; 17 | 18 | use phpseclib\File\ASN1; 19 | 20 | /** 21 | * EncryptedData 22 | * 23 | * @package ASN1 24 | * @author Jim Wigginton 25 | * @access public 26 | */ 27 | abstract class EncryptedData 28 | { 29 | const MAP = ['type' => ASN1::TYPE_OCTET_STRING]; 30 | } 31 | -------------------------------------------------------------------------------- /oc-includes/phpseclib/File/ASN1/Maps/InvalidityDate.php: -------------------------------------------------------------------------------- 1 | 11 | * @copyright 2016 Jim Wigginton 12 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 13 | * @link http://phpseclib.sourceforge.net 14 | */ 15 | 16 | namespace phpseclib\File\ASN1\Maps; 17 | 18 | use phpseclib\File\ASN1; 19 | 20 | /** 21 | * InvalidityDate 22 | * 23 | * @package ASN1 24 | * @author Jim Wigginton 25 | * @access public 26 | */ 27 | abstract class InvalidityDate 28 | { 29 | const MAP = ['type' => ASN1::TYPE_GENERALIZED_TIME]; 30 | } 31 | -------------------------------------------------------------------------------- /oc-includes/phpseclib/File/ASN1/Maps/IssuerAltName.php: -------------------------------------------------------------------------------- 1 | 11 | * @copyright 2016 Jim Wigginton 12 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 13 | * @link http://phpseclib.sourceforge.net 14 | */ 15 | 16 | namespace phpseclib\File\ASN1\Maps; 17 | 18 | use phpseclib\File\ASN1; 19 | 20 | /** 21 | * IssuerAltName 22 | * 23 | * @package ASN1 24 | * @author Jim Wigginton 25 | * @access public 26 | */ 27 | abstract class IssuerAltName 28 | { 29 | const MAP = GeneralNames::MAP; 30 | } 31 | -------------------------------------------------------------------------------- /oc-includes/phpseclib/File/ASN1/Maps/KeyIdentifier.php: -------------------------------------------------------------------------------- 1 | 11 | * @copyright 2016 Jim Wigginton 12 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 13 | * @link http://phpseclib.sourceforge.net 14 | */ 15 | 16 | namespace phpseclib\File\ASN1\Maps; 17 | 18 | use phpseclib\File\ASN1; 19 | 20 | /** 21 | * KeyIdentifier 22 | * 23 | * @package ASN1 24 | * @author Jim Wigginton 25 | * @access public 26 | */ 27 | abstract class KeyIdentifier 28 | { 29 | const MAP = ['type' => ASN1::TYPE_OCTET_STRING]; 30 | } 31 | -------------------------------------------------------------------------------- /oc-includes/phpseclib/File/ASN1/Maps/KeyPurposeId.php: -------------------------------------------------------------------------------- 1 | 11 | * @copyright 2016 Jim Wigginton 12 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 13 | * @link http://phpseclib.sourceforge.net 14 | */ 15 | 16 | namespace phpseclib\File\ASN1\Maps; 17 | 18 | use phpseclib\File\ASN1; 19 | 20 | /** 21 | * KeyPurposeId 22 | * 23 | * @package ASN1 24 | * @author Jim Wigginton 25 | * @access public 26 | */ 27 | abstract class KeyPurposeId 28 | { 29 | const MAP = ['type' => ASN1::TYPE_OBJECT_IDENTIFIER]; 30 | } 31 | -------------------------------------------------------------------------------- /oc-includes/phpseclib/File/ASN1/Maps/NetworkAddress.php: -------------------------------------------------------------------------------- 1 | 11 | * @copyright 2016 Jim Wigginton 12 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 13 | * @link http://phpseclib.sourceforge.net 14 | */ 15 | 16 | namespace phpseclib\File\ASN1\Maps; 17 | 18 | use phpseclib\File\ASN1; 19 | 20 | /** 21 | * NetworkAddress 22 | * 23 | * @package ASN1 24 | * @author Jim Wigginton 25 | * @access public 26 | */ 27 | abstract class NetworkAddress 28 | { 29 | const MAP = ['type' => ASN1::TYPE_NUMERIC_STRING]; 30 | } 31 | -------------------------------------------------------------------------------- /oc-includes/phpseclib/File/ASN1/Maps/OrganizationName.php: -------------------------------------------------------------------------------- 1 | 11 | * @copyright 2016 Jim Wigginton 12 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 13 | * @link http://phpseclib.sourceforge.net 14 | */ 15 | 16 | namespace phpseclib\File\ASN1\Maps; 17 | 18 | use phpseclib\File\ASN1; 19 | 20 | /** 21 | * OrganizationName 22 | * 23 | * @package ASN1 24 | * @author Jim Wigginton 25 | * @access public 26 | */ 27 | abstract class OrganizationName 28 | { 29 | const MAP = ['type' => ASN1::TYPE_PRINTABLE_STRING]; 30 | } 31 | -------------------------------------------------------------------------------- /oc-includes/phpseclib/File/ASN1/Maps/PrivateKey.php: -------------------------------------------------------------------------------- 1 | 11 | * @copyright 2016 Jim Wigginton 12 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 13 | * @link http://phpseclib.sourceforge.net 14 | */ 15 | 16 | namespace phpseclib\File\ASN1\Maps; 17 | 18 | use phpseclib\File\ASN1; 19 | 20 | /** 21 | * PrivateKey 22 | * 23 | * @package ASN1 24 | * @author Jim Wigginton 25 | * @access public 26 | */ 27 | abstract class PrivateKey 28 | { 29 | const MAP = ['type' => ASN1::TYPE_OCTET_STRING]; 30 | } 31 | -------------------------------------------------------------------------------- /oc-includes/phpseclib/File/ASN1/Maps/SubjectAltName.php: -------------------------------------------------------------------------------- 1 | 11 | * @copyright 2016 Jim Wigginton 12 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 13 | * @link http://phpseclib.sourceforge.net 14 | */ 15 | 16 | namespace phpseclib\File\ASN1\Maps; 17 | 18 | use phpseclib\File\ASN1; 19 | 20 | /** 21 | * SubjectAltName 22 | * 23 | * @package ASN1 24 | * @author Jim Wigginton 25 | * @access public 26 | */ 27 | abstract class SubjectAltName 28 | { 29 | const MAP = GeneralNames::MAP; 30 | } 31 | -------------------------------------------------------------------------------- /oc-includes/phpseclib/File/ASN1/Maps/UniqueIdentifier.php: -------------------------------------------------------------------------------- 1 | 11 | * @copyright 2016 Jim Wigginton 12 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 13 | * @link http://phpseclib.sourceforge.net 14 | */ 15 | 16 | namespace phpseclib\File\ASN1\Maps; 17 | 18 | use phpseclib\File\ASN1; 19 | 20 | /** 21 | * UniqueIdentifier 22 | * 23 | * @package ASN1 24 | * @author Jim Wigginton 25 | * @access public 26 | */ 27 | abstract class UniqueIdentifier 28 | { 29 | const MAP = ['type' => ASN1::TYPE_BIT_STRING]; 30 | } 31 | -------------------------------------------------------------------------------- /oc-includes/phpseclib/File/ASN1/Maps/netscape_comment.php: -------------------------------------------------------------------------------- 1 | 11 | * @copyright 2016 Jim Wigginton 12 | * @license http://www.opensource.org/licenses/mit-license.html MIT License 13 | * @link http://phpseclib.sourceforge.net 14 | */ 15 | 16 | namespace phpseclib\File\ASN1\Maps; 17 | 18 | use phpseclib\File\ASN1; 19 | 20 | /** 21 | * netscape_comment 22 | * 23 | * @package ASN1 24 | * @author Jim Wigginton 25 | * @access public 26 | */ 27 | abstract class netscape_comment 28 | { 29 | const MAP = ['type' => ASN1::TYPE_IA5_STRING]; 30 | } 31 | -------------------------------------------------------------------------------- /oc-includes/phpseclib/bootstrap.php: -------------------------------------------------------------------------------- 1 |