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/lib
AgeCommit message (Collapse)Author
2015-09-17Merge branch 'restrict-user-api-integers' into 'master'Dmitriy Zaporozhets
Restrict users API endpoints to use integer IDs Closes #2267 See merge request !1156
2015-09-16Merge branch 'fix-nginx' into 'master'Kamil Trzciński
Add missing proxy requests to migration docs See merge request !1317
2015-09-16Add missing proxy requests to migration docsKamil Trzcinski
2015-09-16Merge branch 'ldap-attributes' into 'master'Robert Speicher
Allow configuration of LDAP attributes GitLab will use for the new user account. Fixes #2412. See merge request !1261
2015-09-16Fix update_runner_info helperKamil Trzcinski
2015-09-16Fix migrate tags statementKamil Trzcinski
2015-09-16Merge remote-tracking branch 'origin/master' into ↵Kamil Trzcinski
ci-and-ce-sitting-in-a-tree-k-i-s-s-i-n-g
2015-09-16Fix migrate taskKamil Trzcinski
2015-09-16Added migration docs and updated installation documentationKamil Trzcinski
2015-09-16Make code clearerDouwe Maan
2015-09-16Fix broken sort in merge request APIStan Hu
Closes #2266
2015-09-16Migrate CI servicesKamil Trzcinski
2015-09-16Add rake task for easy migration of SQL dumpsKamil Trzcinski
2015-09-16Fix backup testsKamil Trzcinski
2015-09-15Fix builds directory storeKamil Trzcinski
2015-09-15Use GitLab instead of GITLAB for rake taskKamil Trzcinski
2015-09-15Remove unused tasksKamil Trzcinski
2015-09-15Cleanup CI backup => migrate with GitLabKamil Trzcinski
2015-09-15fix specs. Stage 5Valery Sizov
2015-09-15fix specs. Stage 4Valery Sizov
2015-09-15fix specs. Stage 3Valery Sizov
2015-09-15Add rake task to migrate CI tagsKamil Trzcinski
2015-09-14fix specs. Stage 2Valery Sizov
2015-09-14rubocop satisfyValery Sizov
2015-09-14Fix IOError when fetching a new build by runnerKamil Trzcinski
2015-09-14Merge branch 'ci-and-ce-sitting-in-a-tree-k-i-s-s-i-n-g' of ↵Valery Sizov
gitlab.com:gitlab-org/gitlab-ce into ci-and-ce-sitting-in-a-tree-k-i-s-s-i-n-g
2015-09-14fix of APIValery Sizov
2015-09-11Merge branch 'master' into ci-and-ce-sitting-in-a-tree-k-i-s-s-i-n-gDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-09-11Remove network from CIDmitriy Zaporozhets
2015-09-11Merge branch 'rs-fix-highlighting' into 'master'Douwe Maan
Syntax highlighting improvements On the server side: During development I would occasionally see SanitizationFilter sanitizing the result of SyntaxHighlightFilter, even though its attributes were whitelisted. This updates the `clean_spans` transformer to return the whitelisted node as [suggested by the Sanitize docs](http://git.io/vZR8i). On the client side: - Makes the syntax_highlight JS more flexible - Adds JS specs - Simplifies highlighting of new notes - Adds highlighting to Markdown preview See merge request !1278
2015-09-11Add comments and clean up test for !1274Stan Hu
2015-09-10RU-BO-COOOOOOOOPRobert Speicher
2015-09-10Prevent result of SyntaxHighlightFilter being sanitizedRobert Speicher
2015-09-10Merge branch 'rescue-syntax-highlighting-errors' into 'master'Robert Schilling
Gracefully handle errors in syntax highlighting by leaving the block unformatted A bug in Rouge caused an Exception: ```undefined method `sub' for :Literal:Symbol``` That caused https://gitlab.com/embeddable-common-lisp/ecl/issues/156 to hit Error 500 and fail to display. If a failure occurs, just render the text as preformatted. Closes #2433 See merge request !1274
2015-09-10Added service API endpoint to retrieve service parametersPetheo Bence
2015-09-10Gracefully handle errors in syntax highlighting by leaving the block unformattedStan Hu
Closes #2433
2015-09-09Merge branch 'fix-emojis-relative-url' into 'master'Douwe Maan
Fix emoji URLs in Markdown when relative_url_root is used Path/URL helpers (e.g. `asset_url_helper`) already include the relative_url_root, so there is no need to attach it twice. Also adds the ability to run rspecs with relative_url_defined on the enviornment. For example: RELATIVE_URL_ROOT=/gitlab rspec Closes #1728 See merge request !1254
2015-09-09integration with gitlab authValery Sizov
2015-09-09Merge branch 'master' into ci-and-ce-sitting-in-a-tree-k-i-s-s-i-n-gDmitriy Zaporozhets
2015-09-09Move helpers back to original directoryDmitriy Zaporozhets
2015-09-09Shuffle config around a bitDouwe Maan
2015-09-09Merge branch 'nginx-git-http' into 'master'Dmitriy Zaporozhets
Do not let NGINX buffer Git HTTP requests Before this change NGINX would convert a chunked HTTP POST (e.g. git push) into a HTTP 1.0 single large POST. This creates an unnecessary delay, and it creates unnecessary memory pressure on gitlab-git-http-server. For the response ('proxy_buffering') I am less sure that NGINX 's buffering behavior is harmful, but it still makes more sense to me not to interfere with gitlab-git-http-server (and the Golang net/http server). See merge request !1256
2015-09-09FogBugz project importJared Szechy
2015-09-08Add attributes to LDAP::Config.Douwe Maan
2015-09-08Allow configuration of LDAP attributes GitLab will use for the new user account.Douwe Maan
2015-09-07The good stuff needs NGINX 1.7.11Jacob Vosmaer
2015-09-07Do not let NGINX buffer Git HTTP requestsJacob Vosmaer
Before this change NGINX would convert a chunked HTTP POST (e.g. git push) into a HTTP 1.0 single large POST. This creates an unnecessary delay, and it creates unnecessary memory pressure on gitlab-git-http-server. For the response ('proxy_buffering') I am less sure that NGINX 's buffering behavior is harmful, but it still makes more sense to me not to interfere with gitlab-git-http-server (and the Golang net/http server).
2015-09-07Merge branch 'url-builder-fix-for-relative-urls' into 'master'Dmitriy Zaporozhets
Fix URL construction for merge requests, issues, notes, and commits for relative URL config This MR fixes the constructor of URL links for systems using relative URLs in the application config. The `host` parameter was used improperly, supplying an extra path (e.g. https://mydomain.com/gitlab) and unnecessary scheme. We should be able to default to the URL options set in `8_default_url_options.rb` file. Closes https://github.com/gitlabhq/gitlabhq/issues/9605 See merge request !1250
2015-09-07Merge branch 'upgrade-redis-required-check' into 'master'Marin Jankovski
Upgrade Redis requirement check to 2.4.0 per https://github.com/mperham/sidekiq/pull/957 Closes #2222 Closes #2445 See merge request !1251
2015-09-06Fix emoji URLs in Markdown when relative_url_root is usedStan Hu
Also adds the ability to run rspecs with relative_url_defined on the enviornment. For example: RELATIVE_URL_ROOT=/gitlab rspec Closes #1728