- 10 May, 2016 1 commit
-
-
Grzegorz Bizon authored
-
- 09 May, 2016 7 commits
-
-
Grzegorz Bizon authored
-
Rémy Coutable authored
Use the proper GitLab URL for links in Wiki Fixes gitlab-org/gitlab-ce#17071 wiki links are proper compiled, e.g. ``` [same-level](same-level) -> <a href="same-level">same-level</a> [sub-level](sub/level) -> <a href="sub/level">sub-level</a> [upper-level](../upper-level) -> <a href="../upper-level">upper-level</a> ``` See merge request !4026
-
Dmitriy Zaporozhets authored
Remove `wall_enabled` field from Project See merge request !4089
-
Artem Sidorenko authored
-
Yorick Peterse authored
Improve multiple branch push performance by memoizing permission checking See merge request !4091
-
Rémy Coutable authored
Pass trusted_proxies to action_dispatch as IPAddrs instead of strings Without this setting your own trusted_proxies does not work. Fixes an issue introduce in: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/3524 Fixes: https://gitlab.com/gitlab-org/gitlab-ce/issues/17004 See merge request !3970
-
Stan Hu authored
If you attempt to push thousands of branches at once, the 60-second timeout will occur because GitAccess checking does a lot of work to check if the user has permission to push to a branch. This changes does two things: 1. Instead of making 1 DB query per branch push, use a memoized list of protected branches to check 2. Memoize what permissions the user has to perform on this project On a test of 10,000 branch pushes, this prevents gitlab-shell from hitting the 60-second timeout. Closes #17225
-
- 08 May, 2016 9 commits
-
-
Robert Speicher authored
Escape HTML in commit titles in system note messages Closes #17348 See merge request !4084
-
Stan Hu authored
Fix build notification on merge request page change even if the build status didn't change ## What does this MR do? This MR contains a bugfix for #17357 which was introduced by !3998. The notification are now only shown on status changes, and not when switching between different merge requests. ## Are there points in the code the reviewer needs to double check? Check implementation ## Why was this MR needed? Because auf a bug introduced in !3998. ## What are the relevant issue numbers? #17357 Closes #17357 See merge request !4086
-
Robert Speicher authored
-
Benedikt Huss authored
-
Achilleas Pipinellis authored
docs(api): adapted user API documentation to match with latest API The user API documentation and the actual implementation were out of sync, missing certain newly introduced fields and beeing inconsistent between certain API definitions. The documentation was changed according the actual latest implementation. Signed-off-by: Fabio Huser <fabio@fh1.ch> See merge request !4067
-
Achilleas Pipinellis authored
blost -> blog See merge request !4063
-
Achilleas Pipinellis authored
Update CI example docs. Docs for CI examples are updated as follows: - Fix a dead link from CI example top to `dpl` - Specify Django for a Python project, not Rails - Use the latest Python Docker image as [Heroku supports only Python 3.5.1 (and 2.7.11)](https://devcenter.heroku.com/articles/python-support) - Show the latest Docker Hub URL links. See merge request !4082
-
Achilleas Pipinellis authored
Update Docker Hub and Engine links 1. Update all links to Docker Hub. 2. Update or rename Docker with Docker Engine. See merge request !4083
-
Dmitriy Zaporozhets authored
We're hiring. Help with recruiting, saw it in other readme's too. See merge request !4080
-
- 07 May, 2016 8 commits
-
-
Robert Speicher authored
Update SVG sanitizer to conform to SVG 1.1 Original SVG sanitizer would strip out necessary elements and attributes. Use a custom Loofah scrubber since sanitize 2.x transformers are inadequate to handle case-sensitive SVG attributes since they parse documents as HTML instead of XML, which causes all SVG attribute names (e.g. `viewBox`) to be downcased. * SVG element list: https://www.w3.org/TR/SVG/eltindex.html * SVG attribute list: https://www.w3.org/TR/SVG/attindex.html Closes #14555 See merge request !3401
-
Stan Hu authored
Closes #17348
-
Stan Hu authored
Reduce delay in destroying a project from 1-minute to immediately This 1-minute delay was causing confusion among customers. Was there a reason this needed to be 1 minute? See merge request !3997
-
Stan Hu authored
Run ProjectDestroyWorker after pending_delete attribute has been committed to DB
-
Stan Hu authored
Use a custom Loofah scrubber since sanitize 2.x transformers are inadequate to handle case-sensitive SVG attributes. sanitize parses documents as HTML instead of XML, which causes all SVG attribute names (e.g. viewBox) to be downcased. * SVG element list: https://www.w3.org/TR/SVG/eltindex.html * SVG attribute list: https://www.w3.org/TR/SVG/attindex.html Closes #14555
-
Takuya Noguchi authored
-
Takuya Noguchi authored
-
Takuya Noguchi authored
-
- 06 May, 2016 15 commits
-
-
Dmitriy Zaporozhets authored
Make group settings button white instead of gray for better visibility Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> cc @annabeldunstone @skyruler See merge request !4078
-
Sytse Sijbrandij authored
-
Dmitriy Zaporozhets authored
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
Dmitriy Zaporozhets authored
Add nice new Todo bell ![H5bp___Html5_Boilerplate___GitLab](/uploads/e8725396a5d77a8db09742f977595605/H5bp___Html5_Boilerplate___GitLab.png) ![H5bp___Html5_Boilerplate___GitLab](/uploads/011a21ee1653502c4f78543e28d97b67/H5bp___Html5_Boilerplate___GitLab.png) ![H5bp___Html5_Boilerplate___GitLab](/uploads/0858cb9621463ef6a32237fcb0b4f63d/H5bp___Html5_Boilerplate___GitLab.png) Fixes: #15671 See merge request !4077
-
Dmitriy Zaporozhets authored
Move group settings navigation to own partial A bit of refactoring for !3980 Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> See merge request !4076
-
Jacob Schatz authored
Align code within links in comments Closes #17343 <img src="/uploads/78e03c1dc0e99c7bdb686d9d120a4525/Screen_Shot_2016-05-06_at_9.28.26_AM.png" width="800px"> See merge request !4073
-
Jacob Schatz authored
-
Dmitriy Zaporozhets authored
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
Robert Speicher authored
Annotate models See merge request !4071
-
Robert Speicher authored
Update db/schema.rb after running db:migrate:reset See merge request !4074
-
Dmitriy Zaporozhets authored
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
Annabel Dunstone authored
-
Dmitriy Zaporozhets authored
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
-
Dmitriy Zaporozhets authored
Redesign navigation for group pages Part of #14838. This MR targets on desktop version. Mobile version improvements will be in separate merge request See merge request !3980
-
Douwe Maan authored
Auto-set title for branches created from issues This sets the title for a new MR to 'Resolves "$issue-title"' when: - The source branch for the MR begins with a value iid. - The MR has more than one commit in its diff (if there's one commit, keep using the commit's first line). - The iid does not point to a confidential issue. Single commit: ![A single commit uses the commit title](/uploads/cd34f59cd67f095c3034fae07950f8b5/image.png) Multiple commits: ![Multiple commits use the issue title](/uploads/a322c406ddd56913c5aebd88d16e5a5e/image.png) Confidential issue: ![A confidential issue uses the branch name](/uploads/7ae9b79de5f6101ced46802f3c3a6e71/image.png) cc @DouweM @zj Closes #14564 See merge request !3966
-