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-01-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-12-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-12-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-12-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-11-20Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-11-18Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-11-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-10-16Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-10-14Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-10-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-30Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-09-10Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-15Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-14Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-07-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-04-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-04-21Add latest changes from gitlab-org/gitlab@masterGitLab 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