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-09-20Add latest changes from gitlab-org/gitlab@15-4-stable-eev15.4.0-rc42GitLab Bot
2022-06-20Add latest changes from gitlab-org/gitlab@15-1-stable-eev15.1.0-rc42GitLab Bot
2022-04-20Add latest changes from gitlab-org/gitlab@14-10-stable-eev14.10.0-rc42GitLab Bot
2021-12-20Add latest changes from gitlab-org/gitlab@14-6-stable-eev14.6.0-rc42GitLab Bot
2021-11-18Add latest changes from gitlab-org/gitlab@14-5-stable-eev14.5.0-rc42GitLab Bot
2021-10-20Add latest changes from gitlab-org/gitlab@14-4-stable-eev14.4.0-rc42GitLab Bot
2021-07-20Add latest changes from gitlab-org/gitlab@14-1-stable-eev14.1.0-rc42GitLab 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
2020-10-21Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42GitLab Bot
2020-05-20Add latest changes from gitlab-org/gitlab@13-0-stable-eeGitLab Bot
2020-04-15Add latest changes from gitlab-org/gitlab@12-10-stable-eeGitLab Bot
2019-11-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-05-05Run rubocop -a on CE filesStan Hu
2019-04-04Use Rack::Utils.clean_path_info instead of copy-pasted version.Vasiliy Ermolovich
2019-02-12Update RE used to prefix links with /help/Frank Sauerburger
Update the regular expression in the help controller used to prefix relative links on the help page with /help/. As suggested by @rymai, the look-ahead pattern to detect external links is simplified from `[a-zA-Z0-9.+-]` to `\w`.
2019-02-12Fix broken links on help pageFrank Sauerburger
Update the help controller to correctly handle relative links on the help pages when the relative link is before an external link on the same line in the markdown file. Test cases have been implement to check for - relative links before external link on same line, - HTTPS in query part of link, - URLs without '//' and - protocol-relative links.
2018-09-19Enable frozen string in app/controllers/**/*.rbgfyoung
Enables frozen string for the following: * app/controllers/*.rb * app/controllers/admin/**/*.rb * app/controllers/boards/**/*.rb * app/controllers/ci/**/*.rb * app/controllers/concerns/**/*.rb Partially addresses #47424.
2018-01-31Enable RuboCop Style/RegexpLiteralTakuya Noguchi
2017-10-25Added ssh fingerprint, gitlab ci and pages information in an instance ↵Francisco Lopez
configuration page Closes #25142
2017-09-19Do not show YAML frontmatter for doc pages under /helpAchilleas Pipinellis
We recently started adding YAML frontmatter in docs so that we can show more information, but that only works for the docs portal at docs.gitlab.com. For example, we want to add a last_updated entry https://gitlab.com/gitlab-org/gitlab-ce/issues/37677 Whereas this is useful for the docs portal, it looks ugly for docs under /help.
2017-02-10Don't perform Devise trackable updates on blocked User recordsRobert Speicher
2016-12-01Fix URL rewritting in the Help sectionRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-11-20Fix broken external links in help/index.htmlDavid Wagner
An external link was recently added but was broken because 'https://gitlab.com/help/' was prepended to every link in the page. Since no link in the main help readme begins with "help" and since doing so wouldn't make sense, the substitution conditionaly prepending "help" can be simplified and reused. Signed-off-by: David Wagner <david@marvid.fr>
2016-11-12fix error links in help pageFu Xu
2016-07-27Replace reject_blocked with reject_blocked! in callbacks.Connor Shea
In Rails 4.2 and below, skipping callbacks (skip_before_action, skip_after_action, etc.) that use methods which do not exist will not throw any errors. On the other hand, Rails 5 does. See https://github.com/rails/rails/pull/19029 After testing with Rails 5 I noticed there are some methods that don't actually exist (because they were renamed, usually), this fixes a few instances of those. reject_blocked! was introduced in c9def945d4222eeb8026a0311495259bf99267a1, I can't find any references to reject_blocked ever existing.
2016-07-20Remove VideoJS and clean the integrationRémy Coutable
Handle videos in: - MD preview in notes: commit, issue/MR, MR diff - New notes in: commit, issue/MR, MR diff - Persisted notes in: commit, issue/MR, MR diff Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-07-11Clean path infoConnor Shea
2016-07-11Update the help_page_path route to accept paths directly instead of using ↵Connor Shea
parameters.
2016-04-16Simplify random user generation.Jacob Schatz
2016-04-16Make a user available for the user variableJacob Schatz
2015-09-23Simplify help path prefixingRobert Speicher
2015-09-23Prevent double-prefixing of help page pathsRobert Speicher
Prior, because the link "api/README.md" was matched twice, the first link became "help/help/api/README.md". Now we do a negative lookahead to make sure the link doesn't start with `help/`. This fix is still not ideal, see TODO note.
2015-09-08Make Help accessible for guests.Douwe Maan
2015-08-18Use File.join instead of Rails.root.join in HelpControllerRobert Speicher
2015-05-01Add helpers for header title and sidebar, and move setting those from ↵Douwe Maan
controllers to layouts.
2015-04-30Set head panel title of help section.Douwe Maan
2015-04-30Add a page title to every page.Douwe Maan
2015-04-15Loosen help page parameter constraints for categoryRobert Speicher
2015-04-15Re-fix image rendering for help pagesRobert Speicher
2015-04-15Revert "Fix and improve help rendering"Robert Speicher
This reverts commit d365004e684e98459061fcd5fbaf9bea880934a8.
2015-04-14Add explanation to HelpController#clean_path_info.Douwe Maan
2015-04-10Fix directory traversal vulnerability around help pages.Douwe Maan
2015-04-03Fix and improve help renderingSullivan SENECHAL
2015-03-09Add GitLab UI development kitDmitriy Zaporozhets
2014-06-14Remove garbage and apply wiki styleDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-05-29render items from docJob van der Voort
2013-06-30Show shotcut dialog on ?Dmitriy Zaporozhets
2013-06-06Improve api docsDmitriy Zaporozhets