Skip to content
Snippets Groups Projects
  1. Apr 22, 2014
  2. Apr 02, 2014
  3. Apr 01, 2014
  4. Mar 31, 2014
  5. Mar 25, 2014
  6. Mar 05, 2014
    • Jared Hancock's avatar
      forms: Better failsafe for __toString · 070cb4bf
      Jared Hancock authored
      This mostly helps when fields change types. If the type of the field
      currently cannot convert previous data to a string (like if a short-answer
      field was changed to choices), the textual representation of the PHP value
      of the field data is given.
      070cb4bf
  7. Feb 25, 2014
  8. Feb 07, 2014
  9. Jan 27, 2014
    • Jared Hancock's avatar
      Drop `subject` and `body` from filters · 694221d2
      Jared Hancock authored
      They are only available for tickets arriving via the email channel. All
      other channel (including email) use the new ticket form to record the
      subject and body, which are mapped to the 'Issue Summary' and 'Issue
      Details' fields respectively
      
      Structure the drop-down list for the `what` column to be future-minded
      concerning custom user data matching.
      694221d2
  10. Jan 23, 2014
    • Jared Hancock's avatar
      forms: Fix crash if selection-field not set · cc584e58
      Jared Hancock authored
      If a custom list item were added to an email template, and there is no data
      for the field (ie. the field is not required) when the template is rendered,
      the system would crash.
      
      toString() is required to return a string, no matter what. This patch
      cascades the (string) coercion to the current value of the list field if it
      is not an instance of a DynamicListItem
      cc584e58
  11. Jan 20, 2014
    • Jared Hancock's avatar
      Double check value entered in typeahead fields · 27d132f4
      Jared Hancock authored
      If the text does not match the value on record in the custom list, then the
      value entered in the field cannot be accepted.
      
      NOTE: This may have unintended i18n consequences, where there are varying
      ways to write a letter in Unicode which may be rendered the same but will
      not be correct with a string ==.
      27d132f4
  12. Jan 16, 2014
    • Jared Hancock's avatar
      forms: Fix ambiguous id / value for typeahead · ce2be287
      Jared Hancock authored
      If a dynamic list is displayed as a typeahead box, the value, when saved,
      will be confused with the corresponding ID field for the list. MySQL
      supports numeric comparison between the INT id column and the textual value
      column. Therefore, if a typeahead field has the value of '01 - GooGoo', then
      record will match the ListItem<id=1>, regardless of which list the item is
      defined for.
      
      This patch resolves the issue by submitting the ID number of the list
      selection in the HTTP form.
      ce2be287
  13. Jan 15, 2014
  14. Jan 14, 2014
  15. Jan 10, 2014
  16. Jan 09, 2014
  17. Jan 08, 2014
  18. Jan 06, 2014
  19. Jan 03, 2014
  20. Dec 31, 2013
    • Jared Hancock's avatar
      perf: Use a materialized view to speed queue views · 1bc05945
      Jared Hancock authored
      This patch introduces an automatic materialized view to speed database
      performance when querying and displaying the ticket views. This can
      eventually be extended to the search and advanced search features to speed
      them as well.
      
      The data from the dynamic form entries related to ticket details is copied
      to a %ticket__cdata table. The %ticket__cdata table is then joined directly
      to the other tables in the query for the ticket view. MySQL is magically
      and dramatically faster using this method.
      
      The downside is that the disk usage for the custom data is doubled, and the
      time needed to update the dynamic data is at least doubled as the form
      entries and the materialized view must both be updated.
      
      This method should also extend well to other database platforms in the
      future. It will be likely that most other database query optimizers will
      have difficulty joining, scanning, and sorting the table models we have for
      custom data fields.
      1bc05945
  21. Dec 11, 2013
  22. Dec 10, 2013
  23. Dec 09, 2013
    • Jared Hancock's avatar
      fetch: Fix clobbered user on fetch, round two · 8ee35dc9
      Jared Hancock authored
      Again, fix issue where multiple mails fetched in the same fetch run will set
      the user of each of the mails to the user of the first email fetched.
      
      The previous patch neglected to pass the new $cache argument through the
      inherited UserForm::getFields() function.
      8ee35dc9
  24. Dec 05, 2013
  25. Nov 26, 2013
Loading