├── .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 |