├── .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 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/COPYING.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/README.md -------------------------------------------------------------------------------- /admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin.php -------------------------------------------------------------------------------- /admin/admin/ad_about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/admin/ad_about.php -------------------------------------------------------------------------------- /admin/admin/ad_home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/admin/ad_home.php -------------------------------------------------------------------------------- /admin/admin/ad_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/admin/ad_settings.php -------------------------------------------------------------------------------- /admin/admin/index.html: -------------------------------------------------------------------------------- 1 |
You are not allowed to access this directory.
-------------------------------------------------------------------------------- /admin/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /admin/look/ad_emails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/look/ad_emails.php -------------------------------------------------------------------------------- /admin/look/ad_langs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/look/ad_langs.php -------------------------------------------------------------------------------- /admin/look/ad_skins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/look/ad_skins.php -------------------------------------------------------------------------------- /admin/look/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /admin/manage/ad_articles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/manage/ad_articles.php -------------------------------------------------------------------------------- /admin/manage/ad_categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/manage/ad_categories.php -------------------------------------------------------------------------------- /admin/manage/ad_cdfields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/manage/ad_cdfields.php -------------------------------------------------------------------------------- /admin/manage/ad_cpfields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/manage/ad_cpfields.php -------------------------------------------------------------------------------- /admin/manage/ad_departs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/manage/ad_departs.php -------------------------------------------------------------------------------- /admin/manage/ad_flags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/manage/ad_flags.php -------------------------------------------------------------------------------- /admin/manage/ad_groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/manage/ad_groups.php -------------------------------------------------------------------------------- /admin/manage/ad_news.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/manage/ad_news.php -------------------------------------------------------------------------------- /admin/manage/ad_pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/manage/ad_pages.php -------------------------------------------------------------------------------- /admin/manage/ad_priorities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/manage/ad_priorities.php -------------------------------------------------------------------------------- /admin/manage/ad_rtemplates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/manage/ad_rtemplates.php -------------------------------------------------------------------------------- /admin/manage/ad_statuses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/manage/ad_statuses.php -------------------------------------------------------------------------------- /admin/manage/ad_tickets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/manage/ad_tickets.php -------------------------------------------------------------------------------- /admin/manage/ad_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/manage/ad_users.php -------------------------------------------------------------------------------- /admin/manage/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /admin/tools/ad_backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/tools/ad_backup.php -------------------------------------------------------------------------------- /admin/tools/ad_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/tools/ad_cache.php -------------------------------------------------------------------------------- /admin/tools/ad_logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/tools/ad_logs.php -------------------------------------------------------------------------------- /admin/tools/ad_maint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/tools/ad_maint.php -------------------------------------------------------------------------------- /admin/tools/ad_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/tools/ad_settings.php -------------------------------------------------------------------------------- /admin/tools/ad_stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/admin/tools/ad_stats.php -------------------------------------------------------------------------------- /admin/tools/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /config.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/config.php.dist -------------------------------------------------------------------------------- /data/cache/htmlpurifier/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /data/cache/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /data/cache/trellis/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /data/logs/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /data/skin_compile/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /data/temp/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /data/uploads/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /images/classic/arrow_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/arrow_down.gif -------------------------------------------------------------------------------- /images/classic/arrow_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/arrow_right.gif -------------------------------------------------------------------------------- /images/classic/arrow_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/arrow_up.gif -------------------------------------------------------------------------------- /images/classic/content_bkg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/content_bkg.jpg -------------------------------------------------------------------------------- /images/classic/delete_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/delete_icon.gif -------------------------------------------------------------------------------- /images/classic/edit_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/edit_icon.gif -------------------------------------------------------------------------------- /images/classic/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/header.jpg -------------------------------------------------------------------------------- /images/classic/header_acp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/header_acp.jpg -------------------------------------------------------------------------------- /images/classic/header_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/header_bg.jpg -------------------------------------------------------------------------------- /images/classic/header_lower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/header_lower.jpg -------------------------------------------------------------------------------- /images/classic/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /images/classic/kb_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/kb_icon.gif -------------------------------------------------------------------------------- /images/classic/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/loading.gif -------------------------------------------------------------------------------- /images/classic/logos/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/logos/feed.png -------------------------------------------------------------------------------- /images/classic/logos/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /images/classic/logos/mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/logos/mysql.png -------------------------------------------------------------------------------- /images/classic/logos/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/logos/php.png -------------------------------------------------------------------------------- /images/classic/logos/tinymce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/logos/tinymce.png -------------------------------------------------------------------------------- /images/classic/logos/vcss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/logos/vcss.png -------------------------------------------------------------------------------- /images/classic/logos/vrss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/logos/vrss.png -------------------------------------------------------------------------------- /images/classic/logos/xhtml10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/logos/xhtml10.png -------------------------------------------------------------------------------- /images/classic/logos/zend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/logos/zend.png -------------------------------------------------------------------------------- /images/classic/menu_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/menu_bg.jpg -------------------------------------------------------------------------------- /images/classic/menu_left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/menu_left.jpg -------------------------------------------------------------------------------- /images/classic/menu_right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/menu_right.jpg -------------------------------------------------------------------------------- /images/classic/rate_half.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/rate_half.gif -------------------------------------------------------------------------------- /images/classic/rate_hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/rate_hover.gif -------------------------------------------------------------------------------- /images/classic/rate_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/rate_off.gif -------------------------------------------------------------------------------- /images/classic/rate_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/rate_on.gif -------------------------------------------------------------------------------- /images/classic/revert_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/revert_icon.gif -------------------------------------------------------------------------------- /images/classic/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/thumbs_down.gif -------------------------------------------------------------------------------- /images/classic/thumbs_down_hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/thumbs_down_hover.gif -------------------------------------------------------------------------------- /images/classic/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/thumbs_up.gif -------------------------------------------------------------------------------- /images/classic/thumbs_up_hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/thumbs_up_hover.gif -------------------------------------------------------------------------------- /images/classic/ticket_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/classic/ticket_icon.gif -------------------------------------------------------------------------------- /images/flags/flag_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/flags/flag_blue.png -------------------------------------------------------------------------------- /images/flags/flag_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/flags/flag_green.png -------------------------------------------------------------------------------- /images/flags/flag_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/flags/flag_orange.png -------------------------------------------------------------------------------- /images/flags/flag_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/flags/flag_pink.png -------------------------------------------------------------------------------- /images/flags/flag_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/flags/flag_purple.png -------------------------------------------------------------------------------- /images/flags/flag_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/flags/flag_red.png -------------------------------------------------------------------------------- /images/flags/flag_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/flags/flag_yellow.png -------------------------------------------------------------------------------- /images/flags/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /images/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /images/priorities/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /images/priorities/priority_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/priorities/priority_blue.gif -------------------------------------------------------------------------------- /images/priorities/priority_blue_dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/priorities/priority_blue_dot.gif -------------------------------------------------------------------------------- /images/priorities/priority_green.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/priorities/priority_green.gif -------------------------------------------------------------------------------- /images/priorities/priority_orange.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/priorities/priority_orange.gif -------------------------------------------------------------------------------- /images/priorities/priority_orange_dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/priorities/priority_orange_dot.gif -------------------------------------------------------------------------------- /images/priorities/priority_pink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/priorities/priority_pink.gif -------------------------------------------------------------------------------- /images/priorities/priority_pink_dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/priorities/priority_pink_dot.gif -------------------------------------------------------------------------------- /images/priorities/priority_purple.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/priorities/priority_purple.gif -------------------------------------------------------------------------------- /images/priorities/priority_purple_dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/priorities/priority_purple_dot.gif -------------------------------------------------------------------------------- /images/priorities/priority_red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/priorities/priority_red.gif -------------------------------------------------------------------------------- /images/priorities/priority_red_dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/priorities/priority_red_dot.gif -------------------------------------------------------------------------------- /images/priorities/priority_yellow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/priorities/priority_yellow.gif -------------------------------------------------------------------------------- /images/priorities/priority_yellow_dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/images/priorities/priority_yellow_dot.gif -------------------------------------------------------------------------------- /includes/akismet/Akismet.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/akismet/Akismet.class.php -------------------------------------------------------------------------------- /includes/classes/class_akismet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/classes/class_akismet.php -------------------------------------------------------------------------------- /includes/classes/class_asession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/classes/class_asession.php -------------------------------------------------------------------------------- /includes/classes/class_askin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/classes/class_askin.php -------------------------------------------------------------------------------- /includes/classes/class_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/classes/class_cache.php -------------------------------------------------------------------------------- /includes/classes/class_email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/classes/class_email.php -------------------------------------------------------------------------------- /includes/classes/class_error_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/classes/class_error_handler.php -------------------------------------------------------------------------------- /includes/classes/class_mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/classes/class_mysql.php -------------------------------------------------------------------------------- /includes/classes/class_phpcaptcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/classes/class_phpcaptcha.php -------------------------------------------------------------------------------- /includes/classes/class_recaptcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/classes/class_recaptcha.php -------------------------------------------------------------------------------- /includes/classes/class_session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/classes/class_session.php -------------------------------------------------------------------------------- /includes/classes/class_skin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/classes/class_skin.php -------------------------------------------------------------------------------- /includes/classes/class_zip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/classes/class_zip.php -------------------------------------------------------------------------------- /includes/classes/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /includes/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/css/global.css -------------------------------------------------------------------------------- /includes/css/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /includes/css/local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/css/local.css -------------------------------------------------------------------------------- /includes/css/tinymce.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/css/tinymce.css -------------------------------------------------------------------------------- /includes/functions/func_admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/functions/func_admin.php -------------------------------------------------------------------------------- /includes/functions/func_articles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/functions/func_articles.php -------------------------------------------------------------------------------- /includes/functions/func_attachments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/functions/func_attachments.php -------------------------------------------------------------------------------- /includes/functions/func_categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/functions/func_categories.php -------------------------------------------------------------------------------- /includes/functions/func_cdfields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/functions/func_cdfields.php -------------------------------------------------------------------------------- /includes/functions/func_cpfields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/functions/func_cpfields.php -------------------------------------------------------------------------------- /includes/functions/func_departs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/functions/func_departs.php -------------------------------------------------------------------------------- /includes/functions/func_drop_downs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/functions/func_drop_downs.php -------------------------------------------------------------------------------- /includes/functions/func_emails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/functions/func_emails.php -------------------------------------------------------------------------------- /includes/functions/func_flags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/functions/func_flags.php -------------------------------------------------------------------------------- /includes/functions/func_groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/functions/func_groups.php -------------------------------------------------------------------------------- /includes/functions/func_languages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/functions/func_languages.php -------------------------------------------------------------------------------- /includes/functions/func_logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/functions/func_logs.php -------------------------------------------------------------------------------- /includes/functions/func_news.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/functions/func_news.php -------------------------------------------------------------------------------- /includes/functions/func_pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/functions/func_pages.php -------------------------------------------------------------------------------- /includes/functions/func_priorities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/functions/func_priorities.php -------------------------------------------------------------------------------- /includes/functions/func_rebuild.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/functions/func_rebuild.php -------------------------------------------------------------------------------- /includes/functions/func_recount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/functions/func_recount.php -------------------------------------------------------------------------------- /includes/functions/func_rtemplates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/functions/func_rtemplates.php -------------------------------------------------------------------------------- /includes/functions/func_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/functions/func_settings.php -------------------------------------------------------------------------------- /includes/functions/func_skins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/functions/func_skins.php -------------------------------------------------------------------------------- /includes/functions/func_statuses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/functions/func_statuses.php -------------------------------------------------------------------------------- /includes/functions/func_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/functions/func_template.php -------------------------------------------------------------------------------- /includes/functions/func_tickets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/functions/func_tickets.php -------------------------------------------------------------------------------- /includes/functions/func_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/functions/func_users.php -------------------------------------------------------------------------------- /includes/functions/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /includes/htmlpurifier/HTMLPurifier.standalone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/htmlpurifier/HTMLPurifier.standalone.php -------------------------------------------------------------------------------- /includes/htmlpurifier/standalone/HTMLPurifier/ConfigSchema/schema/info.ini: -------------------------------------------------------------------------------- 1 | name = "HTML Purifier" 2 | 3 | ; vim: et sw=4 sts=4 4 | -------------------------------------------------------------------------------- /includes/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /includes/phpcaptcha/Vera.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/phpcaptcha/Vera.ttf -------------------------------------------------------------------------------- /includes/phpcaptcha/VeraBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/phpcaptcha/VeraBd.ttf -------------------------------------------------------------------------------- /includes/phpcaptcha/VeraIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/phpcaptcha/VeraIt.ttf -------------------------------------------------------------------------------- /includes/phpcaptcha/php-captcha.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/phpcaptcha/php-captcha.inc.php -------------------------------------------------------------------------------- /includes/recaptcha/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/recaptcha/LICENSE -------------------------------------------------------------------------------- /includes/recaptcha/recaptchalib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/recaptcha/recaptchalib.php -------------------------------------------------------------------------------- /includes/scripts/ajaxupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/scripts/ajaxupload.js -------------------------------------------------------------------------------- /includes/smarty/Smarty.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/Smarty.class.php -------------------------------------------------------------------------------- /includes/smarty/debug.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/debug.tpl -------------------------------------------------------------------------------- /includes/smarty/plugins/block.php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/block.php.php -------------------------------------------------------------------------------- /includes/smarty/plugins/block.textformat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/block.textformat.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.counter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/function.counter.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.cycle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/function.cycle.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/function.fetch.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.html_checkboxes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/function.html_checkboxes.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.html_image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/function.html_image.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.html_options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/function.html_options.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.html_radios.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/function.html_radios.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.html_select_date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/function.html_select_date.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.html_select_time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/function.html_select_time.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.html_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/function.html_table.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.mailto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/function.mailto.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.math.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/function.math.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.popup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/function.popup.php -------------------------------------------------------------------------------- /includes/smarty/plugins/function.popup_init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/function.popup_init.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.capitalize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/modifier.capitalize.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.cat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/modifier.cat.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.count_characters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/modifier.count_characters.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.count_paragraphs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/modifier.count_paragraphs.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.count_sentences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/modifier.count_sentences.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.count_words.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/modifier.count_words.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.date_format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/modifier.date_format.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.debug_print_var.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/modifier.debug_print_var.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/modifier.default.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.escape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/modifier.escape.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.indent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/modifier.indent.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.lower.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/modifier.lower.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.noprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/modifier.noprint.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.regex_replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/modifier.regex_replace.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/modifier.replace.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.spacify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/modifier.spacify.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.string_format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/modifier.string_format.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.strip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/modifier.strip.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.strip_tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/modifier.strip_tags.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.truncate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/modifier.truncate.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.upper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/modifier.upper.php -------------------------------------------------------------------------------- /includes/smarty/plugins/modifier.wordwrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/modifier.wordwrap.php -------------------------------------------------------------------------------- /includes/smarty/plugins/outputfilter.trimwhitespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/outputfilter.trimwhitespace.php -------------------------------------------------------------------------------- /includes/smarty/plugins/shared.escape_special_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/shared.escape_special_chars.php -------------------------------------------------------------------------------- /includes/smarty/plugins/shared.make_timestamp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/plugins/shared.make_timestamp.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/sysplugins/smarty_internal_config.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/sysplugins/smarty_internal_data.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/sysplugins/smarty_internal_debug.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_internal_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/sysplugins/smarty_internal_template.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_clear_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/sysplugins/smarty_method_clear_cache.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_get_global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/sysplugins/smarty_method_get_global.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_getcachedir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/sysplugins/smarty_method_getcachedir.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_iscaching.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/sysplugins/smarty_method_iscaching.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_isdebugging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/sysplugins/smarty_method_isdebugging.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_load_filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/sysplugins/smarty_method_load_filter.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_method_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/sysplugins/smarty_method_test.php -------------------------------------------------------------------------------- /includes/smarty/sysplugins/smarty_security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/smarty/sysplugins/smarty_security.php -------------------------------------------------------------------------------- /includes/swift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/LICENSE -------------------------------------------------------------------------------- /includes/swift/classes/Swift.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Attachment.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/CharacterReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/CharacterReader.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/CharacterStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/CharacterStream.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/DependencyContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/DependencyContainer.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/DependencyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/DependencyException.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/EmbeddedFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/EmbeddedFile.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Encoder.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Encoder/Base64Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Encoder/Base64Encoder.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Encoder/QpEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Encoder/QpEncoder.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Encoding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Encoding.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Events/CommandEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Events/CommandEvent.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Events/Event.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Events/EventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Events/EventListener.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Events/EventObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Events/EventObject.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Events/ResponseEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Events/ResponseEvent.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Events/SendEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Events/SendEvent.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Events/SendListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Events/SendListener.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/FailoverTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/FailoverTransport.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/FileStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/FileStream.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Filterable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Filterable.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Image.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/InputByteStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/InputByteStream.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/IoException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/IoException.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/KeyCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/KeyCache.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/KeyCache/DiskKeyCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/KeyCache/DiskKeyCache.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/KeyCache/NullKeyCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/KeyCache/NullKeyCache.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/LoadBalancedTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/LoadBalancedTransport.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/MailTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/MailTransport.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Mailer.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Message.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Mime/Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Mime/Attachment.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Mime/CharsetObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Mime/CharsetObserver.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Mime/ContentEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Mime/ContentEncoder.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Mime/EmbeddedFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Mime/EmbeddedFile.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Mime/EncodingObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Mime/EncodingObserver.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Mime/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Mime/Header.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Mime/HeaderEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Mime/HeaderEncoder.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Mime/HeaderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Mime/HeaderFactory.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Mime/HeaderSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Mime/HeaderSet.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Mime/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Mime/Message.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Mime/MimeEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Mime/MimeEntity.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Mime/MimePart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Mime/MimePart.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Mime/SimpleHeaderSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Mime/SimpleHeaderSet.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Mime/SimpleMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Mime/SimpleMessage.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Mime/SimpleMimeEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Mime/SimpleMimeEntity.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/MimePart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/MimePart.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/OutputByteStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/OutputByteStream.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Plugins/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Plugins/Logger.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Plugins/LoggerPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Plugins/LoggerPlugin.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Plugins/Reporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Plugins/Reporter.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Plugins/Sleeper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Plugins/Sleeper.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Plugins/Timer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Plugins/Timer.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Preferences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Preferences.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/SendmailTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/SendmailTransport.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/SmtpTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/SmtpTransport.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/StreamFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/StreamFilter.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/SwiftException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/SwiftException.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Transport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Transport.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Transport/IoBuffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Transport/IoBuffer.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Transport/MailInvoker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Transport/MailInvoker.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/Transport/SmtpAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/Transport/SmtpAgent.php -------------------------------------------------------------------------------- /includes/swift/classes/Swift/TransportException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/classes/Swift/TransportException.php -------------------------------------------------------------------------------- /includes/swift/dependency_maps/cache_deps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/dependency_maps/cache_deps.php -------------------------------------------------------------------------------- /includes/swift/dependency_maps/mime_deps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/dependency_maps/mime_deps.php -------------------------------------------------------------------------------- /includes/swift/dependency_maps/transport_deps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/dependency_maps/transport_deps.php -------------------------------------------------------------------------------- /includes/swift/mime_types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/mime_types.php -------------------------------------------------------------------------------- /includes/swift/preferences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/preferences.php -------------------------------------------------------------------------------- /includes/swift/swift_init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/swift_init.php -------------------------------------------------------------------------------- /includes/swift/swift_required.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/swift_required.php -------------------------------------------------------------------------------- /includes/swift/swift_required_pear.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/swift/swift_required_pear.php -------------------------------------------------------------------------------- /includes/tinymce/langs/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/langs/en.js -------------------------------------------------------------------------------- /includes/tinymce/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/license.txt -------------------------------------------------------------------------------- /includes/tinymce/plugins/advhr/css/advhr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/advhr/css/advhr.css -------------------------------------------------------------------------------- /includes/tinymce/plugins/advhr/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/advhr/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/advhr/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/advhr/editor_plugin_src.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/advhr/js/rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/advhr/js/rule.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/advhr/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/advhr/langs/en_dlg.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/advhr/rule.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/advhr/rule.htm -------------------------------------------------------------------------------- /includes/tinymce/plugins/advimage/css/advimage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/advimage/css/advimage.css -------------------------------------------------------------------------------- /includes/tinymce/plugins/advimage/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/advimage/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/advimage/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/advimage/editor_plugin_src.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/advimage/image.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/advimage/image.htm -------------------------------------------------------------------------------- /includes/tinymce/plugins/advimage/img/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/advimage/img/sample.gif -------------------------------------------------------------------------------- /includes/tinymce/plugins/advimage/js/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/advimage/js/image.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/advimage/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/advimage/langs/en_dlg.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/advlink/css/advlink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/advlink/css/advlink.css -------------------------------------------------------------------------------- /includes/tinymce/plugins/advlink/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/advlink/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/advlink/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/advlink/editor_plugin_src.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/advlink/js/advlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/advlink/js/advlink.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/advlink/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/advlink/langs/en_dlg.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/advlink/link.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/advlink/link.htm -------------------------------------------------------------------------------- /includes/tinymce/plugins/advlist/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/advlist/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/advlist/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/advlist/editor_plugin_src.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/autoresize/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/autoresize/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/autosave/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/autosave/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/autosave/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/autosave/editor_plugin_src.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/autosave/langs/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/autosave/langs/en.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/bbcode/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/bbcode/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/bbcode/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/bbcode/editor_plugin_src.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/contextmenu/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/contextmenu/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/emotions/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/emotions/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/emotions/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/emotions/editor_plugin_src.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/emotions/emotions.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/emotions/emotions.htm -------------------------------------------------------------------------------- /includes/tinymce/plugins/emotions/img/smiley-cool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/emotions/img/smiley-cool.gif -------------------------------------------------------------------------------- /includes/tinymce/plugins/emotions/img/smiley-cry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/emotions/img/smiley-cry.gif -------------------------------------------------------------------------------- /includes/tinymce/plugins/emotions/img/smiley-frown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/emotions/img/smiley-frown.gif -------------------------------------------------------------------------------- /includes/tinymce/plugins/emotions/img/smiley-kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/emotions/img/smiley-kiss.gif -------------------------------------------------------------------------------- /includes/tinymce/plugins/emotions/img/smiley-smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/emotions/img/smiley-smile.gif -------------------------------------------------------------------------------- /includes/tinymce/plugins/emotions/img/smiley-wink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/emotions/img/smiley-wink.gif -------------------------------------------------------------------------------- /includes/tinymce/plugins/emotions/img/smiley-yell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/emotions/img/smiley-yell.gif -------------------------------------------------------------------------------- /includes/tinymce/plugins/emotions/js/emotions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/emotions/js/emotions.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/emotions/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/emotions/langs/en_dlg.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/example/dialog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/example/dialog.htm -------------------------------------------------------------------------------- /includes/tinymce/plugins/example/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/example/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/example/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/example/editor_plugin_src.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/example/img/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/example/img/example.gif -------------------------------------------------------------------------------- /includes/tinymce/plugins/example/js/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/example/js/dialog.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/example/langs/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/example/langs/en.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/example/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/example/langs/en_dlg.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/fullpage/css/fullpage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/fullpage/css/fullpage.css -------------------------------------------------------------------------------- /includes/tinymce/plugins/fullpage/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/fullpage/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/fullpage/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/fullpage/editor_plugin_src.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/fullpage/fullpage.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/fullpage/fullpage.htm -------------------------------------------------------------------------------- /includes/tinymce/plugins/fullpage/js/fullpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/fullpage/js/fullpage.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/fullpage/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/fullpage/langs/en_dlg.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/fullscreen/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/fullscreen/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/fullscreen/fullscreen.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/fullscreen/fullscreen.htm -------------------------------------------------------------------------------- /includes/tinymce/plugins/iespell/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/iespell/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/iespell/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/iespell/editor_plugin_src.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/inlinepopups/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/inlinepopups/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/inlinepopups/template.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/inlinepopups/template.htm -------------------------------------------------------------------------------- /includes/tinymce/plugins/layer/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/layer/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/layer/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/layer/editor_plugin_src.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/legacyoutput/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/legacyoutput/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/media/css/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/media/css/content.css -------------------------------------------------------------------------------- /includes/tinymce/plugins/media/css/media.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/media/css/media.css -------------------------------------------------------------------------------- /includes/tinymce/plugins/media/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/media/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/media/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/media/editor_plugin_src.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/media/img/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/media/img/flash.gif -------------------------------------------------------------------------------- /includes/tinymce/plugins/media/img/flv_player.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/media/img/flv_player.swf -------------------------------------------------------------------------------- /includes/tinymce/plugins/media/img/quicktime.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/media/img/quicktime.gif -------------------------------------------------------------------------------- /includes/tinymce/plugins/media/img/realmedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/media/img/realmedia.gif -------------------------------------------------------------------------------- /includes/tinymce/plugins/media/img/shockwave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/media/img/shockwave.gif -------------------------------------------------------------------------------- /includes/tinymce/plugins/media/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/media/img/trans.gif -------------------------------------------------------------------------------- /includes/tinymce/plugins/media/img/windowsmedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/media/img/windowsmedia.gif -------------------------------------------------------------------------------- /includes/tinymce/plugins/media/js/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/media/js/embed.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/media/js/media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/media/js/media.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/media/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/media/langs/en_dlg.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/media/media.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/media/media.htm -------------------------------------------------------------------------------- /includes/tinymce/plugins/nonbreaking/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/nonbreaking/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/noneditable/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/noneditable/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/pagebreak/css/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/pagebreak/css/content.css -------------------------------------------------------------------------------- /includes/tinymce/plugins/pagebreak/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/pagebreak/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/pagebreak/img/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/pagebreak/img/pagebreak.gif -------------------------------------------------------------------------------- /includes/tinymce/plugins/pagebreak/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/pagebreak/img/trans.gif -------------------------------------------------------------------------------- /includes/tinymce/plugins/paste/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/paste/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/paste/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/paste/editor_plugin_src.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/paste/js/pastetext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/paste/js/pastetext.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/paste/js/pasteword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/paste/js/pasteword.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/paste/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/paste/langs/en_dlg.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/paste/pastetext.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/paste/pastetext.htm -------------------------------------------------------------------------------- /includes/tinymce/plugins/paste/pasteword.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/paste/pasteword.htm -------------------------------------------------------------------------------- /includes/tinymce/plugins/preview/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/preview/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/preview/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/preview/editor_plugin_src.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/preview/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/preview/example.html -------------------------------------------------------------------------------- /includes/tinymce/plugins/preview/jscripts/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/preview/jscripts/embed.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/preview/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/preview/preview.html -------------------------------------------------------------------------------- /includes/tinymce/plugins/print/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/print/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/print/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/print/editor_plugin_src.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/save/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/save/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/save/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/save/editor_plugin_src.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/searchreplace/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/searchreplace/langs/en_dlg.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/spellchecker/css/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/spellchecker/css/content.css -------------------------------------------------------------------------------- /includes/tinymce/plugins/spellchecker/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/spellchecker/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/spellchecker/img/wline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/spellchecker/img/wline.gif -------------------------------------------------------------------------------- /includes/tinymce/plugins/style/css/props.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/style/css/props.css -------------------------------------------------------------------------------- /includes/tinymce/plugins/style/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/style/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/style/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/style/editor_plugin_src.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/style/js/props.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/style/js/props.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/style/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/style/langs/en_dlg.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/style/props.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/style/props.htm -------------------------------------------------------------------------------- /includes/tinymce/plugins/tabfocus/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/tabfocus/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/tabfocus/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/tabfocus/editor_plugin_src.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/table/cell.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/table/cell.htm -------------------------------------------------------------------------------- /includes/tinymce/plugins/table/css/cell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/table/css/cell.css -------------------------------------------------------------------------------- /includes/tinymce/plugins/table/css/row.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/table/css/row.css -------------------------------------------------------------------------------- /includes/tinymce/plugins/table/css/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/table/css/table.css -------------------------------------------------------------------------------- /includes/tinymce/plugins/table/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/table/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/table/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/table/editor_plugin_src.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/table/js/cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/table/js/cell.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/table/js/merge_cells.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/table/js/merge_cells.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/table/js/row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/table/js/row.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/table/js/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/table/js/table.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/table/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/table/langs/en_dlg.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/table/merge_cells.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/table/merge_cells.htm -------------------------------------------------------------------------------- /includes/tinymce/plugins/table/row.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/table/row.htm -------------------------------------------------------------------------------- /includes/tinymce/plugins/table/table.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/table/table.htm -------------------------------------------------------------------------------- /includes/tinymce/plugins/template/blank.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/template/blank.htm -------------------------------------------------------------------------------- /includes/tinymce/plugins/template/css/template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/template/css/template.css -------------------------------------------------------------------------------- /includes/tinymce/plugins/template/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/template/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/template/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/template/editor_plugin_src.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/template/js/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/template/js/template.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/template/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/template/langs/en_dlg.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/template/template.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/template/template.htm -------------------------------------------------------------------------------- /includes/tinymce/plugins/visualchars/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/visualchars/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/wordcount/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/wordcount/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/xhtmlxtras/abbr.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/xhtmlxtras/abbr.htm -------------------------------------------------------------------------------- /includes/tinymce/plugins/xhtmlxtras/acronym.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/xhtmlxtras/acronym.htm -------------------------------------------------------------------------------- /includes/tinymce/plugins/xhtmlxtras/attributes.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/xhtmlxtras/attributes.htm -------------------------------------------------------------------------------- /includes/tinymce/plugins/xhtmlxtras/cite.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/xhtmlxtras/cite.htm -------------------------------------------------------------------------------- /includes/tinymce/plugins/xhtmlxtras/css/attributes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/xhtmlxtras/css/attributes.css -------------------------------------------------------------------------------- /includes/tinymce/plugins/xhtmlxtras/css/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/xhtmlxtras/css/popup.css -------------------------------------------------------------------------------- /includes/tinymce/plugins/xhtmlxtras/del.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/xhtmlxtras/del.htm -------------------------------------------------------------------------------- /includes/tinymce/plugins/xhtmlxtras/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/xhtmlxtras/editor_plugin.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/xhtmlxtras/ins.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/xhtmlxtras/ins.htm -------------------------------------------------------------------------------- /includes/tinymce/plugins/xhtmlxtras/js/abbr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/xhtmlxtras/js/abbr.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/xhtmlxtras/js/acronym.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/xhtmlxtras/js/acronym.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/xhtmlxtras/js/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/xhtmlxtras/js/attributes.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/xhtmlxtras/js/cite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/xhtmlxtras/js/cite.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/xhtmlxtras/js/del.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/xhtmlxtras/js/del.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/xhtmlxtras/js/ins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/xhtmlxtras/js/ins.js -------------------------------------------------------------------------------- /includes/tinymce/plugins/xhtmlxtras/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/plugins/xhtmlxtras/langs/en_dlg.js -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/about.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/advanced/about.htm -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/anchor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/advanced/anchor.htm -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/charmap.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/advanced/charmap.htm -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/color_picker.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/advanced/color_picker.htm -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/editor_template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/advanced/editor_template.js -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/image.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/advanced/image.htm -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/img/colorpicker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/advanced/img/colorpicker.jpg -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/advanced/img/icons.gif -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/js/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/advanced/js/about.js -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/js/anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/advanced/js/anchor.js -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/js/charmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/advanced/js/charmap.js -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/js/color_picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/advanced/js/color_picker.js -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/js/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/advanced/js/image.js -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/js/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/advanced/js/link.js -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/js/source_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/advanced/js/source_editor.js -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/langs/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/advanced/langs/en.js -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/langs/en_dlg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/advanced/langs/en_dlg.js -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/link.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/advanced/link.htm -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/skins/default/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/advanced/skins/default/ui.css -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/skins/o2k7/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/advanced/skins/o2k7/dialog.css -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/skins/o2k7/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/advanced/skins/o2k7/ui.css -------------------------------------------------------------------------------- /includes/tinymce/themes/advanced/source_editor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/advanced/source_editor.htm -------------------------------------------------------------------------------- /includes/tinymce/themes/simple/editor_template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/simple/editor_template.js -------------------------------------------------------------------------------- /includes/tinymce/themes/simple/editor_template_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/simple/editor_template_src.js -------------------------------------------------------------------------------- /includes/tinymce/themes/simple/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/simple/img/icons.gif -------------------------------------------------------------------------------- /includes/tinymce/themes/simple/langs/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/simple/langs/en.js -------------------------------------------------------------------------------- /includes/tinymce/themes/simple/skins/default/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/simple/skins/default/ui.css -------------------------------------------------------------------------------- /includes/tinymce/themes/simple/skins/o2k7/content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/simple/skins/o2k7/content.css -------------------------------------------------------------------------------- /includes/tinymce/themes/simple/skins/o2k7/ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/themes/simple/skins/o2k7/ui.css -------------------------------------------------------------------------------- /includes/tinymce/tiny_mce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/tiny_mce.js -------------------------------------------------------------------------------- /includes/tinymce/tiny_mce_popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/tiny_mce_popup.js -------------------------------------------------------------------------------- /includes/tinymce/tiny_mce_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/tiny_mce_src.js -------------------------------------------------------------------------------- /includes/tinymce/utils/editable_selects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/utils/editable_selects.js -------------------------------------------------------------------------------- /includes/tinymce/utils/form_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/utils/form_utils.js -------------------------------------------------------------------------------- /includes/tinymce/utils/mctabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/utils/mctabs.js -------------------------------------------------------------------------------- /includes/tinymce/utils/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/tinymce/utils/validate.js -------------------------------------------------------------------------------- /includes/trellis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/trellis.php -------------------------------------------------------------------------------- /includes/trellis_admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/trellis_admin.php -------------------------------------------------------------------------------- /includes/uploadify/jquery.uploadify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/uploadify/jquery.uploadify.js -------------------------------------------------------------------------------- /includes/uploadify/jquery.uploadify.js.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/uploadify/jquery.uploadify.js.old -------------------------------------------------------------------------------- /includes/uploadify/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/uploadify/swfobject.js -------------------------------------------------------------------------------- /includes/uploadify/swfobject.js.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/uploadify/swfobject.js.old -------------------------------------------------------------------------------- /includes/uploadify/uploadify.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/uploadify/uploadify.swf -------------------------------------------------------------------------------- /includes/uploadify/uploadify.swf.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/includes/uploadify/uploadify.swf.old -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/index.php -------------------------------------------------------------------------------- /install/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/install/index.php -------------------------------------------------------------------------------- /install/skin_install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/install/skin_install.php -------------------------------------------------------------------------------- /install/sql_queries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/install/sql_queries.php -------------------------------------------------------------------------------- /install/trellis_install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/install/trellis_install.php -------------------------------------------------------------------------------- /languages/en/ad_lang_articles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/ad_lang_articles.php -------------------------------------------------------------------------------- /languages/en/ad_lang_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/ad_lang_cache.php -------------------------------------------------------------------------------- /languages/en/ad_lang_categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/ad_lang_categories.php -------------------------------------------------------------------------------- /languages/en/ad_lang_cdfields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/ad_lang_cdfields.php -------------------------------------------------------------------------------- /languages/en/ad_lang_cpfields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/ad_lang_cpfields.php -------------------------------------------------------------------------------- /languages/en/ad_lang_departs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/ad_lang_departs.php -------------------------------------------------------------------------------- /languages/en/ad_lang_emails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/ad_lang_emails.php -------------------------------------------------------------------------------- /languages/en/ad_lang_error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/ad_lang_error.php -------------------------------------------------------------------------------- /languages/en/ad_lang_flags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/ad_lang_flags.php -------------------------------------------------------------------------------- /languages/en/ad_lang_global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/ad_lang_global.php -------------------------------------------------------------------------------- /languages/en/ad_lang_groups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/ad_lang_groups.php -------------------------------------------------------------------------------- /languages/en/ad_lang_home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/ad_lang_home.php -------------------------------------------------------------------------------- /languages/en/ad_lang_languages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/ad_lang_languages.php -------------------------------------------------------------------------------- /languages/en/ad_lang_logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/ad_lang_logs.php -------------------------------------------------------------------------------- /languages/en/ad_lang_news.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/ad_lang_news.php -------------------------------------------------------------------------------- /languages/en/ad_lang_pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/ad_lang_pages.php -------------------------------------------------------------------------------- /languages/en/ad_lang_priorities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/ad_lang_priorities.php -------------------------------------------------------------------------------- /languages/en/ad_lang_redirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/ad_lang_redirect.php -------------------------------------------------------------------------------- /languages/en/ad_lang_rtemplates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/ad_lang_rtemplates.php -------------------------------------------------------------------------------- /languages/en/ad_lang_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/ad_lang_settings.php -------------------------------------------------------------------------------- /languages/en/ad_lang_skins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/ad_lang_skins.php -------------------------------------------------------------------------------- /languages/en/ad_lang_statuses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/ad_lang_statuses.php -------------------------------------------------------------------------------- /languages/en/ad_lang_tickets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/ad_lang_tickets.php -------------------------------------------------------------------------------- /languages/en/ad_lang_users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/ad_lang_users.php -------------------------------------------------------------------------------- /languages/en/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /languages/en/lang_account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/lang_account.php -------------------------------------------------------------------------------- /languages/en/lang_email_content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/lang_email_content.php -------------------------------------------------------------------------------- /languages/en/lang_error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/lang_error.php -------------------------------------------------------------------------------- /languages/en/lang_global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/lang_global.php -------------------------------------------------------------------------------- /languages/en/lang_knowledgebase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/lang_knowledgebase.php -------------------------------------------------------------------------------- /languages/en/lang_news.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/lang_news.php -------------------------------------------------------------------------------- /languages/en/lang_redirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/lang_redirect.php -------------------------------------------------------------------------------- /languages/en/lang_register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/lang_register.php -------------------------------------------------------------------------------- /languages/en/lang_tickets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/languages/en/lang_tickets.php -------------------------------------------------------------------------------- /languages/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /skins/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /skins/s1/css/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/css/jquery-ui.css -------------------------------------------------------------------------------- /skins/s1/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/css/style.css -------------------------------------------------------------------------------- /skins/s1/css/tiburon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/css/tiburon.css -------------------------------------------------------------------------------- /skins/s1/images/arrow_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/arrow_down.gif -------------------------------------------------------------------------------- /skins/s1/images/arrow_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/arrow_right.gif -------------------------------------------------------------------------------- /skins/s1/images/arrow_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/arrow_up.gif -------------------------------------------------------------------------------- /skins/s1/images/arrow_up_down_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/arrow_up_down_icon.png -------------------------------------------------------------------------------- /skins/s1/images/block_bkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/block_bkg.png -------------------------------------------------------------------------------- /skins/s1/images/button_approve.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/button_approve.gif -------------------------------------------------------------------------------- /skins/s1/images/button_delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/button_delete.gif -------------------------------------------------------------------------------- /skins/s1/images/button_delete_disabled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/button_delete_disabled.gif -------------------------------------------------------------------------------- /skins/s1/images/button_edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/button_edit.gif -------------------------------------------------------------------------------- /skins/s1/images/button_export.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/button_export.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/button_mini_close.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/button_mini_delete.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_done.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/button_mini_done.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_escalate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/button_mini_escalate.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_filters.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/button_mini_filters.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_hold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/button_mini_hold.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_move.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/button_mini_move.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_notes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/button_mini_notes.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_prune.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/button_mini_prune.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_reopen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/button_mini_reopen.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_reorder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/button_mini_reorder.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/button_mini_search.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_settings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/button_mini_settings.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_ticket_delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/button_mini_ticket_delete.gif -------------------------------------------------------------------------------- /skins/s1/images/button_mini_ticket_edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/button_mini_ticket_edit.gif -------------------------------------------------------------------------------- /skins/s1/images/button_upload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/button_upload.gif -------------------------------------------------------------------------------- /skins/s1/images/cal_arrow_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/cal_arrow_left.gif -------------------------------------------------------------------------------- /skins/s1/images/cal_arrow_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/cal_arrow_right.gif -------------------------------------------------------------------------------- /skins/s1/images/catbar_bkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/catbar_bkg.png -------------------------------------------------------------------------------- /skins/s1/images/content_bkg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/content_bkg.jpg -------------------------------------------------------------------------------- /skins/s1/images/content_bkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/content_bkg.png -------------------------------------------------------------------------------- /skins/s1/images/delete_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/delete_icon.gif -------------------------------------------------------------------------------- /skins/s1/images/edit_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/edit_icon.gif -------------------------------------------------------------------------------- /skins/s1/images/emoticon_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/emoticon_smile.png -------------------------------------------------------------------------------- /skins/s1/images/emoticon_unhappy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/emoticon_unhappy.png -------------------------------------------------------------------------------- /skins/s1/images/end_cap_bkg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/end_cap_bkg.gif -------------------------------------------------------------------------------- /skins/s1/images/end_cap_left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/end_cap_left.jpg -------------------------------------------------------------------------------- /skins/s1/images/end_cap_right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/end_cap_right.jpg -------------------------------------------------------------------------------- /skins/s1/images/fcbkc_close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/fcbkc_close.gif -------------------------------------------------------------------------------- /skins/s1/images/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/header.jpg -------------------------------------------------------------------------------- /skins/s1/images/header_lower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/header_lower.jpg -------------------------------------------------------------------------------- /skins/s1/images/icon_escalate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icon_escalate.png -------------------------------------------------------------------------------- /skins/s1/images/icons/addressbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/addressbook.png -------------------------------------------------------------------------------- /skins/s1/images/icons/addressbook.png.BACKUP.83610.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/addressbook.png.BACKUP.83610.png -------------------------------------------------------------------------------- /skins/s1/images/icons/addressbook.png.LOCAL.83610.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/addressbook.png.LOCAL.83610.png -------------------------------------------------------------------------------- /skins/s1/images/icons/addressbook.png.REMOTE.83610.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/addressbook.png.REMOTE.83610.png -------------------------------------------------------------------------------- /skins/s1/images/icons/alphabet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/alphabet.png -------------------------------------------------------------------------------- /skins/s1/images/icons/arrow_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/arrow_back.png -------------------------------------------------------------------------------- /skins/s1/images/icons/arrow_circle_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/arrow_circle_back.png -------------------------------------------------------------------------------- /skins/s1/images/icons/arrow_circle_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/arrow_circle_refresh.png -------------------------------------------------------------------------------- /skins/s1/images/icons/arrow_step_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/arrow_step_over.png -------------------------------------------------------------------------------- /skins/s1/images/icons/arrow_sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/arrow_sub.png -------------------------------------------------------------------------------- /skins/s1/images/icons/arrow_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/arrow_switch.png -------------------------------------------------------------------------------- /skins/s1/images/icons/assign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/assign.png -------------------------------------------------------------------------------- /skins/s1/images/icons/balloon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/balloon.png -------------------------------------------------------------------------------- /skins/s1/images/icons/balloon_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/balloon_small.png -------------------------------------------------------------------------------- /skins/s1/images/icons/binocular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/binocular.png -------------------------------------------------------------------------------- /skins/s1/images/icons/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/book.png -------------------------------------------------------------------------------- /skins/s1/images/icons/box_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/box_arrow.png -------------------------------------------------------------------------------- /skins/s1/images/icons/box_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/box_plus.png -------------------------------------------------------------------------------- /skins/s1/images/icons/broom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/broom.png -------------------------------------------------------------------------------- /skins/s1/images/icons/buoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/buoy.png -------------------------------------------------------------------------------- /skins/s1/images/icons/buoy_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/buoy_plus.png -------------------------------------------------------------------------------- /skins/s1/images/icons/circle_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/circle_delete.png -------------------------------------------------------------------------------- /skins/s1/images/icons/circle_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/circle_plus.png -------------------------------------------------------------------------------- /skins/s1/images/icons/circle_tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/circle_tick.png -------------------------------------------------------------------------------- /skins/s1/images/icons/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/color.png -------------------------------------------------------------------------------- /skins/s1/images/icons/compile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/compile.png -------------------------------------------------------------------------------- /skins/s1/images/icons/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/cross.png -------------------------------------------------------------------------------- /skins/s1/images/icons/document_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/document_text.png -------------------------------------------------------------------------------- /skins/s1/images/icons/drill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/drill.png -------------------------------------------------------------------------------- /skins/s1/images/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/edit.png -------------------------------------------------------------------------------- /skins/s1/images/icons/escalate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/escalate.png -------------------------------------------------------------------------------- /skins/s1/images/icons/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/exclamation.png -------------------------------------------------------------------------------- /skins/s1/images/icons/exclamation_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/exclamation_red.png -------------------------------------------------------------------------------- /skins/s1/images/icons/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/feed.png -------------------------------------------------------------------------------- /skins/s1/images/icons/field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/field.png -------------------------------------------------------------------------------- /skins/s1/images/icons/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/flag.png -------------------------------------------------------------------------------- /skins/s1/images/icons/folder_bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/folder_bookmark.png -------------------------------------------------------------------------------- /skins/s1/images/icons/folder_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/folder_export.png -------------------------------------------------------------------------------- /skins/s1/images/icons/folder_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/folder_import.png -------------------------------------------------------------------------------- /skins/s1/images/icons/folder_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/folder_page.png -------------------------------------------------------------------------------- /skins/s1/images/icons/folders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/folders.png -------------------------------------------------------------------------------- /skins/s1/images/icons/frame_tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/frame_tick.png -------------------------------------------------------------------------------- /skins/s1/images/icons/hold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/hold.png -------------------------------------------------------------------------------- /skins/s1/images/icons/hold_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/hold_minus.png -------------------------------------------------------------------------------- /skins/s1/images/icons/magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/magnet.png -------------------------------------------------------------------------------- /skins/s1/images/icons/mail_pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/mail_pencil.png -------------------------------------------------------------------------------- /skins/s1/images/icons/mails_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/mails_arrow.png -------------------------------------------------------------------------------- /skins/s1/images/icons/megaphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/megaphone.png -------------------------------------------------------------------------------- /skins/s1/images/icons/minus_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/minus_circle.png -------------------------------------------------------------------------------- /skins/s1/images/icons/minus_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/minus_sm.png -------------------------------------------------------------------------------- /skins/s1/images/icons/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/move.png -------------------------------------------------------------------------------- /skins/s1/images/icons/page_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/page_arrow.png -------------------------------------------------------------------------------- /skins/s1/images/icons/page_bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/page_bookmark.png -------------------------------------------------------------------------------- /skins/s1/images/icons/page_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/page_delete.png -------------------------------------------------------------------------------- /skins/s1/images/icons/page_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/page_edit.png -------------------------------------------------------------------------------- /skins/s1/images/icons/paint_pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/paint_pencil.png -------------------------------------------------------------------------------- /skins/s1/images/icons/palette_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/palette_arrow.png -------------------------------------------------------------------------------- /skins/s1/images/icons/palette_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/palette_plus.png -------------------------------------------------------------------------------- /skins/s1/images/icons/plus_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/plus_sm.png -------------------------------------------------------------------------------- /skins/s1/images/icons/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/print.png -------------------------------------------------------------------------------- /skins/s1/images/icons/priority.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/priority.png -------------------------------------------------------------------------------- /skins/s1/images/icons/puzzle_pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/puzzle_pencil.png -------------------------------------------------------------------------------- /skins/s1/images/icons/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/question.png -------------------------------------------------------------------------------- /skins/s1/images/icons/rmvescalate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/rmvescalate.png -------------------------------------------------------------------------------- /skins/s1/images/icons/script_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/script_edit.png -------------------------------------------------------------------------------- /skins/s1/images/icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/settings.png -------------------------------------------------------------------------------- /skins/s1/images/icons/signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/signature.png -------------------------------------------------------------------------------- /skins/s1/images/icons/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/star.png -------------------------------------------------------------------------------- /skins/s1/images/icons/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/status.png -------------------------------------------------------------------------------- /skins/s1/images/icons/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/tag.png -------------------------------------------------------------------------------- /skins/s1/images/icons/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/tick.png -------------------------------------------------------------------------------- /skins/s1/images/icons/ticket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/ticket.png -------------------------------------------------------------------------------- /skins/s1/images/icons/toggle_collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/toggle_collapse.png -------------------------------------------------------------------------------- /skins/s1/images/icons/toggle_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/toggle_expand.png -------------------------------------------------------------------------------- /skins/s1/images/icons/tweak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/tweak.png -------------------------------------------------------------------------------- /skins/s1/images/icons/user_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/user_minus.png -------------------------------------------------------------------------------- /skins/s1/images/icons/user_pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/icons/user_pencil.png -------------------------------------------------------------------------------- /skins/s1/images/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /skins/s1/images/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/indicator.gif -------------------------------------------------------------------------------- /skins/s1/images/infobar_bkg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/infobar_bkg.jpg -------------------------------------------------------------------------------- /skins/s1/images/infopop_bkg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/infopop_bkg.gif -------------------------------------------------------------------------------- /skins/s1/images/input_bkg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/input_bkg.gif -------------------------------------------------------------------------------- /skins/s1/images/install_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/install_logo.jpg -------------------------------------------------------------------------------- /skins/s1/images/jquery-ui/ui-icons_217bc0_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/skins/s1/images/jquery-ui/ui-icons_f9bd01_256x240.png -------------------------------------------------------------------------------- /skins/s1/images/kb_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/kb_icon.gif -------------------------------------------------------------------------------- /skins/s1/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/loading.gif -------------------------------------------------------------------------------- /skins/s1/images/logos/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/logos/feed.png -------------------------------------------------------------------------------- /skins/s1/images/logos/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /skins/s1/images/logos/mysql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/logos/mysql.png -------------------------------------------------------------------------------- /skins/s1/images/logos/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/logos/php.png -------------------------------------------------------------------------------- /skins/s1/images/logos/tinymce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/logos/tinymce.png -------------------------------------------------------------------------------- /skins/s1/images/logos/vcss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/logos/vcss.png -------------------------------------------------------------------------------- /skins/s1/images/logos/vrss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/logos/vrss.png -------------------------------------------------------------------------------- /skins/s1/images/logos/xhtml10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/logos/xhtml10.png -------------------------------------------------------------------------------- /skins/s1/images/logos/zend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/logos/zend.png -------------------------------------------------------------------------------- /skins/s1/images/menu_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/menu_bg.jpg -------------------------------------------------------------------------------- /skins/s1/images/menu_left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/menu_left.jpg -------------------------------------------------------------------------------- /skins/s1/images/menu_right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/menu_right.jpg -------------------------------------------------------------------------------- /skins/s1/images/navbar_bkg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/navbar_bkg.jpg -------------------------------------------------------------------------------- /skins/s1/images/navbar_bkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/navbar_bkg.png -------------------------------------------------------------------------------- /skins/s1/images/navbar_cap_left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/navbar_cap_left.jpg -------------------------------------------------------------------------------- /skins/s1/images/navbar_cap_right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/navbar_cap_right.jpg -------------------------------------------------------------------------------- /skins/s1/images/navbar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/navbar_logo.png -------------------------------------------------------------------------------- /skins/s1/images/page_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/page_delete.png -------------------------------------------------------------------------------- /skins/s1/images/page_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/page_edit.png -------------------------------------------------------------------------------- /skins/s1/images/page_white_code_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/page_white_code_red.png -------------------------------------------------------------------------------- /skins/s1/images/panel_bkg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/panel_bkg.jpg -------------------------------------------------------------------------------- /skins/s1/images/popup_bkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/popup_bkg.png -------------------------------------------------------------------------------- /skins/s1/images/popup_tail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/popup_tail.png -------------------------------------------------------------------------------- /skins/s1/images/powerbar_bkg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/powerbar_bkg.jpg -------------------------------------------------------------------------------- /skins/s1/images/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/preview.jpg -------------------------------------------------------------------------------- /skins/s1/images/rate_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/rate_delete.png -------------------------------------------------------------------------------- /skins/s1/images/rate_half.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/rate_half.gif -------------------------------------------------------------------------------- /skins/s1/images/rate_hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/rate_hover.gif -------------------------------------------------------------------------------- /skins/s1/images/rate_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/rate_off.gif -------------------------------------------------------------------------------- /skins/s1/images/rate_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/rate_on.gif -------------------------------------------------------------------------------- /skins/s1/images/rate_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/rate_star.png -------------------------------------------------------------------------------- /skins/s1/images/redbar_bkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/redbar_bkg.png -------------------------------------------------------------------------------- /skins/s1/images/revert_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/revert_icon.gif -------------------------------------------------------------------------------- /skins/s1/images/star_empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/star_empty.gif -------------------------------------------------------------------------------- /skins/s1/images/star_full.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/star_full.gif -------------------------------------------------------------------------------- /skins/s1/images/star_half.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/star_half.gif -------------------------------------------------------------------------------- /skins/s1/images/star_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/star_off.gif -------------------------------------------------------------------------------- /skins/s1/images/star_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/star_on.gif -------------------------------------------------------------------------------- /skins/s1/images/status_bkg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/status_bkg.gif -------------------------------------------------------------------------------- /skins/s1/images/statusbar_bkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/statusbar_bkg.png -------------------------------------------------------------------------------- /skins/s1/images/td_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/td_logo.jpg -------------------------------------------------------------------------------- /skins/s1/images/td_welcome_acphome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/td_welcome_acphome.png -------------------------------------------------------------------------------- /skins/s1/images/td_welcome_bkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/td_welcome_bkg.png -------------------------------------------------------------------------------- /skins/s1/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/thumbs_down.gif -------------------------------------------------------------------------------- /skins/s1/images/thumbs_down_hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/thumbs_down_hover.gif -------------------------------------------------------------------------------- /skins/s1/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/thumbs_up.gif -------------------------------------------------------------------------------- /skins/s1/images/thumbs_up_hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/thumbs_up_hover.gif -------------------------------------------------------------------------------- /skins/s1/images/ticket_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/ticket_icon.gif -------------------------------------------------------------------------------- /skins/s1/images/tinymce_filler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/tinymce_filler.png -------------------------------------------------------------------------------- /skins/s1/images/toggle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/toggle.gif -------------------------------------------------------------------------------- /skins/s1/images/up_to_date.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/up_to_date.jpg -------------------------------------------------------------------------------- /skins/s1/images/update_available.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/update_available.jpg -------------------------------------------------------------------------------- /skins/s1/images/upgrade_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/upgrade_logo.jpg -------------------------------------------------------------------------------- /skins/s1/images/vc_unable_to_check.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/vc_unable_to_check.jpg -------------------------------------------------------------------------------- /skins/s1/images/vc_up_to_date.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/vc_up_to_date.jpg -------------------------------------------------------------------------------- /skins/s1/images/vc_update_available.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/vc_update_available.jpg -------------------------------------------------------------------------------- /skins/s1/images/welcome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/images/welcome.jpg -------------------------------------------------------------------------------- /skins/s1/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/info.xml -------------------------------------------------------------------------------- /skins/s1/scripts/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/scripts/autocomplete.js -------------------------------------------------------------------------------- /skins/s1/scripts/catlinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/scripts/catlinks.js -------------------------------------------------------------------------------- /skins/s1/scripts/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/scripts/common.js -------------------------------------------------------------------------------- /skins/s1/scripts/common_acp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/scripts/common_acp.js -------------------------------------------------------------------------------- /skins/s1/scripts/fcbkcomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/scripts/fcbkcomplete.js -------------------------------------------------------------------------------- /skins/s1/scripts/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/scripts/global.js -------------------------------------------------------------------------------- /skins/s1/scripts/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /skins/s1/scripts/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/scripts/jquery-ui.js -------------------------------------------------------------------------------- /skins/s1/scripts/jquery-ui.js.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/scripts/jquery-ui.js.old -------------------------------------------------------------------------------- /skins/s1/scripts/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/scripts/jquery.js -------------------------------------------------------------------------------- /skins/s1/scripts/jquery.js.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/scripts/jquery.js.old -------------------------------------------------------------------------------- /skins/s1/scripts/jquery.json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/scripts/jquery.json.js -------------------------------------------------------------------------------- /skins/s1/scripts/jquery.menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/scripts/jquery.menu.js -------------------------------------------------------------------------------- /skins/s1/scripts/jquery.metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/scripts/jquery.metadata.js -------------------------------------------------------------------------------- /skins/s1/scripts/jquery.rating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/scripts/jquery.rating.js -------------------------------------------------------------------------------- /skins/s1/scripts/jquery.rating.js.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/scripts/jquery.rating.js.old -------------------------------------------------------------------------------- /skins/s1/scripts/jquery.scrollto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/scripts/jquery.scrollto.js -------------------------------------------------------------------------------- /skins/s1/scripts/jqueryextras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/scripts/jqueryextras.js -------------------------------------------------------------------------------- /skins/s1/scripts/livevalidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/scripts/livevalidation.js -------------------------------------------------------------------------------- /skins/s1/scripts/navlinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/scripts/navlinks.js -------------------------------------------------------------------------------- /skins/s1/templates/acc_change_email.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/acc_change_email.tpl -------------------------------------------------------------------------------- /skins/s1/templates/acc_change_pass.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/acc_change_pass.tpl -------------------------------------------------------------------------------- /skins/s1/templates/acc_modify.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/acc_modify.tpl -------------------------------------------------------------------------------- /skins/s1/templates/account.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/account.tpl -------------------------------------------------------------------------------- /skins/s1/templates/dashboard.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/dashboard.tpl -------------------------------------------------------------------------------- /skins/s1/templates/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /skins/s1/templates/kb_article.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/kb_article.tpl -------------------------------------------------------------------------------- /skins/s1/templates/kb_category.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/kb_category.tpl -------------------------------------------------------------------------------- /skins/s1/templates/kb_edit_comment.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/kb_edit_comment.tpl -------------------------------------------------------------------------------- /skins/s1/templates/kb_print_article.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/kb_print_article.tpl -------------------------------------------------------------------------------- /skins/s1/templates/kb_search_results.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/kb_search_results.tpl -------------------------------------------------------------------------------- /skins/s1/templates/knowledge_base.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/knowledge_base.tpl -------------------------------------------------------------------------------- /skins/s1/templates/news.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/news.tpl -------------------------------------------------------------------------------- /skins/s1/templates/news_edit_comment.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/news_edit_comment.tpl -------------------------------------------------------------------------------- /skins/s1/templates/news_item.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/news_item.tpl -------------------------------------------------------------------------------- /skins/s1/templates/page.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/page.tpl -------------------------------------------------------------------------------- /skins/s1/templates/print.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/print.tpl -------------------------------------------------------------------------------- /skins/s1/templates/reg_forgot_pass.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/reg_forgot_pass.tpl -------------------------------------------------------------------------------- /skins/s1/templates/reg_resend_val.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/reg_resend_val.tpl -------------------------------------------------------------------------------- /skins/s1/templates/reg_reset_pass.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/reg_reset_pass.tpl -------------------------------------------------------------------------------- /skins/s1/templates/reg_upgrade.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/reg_upgrade.tpl -------------------------------------------------------------------------------- /skins/s1/templates/register.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/register.tpl -------------------------------------------------------------------------------- /skins/s1/templates/tck_edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/tck_edit.tpl -------------------------------------------------------------------------------- /skins/s1/templates/tck_guest_login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/tck_guest_login.tpl -------------------------------------------------------------------------------- /skins/s1/templates/tck_print.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/tck_print.tpl -------------------------------------------------------------------------------- /skins/s1/templates/tck_reply_edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/tck_reply_edit.tpl -------------------------------------------------------------------------------- /skins/s1/templates/tck_submit_1.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/tck_submit_1.tpl -------------------------------------------------------------------------------- /skins/s1/templates/tck_submit_2.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/tck_submit_2.tpl -------------------------------------------------------------------------------- /skins/s1/templates/tck_view.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/tck_view.tpl -------------------------------------------------------------------------------- /skins/s1/templates/tickets.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/tickets.tpl -------------------------------------------------------------------------------- /skins/s1/templates/wrapper.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s1/templates/wrapper.tpl -------------------------------------------------------------------------------- /skins/s2/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/css/style.css -------------------------------------------------------------------------------- /skins/s2/images/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/images/preview.jpg -------------------------------------------------------------------------------- /skins/s2/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/info.xml -------------------------------------------------------------------------------- /skins/s2/templates/acc_change_email.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/acc_change_email.tpl -------------------------------------------------------------------------------- /skins/s2/templates/acc_change_pass.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/acc_change_pass.tpl -------------------------------------------------------------------------------- /skins/s2/templates/acc_modify.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/acc_modify.tpl -------------------------------------------------------------------------------- /skins/s2/templates/account.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/account.tpl -------------------------------------------------------------------------------- /skins/s2/templates/dashboard.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/dashboard.tpl -------------------------------------------------------------------------------- /skins/s2/templates/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /skins/s2/templates/kb_edit_comment.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/kb_edit_comment.tpl -------------------------------------------------------------------------------- /skins/s2/templates/kb_print_article.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/kb_print_article.tpl -------------------------------------------------------------------------------- /skins/s2/templates/kb_search_results.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/kb_search_results.tpl -------------------------------------------------------------------------------- /skins/s2/templates/kb_show_article.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/kb_show_article.tpl -------------------------------------------------------------------------------- /skins/s2/templates/kb_show_category.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/kb_show_category.tpl -------------------------------------------------------------------------------- /skins/s2/templates/knowledge_base.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/knowledge_base.tpl -------------------------------------------------------------------------------- /skins/s2/templates/news.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/news.tpl -------------------------------------------------------------------------------- /skins/s2/templates/news_edit_comment.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/news_edit_comment.tpl -------------------------------------------------------------------------------- /skins/s2/templates/news_print.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/news_print.tpl -------------------------------------------------------------------------------- /skins/s2/templates/news_show.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/news_show.tpl -------------------------------------------------------------------------------- /skins/s2/templates/page_show.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/page_show.tpl -------------------------------------------------------------------------------- /skins/s2/templates/print.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/print.tpl -------------------------------------------------------------------------------- /skins/s2/templates/reg_forgot_pass.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/reg_forgot_pass.tpl -------------------------------------------------------------------------------- /skins/s2/templates/reg_resend_val.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/reg_resend_val.tpl -------------------------------------------------------------------------------- /skins/s2/templates/reg_reset_pass.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/reg_reset_pass.tpl -------------------------------------------------------------------------------- /skins/s2/templates/reg_upgrade.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/reg_upgrade.tpl -------------------------------------------------------------------------------- /skins/s2/templates/register.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/register.tpl -------------------------------------------------------------------------------- /skins/s2/templates/tck_close_reason.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/tck_close_reason.tpl -------------------------------------------------------------------------------- /skins/s2/templates/tck_edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/tck_edit.tpl -------------------------------------------------------------------------------- /skins/s2/templates/tck_guest_login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/tck_guest_login.tpl -------------------------------------------------------------------------------- /skins/s2/templates/tck_history.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/tck_history.tpl -------------------------------------------------------------------------------- /skins/s2/templates/tck_print.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/tck_print.tpl -------------------------------------------------------------------------------- /skins/s2/templates/tck_reply_edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/tck_reply_edit.tpl -------------------------------------------------------------------------------- /skins/s2/templates/tck_show.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/tck_show.tpl -------------------------------------------------------------------------------- /skins/s2/templates/tck_submit_1.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/tck_submit_1.tpl -------------------------------------------------------------------------------- /skins/s2/templates/tck_submit_2.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/tck_submit_2.tpl -------------------------------------------------------------------------------- /skins/s2/templates/tck_submit_3.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/tck_submit_3.tpl -------------------------------------------------------------------------------- /skins/s2/templates/wrapper.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/skins/s2/templates/wrapper.tpl -------------------------------------------------------------------------------- /sources/account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/sources/account.php -------------------------------------------------------------------------------- /sources/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/sources/dashboard.php -------------------------------------------------------------------------------- /sources/feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/sources/feed.php -------------------------------------------------------------------------------- /sources/index.html: -------------------------------------------------------------------------------- 1 |You are not allowed to access this directory.
-------------------------------------------------------------------------------- /sources/knowledgebase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/sources/knowledgebase.php -------------------------------------------------------------------------------- /sources/news.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/sources/news.php -------------------------------------------------------------------------------- /sources/pages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/sources/pages.php -------------------------------------------------------------------------------- /sources/pipe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/sources/pipe.php -------------------------------------------------------------------------------- /sources/pop3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/sources/pop3.php -------------------------------------------------------------------------------- /sources/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/sources/register.php -------------------------------------------------------------------------------- /sources/tickets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/sources/tickets.php -------------------------------------------------------------------------------- /upgrade/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/upgrade/index.php -------------------------------------------------------------------------------- /upgrade/up_10031234/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/upgrade/up_10031234/index.php -------------------------------------------------------------------------------- /upgrade/up_10031234/skin_trellis_desk_classic_td.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/upgrade/up_10031234/skin_trellis_desk_classic_td.xml -------------------------------------------------------------------------------- /upgrade/up_10031234/skin_trellis_desk_default_td.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/upgrade/up_10031234/skin_trellis_desk_default_td.xml -------------------------------------------------------------------------------- /upgrade/up_10031234/sql_queries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/upgrade/up_10031234/sql_queries.php -------------------------------------------------------------------------------- /upgrade/up_10032251/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/upgrade/up_10032251/index.php -------------------------------------------------------------------------------- /upgrade/up_10032251/sql_queries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ACCORD5/TrellisDesk/HEAD/upgrade/up_10032251/sql_queries.php --------------------------------------------------------------------------------