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
2017-12-22Replace '.team << [user, role]' with 'add_role(user)' in specsblackst0ne
2017-11-02Remove authentication using user.private_tokenDouwe Maan
2017-08-21Fix Error 500s when viewing user or group Atom feedsStan Hu
2017-08-03Change all `:empty_project` to `:project`Robert Speicher
2017-07-27Use `empty_project` where possible in spec/features/atomRobert Speicher
2017-07-27Remove superfluous type defs in specsKeifer Furzland
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-07-06Merge branch 'master' into rs-sign_inRobert Speicher
2017-07-06Auto-correct ProjectPathHelper violationsRobert Speicher
2017-07-05Create and use project path helpers that only need a project, no namespaceDouwe Maan
2017-06-29Change gitlab_sign_in to sign_in where possibleRobert Speicher
2017-06-21Enable Style/DotPosition Rubocop :cop:Grzegorz Bizon
2017-06-20Change `login_with` uses to `gitlab_sign_in`Robert Speicher
Change single `login_via` use to `gitlab_sign_in_via`
2017-05-24use full caps RSS instead of rssAlexis Reigel
2017-05-24atom links with rss token instead of private tokenAlexis Reigel
2017-05-05[Multiple issue assignees] Fix issue atom feedValery Sizov
2017-05-04Backport of multiple_assignees_feature [ci skip]Valery Sizov
2017-04-28Pull preserve into render helpersDouwe Maan
2017-03-21Merge branch '28058-hide-emails-in-atom-feeds' into 'security'Rémy Coutable
Only show public emails in atom feeds See merge request !2066
2017-03-06Use native unicode emojisEric Eastwood
- gl_emoji for falling back to image/css-sprite when the browser doesn't support an emoji - Markdown rendering (Banzai filter) - Autocomplete - Award emoji menu - Perceived perf - Immediate response because we now build client-side - Update `digests.json` generation in gemojione rake task to be more useful and include `unicodeVersion` MR: !9437 See issues - #26371 - #27250 - #22474
2017-02-27Merge branch '20890-comment-image-inline' into 'master' Robert Speicher
Fix inline comment images by removing wrapper #20890 Closes #20890 See merge request !5804
2017-02-23Revert "Prefer leading style for Style/DotPosition"Douwe Maan
This reverts commit cb10b725c8929b8b4460f89c9d96c773af39ba6b.
2017-02-23Prefer leading style for Style/DotPositionDouwe Maan
2017-02-23Enable Style/ColonMethodCallDouwe Maan
2016-11-03Issues atom feed url reflect filters on dashboardLucas Deschamps
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-10-16Add RTL support to markdown rendererEbrahim Byagowi
2016-08-14Fix inline comment images by removing wrapper #20890Jared Deckard
2016-08-09fixes part1 of files to start using active tensetiagonbotelho
2016-06-27Wrap images in divs with Banzai and limit max-height.Connor Shea
Add max-height to prevent images from displaying larger than the provided screen size. Also fix a failing test and add a new one.
2016-06-13Apply reviewer notes: update CHANGELOG, adjust code formattingAlexander Matyushentsev
2016-06-13Move issue rendering tests into separate contextsAlexander Matyushentsev
2016-06-13Add more information into RSS fead for issuesAlexander Matyushentsev
2016-04-05Wrap images in discussions and wikis with a link to the image source using ↵connorshea
ImageLinkFilter. Resolves #14411. See merge request !3464
2015-12-14Move CI admin builds and runners specs to correct directory [ci skip]Kamil Trzcinski
2015-12-14Merge branch 'ci-project-migrate' into 'master' Kamil Trzciński
Ci Project migrate - This doesn't migrate: allow_git_fetch, coverage_regex, timeout. Since this are project configuration settings I would propose to migrate them to `.gitlab-ci.yml`. - This requires offline migrations. - It simplifies database models making all CI objects to be attached to: Project. - It removes Ci::Project, but makes /ci/projects working by adding method: Project.find_by_ci_id for backward compatibility (badges, triggers). - We should add default `timeout` to Application Settings. - It misses specs. - It is based on ci-services-migrate for now. - It removes CI events. - It removes administrator CI projects overview. - It removes CI application settings. In 8.4 or 8.5 we can remove redundant tables and columns. See merge request !1987
2015-12-11Migrate CI::Project to ProjectKamil Trzcinski
2015-12-11Revert "Merge branch 'remove-redcloth' into 'master' "Douwe Maan
This reverts commit e426c027b0a2a3aa0dea1d833008f2bfd814f483, reversing changes made to c3676aa156981092b7f03f1a3e74bb819cfa2fc3.
2015-12-09Fix specDouwe Maan
2015-09-08Use new routing helperDouwe Maan
2015-06-23Fix Style/AlignHash cop violationsStan Hu
2015-03-17Merge branch 'atom-xhtml-squashed' into 'master'Douwe Maan
Fix invalid Atom feeds when using emoji, horizontal rules, or images This is a fix for issues #880, #723, #1113. Markdown must be rendered to XHTML, not HTML, when generating summary content for Atom feeds. Otherwise, content-less tags like *img* and *hr* are not terminated and make the Atom XML invalid. Such tags are generated when issue descriptions, merge request descriptions, comments, or commit messages use emoji, horizontal rules, or images. To pass this option through from the relevant Haml templates to the proper place in the `gfm()` method, a new method `gfm_with_options()` is introduced. It reuses the options dictionary passed to `markdown()` and interprets options `xhtml` and `parse_tasks` from it (the latter was a convenient replacement for `gfm_with_tasks()`). `xhtml` is already interpreted by Redcarpet::Render::HTML, but that alone was not sufficient, because the post-processing in `gfm()` would convert its XHTML tags back to HTML. I found no way of passing additional optional options to the existing `gfm()` method without requiring updates to existing callers and without getting in the way of the existing optional arguments, but maybe someone who knows more about Ruby than I can think of one. Thorough review appreciated since this is the first time I have used Ruby. See merge request !344
2015-03-17Fix invalid Atom feeds when using emoji, horizontal rules, or images.Christian Walther
Fixes issues #880, #723, #1113: Markdown must be rendered to XHTML, not HTML, when generating summary content for Atom feeds. Otherwise, content-less tags like <img> and <hr>, generated when issue descriptions, merge request descriptions, comments, or commit messages use emoji, horizontal rules, or images, are not terminated and make the Atom XML invalid.
2015-02-14Upgrade to Rails 4.1.9Vinnie Okada
Make the following changes to deal with new behavior in Rails 4.1.2: * Use nested resources to avoid slashes in arguments to path helpers.
2015-02-12Even more hound fixesJeroen van Baarsen
Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
2015-02-12Updated rspec to rspec 3.x syntaxJeroen van Baarsen
Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
2015-01-28Fix random failing testDmitriy Zaporozhets
2015-01-04make sure the user.name is escapedJeroen van Baarsen
Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
2014-12-04Feature: atom feed for user activityDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-09-26Remove unnecessary page. from tests.Ciro Santilli
2014-09-20Increase atom feed test coverage. Prevent 500 error if description is missingDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-04-13Split feature tests out to different build jobJeroen van Baarsen