1. 20 Apr, 2017 3 commits
  2. 19 Apr, 2017 2 commits
  3. 18 Apr, 2017 10 commits
  4. 17 Apr, 2017 4 commits
  5. 16 Apr, 2017 2 commits
  6. 15 Apr, 2017 2 commits
  7. 14 Apr, 2017 2 commits
  8. 08 Apr, 2017 2 commits
  9. 03 Apr, 2017 1 commit
  10. 02 Apr, 2017 2 commits
    • Angel Santiago's avatar
      proxy: Cleanly shutdown health checks on restart (#1524) · 59bf71c2
      Angel Santiago authored
      * Add a shutdown function and context to staticUpstream so that running goroutines can be cancelled. Add a GetShutdownFunc to Upstream interface to expose the shutdown function to the caddy Controller for performing it on restarts.
      
      * Make fakeUpstream implement new Upstream methods.
      
      Implement new Upstream method for fakeWSUpstream as well.
      
      * Rename GetShutdownFunc to Stop(). Add a waitgroup to the staticUpstream for controlling individual object's goroutines. Add the Stop function to OnRestart and OnShutdown. Add tests for checking to see if healthchecks continue hitting a backend server after stop has been called.
      
      * Go back to using a stop channel since the context adds no additional benefit.
      Only register stop function for onShutdown since it's called as part of restart.
      
      * Remove assignment to atomic value
      
      * Incrementing WaitGroup outside of goroutine to avoid race condition. Loading atomic values in test.
      
      * Linting: change counter to just use the default zero value instead of setting it
      
      * Clarify Stop method comments, add comments to stop channel and waitgroup and remove out of date comment about handling stopping the proxy. Stop the ticker when the stop signal is sent
      59bf71c2
    • Toby Allen's avatar
      Add new browse sort - namedirfirst (#1551) · 464ade1d
      Toby Allen authored
      * Revert "browse: sort listing by dir first (#1527)"
      
       commit 4e1229e7.
      
      * Add new browse sort order  namedirfirst. Make namedirfirst default sort
      464ade1d
  11. 01 Apr, 2017 1 commit
  12. 31 Mar, 2017 1 commit
  13. 29 Mar, 2017 1 commit
    • W-Mark Kubacki's avatar
      browse: when sorting by size, sort directory section by name · 398d9a6b
      W-Mark Kubacki authored
      Previously directories have been merely pulled to the front, and then
      sorted arbitrarily. That is, their order among themselves depended on
      the filesystem implementations. Something opaque to the visitor.
      
      This fixes said inconsistency, and implements the by-size-then-by-name
      order I initially intended for this.
      398d9a6b
  14. 28 Mar, 2017 3 commits
  15. 25 Mar, 2017 1 commit
  16. 23 Mar, 2017 1 commit
  17. 21 Mar, 2017 1 commit
  18. 15 Mar, 2017 1 commit
    • ericdreeves's avatar
      browse: Use helper functions in staticfiles to redirect (#1497) · 36d20274
      ericdreeves authored
      * Use helper functions in staticfiles to redirect.
      
      Previously the browse package invoked staticfiles.Redirect when
      redirecting clients who requested a directory but with a Request-URI
      that did not contain a trailing '/'. staticfiles.Redirect only used a
      relative URI. This change defers the decision of how to format the
      Location header value to the helper methods in the staticfiles package.
      
      * Update const URLPathCtxKey in browse package.
      36d20274