| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| |
| |
| |
| | |
Add repository languages for projects
Closes #23931, #34671, #48647, and #47301
See merge request gitlab-org/gitlab-ce!19480
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Our friends at GitHub show the programming languages for a long time,
and inspired by that this commit means to create about the same
functionality.
Language detection is done through Linguist, as before, where the
difference is that we cache the result in the database. Also, Gitaly can
incrementaly scan a repository. This is done through a shell out, which
creates overhead of about 3s each run. For now this won't be improved.
Scans are triggered by pushed to the default branch, usually `master`.
However, one exception to this rule the charts page. If we're requesting
this expensive data anyway, we just cache it in the database.
Edge cases where there is no repository, or its empty are caught in the
Repository model. This makes use of Redis caching, which is probably
already loaded.
The added model is called RepositoryLanguage, which will make it harder
if/when GitLab supports multiple repositories per project. However, for
now I think this shouldn't be a concern. Also, Language could be
confused with the i18n languages and felt like the current name was
suiteable too.
Design of the Project#Show page is done with help from @dimitrieh. This
change is not visible to the end user unless detections are done.
|
|\ \
| | |
| | |
| | |
| | | |
Add vanilla JS avatar_helper and update existing avatar helpers
See merge request gitlab-org/gitlab-ce!20886
|
|/ / |
|
|\ \
| | |
| | |
| | |
| | | |
Backport CSS changes from gitlab-ee!6638
See merge request gitlab-org/gitlab-ce!20961
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Resolve "Clean up changelog for 11.1.3 and 11.1.4"
Closes #49837
[ci skip]
See merge request gitlab-org/gitlab-ce!20962
|
| |/ / |
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
Raise timeout for Karma tests to 2 seconds
See merge request gitlab-org/gitlab-ce!20963
|
| | | | |
|
|\ \ \ \
| |_|_|/
|/| | |
| | | |
| | | | |
Added gitlab-pages update instructions.
See merge request gitlab-org/gitlab-ce!19674
|
|/ / / |
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
Fix bug setting http headers in Files API
See merge request gitlab-org/gitlab-ce!20938
|
|/ / / |
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
'49499-list-of-projects-not-loading-when-trying-to-create-an-issue-from-a-board-typeerror' into 'master'
Resolve "List of projects not loading when trying to create an issue from a board (TypeError)"
Closes #49499
See merge request gitlab-org/gitlab-ce!20955
|
|/ / /
| | |
| | |
| | | |
board (TypeError)"
|
|\ \ \
| |/ /
|/| |
| | |
| | | |
Port of EE-translations
See merge request gitlab-org/gitlab-ce!20960
|
| |/
| |
| |
| |
| | |
New Crowdin translations
See merge request gitlab-org/gitlab-ee!6706
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | | |
Allow users to set a status
Closes #35463
See merge request gitlab-org/gitlab-ce!20614
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
Since the frontend for this feature isn't ready, better to hide the
confusing field behind a feature flag.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The status is shown for
- The author of a commit when viewing a commit
- Notes on a commit (regular/diff)
- The user that triggered a pipeline when viewing a pipeline
- The author of a merge request when viewing a merge request
- The author of notes on a merge request (regular/diff)
- The author of an issue when viewing an issue
- The author of notes on an issue
- The author of a snippet when viewing a snippet
- The author of notes on a snippet
- A user's profile page
- The list of members of a group/user
|
| | |
| | |
| | |
| | |
| | | |
This can be done trough the API for the current user, or on the
profile page.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This model will hold the status of a user, including these fields:
- emoji: always present, with a default value
- user: always present, foreign key to user
- message: optional, maximum length of 100
The table also stores
- cached_markdown_version
- message_html
For rendering markdown in the `message` field.
|
|\ \ \
| |_|/
|/| |
| | |
| | |
| | |
| | |
| | |
| | | |
'master'
Resolve "Making instance-wide data tools more accessible"
Closes #41416 and #48507
See merge request gitlab-org/gitlab-ce!20874
|
| | | |
|
| | | |
|
| |\ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
'41416-making-instance-wide-data-tools-more-accessible'
# Conflicts:
# app/models/application_setting.rb
# lib/api/settings.rb
|
| | | | |
|
| |\ \ \
| | | | |
| | | | |
| | | | | |
41416-making-instance-wide-data-tools-more-accessible
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Remove fixes for MR refactor regressions from master
See merge request gitlab-org/gitlab-ce!20920
|