Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-01-29Don't allow Repository#log with limit zeroJacob Vosmaer (GitLab)
2017-12-22Replace '.team << [user, role]' with 'add_role(user)' in specsblackst0ne
2017-12-13Fix commits_specAnnabel Dunstone Gray
2017-12-03Rename artifacts_* to legacy_artifacts_*Kamil Trzcinski
2017-11-21Merge branch '39821-fix-commits-list-with-multi-file-editor' into 'master'Phil Hughes
Fix commits list 500 with multi-file editor new_repo cookie Closes #39821 See merge request gitlab-org/gitlab-ce!15502
2017-11-20Fix commits list 500 with multi-file editor new_repo cookieEric Eastwood
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/39821 /<namespace>/<project>/commmits/master
2017-11-14Replace ci_status_path with pipeline_pathRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-09-05extract gpg commit specs to their own fileAlexis Reigel
2017-08-01Inline script cleanup globals and easyTim Zallmann
2017-07-27Merge branch 'feature/gpg-signed-commits' into 'master'Dmitriy Zaporozhets
GPG signed commits Closes #20268 See merge request !9546
2017-07-27fetch gpg signature badges by ajaxAlexis Reigel
2017-07-27use short project path helpersAlexis Reigel
2017-07-27swap user's name and the user's usernameAlexis Reigel
2017-07-27show gpg key's user info when no profile existsAlexis Reigel
2017-07-27improve spacing / alignments in gpg popupAlexis Reigel
2017-07-27use sign_in instead of login_withAlexis Reigel
2017-07-27use updated gitlab-test repo for signed commitsAlexis Reigel
2017-07-27add gpg commit popover badgesAlexis Reigel
2017-07-27perform signature update in sidekiq workerAlexis Reigel
2017-07-27update features specs for gpg commitsAlexis Reigel
2017-07-27add primary keyid attribute to gpg keysAlexis Reigel
2017-07-27remove gpg from keychain when user's email changesAlexis Reigel
2017-07-27feature spec for gpg signed commitsAlexis Reigel
2017-07-27Remove superfluous type defs in specsKeifer Furzland
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-07-05Create and use project path helpers that only need a project, no namespaceDouwe Maan
2017-06-20Remove implicit dependency on `gitlab_sign_in` assigning `@user`Robert Speicher
We shouldn't be using instance variables in specs to begin with, and depending on this implicit behavior of `gitlab_sign_in` would have made it more difficult to change to `sign_in` where possible. ...we've also gone ahead and changed to `sign_in` where possible.
2017-06-20Change `login_with` uses to `gitlab_sign_in`Robert Speicher
Change single `login_via` use to `gitlab_sign_in_via`
2017-06-20Change `login_as` uses to `gitlab_sign_in`Robert Speicher
2017-06-02Pipeline show view real time header sectionFilipa Lacerda
2017-04-21Use `:empty_project` where possible in top-level feature specsRobert Speicher
2017-03-22Add helpers for pipeline user link & user avatarToon Claes
2017-03-22Show pipeline creator & created_at in headingToon Claes
Instead of showing the commit author & authored_date that triggered the pipeline, show the user and created_at in the heading of the pipeline show.
2017-03-05Merge branch 'format-timeago-date' into 'master' Jacob Schatz
Formats timeago dates to be more friendly Closes #27537 See merge request !9145
2017-02-20fixed specs + docsdimitrieh
2017-02-13Fixed timeago specsPhil Hughes
2016-12-16Fix broken testFilipa Lacerda
2016-12-04change the date label to match the date usedBM5k
2016-11-04Merge remote-tracking branch 'upstream/master' into show-status-from-branchLin Jen-Shin
* upstream/master: (35 commits) Only skip group when it's actually a group in the "Share with group" select Fix: Todos Filter Shows All Users Fix: Guest sees some repository details and gets 404 Move shared params to a helper GrapeDSL for project hooks Update commits.scss updated styling commit SHA on branches page + added to changelog change build list height to show 6,5 builds + improve padding of list, with first/last child selectors Ignore builds directory from eslint Add changelog entry Document multiple repository storage paths Allow multiple repository storage shards to be enabled, and automatically round-robin between them Cleaned up global namespace JS Add tip for using Chrome to run and debug teaspoon tests. Add CHANGELOG entry file Add jquery.timeago.js to application.js Update match-regex to fix filename convention Move jquery.timeago to vendor directory Change a bunch of doc links to either relative or https://docs.gitlab.com. Show log corresponding to env in admin/logs ...
2016-11-01Make specs a bit fasterValery Sizov
2016-10-24Add a test for showing correct pipelineLin Jen-Shin
2016-08-09fixes part1 of files to start using active tensetiagonbotelho
2016-06-03Rename all `[ci_]commit` to `[ci_]pipeline` in specs and featuresKamil Trzcinski
2016-06-03Rename Ci::Build commit to pipelineKamil Trzcinski
2016-05-24Enable RSpec/NotToNot cop and auto-correct offensesRobert Speicher
Also removes the note from the development/testing.md guide
2016-02-04Rename allow_guest_to_access_builds to public_buildsKamil Trzcinski
2016-01-26Add specs for build created using generic commit statusGrzegorz Bizon
2015-12-17Fix feature specs: we always show the build status if ci_commit is presentKamil Trzcinski
2015-12-14Merge branch 'master' into ux/suppress-ci-yml-warningGrzegorz Bizon
* master: (24 commits) Fix runners admin view Fix migrations Run builds from projects with enabled CI Use Gitlab::Git instead of Ci::Git Fix last specs Fix specs Fix after column rename Fix errors Update badge Finishing touches Fix triggers tests Rename columns and rename migrations Reimplement Trigger API Remove ci_ prefix from all ci related things Add runners token Migrate CI::Project to Project Fix indentation and BuildsEmailService Change default values Enhance migrate CI emails Fix issue tracker service ... Conflicts: spec/features/commits_spec.rb
2015-12-14Do not display ci build status if builds enabled but no `.gitlab-ci.yml`Grzegorz Bizon
Ref #3827
2015-12-14Improve gitlab ci commits specs (refactoring)Grzegorz Bizon
This minimizes usage of instance variables in this spec, and changes double quotation marks to single when string interpolation is not being used.