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
2021-11-18Add latest changes from gitlab-org/gitlab@14-5-stable-eev14.5.0-rc42GitLab Bot
2021-09-29Add latest changes from gitlab-org/security/gitlab@14-3-stable-eeGitLab Bot
2021-05-19Add latest changes from gitlab-org/gitlab@13-12-stable-eev13.12.0-rc42GitLab Bot
2021-04-21Add latest changes from gitlab-org/gitlab@13-11-stable-eev13.11.0-rc43GitLab Bot
2021-03-16Add latest changes from gitlab-org/gitlab@13-10-stable-eev13.10.0-rc40GitLab Bot
2021-02-18Add latest changes from gitlab-org/gitlab@13-9-stable-eev13.9.0-rc42GitLab Bot
2021-01-20Add latest changes from gitlab-org/gitlab@13-8-stable-eev13.8.0-rc42Robert Speicher
2020-12-17Add latest changes from gitlab-org/gitlab@13-7-stable-eev13.7.0-rc42GitLab Bot
2020-11-23Add latest changes from gitlab-org/gitlab@13-6-stable-eeGitLab Bot
2020-11-19Add latest changes from gitlab-org/gitlab@13-6-stable-eev13.6.0-rc42GitLab Bot
2020-10-21Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42GitLab Bot
2020-09-19Add latest changes from gitlab-org/gitlab@13-4-stable-eeGitLab Bot
2020-07-20Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot
2020-05-20Add latest changes from gitlab-org/gitlab@13-0-stable-eeGitLab Bot
2020-03-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-14Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-02-06Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-06-25Allow autocompleting scoped labelsMartin Hanzel
The `:` key will no longer exit out of the autocomplete dialog, allowing auto-completion of labels with colons in them.
2019-06-21Upgrade prettier to latest (v1.18.2)Mike Greiling
Upgrades prettier to the latest version, and auto-corrects files with yarn prettier-all-save The diffs all seem to stem from formatting changes in brackets within template literals. Nothing major. Relevant changelogs here: https://prettier.io/blog/2019/04/12/1.17.0.html https://prettier.io/blog/2019/06/06/1.18.0.html
2019-06-03Move NoteApp tests to JestWinnie Hellmann
2019-04-25Escape special characters in GFM auto complete highlightingJan Beckmann
Fixes #60552
2019-04-17Only use backslash escapes in autocomplete when neededSean McGivern
Autocompletion for references happens on the frontend. Those references are turned into actual references on the backend, but only after Markdown processing has happened. That means that if a reference contains a character that Markdown might consume, it won't render correctly. So we need to do some escaping on the frontend. We have these potential problem characters: https://docs.gitlab.com/ee/user/markdown.html#emphasis 1. ~ - this is ~~strikethrough~~, but only when doubled. 2. _ - used for _emphasis_, doubled is __bold__. 3. * - also used for *emphasis*, doubled is **bold** also. 4. ` - used for `code spans`, any number works. We don't need to escape `-` any more. When it comes to being inside a word: 1. a~~b~~ has strikethrough, so it needs to be escaped everywhere. 2. a_b_ has no emphasis (see [a]) so it only needs to be escaped at the start and end of words. 3. a*b* has emphasis, so it needs to be escaped everywhere. 4. a`b` has a code span, so it needs to be escaped everywhere. Or, in code terms: 1. Always escape ~~, *, and ` when being inserted by autocomplete. 2. Escape _ when it's either at the beginning or the end of a word. [a]: https://docs.gitlab.com/ee/user/markdown.html#multiple-underscores-in-words
2019-04-10Revert "Merge branch 'tz-reorganise-digests-json' into 'master'"Tim Zallmann
Reverts the loading of emojis and its images to move forward with RC
2019-03-07Moved all emojis to the public folderTim Zallmann
Created new emojis map in public folder Renamed folder to emojis Loading now the emojis from Localstorage or from Server Moved all emojis to the public folder Loading the emojis.json file now through AJAX Loads now the map in the web element instead when building the emoji tag Updated the custom Element Setup to modern method Fixed Emoji Karma Specs for async loading Loading now the emojis from Localstorage or from Server Loads now the map in the web element instead when building the emoji tag Fixed problem with FIXTURE_PATH for emojis fixtures Fixes Linting Error in gemojione.rake Fixed Emoji Karma Specs Fix static type check in gemojione and check if already registered Testing if the Emoji Support Check is failing Rspec Change of CLass Name, returning true on check to test Fixes failing Emoji RSpec Tests Moved Emojis into public/-/emojis/1/ Fixed Linting Errors in gl_emoji Fix to fixtures creation for emojis Fixed path spec for new subdirectory -/emojis Optimized emojis.json output Fix for Emoji Spec failure due to unicode dataset Better catch handling for emojis
2019-02-25Style avatars for groups and projectsMartin Wortschack
- Add rectangular avatar classes - Update avatar for groups - Update avatar for projects - Update avatar for frequent items - Update avatar on "Fork project" page - Conditionally add rectangular avatar class to autocomplete items
2019-01-07CE backport for `reference` in gfm_autocompleteHeinrich Lee Yu
Currently not used by any CE code
2018-12-20Escape label and milestone titles to prevent XSSKushal Pandya
2018-11-21Add support for custom highlighting slash commands via warning flagsKushal Pandya
2018-11-12Fix user name autocomplete XSS when name contains HTMLKushal Pandya
2018-10-31Fix eslint violationsMike Greiling
2018-10-31Prettify remaining files with differences in CE and EEMike Greiling
2018-10-19Escape issue title while template rendering to prevent XSSKushal Pandya
2018-10-05Resolve "Drop down filter for project snippets"Fabian Schneider
2018-07-02Add `&` support for epics autocompletionKushal Pandya
2018-06-25Enable "prefer-destructuring" in JS filesgfyoung
Partially addresses #47006.
2018-06-25Add default autocomplete configKushal Pandya
2018-05-04Backport of 4084-epics-username-autocompleteMario de la Ossa
2018-03-29Escape autocomplete results for MarkdownSean McGivern
A label name can contain a `_`, `~~`, or other Markdown-significant characters. But label references are processed _after_ Markdown processing has run, so we can't easily fix this on the backend. We can make it more convenient, though, by changing the frontend to escape these characters so they aren't processed as Markdown, when we insert them from autocomplete.
2018-03-14Merge branch 'fix-emoji-popup' into 'master'Sean McGivern
Hide emoji popup after multiple spaces or blank lines, closes #40620,#33678 Closes #40620 and #33678 See merge request gitlab-org/gitlab-ce!17680
2018-03-11Hide emoji popup after multiple spaces or blank linesJan Beckmann
Fixes #40620,#33678
2018-03-10require jQuery to be explicitly importedMike Greiling
2018-01-29Add Colors to GitLab Flavored MarkdownTony Rom
2018-01-08Fix slash commands dropdown descriptionMaurizio De Santis
2017-11-28Limit autocomplete menu to applied labelsVitaliy @blackst0ne Klachkov
2017-11-13fix to allow integer label refernceshaseeb
2017-08-03Resolve "Specific Async Script Loading by using a Page Variable"Tim Zallmann