Dmitriy Zaporozhets
4e7de9492f
Show modal window with instructions if GH OAuth is not enables
2015-01-22 19:00:31 -08:00
Dmitriy Zaporozhets
ea4b0d75dd
Fix commits pagination
...
Conflicts:
CHANGELOG
2015-01-17 22:21:57 -08:00
Dmitriy Zaporozhets
c6ab8d04e8
Fix tabindex for comment form
2015-01-15 10:34:40 -08:00
Dmitriy Zaporozhets
cad685e70b
Refactor zen mode. Make it works in diffs
2015-01-15 00:15:12 -08:00
Dmitriy Zaporozhets
4babc50eb7
Huge set of fixes for comments logic
2015-01-14 22:42:58 -08:00
Dmitriy Zaporozhets
bb1f8b1d8b
Merge branch 'github_importer'
...
Conflicts:
app/helpers/projects_helper.rb
2015-01-13 10:35:16 -08:00
Dmitriy Zaporozhets
ef933a4a96
Improve import page
2015-01-13 10:34:01 -08:00
yglukhov
c13f420b66
First entry in wiki history leads to newest revision.
2015-01-13 12:17:05 +02:00
Marin Jankovski
0a089661fd
Rename the checkbox css class to prevent it from being overwritten by the same named bootstrap class.
2015-01-12 13:35:29 +01:00
Dmitriy Zaporozhets
4666515538
Merge branch 'flatten-dirs' into 'master'
...
Flatten the directory hierarchy while there is only one directory descendant
In some languages, especially java, the directory structure reflects the package structure.This means that using the file tree browser to reach the directories that matter you have to click a lot of directories containing only another subdirectory.
This merge request tries to enhance this by showing and providing the link to the first directory that doesn't contain only one directory.
See also [this feature request](http://feedback.gitlab.com/forums/176466-general/suggestions/6236769-jump-forward-to-the-first-folder-that-has-more-tha )
This is very similar to what [GitHub does](https://github.com/blog/1877-folder-jumping ), but I don't think graying out the empty directories is really necessary.
Screenshots: [Before](https://gitlab.com/uploads/marmis85/gitlab-ce/b683a0000f/before.png ) - [After](https://gitlab.com/uploads/marmis85/gitlab-ce/a23725a1c1/after.png )
I'm actually very new at ruby, rails, haml, and almost everything involved in Gitlab's development...
From what I could understand, when we render each directory item in the list we only have the data structure representing the item but not his descendants.
To iterate through the hierarchy I call Gitlab::Git:Tree.where() but I'm not sure if this is the most efficient way.
I also considered making every directory a clickable link, but I tried that and in the end it wasn't very useful and reduced the click target for the most useful directory.
See merge request !275
2015-01-11 04:42:28 +00:00
Valery Sizov and Valery Sizov
a9f7fd2c1a
Github Importer
2015-01-10 09:51:43 -08:00
Dmitriy Zaporozhets
9c03c1c545
Make automerge via satellite
2015-01-09 19:10:01 -08:00
Dmitriy Zaporozhets
b55a0519ac
Pass source project variable to commits list on MR page
2015-01-06 15:39:33 -08:00
Dmitriy Zaporozhets
4165426725
Restyle and refactor milestones filter
2015-01-06 12:32:04 -08:00
Dmitriy Zaporozhets
d884c21004
Merge branch 'create-merge-request-view' into 'master'
...
Create merge request view
Updated the create merge request view to use the horizontal form layout, and added tabs for commits and changes.
Also updated commits layout to use the same as the projects commits layout.
Screenshots: [Before](https://gitlab.com/uploads/stephanvl/gitlab-ce/892d1bf4c0/Screenshot_from_2014-12-29_20_33_19.png ) - [After](https://gitlab.com/uploads/stephanvl/gitlab-ce/508b3100c7/Screenshot_from_2014-12-29_20_34_40.png )
Fixes #923
See merge request !270
2015-01-05 19:19:05 +00:00
Dmitriy Zaporozhets
7e6030e40c
Merge branch 'create-issue-view' into 'master'
...
Create issue view
This changes the create/edit issue view, to only show the create milestone/label links if the user is allowed to create one, and puts the 'Please review the guidelines for contribution to this repository' message above the submit button.
Screenshots [Before](https://gitlab.com/uploads/stephanvl/gitlab-ce/ae2ff67f88/Screenshot_from_2014-12-29_20_43_06.png ) - [After (allowed)](https://gitlab.com/uploads/stephanvl/gitlab-ce/3a4682d776/Screenshot_from_2014-12-29_20_43_29.png ) - [After (not allowed)](https://gitlab.com/uploads/stephanvl/gitlab-ce/86a548d3b3/Screenshot_from_2014-12-29_20_44_00.png )
See merge request !272
2015-01-05 19:17:29 +00:00
Dmitriy Zaporozhets
9b3ab90adb
Merge branch 'fix/deleted_file' into 'master'
...
Fix deleted file representation with new gitlab_git gem
Added this MR as per request from https://github.com/gitlabhq/gitlabhq/pull/7980
* Add new gitlab_gem as per gitlab-org/gitlab_git!6
* Fix the showing of deleted file, as it only displays the named of the file, rather than specifying what had happened
**Before**

**After**

See merge request !273
2015-01-05 19:15:15 +00:00
Dmitriy Zaporozhets
252e4fd996
Merge pull request #8489 from yglukhov/wiki-md-preview
...
Markdown preview in wiki
2015-01-03 11:05:42 +02:00
marmis85
021cff67f3
Flatten the directory hierarchy while there is only one directory descendant
2014-12-31 03:15:04 +01:00
Arif Ali
1d8dcfaf8b
fix deleted file display when using new gitlab_git gem, and add new gitlab_git gem
2014-12-30 21:59:38 +00:00
Stephan van Leeuwen
25c37b0e73
Fixed issue not being able to create a new issue on an empty project.
2014-12-30 18:53:46 +01:00
Dmitriy Zaporozhets
6e217bd55c
Improve accept mr widget UI
...
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com >
2014-12-30 17:28:34 +02:00
Dmitriy Zaporozhets
2010ae11f3
Merge branch 'merge-request-commits-view' into 'master'
...
Merge request commits view
Changes the commits view of a merge request to use the same layout as used in the project commits view.
As noticed from #923 .
This also changes the commits icon on the tab to be fa-history, the same as used in the sidebar
Screenshots [Before](https://gitlab.com/uploads/stephanvl/gitlab-ce/8785737424/Screenshot_from_2014-12-29_20_39_25.png ) - [After](https://gitlab.com/uploads/stephanvl/gitlab-ce/a3bf2a790f/Screenshot_from_2014-12-29_20_40_23.png )
See merge request !271
2014-12-30 13:40:13 +00:00
Stephan van Leeuwen
b753bfd145
Updated issuable form to only show create links if allowed, and added contribution guide url to form actions.
...
Also changed icon for labels.
Removed contribution guide notice from issue form.
2014-12-29 20:29:59 +01:00
Stephan van Leeuwen
4fe699fdc3
Updated create merge request submit view
...
Create merge request submit view now uses the same form layout as creating an issue.
The commits view now uses the same layout as the project commits view
The commits and diffs are now in separate tabs, as used in the merge request view
2014-12-29 20:14:51 +01:00
Stephan van Leeuwen
b97b854963
Updated merge request commits view
...
The merge request commits tab now uses the same layout as used in the project commits view
2014-12-29 19:10:53 +01:00
Dmitriy Zaporozhets
95c0393789
Inline protected branches list
...
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com >
2014-12-29 19:30:27 +02:00
yglukhov
91a3a7a6a0
Markdown preview in wiki
2014-12-29 17:07:00 +02:00
Marin Jankovski
e005d4191a
Merge branch 'master' into developer_can_push_to_protected_branches_option
2014-12-29 15:39:03 +01:00
Dmitriy Zaporozhets
86a7787a15
Merge pull request #8324 from cirosantilli/rm-commit
...
Remove commit indicator from path on Commits tab [UI]
2014-12-29 13:41:32 +02:00
Marin Jankovski
42fb42aed4
Merge branch 'master' into developer_can_push_to_protected_branches_option
...
Conflicts:
db/schema.rb
2014-12-29 09:30:55 +01:00
Dmitriy Zaporozhets
4adc033761
Improve UI for group milestone and project milestone pages
...
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com >
2014-12-27 16:03:02 +02:00
Marin Jankovski
78865a0c99
Move styling to css.
2014-12-26 17:16:38 +01:00
Marin Jankovski
2cbfc515f2
Move protected branches list to a partial.
2014-12-26 15:36:35 +01:00
Dmitriy Zaporozhets
aa54482a37
Fix no-ssh message for non logged in user
...
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com >
2014-12-26 14:53:50 +02:00
Dmitriy Zaporozhets
f1c39763c9
Fix UI for no-ssh-key message
...
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com >
2014-12-26 14:25:37 +02:00
Marin Jankovski
92eb3974ac
Add option to disable/enable developers push to already protected branches.
2014-12-26 11:39:12 +01:00
Marin Jankovski
b7eb0d178e
Add checkbox for protected branch developer can push to.
2014-12-26 09:14:53 +01:00
Dmitriy Zaporozhets
fca161f5c5
Fix tests
...
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com >
2014-12-25 15:55:12 +02:00
Dmitriy Zaporozhets
7c5bf9372c
Merge branch 'master' into ui-improvements
2014-12-25 14:46:58 +02:00
Dmitriy Zaporozhets
88b480174c
Improve issue/mr page for tablets
...
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com >
2014-12-25 14:46:18 +02:00
Dmitriy Zaporozhets
5140a4cd13
Set of UI changes mostly for issue and merge request
...
* return edit/close buttons to old position (right of title)
* make 'Issue #1 ' header smaller
* move mr commits to separate tab
* change inline/side diff switcher to buttons from tabs
* make issue sidebar start with dicsussion block
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com >
2014-12-25 14:32:49 +02:00
Dmitriy Zaporozhets
f0d0b19393
Fold sidebar for mobile devices and expand for desktop
...
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com >
2014-12-25 10:13:45 +02:00
Dmitriy Zaporozhets
5cf2bd4c99
Merge branch 'project-path' into 'master'
...
Project path
Fixes gitlab/gitlabhq#1781, gitlab/gitlabhq#1763
See merge request !1337
2014-12-24 13:27:26 +00:00
Dmitriy Zaporozhets
dc24b4d7a2
Merge branch 'sidebar-nav' into 'master'
...
Sidebar navigation
This MR changes layout of the GitLab to sidebar navigation.
Layouts:
- [x] Project layout
- [x] Project settings layout
- [x] Dashboard layout
- [x] Profile layout
- [x] Group layout
- [x] Snippets layout
- [x] Admin layout
Pages:
- [x] Activity pages
- [x] Issue/mr pages
- [x] Issues/merge requests pages
Common:
- [x] Fix tests
See merge request !1329
2014-12-24 13:18:43 +00:00
Dmitriy Zaporozhets
47634e392f
Refactor issues and merge requests lists
...
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com >
2014-12-23 18:49:39 +02:00
Dmitriy Zaporozhets
32eb5de510
One column issue/mr lists for project
...
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com >
2014-12-23 17:31:38 +02:00
Dmitriy Zaporozhets
9a8ac2accc
Show issuable context labels as blocks
...
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com >
2014-12-23 10:51:14 +02:00
Dmitriy Zaporozhets
a2d188f688
Render MR diff full size of screen
...
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com >
2014-12-22 20:36:15 +02:00
Marin Jankovski
8be0c60e40
Remove extra css class markdown-area which prevented attachments upload.
2014-12-22 16:44:14 +01:00