1. 20 Aug, 2016 4 commits
  2. 19 Aug, 2016 30 commits
  3. 18 Aug, 2016 6 commits
    • Jacob Schatz's avatar
      Merge branch... · abb1a595
      Jacob Schatz authored
      Merge branch '3225-ace-editor-causing-404-errors-every-time-you-try-to-edit-a-file-in-the-webui' into 'master'
      
      Fix Ace syntax highlighting with compiled assets
      
      ## What does this MR do?
      
      Update ACE to 4.1.0 to allow modes (syntax highlighting files for particular languages) to be lazily loaded.
      
      ## Are there points in the code the reviewer needs to double check?
      
      Don't think so.
      
      ## Why was this MR needed?
      
      Syntax highlighting in the file editor only worked in development and test modes, not in production!
      
      ## What are the relevant issue numbers?
      
      Closes #3225.
      
      ## Screenshots (if relevant)
      
      First, the test setup - add these lines to `development.rb`:
      ```ruby
        config.assets.debug = false
        config.assets.compile = false
        config.assets.digest = true
      ```
      
      Then, before starting the server, run `bundle exec rake assets:clobber assets:precompile`.
      
      Before:
      
      ![image](/uploads/486198e273019f8969d2e90560d82928/image.png)
      
      There is an error in the console because `/assets/ace/mode-ruby.js` was not found (it's only available when assets are compiled on demand).
      
      After:
      
      ![image](/uploads/6aa0d69b7efdfd6fe6aa22b9a49e9716/image.png)
      
      This loads `/assets/ace/mode-ruby-3915f95a6cc47306b1305e4dcb7aca25b2ef9c49b18ec6011707135b6575d8f3.js`, which works because the precompile step included it and told ACE where to find it.
      
      ## Does this MR meet the acceptance criteria?
      
      - [x] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added
      - ~~[Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md)~~
      - ~~API support added~~
      - Tests
        - ~~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 !5501
      abb1a595
    • Robert Speicher's avatar
      Merge branch '2fa-check-git-http' into 'master' · 02640809
      Robert Speicher authored
      2FA checks for Git over HTTP
      
      ## What does this MR do?
      
      This MR allows the use of `PersonalAccessTokens` to access Git over HTTP and makes that the only allowed method if the user has 2FA enabled. If a user with 2FA enabled tries to access Git over HTTP using his username and password the request will be denied and the user will be presented with the following message:
      
      ```
      remote: HTTP Basic: Access denied
      remote: You have 2FA enabled, please use a personal access token for Git over HTTP.
      remote: You can generate one at http://localhost:3000/profile/personal_access_tokens
      fatal: Authentication failed for 'http://localhost:3000/documentcloud/underscore.git/'
      ```
      
      ## What are the relevant issue numbers?
      
      Fixes #13568 
      
      See merge request !5764
      02640809
    • Robert Speicher's avatar
      Merge branch '2fa-api-check' into 'master' · 220755f5
      Robert Speicher authored
      2FA checks for API workflows
      
      ## What does this MR do?
      
      It adds a check to the API `/session` endpoint that will deny authentication requests to users that have 2FA enabled. In the error message it will instruct them to use a Personal Access Token instead.
      
      It adds a check to the `/oauth/token` endpoint, when `grant_type: 'password'` is used, so that no OAuth2 access token can be generated if the user has 2FA enabled. This endpoint should not be used by OAuth applications, anyway. OAuth apps should follow the flow of redirecting the user to GitLab, where 2FA access restrictions apply and logging them in there. Once successfully authenticated, the OAuth token is passed to the client.
      
      ## Why was this MR needed?
      
      No 2FA check on API endpoints.
      
      ## What are the relevant issue numbers?
      
      Fixes #2979
      
      See merge request !5820
      220755f5
    • Robert Speicher's avatar
      Merge branch 'rs-issue-21017' into 'master' · 0ff39331
      Robert Speicher authored
      Update Hamlit to 2.6.1
      
      Fixes gitlab-org/gitlab-ce#21025 and gitlab-org/gitlab-ce#21017
      
      See merge request !5873
      0ff39331
    • Robert Speicher's avatar
      Merge branch '21028-missing-default-sort-for-users-with-an-existing-cookie' into 'master' · 25fb93ce
      Robert Speicher authored
      Handle legacy sort order values
      
      Convert the legacy sort order values id_asc / id_desc into the ones we use now, created_at / created_desc, to stop the dropdown being blank.
      
      Closes #21028.
      
      See merge request !5880
      25fb93ce
    • Robert Speicher's avatar
      Merge branch 'rs-update-doorkeeper' into 'master' · 2e66559e
      Robert Speicher authored
      Update doorkeeper to 4.2.0
      
      Changelog: https://git.io/v6PnV
      
      See merge request !5881
      2e66559e