summaryrefslogtreecommitdiff
path: root/app/views
Commit message (Collapse)AuthorAgeFilesLines
* Fix broadcast message colors to one displayed in previewDmitriy Zaporozhets2015-06-081-2/+2
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Remove arrow to the right of project name on dashboardDmitriy Zaporozhets2015-06-081-3/+0
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Improve UI for phonesDmitriy Zaporozhets2015-06-082-4/+5
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Dont use fixed pixel size if form controls - its bad for mobile devicesDmitriy Zaporozhets2015-06-088-10/+10
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Fix header for mobilesDmitriy Zaporozhets2015-06-081-2/+2
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Dont truncate issue/mr titleDmitriy Zaporozhets2015-06-082-2/+2
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Move logout buttom to top right cornerDmitriy Zaporozhets2015-06-082-6/+5
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Merge branch 'refactor-web-editor' into 'master'Dmitriy Zaporozhets2015-06-051-5/+6
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Refactor web editor * fix problem with editing non-master branch * before commit make sure branch exists * dont allow user change file in one branch and commit to another existing branch * remove a lot of code duplication * remove outdated statellite errors Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> Fixes #1761 See merge request !773
| * Refactor web editorrefactor-web-editorDmitriy Zaporozhets2015-06-051-5/+6
| | | | | | | | | | | | | | | | | | | | * fix problem with editing non-master branch * before commit make sure branch exists * dont allow user change file in one branch and commit to another existing branch * remove a lot of code duplication * remove outdated statellite errors Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | Merge branch 'warn-about-referenced-users' into 'master'Dmitriy Zaporozhets2015-06-0512-34/+39
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Show warning when a comment will add 10 or more people to the discussion. Addresses internal issue https://dev.gitlab.org/gitlab/gitlabhq/issues/2054 New issue: ![Screen_Shot_2015-06-02_at_14.48.46](https://gitlab.com/gitlab-org/gitlab-ce/uploads/6771ff8748b9b548a9f0f32a5a8b9bb1/Screen_Shot_2015-06-02_at_14.48.46.png) New comment: ![Screen_Shot_2015-06-02_at_14.48.51](https://gitlab.com/gitlab-org/gitlab-ce/uploads/25ec5f06490e1e6b36e453e055a7b403/Screen_Shot_2015-06-02_at_14.48.51.png) See merge request !754
| * | Prefer jQuery on to bind, and don't use .js class.warn-about-referenced-usersDouwe Maan2015-06-051-1/+1
| | |
| * | Show warning when a comment will add 10 or more people to the discussion.Douwe Maan2015-06-0512-34/+39
| |/
* | Merge branch 'wip-mr-docs' into 'master'Dmitriy Zaporozhets2015-06-051-3/+3
|\ \ | | | | | | | | | | | | | | | | | | | | | Add info about WIP merge requests to docs. Addresses internal issue https://dev.gitlab.org/gitlab/gitlabhq/issues/2078. See merge request !770
| * | Add info about WIP merge requests to docs.wip-mr-docsDouwe Maan2015-06-051-3/+3
| |/
* | Fix timeout when rendering file with thousands of lines.fix-long-blob-timeoutDouwe Maan2015-06-051-1/+2
| |
* | Fix empty headerDmitriy Zaporozhets2015-06-051-1/+1
|/ | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Merge branch 'sn-push-email-plussign' into 'master'Dmitriy Zaporozhets2015-06-041-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use entity number for plus sign in push emails Was doing some testing today and found that both outlook and gmail had issues displaying the html content produced for push emails when a file was added. This is how gmail shows it: ![Gmail_name](https://gitlab.com/stevenorman/gitlab-ce/uploads/24be115dbae97997bc02e2ec70d9870c/Gmail_name.png) And this is for Outlook: ![Outlook_name](https://gitlab.com/stevenorman/gitlab-ce/uploads/4b5a54956139d36d78f9c61c83e99928/Outlook_name.png) iOS devices work with the &plus; entity, as does Mail on OS X, but I'm wondering if it is only available for newer html parsers (a quick browse on the w3c site seems to show that it was added in html 5). Changing the entity to `&#43;` and both gmail and outlook and iOS and Mail. See merge request !721
| * Use entity number for plus signSteve Norman2015-05-271-1/+1
| |
* | Merge branch 'fix-no-labels-page' into 'master'Dmitriy Zaporozhets2015-06-041-1/+4
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Omit link to generate labels if user does not have access to create them On a project that has no labels, a user was provided a link to create labels on the "Labels" tab, resulting in a 404. This MR changes the next to "No labels created" if the user lands on this page but does not have permission to add a label. Screenshot: ![image](https://gitlab.com/stanhu/gitlab-ce/uploads/cb04659cf3a0abe1e072cb78d0964b94/image.png) Closes https://github.com/gitlabhq/gitlabhq/issues/8353 See merge request !752
| * | Omit link to generate labels if user does not have access to create themStan Hu2015-06-011-1/+4
| | | | | | | | | | | | Closes https://github.com/gitlabhq/gitlabhq/issues/8353
* | | Show key fingerprint on DeployKeys#indexrs-issue-1741Robert Speicher2015-06-034-15/+9
| | | | | | | | | | | | Also style all key fingerprints consistently across the app.
* | | Remove show actions from Admin and Project DeployKeysRobert Speicher2015-06-032-49/+0
| | |
* | | Merge branch 'add-resend-confirmation-email-in-profile' into 'master'Douwe Maan2015-06-031-2/+5
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add "Resend confirmation e-mail" link in profile settings Adds a convenience link to resend the confirmation e-mail if necessary. Before, user had to logout or open an Incognito Window to do this. Screenshot: ![image](https://gitlab.com/gitlab-org/gitlab-ce/uploads/700e6d98e1c5b58726fbed4e52a09c06/image.png) Fixes https://github.com/gitlabhq/gitlabhq/issues/9274 See merge request !634
| * | | Add "Resend confirmation e-mail" link in profile settingsStan Hu2015-06-031-2/+5
| |/ / | | | | | | | | | Fixes https://github.com/gitlabhq/gitlabhq/issues/9274
* | | Merge branch 'rs-more-js-testing' into 'master'Dmitriy Zaporozhets2015-06-031-1/+1
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | More Javascript testing Continuation of !715 See merge request !736
| * | | Move jQuery enable/disable extensions to extensions/jqueryRobert Speicher2015-06-021-1/+1
| | | | | | | | | | | | | | | | | | | | Removes redundant enableButton/disableButton extensions, and adds specs for the jQuery extensions.
* | | | Merge branch 'rs-issue-1022' into 'master'Dmitriy Zaporozhets2015-06-031-2/+2
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | Push event: Nest link in strong tag, not vice-versa Closes #1022 See merge request !755
| * | | Push event: Nest link in strong tag, not vice-versars-issue-1022Robert Speicher2015-06-021-2/+2
| | | | | | | | | | | | | | | | Closes #1022
* | | | Add a `pipeline` context option for SanitizationFilterRobert Speicher2015-06-022-2/+2
| | | | | | | | | | | | | | | | | | | | When this option is `:description`, we use a more restrictive whitelist. This is used for Project and Group description fields.
* | | | Render Group and Project descriptions with our Markdown pipelineRobert Speicher2015-06-022-2/+2
|/ / /
* | | Allow base64 for edit blobsDmitriy Zaporozhets2015-06-011-2/+2
|/ / | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | improve navbar collapse for mobile viewsDmitriy Zaporozhets2015-06-011-2/+2
| | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | Refactor header viewsDmitriy Zaporozhets2015-06-017-27/+18
| | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | More fixes to header cssDmitriy Zaporozhets2015-06-012-2/+2
| | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | Refactor header css/htmlrefactor-headerDmitriy Zaporozhets2015-06-013-44/+46
| | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | Show avatars in merge widget and fix mr download button overflowDmitriy Zaporozhets2015-06-012-11/+10
| | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | Merge branch 'feature/sign_out_page' into 'master'Dmitriy Zaporozhets2015-06-011-0/+5
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | Allow to configure a URL to show after sign out Split of !669 as requested This is especially useful with SAML ( !722 ) since the omniauth-saml gem does not support single log-out. This provides a way to log out the user from the SAML IdP after signing out from GitLab. See merge request !725
| * | Allow to configure a URL to show after sign outAlex Lossent2015-05-291-0/+5
| | |
* | | Improve UI of project sidebarDmitriy Zaporozhets2015-05-292-7/+7
|/ / | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | Merge branch 'leave-project' into 'master'Dmitriy Zaporozhets2015-05-293-3/+17
|\ \ | | | | | | | | | | | | | | | | | | | | | Add ability to leave project Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> See merge request !744
| * | Make leave buttons more explicitleave-projectDmitriy Zaporozhets2015-05-292-3/+5
| | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
| * | Add ability to leave projectDmitriy Zaporozhets2015-05-291-0/+12
| | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | Merge branch 'support-edit-target-branch-in-mr' into 'master'Dmitriy Zaporozhets2015-05-291-0/+18
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Support editing target branch of merge request ### What does this MR do? This MR makes it possible to edit the target branch of a merge request and adds a system note when this happens. ### Why was this MR needed? Because lots of people requested this feature. :) ### Screenshots **Edit MR page** ![image](https://gitlab.com/gitlab-org/gitlab-ce/uploads/9b3d405bf7b5f945e35bae3534c2b67b/image.png) **New MR page** ![image](https://gitlab.com/gitlab-org/gitlab-ce/uploads/3657a2a9efad6d10e8470637d1166bdb/image.png) **System note** ![image](https://gitlab.com/gitlab-org/gitlab-ce/uploads/cc8066f3d3bdf09c0cce27193210567d/image.png) ### What are the relevant issue numbers? * Closes https://github.com/gitlabhq/gitlabhq/issues/7105 * See: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/130! See merge request !738
| * | | Support editing target branch of merge requestStan Hu2015-05-291-0/+18
| | | | | | | | | | | | | | | | | | | | Closes https://github.com/gitlabhq/gitlabhq/issues/7105 See: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/130
* | | | Merge branch 'user-oauth-applications' into 'master'Dmitriy Zaporozhets2015-05-292-28/+41
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add option to disallow users from registering any application to use GitLab as an OAuth provider Addresses internal issue https://dev.gitlab.org/gitlab/gitlabhq/issues/2264. ![Screen_Shot_2015-05-29_at_13.30.11](https://gitlab.com/gitlab-org/gitlab-ce/uploads/300f8e9ecbeb3d353ebc33a63cdef4e9/Screen_Shot_2015-05-29_at_13.30.11.png) See merge request !742
| * | | | Add option to disallow users from registering any application to use GitLab ↵user-oauth-applicationsDouwe Maan2015-05-292-28/+41
| | | | | | | | | | | | | | | | | | | | as an OAuth provider
* | | | | Merge branch 'leave-group' into 'master'Dmitriy Zaporozhets2015-05-291-4/+3
|\ \ \ \ \ | |_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | User should be able to leave group. If not - show him proper message Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> See merge request !743
| * | | | User should be able to leave group. If not - show him proper messageDmitriy Zaporozhets2015-05-291-4/+3
| |/ / / | | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* | | | Shorten merge request WIP text.Douwe Maan2015-05-291-4/+4
|/ / /
* | | Fix diff header with submodule changeDmitriy Zaporozhets2015-05-291-2/+3
| | | | | | | | | | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>