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
2019-07-26Add frozen_string_literal to spec/lib (part 1)Thong Kuah
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
2018-12-08Resolve "Extended user centric tooltips"Tim Zallmann
2018-07-02Move common tests from user and project reference filter specs to a shared ↵Reuben Pereira
example
2018-01-31Enable RuboCop Style/RegexpLiteralTakuya Noguchi
2017-12-22Replace '.team << [user, role]' with 'add_role(user)' in specsblackst0ne
2017-11-02CE port of code changed for epicsJarka Kadlecova
2017-08-03Change all `:empty_project` to `:project`Robert Speicher
2017-07-27Remove superfluous lib: true, type: redis, service: true, models: true, ↵Rémy Coutable
services: true, no_db: true, api: true 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-01Don't match email addresses or foo@bar as user referencesDouwe Maan
2017-03-29Make user mentions case-insensitiveblackst0ne
2017-03-02Use full group name in GFM group reference titleDouwe Maan
2017-02-13Add GFM support to nested groupsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2017-01-25address commentsJarka Kadlecova
2017-01-19make mentions working when project not specifiedJarka Kadlecova
2016-11-01Fix Markdown styling inside reference linkspanjan
Fixes: https://gitlab.com/gitlab-org/gitlab-ce/issues/18096
2016-10-03Imrove grammarKatarzyna Kobierska
2016-10-03Fix test, add author attribute to all testsKatarzyna Kobierska
2016-09-01Use JavaScript tooltips for mentions (!5301)winniehell
2016-06-02Reduce Namespace queries in UserReferenceFilterYorick Peterse
This changes UserReferenceFilter so it operates using the following steps: 1. Grab all username references from the input document. 2. Query the corresponding Namespace objects using a single query. 3. Iterate over all nodes to build links while re-using the objects queried in step 2. The impact of these changes is that a comment mentioning 5 different usernames no longer runs 5 different queries (1 for every username), instead it only runs a single query.
2016-05-26Split Markdown rendering & reference gatheringYorick Peterse
This splits the Markdown rendering and reference extraction phases into two distinct code bases. The reference extraction phase no longer relies on the html-pipeline Gem (and any related code) and allows for extracting of references from multiple HTML nodes in a single pass. This means that if you want to extract user references from 200 comments you no longer need to run 200 times N number of queries, instead only a handful of queries may be needed.
2015-12-24Only allow group/project members to mention `@all`Douwe Maan
2015-12-15Move Markdown/reference logic from Gitlab::Markdown to BanzaiDouwe Maan