An error occurred fetching the project authors.
  1. 15 Nov, 2019 1 commit
  2. 08 Nov, 2019 1 commit
    • Russell Dickenson's avatar
      Improve layout of page · ebb437d4
      Russell Dickenson authored
      * Grouped like items together to make it easier to find an item
        in a specific category.
      * Reformatted links to the respective topics.
      * Restructured the 'SSL certificate errors' section.
      * Added a brief introduction to each bulleted list.
      ebb437d4
  3. 24 Oct, 2019 1 commit
  4. 08 Oct, 2019 1 commit
  5. 25 Jul, 2019 1 commit
  6. 28 Jun, 2019 1 commit
  7. 18 Jun, 2019 1 commit
  8. 05 May, 2019 1 commit
  9. 10 Apr, 2019 2 commits
  10. 25 Feb, 2019 1 commit
  11. 22 Feb, 2019 1 commit
    • Evan Read's avatar
      Ensure all lists are surrounded by new lines · eb866309
      Evan Read authored
      Markdown renderers find it easier to determine
      where lists start and end when lists are surrounded
      by new lines.
      
      For consistency, also ensure entries in the list
      are aligned when they span multipls lines.
      eb866309
  12. 08 Feb, 2019 2 commits
  13. 08 Jan, 2019 1 commit
  14. 20 Aug, 2018 1 commit
  15. 16 Aug, 2018 1 commit
  16. 01 Nov, 2017 2 commits
  17. 08 Sep, 2017 1 commit
  18. 01 Sep, 2017 2 commits
  19. 26 Jul, 2017 2 commits
  20. 07 Mar, 2017 1 commit
  21. 03 Feb, 2017 2 commits
  22. 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
  23. 21 Dec, 2016 1 commit
  24. 22 Nov, 2016 2 commits
  25. 15 Nov, 2016 1 commit
  26. 12 Nov, 2016 1 commit
  27. 09 Nov, 2016 1 commit
  28. 08 Nov, 2016 1 commit
  29. 26 Oct, 2016 2 commits
  30. 25 Aug, 2016 1 commit
  31. 19 Aug, 2016 2 commits
    • Stan Hu's avatar
      Merge branch 'gokmengoksel/gitlab-ce-koding' into 'master' · 4030d5ab
      Stan Hu authored
      Koding Integration
      
      ## What does this MR do?
      
      Will provide Koding integration with GitLab services. Forked from !4914.
      
      ## Are there points in the code the reviewer needs to double check?
      I've introduced new layouts which might not be necessary, first time contributor. 
      
      ## Why was this MR needed?
      We're planning to ship Koding with GitLab.
      
      ## What are the relevant issue numbers?
      #12759 #14698 
      
      ## Screenshots (if relevant)
      
      ### Screencasts
      
      http://recordit.co/BDMbhwgxPD
      http://recordit.co/By0qiz1ClC
      
      ### Enable Koding in Application Settings
      
      ![image](/uploads/73a69421105c03aa2b0b47e2617d3fbc/image.png)
      
      ### Koding Dashboard
      ![image](/uploads/6c7dda34792280c0e4791e36af4eba11/image.png)
      
      ### Set up Koding Stack
      1 - ![image](/uploads/d5c2b93f8e61b5cbffdb06f0267d485f/image.png)
      2 - ![image](/uploads/44d9a9b574b8ac0c5eb553fb9653d5da/image.png)
      
      ### Run on Koding on Project Page
      
      ![image](/uploads/7d2b46221009074ffff75d66d5a1a555/image.png)
      
      ### Run in IDE on Merge Requests
      ![image](/uploads/65eed90c34c34b5fe7ad29ef9c717640/image.png)
      
      ## Does this MR meet the acceptance criteria?
      
      - [x] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added
      - [x] [Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md)
      - [x] Tests
        - [x] Added for this feature/bug
        - [x] All builds are passing
      - [x] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides)
      - [x] Branch has no merge conflicts with `master` (if you do - rebase it please)
      - [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits)
      
      See merge request !5909
      4030d5ab
    • Gokmen Goksel's avatar
      Support integration with Koding (online IDE) · a927a9bf
      Gokmen Goksel authored
      Koding: #index: landing page for Koding integration
      
      If enabled it will provide a link to open remote Koding instance url
      for now we are also providing the sneak preview video for how
      integration works in detail.
      
      Repository: check whether .koding.yml file exists on repository
      
      Projects: landing page: show Run in IDE (Koding) button if repo has stack file
      
      Projects: MR: show Run in IDE Koding button if repo has stack file on active branch
      
      ProjectHelpers: add_koding_stack: stack generator for provided project
      
      With this helper we will auto-generate the required stack template
      for a given project. For the feature we can request this base template
      from the running Koding instance on integration.
      
      Currently this will provide users to create a t2.nano instance on aws
      and it'll automatically configures the instance for basic requirements.
      
      Projects: empty state and landing page provide shortcuts to create stack
      
      projects_helper: use branch on checkout and provide an entry point
      
      This ${var.koding_queryString_branch} will be replaced with the branch
      provided in query string which will allow us to use same stack template
      for different branches of the same repository.
      
      ref: https://github.com/koding/koding/pull/8597/commits/b8c0e43c4c24bf132670aa8a3cfb0d634acfd09b
      
      projects_helper: provide sha info in query string to use existing vms
      
      With this change we'll be able to query existing vms on Koding side
      based on the commit id that they've created.
      
      ref: https://github.com/koding/koding/pull/8597/commits/1d630fadf31963fa6ccd3bed92e526761a30a343
      
      Integration: Docs: Koding documentation added
      
      Disable /koding route if integration is disabled
      
      Use application settings to enable Koding
      
      Projects_helper: better indentation with strip_heredoc usage
      
      Projects_helper: return koding_url as is if there is no project provided
      
      current_settings: set koding_enabled: false by default
      
      Koding_Controller: to render not_found once integration is disabled
      
      Dashboard_specs: update spec for Koding enabled case
      
      Projects_Helper: make repo dynamic
      
      ref: https://github.com/koding/koding/pull/8597/commits/4d615242f45aaea4c4986be84ecc612b0bb1514c
      
      Updated documentation to have right format
      a927a9bf