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-02-23Enable Style/MutableConstantDouwe Maan
2017-02-08Create directly_addressed Todos when mentioned in beginning of a lineErshad Kunnakkadan
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.
2016-03-19Improvements in issue move feaure (refactoring)Grzegorz Bizon
According to endbosses' suggestions.
2016-03-17Move reference unfolder for GFM to separate classGrzegorz Bizon
2016-01-14Prevent circular reference error in BanzaiDouwe Maan
2016-01-05Merge branch 'master' into milestone-refDouwe Maan
2015-12-24Only allow group/project members to mention `@all`Douwe Maan
2015-12-24Render milestone links as referencesDouwe Maan
2015-12-18Backport JIRA serviceDrew Blessing
2015-12-15Move Markdown/reference logic from Gitlab::Markdown to BanzaiDouwe Maan
2015-11-19Move Markdown filters and pipelines into folders.Douwe Maan
2015-10-22Slight refactoringDouwe Maan
2015-10-21Merge branch 'master' into reference-pipeline-and-cachingDouwe Maan
2015-10-18Fix bug where a push would only create cross references from the first commit.Douwe Maan
2015-10-15Merge branch 'master' into rs-redactor-filterDouwe Maan
2015-10-14Cache rendered contents of issues, MRs and notesDouwe Maan
2015-10-14Use Gitlab::Markdown for Asciidoc and ReferenceExtractor pipelinesDouwe Maan
2015-10-14Enable caching of Gitlab::Markdown rendered resultDouwe Maan
2015-10-14Use Gitlab::Markdown.render with :pipeline option rather than different methodsDouwe Maan
2015-10-14Explicitly only parse references by specified filterDouwe Maan
2015-10-14Have Issue#participants load all users mentioned in notes using a single queryDouwe Maan
2015-10-14Code cleanupDouwe Maan
2015-10-13Allow ReferenceExtractor to efficiently load references from multiple texts ↵Douwe Maan
at once
2015-10-12Simplify code around (cross)-referencesDouwe Maan
2015-10-07Refactor reference gathering to use a dedicated filterDouwe Maan
2015-09-01Require gitlab/markdown in ReferenceExtractorRobert Speicher
2015-08-28Decouple Gitlab::Markdown from the GitlabMarkdownHelperRobert Speicher
This module is now the sole source of knowledge for *how* we render Markdown (and GFM).
2015-06-02Ignore references in blockquotes.Douwe Maan
2015-06-02Actually ignore references in code blocks etc.Douwe Maan
2015-04-25DRY up ReferenceExtractorRobert Speicher
2015-04-25Refactor ReferenceExtractor to use pipeline filtersRobert Speicher
2015-04-23Merge branch 'issue-body-code-mentions' into 'master'Dmitriy Zaporozhets
Fix bug causing at-username inside code blocks to sometimes be picked up as a user mention. Addresses private issue https://dev.gitlab.org/gitlab/gitlabhq/issues/2254. See merge request !553
2015-04-21Fix bug causing `@whatever` inside code blocks to sometimes be picked up as ↵Douwe Maan
a user mention.
2015-04-20Add permission check to ReferenceExtractor's user mentionsRobert Speicher
2015-04-20Remove Gitlab::Markdown from Gitlab::ReferenceExtractorRobert Speicher
2015-04-13Merge branch 'reference-access-control' into 'master'Dmitriy Zaporozhets
Only allow users to reference groups, projects, issues, MRs, commits they have access to. Addresses https://dev.gitlab.org/gitlab/gitlabhq/issues/2183. See merge request !1742
2015-04-10Be more explicit about which "Markdown" ReferenceExtractor includesRobert Speicher
2015-04-03Refactor ReferenceExtractor.Douwe Maan
2015-04-02Fix errors.Douwe Maan
2015-04-02Don't allow full access to guests in ReferenceExtractorDouwe Maan
2015-04-02Refactor Mentionable mentioned users to use ReferenceExtractor.Douwe Maan
2015-04-02Only allow user to reference objects they have access to.Douwe Maan
2015-04-02Slightly refactor ReferenceExtractor.Douwe Maan
2015-03-20Disable reference creation for comments surrounded by code/preformatted blocksStan Hu
2015-03-07Automatically link commit ranges to compare page.Douwe Maan
2015-02-11Add ExternalIssue base model to make issue referencing more robust for ↵Marin Jankovski
external issue trackers.
2015-02-08Add labels notesNikita Verkhovin
2014-10-03Track projects in ReferenceExtractorVinnie Okada
Store both the project and identifier of extracted references. This prevents `ReferenceExtractor` from returning objects in the wrong project for cross-project references.
2014-10-03Fix ReferenceExtractorVinnie Okada
The cross-project reference feature broke the ReferenceExtractor class; this fixes it.