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-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-01-20Add latest changes from gitlab-org/gitlab@13-8-stable-eev13.8.0-rc42Robert Speicher
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-06-18Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot
2019-09-17Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-05-22Fix page_description helper performanceSean McGivern
This helper is used for extracting part of the issue / MR / whatever description for use in the description meta tag: 1. To do that, we look at the source of the Markdown description. 2. We then strip out all HTML tags. 3. And then take the first 30 words. Doing that can be really slow - especially as Markdown is supposed to be treated as plain text. There are many better ways to do this, but the immediate performance fix is to swap steps 2 and 3. This does mean that the description may be less than 30 words (or even empty), but it is much faster when the description is very long.
2018-11-01Fix typos in comments and specsGeorge Tsiolis
2018-09-07Enable frozen string for app/helpers/**/*.rbgfyoung
Partially addresses #47424.
2018-06-05call Gitlab::Favicon.status in serializerAlexis Reigel
this ways we can keep the `lib/gitlab/ci/status/*` classes to return the bare favicon name as it was before. also the favicon uploader versions are now have the same names as the stock favicons (+ `favicon_` prefix), which makes working with the status names easier.
2018-06-05extract favicon logic to lib classAlexis Reigel
2018-06-05use custom main faviconAlexis Reigel
2018-03-27Update styling and use Gitlab::Utils.to_booleanEric Eastwood
2018-03-27Merge branch 'master' into add-canary-faviconEric Eastwood
2017-09-26Add Page-Title header to tree and blob JSON endpointsDouwe Maan
2017-09-06removed show_new_nav? referencesPhil Hughes
2017-09-06Merge branch 'master' into breadcrumbs-improvementsPhil Hughes
2017-09-06Clean up new navigation templatesPhil Hughes
2017-09-06fixed up JS to use a js-* classPhil Hughes
fixed up Ruby based on review
2017-08-18updated a bunch of breadcrumb titlesPhil Hughes
[ci skip]
2017-07-14use `.last` insteadPhil Hughes
2017-07-12moved `@breadcrumb_title` out of the HAML & into a helper methodPhil Hughes
2017-07-12moved declaration of `breadcrumb_title` into `page_title` methodPhil Hughes
`breadcrumb_title` is then overriden when needed
2017-06-27Add temporary CANARY env vars to be set in ↵Luke "Jared" Bennett
Kubernetes-with-canary.gitlab-ci.yml and used in page_layout_helper.rb
2017-02-15dev favicon is blue, not purpleSimon Knox
2017-02-15override favicon for development to find tabs more easilySimon Knox
2016-09-20ensure the 'fixed layout' preference is honored whenever possibleMike Greiling
see #22343 for issue description
2016-06-29Enable Style/SpaceAfterComma Rubocop copGrzegorz Bizon
2016-04-19Implement top navigation concept for profile areaDmitriy Zaporozhets
Main idea is to keep left sidebar static so user is not confused by changing context. Instead we put changing navigation with changing content in one main block Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-01-06Don't override issue page description in project layout.Douwe Maan
2016-01-05Make `page_description` less magical :sparkles:Robert Speicher
2016-01-05Use `User#avatar_url` instead of `avatar_icon` helperRobert Speicher
2015-12-25Add Open Graph data for group, project and commit.Douwe Maan
2015-12-25Add support for `twitter:label` meta tagsRobert Speicher
2015-12-25Truncate page_description to 30 wordsRobert Speicher
2015-12-24Account for `@project.description` being nilRobert Speicher
2015-12-24Add page descriptions and imagesRobert Speicher
A limited number of pages have defined their own descriptions, but otherwise we default to the Project's description (if `@project` is set), or the old `brand_title` fallback. The image will either be the uploaded project icon (never a generated one), the user's uploaded icon or Gravatar, or, finally, the GitLab logo.
2015-12-02Separate page title segments by middot rather than pipeDouwe Maan
2015-10-05improved code style and layout option namingPeter Göbel
2015-10-05added user preference to change layout widthPeter Göbel
2015-09-10Fix fixed layoutDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-09-10Style panels and add blank containerDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-08-26Limit content width for big screens except certain pagesDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-05-01Add helpers for header title and sidebar, and move setting those from ↵Douwe Maan
controllers to layouts.