├── .gitignore ├── .htaccess ├── COPYING.txt ├── LICENSE.txt ├── README.md ├── admin.php ├── admin ├── admin │ ├── ad_about.php │ ├── ad_home.php │ ├── ad_settings.php │ └── index.html ├── index.html ├── look │ ├── ad_emails.php │ ├── ad_langs.php │ ├── ad_skins.php │ └── index.html ├── manage │ ├── ad_articles.php │ ├── ad_categories.php │ ├── ad_cdfields.php │ ├── ad_cpfields.php │ ├── ad_departs.php │ ├── ad_flags.php │ ├── ad_groups.php │ ├── ad_news.php │ ├── ad_pages.php │ ├── ad_priorities.php │ ├── ad_rtemplates.php │ ├── ad_statuses.php │ ├── ad_tickets.php │ ├── ad_users.php │ └── index.html └── tools │ ├── ad_backup.php │ ├── ad_cache.php │ ├── ad_logs.php │ ├── ad_maint.php │ ├── ad_settings.php │ ├── ad_stats.php │ └── index.html ├── config.php.dist ├── data ├── cache │ ├── htmlpurifier │ │ └── index.html │ ├── index.html │ └── trellis │ │ └── index.html ├── logs │ └── index.html ├── skin_compile │ └── index.html ├── temp │ └── index.html └── uploads │ └── index.html ├── images ├── classic │ ├── arrow_down.gif │ ├── arrow_right.gif │ ├── arrow_up.gif │ ├── content_bkg.jpg │ ├── delete_icon.gif │ ├── edit_icon.gif │ ├── header.jpg │ ├── header_acp.jpg │ ├── header_bg.jpg │ ├── header_lower.jpg │ ├── index.html │ ├── kb_icon.gif │ ├── loading.gif │ ├── logos │ │ ├── feed.png │ │ ├── index.html │ │ ├── mysql.png │ │ ├── php.png │ │ ├── tinymce.png │ │ ├── vcss.png │ │ ├── vrss.png │ │ ├── xhtml10.png │ │ └── zend.png │ ├── menu_bg.jpg │ ├── menu_left.jpg │ ├── menu_right.jpg │ ├── rate_half.gif │ ├── rate_hover.gif │ ├── rate_off.gif │ ├── rate_on.gif │ ├── revert_icon.gif │ ├── thumbs_down.gif │ ├── thumbs_down_hover.gif │ ├── thumbs_up.gif │ ├── thumbs_up_hover.gif │ └── ticket_icon.gif ├── flags │ ├── flag_blue.png │ ├── flag_green.png │ ├── flag_orange.png │ ├── flag_pink.png │ ├── flag_purple.png │ ├── flag_red.png │ ├── flag_yellow.png │ └── index.html ├── index.html └── priorities │ ├── index.html │ ├── priority_blue.gif │ ├── priority_blue_dot.gif │ ├── priority_green.gif │ ├── priority_orange.gif │ ├── priority_orange_dot.gif │ ├── priority_pink.gif │ ├── priority_pink_dot.gif │ ├── priority_purple.gif │ ├── priority_purple_dot.gif │ ├── priority_red.gif │ ├── priority_red_dot.gif │ ├── priority_yellow.gif │ └── priority_yellow_dot.gif ├── includes ├── akismet │ └── Akismet.class.php ├── classes │ ├── class_akismet.php │ ├── class_asession.php │ ├── class_askin.php │ ├── class_cache.php │ ├── class_email.php │ ├── class_error_handler.php │ ├── class_mysql.php │ ├── class_phpcaptcha.php │ ├── class_recaptcha.php │ ├── class_session.php │ ├── class_skin.php │ ├── class_zip.php │ └── index.html ├── css │ ├── global.css │ ├── index.html │ ├── local.css │ └── tinymce.css ├── functions │ ├── func_admin.php │ ├── func_articles.php │ ├── func_attachments.php │ ├── func_categories.php │ ├── func_cdfields.php │ ├── func_cpfields.php │ ├── func_departs.php │ ├── func_drop_downs.php │ ├── func_emails.php │ ├── func_flags.php │ ├── func_groups.php │ ├── func_languages.php │ ├── func_logs.php │ ├── func_news.php │ ├── func_pages.php │ ├── func_priorities.php │ ├── func_rebuild.php │ ├── func_recount.php │ ├── func_rtemplates.php │ ├── func_settings.php │ ├── func_skins.php │ ├── func_statuses.php │ ├── func_template.php │ ├── func_tickets.php │ ├── func_users.php │ └── index.html ├── htmlpurifier │ ├── HTMLPurifier.standalone.php │ └── standalone │ │ └── HTMLPurifier │ │ ├── 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.IDBlacklist.txt │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ ├── Attr.IDPrefix.txt │ │ │ ├── Attr.IDPrefixLocal.txt │ │ │ ├── AutoFormat.AutoParagraph.txt │ │ │ ├── AutoFormat.Custom.txt │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ ├── AutoFormat.Linkify.txt │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt │ │ │ ├── AutoFormat.RemoveEmpty.txt │ │ │ ├── CSS.AllowImportant.txt │ │ │ ├── CSS.AllowTricky.txt │ │ │ ├── CSS.AllowedProperties.txt │ │ │ ├── CSS.DefinitionRev.txt │ │ │ ├── CSS.MaxImgLength.txt │ │ │ ├── CSS.Proprietary.txt │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ ├── Cache.SerializerPath.txt │ │ │ ├── Core.AggressivelyFixLt.txt │ │ │ ├── Core.CollectErrors.txt │ │ │ ├── Core.ColorKeywords.txt │ │ │ ├── Core.ConvertDocumentToFragment.txt │ │ │ ├── Core.DirectLexLineNumberSyncInterval.txt │ │ │ ├── Core.Encoding.txt │ │ │ ├── Core.EscapeInvalidChildren.txt │ │ │ ├── Core.EscapeInvalidTags.txt │ │ │ ├── Core.EscapeNonASCIICharacters.txt │ │ │ ├── Core.HiddenElements.txt │ │ │ ├── Core.Language.txt │ │ │ ├── Core.LexerImpl.txt │ │ │ ├── Core.MaintainLineNumbers.txt │ │ │ ├── Core.RemoveInvalidImg.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.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.ForbiddenAttributes.txt │ │ │ ├── HTML.ForbiddenElements.txt │ │ │ ├── HTML.MaxImgLength.txt │ │ │ ├── HTML.Parent.txt │ │ │ ├── HTML.Proprietary.txt │ │ │ ├── HTML.SafeEmbed.txt │ │ │ ├── HTML.SafeObject.txt │ │ │ ├── HTML.Strict.txt │ │ │ ├── HTML.TidyAdd.txt │ │ │ ├── HTML.TidyLevel.txt │ │ │ ├── HTML.TidyRemove.txt │ │ │ ├── HTML.Trusted.txt │ │ │ ├── HTML.XHTML.txt │ │ │ ├── Output.CommentScriptContents.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 │ │ │ └── info.ini │ │ ├── EntityLookup │ │ └── entities.ser │ │ ├── Filter │ │ ├── ExtractStyleBlocks.php │ │ └── YouTube.php │ │ ├── Language │ │ ├── classes │ │ │ └── en-x-test.php │ │ └── messages │ │ │ ├── en-x-test.php │ │ │ ├── en-x-testmini.php │ │ │ └── en.php │ │ ├── Lexer │ │ ├── PEARSax3.php │ │ └── PH5P.php │ │ ├── Printer.php │ │ └── Printer │ │ ├── CSSDefinition.php │ │ ├── ConfigForm.css │ │ ├── ConfigForm.js │ │ ├── ConfigForm.php │ │ └── HTMLDefinition.php ├── index.html ├── phpcaptcha │ ├── Vera.ttf │ ├── VeraBd.ttf │ ├── VeraIt.ttf │ └── php-captcha.inc.php ├── recaptcha │ ├── LICENSE │ └── recaptchalib.php ├── scripts │ └── ajaxupload.js ├── smarty │ ├── Smarty.class.php │ ├── debug.tpl │ ├── plugins │ │ ├── block.php.php │ │ ├── block.textformat.php │ │ ├── function.counter.php │ │ ├── function.cycle.php │ │ ├── function.fetch.php │ │ ├── function.html_checkboxes.php │ │ ├── function.html_image.php │ │ ├── function.html_options.php │ │ ├── function.html_radios.php │ │ ├── function.html_select_date.php │ │ ├── function.html_select_time.php │ │ ├── function.html_table.php │ │ ├── function.mailto.php │ │ ├── function.math.php │ │ ├── function.popup.php │ │ ├── function.popup_init.php │ │ ├── modifier.capitalize.php │ │ ├── modifier.cat.php │ │ ├── modifier.count_characters.php │ │ ├── modifier.count_paragraphs.php │ │ ├── modifier.count_sentences.php │ │ ├── modifier.count_words.php │ │ ├── modifier.date_format.php │ │ ├── modifier.debug_print_var.php │ │ ├── modifier.default.php │ │ ├── modifier.escape.php │ │ ├── modifier.indent.php │ │ ├── modifier.lower.php │ │ ├── modifier.noprint.php │ │ ├── modifier.regex_replace.php │ │ ├── modifier.replace.php │ │ ├── modifier.spacify.php │ │ ├── modifier.string_format.php │ │ ├── modifier.strip.php │ │ ├── modifier.strip_tags.php │ │ ├── modifier.truncate.php │ │ ├── modifier.upper.php │ │ ├── modifier.wordwrap.php │ │ ├── outputfilter.trimwhitespace.php │ │ ├── shared.escape_special_chars.php │ │ ├── shared.make_timestamp.php │ │ └── variablefilter.htmlspecialchars.php │ └── sysplugins │ │ ├── smarty_internal_cacheresource_file.php │ │ ├── smarty_internal_compile_append.php │ │ ├── smarty_internal_compile_assign.php │ │ ├── smarty_internal_compile_block.php │ │ ├── smarty_internal_compile_call.php │ │ ├── smarty_internal_compile_capture.php │ │ ├── smarty_internal_compile_config_load.php │ │ ├── smarty_internal_compile_debug.php │ │ ├── smarty_internal_compile_eval.php │ │ ├── smarty_internal_compile_extends.php │ │ ├── smarty_internal_compile_for.php │ │ ├── smarty_internal_compile_foreach.php │ │ ├── smarty_internal_compile_function.php │ │ ├── smarty_internal_compile_if.php │ │ ├── smarty_internal_compile_include.php │ │ ├── smarty_internal_compile_include_php.php │ │ ├── smarty_internal_compile_insert.php │ │ ├── smarty_internal_compile_ldelim.php │ │ ├── smarty_internal_compile_nocache.php │ │ ├── smarty_internal_compile_private_block_plugin.php │ │ ├── smarty_internal_compile_private_function_plugin.php │ │ ├── smarty_internal_compile_private_modifier.php │ │ ├── smarty_internal_compile_private_object_block_function.php │ │ ├── smarty_internal_compile_private_object_function.php │ │ ├── smarty_internal_compile_private_print_expression.php │ │ ├── smarty_internal_compile_private_registered_block.php │ │ ├── smarty_internal_compile_private_registered_function.php │ │ ├── smarty_internal_compile_private_special_variable.php │ │ ├── smarty_internal_compile_rdelim.php │ │ ├── smarty_internal_compile_section.php │ │ ├── smarty_internal_compile_while.php │ │ ├── smarty_internal_compilebase.php │ │ ├── smarty_internal_config.php │ │ ├── smarty_internal_config_file_compiler.php │ │ ├── smarty_internal_configfilelexer.php │ │ ├── smarty_internal_configfileparser.php │ │ ├── smarty_internal_data.php │ │ ├── smarty_internal_debug.php │ │ ├── smarty_internal_filter_handler.php │ │ ├── smarty_internal_function_call_handler.php │ │ ├── smarty_internal_resource_extends.php │ │ ├── smarty_internal_resource_file.php │ │ ├── smarty_internal_resource_php.php │ │ ├── smarty_internal_resource_registered.php │ │ ├── smarty_internal_resource_stream.php │ │ ├── smarty_internal_resource_string.php │ │ ├── smarty_internal_security_handler.php │ │ ├── smarty_internal_smartytemplatecompiler.php │ │ ├── smarty_internal_template.php │ │ ├── smarty_internal_templatecompilerbase.php │ │ ├── smarty_internal_templatelexer.php │ │ ├── smarty_internal_templateparser.php │ │ ├── smarty_internal_write_file.php │ │ ├── smarty_method__get_filter_name.php │ │ ├── smarty_method_addpluginsdir.php │ │ ├── smarty_method_clear_all_assign.php │ │ ├── smarty_method_clear_all_cache.php │ │ ├── smarty_method_clear_assign.php │ │ ├── smarty_method_clear_cache.php │ │ ├── smarty_method_clear_compiled_tpl.php │ │ ├── smarty_method_clear_config.php │ │ ├── smarty_method_compile_directory.php │ │ ├── smarty_method_disablecachemodifycheck.php │ │ ├── smarty_method_disablecaching.php │ │ ├── smarty_method_disablecompilecheck.php │ │ ├── smarty_method_disableconfigbooleanize.php │ │ ├── smarty_method_disableconfigoverwrite.php │ │ ├── smarty_method_disableconfigreadhidden.php │ │ ├── smarty_method_disabledebugging.php │ │ ├── smarty_method_disabledebuggingurlctrl.php │ │ ├── smarty_method_disabledefaulttimezone.php │ │ ├── smarty_method_disableforcecompile.php │ │ ├── smarty_method_disablevariablefilter.php │ │ ├── smarty_method_enablecachemodifycheck.php │ │ ├── smarty_method_enablecompilecheck.php │ │ ├── smarty_method_enableconfigbooleanize.php │ │ ├── smarty_method_enableconfigoverwrite.php │ │ ├── smarty_method_enableconfigreadhidden.php │ │ ├── smarty_method_enabledebugging.php │ │ ├── smarty_method_enabledebuggingurlctrl.php │ │ ├── smarty_method_enabledefaulttimezone.php │ │ ├── smarty_method_enableforcecompile.php │ │ ├── smarty_method_enablevariablefilter.php │ │ ├── smarty_method_get_config_vars.php │ │ ├── smarty_method_get_global.php │ │ ├── smarty_method_get_registered_object.php │ │ ├── smarty_method_get_template_vars.php │ │ ├── smarty_method_getcachedir.php │ │ ├── smarty_method_getcachelifetime.php │ │ ├── smarty_method_getcompiledir.php │ │ ├── smarty_method_getconfigdir.php │ │ ├── smarty_method_getdebugtemplate.php │ │ ├── smarty_method_getpluginsdir.php │ │ ├── smarty_method_gettemplatedir.php │ │ ├── smarty_method_getvariablefilter.php │ │ ├── smarty_method_iscachemodifycheck.php │ │ ├── smarty_method_iscaching.php │ │ ├── smarty_method_iscompilecheck.php │ │ ├── smarty_method_isconfigbooleanize.php │ │ ├── smarty_method_isconfigoverwrite.php │ │ ├── smarty_method_isconfigreadhidden.php │ │ ├── smarty_method_isdebugging.php │ │ ├── smarty_method_isdebuggingurlctrl.php │ │ ├── smarty_method_isdefaulttimezone.php │ │ ├── smarty_method_isforcecompile.php │ │ ├── smarty_method_load_filter.php │ │ ├── smarty_method_register_block.php │ │ ├── smarty_method_register_compiler_function.php │ │ ├── smarty_method_register_function.php │ │ ├── smarty_method_register_modifier.php │ │ ├── smarty_method_register_object.php │ │ ├── smarty_method_register_outputfilter.php │ │ ├── smarty_method_register_postfilter.php │ │ ├── smarty_method_register_prefilter.php │ │ ├── smarty_method_register_resource.php │ │ ├── smarty_method_register_variablefilter.php │ │ ├── smarty_method_registerdefaultpluginhandler.php │ │ ├── smarty_method_registerdefaulttemplatehandler.php │ │ ├── smarty_method_setconfigdir.php │ │ ├── smarty_method_setdebugtemplate.php │ │ ├── smarty_method_setpluginsdir.php │ │ ├── smarty_method_template_exists.php │ │ ├── smarty_method_test.php │ │ ├── smarty_method_unregister_block.php │ │ ├── smarty_method_unregister_compiler_function.php │ │ ├── smarty_method_unregister_function.php │ │ ├── smarty_method_unregister_modifier.php │ │ ├── smarty_method_unregister_object.php │ │ ├── smarty_method_unregister_outputfilter.php │ │ ├── smarty_method_unregister_postfilter.php │ │ ├── smarty_method_unregister_prefilter.php │ │ ├── smarty_method_unregister_resource.php │ │ ├── smarty_method_unregister_variablefilter.php │ │ └── smarty_security.php ├── swift │ ├── LICENSE │ ├── classes │ │ ├── Swift.php │ │ └── Swift │ │ │ ├── Attachment.php │ │ │ ├── ByteStream │ │ │ ├── AbstractFilterableInputStream.php │ │ │ ├── ArrayByteStream.php │ │ │ └── FileByteStream.php │ │ │ ├── CharacterReader.php │ │ │ ├── CharacterReader │ │ │ ├── GenericFixedWidthReader.php │ │ │ ├── UsAsciiReader.php │ │ │ └── Utf8Reader.php │ │ │ ├── CharacterReaderFactory.php │ │ │ ├── CharacterReaderFactory │ │ │ └── SimpleCharacterReaderFactory.php │ │ │ ├── CharacterStream.php │ │ │ ├── CharacterStream │ │ │ ├── ArrayCharacterStream.php │ │ │ └── NgCharacterStream.php │ │ │ ├── DependencyContainer.php │ │ │ ├── DependencyException.php │ │ │ ├── EmbeddedFile.php │ │ │ ├── Encoder.php │ │ │ ├── Encoder │ │ │ ├── Base64Encoder.php │ │ │ ├── QpEncoder.php │ │ │ └── Rfc2231Encoder.php │ │ │ ├── Encoding.php │ │ │ ├── Events │ │ │ ├── CommandEvent.php │ │ │ ├── CommandListener.php │ │ │ ├── Event.php │ │ │ ├── EventDispatcher.php │ │ │ ├── EventListener.php │ │ │ ├── EventObject.php │ │ │ ├── ResponseEvent.php │ │ │ ├── ResponseListener.php │ │ │ ├── SendEvent.php │ │ │ ├── SendListener.php │ │ │ ├── SimpleEventDispatcher.php │ │ │ ├── TransportChangeEvent.php │ │ │ ├── TransportChangeListener.php │ │ │ ├── TransportExceptionEvent.php │ │ │ └── TransportExceptionListener.php │ │ │ ├── FailoverTransport.php │ │ │ ├── FileStream.php │ │ │ ├── Filterable.php │ │ │ ├── Image.php │ │ │ ├── InputByteStream.php │ │ │ ├── IoException.php │ │ │ ├── KeyCache.php │ │ │ ├── KeyCache │ │ │ ├── ArrayKeyCache.php │ │ │ ├── DiskKeyCache.php │ │ │ ├── KeyCacheInputStream.php │ │ │ ├── NullKeyCache.php │ │ │ └── SimpleKeyCacheInputStream.php │ │ │ ├── LoadBalancedTransport.php │ │ │ ├── MailTransport.php │ │ │ ├── Mailer.php │ │ │ ├── Mailer │ │ │ ├── ArrayRecipientIterator.php │ │ │ └── RecipientIterator.php │ │ │ ├── Message.php │ │ │ ├── Mime │ │ │ ├── Attachment.php │ │ │ ├── CharsetObserver.php │ │ │ ├── ContentEncoder.php │ │ │ ├── ContentEncoder │ │ │ │ ├── Base64ContentEncoder.php │ │ │ │ ├── PlainContentEncoder.php │ │ │ │ └── QpContentEncoder.php │ │ │ ├── EmbeddedFile.php │ │ │ ├── EncodingObserver.php │ │ │ ├── Header.php │ │ │ ├── HeaderEncoder.php │ │ │ ├── HeaderEncoder │ │ │ │ ├── Base64HeaderEncoder.php │ │ │ │ └── QpHeaderEncoder.php │ │ │ ├── HeaderFactory.php │ │ │ ├── HeaderSet.php │ │ │ ├── Headers │ │ │ │ ├── AbstractHeader.php │ │ │ │ ├── DateHeader.php │ │ │ │ ├── IdentificationHeader.php │ │ │ │ ├── MailboxHeader.php │ │ │ │ ├── ParameterizedHeader.php │ │ │ │ ├── PathHeader.php │ │ │ │ └── UnstructuredHeader.php │ │ │ ├── Message.php │ │ │ ├── MimeEntity.php │ │ │ ├── MimePart.php │ │ │ ├── ParameterizedHeader.php │ │ │ ├── SimpleHeaderFactory.php │ │ │ ├── SimpleHeaderSet.php │ │ │ ├── SimpleMessage.php │ │ │ └── SimpleMimeEntity.php │ │ │ ├── MimePart.php │ │ │ ├── OutputByteStream.php │ │ │ ├── Plugins │ │ │ ├── AntiFloodPlugin.php │ │ │ ├── BandwidthMonitorPlugin.php │ │ │ ├── Decorator │ │ │ │ └── Replacements.php │ │ │ ├── DecoratorPlugin.php │ │ │ ├── Logger.php │ │ │ ├── LoggerPlugin.php │ │ │ ├── Loggers │ │ │ │ ├── ArrayLogger.php │ │ │ │ └── EchoLogger.php │ │ │ ├── Pop │ │ │ │ ├── Pop3Connection.php │ │ │ │ └── Pop3Exception.php │ │ │ ├── PopBeforeSmtpPlugin.php │ │ │ ├── Reporter.php │ │ │ ├── ReporterPlugin.php │ │ │ ├── Reporters │ │ │ │ ├── HitReporter.php │ │ │ │ └── HtmlReporter.php │ │ │ ├── Sleeper.php │ │ │ ├── ThrottlerPlugin.php │ │ │ └── Timer.php │ │ │ ├── Preferences.php │ │ │ ├── ReplacementFilterFactory.php │ │ │ ├── RfcComplianceException.php │ │ │ ├── SendmailTransport.php │ │ │ ├── SmtpTransport.php │ │ │ ├── StreamFilter.php │ │ │ ├── StreamFilters │ │ │ ├── ByteArrayReplacementFilter.php │ │ │ ├── StringReplacementFilter.php │ │ │ └── StringReplacementFilterFactory.php │ │ │ ├── SwiftException.php │ │ │ ├── Transport.php │ │ │ ├── Transport │ │ │ ├── AbstractSmtpTransport.php │ │ │ ├── Esmtp │ │ │ │ ├── Auth │ │ │ │ │ ├── CramMd5Authenticator.php │ │ │ │ │ ├── LoginAuthenticator.php │ │ │ │ │ └── PlainAuthenticator.php │ │ │ │ ├── AuthHandler.php │ │ │ │ └── Authenticator.php │ │ │ ├── EsmtpHandler.php │ │ │ ├── EsmtpTransport.php │ │ │ ├── FailoverTransport.php │ │ │ ├── IoBuffer.php │ │ │ ├── LoadBalancedTransport.php │ │ │ ├── MailInvoker.php │ │ │ ├── MailTransport.php │ │ │ ├── SendmailTransport.php │ │ │ ├── SimpleMailInvoker.php │ │ │ ├── SmtpAgent.php │ │ │ └── StreamBuffer.php │ │ │ └── TransportException.php │ ├── dependency_maps │ │ ├── cache_deps.php │ │ ├── mime_deps.php │ │ └── transport_deps.php │ ├── mime_types.php │ ├── preferences.php │ ├── swift_init.php │ ├── swift_required.php │ └── swift_required_pear.php ├── tinymce │ ├── langs │ │ └── en.js │ ├── license.txt │ ├── plugins │ │ ├── advhr │ │ │ ├── css │ │ │ │ └── advhr.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ └── rule.js │ │ │ ├── langs │ │ │ │ └── en_dlg.js │ │ │ └── rule.htm │ │ ├── advimage │ │ │ ├── css │ │ │ │ └── advimage.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── image.htm │ │ │ ├── img │ │ │ │ └── sample.gif │ │ │ ├── js │ │ │ │ └── image.js │ │ │ └── langs │ │ │ │ └── en_dlg.js │ │ ├── advlink │ │ │ ├── css │ │ │ │ └── advlink.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ └── advlink.js │ │ │ ├── langs │ │ │ │ └── en_dlg.js │ │ │ └── link.htm │ │ ├── advlist │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── autoresize │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── autosave │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ └── langs │ │ │ │ └── en.js │ │ ├── bbcode │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── contextmenu │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── directionality │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── emotions │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── emotions.htm │ │ │ ├── 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 │ │ │ ├── js │ │ │ │ └── emotions.js │ │ │ └── langs │ │ │ │ └── en_dlg.js │ │ ├── example │ │ │ ├── dialog.htm │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── img │ │ │ │ └── example.gif │ │ │ ├── js │ │ │ │ └── dialog.js │ │ │ └── langs │ │ │ │ ├── en.js │ │ │ │ └── en_dlg.js │ │ ├── fullpage │ │ │ ├── css │ │ │ │ └── fullpage.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── fullpage.htm │ │ │ ├── js │ │ │ │ └── fullpage.js │ │ │ └── langs │ │ │ │ └── en_dlg.js │ │ ├── fullscreen │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ └── fullscreen.htm │ │ ├── iespell │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── inlinepopups │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── skins │ │ │ │ └── clearlooks2 │ │ │ │ │ ├── img │ │ │ │ │ ├── alert.gif │ │ │ │ │ ├── button.gif │ │ │ │ │ ├── buttons.gif │ │ │ │ │ ├── confirm.gif │ │ │ │ │ ├── corners.gif │ │ │ │ │ ├── horizontal.gif │ │ │ │ │ └── vertical.gif │ │ │ │ │ └── window.css │ │ │ └── template.htm │ │ ├── insertdatetime │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── layer │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── legacyoutput │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── media │ │ │ ├── css │ │ │ │ ├── content.css │ │ │ │ └── media.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── img │ │ │ │ ├── flash.gif │ │ │ │ ├── flv_player.swf │ │ │ │ ├── quicktime.gif │ │ │ │ ├── realmedia.gif │ │ │ │ ├── shockwave.gif │ │ │ │ ├── trans.gif │ │ │ │ └── windowsmedia.gif │ │ │ ├── js │ │ │ │ ├── embed.js │ │ │ │ └── media.js │ │ │ ├── langs │ │ │ │ └── en_dlg.js │ │ │ └── media.htm │ │ ├── nonbreaking │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── noneditable │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── pagebreak │ │ │ ├── css │ │ │ │ └── content.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ └── img │ │ │ │ ├── pagebreak.gif │ │ │ │ └── trans.gif │ │ ├── paste │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ ├── pastetext.js │ │ │ │ └── pasteword.js │ │ │ ├── langs │ │ │ │ └── en_dlg.js │ │ │ ├── pastetext.htm │ │ │ └── pasteword.htm │ │ ├── preview │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── example.html │ │ │ ├── jscripts │ │ │ │ └── embed.js │ │ │ └── preview.html │ │ ├── print │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── save │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── searchreplace │ │ │ ├── css │ │ │ │ └── searchreplace.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ └── searchreplace.js │ │ │ ├── langs │ │ │ │ └── en_dlg.js │ │ │ └── searchreplace.htm │ │ ├── spellchecker │ │ │ ├── css │ │ │ │ └── content.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ └── img │ │ │ │ └── wline.gif │ │ ├── style │ │ │ ├── css │ │ │ │ └── props.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ └── props.js │ │ │ ├── langs │ │ │ │ └── en_dlg.js │ │ │ └── props.htm │ │ ├── tabfocus │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── table │ │ │ ├── cell.htm │ │ │ ├── css │ │ │ │ ├── cell.css │ │ │ │ ├── row.css │ │ │ │ └── table.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ ├── cell.js │ │ │ │ ├── merge_cells.js │ │ │ │ ├── row.js │ │ │ │ └── table.js │ │ │ ├── langs │ │ │ │ └── en_dlg.js │ │ │ ├── merge_cells.htm │ │ │ ├── row.htm │ │ │ └── table.htm │ │ ├── template │ │ │ ├── blank.htm │ │ │ ├── css │ │ │ │ └── template.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ └── template.js │ │ │ ├── langs │ │ │ │ └── en_dlg.js │ │ │ └── template.htm │ │ ├── visualchars │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── wordcount │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ └── xhtmlxtras │ │ │ ├── abbr.htm │ │ │ ├── acronym.htm │ │ │ ├── attributes.htm │ │ │ ├── cite.htm │ │ │ ├── css │ │ │ ├── attributes.css │ │ │ └── popup.css │ │ │ ├── del.htm │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── ins.htm │ │ │ ├── js │ │ │ ├── abbr.js │ │ │ ├── acronym.js │ │ │ ├── attributes.js │ │ │ ├── cite.js │ │ │ ├── del.js │ │ │ ├── element_common.js │ │ │ └── ins.js │ │ │ └── langs │ │ │ └── en_dlg.js │ ├── themes │ │ ├── advanced │ │ │ ├── about.htm │ │ │ ├── anchor.htm │ │ │ ├── charmap.htm │ │ │ ├── color_picker.htm │ │ │ ├── editor_template.js │ │ │ ├── editor_template_src.js │ │ │ ├── image.htm │ │ │ ├── img │ │ │ │ ├── colorpicker.jpg │ │ │ │ └── icons.gif │ │ │ ├── js │ │ │ │ ├── about.js │ │ │ │ ├── anchor.js │ │ │ │ ├── charmap.js │ │ │ │ ├── color_picker.js │ │ │ │ ├── image.js │ │ │ │ ├── link.js │ │ │ │ └── source_editor.js │ │ │ ├── langs │ │ │ │ ├── en.js │ │ │ │ └── en_dlg.js │ │ │ ├── link.htm │ │ │ ├── skins │ │ │ │ ├── default │ │ │ │ │ ├── content.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── img │ │ │ │ │ │ ├── buttons.png │ │ │ │ │ │ ├── items.gif │ │ │ │ │ │ ├── menu_arrow.gif │ │ │ │ │ │ ├── menu_check.gif │ │ │ │ │ │ ├── progress.gif │ │ │ │ │ │ └── tabs.gif │ │ │ │ │ └── ui.css │ │ │ │ └── o2k7 │ │ │ │ │ ├── content.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── img │ │ │ │ │ ├── button_bg.png │ │ │ │ │ ├── button_bg_black.png │ │ │ │ │ └── button_bg_silver.png │ │ │ │ │ ├── ui.css │ │ │ │ │ ├── ui_black.css │ │ │ │ │ └── ui_silver.css │ │ │ └── source_editor.htm │ │ └── simple │ │ │ ├── editor_template.js │ │ │ ├── editor_template_src.js │ │ │ ├── img │ │ │ └── icons.gif │ │ │ ├── langs │ │ │ └── en.js │ │ │ └── skins │ │ │ ├── default │ │ │ ├── content.css │ │ │ └── ui.css │ │ │ └── o2k7 │ │ │ ├── content.css │ │ │ ├── img │ │ │ └── button_bg.png │ │ │ └── ui.css │ ├── tiny_mce.js │ ├── tiny_mce_popup.js │ ├── tiny_mce_src.js │ └── utils │ │ ├── editable_selects.js │ │ ├── form_utils.js │ │ ├── mctabs.js │ │ └── validate.js ├── trellis.php ├── trellis_admin.php └── uploadify │ ├── jquery.uploadify.js │ ├── jquery.uploadify.js.old │ ├── swfobject.js │ ├── swfobject.js.old │ ├── uploadify.swf │ └── uploadify.swf.old ├── index.php ├── install ├── index.php ├── skin_install.php ├── sql_queries.php └── trellis_install.php ├── languages ├── en │ ├── ad_lang_articles.php │ ├── ad_lang_cache.php │ ├── ad_lang_categories.php │ ├── ad_lang_cdfields.php │ ├── ad_lang_cpfields.php │ ├── ad_lang_departs.php │ ├── ad_lang_emails.php │ ├── ad_lang_error.php │ ├── ad_lang_flags.php │ ├── ad_lang_global.php │ ├── ad_lang_groups.php │ ├── ad_lang_home.php │ ├── ad_lang_languages.php │ ├── ad_lang_logs.php │ ├── ad_lang_news.php │ ├── ad_lang_pages.php │ ├── ad_lang_priorities.php │ ├── ad_lang_redirect.php │ ├── ad_lang_rtemplates.php │ ├── ad_lang_settings.php │ ├── ad_lang_skins.php │ ├── ad_lang_statuses.php │ ├── ad_lang_tickets.php │ ├── ad_lang_users.php │ ├── index.html │ ├── lang_account.php │ ├── lang_email_content.php │ ├── lang_error.php │ ├── lang_global.php │ ├── lang_knowledgebase.php │ ├── lang_news.php │ ├── lang_redirect.php │ ├── lang_register.php │ └── lang_tickets.php └── index.html ├── skins ├── index.html ├── s1 │ ├── css │ │ ├── jquery-ui.css │ │ ├── style.css │ │ └── tiburon.css │ ├── images │ │ ├── arrow_down.gif │ │ ├── arrow_right.gif │ │ ├── arrow_up.gif │ │ ├── arrow_up_down_icon.png │ │ ├── block_bkg.png │ │ ├── button_approve.gif │ │ ├── button_delete.gif │ │ ├── button_delete_disabled.gif │ │ ├── button_edit.gif │ │ ├── button_export.gif │ │ ├── button_mini_close.gif │ │ ├── button_mini_delete.gif │ │ ├── button_mini_done.gif │ │ ├── button_mini_escalate.gif │ │ ├── button_mini_filters.gif │ │ ├── button_mini_hold.gif │ │ ├── button_mini_move.gif │ │ ├── button_mini_notes.gif │ │ ├── button_mini_prune.gif │ │ ├── button_mini_reopen.gif │ │ ├── button_mini_reorder.gif │ │ ├── button_mini_search.gif │ │ ├── button_mini_settings.gif │ │ ├── button_mini_ticket_delete.gif │ │ ├── button_mini_ticket_edit.gif │ │ ├── button_upload.gif │ │ ├── cal_arrow_left.gif │ │ ├── cal_arrow_right.gif │ │ ├── catbar_bkg.png │ │ ├── content_bkg.jpg │ │ ├── content_bkg.png │ │ ├── delete_icon.gif │ │ ├── edit_icon.gif │ │ ├── emoticon_smile.png │ │ ├── emoticon_unhappy.png │ │ ├── end_cap_bkg.gif │ │ ├── end_cap_left.jpg │ │ ├── end_cap_right.jpg │ │ ├── fcbkc_close.gif │ │ ├── header.jpg │ │ ├── header_lower.jpg │ │ ├── icon_escalate.png │ │ ├── icons │ │ │ ├── addressbook.png │ │ │ ├── addressbook.png.BACKUP.83610.png │ │ │ ├── addressbook.png.LOCAL.83610.png │ │ │ ├── addressbook.png.REMOTE.83610.png │ │ │ ├── alphabet.png │ │ │ ├── arrow_back.png │ │ │ ├── arrow_circle_back.png │ │ │ ├── arrow_circle_refresh.png │ │ │ ├── arrow_step_over.png │ │ │ ├── arrow_sub.png │ │ │ ├── arrow_switch.png │ │ │ ├── assign.png │ │ │ ├── balloon.png │ │ │ ├── balloon_small.png │ │ │ ├── binocular.png │ │ │ ├── book.png │ │ │ ├── box_arrow.png │ │ │ ├── box_plus.png │ │ │ ├── broom.png │ │ │ ├── buoy.png │ │ │ ├── buoy_plus.png │ │ │ ├── circle_delete.png │ │ │ ├── circle_plus.png │ │ │ ├── circle_tick.png │ │ │ ├── color.png │ │ │ ├── compile.png │ │ │ ├── cross.png │ │ │ ├── document_text.png │ │ │ ├── drill.png │ │ │ ├── edit.png │ │ │ ├── escalate.png │ │ │ ├── exclamation.png │ │ │ ├── exclamation_red.png │ │ │ ├── feed.png │ │ │ ├── field.png │ │ │ ├── flag.png │ │ │ ├── folder_bookmark.png │ │ │ ├── folder_export.png │ │ │ ├── folder_import.png │ │ │ ├── folder_page.png │ │ │ ├── folders.png │ │ │ ├── frame_tick.png │ │ │ ├── hold.png │ │ │ ├── hold_minus.png │ │ │ ├── magnet.png │ │ │ ├── mail_pencil.png │ │ │ ├── mails_arrow.png │ │ │ ├── megaphone.png │ │ │ ├── minus_circle.png │ │ │ ├── minus_sm.png │ │ │ ├── move.png │ │ │ ├── page_arrow.png │ │ │ ├── page_bookmark.png │ │ │ ├── page_delete.png │ │ │ ├── page_edit.png │ │ │ ├── paint_pencil.png │ │ │ ├── palette_arrow.png │ │ │ ├── palette_plus.png │ │ │ ├── plus_sm.png │ │ │ ├── print.png │ │ │ ├── priority.png │ │ │ ├── puzzle_pencil.png │ │ │ ├── question.png │ │ │ ├── rmvescalate.png │ │ │ ├── script_edit.png │ │ │ ├── settings.png │ │ │ ├── signature.png │ │ │ ├── star.png │ │ │ ├── status.png │ │ │ ├── tag.png │ │ │ ├── tick.png │ │ │ ├── ticket.png │ │ │ ├── toggle_collapse.png │ │ │ ├── toggle_expand.png │ │ │ ├── tweak.png │ │ │ ├── user_minus.png │ │ │ └── user_pencil.png │ │ ├── index.html │ │ ├── indicator.gif │ │ ├── infobar_bkg.jpg │ │ ├── infopop_bkg.gif │ │ ├── input_bkg.gif │ │ ├── install_logo.jpg │ │ ├── jquery-ui │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ └── ui-icons_f9bd01_256x240.png │ │ ├── kb_icon.gif │ │ ├── loading.gif │ │ ├── logos │ │ │ ├── feed.png │ │ │ ├── index.html │ │ │ ├── mysql.png │ │ │ ├── php.png │ │ │ ├── tinymce.png │ │ │ ├── vcss.png │ │ │ ├── vrss.png │ │ │ ├── xhtml10.png │ │ │ └── zend.png │ │ ├── menu_bg.jpg │ │ ├── menu_left.jpg │ │ ├── menu_right.jpg │ │ ├── navbar_bkg.jpg │ │ ├── navbar_bkg.png │ │ ├── navbar_cap_left.jpg │ │ ├── navbar_cap_right.jpg │ │ ├── navbar_logo.png │ │ ├── page_delete.png │ │ ├── page_edit.png │ │ ├── page_white_code_red.png │ │ ├── panel_bkg.jpg │ │ ├── popup_bkg.png │ │ ├── popup_tail.png │ │ ├── powerbar_bkg.jpg │ │ ├── preview.jpg │ │ ├── rate_delete.png │ │ ├── rate_half.gif │ │ ├── rate_hover.gif │ │ ├── rate_off.gif │ │ ├── rate_on.gif │ │ ├── rate_star.png │ │ ├── redbar_bkg.png │ │ ├── revert_icon.gif │ │ ├── star_empty.gif │ │ ├── star_full.gif │ │ ├── star_half.gif │ │ ├── star_off.gif │ │ ├── star_on.gif │ │ ├── status_bkg.gif │ │ ├── statusbar_bkg.png │ │ ├── td_logo.jpg │ │ ├── td_welcome_acphome.png │ │ ├── td_welcome_bkg.png │ │ ├── thumbs_down.gif │ │ ├── thumbs_down_hover.gif │ │ ├── thumbs_up.gif │ │ ├── thumbs_up_hover.gif │ │ ├── ticket_icon.gif │ │ ├── tinymce_filler.png │ │ ├── toggle.gif │ │ ├── up_to_date.jpg │ │ ├── update_available.jpg │ │ ├── upgrade_logo.jpg │ │ ├── vc_unable_to_check.jpg │ │ ├── vc_up_to_date.jpg │ │ ├── vc_update_available.jpg │ │ └── welcome.jpg │ ├── info.xml │ ├── scripts │ │ ├── autocomplete.js │ │ ├── catlinks.js │ │ ├── common.js │ │ ├── common_acp.js │ │ ├── fcbkcomplete.js │ │ ├── global.js │ │ ├── index.html │ │ ├── jquery-ui.js │ │ ├── jquery-ui.js.old │ │ ├── jquery.js │ │ ├── jquery.js.old │ │ ├── jquery.json.js │ │ ├── jquery.menu.js │ │ ├── jquery.metadata.js │ │ ├── jquery.rating.js │ │ ├── jquery.rating.js.old │ │ ├── jquery.scrollto.js │ │ ├── jqueryextras.js │ │ ├── livevalidation.js │ │ └── navlinks.js │ └── templates │ │ ├── acc_change_email.tpl │ │ ├── acc_change_pass.tpl │ │ ├── acc_modify.tpl │ │ ├── account.tpl │ │ ├── dashboard.tpl │ │ ├── index.html │ │ ├── kb_article.tpl │ │ ├── kb_category.tpl │ │ ├── kb_edit_comment.tpl │ │ ├── kb_print_article.tpl │ │ ├── kb_search_results.tpl │ │ ├── knowledge_base.tpl │ │ ├── news.tpl │ │ ├── news_edit_comment.tpl │ │ ├── news_item.tpl │ │ ├── page.tpl │ │ ├── print.tpl │ │ ├── reg_forgot_pass.tpl │ │ ├── reg_resend_val.tpl │ │ ├── reg_reset_pass.tpl │ │ ├── reg_upgrade.tpl │ │ ├── register.tpl │ │ ├── tck_edit.tpl │ │ ├── tck_guest_login.tpl │ │ ├── tck_print.tpl │ │ ├── tck_reply_edit.tpl │ │ ├── tck_submit_1.tpl │ │ ├── tck_submit_2.tpl │ │ ├── tck_view.tpl │ │ ├── tickets.tpl │ │ └── wrapper.tpl └── s2 │ ├── css │ └── style.css │ ├── images │ └── preview.jpg │ ├── info.xml │ └── templates │ ├── acc_change_email.tpl │ ├── acc_change_pass.tpl │ ├── acc_modify.tpl │ ├── account.tpl │ ├── dashboard.tpl │ ├── index.html │ ├── kb_edit_comment.tpl │ ├── kb_print_article.tpl │ ├── kb_search_results.tpl │ ├── kb_show_article.tpl │ ├── kb_show_category.tpl │ ├── knowledge_base.tpl │ ├── news.tpl │ ├── news_edit_comment.tpl │ ├── news_print.tpl │ ├── news_show.tpl │ ├── page_show.tpl │ ├── print.tpl │ ├── reg_forgot_pass.tpl │ ├── reg_resend_val.tpl │ ├── reg_reset_pass.tpl │ ├── reg_upgrade.tpl │ ├── register.tpl │ ├── tck_close_reason.tpl │ ├── tck_edit.tpl │ ├── tck_guest_login.tpl │ ├── tck_history.tpl │ ├── tck_print.tpl │ ├── tck_reply_edit.tpl │ ├── tck_show.tpl │ ├── tck_submit_1.tpl │ ├── tck_submit_2.tpl │ ├── tck_submit_3.tpl │ └── wrapper.tpl ├── sources ├── account.php ├── dashboard.php ├── feed.php ├── index.html ├── knowledgebase.php ├── news.php ├── pages.php ├── pipe.php ├── pop3.php ├── register.php └── tickets.php └── upgrade ├── index.php ├── up_10031234 ├── index.php ├── skin_trellis_desk_classic_td.xml ├── skin_trellis_desk_default_td.xml └── sql_queries.php └── up_10032251 ├── index.php └── sql_queries.php /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/.htaccess -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | This file is part of Trellis Desk. 2 | 3 | Trellis Desk is free software: you can redistribute it and/or modify 4 | it under the terms of the GNU General Public License as published by 5 | the Free Software Foundation, either version 3 of the License, or 6 | (at your option) any later version. 7 | 8 | Trellis Desk is distributed in the hope that it will be useful, 9 | but WITHOUT ANY WARRANTY; without even the implied warranty of 10 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 | GNU General Public License for more details. 12 | 13 | You should have received a copy of the GNU General Public License 14 | along with Trellis Desk. If not, see . -------------------------------------------------------------------------------- /admin/admin/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /admin/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /admin/look/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /admin/manage/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /admin/tools/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /config.php.dist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/cache/htmlpurifier/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /data/cache/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /data/cache/trellis/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /data/logs/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /data/skin_compile/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /data/temp/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /data/uploads/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /images/classic/arrow_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/arrow_down.gif -------------------------------------------------------------------------------- /images/classic/arrow_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/arrow_right.gif -------------------------------------------------------------------------------- /images/classic/arrow_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/arrow_up.gif -------------------------------------------------------------------------------- /images/classic/content_bkg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/content_bkg.jpg -------------------------------------------------------------------------------- /images/classic/delete_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/delete_icon.gif -------------------------------------------------------------------------------- /images/classic/edit_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/edit_icon.gif -------------------------------------------------------------------------------- /images/classic/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/header.jpg -------------------------------------------------------------------------------- /images/classic/header_acp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/header_acp.jpg -------------------------------------------------------------------------------- /images/classic/header_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/header_bg.jpg -------------------------------------------------------------------------------- /images/classic/header_lower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/header_lower.jpg -------------------------------------------------------------------------------- /images/classic/index.html: -------------------------------------------------------------------------------- 1 |

Opps!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /images/classic/kb_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/kb_icon.gif -------------------------------------------------------------------------------- /images/classic/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/loading.gif -------------------------------------------------------------------------------- /images/classic/logos/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/logos/feed.png -------------------------------------------------------------------------------- /images/classic/logos/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /images/classic/logos/mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/logos/mysql.png -------------------------------------------------------------------------------- /images/classic/logos/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/logos/php.png -------------------------------------------------------------------------------- /images/classic/logos/tinymce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/logos/tinymce.png -------------------------------------------------------------------------------- /images/classic/logos/vcss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/logos/vcss.png -------------------------------------------------------------------------------- /images/classic/logos/vrss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/logos/vrss.png -------------------------------------------------------------------------------- /images/classic/logos/xhtml10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/logos/xhtml10.png -------------------------------------------------------------------------------- /images/classic/logos/zend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/logos/zend.png -------------------------------------------------------------------------------- /images/classic/menu_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/menu_bg.jpg -------------------------------------------------------------------------------- /images/classic/menu_left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/menu_left.jpg -------------------------------------------------------------------------------- /images/classic/menu_right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/menu_right.jpg -------------------------------------------------------------------------------- /images/classic/rate_half.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/rate_half.gif -------------------------------------------------------------------------------- /images/classic/rate_hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/rate_hover.gif -------------------------------------------------------------------------------- /images/classic/rate_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/rate_off.gif -------------------------------------------------------------------------------- /images/classic/rate_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/rate_on.gif -------------------------------------------------------------------------------- /images/classic/revert_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/revert_icon.gif -------------------------------------------------------------------------------- /images/classic/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/thumbs_down.gif -------------------------------------------------------------------------------- /images/classic/thumbs_down_hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/thumbs_down_hover.gif -------------------------------------------------------------------------------- /images/classic/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/thumbs_up.gif -------------------------------------------------------------------------------- /images/classic/thumbs_up_hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/thumbs_up_hover.gif -------------------------------------------------------------------------------- /images/classic/ticket_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/classic/ticket_icon.gif -------------------------------------------------------------------------------- /images/flags/flag_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/flags/flag_blue.png -------------------------------------------------------------------------------- /images/flags/flag_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/flags/flag_green.png -------------------------------------------------------------------------------- /images/flags/flag_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/flags/flag_orange.png -------------------------------------------------------------------------------- /images/flags/flag_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/flags/flag_pink.png -------------------------------------------------------------------------------- /images/flags/flag_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/flags/flag_purple.png -------------------------------------------------------------------------------- /images/flags/flag_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/flags/flag_red.png -------------------------------------------------------------------------------- /images/flags/flag_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/flags/flag_yellow.png -------------------------------------------------------------------------------- /images/flags/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /images/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /images/priorities/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /images/priorities/priority_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/priorities/priority_blue.gif -------------------------------------------------------------------------------- /images/priorities/priority_blue_dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/priorities/priority_blue_dot.gif -------------------------------------------------------------------------------- /images/priorities/priority_green.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/priorities/priority_green.gif -------------------------------------------------------------------------------- /images/priorities/priority_orange.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/priorities/priority_orange.gif -------------------------------------------------------------------------------- /images/priorities/priority_orange_dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/priorities/priority_orange_dot.gif -------------------------------------------------------------------------------- /images/priorities/priority_pink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/priorities/priority_pink.gif -------------------------------------------------------------------------------- /images/priorities/priority_pink_dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/priorities/priority_pink_dot.gif -------------------------------------------------------------------------------- /images/priorities/priority_purple.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/priorities/priority_purple.gif -------------------------------------------------------------------------------- /images/priorities/priority_purple_dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/priorities/priority_purple_dot.gif -------------------------------------------------------------------------------- /images/priorities/priority_red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/priorities/priority_red.gif -------------------------------------------------------------------------------- /images/priorities/priority_red_dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/priorities/priority_red_dot.gif -------------------------------------------------------------------------------- /images/priorities/priority_yellow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/priorities/priority_yellow.gif -------------------------------------------------------------------------------- /images/priorities/priority_yellow_dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/images/priorities/priority_yellow_dot.gif -------------------------------------------------------------------------------- /includes/classes/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /includes/css/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /includes/css/tinymce.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: Lucida Grande,Arial,Helvetica,sans-serif; 3 | font-size: 13px; 4 | } -------------------------------------------------------------------------------- /includes/functions/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/AutoFormat.DisplayLinkURI.txt: -------------------------------------------------------------------------------- 1 | AutoFormat.DisplayLinkURI 2 | TYPE: bool 3 | VERSION: 3.2.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

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

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

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

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

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

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

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

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

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

10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Cache.DefinitionImpl.txt: -------------------------------------------------------------------------------- 1 | Cache.DefinitionImpl 2 | TYPE: string/null 3 | VERSION: 2.0.0 4 | DEFAULT: 'Serializer' 5 | --DESCRIPTION-- 6 | 7 | This directive defines which method to use when caching definitions, 8 | the complex data-type that makes HTML Purifier tick. Set to null 9 | to disable caching (not recommended, as you will see a definite 10 | performance degradation). 11 | 12 | --ALIASES-- 13 | Core.DefinitionCache 14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.CollectErrors.txt: -------------------------------------------------------------------------------- 1 | Core.CollectErrors 2 | TYPE: bool 3 | VERSION: 2.0.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | 7 | Whether or not to collect errors found while filtering the document. This 8 | is a useful way to give feedback to your users. Warning: 9 | Currently this feature is very patchy and experimental, with lots of 10 | possible error messages not yet implemented. It will not cause any 11 | problems, but it may not help your users either. 12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.ConvertDocumentToFragment.txt: -------------------------------------------------------------------------------- 1 | Core.ConvertDocumentToFragment 2 | TYPE: bool 3 | DEFAULT: true 4 | --DESCRIPTION-- 5 | 6 | This parameter determines whether or not the filter should convert 7 | input that is a full document with html and body tags to a fragment 8 | of just the contents of a body tag. This parameter is simply something 9 | HTML Purifier can do during an edge-case: for most inputs, this 10 | processing is not necessary. 11 | 12 | --ALIASES-- 13 | Core.AcceptFullDocuments 14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidChildren.txt: -------------------------------------------------------------------------------- 1 | Core.EscapeInvalidChildren 2 | TYPE: bool 3 | DEFAULT: false 4 | --DESCRIPTION-- 5 | When true, a child is found that is not allowed in the context of the 6 | parent element will be transformed into text as if it were ASCII. When 7 | false, that element and all internal tags will be dropped, though text will 8 | be preserved. There is no option for dropping the element but preserving 9 | child nodes. 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.EscapeInvalidTags.txt: -------------------------------------------------------------------------------- 1 | Core.EscapeInvalidTags 2 | TYPE: bool 3 | DEFAULT: false 4 | --DESCRIPTION-- 5 | When true, invalid tags will be written back to the document as plain text. 6 | Otherwise, they are silently dropped. 7 | --# vim: et sw=4 sts=4 8 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.EscapeNonASCIICharacters.txt: -------------------------------------------------------------------------------- 1 | Core.EscapeNonASCIICharacters 2 | TYPE: bool 3 | VERSION: 1.4.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | This directive overcomes a deficiency in %Core.Encoding by blindly 7 | converting all non-ASCII characters into decimal numeric entities before 8 | converting it to its native encoding. This means that even characters that 9 | can be expressed in the non-UTF-8 encoding will be entity-ized, which can 10 | be a real downer for encodings like Big5. It also assumes that the ASCII 11 | repetoire is available, although this is the case for almost all encodings. 12 | Anyway, use UTF-8! 13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.Language.txt: -------------------------------------------------------------------------------- 1 | Core.Language 2 | TYPE: string 3 | VERSION: 2.0.0 4 | DEFAULT: 'en' 5 | --DESCRIPTION-- 6 | 7 | ISO 639 language code for localizable things in HTML Purifier to use, 8 | which is mainly error reporting. There is currently only an English (en) 9 | translation, so this directive is currently useless. 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.MaintainLineNumbers.txt: -------------------------------------------------------------------------------- 1 | Core.MaintainLineNumbers 2 | TYPE: bool/null 3 | VERSION: 2.0.0 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

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

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

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

12 | --# vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Core.RemoveScriptContents.txt: -------------------------------------------------------------------------------- 1 | Core.RemoveScriptContents 2 | TYPE: bool/null 3 | DEFAULT: NULL 4 | VERSION: 2.0.0 5 | DEPRECATED-VERSION: 2.1.0 6 | DEPRECATED-USE: Core.HiddenElements 7 | --DESCRIPTION-- 8 |

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

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

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

11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Filter.YouTube.txt: -------------------------------------------------------------------------------- 1 | Filter.YouTube 2 | TYPE: bool 3 | VERSION: 3.1.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 |

7 | This directive enables YouTube video embedding in HTML Purifier. Check 8 | this document 9 | on embedding videos for more information on what this filter does. 10 |

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

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

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

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

14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Parent.txt: -------------------------------------------------------------------------------- 1 | HTML.Parent 2 | TYPE: string 3 | VERSION: 1.3.0 4 | DEFAULT: 'div' 5 | --DESCRIPTION-- 6 | 7 |

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

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

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

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

7 | Whether or not to permit embed tags in documents, with a number of extra 8 | security features added to prevent script execution. This is similar to 9 | what websites like MySpace do to embed tags. Embed is a proprietary 10 | element and will cause your website to stop validating. You probably want 11 | to enable this with %HTML.SafeObject. 12 | Highly experimental. 13 |

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

7 | Whether or not to permit object tags in documents, with a number of extra 8 | security features added to prevent script execution. This is similar to 9 | what websites like MySpace do to object tags. You may also want to 10 | enable %HTML.SafeEmbed for maximum interoperability with Internet Explorer, 11 | although embed tags will cause your website to stop validating. 12 | Highly experimental. 13 |

14 | --# vim: et sw=4 sts=4 15 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Strict.txt: -------------------------------------------------------------------------------- 1 | HTML.Strict 2 | TYPE: bool 3 | VERSION: 1.3.0 4 | DEFAULT: false 5 | DEPRECATED-VERSION: 1.7.0 6 | DEPRECATED-USE: HTML.Doctype 7 | --DESCRIPTION-- 8 | Determines whether or not to use Transitional (loose) or Strict rulesets. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.TidyAdd.txt: -------------------------------------------------------------------------------- 1 | HTML.TidyAdd 2 | TYPE: lookup 3 | VERSION: 2.0.0 4 | DEFAULT: array() 5 | --DESCRIPTION-- 6 | 7 | Fixes to add to the default set of Tidy fixes as per your level. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.Trusted.txt: -------------------------------------------------------------------------------- 1 | HTML.Trusted 2 | TYPE: bool 3 | VERSION: 2.0.0 4 | DEFAULT: false 5 | --DESCRIPTION-- 6 | Indicates whether or not the user input is trusted or not. If the input is 7 | trusted, a more expansive set of allowed tags and attributes will be used. 8 | --# vim: et sw=4 sts=4 9 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/HTML.XHTML.txt: -------------------------------------------------------------------------------- 1 | HTML.XHTML 2 | TYPE: bool 3 | DEFAULT: true 4 | VERSION: 1.1.0 5 | DEPRECATED-VERSION: 1.7.0 6 | DEPRECATED-USE: HTML.Doctype 7 | --DESCRIPTION-- 8 | Determines whether or not output is XHTML 1.0 or HTML 4.01 flavor. 9 | --ALIASES-- 10 | Core.XHTML 11 | --# vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Output.CommentScriptContents.txt: -------------------------------------------------------------------------------- 1 | Output.CommentScriptContents 2 | TYPE: bool 3 | VERSION: 2.0.0 4 | DEFAULT: true 5 | --DESCRIPTION-- 6 | Determines whether or not HTML Purifier should attempt to fix up the 7 | contents of script tags for legacy browsers with comments. 8 | --ALIASES-- 9 | Core.CommentScriptContents 10 | --# vim: et sw=4 sts=4 11 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/Output.Newline.txt: -------------------------------------------------------------------------------- 1 | Output.Newline 2 | TYPE: string/null 3 | VERSION: 2.0.1 4 | DEFAULT: NULL 5 | --DESCRIPTION-- 6 | 7 |

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

13 | --# vim: et sw=4 sts=4 14 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/URI.OverrideAllowedSchemes.txt: -------------------------------------------------------------------------------- 1 | URI.OverrideAllowedSchemes 2 | TYPE: bool 3 | DEFAULT: true 4 | --DESCRIPTION-- 5 | If this is set to true (which it is by default), you can override 6 | %URI.AllowedSchemes by simply registering a HTMLPurifier_URIScheme to the 7 | registry. If false, you will also have to update that directive in order 8 | to add more schemes. 9 | --# vim: et sw=4 sts=4 10 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/info.ini: -------------------------------------------------------------------------------- 1 | name = "HTML Purifier" 2 | 3 | ; vim: et sw=4 sts=4 4 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/HTMLPurifier/Language/classes/en-x-test.php: -------------------------------------------------------------------------------- 1 | 'HTML Purifier X' 9 | ); 10 | 11 | // vim: et sw=4 sts=4 12 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/HTMLPurifier/Language/messages/en-x-testmini.php: -------------------------------------------------------------------------------- 1 | 'HTML Purifier XNone' 10 | ); 11 | 12 | // vim: et sw=4 sts=4 13 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/HTMLPurifier/Printer/ConfigForm.css: -------------------------------------------------------------------------------- 1 | 2 | .hp-config {} 3 | 4 | .hp-config tbody th {text-align:right; padding-right:0.5em;} 5 | .hp-config thead, .hp-config .namespace {background:#3C578C; color:#FFF;} 6 | .hp-config .namespace th {text-align:center;} 7 | .hp-config .verbose {display:none;} 8 | .hp-config .controls {text-align:center;} 9 | 10 | /* vim: et sw=4 sts=4 */ 11 | -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/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 | -------------------------------------------------------------------------------- /includes/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /includes/phpcaptcha/Vera.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/includes/phpcaptcha/Vera.ttf -------------------------------------------------------------------------------- /includes/phpcaptcha/VeraBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/includes/phpcaptcha/VeraBd.ttf -------------------------------------------------------------------------------- /includes/phpcaptcha/VeraIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/includes/phpcaptcha/VeraIt.ttf -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.count_words.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: count_words
14 | * Purpose: count the number of words in a text 15 | * @link http://smarty.php.net/manual/en/language.modifier.count.words.php 16 | * count_words (Smarty online manual) 17 | * @author Monte Ohrt 18 | * @param string 19 | * @return integer 20 | */ 21 | function smarty_modifier_count_words($string) 22 | { 23 | return str_word_count($string); 24 | } 25 | ?> 26 | -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.noprint.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: noprint
14 | * Purpose: return an empty string 15 | * @author Uwe Tews 16 | * @param string 17 | * @return string 18 | */ 19 | function smarty_modifier_noprint($string) 20 | { 21 | return ''; 22 | } 23 | 24 | ?> 25 | -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.spacify.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: spacify
14 | * Purpose: add spaces between characters in a string 15 | * 16 | * @link http://smarty.php.net/manual/en/language.modifier.spacify.php spacify (Smarty online manual) 17 | * @author Monte Ohrt 18 | * @param string $ 19 | * @param string $ 20 | * @return string 21 | */ 22 | function smarty_modifier_spacify($string, $spacify_char = ' ') 23 | { 24 | return implode($spacify_char, preg_split('//', $string, -1)); 25 | } 26 | 27 | ?> 28 | -------------------------------------------------------------------------------- /includes/smarty/plugins/variablefilter.htmlspecialchars.php: -------------------------------------------------------------------------------- 1 | 22 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_addpluginsdir.php: -------------------------------------------------------------------------------- 1 | plugins_dir = array_merge((array)$smarty->plugins_dir, (array)$plugins_dir); 23 | $smarty->plugins_dir = array_unique($smarty->plugins_dir); 24 | return; 25 | } 26 | 27 | ?> 28 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_clear_all_assign.php: -------------------------------------------------------------------------------- 1 | tpl_vars = array(); 27 | } 28 | 29 | ?> 30 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_clear_all_cache.php: -------------------------------------------------------------------------------- 1 | loadCacheResource($type); 25 | 26 | return $cacheResource->clearAll($exp_time); 27 | } 28 | 29 | ?> 30 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_clear_config.php: -------------------------------------------------------------------------------- 1 | config_vars[$varname]); 23 | return; 24 | } else { 25 | $smarty->config_vars = array(); 26 | return; 27 | } 28 | } 29 | 30 | ?> 31 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_disablecachemodifycheck.php: -------------------------------------------------------------------------------- 1 | cache->data_modified_check = false; 20 | return ; 21 | } 22 | 23 | ?> 24 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_disablecaching.php: -------------------------------------------------------------------------------- 1 | smarty->caching = false; 19 | return; 20 | } 21 | 22 | ?> 23 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_disablecompilecheck.php: -------------------------------------------------------------------------------- 1 | compile_check = false; 21 | return; 22 | } 23 | 24 | ?> 25 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_disableconfigbooleanize.php: -------------------------------------------------------------------------------- 1 | smarty->config_booleanize = false; 19 | return; 20 | } 21 | 22 | ?> 23 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_disableconfigoverwrite.php: -------------------------------------------------------------------------------- 1 | config_overwrite = false; 19 | return ; 20 | } 21 | ?> 22 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_disableconfigreadhidden.php: -------------------------------------------------------------------------------- 1 | smarty->config_read_hidden = false; 19 | return; 20 | } 21 | ?> 22 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_disabledebugging.php: -------------------------------------------------------------------------------- 1 | debugging = false; 19 | return; 20 | } 21 | ?> 22 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_disabledebuggingurlctrl.php: -------------------------------------------------------------------------------- 1 | debugging_ctrl = 'none'; 19 | return; 20 | } 21 | 22 | ?> 23 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_disabledefaulttimezone.php: -------------------------------------------------------------------------------- 1 | set_timezone = false; 19 | return; 20 | } 21 | 22 | ?> 23 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_disableforcecompile.php: -------------------------------------------------------------------------------- 1 | force_compile = false; 19 | return; 20 | } 21 | 22 | ?> 23 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_disablevariablefilter.php: -------------------------------------------------------------------------------- 1 | variable_filter = false; 19 | return; 20 | } 21 | 22 | ?> 23 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_enablecachemodifycheck.php: -------------------------------------------------------------------------------- 1 | cache->data_modified_check = true; 19 | return; 20 | } 21 | 22 | ?> 23 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_enablecompilecheck.php: -------------------------------------------------------------------------------- 1 | compile_check = true; 19 | return; 20 | } 21 | 22 | ?> 23 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_enableconfigbooleanize.php: -------------------------------------------------------------------------------- 1 | config_booleanize = true; 19 | return; 20 | } 21 | 22 | ?> 23 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_enableconfigoverwrite.php: -------------------------------------------------------------------------------- 1 | config_overwrite = true; 19 | return; 20 | } 21 | 22 | ?> 23 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_enableconfigreadhidden.php: -------------------------------------------------------------------------------- 1 | smarty->config_read_hidden = true; 19 | return; 20 | } 21 | 22 | ?> 23 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_enabledebugging.php: -------------------------------------------------------------------------------- 1 | smarty->debugging = true; 19 | return; 20 | } 21 | 22 | ?> 23 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_enabledebuggingurlctrl.php: -------------------------------------------------------------------------------- 1 | debugging_ctrl = 'URL'; 19 | return; 20 | } 21 | 22 | ?> 23 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_enabledefaulttimezone.php: -------------------------------------------------------------------------------- 1 | smarty->set_timezone = true; 19 | return; 20 | } 21 | 22 | ?> 23 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_enableforcecompile.php: -------------------------------------------------------------------------------- 1 | force_compile = true; 19 | return; 20 | } 21 | 22 | ?> 23 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_enablevariablefilter.php: -------------------------------------------------------------------------------- 1 | variable_filter = true; 19 | return; 20 | } 21 | 22 | ?> 23 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_getcachedir.php: -------------------------------------------------------------------------------- 1 | smarty->cache->data_dir; 25 | } 26 | 27 | ?> 28 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_getcachelifetime.php: -------------------------------------------------------------------------------- 1 | cache->data_lifetime; 26 | } 27 | 28 | ?> 29 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_getcompiledir.php: -------------------------------------------------------------------------------- 1 | smarty->compile_dir; 25 | } 26 | 27 | ?> 28 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_getconfigdir.php: -------------------------------------------------------------------------------- 1 | config_dir; 25 | } 26 | 27 | ?> 28 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_getdebugtemplate.php: -------------------------------------------------------------------------------- 1 | debug_tpl; 25 | } 26 | 27 | ?> 28 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_getpluginsdir.php: -------------------------------------------------------------------------------- 1 | plugins_dir; 25 | } 26 | 27 | ?> 28 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_gettemplatedir.php: -------------------------------------------------------------------------------- 1 | template_dir; 25 | } 26 | 27 | ?> 28 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_getvariablefilter.php: -------------------------------------------------------------------------------- 1 | variable_filter; 21 | } 22 | 23 | ?> 24 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_iscachemodifycheck.php: -------------------------------------------------------------------------------- 1 | cache->data_modified_check; 19 | } 20 | 21 | ?> 22 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_iscaching.php: -------------------------------------------------------------------------------- 1 | caching; 19 | } 20 | 21 | ?> 22 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_iscompilecheck.php: -------------------------------------------------------------------------------- 1 | compile_check; 19 | } 20 | 21 | ?> 22 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_isconfigbooleanize.php: -------------------------------------------------------------------------------- 1 | config_booleanize; 19 | } 20 | 21 | ?> 22 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_isconfigoverwrite.php: -------------------------------------------------------------------------------- 1 | config_overwrite; 19 | } 20 | 21 | ?> 22 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_isconfigreadhidden.php: -------------------------------------------------------------------------------- 1 | config_read_hidden; 20 | } 21 | ?> 22 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_isdebugging.php: -------------------------------------------------------------------------------- 1 | debugging; 19 | } 20 | 21 | ?> 22 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_isdebuggingurlctrl.php: -------------------------------------------------------------------------------- 1 | debugging_ctrl != 'none'; 19 | } 20 | 21 | ?> 22 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_isdefaulttimezone.php: -------------------------------------------------------------------------------- 1 | set_timezone = false; 19 | } 20 | 21 | ?> 22 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_isforcecompile.php: -------------------------------------------------------------------------------- 1 | force_compile; 20 | } 21 | 22 | 23 | ?> 24 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_register_outputfilter.php: -------------------------------------------------------------------------------- 1 | registered_filters['output'][$smarty->_get_filter_name($function)] = $function; 23 | } 24 | 25 | ?> 26 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_register_postfilter.php: -------------------------------------------------------------------------------- 1 | registered_filters['post'][$smarty->_get_filter_name($function)] = $function; 23 | } 24 | 25 | ?> 26 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_register_prefilter.php: -------------------------------------------------------------------------------- 1 | registered_filters['pre'][$smarty->_get_filter_name($function)] = $function; 23 | } 24 | 25 | ?> 26 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_register_variablefilter.php: -------------------------------------------------------------------------------- 1 | registered_filters['variable'][$smarty->_get_filter_name($function)] = $function; 23 | } 24 | 25 | ?> 26 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_setconfigdir.php: -------------------------------------------------------------------------------- 1 | smarty->config_dir = $config_dir; 23 | return; 24 | } 25 | 26 | ?> 27 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_setdebugtemplate.php: -------------------------------------------------------------------------------- 1 | debug_tpl = $debug_tpl; 25 | return; 26 | } 27 | 28 | ?> 29 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_setpluginsdir.php: -------------------------------------------------------------------------------- 1 | plugins_dir = (array)$plugins_dir; 26 | return; 27 | } 28 | 29 | ?> 30 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_unregister_block.php: -------------------------------------------------------------------------------- 1 | registered_plugins['block'][$block_tag])) { 25 | unset($smarty->registered_plugins['block'][$block_tag]); 26 | } 27 | } 28 | 29 | ?> 30 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_unregister_function.php: -------------------------------------------------------------------------------- 1 | registered_plugins['function'][$function_tag])) { 25 | unset($smarty->registered_plugins['function'][$function_tag]); 26 | } 27 | } 28 | 29 | ?> 30 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_unregister_modifier.php: -------------------------------------------------------------------------------- 1 | registered_plugins['modifier'][$modifier])) { 25 | unset($smarty->registered_plugins['modifier'][$modifier]); 26 | } 27 | } 28 | 29 | ?> 30 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_unregister_object.php: -------------------------------------------------------------------------------- 1 | registered_objects[$object]); 26 | } 27 | 28 | ?> 29 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_unregister_outputfilter.php: -------------------------------------------------------------------------------- 1 | registered_filters['output'][$smarty->_get_filter_name($function)]); 26 | } 27 | 28 | ?> 29 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_unregister_postfilter.php: -------------------------------------------------------------------------------- 1 | registered_filters['post'][$smarty->_get_filter_name($function)]); 25 | } 26 | 27 | ?> 28 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_unregister_prefilter.php: -------------------------------------------------------------------------------- 1 | registered_filters['pre'][$smarty->_get_filter_name($function)]); 25 | } 26 | 27 | ?> 28 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_unregister_resource.php: -------------------------------------------------------------------------------- 1 | plugins['resource'][$type]); 25 | } 26 | 27 | ?> 28 | -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_unregister_variablefilter.php: -------------------------------------------------------------------------------- 1 | registered_filters['variable'][$smarty->_get_filter_name($function)]); 25 | } 26 | 27 | ?> 28 | -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Events/EventListener.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | blank_page 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /includes/tinymce/plugins/template/css/template.css: -------------------------------------------------------------------------------- 1 | #frmbody { 2 | padding: 10px; 3 | background-color: #FFF; 4 | border: 1px solid #CCC; 5 | } 6 | 7 | .frmRow { 8 | margin-bottom: 10px; 9 | } 10 | 11 | #templatesrc { 12 | border: none; 13 | width: 320px; 14 | height: 240px; 15 | } 16 | 17 | .title { 18 | padding-bottom: 5px; 19 | } 20 | 21 | .mceActionPanel { 22 | padding-top: 5px; 23 | } 24 | -------------------------------------------------------------------------------- /includes/tinymce/plugins/wordcount/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/includes/tinymce/plugins/wordcount/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/wordcount/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/includes/tinymce/plugins/wordcount/editor_plugin_src.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/xhtmlxtras/css/attributes.css: -------------------------------------------------------------------------------- 1 | .panel_wrapper div.current { 2 | height: 290px; 3 | } 4 | 5 | #id, #style, #title, #dir, #hreflang, #lang, #classlist, #tabindex, #accesskey { 6 | width: 200px; 7 | } 8 | 9 | #events_panel input { 10 | width: 200px; 11 | } 12 | -------------------------------------------------------------------------------- /includes/tinymce/plugins/xhtmlxtras/css/popup.css: -------------------------------------------------------------------------------- 1 | input.field, select.field {width:200px;} 2 | input.picker {width:179px; margin-left: 5px;} 3 | input.disabled {border-color:#F2F2F2;} 4 | img.picker {vertical-align:text-bottom; cursor:pointer;} 5 | h1 {padding: 0 0 5px 0;} 6 | .panel_wrapper div.current {height:160px;} 7 | #xhtmlxtrasdel .panel_wrapper div.current, #xhtmlxtrasins .panel_wrapper div.current {height: 230px;} 8 | a.browse span {display:block; width:20px; height:20px; background:url('../../../themes/advanced/img/icons.gif') -140px -20px;} 9 | #datetime {width:180px;} 10 | -------------------------------------------------------------------------------- /includes/tinymce/plugins/xhtmlxtras/js/abbr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * abbr.js 3 | * 4 | * Copyright 2009, Moxiecode Systems AB 5 | * Released under LGPL License. 6 | * 7 | * License: http://tinymce.moxiecode.com/license 8 | * Contributing: http://tinymce.moxiecode.com/contributing 9 | */ 10 | 11 | function init() { 12 | SXE.initElementDialog('abbr'); 13 | if (SXE.currentAction == "update") { 14 | SXE.showRemoveButton(); 15 | } 16 | } 17 | 18 | function insertAbbr() { 19 | SXE.insertElement('abbr'); 20 | tinyMCEPopup.close(); 21 | } 22 | 23 | function removeAbbr() { 24 | SXE.removeElement('abbr'); 25 | tinyMCEPopup.close(); 26 | } 27 | 28 | tinyMCEPopup.onInit.add(init); 29 | -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/img/colorpicker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/includes/tinymce/themes/advanced/img/colorpicker.jpg -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/includes/tinymce/themes/advanced/img/icons.gif -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/skins/default/img/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/includes/tinymce/themes/advanced/skins/default/img/buttons.png -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/skins/default/img/items.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/includes/tinymce/themes/advanced/skins/default/img/items.gif -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/skins/default/img/menu_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/includes/tinymce/themes/advanced/skins/default/img/menu_arrow.gif -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/skins/default/img/menu_check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/includes/tinymce/themes/advanced/skins/default/img/menu_check.gif -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/skins/default/img/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/includes/tinymce/themes/advanced/skins/default/img/progress.gif -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/skins/default/img/tabs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/includes/tinymce/themes/advanced/skins/default/img/tabs.gif -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/skins/o2k7/img/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/includes/tinymce/themes/advanced/skins/o2k7/img/button_bg.png -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/skins/o2k7/img/button_bg_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/includes/tinymce/themes/advanced/skins/o2k7/img/button_bg_black.png -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/skins/o2k7/img/button_bg_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/includes/tinymce/themes/advanced/skins/o2k7/img/button_bg_silver.png -------------------------------------------------------------------------------- /includes/tinymce/themes/simple/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/includes/tinymce/themes/simple/img/icons.gif -------------------------------------------------------------------------------- /includes/tinymce/themes/simple/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.simple',{ 2 | bold_desc:"Bold (Ctrl+B)", 3 | italic_desc:"Italic (Ctrl+I)", 4 | underline_desc:"Underline (Ctrl+U)", 5 | striketrough_desc:"Strikethrough", 6 | bullist_desc:"Unordered list", 7 | numlist_desc:"Ordered list", 8 | undo_desc:"Undo (Ctrl+Z)", 9 | redo_desc:"Redo (Ctrl+Y)", 10 | cleanup_desc:"Cleanup messy code" 11 | }); -------------------------------------------------------------------------------- /includes/tinymce/themes/simple/skins/default/content.css: -------------------------------------------------------------------------------- 1 | body, td, pre { 2 | font-family: Verdana, Arial, Helvetica, sans-serif; 3 | font-size: 10px; 4 | } 5 | 6 | body { 7 | background-color: #FFFFFF; 8 | } 9 | 10 | .mceVisualAid { 11 | border: 1px dashed #BBBBBB; 12 | } 13 | 14 | /* MSIE specific */ 15 | 16 | * html body { 17 | scrollbar-3dlight-color: #F0F0EE; 18 | scrollbar-arrow-color: #676662; 19 | scrollbar-base-color: #F0F0EE; 20 | scrollbar-darkshadow-color: #DDDDDD; 21 | scrollbar-face-color: #E0E0DD; 22 | scrollbar-highlight-color: #F0F0EE; 23 | scrollbar-shadow-color: #F0F0EE; 24 | scrollbar-track-color: #F5F5F5; 25 | } 26 | -------------------------------------------------------------------------------- /includes/tinymce/themes/simple/skins/o2k7/content.css: -------------------------------------------------------------------------------- 1 | body, td, pre {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;} 2 | 3 | body {background: #FFF;} 4 | .mceVisualAid {border: 1px dashed #BBB;} 5 | 6 | /* IE */ 7 | 8 | * html body { 9 | scrollbar-3dlight-color: #F0F0EE; 10 | scrollbar-arrow-color: #676662; 11 | scrollbar-base-color: #F0F0EE; 12 | scrollbar-darkshadow-color: #DDDDDD; 13 | scrollbar-face-color: #E0E0DD; 14 | scrollbar-highlight-color: #F0F0EE; 15 | scrollbar-shadow-color: #F0F0EE; 16 | scrollbar-track-color: #F5F5F5; 17 | } 18 | -------------------------------------------------------------------------------- /includes/tinymce/themes/simple/skins/o2k7/img/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/includes/tinymce/themes/simple/skins/o2k7/img/button_bg.png -------------------------------------------------------------------------------- /includes/uploadify/uploadify.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/includes/uploadify/uploadify.swf -------------------------------------------------------------------------------- /includes/uploadify/uploadify.swf.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/includes/uploadify/uploadify.swf.old -------------------------------------------------------------------------------- /languages/en/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /languages/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /skins/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /skins/s1/images/arrow_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/arrow_down.gif -------------------------------------------------------------------------------- /skins/s1/images/arrow_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/arrow_right.gif -------------------------------------------------------------------------------- /skins/s1/images/arrow_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/arrow_up.gif -------------------------------------------------------------------------------- /skins/s1/images/arrow_up_down_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/arrow_up_down_icon.png -------------------------------------------------------------------------------- /skins/s1/images/block_bkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/block_bkg.png -------------------------------------------------------------------------------- /skins/s1/images/button_approve.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/button_approve.gif -------------------------------------------------------------------------------- /skins/s1/images/button_delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/button_delete.gif -------------------------------------------------------------------------------- /skins/s1/images/button_delete_disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/button_delete_disabled.gif -------------------------------------------------------------------------------- /skins/s1/images/button_edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/button_edit.gif -------------------------------------------------------------------------------- /skins/s1/images/button_export.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/button_export.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/button_mini_close.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/button_mini_delete.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_done.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/button_mini_done.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_escalate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/button_mini_escalate.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_filters.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/button_mini_filters.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_hold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/button_mini_hold.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_move.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/button_mini_move.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_notes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/button_mini_notes.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_prune.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/button_mini_prune.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_reopen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/button_mini_reopen.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_reorder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/button_mini_reorder.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/button_mini_search.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_settings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/button_mini_settings.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_ticket_delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/button_mini_ticket_delete.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_ticket_edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/button_mini_ticket_edit.gif -------------------------------------------------------------------------------- /skins/s1/images/button_upload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/button_upload.gif -------------------------------------------------------------------------------- /skins/s1/images/cal_arrow_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/cal_arrow_left.gif -------------------------------------------------------------------------------- /skins/s1/images/cal_arrow_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/cal_arrow_right.gif -------------------------------------------------------------------------------- /skins/s1/images/catbar_bkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/catbar_bkg.png -------------------------------------------------------------------------------- /skins/s1/images/content_bkg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/content_bkg.jpg -------------------------------------------------------------------------------- /skins/s1/images/content_bkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/content_bkg.png -------------------------------------------------------------------------------- /skins/s1/images/delete_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/delete_icon.gif -------------------------------------------------------------------------------- /skins/s1/images/edit_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/edit_icon.gif -------------------------------------------------------------------------------- /skins/s1/images/emoticon_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/emoticon_smile.png -------------------------------------------------------------------------------- /skins/s1/images/emoticon_unhappy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/emoticon_unhappy.png -------------------------------------------------------------------------------- /skins/s1/images/end_cap_bkg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/end_cap_bkg.gif -------------------------------------------------------------------------------- /skins/s1/images/end_cap_left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/end_cap_left.jpg -------------------------------------------------------------------------------- /skins/s1/images/end_cap_right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/end_cap_right.jpg -------------------------------------------------------------------------------- /skins/s1/images/fcbkc_close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/fcbkc_close.gif -------------------------------------------------------------------------------- /skins/s1/images/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/header.jpg -------------------------------------------------------------------------------- /skins/s1/images/header_lower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/header_lower.jpg -------------------------------------------------------------------------------- /skins/s1/images/icon_escalate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icon_escalate.png -------------------------------------------------------------------------------- /skins/s1/images/icons/addressbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/addressbook.png -------------------------------------------------------------------------------- /skins/s1/images/icons/addressbook.png.BACKUP.83610.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/addressbook.png.BACKUP.83610.png -------------------------------------------------------------------------------- /skins/s1/images/icons/addressbook.png.LOCAL.83610.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/addressbook.png.LOCAL.83610.png -------------------------------------------------------------------------------- /skins/s1/images/icons/addressbook.png.REMOTE.83610.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/addressbook.png.REMOTE.83610.png -------------------------------------------------------------------------------- /skins/s1/images/icons/alphabet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/alphabet.png -------------------------------------------------------------------------------- /skins/s1/images/icons/arrow_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/arrow_back.png -------------------------------------------------------------------------------- /skins/s1/images/icons/arrow_circle_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/arrow_circle_back.png -------------------------------------------------------------------------------- /skins/s1/images/icons/arrow_circle_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/arrow_circle_refresh.png -------------------------------------------------------------------------------- /skins/s1/images/icons/arrow_step_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/arrow_step_over.png -------------------------------------------------------------------------------- /skins/s1/images/icons/arrow_sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/arrow_sub.png -------------------------------------------------------------------------------- /skins/s1/images/icons/arrow_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/arrow_switch.png -------------------------------------------------------------------------------- /skins/s1/images/icons/assign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/assign.png -------------------------------------------------------------------------------- /skins/s1/images/icons/balloon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/balloon.png -------------------------------------------------------------------------------- /skins/s1/images/icons/balloon_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/balloon_small.png -------------------------------------------------------------------------------- /skins/s1/images/icons/binocular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/binocular.png -------------------------------------------------------------------------------- /skins/s1/images/icons/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/book.png -------------------------------------------------------------------------------- /skins/s1/images/icons/box_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/box_arrow.png -------------------------------------------------------------------------------- /skins/s1/images/icons/box_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/box_plus.png -------------------------------------------------------------------------------- /skins/s1/images/icons/broom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/broom.png -------------------------------------------------------------------------------- /skins/s1/images/icons/buoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/buoy.png -------------------------------------------------------------------------------- /skins/s1/images/icons/buoy_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/buoy_plus.png -------------------------------------------------------------------------------- /skins/s1/images/icons/circle_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/circle_delete.png -------------------------------------------------------------------------------- /skins/s1/images/icons/circle_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/circle_plus.png -------------------------------------------------------------------------------- /skins/s1/images/icons/circle_tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/circle_tick.png -------------------------------------------------------------------------------- /skins/s1/images/icons/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/color.png -------------------------------------------------------------------------------- /skins/s1/images/icons/compile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/compile.png -------------------------------------------------------------------------------- /skins/s1/images/icons/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/cross.png -------------------------------------------------------------------------------- /skins/s1/images/icons/document_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/document_text.png -------------------------------------------------------------------------------- /skins/s1/images/icons/drill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/drill.png -------------------------------------------------------------------------------- /skins/s1/images/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/edit.png -------------------------------------------------------------------------------- /skins/s1/images/icons/escalate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/escalate.png -------------------------------------------------------------------------------- /skins/s1/images/icons/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/exclamation.png -------------------------------------------------------------------------------- /skins/s1/images/icons/exclamation_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/exclamation_red.png -------------------------------------------------------------------------------- /skins/s1/images/icons/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/feed.png -------------------------------------------------------------------------------- /skins/s1/images/icons/field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/field.png -------------------------------------------------------------------------------- /skins/s1/images/icons/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/flag.png -------------------------------------------------------------------------------- /skins/s1/images/icons/folder_bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/folder_bookmark.png -------------------------------------------------------------------------------- /skins/s1/images/icons/folder_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/folder_export.png -------------------------------------------------------------------------------- /skins/s1/images/icons/folder_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/folder_import.png -------------------------------------------------------------------------------- /skins/s1/images/icons/folder_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/folder_page.png -------------------------------------------------------------------------------- /skins/s1/images/icons/folders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/folders.png -------------------------------------------------------------------------------- /skins/s1/images/icons/frame_tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/frame_tick.png -------------------------------------------------------------------------------- /skins/s1/images/icons/hold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/hold.png -------------------------------------------------------------------------------- /skins/s1/images/icons/hold_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/hold_minus.png -------------------------------------------------------------------------------- /skins/s1/images/icons/magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/magnet.png -------------------------------------------------------------------------------- /skins/s1/images/icons/mail_pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/mail_pencil.png -------------------------------------------------------------------------------- /skins/s1/images/icons/mails_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/mails_arrow.png -------------------------------------------------------------------------------- /skins/s1/images/icons/megaphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/megaphone.png -------------------------------------------------------------------------------- /skins/s1/images/icons/minus_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/minus_circle.png -------------------------------------------------------------------------------- /skins/s1/images/icons/minus_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/minus_sm.png -------------------------------------------------------------------------------- /skins/s1/images/icons/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/move.png -------------------------------------------------------------------------------- /skins/s1/images/icons/page_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/page_arrow.png -------------------------------------------------------------------------------- /skins/s1/images/icons/page_bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/page_bookmark.png -------------------------------------------------------------------------------- /skins/s1/images/icons/page_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/page_delete.png -------------------------------------------------------------------------------- /skins/s1/images/icons/page_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/page_edit.png -------------------------------------------------------------------------------- /skins/s1/images/icons/paint_pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/paint_pencil.png -------------------------------------------------------------------------------- /skins/s1/images/icons/palette_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/palette_arrow.png -------------------------------------------------------------------------------- /skins/s1/images/icons/palette_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/palette_plus.png -------------------------------------------------------------------------------- /skins/s1/images/icons/plus_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/plus_sm.png -------------------------------------------------------------------------------- /skins/s1/images/icons/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/print.png -------------------------------------------------------------------------------- /skins/s1/images/icons/priority.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/priority.png -------------------------------------------------------------------------------- /skins/s1/images/icons/puzzle_pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/puzzle_pencil.png -------------------------------------------------------------------------------- /skins/s1/images/icons/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/question.png -------------------------------------------------------------------------------- /skins/s1/images/icons/rmvescalate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/rmvescalate.png -------------------------------------------------------------------------------- /skins/s1/images/icons/script_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/script_edit.png -------------------------------------------------------------------------------- /skins/s1/images/icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/settings.png -------------------------------------------------------------------------------- /skins/s1/images/icons/signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/signature.png -------------------------------------------------------------------------------- /skins/s1/images/icons/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/star.png -------------------------------------------------------------------------------- /skins/s1/images/icons/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/status.png -------------------------------------------------------------------------------- /skins/s1/images/icons/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/tag.png -------------------------------------------------------------------------------- /skins/s1/images/icons/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/tick.png -------------------------------------------------------------------------------- /skins/s1/images/icons/ticket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/ticket.png -------------------------------------------------------------------------------- /skins/s1/images/icons/toggle_collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/toggle_collapse.png -------------------------------------------------------------------------------- /skins/s1/images/icons/toggle_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/toggle_expand.png -------------------------------------------------------------------------------- /skins/s1/images/icons/tweak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/tweak.png -------------------------------------------------------------------------------- /skins/s1/images/icons/user_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/user_minus.png -------------------------------------------------------------------------------- /skins/s1/images/icons/user_pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/icons/user_pencil.png -------------------------------------------------------------------------------- /skins/s1/images/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /skins/s1/images/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/indicator.gif -------------------------------------------------------------------------------- /skins/s1/images/infobar_bkg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/infobar_bkg.jpg -------------------------------------------------------------------------------- /skins/s1/images/infopop_bkg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/infopop_bkg.gif -------------------------------------------------------------------------------- /skins/s1/images/input_bkg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/input_bkg.gif -------------------------------------------------------------------------------- /skins/s1/images/install_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/install_logo.jpg -------------------------------------------------------------------------------- /skins/s1/images/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /skins/s1/images/jquery-ui/ui-bg_flat_55_fbec88_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/jquery-ui/ui-bg_flat_55_fbec88_40x100.png -------------------------------------------------------------------------------- /skins/s1/images/jquery-ui/ui-bg_glass_75_d0e5f5_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/jquery-ui/ui-bg_glass_75_d0e5f5_1x400.png -------------------------------------------------------------------------------- /skins/s1/images/jquery-ui/ui-bg_glass_85_dfeffc_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/jquery-ui/ui-bg_glass_85_dfeffc_1x400.png -------------------------------------------------------------------------------- /skins/s1/images/jquery-ui/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/jquery-ui/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /skins/s1/images/jquery-ui/ui-bg_gloss-wave_55_5c9ccc_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/jquery-ui/ui-bg_gloss-wave_55_5c9ccc_500x100.png -------------------------------------------------------------------------------- /skins/s1/images/jquery-ui/ui-bg_inset-hard_100_f5f8f9_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/jquery-ui/ui-bg_inset-hard_100_f5f8f9_1x100.png -------------------------------------------------------------------------------- /skins/s1/images/jquery-ui/ui-bg_inset-hard_100_fcfdfd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/jquery-ui/ui-bg_inset-hard_100_fcfdfd_1x100.png -------------------------------------------------------------------------------- /skins/s1/images/jquery-ui/ui-icons_217bc0_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/jquery-ui/ui-icons_217bc0_256x240.png -------------------------------------------------------------------------------- /skins/s1/images/jquery-ui/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/jquery-ui/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /skins/s1/images/jquery-ui/ui-icons_469bdd_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/jquery-ui/ui-icons_469bdd_256x240.png -------------------------------------------------------------------------------- /skins/s1/images/jquery-ui/ui-icons_6da8d5_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/jquery-ui/ui-icons_6da8d5_256x240.png -------------------------------------------------------------------------------- /skins/s1/images/jquery-ui/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/jquery-ui/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /skins/s1/images/jquery-ui/ui-icons_d8e7f3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/jquery-ui/ui-icons_d8e7f3_256x240.png -------------------------------------------------------------------------------- /skins/s1/images/jquery-ui/ui-icons_f9bd01_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/jquery-ui/ui-icons_f9bd01_256x240.png -------------------------------------------------------------------------------- /skins/s1/images/kb_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/kb_icon.gif -------------------------------------------------------------------------------- /skins/s1/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/loading.gif -------------------------------------------------------------------------------- /skins/s1/images/logos/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/logos/feed.png -------------------------------------------------------------------------------- /skins/s1/images/logos/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /skins/s1/images/logos/mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/logos/mysql.png -------------------------------------------------------------------------------- /skins/s1/images/logos/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/logos/php.png -------------------------------------------------------------------------------- /skins/s1/images/logos/tinymce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/logos/tinymce.png -------------------------------------------------------------------------------- /skins/s1/images/logos/vcss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/logos/vcss.png -------------------------------------------------------------------------------- /skins/s1/images/logos/vrss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/logos/vrss.png -------------------------------------------------------------------------------- /skins/s1/images/logos/xhtml10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/logos/xhtml10.png -------------------------------------------------------------------------------- /skins/s1/images/logos/zend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/logos/zend.png -------------------------------------------------------------------------------- /skins/s1/images/menu_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/menu_bg.jpg -------------------------------------------------------------------------------- /skins/s1/images/menu_left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/menu_left.jpg -------------------------------------------------------------------------------- /skins/s1/images/menu_right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/menu_right.jpg -------------------------------------------------------------------------------- /skins/s1/images/navbar_bkg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/navbar_bkg.jpg -------------------------------------------------------------------------------- /skins/s1/images/navbar_bkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/navbar_bkg.png -------------------------------------------------------------------------------- /skins/s1/images/navbar_cap_left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/navbar_cap_left.jpg -------------------------------------------------------------------------------- /skins/s1/images/navbar_cap_right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/navbar_cap_right.jpg -------------------------------------------------------------------------------- /skins/s1/images/navbar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/navbar_logo.png -------------------------------------------------------------------------------- /skins/s1/images/page_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/page_delete.png -------------------------------------------------------------------------------- /skins/s1/images/page_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/page_edit.png -------------------------------------------------------------------------------- /skins/s1/images/page_white_code_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/page_white_code_red.png -------------------------------------------------------------------------------- /skins/s1/images/panel_bkg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/panel_bkg.jpg -------------------------------------------------------------------------------- /skins/s1/images/popup_bkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/popup_bkg.png -------------------------------------------------------------------------------- /skins/s1/images/popup_tail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/popup_tail.png -------------------------------------------------------------------------------- /skins/s1/images/powerbar_bkg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/powerbar_bkg.jpg -------------------------------------------------------------------------------- /skins/s1/images/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/preview.jpg -------------------------------------------------------------------------------- /skins/s1/images/rate_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/rate_delete.png -------------------------------------------------------------------------------- /skins/s1/images/rate_half.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/rate_half.gif -------------------------------------------------------------------------------- /skins/s1/images/rate_hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/rate_hover.gif -------------------------------------------------------------------------------- /skins/s1/images/rate_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/rate_off.gif -------------------------------------------------------------------------------- /skins/s1/images/rate_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/rate_on.gif -------------------------------------------------------------------------------- /skins/s1/images/rate_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/rate_star.png -------------------------------------------------------------------------------- /skins/s1/images/redbar_bkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/redbar_bkg.png -------------------------------------------------------------------------------- /skins/s1/images/revert_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/revert_icon.gif -------------------------------------------------------------------------------- /skins/s1/images/star_empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/star_empty.gif -------------------------------------------------------------------------------- /skins/s1/images/star_full.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/star_full.gif -------------------------------------------------------------------------------- /skins/s1/images/star_half.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/star_half.gif -------------------------------------------------------------------------------- /skins/s1/images/star_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/star_off.gif -------------------------------------------------------------------------------- /skins/s1/images/star_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/star_on.gif -------------------------------------------------------------------------------- /skins/s1/images/status_bkg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/status_bkg.gif -------------------------------------------------------------------------------- /skins/s1/images/statusbar_bkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/statusbar_bkg.png -------------------------------------------------------------------------------- /skins/s1/images/td_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/td_logo.jpg -------------------------------------------------------------------------------- /skins/s1/images/td_welcome_acphome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/td_welcome_acphome.png -------------------------------------------------------------------------------- /skins/s1/images/td_welcome_bkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/td_welcome_bkg.png -------------------------------------------------------------------------------- /skins/s1/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/thumbs_down.gif -------------------------------------------------------------------------------- /skins/s1/images/thumbs_down_hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/thumbs_down_hover.gif -------------------------------------------------------------------------------- /skins/s1/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/thumbs_up.gif -------------------------------------------------------------------------------- /skins/s1/images/thumbs_up_hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/thumbs_up_hover.gif -------------------------------------------------------------------------------- /skins/s1/images/ticket_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/ticket_icon.gif -------------------------------------------------------------------------------- /skins/s1/images/tinymce_filler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/tinymce_filler.png -------------------------------------------------------------------------------- /skins/s1/images/toggle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/toggle.gif -------------------------------------------------------------------------------- /skins/s1/images/up_to_date.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/up_to_date.jpg -------------------------------------------------------------------------------- /skins/s1/images/update_available.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/update_available.jpg -------------------------------------------------------------------------------- /skins/s1/images/upgrade_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/upgrade_logo.jpg -------------------------------------------------------------------------------- /skins/s1/images/vc_unable_to_check.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/vc_unable_to_check.jpg -------------------------------------------------------------------------------- /skins/s1/images/vc_up_to_date.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/vc_up_to_date.jpg -------------------------------------------------------------------------------- /skins/s1/images/vc_update_available.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/vc_update_available.jpg -------------------------------------------------------------------------------- /skins/s1/images/welcome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/images/welcome.jpg -------------------------------------------------------------------------------- /skins/s1/info.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Trellis Desk Tiburon 4 | This is the default skin for the Trellis Desk client-side frontend, created by ACCORD5. 5 | 10000 6 | 1.0 7 | Aaron Draczynski 8 | 2010 ACCORD5 9 | 1000000 10 | Versions 1.0 RC1 and up 11 | -------------------------------------------------------------------------------- /skins/s1/scripts/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s1/scripts/autocomplete.js -------------------------------------------------------------------------------- /skins/s1/scripts/common.js: -------------------------------------------------------------------------------- 1 | function goToUrl(url) { 2 | location.href = url; 3 | } 4 | 5 | $.fn.clearOnFocus = function() { 6 | return this.focus(function() { 7 | if ( this.value == this.defaultValue ) { 8 | this.value = ""; 9 | } 10 | }).blur(function() { 11 | if ( !this.value.length ) { 12 | this.value = this.defaultValue; 13 | } 14 | }); 15 | }; 16 | 17 | $(function(){ 18 | $("#username").clearOnFocus(); 19 | $("#password").clearOnFocus(); 20 | $("#search").clearOnFocus(); 21 | }); -------------------------------------------------------------------------------- /skins/s1/scripts/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /skins/s1/templates/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /skins/s1/templates/kb_edit_comment.tpl: -------------------------------------------------------------------------------- 1 |
2 |

{$lang['knowledge_base']}

3 | {if $error}
{$error}
{/if} 4 |
{$lang['edit_comment']}
5 |
6 |
7 |
8 |
9 |
-------------------------------------------------------------------------------- /skins/s1/templates/kb_print_article.tpl: -------------------------------------------------------------------------------- 1 |

{$article.name} -- {$article.date}

2 | {$article.article} 3 |
4 | 5 | {if $comments} 6 | {foreach from=$comments item=c} 7 | 8 |
{$c.uname} -- {$c.date}
{$c.time_ago}
9 |

10 | {$c.comment} 11 |

12 | {/foreach}
13 | {elseif $cache.config.allow_kb_comment && ! $article.dis_comments} 14 |

{$lang['no_comments']}

15 | {/if} -------------------------------------------------------------------------------- /skins/s1/templates/kb_search_results.tpl: -------------------------------------------------------------------------------- 1 |
2 |

{$lang['knowledge_base']}

3 |
{$lang['search_results']}
4 | {if $results} 5 | {foreach from=$results item=a} 6 |
{$a.name} -- {$a.date} -- {$lang['relevance']} {$a.score}
7 | 8 | {/foreach} 9 | {else} 10 |
{$lang['no_articles_found']}
11 | {/if} 12 |
-------------------------------------------------------------------------------- /skins/s1/templates/news.tpl: -------------------------------------------------------------------------------- 1 |
2 |

{$lang['news']}

3 | {if $news} 4 | {foreach $news as $n} 5 |
{$n['date_human']}
{$n['title']}
6 |
7 | {$n['content']} 8 |
9 | {if $n['comments']}{/if} 10 | {/foreach} 11 | 12 | {/if} 13 |
-------------------------------------------------------------------------------- /skins/s1/templates/news_edit_comment.tpl: -------------------------------------------------------------------------------- 1 |
2 |

{$lang['news']}

3 | {if $error}
{$error}
{/if} 4 |
{$lang['edit_comment']}
5 |
6 |
7 |
8 |
9 |
-------------------------------------------------------------------------------- /skins/s1/templates/page.tpl: -------------------------------------------------------------------------------- 1 |
2 |

{$p['title']}

3 |
4 | {$p['content']} 5 |
6 |
-------------------------------------------------------------------------------- /skins/s1/templates/print.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {$title} 6 | 7 | {literal}{/literal} 12 | 13 | 14 | 19 | 20 | -------------------------------------------------------------------------------- /skins/s1/templates/tck_reply_edit.tpl: -------------------------------------------------------------------------------- 1 |
2 |

{$lang['tickets']}

3 | {if $error}
{$error}
{/if} 4 |
{$lang['edit_reply']}
5 |
6 |
7 |
8 |
9 |
-------------------------------------------------------------------------------- /skins/s2/images/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/skins/s2/images/preview.jpg -------------------------------------------------------------------------------- /skins/s2/info.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Trellis Desk Classic 4 | This is the legacy skin for the Trellis Desk client-side frontend, created by Charles Sexton. 5 | Charles Sexton 6 | 2007 ACCORD5 7 | Versions 0.x beta x and up 8 | -------------------------------------------------------------------------------- /skins/s2/templates/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /skins/s2/templates/kb_print_article.tpl: -------------------------------------------------------------------------------- 1 |

{$article['name']} -- {$article['date']}

2 | {$article['article']} 3 |
4 | 5 | {if $comments} 6 | {foreach $comments $c} 7 | 8 |
{$c['uname']} -- {$c['date']}
{$c['time_ago']}
9 |

10 | {$c['comment']} 11 |

12 | {/foreach}
13 | {elseif $cache['config']['allow_kb_comment'] && ! $article['dis_comments']} 14 |

{$lang['no_comments']}

15 | {/if} -------------------------------------------------------------------------------- /skins/s2/templates/kb_search_results.tpl: -------------------------------------------------------------------------------- 1 |
2 |

{$lang['search_results']}

3 | {if $results} 4 | {foreach $results $a} 5 |

{$a['name']} -- {$a['date']} -- {$lang['relevance']} {$a['score']}

6 |
{$a['description']}
7 | {/foreach} 8 | {else} 9 |

{$lang['no_articles_found']}

10 | {/if} 11 |
-------------------------------------------------------------------------------- /skins/s2/templates/kb_show_category.tpl: -------------------------------------------------------------------------------- 1 |
2 |

{$lang['view_category']}

3 | {foreach $articles $a} 4 |

{$a['name']} -- {$a['date']}

5 |

{$a['description']}

6 | {/foreach} 7 |
-------------------------------------------------------------------------------- /skins/s2/templates/news.tpl: -------------------------------------------------------------------------------- 1 |
2 |

{$lang['news']}

3 | {if $news} 4 | {foreach $news $an} 5 |

{$an['title']} -- {$an['date']}

6 |

7 | {$an['content']} 8 |

9 | {if $cache['config']['news_comments']}

({$an['comments']}) {$lang['comments']}

{/if} 10 | {/foreach} 11 | {/if} 12 |
-------------------------------------------------------------------------------- /skins/s2/templates/news_print.tpl: -------------------------------------------------------------------------------- 1 |

{$n['title']} -- {$n['date']}

2 |

3 | {$n['content']} 4 |

5 | {if $comments} 6 | 7 | {foreach $comments $c} 8 | 9 |
{$c['uname']} -- {$c['date']}
{$c['time_ago']}
10 |

11 | {$c['comment']} 12 |

13 | {/foreach} 14 | {elseif $cache['config']['news_comments'] && ! $n['dis_comments']} 15 |

{$lang['no_comments']}

16 | {/if} -------------------------------------------------------------------------------- /skins/s2/templates/page_show.tpl: -------------------------------------------------------------------------------- 1 |
2 | {if $p['type']} 3 | {include $template} 4 | {else} 5 |

{$p['name']}

6 |

{$p['content']}

7 | {/if} 8 |
-------------------------------------------------------------------------------- /skins/s2/templates/print.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {$title} 6 | 7 | {literal}{/literal} 12 | 13 | 14 | 19 | 20 | -------------------------------------------------------------------------------- /skins/s2/templates/tck_submit_1.tpl: -------------------------------------------------------------------------------- 1 |
2 |
3 | {$token_sub_a} 4 |

{$lang['open_ticket']}

5 |

{$lang['select_depart']}

6 | 7 | {$depart_opts} 8 |
9 |

10 |
11 |
-------------------------------------------------------------------------------- /sources/index.html: -------------------------------------------------------------------------------- 1 |

Oops!

2 |

You are not allowed to access this directory.

-------------------------------------------------------------------------------- /sources/news.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/79be7acb9917c7c47296e0a3a2d4029ad49ef756/sources/news.php --------------------------------------------------------------------------------