Skip to content
Snippets Groups Projects
  1. Mar 25, 2014
  2. 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
  3. Feb 25, 2014
  4. Feb 07, 2014
  5. 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
  6. 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
  7. 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
  8. 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
  9. Jan 15, 2014
  10. Jan 14, 2014
  11. Jan 10, 2014
  12. Jan 09, 2014
  13. Jan 08, 2014
  14. Jan 06, 2014
  15. Jan 03, 2014
  16. 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
  17. Dec 11, 2013
  18. Dec 10, 2013
  19. 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
  20. Dec 05, 2013
  21. Nov 26, 2013
  22. Nov 25, 2013
  23. Nov 21, 2013
  24. Nov 16, 2013
  25. Nov 13, 2013
    • Jared Hancock's avatar
      Ensure unique form entries are made with each ticket · b25fa2ce
      Jared Hancock authored
      Fixes a case where multiple tickets are created in one request (such as a
      cron job triggering multiple email fetches). The TicketForm::getInstance()
      called in Ticket::create() used a singleton pattern to retrieve a cached
      instance of the TicketForm. In the case of ticket creation, each ticket
      needs a new TicketForm entry instance.
      b25fa2ce
  26. Nov 08, 2013
  27. Nov 07, 2013
  28. Nov 06, 2013
  29. Nov 05, 2013
  30. Oct 29, 2013
    • Jared Hancock's avatar
      Allow both internal and required fields · 81bcb80a
      Jared Hancock authored
      Previously, clients would not be able to create tickets if an internal,
      required field existed on any of the forms presented to the user. Instead,
      they would be stuck at permanent validation failure because there was no
      data for a required field not shown.
      
      This patch adds a feature to the form and dynamicFormEntry objects'
      isValid() method to receive a callable to filter which fields' errors should
      be added to the form's errors list. This allows for more complex validation
      where in some cases, validation errors should not be considered on some
      fields.
      
      Fixes #45
      81bcb80a
Loading