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
2022-02-22Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-02-02Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-09-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-02Support selective highlighting of linesPatrick Bajao
Instead of highlighting all lines when not all of them are needed, only highlight from the beginning up to the specified limit. The `BlobPresenter#highlight` method has been updated to support `to` param. This param will be used to limit the content to be highlighted.
2019-08-20Use ActiveModel's type instead of virtusPeter Leitzen
The virtus project has been discontinued: https://github.com/solnic/virtus/commit/a6f896984
2019-08-10Replace ... with new expansion optionsSamantha Ming
- expand upwards - expand downwards - expand all in both inline and parallel views
2019-08-09Revert "Merge branch '65152-selective-highlight' into 'master'"Patrick Bajao
This reverts merge request !31361
2019-08-06Support selective highlighting of linesPatrick Bajao
Instead of highlighting all lines when not all of them are needed, only highlight specific lines. The `BlobPresenter#highlight` method has been updated to support `since` and `to` params. These params will be used to limit the content to be highlighted. Modify `Gitlab::Highlight` to support `since` param which will then be used to determine the starting line number.
2019-07-22Fix suggestion on lines that are not part of an MRPatrick Bajao
Return the `text` as plain string in the response instead of including HTML tags but keep `rich_text` as is. The fix is to modify `Blob::UnfoldPresenter#diff_files` to map each raw diff line (limited by the range specified) to a corresponding line in an array of highlighted lines to use as `rich_text`.
2019-03-07Move diff_line preparation into presenterMark Chao
Update spec
2019-03-06Add full option for blob diff actionMark Chao
Returns all diff lines for frontend if full is true. Turn UnfoldForm into presenter, and move controller logic to presenter.