Skip to content
Snippets Groups Projects
  1. Sep 29, 2014
    • Jared Hancock's avatar
      forms: Add default selection to SelectionField · 81eccf03
      Jared Hancock authored
      This allows administrators to select a default value for selection fields
      deriving from Custom Lists. This has been implemented on the ChoiceField,
      but was forgotten on the SelectionField
      81eccf03
    • Jared Hancock's avatar
      de843fb0
    • Peter Rotich's avatar
      bug: Decode mailbox when parsing an email address · eb471134
      Peter Rotich authored
      This addresses cases where incoming emails doesn't include charset and
      mailbox may include non-ascii characters.
      eb471134
    • Jared Hancock's avatar
      forms: Revisit several small issues for "info" field · e9dfba9c
      Jared Hancock authored
        * Use the title of "Information" with internal tag of "info"
        * Add "Visibility" column to UI and retire "Required" and "Internal"
          columns
        * Add visibility selection to new fields and show visibility to the user
          information fields when displayed on the ticket details form
        * Make the visibility settings translatable
        * Use constants internally for visibility configuration detection
        * Use a larger input when managing the information HTML content
        * Fix validation errors for new fields
          * Enforce new field name uniqueness
          * Enforce new field name character validation
      e9dfba9c
  2. Sep 28, 2014
  3. Sep 27, 2014
    • Jared Hancock's avatar
      orm: Fix MySQL occasional "Commands OOS" error · aeffcb73
      Jared Hancock authored
      Under certain intermittent circumstances (usually a significant number of
      ORM queries), the ORM will trigger a MySQL error:
      
      Commands out of sync; you can't run this command now
      
      Usually this MySQL error is related to buffered versus unbuffered queries.
      However, the ORM already uses buffered queries (MySQL calls it
      "store_result"). In this case, it appears there is some sort of race between
      fetching the result metadata before configuring the statement for buffering.
      (By "race" I mean that the error is not reliably triggered).
      
      This patch seems to fix the issue by configuring buffering before fetching
      result metadata — necessary to configure the fetching (output) phase of the
      statement.
      aeffcb73
  4. Sep 26, 2014
  5. Sep 25, 2014
  6. Sep 24, 2014
  7. Sep 19, 2014
  8. Sep 17, 2014
    • Peter Rotich's avatar
      bug: Fix status display on client interface · a0dbfb8f
      Peter Rotich authored
      a0dbfb8f
    • Jared Hancock's avatar
      pages: Fix incorrect lookup of inline images · eb4d1b36
      Jared Hancock authored
      In some cases, a POST might be sent to the server and there be no draft. In
      such a case, neither the draft nor the body of the page can be inspected for
      images. Even worse, in some cases the previous images might be unlinked from
      the article without being relinked. Therefore, the images will no longer be
      linked to the page and will likely be purged from the system.
      eb4d1b36
  9. Sep 15, 2014
  10. Sep 12, 2014
  11. Sep 11, 2014
  12. Sep 10, 2014
    • Jared Hancock's avatar
      v1.9.4-rc2
      9f54e677
    • Jared Hancock's avatar
      email: Improve user identification from headers · 67782d9a
      Jared Hancock authored
      Previously, the code would scan the email headers until it found a positive
      match from any of the email headers scanned. Additionally, it would attempt
      to find the user from the tagged email references header. However, this
      algorithm assumed that the references header was constant and predictable in
      its ordering. Recent tests with Gmail prove otherwise in some tests.
      
      This patch changes the system so that only the tagged reference header is
      included in the References header, and it will scan all items in a header
      (namely the References header) until both the thread and a user are
      identified. If a user can be identified, the thread and user are returned.
      Otherwise, the first thread hit is returned.
      67782d9a
    • Peter Rotich's avatar
      Ticket status change · d367a12e
      Peter Rotich authored
      Redirect to tickets listing page when a ticket is resolved or closed via
      status change.
      d367a12e
Loading