Skip to content
Snippets Groups Projects
  1. Oct 30, 2018
  2. Oct 29, 2018
  3. Oct 25, 2018
  4. Oct 24, 2018
  5. Oct 23, 2018
  6. Oct 22, 2018
    • Peter Rotich's avatar
      oops: Oopsies · 52952548
      Peter Rotich authored
      52952548
    • Peter Rotich's avatar
      Merge pull request #4558 from aydreeihn/issue/remove-enums · 7d3a2ba2
      Peter Rotich authored
      Issue/remove enums
    • Peter Rotich's avatar
      Merge pull request #4538 from protich/feature/custom-queues++ · 6d895b6d
      Peter Rotich authored
      Primary Queues as "Buckets"
    • aydreeihn's avatar
      Increase Batch Size/Cleanup Code · 0bc59a77
      aydreeihn authored
      0bc59a77
    • Peter Rotich's avatar
      Queue: Cached Queue Counts · f8a4788a
      Peter Rotich authored
      Clear cached queue counts on queue update and via auto-cron
      f8a4788a
    • Peter Rotich's avatar
      Search: Remove limit on relevance · eed26b57
      Peter Rotich authored
      This commit reverses relevance limit added by commit a9c283ec. This is
      necessary because searching for Organization or User name will have low
      relevance due to limited size of indexed "document".
      eed26b57
    • Peter Rotich's avatar
      Queue: Private Queue · 60285b2e
      Peter Rotich authored
      Drop checking FLAG_PUBLIC when determining if a queue is private
      60285b2e
    • Peter Rotich's avatar
      ORM: Extra Joins · fb582e4e
      Peter Rotich authored
      This commits adds ability to add extra joins to a queryset. If the join has
      constraints then it's LEFT joined otherwise straight JOIN is assumed.
      
      This is necessary to fix queue counts for queues with keyword search.
      fb582e4e
    • Jared Hancock's avatar
      pjax: Set a much higher timeout · 8481d77f
      Jared Hancock authored
      Now that pjax has been in osTicket for quite some time, it should be
      assumed that requests made with pjax will work and a response can be
      waited for. With a very low timeout of two seconds, operations that take
      more than two seconds are cancelled via pjax and then re-requested via
      normal page load. This has the caveat of running large database queries
      twice, since some long-running ones cannot be cancelled by the database
      until the first results become available. Therefore, queries which take
      a while to find the first record (longer than two seconds) will be run
      twice. Ultimately, the user will have to wait at least twice as long as
      would ultimately be necessary if the system had just waited for a
      response from the pjax request.
      
      This sets the timeout at a more reasonable value of 30. Perhaps
      something closer to a minute would be a suitable value? Most users are
      probably going to click something before 30 seconds expires if they
      expect a response faster. And that can't be easily fixed.
      8481d77f
    • Jared Hancock's avatar
      search: Add pagination support to advanced searches · 170709bb
      Jared Hancock authored
      This is pretty weak as implemented, but one of the problems with
      searching speed is that, for each page render, the count of the hits is
      required. But now the hits query does not actually collect the count for
      the search queue. What's worse, the code collects counts for all saved
      queues (not including the advanced search), so the counts are not
      included. Then, the code re-collects the counts for all the queues since
      the advanced search queue count isn't available. Then, since there still
      is no count for the advanced search, it will show "0" results after
      waiting to count all the other queues.
      
      This cowardly fixes the issue by assuming there are 500 hits, which
      allows a few pages. In reality, the pagination system should be rewired
      so that it can dynamically add pages until it comes up with a short
      read of results, in which case it can assume that it has reached the
      end.
      170709bb
Loading