├── .gitignore ├── README.md ├── _build ├── build.config.php ├── build.model.php ├── build.transport.php ├── data │ ├── transport.chunks.php │ ├── transport.events.php │ ├── transport.menu.php │ ├── transport.plugins.php │ ├── transport.policies.php │ ├── transport.policytemplates.php │ ├── transport.settings.php │ └── transport.snippets.php ├── includes │ └── functions.php ├── properties │ ├── properties.comments.php │ ├── properties.get_comments.php │ ├── properties.get_sections.php │ ├── properties.get_stars.php │ ├── properties.get_tickets.php │ ├── properties.subscribe_author.php │ ├── properties.ticket_form.php │ ├── properties.ticket_latest.php │ └── properties.ticket_meta.php ├── resolvers │ ├── resolve.actionfields.php │ ├── resolve.policy.php │ ├── resolve.settings.php │ ├── resolve.setup.php │ ├── resolve.sources.php │ ├── resolve.tables.php │ ├── resolve.tables_values.php │ └── resolve.upgrade.php └── setup.options.php ├── assets └── components │ └── tickets │ ├── action.php │ ├── connector.php │ ├── css │ ├── index.html │ ├── mgr │ │ ├── bootstrap.buttons.css │ │ └── tickets.css │ └── web │ │ ├── default.css │ │ └── lib │ │ └── jquery.jgrowl.min.css │ ├── img │ └── web │ │ ├── loading.gif │ │ └── refresh.gif │ ├── index.html │ └── js │ ├── index.html │ ├── mgr │ ├── author │ │ ├── authors.grid.js │ │ └── authors.panel.js │ ├── comment │ │ ├── comment.window.js │ │ ├── comments.grid.js │ │ └── comments.panel.js │ ├── home.js │ ├── misc │ │ ├── combos.js │ │ ├── strftime-min-1.3.js │ │ └── utils.js │ ├── section │ │ ├── create.js │ │ ├── section.common.js │ │ └── update.js │ ├── subscribe │ │ ├── subscribes.grid.js │ │ └── subscribes.panel.js │ ├── thread │ │ ├── thread.window.js │ │ ├── threads.grid.js │ │ └── threads.panel.js │ ├── ticket │ │ ├── create.js │ │ ├── ticket.common.js │ │ ├── tickets.grid.js │ │ ├── tickets.panel.js │ │ └── update.js │ └── tickets.js │ └── web │ ├── default.js │ ├── editor │ ├── editor.css │ ├── editor.png │ ├── editor1x.png │ ├── editor2x.png │ ├── editor4x.png │ └── jquery.markitup.js │ ├── files.js │ └── lib │ ├── jquery-1.10.2.min.map │ ├── jquery.form.min.js │ ├── jquery.jgrowl.map │ ├── jquery.jgrowl.min.js │ ├── jquery.min.js │ ├── jquery.sisyphus.min.js │ ├── plupload │ ├── Moxie.swf │ ├── Moxie.xap │ ├── i18n │ │ ├── de.js │ │ ├── en.js │ │ ├── fr.js │ │ └── ru.js │ ├── moxie.js │ ├── moxie.min.js │ ├── plupload.dev.js │ ├── plupload.full.min.js │ └── plupload.min.js │ ├── prettify │ ├── prettify.css │ └── prettify.js │ └── sortable │ ├── Sortable.min.js │ └── jquery.binding.js └── core └── components └── tickets ├── controllers ├── home.class.php ├── section │ ├── create.class.php │ ├── data.class.php │ └── update.class.php └── ticket │ ├── create.class.php │ ├── data.class.php │ └── update.class.php ├── cron ├── mail_queue.php ├── rebuild_rating.php └── remove_votes.php ├── docs ├── changelog.txt ├── license.txt └── readme.txt ├── elements ├── chunks │ ├── chunk.author_email_subscription.tpl │ ├── chunk.comment_email_bcc.tpl │ ├── chunk.comment_email_owner.tpl │ ├── chunk.comment_email_reply.tpl │ ├── chunk.comment_email_subscription.tpl │ ├── chunk.comment_email_unpublished.tpl │ ├── chunk.comment_form.tpl │ ├── chunk.comment_form_files.tpl │ ├── chunk.comment_form_guest.tpl │ ├── chunk.comment_latest.tpl │ ├── chunk.comment_list_row.tpl │ ├── chunk.comment_login.tpl │ ├── chunk.comment_one_auth.tpl │ ├── chunk.comment_one_deleted.tpl │ ├── chunk.comment_one_guest.tpl │ ├── chunk.comment_wrapper.tpl │ ├── chunk.form_create.tpl │ ├── chunk.form_file.tpl │ ├── chunk.form_files.tpl │ ├── chunk.form_image.tpl │ ├── chunk.form_preview.tpl │ ├── chunk.form_update.tpl │ ├── chunk.ticket_author_subscribe.tpl │ ├── chunk.ticket_email_bcc.tpl │ ├── chunk.ticket_email_subscription.tpl │ ├── chunk.ticket_latest.tpl │ ├── chunk.ticket_list_row.tpl │ ├── chunk.ticket_meta.tpl │ ├── chunk.ticket_meta_file.tpl │ ├── chunk.ticket_sections_row.tpl │ └── chunk.ticket_sections_wrapper.tpl ├── plugins │ └── plugin.tickets.php ├── snippets │ ├── snippet.comments.php │ ├── snippet.get_comments.php │ ├── snippet.get_sections.php │ ├── snippet.get_stars.php │ ├── snippet.get_tickets.php │ ├── snippet.subscribe_author.php │ ├── snippet.ticket_form.php │ ├── snippet.ticket_latest.php │ └── snippet.ticket_meta.php └── templates │ └── home.tpl ├── lexicon ├── en │ ├── default.inc.php │ ├── permissions.inc.php │ ├── properties.inc.php │ └── setting.inc.php ├── ru │ ├── default.inc.php │ ├── permissions.inc.php │ ├── properties.inc.php │ └── setting.inc.php └── uk │ ├── default.inc.php │ ├── permissions.inc.php │ ├── properties.inc.php │ └── setting.inc.php ├── model ├── schema │ └── tickets.mysql.schema.xml └── tickets │ ├── metadata.mysql.php │ ├── mysql │ ├── ticket.class.php │ ├── ticket.map.inc.php │ ├── ticketauthor.class.php │ ├── ticketauthor.map.inc.php │ ├── ticketauthoraction.class.php │ ├── ticketauthoraction.map.inc.php │ ├── ticketcomment.class.php │ ├── ticketcomment.map.inc.php │ ├── ticketfile.class.php │ ├── ticketfile.map.inc.php │ ├── ticketqueue.class.php │ ├── ticketqueue.map.inc.php │ ├── ticketssection.class.php │ ├── ticketssection.map.inc.php │ ├── ticketstar.class.php │ ├── ticketstar.map.inc.php │ ├── ticketthread.class.php │ ├── ticketthread.map.inc.php │ ├── tickettotal.class.php │ ├── tickettotal.map.inc.php │ ├── ticketview.class.php │ ├── ticketview.map.inc.php │ ├── ticketvote.class.php │ └── ticketvote.map.inc.php │ ├── ticket.class.php │ ├── ticketauthor.class.php │ ├── ticketauthoraction.class.php │ ├── ticketcomment.class.php │ ├── ticketfile.class.php │ ├── ticketqueue.class.php │ ├── tickets.class.php │ ├── ticketssection.class.php │ ├── ticketstar.class.php │ ├── ticketthread.class.php │ ├── tickettotal.class.php │ ├── ticketview.class.php │ └── ticketvote.class.php └── processors ├── mgr ├── author │ ├── getlist.class.php │ └── rebuild.class.php ├── comment │ ├── create.class.php │ ├── delete.class.php │ ├── get.class.php │ ├── getlist.class.php │ ├── multiple.class.php │ ├── publish.class.php │ ├── remove.class.php │ ├── undelete.class.php │ ├── unpublish.class.php │ └── update.class.php ├── section │ ├── create.class.php │ ├── getlist.class.php │ └── update.class.php ├── subscribe │ ├── getlist.class.php │ ├── multiple.class.php │ └── unsubscribe.class.php ├── thread │ ├── close.class.php │ ├── delete.class.php │ ├── get.class.php │ ├── getlist.class.php │ ├── multiple.class.php │ ├── open.class.php │ ├── remove.class.php │ └── undelete.class.php └── ticket │ ├── create.class.php │ ├── delete.class.php │ ├── getlist.class.php │ ├── multiple.class.php │ ├── publish.class.php │ ├── undelete.class.php │ ├── unpublish.class.php │ └── update.class.php └── web ├── comment ├── create.class.php ├── get.class.php ├── star.class.php ├── update.class.php └── vote.class.php ├── file ├── delete.class.php ├── sort.class.php ├── upload.class.php └── upload.comment.class.php ├── section └── getlist.class.php ├── thread └── get.class.php └── ticket ├── delete.class.php ├── getlist.class.php ├── star.class.php ├── undelete.class.php └── vote.class.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/README.md -------------------------------------------------------------------------------- /_build/build.config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/build.config.php -------------------------------------------------------------------------------- /_build/build.model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/build.model.php -------------------------------------------------------------------------------- /_build/build.transport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/build.transport.php -------------------------------------------------------------------------------- /_build/data/transport.chunks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/data/transport.chunks.php -------------------------------------------------------------------------------- /_build/data/transport.events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/data/transport.events.php -------------------------------------------------------------------------------- /_build/data/transport.menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/data/transport.menu.php -------------------------------------------------------------------------------- /_build/data/transport.plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/data/transport.plugins.php -------------------------------------------------------------------------------- /_build/data/transport.policies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/data/transport.policies.php -------------------------------------------------------------------------------- /_build/data/transport.policytemplates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/data/transport.policytemplates.php -------------------------------------------------------------------------------- /_build/data/transport.settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/data/transport.settings.php -------------------------------------------------------------------------------- /_build/data/transport.snippets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/data/transport.snippets.php -------------------------------------------------------------------------------- /_build/includes/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/includes/functions.php -------------------------------------------------------------------------------- /_build/properties/properties.comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/properties/properties.comments.php -------------------------------------------------------------------------------- /_build/properties/properties.get_comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/properties/properties.get_comments.php -------------------------------------------------------------------------------- /_build/properties/properties.get_sections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/properties/properties.get_sections.php -------------------------------------------------------------------------------- /_build/properties/properties.get_stars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/properties/properties.get_stars.php -------------------------------------------------------------------------------- /_build/properties/properties.get_tickets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/properties/properties.get_tickets.php -------------------------------------------------------------------------------- /_build/properties/properties.subscribe_author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/properties/properties.subscribe_author.php -------------------------------------------------------------------------------- /_build/properties/properties.ticket_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/properties/properties.ticket_form.php -------------------------------------------------------------------------------- /_build/properties/properties.ticket_latest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/properties/properties.ticket_latest.php -------------------------------------------------------------------------------- /_build/properties/properties.ticket_meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/properties/properties.ticket_meta.php -------------------------------------------------------------------------------- /_build/resolvers/resolve.actionfields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/resolvers/resolve.actionfields.php -------------------------------------------------------------------------------- /_build/resolvers/resolve.policy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/resolvers/resolve.policy.php -------------------------------------------------------------------------------- /_build/resolvers/resolve.settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/resolvers/resolve.settings.php -------------------------------------------------------------------------------- /_build/resolvers/resolve.setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/resolvers/resolve.setup.php -------------------------------------------------------------------------------- /_build/resolvers/resolve.sources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/resolvers/resolve.sources.php -------------------------------------------------------------------------------- /_build/resolvers/resolve.tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/resolvers/resolve.tables.php -------------------------------------------------------------------------------- /_build/resolvers/resolve.tables_values.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/resolvers/resolve.tables_values.php -------------------------------------------------------------------------------- /_build/resolvers/resolve.upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/resolvers/resolve.upgrade.php -------------------------------------------------------------------------------- /_build/setup.options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/_build/setup.options.php -------------------------------------------------------------------------------- /assets/components/tickets/action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/action.php -------------------------------------------------------------------------------- /assets/components/tickets/connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/connector.php -------------------------------------------------------------------------------- /assets/components/tickets/css/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/components/tickets/css/mgr/bootstrap.buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/css/mgr/bootstrap.buttons.css -------------------------------------------------------------------------------- /assets/components/tickets/css/mgr/tickets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/css/mgr/tickets.css -------------------------------------------------------------------------------- /assets/components/tickets/css/web/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/css/web/default.css -------------------------------------------------------------------------------- /assets/components/tickets/css/web/lib/jquery.jgrowl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/css/web/lib/jquery.jgrowl.min.css -------------------------------------------------------------------------------- /assets/components/tickets/img/web/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/img/web/loading.gif -------------------------------------------------------------------------------- /assets/components/tickets/img/web/refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/img/web/refresh.gif -------------------------------------------------------------------------------- /assets/components/tickets/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/components/tickets/js/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/components/tickets/js/mgr/author/authors.grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/mgr/author/authors.grid.js -------------------------------------------------------------------------------- /assets/components/tickets/js/mgr/author/authors.panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/mgr/author/authors.panel.js -------------------------------------------------------------------------------- /assets/components/tickets/js/mgr/comment/comment.window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/mgr/comment/comment.window.js -------------------------------------------------------------------------------- /assets/components/tickets/js/mgr/comment/comments.grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/mgr/comment/comments.grid.js -------------------------------------------------------------------------------- /assets/components/tickets/js/mgr/comment/comments.panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/mgr/comment/comments.panel.js -------------------------------------------------------------------------------- /assets/components/tickets/js/mgr/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/mgr/home.js -------------------------------------------------------------------------------- /assets/components/tickets/js/mgr/misc/combos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/mgr/misc/combos.js -------------------------------------------------------------------------------- /assets/components/tickets/js/mgr/misc/strftime-min-1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/mgr/misc/strftime-min-1.3.js -------------------------------------------------------------------------------- /assets/components/tickets/js/mgr/misc/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/mgr/misc/utils.js -------------------------------------------------------------------------------- /assets/components/tickets/js/mgr/section/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/mgr/section/create.js -------------------------------------------------------------------------------- /assets/components/tickets/js/mgr/section/section.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/mgr/section/section.common.js -------------------------------------------------------------------------------- /assets/components/tickets/js/mgr/section/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/mgr/section/update.js -------------------------------------------------------------------------------- /assets/components/tickets/js/mgr/subscribe/subscribes.grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/mgr/subscribe/subscribes.grid.js -------------------------------------------------------------------------------- /assets/components/tickets/js/mgr/subscribe/subscribes.panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/mgr/subscribe/subscribes.panel.js -------------------------------------------------------------------------------- /assets/components/tickets/js/mgr/thread/thread.window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/mgr/thread/thread.window.js -------------------------------------------------------------------------------- /assets/components/tickets/js/mgr/thread/threads.grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/mgr/thread/threads.grid.js -------------------------------------------------------------------------------- /assets/components/tickets/js/mgr/thread/threads.panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/mgr/thread/threads.panel.js -------------------------------------------------------------------------------- /assets/components/tickets/js/mgr/ticket/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/mgr/ticket/create.js -------------------------------------------------------------------------------- /assets/components/tickets/js/mgr/ticket/ticket.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/mgr/ticket/ticket.common.js -------------------------------------------------------------------------------- /assets/components/tickets/js/mgr/ticket/tickets.grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/mgr/ticket/tickets.grid.js -------------------------------------------------------------------------------- /assets/components/tickets/js/mgr/ticket/tickets.panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/mgr/ticket/tickets.panel.js -------------------------------------------------------------------------------- /assets/components/tickets/js/mgr/ticket/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/mgr/ticket/update.js -------------------------------------------------------------------------------- /assets/components/tickets/js/mgr/tickets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/mgr/tickets.js -------------------------------------------------------------------------------- /assets/components/tickets/js/web/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/default.js -------------------------------------------------------------------------------- /assets/components/tickets/js/web/editor/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/editor/editor.css -------------------------------------------------------------------------------- /assets/components/tickets/js/web/editor/editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/editor/editor.png -------------------------------------------------------------------------------- /assets/components/tickets/js/web/editor/editor1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/editor/editor1x.png -------------------------------------------------------------------------------- /assets/components/tickets/js/web/editor/editor2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/editor/editor2x.png -------------------------------------------------------------------------------- /assets/components/tickets/js/web/editor/editor4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/editor/editor4x.png -------------------------------------------------------------------------------- /assets/components/tickets/js/web/editor/jquery.markitup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/editor/jquery.markitup.js -------------------------------------------------------------------------------- /assets/components/tickets/js/web/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/files.js -------------------------------------------------------------------------------- /assets/components/tickets/js/web/lib/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/lib/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /assets/components/tickets/js/web/lib/jquery.form.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/lib/jquery.form.min.js -------------------------------------------------------------------------------- /assets/components/tickets/js/web/lib/jquery.jgrowl.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/lib/jquery.jgrowl.map -------------------------------------------------------------------------------- /assets/components/tickets/js/web/lib/jquery.jgrowl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/lib/jquery.jgrowl.min.js -------------------------------------------------------------------------------- /assets/components/tickets/js/web/lib/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/lib/jquery.min.js -------------------------------------------------------------------------------- /assets/components/tickets/js/web/lib/jquery.sisyphus.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/lib/jquery.sisyphus.min.js -------------------------------------------------------------------------------- /assets/components/tickets/js/web/lib/plupload/Moxie.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/lib/plupload/Moxie.swf -------------------------------------------------------------------------------- /assets/components/tickets/js/web/lib/plupload/Moxie.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/lib/plupload/Moxie.xap -------------------------------------------------------------------------------- /assets/components/tickets/js/web/lib/plupload/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/lib/plupload/i18n/de.js -------------------------------------------------------------------------------- /assets/components/tickets/js/web/lib/plupload/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/lib/plupload/i18n/en.js -------------------------------------------------------------------------------- /assets/components/tickets/js/web/lib/plupload/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/lib/plupload/i18n/fr.js -------------------------------------------------------------------------------- /assets/components/tickets/js/web/lib/plupload/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/lib/plupload/i18n/ru.js -------------------------------------------------------------------------------- /assets/components/tickets/js/web/lib/plupload/moxie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/lib/plupload/moxie.js -------------------------------------------------------------------------------- /assets/components/tickets/js/web/lib/plupload/moxie.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/lib/plupload/moxie.min.js -------------------------------------------------------------------------------- /assets/components/tickets/js/web/lib/plupload/plupload.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/lib/plupload/plupload.dev.js -------------------------------------------------------------------------------- /assets/components/tickets/js/web/lib/plupload/plupload.full.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/lib/plupload/plupload.full.min.js -------------------------------------------------------------------------------- /assets/components/tickets/js/web/lib/plupload/plupload.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/lib/plupload/plupload.min.js -------------------------------------------------------------------------------- /assets/components/tickets/js/web/lib/prettify/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/lib/prettify/prettify.css -------------------------------------------------------------------------------- /assets/components/tickets/js/web/lib/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/lib/prettify/prettify.js -------------------------------------------------------------------------------- /assets/components/tickets/js/web/lib/sortable/Sortable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/lib/sortable/Sortable.min.js -------------------------------------------------------------------------------- /assets/components/tickets/js/web/lib/sortable/jquery.binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/assets/components/tickets/js/web/lib/sortable/jquery.binding.js -------------------------------------------------------------------------------- /core/components/tickets/controllers/home.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/controllers/home.class.php -------------------------------------------------------------------------------- /core/components/tickets/controllers/section/create.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/controllers/section/create.class.php -------------------------------------------------------------------------------- /core/components/tickets/controllers/section/data.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/controllers/section/data.class.php -------------------------------------------------------------------------------- /core/components/tickets/controllers/section/update.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/controllers/section/update.class.php -------------------------------------------------------------------------------- /core/components/tickets/controllers/ticket/create.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/controllers/ticket/create.class.php -------------------------------------------------------------------------------- /core/components/tickets/controllers/ticket/data.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/controllers/ticket/data.class.php -------------------------------------------------------------------------------- /core/components/tickets/controllers/ticket/update.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/controllers/ticket/update.class.php -------------------------------------------------------------------------------- /core/components/tickets/cron/mail_queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/cron/mail_queue.php -------------------------------------------------------------------------------- /core/components/tickets/cron/rebuild_rating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/cron/rebuild_rating.php -------------------------------------------------------------------------------- /core/components/tickets/cron/remove_votes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/cron/remove_votes.php -------------------------------------------------------------------------------- /core/components/tickets/docs/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/docs/changelog.txt -------------------------------------------------------------------------------- /core/components/tickets/docs/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/docs/license.txt -------------------------------------------------------------------------------- /core/components/tickets/docs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/docs/readme.txt -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.author_email_subscription.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.author_email_subscription.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.comment_email_bcc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.comment_email_bcc.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.comment_email_owner.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.comment_email_owner.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.comment_email_reply.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.comment_email_reply.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.comment_email_subscription.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.comment_email_subscription.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.comment_email_unpublished.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.comment_email_unpublished.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.comment_form.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.comment_form.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.comment_form_files.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.comment_form_files.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.comment_form_guest.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.comment_form_guest.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.comment_latest.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.comment_latest.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.comment_list_row.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.comment_list_row.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.comment_login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.comment_login.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.comment_one_auth.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.comment_one_auth.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.comment_one_deleted.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.comment_one_deleted.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.comment_one_guest.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.comment_one_guest.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.comment_wrapper.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.comment_wrapper.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.form_create.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.form_create.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.form_file.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.form_file.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.form_files.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.form_files.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.form_image.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.form_image.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.form_preview.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.form_preview.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.form_update.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.form_update.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.ticket_author_subscribe.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.ticket_author_subscribe.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.ticket_email_bcc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.ticket_email_bcc.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.ticket_email_subscription.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.ticket_email_subscription.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.ticket_latest.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.ticket_latest.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.ticket_list_row.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.ticket_list_row.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.ticket_meta.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.ticket_meta.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.ticket_meta_file.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.ticket_meta_file.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.ticket_sections_row.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.ticket_sections_row.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/chunks/chunk.ticket_sections_wrapper.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/chunks/chunk.ticket_sections_wrapper.tpl -------------------------------------------------------------------------------- /core/components/tickets/elements/plugins/plugin.tickets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/plugins/plugin.tickets.php -------------------------------------------------------------------------------- /core/components/tickets/elements/snippets/snippet.comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/snippets/snippet.comments.php -------------------------------------------------------------------------------- /core/components/tickets/elements/snippets/snippet.get_comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/snippets/snippet.get_comments.php -------------------------------------------------------------------------------- /core/components/tickets/elements/snippets/snippet.get_sections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/snippets/snippet.get_sections.php -------------------------------------------------------------------------------- /core/components/tickets/elements/snippets/snippet.get_stars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/snippets/snippet.get_stars.php -------------------------------------------------------------------------------- /core/components/tickets/elements/snippets/snippet.get_tickets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/snippets/snippet.get_tickets.php -------------------------------------------------------------------------------- /core/components/tickets/elements/snippets/snippet.subscribe_author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/snippets/snippet.subscribe_author.php -------------------------------------------------------------------------------- /core/components/tickets/elements/snippets/snippet.ticket_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/snippets/snippet.ticket_form.php -------------------------------------------------------------------------------- /core/components/tickets/elements/snippets/snippet.ticket_latest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/snippets/snippet.ticket_latest.php -------------------------------------------------------------------------------- /core/components/tickets/elements/snippets/snippet.ticket_meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/snippets/snippet.ticket_meta.php -------------------------------------------------------------------------------- /core/components/tickets/elements/templates/home.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/elements/templates/home.tpl -------------------------------------------------------------------------------- /core/components/tickets/lexicon/en/default.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/lexicon/en/default.inc.php -------------------------------------------------------------------------------- /core/components/tickets/lexicon/en/permissions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/lexicon/en/permissions.inc.php -------------------------------------------------------------------------------- /core/components/tickets/lexicon/en/properties.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/lexicon/en/properties.inc.php -------------------------------------------------------------------------------- /core/components/tickets/lexicon/en/setting.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/lexicon/en/setting.inc.php -------------------------------------------------------------------------------- /core/components/tickets/lexicon/ru/default.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/lexicon/ru/default.inc.php -------------------------------------------------------------------------------- /core/components/tickets/lexicon/ru/permissions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/lexicon/ru/permissions.inc.php -------------------------------------------------------------------------------- /core/components/tickets/lexicon/ru/properties.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/lexicon/ru/properties.inc.php -------------------------------------------------------------------------------- /core/components/tickets/lexicon/ru/setting.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/lexicon/ru/setting.inc.php -------------------------------------------------------------------------------- /core/components/tickets/lexicon/uk/default.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/lexicon/uk/default.inc.php -------------------------------------------------------------------------------- /core/components/tickets/lexicon/uk/permissions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/lexicon/uk/permissions.inc.php -------------------------------------------------------------------------------- /core/components/tickets/lexicon/uk/properties.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/lexicon/uk/properties.inc.php -------------------------------------------------------------------------------- /core/components/tickets/lexicon/uk/setting.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/lexicon/uk/setting.inc.php -------------------------------------------------------------------------------- /core/components/tickets/model/schema/tickets.mysql.schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/schema/tickets.mysql.schema.xml -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/metadata.mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/metadata.mysql.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/mysql/ticket.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/mysql/ticket.class.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/mysql/ticket.map.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/mysql/ticket.map.inc.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/mysql/ticketauthor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/mysql/ticketauthor.class.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/mysql/ticketauthor.map.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/mysql/ticketauthor.map.inc.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/mysql/ticketauthoraction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/mysql/ticketauthoraction.class.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/mysql/ticketauthoraction.map.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/mysql/ticketauthoraction.map.inc.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/mysql/ticketcomment.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/mysql/ticketcomment.class.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/mysql/ticketcomment.map.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/mysql/ticketcomment.map.inc.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/mysql/ticketfile.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/mysql/ticketfile.class.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/mysql/ticketfile.map.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/mysql/ticketfile.map.inc.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/mysql/ticketqueue.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/mysql/ticketqueue.class.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/mysql/ticketqueue.map.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/mysql/ticketqueue.map.inc.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/mysql/ticketssection.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/mysql/ticketssection.class.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/mysql/ticketssection.map.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/mysql/ticketssection.map.inc.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/mysql/ticketstar.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/mysql/ticketstar.class.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/mysql/ticketstar.map.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/mysql/ticketstar.map.inc.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/mysql/ticketthread.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/mysql/ticketthread.class.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/mysql/ticketthread.map.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/mysql/ticketthread.map.inc.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/mysql/tickettotal.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/mysql/tickettotal.class.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/mysql/tickettotal.map.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/mysql/tickettotal.map.inc.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/mysql/ticketview.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/mysql/ticketview.class.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/mysql/ticketview.map.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/mysql/ticketview.map.inc.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/mysql/ticketvote.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/mysql/ticketvote.class.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/mysql/ticketvote.map.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/mysql/ticketvote.map.inc.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/ticket.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/ticket.class.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/ticketauthor.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/ticketauthor.class.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/ticketauthoraction.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/ticketauthoraction.class.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/ticketcomment.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/ticketcomment.class.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/ticketfile.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/ticketfile.class.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/ticketqueue.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/ticketqueue.class.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/tickets.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/tickets.class.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/ticketssection.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/ticketssection.class.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/ticketstar.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/ticketstar.class.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/ticketthread.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/ticketthread.class.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/tickettotal.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/tickettotal.class.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/ticketview.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/ticketview.class.php -------------------------------------------------------------------------------- /core/components/tickets/model/tickets/ticketvote.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/model/tickets/ticketvote.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/author/getlist.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/author/getlist.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/author/rebuild.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/author/rebuild.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/comment/create.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/comment/create.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/comment/delete.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/comment/delete.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/comment/get.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/comment/get.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/comment/getlist.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/comment/getlist.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/comment/multiple.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/comment/multiple.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/comment/publish.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/comment/publish.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/comment/remove.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/comment/remove.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/comment/undelete.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/comment/undelete.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/comment/unpublish.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/comment/unpublish.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/comment/update.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/comment/update.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/section/create.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/section/create.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/section/getlist.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/section/getlist.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/section/update.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/section/update.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/subscribe/getlist.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/subscribe/getlist.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/subscribe/multiple.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/subscribe/multiple.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/subscribe/unsubscribe.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/subscribe/unsubscribe.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/thread/close.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/thread/close.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/thread/delete.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/thread/delete.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/thread/get.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/thread/get.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/thread/getlist.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/thread/getlist.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/thread/multiple.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/thread/multiple.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/thread/open.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/thread/open.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/thread/remove.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/thread/remove.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/thread/undelete.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/thread/undelete.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/ticket/create.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/ticket/create.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/ticket/delete.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/ticket/delete.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/ticket/getlist.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/ticket/getlist.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/ticket/multiple.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/ticket/multiple.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/ticket/publish.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/ticket/publish.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/ticket/undelete.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/ticket/undelete.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/ticket/unpublish.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/ticket/unpublish.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/mgr/ticket/update.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/mgr/ticket/update.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/web/comment/create.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/web/comment/create.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/web/comment/get.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/web/comment/get.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/web/comment/star.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/web/comment/star.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/web/comment/update.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/web/comment/update.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/web/comment/vote.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/web/comment/vote.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/web/file/delete.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/web/file/delete.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/web/file/sort.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/web/file/sort.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/web/file/upload.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/web/file/upload.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/web/file/upload.comment.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/web/file/upload.comment.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/web/section/getlist.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/web/section/getlist.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/web/thread/get.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/web/thread/get.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/web/ticket/delete.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/web/ticket/delete.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/web/ticket/getlist.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/web/ticket/getlist.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/web/ticket/star.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/web/ticket/star.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/web/ticket/undelete.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/web/ticket/undelete.class.php -------------------------------------------------------------------------------- /core/components/tickets/processors/web/ticket/vote.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modx-pro/Tickets/HEAD/core/components/tickets/processors/web/ticket/vote.class.php --------------------------------------------------------------------------------