summaryrefslogtreecommitdiff
path: root/features
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | Add feature specs for build erase buttonGrzegorz Bizon2016-02-193-0/+25
| | | | |
* | | | | Merge branch 'fix/project-forks-page' into 'master' Douwe Maan2016-02-192-0/+13
|\ \ \ \ \ | |_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | workaround for forks with an invalid repo Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/13465 The error occurs when a project returns a `nil` commit for a variety of reasons, I assume the repository is corrupt - perhaps as a result of a failed fork. With this MR, we do not show forks with corrupted repos in the list of forks, as this does not seem to work anyway. A better solution is to fix the cause of the issue and/or any data integrity problem... Also fixing Sentry issue: 1180 `undefined method 'already_forked?' for nil:NilClass ` See merge request !2836
| * | | | updated fix based on MR feedbackJames Lopez2016-02-172-6/+1
| | | | |
| * | | | Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into ↵James Lopez2016-02-175-1/+40
| |\ \ \ \ | | | | | | | | | | | | | | | | | | fix/project-forks-page
| * | | | | workaround for forks with an invalid repo - avoid showing them in the listJames Lopez2016-02-162-0/+18
| | | | | |
* | | | | | Add ability to see and sort on vote count from Issues and MR listssee-and-sort-on-vote-count-mr-issuesDouglas Barbosa Alexandre2016-02-175-0/+144
| |/ / / / |/| | | |
* | | | | sporadic spec fixspec_fixValery Sizov2016-02-161-0/+2
| |_|_|/ |/| | |
* | | | Fix the "x of y" displayed at the top of Issuables' sidebarfix/13356-issuable-index-of-total-in-sidebarRémy Coutable2016-02-154-1/+38
|/ / / | | | | | | | | | | | | | | | | | | | | | 1. We now display the index of the current issuable among all its project's issuables, of the same type and with the same state. 2. Also, refactored a bit the Issuable helpers into a new IssuablesHelper module. 3. Added acceptance specs for the sidebar counter.
* | | Add spinach tests for award emojifix-me-me-me-meStan Hu2016-02-132-1/+36
| | |
* | | Parse XML instead of HTML in tests for a SVG build badgefix/ci-build-status-badgeGrzegorz Bizon2016-02-113-7/+7
| | |
* | | Move build badge specs to badges directoryGrzegorz Bizon2016-02-112-6/+3
| | |
* | | Move builds badge implementation to new badges controllerGrzegorz Bizon2016-02-111-1/+1
| | |
* | | Inherit build badge access permissions from projectGrzegorz Bizon2016-02-112-1/+3
| | |
* | | Improve build badge tests, add another test caseGrzegorz Bizon2016-02-113-6/+19
| | |
* | | Add feature tests for builds status badgeGrzegorz Bizon2016-02-113-2/+52
| | |
* | | Change MR link to "View Open Merge Request"display-mr-link-if-thre-is-oneDouglas Barbosa Alexandre2016-02-101-1/+1
| | |
* | | Replaces "Create merge request" link with one to the MR when one existsDouglas Barbosa Alexandre2016-02-102-0/+93
| | |
* | | Merge remote-tracking branch 'dev/master' into 'master'Robert Speicher2016-02-094-8/+64
|\ \ \
| * \ \ Merge remote-tracking branch 'origin/master' into ci-permissionsKamil Trzcinski2016-02-045-2/+42
| |\ \ \ | | | |/ | | |/| | | | | | | | | # Conflicts: # app/views/projects/builds/index.html.haml
| * | | Add behaviour tests for build permissionsKamil Trzcinski2016-02-044-8/+56
| | | |
| * | | Rename allow_guest_to_access_builds to public_buildsKamil Trzcinski2016-02-041-0/+8
| | | |
* | | | Allow limited Markdown in Broadcast Messagesrs-broadcast-markdownRobert Speicher2016-02-062-1/+19
| |/ / |/| | | | | | | | Closes #11853
* | | Update test after changes build page cssDmitriy Zaporozhets2016-02-031-1/+1
| | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | Merge branch 'support-akismet' into 'master' Robert Speicher2016-02-033-0/+40
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | Support Akismet spam checking for creation of issues via API Currently any spam detected by Akismet for non-members via API will be logged in a separate table in the admin page. Closes #5612 See merge request !2266
| * | Use truncate helper on spam logs listDouglas Barbosa Alexandre2016-02-021-6/+16
| | |
| * | Support Akismet spam checking for creation of issues via APIStan Hu2016-02-023-0/+30
| |/ | | | | | | | | | | | | Currently any spam detected by Akismet by non-members via API will be logged in a separate table in the admin page. Closes #5612
* | Merge remote-tracking branch 'origin/master' into git-raw-workhorseJacob Vosmaer2016-02-022-0/+27
|\ \ | |/
| * Render sanitized SVG imagesStan Hu2016-02-012-0/+27
| | | | | | | | Closes https://github.com/gitlabhq/gitlabhq/issues/9265
* | Merge branch 'master' of https://gitlab.com/gitlab-org/gitlab-ce into ↵Jacob Vosmaer2016-02-0126-48/+373
|\ \ | |/ | | | | git-raw-workhorse
| * Added tests to emoji search field focusPhil Hughes2016-01-292-0/+7
| |
| * Prevent transient Capybara timeouts during feature testsrs-transient-capybara-timeoutRobert Speicher2016-01-281-4/+4
| | | | | | | | | | | | | | | | | | | | | | The problem occurred because asset compilation takes a long time, so when the asset cache didn't exist and the first test ran, it would often (randomly) time out during the generation before the actual test even had a chance to run. Now we check if the cache exists before the suite runs, and if not, we manually fire a request to the root URL in order to generate it. This should allow subsequent tests to use the cached assets.
| * Merge branch 'issue_2406' into 'master' Dmitriy Zaporozhets2016-01-283-1/+43
| |\ | | | | | | | | | | | | | | | | | | Show list of forks for a given Project Closes #2406 See merge request !2376
| | * Fix broken spec.Rubén Dávila2016-01-201-1/+3
| | |
| | * Add specs for Forks listing.Rubén Dávila2016-01-202-0/+40
| | |
| * | Merge branch 'issue_5546' into 'master' Dmitriy Zaporozhets2016-01-285-0/+88
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | Save list sort in a cookie Closes #5546 See merge request !2537
| | * | Make default sorting preference work for Issues and MRs.issue_5546Rubén Dávila2016-01-222-0/+14
| | | |
| | * | Merge branch 'master' into issue_5546Rubén Dávila2016-01-223-6/+48
| | |\ \
| | * | | Make sorting preference reusable for all projects.Rubén Dávila2016-01-223-0/+28
| | | | |
| | * | | Little refactor plus some specs.Rubén Dávila2016-01-215-0/+46
| | | | |
| * | | | Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce into ↵James Lopez2016-01-272-0/+19
| |\ \ \ \ | | | | | | | | | | | | | | | | | | fix/unexistent-group-500
| | * \ \ \ Merge branch 'ci/test-build-artifacts-scripts' into 'master' Douwe Maan2016-01-262-0/+19
| | |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add tests for clicking a row in build artifacts browser This adds a feature tests for clicking a row, which is handled by javascript event. /cc @ayufan See merge request !2551
| | | * | | | Add tests for clicking a row in build artifacts browserci/test-build-artifacts-scriptsGrzegorz Bizon2016-01-222-0/+19
| | | |/ / /
| * | | | | moved and refactored feature based on feedback. Also updated CHANGELOGJames Lopez2016-01-274-9/+8
| | | | | |
| * | | | | feature and fix for 500 on group missingJames Lopez2016-01-262-0/+9
| |/ / / /
| * | | | Adds base64 background search icon.Jacob Schatz2016-01-241-1/+1
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | All inputs of type `search` will have the gray background and search icon centered. Because the search magnifier is a bg image, I had to hide it with `[value=""]`. I added a little javascript to make sure each input always has it's own value.
| * | | Fix failing specsfix-comment-on-diff-ajax-loadingRémy Coutable2016-01-211-6/+6
| | | |
| * | | Merge remote-tracking branch 'origin/master' into ↵Rémy Coutable2016-01-205-1/+48
| |\ \ \ | | |/ / | | | | | | | | fix-comment-on-diff-ajax-loading
| | * | Merge branch 'secret-shortcut-feature' into 'master' Dmitriy Zaporozhets2016-01-201-1/+1
| | |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds "t" as a shortcut for find file anywhere See merge request !2507
| | | * | Fixes test to not search whole page for content.Jacob Schatz2016-01-201-1/+1
| | | |/
| | * | Merge branch 'issue_3749' into 'master' Douwe Maan2016-01-205-0/+47
| | |\ \ | | | |/ | | |/| | | | | | | | | | | | | | | | | Update Issues/MRs updated_at field when notes are generated Closes #3749 and #9130 See merge request !2493