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-08-26Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-05-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2022-01-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-08-23Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-06-28Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-05-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-24Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-04-30Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-01-27Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-19Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-12-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-08-30Replace rails_helper.rb with spec_helper.rbAsh McKenzie
rails_helper.rb's only logic was to require spec_helper.rb.
2019-05-20Fix specs to match route changesDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2019-01-12Update gitlab-styles to 2.5.1Jasper Maes
2018-10-02Show the commit-sha for pre-release versionsBob Van Landuyt
The pre-release tags are set at the beginning of a release, so it would be impossible to figure out which version was running if we're running nightlies. In that case it's better to still link to the SHA. These versions don't get deployed to .com.
2018-10-01Link to the tag from a version instead of commitBob Van Landuyt
This will result in a 404 when running an unreleased security patch while still allowing users to find the commit when it is made available.
2018-09-14Correct usage of the have_link matcherRobert Speicher
The second option to this matcher should be an options hash; anything else is just ignored, which can lead to false positives in tests. We see one such false positive in the "Learn more" link test in `spec/features/projects/blobs/blob_show_spec.rb`.
2018-05-24Replace Gitlab::REVISION with Gitlab.revision and handle installations ↵Rémy Coutable
without a .git directory Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-10-25Added ssh fingerprint, gitlab ci and pages information in an instance ↵Francisco Lopez
configuration page Closes #25142
2017-08-31`current_application_settings` belongs on `Gitlab::CurrentSettings`Sean McGivern
The initializers including this were doing so at the top level, so every object loaded after them had a `current_application_settings` method. However, if someone had rack-attack enabled (which was loaded before these initializers), it would try to load the API, and fail, because `Gitlab::CurrentSettings` didn't have that method. To fix this: 1. Don't include `Gitlab::CurrentSettings` at the top level. We do not need `Object.new.current_application_settings` to work. 2. Make `Gitlab::CurrentSettings` explicitly `extend self`, as we already use it like that in several places. 3. Change the initializers to use that new form.
2017-06-09Make the revision on the `/help` page clickableToon Claes
For quicker access, add hyperlink to the gitlab.com commits page for the current REVISION of GitLab.
2015-09-24Allow non-admin users to see version informationRobert Speicher
We want users to know what features they have available (and to pressure their admins to upgrade).
2015-09-23Move the `version_check_enabled` check from view to helperRobert Speicher
2015-09-23Add a view spec (gasp!) for help/indexRobert Speicher