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
2017-01-16Remove rerun since it's not used anymoreRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-01-16Merge branch 'sandish/gitlab-ce-update_ret_val' into 'master' Robert Speicher
Ensure updating project settings shows a flash message on success See merge request !8579
2017-01-16Add a spec and actually display the flash noticeRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-01-16Merge branch 'fix-deprecation-warning' into 'master' Rémy Coutable
Fix a API deprecation warning See merge request !8587
2017-01-16Merge branch 'dot-in-project-queries' into 'master' Rémy Coutable
Add a constraint on the query parameter to allow querying for projects with dots in their name. See merge request !8210
2017-01-16Fix a API deprecation warningRobert Schilling
2017-01-15Allow to use + symbol in filenamesblackst0ne
2017-01-15Add a constraint on the query parameter to allow querying for projects with ↵Bruno Melli
dots in their name.
2017-01-15Merge branch ↵Douwe Maan
'25018-gitlab-checks-changeaccess-looks-for-user-permissions-that-don-t-exist' into 'master' Resolve "`Gitlab::Checks::ChangeAccess` looks for user permissions that don't exist" Closes #25018 See merge request !8551
2017-01-14Merge branch '26587-metrics-middleware-endpoint-is-nil' into 'master' Yorick Peterse
Resolve "Metrics middleware: endpoint is nil" Closes #26587 See merge request !8544
2017-01-13Merge branch 'env-var-in-redis-config' into 'master' Rémy Coutable
Allow to use ENV variables in redis config See merge request !8073
2017-01-13Allow to use ENV variables in redis configSemyon Pupkov
2017-01-13Check for env[Grape::Env::GRAPE_ROUTING_ARGS] instead of endpoint.routeRémy Coutable
`endpoint.route` is calling `env[Grape::Env::GRAPE_ROUTING_ARGS][:route_info]` but `env[Grape::Env::GRAPE_ROUTING_ARGS]` is `nil` in the case of a 405 response Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-01-13API: Implement project issues iid param with IssuesFinder and add testsDavid Eisner
- Use IssuesFinder for the /issues API resouce - Tests for iid filter in project issues API resource - Tests for No Milestone filter in issues API resources The "No Milestone" case was not previously tested, and the `/issues` resource did not support the the `milestone` parameter. - Return issues where all labels match from the issues and project issues API resources, like the group issues resource already does. See https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6825#note_17474533 Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-01-13Adding 'IssueFinder' for 'projects' API endpointPanagiotis Atmatzidis
Current filtering for "/projects/:id/issues" endpoint returns no results for "No Milestone" query. This PR introduces fix by copying filtering from "/groups/:id/issues" which works as expected.
2017-01-13Remove useless permission checks in Gitlab::Checks::ChangeAccessRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-01-12Merge branch 'use-configured-git' into 'master' Douwe Maan
Use configured git rather thans system git See merge request !8460
2017-01-12Merge branch 'zj-unadressable-url-variables' into 'master' Douwe Maan
Do not check for valid url for .gitlab-ci.yml Closes #22970 See merge request !8451
2017-01-12Merge branch 'search-bar-first-iteration' into 'master' Jacob Schatz
Search bar first iteration Closes #21747 See merge request !7345
2017-01-12Merge branch 'Sanson/gitlab-ce-asciidoctor-plantuml' into 'master' Sean McGivern
Add support for PlantUML diagrams in Asciidoc. Closes #17603 See merge request !8537
2017-01-12Merge branch 'do-not-remove-autodeploy-directory-when-fetching-ci-templates' ↵Sean McGivern
into 'master' Do not remove "autodeploy" directory when fetching CI templates See merge request !8517
2017-01-12Add support for PlantUML diagrams in Asciidoc.Horacio Sanson
This MR enables rendering of PlantUML diagrams in Asciidoc documents. To add a PlantUML diagram all we need is to include a plantuml block like: ``` [plantuml, id="myDiagram", width="100px", height="100px"] -- bob -> alice : ping alice -> bob : pong -- ``` The plantuml block is substituted by an HTML img element with *src* pointing to an external PlantUML server. This MR also add a PlantUML integration section to the Administrator -> Settings page to configure the PlantUML rendering service and to enable/disable it. Closes: #17603
2017-01-11Fix Users API to accept confirm parameterMark Fletcher
2017-01-10Do not remove "autodeploy" directory when fetching CI templatesAdam Niedzielski
2017-01-10Fix Rubocop offenses in LDAP related code and specGrzegorz Bizon
2017-01-10Merge branch 'restore-backup-when-env-variable-is-passed' into 'master' Sean McGivern
Restore backup correctly when "BACKUP" environment variable is passed Closes #26090 See merge request !8477
2017-01-10Add username to gonClement Ho
2017-01-10Merge branch 'auto-pipelines-vue' into 'master' Fatih Acet
Pipelines Vue See merge request !7196
2017-01-09Use #parts instead of #part to read all the parts of the Message.Ruben Davila
Looks like I was accidentally using #part which was adding an extra empty Mime section
2017-01-09Merge branch 'master' into auto-pipelines-vueRegis
2017-01-09Restore backup correctly when "BACKUP" environment variable is passedAdam Niedzielski
2017-01-09Merge branch '19086-double-newline' into 'master' Sean McGivern
Fix Double Spaced CI Log Closes #19086 See merge request !8349
2017-01-09Merge branch 'feature/log-ldap-to-application-log' into 'master' Rémy Coutable
Log LDAP blocking/unblocking events to application log See merge request !8042
2017-01-09Merge branch '26051-fix-missing-endpoint-route-method' into 'master' Rémy Coutable
Don't instrument 405 Grape calls Closes #26051 See merge request !8445
2017-01-09Merge branch 'track_last_used_date_of_ssh_keys' into 'master' Sean McGivern
Record and show last used date of SSH Keys See merge request !8113
2017-01-09Don't instrument 405 Grape callsRémy Coutable
Fixes #26051. Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-01-08Record and show last used date of SSH KeysVincent Wong
Addresses: Issue #13810 1. Adds a last_used_at attribute to the Key table/model 2. Update a key's last_used_at whenever it gets used 3. Display how long ago an ssh key was last used
2017-01-06Merge branch 'fix-users-api-500-error' into 'master' Rémy Coutable
Fix 500 errors when creating a user with identity via API Closes #26295 See merge request !8442
2017-01-06LDAP attributes needs default valuesDrew Blessing
2017-01-05Do not check for valid url for .gitlab-ci.ymlZ.J. van de Weg
Until this commit, GitLab would check if the URL in your .gitlab-ci.yml would be valid and adressable. However, this approach is rather limited. To begin, the URL couldn't be http://example:$PORT/my-project, as the PORT value would be interpolated after checking if the URL was valid, which its not. Also this gem will limit the amount of protocols allowed. This commit doesn't check, at all, if the URL is valid. This is now the responsablilty of the user. In my opion this is right, as the user ultimately benefits from a correct URL, but also, its impossible to cover all cases.
2017-01-05Merge branch 'master' into auto-pipelines-vueFilipa Lacerda
* master: (35 commits) Adds back removed class in merge request pipelines table Fix dropdown icon alignment Simplify HTML of mini pipeline graph and dropdown Creates individual html for dropdown Adds simplified CSS for the new dropdown Removes old CSS Improves dropdown item in Chrome, Firefox and Safari Use SCSS variables for colors. Fix scss linter errors Adds animation when the stage is hovered. Adds back tooltip on dropdown toggle Fixes broken tests additional css changes to get more into direction of mockups Adds CHANGELOG entry Removes unneeded `window` declaration Decreases font-size on login page Ensure internal Gitlab::Git references use the namespace Absorb gitlab_git Fix review comments. Add spec for note edit and fix one commented spec. Review fixes. Use gl.utils.isInViewport and improve gl.utils.animateToElement. Make sure elements share the same scope Hide edit warning element when form reverted. Remove unnecessary styling came from merge conflicts. Fix single note edit form specs. Separate edit form in Changes and Discussions tab. Fix warning styling for responsive design. Fix task list for single edit note widget changes. Fix notes spec. ...
2017-01-05Merge branch ↵Rémy Coutable
'19966-api-call-to-move-project-to-different-group-fails-when-using-group-and-project-names-instead-of-id' into 'master' Fix groups API to accept path when transferring a project Closes #19966 See merge request !8408
2017-01-05Merge branch ↵Rémy Coutable
'26261-post-api-v3-projects-idorproject-commits-commits-does-not-work-with-project-path' into 'master' Fix Commits API to accept a Project path upon POST Closes #26261 See merge request !8406
2017-01-05Use configured git rather than system gitRobert Schilling
2017-01-05Fix the failing spec in POST /users APIRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-01-05Merge branch 'rs-absorb-gitlab_git' into 'master' Douwe Maan
Absorb gitlab_git Closes #24374 See merge request !8447
2017-01-05Merge branch 'zj-404-slack-error' into 'master' Kamil Trzciński
Add API route slack slash commands Closes #25954 See merge request !8362
2017-01-05Ensure internal Gitlab::Git references use the namespaceRobert Speicher
2017-01-05Absorb gitlab_gitRobert Speicher
2017-01-04Merge branch 'master' into auto-pipelines-vueRegis