1. 27 7月, 2018 2 次提交
  2. 11 7月, 2018 1 次提交
  3. 06 6月, 2018 1 次提交
    • M
      doc · 15469fe0
      Mark Chao 提交于
      15469fe0
  4. 29 5月, 2018 1 次提交
  5. 28 5月, 2018 1 次提交
  6. 04 5月, 2018 1 次提交
    • B
      Store application wide terms · 3d6d0a09
      Bob Van Landuyt 提交于
      This allows admins to define terms in the application settings.
      
      Every time the terms are adjusted, a new version is stored and becomes
      the 'active' version. This allows tracking which specific version was
      accepted by a user.
      3d6d0a09
  7. 05 1月, 2018 1 次提交
  8. 08 12月, 2017 1 次提交
    • B
      Move the circuitbreaker check out in a separate process · f1ae1e39
      Bob Van Landuyt 提交于
      Moving the check out of the general requests, makes sure we don't have
      any slowdown in the regular requests.
      
      To keep the process performing this checks small, the check is still
      performed inside a unicorn. But that is called from a process running
      on the same server.
      
      Because the checks are now done outside normal request, we can have a
      simpler failure strategy:
      
      The check is now performed in the background every
      `circuitbreaker_check_interval`. Failures are logged in redis. The
      failures are reset when the check succeeds. Per check we will try
      `circuitbreaker_access_retries` times within
      `circuitbreaker_storage_timeout` seconds.
      
      When the number of failures exceeds
      `circuitbreaker_failure_count_threshold`, we will block access to the
      storage.
      
      After `failure_reset_time` of no checks, we will clear the stored
      failures. This could happen when the process that performs the checks
      is not running.
      f1ae1e39
  9. 23 11月, 2017 1 次提交
  10. 21 11月, 2017 1 次提交
  11. 23 10月, 2017 1 次提交
  12. 17 10月, 2017 1 次提交
  13. 13 10月, 2017 1 次提交
  14. 31 8月, 2017 2 次提交
    • N
      Rework the permissions model for SSH key restrictions · 68470602
      Nick Thomas 提交于
      `allowed_key_types` is removed and the `minimum_<type>_bits` fields are
      renamed to `<tech>_key_restriction`. A special sentinel value (`-1`) signifies
      that the key type is disabled.
      
      This also feeds through to the UI - checkboxes per key type are out, inline
      selection of "forbidden" and "allowed" (i.e., no restrictions) are in.
      
      As with the previous model, unknown key types are disallowed, even if the
      underlying ssh daemon happens to support them. The defaults have also been
      changed from the lowest known bit size to "no restriction". So if someone
      does happen to have a 768-bit RSA key, it will continue to work on upgrade, at
      least until the administrator restricts them.
      68470602
    • N
      Add settings for minimum key strength and allowed key type · b0f982fb
      Nick Thomas 提交于
      This is an amalgamation of:
      
      * Cory Hinshaw: Initial implementation !5552
      * Rémy Coutable: Updates !9350
      * Nick Thomas: Resolve conflicts and add ED25519 support !13712
      b0f982fb
  15. 27 7月, 2017 1 次提交
  16. 13 7月, 2017 1 次提交
    • R
      Fixes needed when GitLab sign-in is not enabled · 672a68d3
      Robin Bobbitt 提交于
      When sign-in is disabled:
       - skip password expiration checks
       - prevent password reset requests
       - don’t show Password tab in User Settings
       - don’t allow login with username/password for Git over HTTP requests
       - render 404 on requests to Profiles::PasswordsController
      672a68d3
  17. 11 5月, 2017 1 次提交
  18. 03 4月, 2017 1 次提交
  19. 07 3月, 2017 1 次提交
  20. 02 3月, 2017 2 次提交
  21. 06 2月, 2017 1 次提交
  22. 12 1月, 2017 1 次提交
    • H
      Add support for PlantUML diagrams in Asciidoc. · f986b4c4
      Horacio Sanson 提交于
      This MR enables rendering of PlantUML diagrams in Asciidoc documents. To add a
      PlantUML diagram all we need is to include a plantuml block like:
      
      ```
      [plantuml, id="myDiagram", width="100px", height="100px"]
      --
      bob -> alice : ping
      alice -> bob : pong
      --
      ```
      
      The plantuml block is substituted by an HTML img element with *src* pointing to
      an external PlantUML server.
      
      This MR also add a PlantUML integration section to the Administrator -> Settings
      page to configure the PlantUML rendering service and to enable/disable it.
      
      Closes: #17603
      f986b4c4
  23. 29 12月, 2016 1 次提交
  24. 04 11月, 2016 1 次提交
  25. 30 9月, 2016 1 次提交
  26. 19 8月, 2016 1 次提交
  27. 09 8月, 2016 1 次提交
  28. 20 7月, 2016 1 次提交
  29. 19 7月, 2016 1 次提交
  30. 06 7月, 2016 2 次提交
  31. 30 6月, 2016 1 次提交
  32. 05 6月, 2016 1 次提交
  33. 03 6月, 2016 2 次提交
  34. 31 5月, 2016 1 次提交
  35. 01 4月, 2016 1 次提交