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-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-09-19Add latest changes from gitlab-org/gitlab@13-4-stable-eeGitLab Bot
2020-07-20Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot
2020-02-03Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2018-10-30Make Highlight accept language paramMark Chao
This replaces the repository param. This allows more flexiblity as sometimes we have highlight content not related to repository. Sometimes we know ahead of time the language of the content. Lastly language determination seems better fit as a logic in the Blob class. `repository` param is only used to determine the language, which seems to be the responsiblity of Blob.
2018-07-23Display GPG status on repository and blob pagesWinnie Hellmann
2018-05-29Replace well-list with content-list and hover-listAnnabel Dunstone Gray
2018-05-08Merge branch 'master' into bootstrap4Clement Ho
2018-04-27Replace time_ago_in_words with JS-based oneTakuya Noguchi
2018-04-20Add .nav.nav-tabs to nav-linksClement Ho
2018-04-13[skip ci] Convert btn-xs to btn-smClement Ho
2018-04-10[skip ci] Convert panel related class names to cardClement Ho
2018-04-09[skip ci] Replace .pull-right with .float-rightClement Ho
2018-04-09Add badge-pill to .badge in hamlClement Ho
2017-02-09Use a new class to keep old behaviorFilipa Lacerda
2016-12-31HAMLLint: Fix `SpaceInsideHashAttributes` offencesKushal Pandya
2016-12-31HAMLLint: Fix `HtmlAttributes` offencesKushal Pandya
2016-06-07Use better_errors editor links in sherlockAlejandro Rodríguez
Remember to configure your `better_errors` editor to point to your program of preference
2016-05-05Start builds redesignAnnabel Dunstone
2016-01-18Replaced "td" with "th" in the Sherlock SQL listYorick Peterse
2016-01-13Replace all navigation menu with nav-links classDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-11-24Added total query time to SherlockYorick Peterse
This makes it easier to see if a problem is caused by slow queries or slow Ruby code (unrelated to any SQL queries that might be used).
2015-11-09Truncate transaction paths to 70 charactersYorick Peterse
This ensures that long URLs don't completely mess up the layout of the table.
2015-11-09Track the amount of times views are renderedYorick Peterse
2015-11-09Added Sherlock, a custom profiling tool for GitLabYorick Peterse
Sherlock will be a new GitLab specific tool for measuring the performance of Rails requests (and SideKiq jobs at some point). Some of the things that are currently tracked: * SQL queries along with their timings, backtraces and query plans (using "EXPLAIN ANALYZE" for PostgreSQL and regular "EXPLAIN" for MySQL) * Timings of application files (including views) on a per line basis * Some meta data such as the request method, path, total duration, etc More tracking (e.g. Rugged or gitlab-shell timings) might be added in the future. Sherlock will replace any existing tools we have used so far (e.g. active_record_query_trace and rack-mini-profiler), hence the corresponding Gems have been removed from the Gemfile. Sherlock can be enabled by starting Rails as following: ENABLE_SHERLOCK=1 bundle exec rails s Recorded transactions can be found at `/sherlock/transactions`.