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
path: root/config
AgeCommit message (Collapse)Author
2017-04-28Merge branch 'grpc-fork-tests' into 'master' Sean McGivern
Unicorn worker termination tests See merge request !10818
2017-04-28Attempted adding separate clientside_sentry settingsLuke "Jared" Bennett
2017-04-28Implement ability to update hooksAlexander Randa
2017-04-28Merge branch 'master' into balsalmiq-supportLuke "Jared" Bennett
2017-04-28Resolve "Add more tests for spec/controllers/projects/builds_controller_spec.rb"Dosuken shinya
2017-04-27Fix webpack config conflicts bad resolutionLuke "Jared" Bennett
2017-04-27Adjust regex used in order to parse inline content.Ruben Davila
e.g: %h4 {{ __('foo') }} Problem was it was being parsed as: %h4 = _('foo') And the correct content should be: %h4= _('foo')
2017-04-27Merge branch 'master' into balsalmiq-supportLuke "Jared" Bennett
2017-04-27Add configurable timeout for git fetch and clone operationsChris Wilson
GitLab uses the import_project method in GitLab Shell, This method uses a timeout for the operation, hardcoded to 800 seconds. With this MR the timeout is now configurable in the gitlab_shell settings.
2017-04-26Adjust the patch for the gettext_i18n_rails and gettext_i18n_rails_js gems.Ruben Davila
This is more simple now given we're using the recommended code to annotate content to be translated.
2017-04-26Add test that asserts unicorns terminateJacob Vosmaer
2017-04-26Merge branch '12910-personal-snippet-prep-2' into 'master' Sean McGivern
Support preview_markdown action for personal_snippets See merge request !10810
2017-04-26Merge branch 'master' into 'balsalmiq-support'Luke "Jared" Bennett
# Conflicts: # config/webpack.config.js
2017-04-26Load milestone tabs asynchronouslyPhil Hughes
2017-04-26Merge branch 'master' into 'add-sentry-js-again-with-vue'Luke "Jared" Bennett
# Conflicts: # config/webpack.config.js
2017-04-26Support preview_markdown action for personal_snippetsJarka Kadlecova
2017-04-26Add ability to parse *.vue files through the `ruby gettext:find` scriptRuben Davila
2017-04-25Parse translate filters from JS files.Ruben Davila
2017-04-25Parse the translate-plural filter in HAML viewsRuben Davila
2017-04-25Merge branch 'js-translations' into 28433-internationalise-cycle-analytics-pageRuben Davila
Conflicts: config/initializers/gettext_rails_i18n_patch.rb
2017-04-25Monkey patch gettext_i18n_rails so it can parse content in Mustache formatRuben Davila
2017-04-24Merge branch 'test-pg' into 'master' Rémy Coutable
Test both PostgreSQL and MySQL for the win Closes #2582 See merge request !10156
2017-04-24Merge branch 'workhorse-secret-path' into 'master' Rémy Coutable
Make location of gitlab_workhorse_secret configurable See merge request !10357
2017-04-21Remove the ClearDatabaseCacheWorkerNick Thomas
2017-04-21Revert line being commented outPhil Hughes
2017-04-21Merge remote-tracking branch ↵Phil Hughes
'origin/28433-internationalise-cycle-analytics-page' into js-translations
2017-04-21Monkey patch gettext_i18n_rails so it can parse content in Mustache formatRuben Davila
2017-04-21Some small fixes for the current I18n implementationRuben Davila
2017-04-20Merge branch 'js-translations' into 28433-internationalise-cycle-analytics-pageRuben Davila
Conflicts: config/webpack.config.js
2017-04-20Merge remote-tracking branch ↵Phil Hughes
'origin/28433-internationalise-cycle-analytics-page' into js-translations
2017-04-20Merge remote-tracking branch 'upstream/master' into ↵Pawel Chojnacki
26914-add_deploy_history_data_source
2017-04-20Merge branch 'master' into 28433-internationalise-cycle-analytics-pageRuben Davila
Conflicts: db/schema.rb
2017-04-20Fix Rubocop complains plus some small refactorRuben Davila
2017-04-19Make location of gitlab_workhorse_secret configurableJakub Jirutka
Hard-coding location of configuration files is very bad practice. This patch applies the same approach as currently used for gitlab_shell_secret file.
2017-04-19Merge branch 'usage-ping-port' into 'master' Sean McGivern
Usage ping port Closes #27750 See merge request !10481
2017-04-19Remove special naming of pipelines folderFilipa Lacerda
2017-04-18Fixed missing textPhil Hughes
Fixed duplicated time in dropdown
2017-04-18Added Vue filters & directives for translatingPhil Hughes
2017-04-18Remove format from end of URL for URLs that take a ref or pathDouwe Maan
2017-04-15Issue Title Vue: convert to .vue - use 'render' with 'createElement' in indexRegis Boudinot
2017-04-15Started internationalising cycyle analyticsPhil Hughes
2017-04-15Removed rewire and fixed testsLuke "Jared" Bennett
2017-04-15Only rewire in devLuke "Jared" Bennett
2017-04-15Merge branch 'master' into 'add-sentry-js-again-with-vue'Luke "Jared" Bennett
# Conflicts: # app/views/layouts/_head.html.haml # config/webpack.config.js
2017-04-15Updated specs, added rewire, updated layouts to move conditional raven and ↵Luke "Jared" Bennett
gon to head
2017-04-15Turn on caching of classes in Knapsack specsStan Hu
Enabling caching of classes slows start-up time because all controllers are loaded at initialization, but it reduces memory and load because files are not reloaded with every request. For example, caching is not necessary for loading database migrations but useful for handling Knapsack specs. Addresses gitlab-org/gitlab-ee#2162
2017-04-14Don't use `send` in settings initializerSean McGivern
2017-04-14Remove unused user activities codeSean McGivern
2017-04-14Rename user cohorts -> cohortsSean McGivern
2017-04-14Add user cohorts table to admin areaSean McGivern
This table shows the percentage of users who registered in the last twelve months, who last signed in during or later than each of those twelve months, by month. It is only enabled when the usage ping is enabled, and the page also shows pretty-printed usage ping data. The cohorts table is generated in Ruby from some basic SQL queries, because performing the gap-filling and running sums needed in both MySQL and Postgres is painful.