BigW Consortium Gitlab

  1. 31 Aug, 2017 1 commit
  2. 30 Aug, 2017 1 commit
  3. 29 Aug, 2017 1 commit
  4. 28 Aug, 2017 1 commit
  5. 24 Aug, 2017 1 commit
  6. 22 Aug, 2017 1 commit
    • Update form to properly set the path · 539dee96
      Zeger-Jan van de Weg authored
      Also includes a change in allowing uploaded files, as there was a
      mismatch in object_id between classes, disallowing params[:file], which
      is a UploadedFile, newly loaded. The params checked against the older
      version.
      
      Fixes gitlab-org/gitlab-ce#36519
  7. 17 Aug, 2017 2 commits
  8. 16 Aug, 2017 2 commits
  9. 15 Aug, 2017 2 commits
  10. 14 Aug, 2017 1 commit
  11. 09 Aug, 2017 1 commit
  12. 08 Aug, 2017 1 commit
  13. 07 Aug, 2017 2 commits
  14. 04 Aug, 2017 2 commits
  15. 28 Jul, 2017 3 commits
  16. 27 Jul, 2017 6 commits
  17. 26 Jul, 2017 5 commits
  18. 25 Jul, 2017 3 commits
  19. 20 Jul, 2017 1 commit
  20. 19 Jul, 2017 1 commit
  21. 18 Jul, 2017 2 commits
    • Add structured logging for Rails processes · e2b1c16a
      Stan Hu authored
      This introduces JSON logging for Rails views saved to a file called
      `development_json.log`, `production_json.log`, etc.
      
      For example, instead of this unparsable log:
      
      ```
      Started GET "/" for 127.0.0.1 at 2012-03-10 14:28:14 +0100
      Processing by HomeController#index as HTML
        Rendered text template within layouts/application (0.0ms)
        Rendered layouts/_assets.html.erb (2.0ms)
        Rendered layouts/_top.html.erb (2.6ms)
        Rendered layouts/_about.html.erb (0.3ms)
        Rendered layouts/_google_analytics.html.erb (0.4ms)
      Completed 200 OK in 79ms (Views: 78.8ms | ActiveRecord: 0.0ms)
      ```
      
      We get a single line with this:
      
      ```
      {"method":"GET","path":"/,"format":"html","controller":"HomeController","action":"index","status":200,"duration":79,"view":78.8,"db":0.0,"location":"http://localhost/","time":"2017-07-18 09:35:17 -0700"}
      ```
      
      Part of #20060