An error occurred fetching the project authors.
  1. 14 Apr, 2017 1 commit
  2. 03 Apr, 2017 1 commit
  3. 22 Mar, 2017 1 commit
  4. 18 Mar, 2017 1 commit
    • Stan Hu's avatar
      Fix Error 500 when application settings are saved · 681af5bc
      Stan Hu authored
      Due to a Rails bug, fetching the application settings from Redis
      may prevent the attribute methods from being loaded for the `ApplicationSetting`
      model. More details here: https://github.com/rails/rails/issues/27348
      
      There was also a secondary problem introduced by overriding these
      association methods which caused all default visibility levels to be
      set to `nil`. Before, the previous implementation allowed the string
      "20" to be saved as an integer, while now a table lookup happens
      before that. We fix this by enforcing the integer value in the
      controller and default to PRIVATE.
      
      Closes #29674
      681af5bc
  5. 06 Mar, 2017 2 commits
  6. 02 Mar, 2017 2 commits
  7. 24 Feb, 2017 1 commit
  8. 23 Feb, 2017 1 commit
  9. 22 Feb, 2017 1 commit
  10. 21 Feb, 2017 1 commit
  11. 20 Feb, 2017 1 commit
  12. 16 Feb, 2017 4 commits
  13. 15 Feb, 2017 6 commits
  14. 07 Feb, 2017 1 commit
  15. 06 Feb, 2017 1 commit
  16. 27 Jan, 2017 3 commits
  17. 23 Jan, 2017 1 commit
  18. 21 Jan, 2017 2 commits
  19. 20 Jan, 2017 1 commit
  20. 15 Jan, 2017 1 commit
  21. 12 Jan, 2017 1 commit
    • Horacio Sanson's avatar
      Add support for PlantUML diagrams in Asciidoc. · f986b4c4
      Horacio Sanson authored
      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
  22. 13 Nov, 2016 1 commit
    • Stan Hu's avatar
      Only turn on Sidekiq throttling if application settings exists · 5a65d9d5
      Stan Hu authored
      If the database has not been migrated properly, the initializer for Sidekiq
      will fail to start and cause the whole Rails server to crash. This change
      checks the existence for the column and allows Rails to start even
      if the setting has not been added as a database column.
      
      Closes #24452
      5a65d9d5
  23. 11 Nov, 2016 1 commit
  24. 10 Nov, 2016 2 commits
  25. 07 Nov, 2016 1 commit
  26. 04 Nov, 2016 1 commit