- Oct 30, 2017
-
-
Jared Hancock authored
Adds the ability to "Clone" a queue, which would be nice to create a queue similar to the current one with a couple distinct settings, but also not a child of the queue. Also adds the ability to add a "Sub Queue" to the current queue, which will allow easy creation of queues which are pre-configured for inheritance.
-
Jared Hancock authored
This fixes an issue where spacing is reserved on the navigation bar on the right side for an overflow menu, even if the overflow menu is not visible (not necessary).
-
Jared Hancock authored
If an advanced search was committed with a validation error, the returned form would shake and reveal the validation error; however, it would also include the ajax redirect information next to the buttons at the bottom.
-
Jared Hancock authored
This adds the ability to add a list of avatars to a column in a ticket queue.
-
Jared Hancock authored
-
Jared Hancock authored
Also, fix queue paths created at installation time.
-
Jared Hancock authored
Add support for different intervals for 'n [days] ago', where days can be changed from minutes to months. Also, add support for 'more than n days from now' and 'more than n days ago'. Useful for finding stale items. Also, fix the display of the 'n days ago' when describing the criteria.
-
Jared Hancock authored
-
Richard Bukovansky authored
-
Jared Hancock authored
-
Jared Hancock authored
Turns out the pagination system is somewhat chicken and egg with respect to determining the number of pages. The query needs to be sent to the database to fetch the page content so that the database can also count the total number of records available.
-
Jared Hancock authored
- %queue_sorts needs to exist before queues are inserted - old queue id numbers need to be moved up to make room for initial queues
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
- Fix crash on new ticket - Fix crash on user and org dialog popup from ticket - Fix missing queue mass-action buttons
-
Jared Hancock authored
This originates from an ORM issue, where the select_related in a queryset was not honored by the compiler. Therefore, the query would not include all the fields requested and would require extra trips to the database for some queries. This is especially important for unbuffered queries, such as those used in the export process, which be fetched in parallel with other queries.
-
Jared Hancock authored
Also fix SQL issue with the tables installed in the install script
-
Jared Hancock authored
This patch implements Nathan's mockups for adding sorting options to the custom queues. The sort drop-down feature was added for v1.10. This patch adds the complex sort dropdown back into the custom queue feature, but also makes the sorting options customizable.
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
This adds support for the SQL_CALC_FOUND_ROWS hint and the following FOUND_ROWS() call to fetch the total ticket count for a ticket queue without asking the database to run the same query twice. References: http://dev.mysql.com/doc/refman/5.7/en/information-functions.html#function_found-rows
-
Jared Hancock authored
-
Jared Hancock authored
And provide a foundation for sorting on other complex field types
-
Jared Hancock authored
Also, avoid setting FLAG_INHERIT_COLUMNS for queues which do not inherit from another queue.
-
Jared Hancock authored
-
Nathan Febuary authored
Adds the UI for sorting and creating custom sorting options. Custom sorting options can be used for ANY custom queue. Custom sorting has an ascending priority. Meaning the top sorted field option is sorted first.
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
-
Jared Hancock authored
* Drop per item edit and delete links * Add drop-down links for edit and delete after queue title * Fix crash on queues with keyword searches * Fix menu collapse with several top-level queues. "Search" and "New Ticket" are always shown on the nav bar * Update queue `path` on update * Include cascaded parent's criteria when displaying inherited criteria * Show inherited criteria on saved search edit dialog
-
Jared Hancock authored
This fixes a problem where viewing a queue with no defined columns would result in attempting to add columns to the queue, which would result in an incorrect SQL statement and an email sent to the administrator. This was ultimately moot because columns are not added directly to the queue anymore.
-
Nathan Febuary authored
Quick configure action menu is placed next to the title of all custom queues. HTML/CSS only needs php.
-
Jared Hancock authored
Queues can elect to use the columns from a parent. This is enforced by default for saved searches and queues not defining any columns. * Fix wrapping issue combining truncated fields with annotations * Only support criteria inheritance for queues with a parent
-
Jared Hancock authored
The lclip truncate method allows for trimming the beginnging of the text. This trimming will only work properly for left-to-right languages because it changes the CSS `direction` property. Writing a rtl language ltr will probably not be legible.
-
Jared Hancock authored
-
Nathan Febuary authored
Queue modifications remove fronted quick queue manager for admins, modifies the width of the queue dropdown and adds better nested dropdown for queues admin i.e. multi level dropdown instead of originally the file tree style. Optimizations for IE9 and up (screen shots to show IE9 sauce labs test). Additional minor design changes in the dropdown menus.
-
Jared Hancock authored
-