summaryrefslogtreecommitdiff
path: root/app/helpers
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' of https://gitlab.com/gitlab-org/gitlab-ce into lazy-diffsJacob Vosmaer2016-03-034-3/+40
|\
| * audit log UI updatePhil Hughes2016-03-021-1/+10
| | | | | | | | Closes #13862
| * Little refactor for milestone_remaining_days helper from last code review.issue_13623Rubén Dávila2016-03-011-4/+3
| |
| * Show days remaining instead of elapsed time for Milestone.Rubén Dávila2016-03-011-0/+11
| |
| * Merge branch 'mr-prefix-activity-view' into 'master' Jacob Schatz2016-03-011-2/+2
| |\ | | | | | | | | | | | | | | | | | | | | | | | | Changed # to ! on merge requests on activity view Closes #9082 ![Screen_Shot_2016-02-23_at_11.59.55](/uploads/87b859ae63282ae24025168404beb158/Screen_Shot_2016-02-23_at_11.59.55.png) See merge request !2938
| | * Removed un-used variablesPhil Hughes2016-03-011-2/+0
| | |
| | * Replaced prefix with to_reference method callsPhil Hughes2016-03-011-8/+3
| | |
| | * Changed # to ! on merge requests on activity viewPhil Hughes2016-03-011-2/+9
| | | | | | | | | | | | Closes #9082
| * | Merge branch 'safe-content-type' into 'master' Douwe Maan2016-03-011-0/+18
| |\ \ | | |/ | |/| | | | | | | | | | | | | Explain why we mangle blob content types Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/9079 See merge request !2956
| | * Explain why we mangle blob content typessafe-content-typeJacob Vosmaer2016-02-241-0/+18
| | |
* | | Rename DiffCollection#map! to #decorate!Jacob Vosmaer2016-03-021-2/+1
| | |
* | | Merge branch 'master' of https://gitlab.com/gitlab-org/gitlab-ce into lazy-diffsJacob Vosmaer2016-03-012-8/+24
|\ \ \ | |/ /
| * | Branded login page also in CE11489-branded-appearance-to-ceZeger-Jan van de Weg2016-02-261-8/+20
| | | | | | | | | | | | | | | The only major difference with the EE version is the change from a light and dark logo to only a header logo The dark logo wasn't used anyway, so it seemed to make sense to me to rename the field to the actual function of it
| * | Move "I should see Crowd login form" feature to a view specrs-crowd-form-view-specRobert Speicher2016-02-241-0/+4
| |/ | | | | | | | | | | | | | | We were doing all kinds of code gymnastics to "enable" Crowd in the feature spec and this would sometimes cause a transient failure. Really what it's testing is if the Crowd login form shows when Crowd's enabled, so this is much better suited to a view spec.
* | Make #diffs safe (limited) by defaultJacob Vosmaer2016-02-291-3/+2
| |
* | RubocopJacob Vosmaer2016-02-261-1/+1
| |
* | Move diff options aroundJacob Vosmaer2016-02-261-10/+3
| |
* | Make more use of DiffHelperJacob Vosmaer2016-02-261-27/+16
| |
* | Merge branch 'master' of https://gitlab.com/gitlab-org/gitlab-ce into lazy-diffsJacob Vosmaer2016-02-2516-47/+238
|\ \ | |/
| * Merge branch 'fix-moving-revert-button' into 'master' Jacob Schatz2016-02-221-2/+2
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed revert button tooltip placement causing movement Before: ![moving-tooltip](/uploads/65cb9a41e8b8114fd8ee10d68cfd8206/moving-tooltip.gif) After: ![moving-tooltip](/uploads/a1c36eb5735dc7592c49f6b5cb1469b5/moving-tooltip.gif) See merge request !2910
| | * Fixed revert button tooltip placement causing movementfix-moving-revert-buttonPhil Hughes2016-02-221-2/+2
| | |
| * | Merge branch 'issue_13463' into 'master' Jacob Schatz2016-02-222-1/+2
| |\ \ | | |/ | |/| | | | | | | | | | | | | Fix Side-by-side view after loading diff results Fixes #13463 See merge request !2880
| | * Fixes syntax errorAlfredo Sumaran2016-02-191-1/+1
| | |
| | * Make diff view name getter less error proneAlfredo Sumaran2016-02-191-1/+1
| | |
| | * Add missing class to builds pageAlfredo Sumaran2016-02-181-0/+1
| | |
| * | "X assigned you Y" instead of "X assigned Y"Douwe Maan2016-02-201-0/+7
| | |
| * | Add "Mark all as done" buttonDouwe Maan2016-02-201-0/+26
| | |
| * | Include 'issue'/'merge request' in linkDouwe Maan2016-02-201-8/+3
| | |
| * | Rename Tasks to TodosDouglas Barbosa Alexandre2016-02-202-69/+59
| | |
| * | Refactoring TasksHelperDouglas Barbosa Alexandre2016-02-201-8/+1
| | |
| * | Refactoring task queue partialsDouglas Barbosa Alexandre2016-02-201-5/+7
| | |
| * | Fix rubocop offensesDouglas Barbosa Alexandre2016-02-201-1/+1
| | |
| * | Add filters by project, author, type, and action to task queue page listDouglas Barbosa Alexandre2016-02-201-0/+33
| | |
| * | Create a pending task when a user is mentioned on a noteDouglas Barbosa Alexandre2016-02-201-0/+16
| | |
| * | Add pending tasks badge on top right next to the new and logout buttonDouglas Barbosa Alexandre2016-02-201-0/+8
| | |
| * | Add tasks queue list pageDouglas Barbosa Alexandre2016-02-201-0/+17
| | |
| * | Merge branch 'rs-blob' into 'master' Douwe Maan2016-02-201-4/+0
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a `Blob` model that wraps `Gitlab::Git::Blob` This allows us to take advantage of Rails' `to_partial_path` to render the correct partial based on the Blob type, rather than cluttering the view with conditionals. It also allows (and will allow in the future) better encapsulation for Blob-related logic which makes sense for our Rails app but might not make as much sense for the core `gitlab_git` library, such as detecting if the blob is an SVG. See merge request !2887
| | * | Add a `Blob` model that wraps `Gitlab::Git::Blob`rs-blobRobert Speicher2016-02-181-4/+0
| | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows us to take advantage of Rails' `to_partial_path` to render the correct partial based on the Blob type, rather than cluttering the view with conditionals. It also allows (and will allow in the future) better encapsulation for Blob-related logic which makes sense for our Rails app but might not make as much sense for the core `gitlab_git` library, such as detecting if the blob is an SVG.
| * | Some updates from last code review.Rubén Dávila2016-02-191-2/+2
| | |
| * | Make #commit_with_hooks return the new obj id plus some other fixes.Rubén Dávila2016-02-191-4/+14
| | |
| * | Refactor revert_commit_link helper.Rubén Dávila2016-02-192-8/+2
| | |
| * | No longer need to ignore temporary branch.Rubén Dávila2016-02-191-2/+0
| | | | | | | | | | | | | | | * Now it's only created when user choose to create a MR and logic to hide it is handled by https://gitlab.com/gitlab-org/gitlab-ce/blob/50595af7b0e304f16e2955109abd2d25cd96efda/app/helpers/application_helper.rb#L139
| * | Fix build and add specsRubén Dávila2016-02-191-7/+4
| | |
| * | Show a tooltip on revert link.Rubén Dávila2016-02-191-7/+5
| | |
| * | Move revert link to the MR widget section plus some refactor.Rubén Dávila2016-02-191-2/+2
| | |
| * | Some fixes and refactors for code related to forks.Rubén Dávila2016-02-191-0/+2
| | |
| * | Some updates after last code review.Rubén Dávila2016-02-193-9/+24
| | |
| * | Add link to fork if user can't revert MR.Rubén Dávila2016-02-191-0/+7
| | |
| * | Add button to revert commit on Commit detail page.Rubén Dávila2016-02-191-0/+7
| | |
| * | Some updates from last code review.Rubén Dávila2016-02-191-1/+1
| | |