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-02-07Don't use rugged in Repository#refs_hashZeger-Jan van de Weg
The refs hash is used to determine what branches and tags have a commit as head in the network graph. The previous implementation depended on Rugged#references. The problem with this implementation was that it depended on rugged, but also that it iterated over all references and thus loading more data than needed if for example the project uses CI/CD environments, Pipelines, or Merge Requests. Given only refs are checked the network cares about the GraphHelper#refs method has no need to reject those, simplifying the method. Closes gitlab-org/gitaly#880
2017-12-03Fix graph notes number duplication.Vladislav Kaverin
Function `pluralize` already returns the number along with pluralized word.
2017-09-08Print notes number explained.Vladislav Kaverin
Printing just `[<number>]` was confusing - it looks like a ghost branch or something. Add `note` (or `notes`, depending on number of notes) to give some details of what this number means. Refactor code to follow DRY principle.
2017-08-09Enable the Layout/SpaceBeforeBlockBraces copRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-06-23Remove references to build in pipeline chartsZ.J. van de Weg
Being the good boyscouts, but mainly because of [the comment in the review](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/12378#note_33302115) the words used for classes and variables are changed to not use builds anymore.
2017-06-23Improve performance for pipeline chartsZ.J. van de Weg
Achieved by using another table, which both has better indexes and is smaller. Now the data provided for the user is more valueable too.
2015-12-11Migrate CI::Project to ProjectKamil Trzcinski
2015-09-23Remove git refs used internally by GitLab from network graphStan Hu
Closes #2702
2015-01-01Append in place for strings and arraysCiro Santilli
2013-08-20Remove the dependancy of grit from class Network::GraphHiroyuki Sato
2013-04-24Reducing database access.Sato Hiroyuki
2013-03-26Display note count on network graph.Sato Hiroyuki
2013-03-07Refactor: grouping parent and their space by including array.Sato Hiroyuki
2013-03-07Refactor: replace "render :json = graph.to_json" to view ↵Sato Hiroyuki
template(show.json.erb). Because model shouldn't know about view logic.