Dmitriy Zaporozhets
45bebd76d6
Merge branch 'master' of gitlab.com:gitlab-org/gitlab-ce
2015-01-21 15:56:29 -08:00
Dmitriy Zaporozhets
8a66a10c2a
Merge branch 'fix_avatar_url' into 'master'
...
Remove unnecessary / from avatar url
## What does this MR do?
This MR removes the unecessary / from the avatar url.
## What Use Case does this MR solve?
The // in the url cold lead to avatars not being displayed (reported on IRC)
With this MR the avatar url changes from
http://localhost:3000//uploads/user/avatar/1/gitlab_logo.png
to
http://localhost:3000/uploads/user/avatar/1/gitlab_logo.png
@dblessing Can you take a look?
See merge request !303
2015-01-21 20:04:35 +00:00
Dmitriy Zaporozhets
0c4bb84910
Merge pull request #7762 from jubianchi/commit-closing-issues
...
Allow commit messages to close several issues at once
2015-01-21 11:49:13 -08:00
Valery Sizov
ab7a79bf3b
developer can push to protected branches
2015-01-20 17:34:23 -08:00
Dmitriy Zaporozhets
f9fb76670f
Merge pull request #8603 from jubianchi/hook-merge-request-action
...
Add action property to merge request hook
2015-01-20 09:12:20 -08:00
jubianchi
4ffdb83e71
Add action property to merge request hook
2015-01-20 10:50:24 +01:00
jubianchi
b21a2d821a
Allow commit messages to close several issues at once (thanks @123Haynes
...
for his work and help)
2015-01-20 10:45:48 +01:00
Dmitriy Zaporozhets
e3987bb6b1
Merge pull request #8585 from duduribeiro/fix_email_in_ssh_help_page
...
Fix the email variable substituation in ssh help page
2015-01-19 15:01:00 -08:00
Hannes Rosenögger
6bf58e76bd
Remove unnecessary / from avatar url
...
So http://localhost:3000//uploads/user/avatar/1/avatar.png
becomes http://localhost:3000/uploads/user/avatar/1/avatar.png
2015-01-19 14:08:06 +01:00
Dmitriy Zaporozhets
31cddc152c
Fix tests for edited_ago helpers
2015-01-18 19:47:58 -08:00
Dmitriy Zaporozhets
577fe18073
Merge pull request #7878 from cirosantilli/rm-seed-password-confirmation
...
Remove unneeded password_confirmation from seed.
2015-01-18 10:38:41 -08:00
Carlos Ribeiro
d76d897492
Change to single-quoted strings in help_pages_spec
2015-01-18 14:21:18 -02:00
Carlos Ribeiro
714ef62264
Fix the email variable substituation in ssh help page
2015-01-15 23:06:32 -02:00
Dmitriy Zaporozhets
892be53fa3
Merge pull request #8425 from rumpelsepp/rouge
...
Replace highlight.js with rouge-fork rugments
2015-01-15 14:28:24 -08:00
Dmitriy Zaporozhets
23255bff99
Merge branch 'send_checkout_sha_to_services' into 'master'
...
Send checkout sha to services
In case of tags it may be useful to have sha of commit this tag points to.
So now web hooks and services get additional parameter `checkout_sha`
See merge request !1400
2015-01-15 20:01:31 +00:00
Dmitriy Zaporozhets
de27375d6c
Test git builder over annotated tag
2015-01-15 11:17:47 -08:00
Jacob Vosmaer
b79ada97bb
Remove password strength indicator
...
We were having the following issues:
- the indicator would sometimes stay red even if the password that was
entered was long enough;
- the indicator had a middle yellow signal: what does that mean?
- the red/green backgrounds were not color-blind-friendly.
2015-01-15 14:10:13 +01:00
Stefan Tatschner
089516209c
Fixed tests
2015-01-15 14:01:12 +01:00
Dmitriy Zaporozhets
b124d9e0bb
Comment broken test because I dont have time to improve it
2015-01-15 01:17:07 -08:00
Dmitriy Zaporozhets
10f45cf33a
Fix specs
2015-01-15 00:37:33 -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
6774a701a6
Merge branch 'refactor_push_data_builder' into 'master'
...
Refactor push data builder
See merge request !1384
2015-01-12 21:06:35 +00:00
Dmitriy Zaporozhets
bba8e59a04
Fix test hook and tests
2015-01-12 09:08:25 -08:00
Marin Jankovski
ef0cf7b42d
Fix the api project ordering spec.
2015-01-12 11:49:07 +01:00
Marin Jankovski
8689ce1efe
Add search filter option on project api for authorized projects.
2015-01-12 11:08:53 +01:00
Dmitriy Zaporozhets
3197044512
Refactor push data builder. Moved it to separate class
...
Also execute GitLab CI on creating tag via UI
2015-01-11 23:51:31 -08:00
Dmitriy Zaporozhets
f31a96104f
Add flatten-dir branch to seed repo
2015-01-10 22:48:16 -08: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
marmis85
02adb9ccd6
point to a specific branch in the test repo to avoid conflicts
2015-01-11 05:07:34 +01:00
Valery Sizov
ee28ee5f13
rspec fix
2015-01-10 20:04:06 -08:00
marmis85
32233d522f
updated master to latests sha
2015-01-11 00:15:56 +01:00
marmis85
3efb06a22b
Add test spec for TreeHelper module
2015-01-10 21:37:48 +01:00
Valery Sizov and Valery Sizov
a9f7fd2c1a
Github Importer
2015-01-10 09:51:43 -08:00
Dmitriy Zaporozhets
08c9cb4cab
Finally fix stuff related to dynamic config
2015-01-08 14:26:43 -08:00
Dmitriy Zaporozhets
939c046a98
Fix feature and tests
2015-01-08 13:21:00 -08:00
Dmitriy Zaporozhets
57a65ede77
Improve application settings and write tests
2015-01-08 09:53:35 -08:00
Marin Jankovski
1fbeaa0684
Merge branch 'master' into update_api_messages
...
Conflicts:
CHANGELOG
2015-01-07 12:30:08 +01:00
Marin Jankovski
8dd672776e
Fix failing tests due to updates on the return messages.
2015-01-07 11:39:20 +01:00
Dmitriy Zaporozhets
ee9849b736
Improve mr refresh service tests
2015-01-06 18:05:10 -08:00
Jeroen van Baarsen
2a4ee2fd7f
make sure the user.name is escaped
...
Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com >
2015-01-04 14:09:35 +01:00
Marin Jankovski
0da5154b5a
Fix api tests.
2014-12-30 15:40:11 +01:00
Dmitriy Zaporozhets
a9cf84e5ac
Merge pull request #7675 from yglukhov/patch_notes_api
...
Implemented notes (body) patching in API.
2014-12-29 21:06:49 +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
cf95736865
New feature: add 'Mention' notification level
...
It does disable all emails expect system one or when you was @mentioned
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com >
2014-12-29 15:55:21 +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
Ciro Santilli
faab452af9
Remove unneeded password_confirmation from seed.
2014-12-28 14:42:15 +01:00
Marin Jankovski
84af3ceb9b
Add spec for developers can push to protected branches.
2014-12-26 11:41:04 +01:00
uran and yglukhov
1fbc010241
Implemented notes (body) patching in API.
2014-12-25 14:28:40 +02:00
Valery Sizov
e41dadcb33
Doorkeeper integration
2014-12-24 15:38:07 +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