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
2019-11-07Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-13Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-06-14fix(favicon): get favicon_path, so it works also with uploads object storeRoger Meier
2019-03-12Refactor Gitlab::Favicon for EEYorick Peterse
This moves the development favicon name in Gitlab::Favicon to a separate method, allowing EE to redefine it to return a custom favicon.
2018-10-22Enable frozen string for lib/gitlab/*.rbgfyoung
2018-09-24Use `Gitlab::SafeRequestStore` in more placesMichael Kozono
Even if it doesn’t save lines of code, since people will tend to use code they’ve seen. And `SafeRequestStore` is safer since you don’t have to remember to check `RequestStore.active?`.
2018-06-29Read asset host from ActionController::Base instead of application configDouwe Maan
2018-06-20Fix: Serve favicon image always from the main GitLab domain to avoid issues ↵Alexis Reigel
with CORS
2018-06-15Remove FaviconUploader favicon_main versionDouwe Maan
See https://gitlab.com/gitlab-org/gitlab-ce/issues/47677 for more information
2018-06-05dry up asset path helper callsAlexis Reigel
2018-06-05the '?' favicon hack doesn't seem to be requiredAlexis Reigel
probably due to recent changes in `UploadsController`.
2018-06-05remove favicon preview on appearance pageAlexis Reigel
2018-06-05remove all .ico favicon variations, use png alwaysAlexis Reigel
the ci status icons are generated client side, wo we don't need the static files anymore.
2018-06-05create favicon overlay on the clientAlexis Reigel
the initial reason for this change was that graphicsmagick does not support writing to ico files. this fact lead to a chain of changes: 1. use png instead of ico (browser support is good enough) 2. render the overlays on the client using the canvas API. this way we only need to store the original favion and generate the overlay versions dynamically. this change also enables (next step) to simplify the handling of the stock favicons as well, as we don't need to generate all the versions upfront.
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-05add request store caching to faviconAlexis Reigel
2018-06-05Add a '?' to the custom favicon's urlsAlexis Reigel
Without the '?' at the end of the favicon url the custom favicon (i.e. the favicons that are served through `UploadController`) are not shown in the browser. It may have something to do with how `#send_file` / `#send_data` set http headers. When serving the same icon file from the public directory everything is fine.
2018-06-05use custom favicon for ci build status faviconsAlexis Reigel
2018-06-05extract favicon logic to lib classAlexis Reigel