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-07-09Resolve Naming/UncommunicativeMethodLin Jen-Shin
2018-03-06Fix Gitaly n+1 in NetworkController#showAndrew Newdigate
2018-02-13Remove allow_n_plus_1 block from Network::GraphAhmad Sherif
Closes #37436 Closes gitaly#998
2018-01-11Adds Rubocop rule for line break around conditionals🙈 jacopo beschi 🙉
2017-09-19Detect n+1 issues involving GitalyAndrew Newdigate
2017-08-29replace `is_overlap?` with `overlap?`Maxim Rydkin
2017-08-14Whitelist or fix additional `Gitlab/PublicSend` cop violationsRobert Speicher
An upcoming update to rubocop-gitlab-security added additional violations.
2017-08-09Enable the Layout/SpaceBeforeBlockBraces copRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-06-27Remove Gitlab::Git::Repository#find_allJacob Vosmaer
2017-04-27Fix ordering of commits in the network graph.Timothy Andrew
- We upgraded `rugged` to 0.25.1.1 in !10286 for %9.1 - Prior to this upgrade, the default sort order for commits returned by `Gitlab::Git::Repository#find_commits` was `Rugged::SORT_DATE`, which the graph relied on. - While upgrading `rugged`, the MR also changed this default to `Rugged::SORT_NONE`, which broke commit ordering in the graph. - This commit adds an option to `Gitlab::Git::Repository#find_commits` to sort by date, and changes the graph builder `Network::Graph` so it explictly requests the `:date` sort order
2017-02-23Revert "Enable Style/DotPosition"Douwe Maan
This reverts commit e00fb2bdc2090e9cabeb1eb35a2672a882cc96e9. # Conflicts: # .rubocop.yml # .rubocop_todo.yml # lib/gitlab/ci/config/entry/global.rb # lib/gitlab/ci/config/entry/jobs.rb # spec/lib/gitlab/ci/config/entry/factory_spec.rb # spec/lib/gitlab/ci/config/entry/global_spec.rb # spec/lib/gitlab/ci/config/entry/job_spec.rb # spec/lib/gitlab/ci/status/build/factory_spec.rb # spec/lib/gitlab/incoming_email_spec.rb
2017-02-23Revert "Prefer leading style for Style/DotPosition"Douwe Maan
This reverts commit cb10b725c8929b8b4460f89c9d96c773af39ba6b.
2017-02-23Prefer leading style for Style/DotPositionDouwe Maan
2017-02-23Fix code for copsDouwe Maan
2017-02-23Enable Style/ConditionalAssignmentDouwe Maan
2017-02-23Enable Style/DotPositionDouwe Maan
2016-12-16Enable Style/MultilineOperationIndentation in Rubocop, fixes #25741Rydkin Maxim
2016-06-29Enable Style/SpaceAfterComma Rubocop copGrzegorz Bizon
2016-06-01Merge branch 'style/enable-semicolon-rubocop-cop' into 'master' Robert Speicher
Enable Style/Semicolon rubocop style cop Don't use semicolons to terminate expressions. See #17478. See merge request !4351
2016-06-01Enable Style/For rubocop copGrzegorz Bizon
Do not use for, unless you know exactly why. See #17478
2016-06-01Enable Style/Semicolon rubocop style copGrzegorz Bizon
See #17478
2016-05-30Merge branch 'rubocop/enable-space-before-comma-cop' into 'master' Robert Speicher
Enable Style/SpaceBeforeComma rubocop cop No spaces before commas. See #17478 See merge request !4360
2016-05-30Merge branch 'style/enable-multiline-if-then-rubocop-cop' into 'master' Robert Speicher
Enable Style/MultilineIfThen rubocop cop Do not use then for multi-line if. See #7478. See merge request !4353
2016-05-30Enable Style/SpaceBeforeComma rubocop copGrzegorz Bizon
No spaces before commas. See #17478
2016-05-30Enable Style/MultilineIfThen rubocop copGrzegorz Bizon
Do not use then for multi-line if. See #7478.
2016-05-30Enable Style/WhileUntilDo rubocop style copGrzegorz Bizon
See #17478
2016-05-23Enable Style/InfiniteLoop Rubocop copGrzegorz Bizon
2015-01-22Merge pull request #7999 from cirosantilli/append-inplaceDmitriy Zaporozhets
Append in place for strings and arrays [failure unrelated]
2015-01-18Fix various typosSteven Burgart
signe-in -> signed-in go_to_gihub_for_permissions -> go_to_github_for_permissions descendand -> descendant behavour -> behaviour recepient_email -> recipient_email generate_fingerpint -> generate_fingerprint dependes -> depends Cant't -> Can't wisit -> visit notifcation -> notification sufficent_scope -> sufficient_scope? levet -> level
2015-01-01Append in place for strings and arraysCiro Santilli
2014-10-03Add parenthesis to function def with arguments.Ciro Santilli
2014-09-06Remove parent spacing. Fixes #7505Yvo van Beek
2013-09-30Remove grit requireDmitriy Zaporozhets
2013-08-20Remove the dependancy of grit from class Network::GraphHiroyuki Sato
2013-07-29Fix typosJohannes Schleifenbaum
2013-06-02Fix postgres error when displaying network graph.Sato Hiroyuki
fix #4149
2013-05-13Enable to filter graph by refSato Hiroyuki
2013-04-26Fix minor bug about line overlap.Sato Hiroyuki
2013-04-24Reducing database access.Sato Hiroyuki
2013-04-03Fixed wrong order of arguments in network graph caused by refactoringDmitriy Zaporozhets
2013-04-03Refactoring and cleanup. Removed unused commit findersDmitriy Zaporozhets
2013-03-31Remove grit logic from app/Dmitriy Zaporozhets
2013-03-20Rotating graph orientation.Sato Hiroyuki
2013-03-19Fix timeout error while showing the very large repo like git repo.Sato Hiroyuki
2013-03-19Refactor: removing duplicate code.Sato Hiroyuki
2013-03-07Refactor: Removing the duplicated code.Sato Hiroyuki
2013-03-07Refactor: change the map hash from a local variable to private variable.Sato Hiroyuki
2013-03-07Refacor: removing the times array, because that is same with @commits array.Sato Hiroyuki
2013-03-07Refactor: clean up models.Sato Hiroyuki
* Network::Commit ** Removing unnecessary accessors. ** Removing add_refs methods. * Network::Graph ** Removing unnecessary accessors. ** The 3 times loop of commits don't need.
2013-03-07Refactor: rename module and class names.Sato Hiroyuki
* Module: Graph -> Network * Class: JsonBuilder -> Graph