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
2017-06-21Enable Style/DotPosition Rubocop :cop:Grzegorz Bizon
2017-06-02Enable the Style/PreferredHashMethods copRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-05-25Provide default for calculating label text color (!11681)winh
2017-04-28Add board_move slash commandAlex Sanford
2017-04-12Remove heading and trailing spaces from label's color and titleblackst0ne
2017-03-17Added labels to the issue web hookLuke "Jared" Bennett
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-23Enable Style/MutableConstantDouwe Maan
2017-02-23Enable Style/DotPositionDouwe Maan
2017-01-09validate length of label.titleTomáš Kukrál
+ add test for label.title length validation
2017-01-03Fix cross-project references copy to include the project referenceJames Lopez
Also added relevant specs and refactored to_references in a bunch of places to be more consistent.
2016-12-03Add shorthand support to gitlab markdown referencesOswaldo Ferreira
2016-11-01Use label subject to calculate number of issues/mrs within the groupDouglas Barbosa Alexandre
2016-10-19Use join instead of subquery on Label.unprioritized scopeDouglas Barbosa Alexandre
2016-10-19Abstract LabelPriority away into methods on Label modelDouglas Barbosa Alexandre
2016-10-19Fix issue board related controllers to expose label priority per projectDouglas Barbosa Alexandre
2016-10-19Fix sorting by label prioritiesDouglas Barbosa Alexandre
2016-10-19Add support to group labels prioritization on project levelDouglas Barbosa Alexandre
2016-10-19Add LabelPriority modelDouglas Barbosa Alexandre
2016-10-19Remove `::` for method call on Label#text_colorDouglas Barbosa Alexandre
2016-10-19Use reverse_merge on Label#issues_count and Label#merge_requests_countDouglas Barbosa Alexandre
2016-10-19Move common logic to reference group/project label to Label#to_referenceDouglas Barbosa Alexandre
2016-10-19Unfold references for group labels when moving issue to another projectDouglas Barbosa Alexandre
2016-10-19Validate if project label title does not exist at group levelDouglas Barbosa Alexandre
2016-10-19Add ProjectLabel modelDouglas Barbosa Alexandre
2016-10-19Validates uniqueness of title unless label is a templateDouglas Barbosa Alexandre
2016-10-19List group labels on project labels pageDouglas Barbosa Alexandre
2016-10-19Allow users to apply group labels on Issues/MRsDouglas Barbosa Alexandre
2016-10-07Add markdown cache columns to the database, but don't use them yetNick Thomas
This commit adds a number of _html columns and, with the exception of Note, starts updating them whenever the content of their partner fields changes. Note has a collision with the note_html attr_accessor; that will be fixed later A background worker for clearing these cache columns is also introduced - use `rake cache:clear` to set it off. You can clear the database or Redis caches separately by running `rake cache:clear:db` or `rake cache:clear:redis`, respectively.
2016-08-17Destroy related lists when a label is removedDouglas Barbosa Alexandre
2016-07-13Simplify regex for string-based multi-word label surrounded in quotesDouglas Barbosa Alexandre
2016-07-13Doesn't match empty label references surrounded in quotesDouglas Barbosa Alexandre
2016-07-13Fix markdown rendering for label references that contains `.`Douglas Barbosa Alexandre
2016-07-13Fix markdown rendering for label references that begin with a digitDouglas Barbosa Alexandre
2016-07-13Fix markdown rendering for consecutive label referencesDouglas Barbosa Alexandre
2016-07-06Use CGI.unescapeHTML rather than doing the gsub with a mapDouglas Barbosa Alexandre
2016-07-06Move `unescape_html_entities` from LabelsHelper to Label modelDouglas Barbosa Alexandre
2016-07-06Render references for labels that name contains ?, or &Douglas Barbosa Alexandre
2016-07-06Allow '?', or '&' for label titlesDouglas Barbosa Alexandre
2016-06-07Fix label order by priority on labels pageSean McGivern
2016-06-06Remove unnecessary null-specific orderSean McGivern
2016-06-06typoAlfredo Sumaran
2016-06-06Update method nameAlfredo Sumaran
2016-06-06Add unprioritized scopeAlfredo Sumaran
2016-06-06Improve Issuable.order_labels_priorityRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-06-06Sort by label priorityThijs Wouters
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-06-06Prioritize labels functionalityAlfredo Sumaran
2016-05-10Merge branch 'remove-annotate-gem' into 'master' Yorick Peterse
Remove the annotate gem and delete old annotations In 8278b763d96ef10c6494409b18b7eb541463af29 the default behaviour of annotation has changes, which was causing a lot of noise in diffs. We decided in #17382 that it is better to get rid of the whole annotate gem, and instead let people look at schema.rb for the columns in a table. Fixes: #17382 /cc @yorickpeterse See merge request !4099