1. 04 May, 2017 10 commits
    • Alain Takoudjou's avatar
      Colorize gem replaced with rainbow. · 40fc676a
      Alain Takoudjou authored
      40fc676a
    • Kirill Smelkov's avatar
      NXD Teach GitLab about patches · 64b6cfb6
      Kirill Smelkov authored
      Teach GitLab not only to merge changes from a merge-request, but also to
      apply patches posted to merge-request in a way like `git am` would do -
      without merge commit and directly on top of current branch. Which way to
      go is selected by user in web UI, and apply patches is the first option.
      
      There are 3 cases:
      
      - only 1 commit is present in MR -> the only available option is to
        apply that single commit as one patch without a merge
      
        ( There is no need for merge commit in this case at all: information
          about user who applied the patch goes to "Committer" field in resultant
          commit. Avoiding 1 merge per 1 patch results in cleaner history )
      
        It is also possible to review patch description directly in web UI,
        before doing the actual application, and correct / amend it as needed.
      
      - several commits are present in MR:
      
        * it is possible to apply the patches directly on top of current
          branch. Again information about who applied what goes to "Committer"
          field.
      
        * it is possible to merge MR changes with making a merge commit.
      
          This variant is useful, when patches from a MR do several logical
          steps to reach one goal, and MR description contain cover letter for
          whole patch series.
      
          in this case original commits stay untouched and resulting merge
          will contain MR author as author, user who accepted MR as committer,
          and cover letter as merge commit message.
      
          NOTE we avoid useless "Merge branch X into Y" in merge message, and
              just put MR title into merge subject and MR description into merge
              description.
      
              This way it is more logical with more important information in
              merge subject and thus e.g. more handy to oversee what a merge brings,
              just by it subject, e.g. via looking at updates via
      
                  gitk --first-parent ...
      
              or via web.
      
      NOTE for pre-generated references to merge-request we now use full MR
          URL, instead of !<MR-n>. Full URLs work everywhere, not only on
          original site where MR was created, or even only in original repo
          and not its fork on the same site.
      
      Conflicts:
      	app/services/merge_requests/merge_service.rb
      64b6cfb6
    • Kirill Smelkov's avatar
      NXD Show ICP on front page & on footer of every other pages · 0daabaad
      Kirill Smelkov authored
      TODO detect whether request comes from China and only then show ICP (?).
      0daabaad
    • Kirill Smelkov's avatar
      NXD Show "about" footer on every page · 91f2d009
      Kirill Smelkov authored
      We show in small font size the same info that is shown on sign_in page:
      
          "GitLab Nexedi Edition", "About GitLab" and "About Nexedi"
      
      This is good to have and hereby-introduced about-footer area will be
      also used in the next patch for ICP too.
      
      XXX placement of .about-footer to be near bottom is done not very
      correctly.
      
      Conflicts:
      	app/assets/stylesheets/framework/sidebar.scss
      91f2d009
    • Kirill Smelkov's avatar
      NXD gitlab:app:check : Don't check for init script · 8a9a96eb
      Kirill Smelkov authored
      Like Omnibus, SlapOS version does not have init script - nothing to
      check here.
      8a9a96eb
    • Kirill Smelkov's avatar
      NXD lib/tasks/gitlab/check: Exit with non-zero code, if something failed in a check task · 4b336516
      Kirill Smelkov authored
      This is handy for monitoring tools, which could e.g. periodically call check
      tasks and instead of parsing output, rely on exit code.
      
      The way we detect if something failed is via hooking into String#red, and if
      anything was ever printed in red - that's an error.
      
      Conflicts:
      	lib/tasks/gitlab/check.rake
      4b336516
    • Kirill Smelkov's avatar
    • Kirill Smelkov's avatar
      NXD clone_panel: Remove SSH option completely · 2d25e9cc
      Kirill Smelkov authored
      The default was switched to HTTP in the previous patch, but let's completely
      remove SSH option - we support only HTTP for git fetch/push.
      
      Conflicts:
      	app/views/shared/_clone_panel.html.haml
      2d25e9cc
    • Kirill Smelkov's avatar
      NXD Make HTTP to be the default clone protocol · 78bf0acd
      Kirill Smelkov authored
      Both fetch and push are possible over https, which is selected by http if
      gitlab was configured to use https in external url.
      
      This way to reduce security vectors and possible ways to interact with gitlab
      we use https only without ssh at all.
      
      Conflicts:
      	app/helpers/projects_helper.rb
      78bf0acd
    • Kirill Smelkov's avatar
      NXD GitLab Nexedi Edition · d8edbd09
      Kirill Smelkov authored
      = GitLab Community Edition + Nexedi patches
      d8edbd09
  2. 02 Nov, 2016 1 commit
  3. 01 Nov, 2016 4 commits
  4. 11 Oct, 2016 5 commits
  5. 29 Sep, 2016 3 commits
  6. 28 Sep, 2016 5 commits
  7. 19 Sep, 2016 2 commits
    • Rémy Coutable's avatar
      Update VERSION to 8.10.10 · d5edb038
      Rémy Coutable authored
      d5edb038
    • Rémy Coutable's avatar
      Merge branch '18302-use-rails-cookie-in-api' into 'master' · 8ddfeec8
      Rémy Coutable authored
      Allow the Rails cookie to be used for API authentication
      
      Makes the Rails cookie into a valid authentication token for the Grape
      API, and uses it instead of token authentication in frontend code that
      uses the API.
      
      Rendering the private token into client-side javascript is a security
      risk; it may be stolen through XSS or other attacks. In general,
      re-using API code in the frontend is more desirable than implementing
      endless actions that return JSON.
      
      Closes #18302
      
      See merge request !1995
      Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
      8ddfeec8
  8. 14 Sep, 2016 4 commits
  9. 01 Sep, 2016 3 commits
  10. 19 Aug, 2016 3 commits