Dmitriy Zaporozhets
815e9aa283
Merge branch 'master' of dev.gitlab.org:gitlab/gitlabhq into haynes/gitlab-ce-commit_calendar
2015-01-28 22:52:44 -08:00
Hannes Rosenögger
792ced2f41
Add a commit calendar to the user profile
2015-01-29 01:25:26 +01:00
Marin Jankovski
68f7302474
Add a scope for visible services, code styling changes for easier readability.
2015-01-28 14:25:55 -08:00
Marin Jankovski
c6c7552e41
Build the urls inside of the service.
2015-01-28 13:19:32 -08:00
Marin Jankovski
537cd66d7e
Add gitlab internal issue tracker service.
2015-01-28 09:28:17 -08:00
Dmitriy Zaporozhets
fc17b440f9
Merge branch 'move_external_issue_tracker_away_from_yml_config' into 'master'
...
Move external issue tracker away from yml config
See merge request !1442
2015-01-27 20:57:48 +00:00
Boyan Tabakov
93bc2d5202
Added support for firing system hooks on group create/destroy and adding/removing users to group.
...
Added tests and updated docs. Also adding 'user_id' field in the hooks for adding/removing user from team.
2015-01-27 09:25:28 +02:00
Marin Jankovski
0da59cb55b
Merge branch 'master' into move_external_issue_tracker_away_from_yml_config
...
Conflicts:
app/models/project.rb
spec/models/project_spec.rb
2015-01-26 22:12:53 -08:00
Marin Jankovski
33913f9b8f
Make issue tracker service fields required.
2015-01-26 22:08:27 -08:00
Marin Jankovski
00a0d5aeea
Move repetition to the parent.
2015-01-26 16:24:11 -08:00
Marin Jankovski
65e700472b
Update the issue tracker attribute on issue tracker change.
2015-01-26 11:39:32 -08:00
Hannes Rosenögger
70c44a0da2
Fix tests, merge conflicts, some minor issues and make the project avatar feature mergable
2015-01-24 18:51:16 +01:00
Steven Thonus and Hannes Rosenögger
42bac7f9f2
adding avatar to project settings page added avatar removal show project avatar on dashboard, projects page, project page added rspec and feature tests added project avatar from repository new default project icon added added copying af avatar to forking of project added generated icon fixed avatar fork hound fix style fix test fix
2015-01-24 18:51:16 +01:00
Marin Jankovski
c70dcd2907
Merge branch 'master' into move_external_issue_tracker_away_from_yml_config
2015-01-23 12:38:46 -08:00
Marin Jankovski
a720dde67c
Remove configuration option from project settings page for external issue trackers.
2015-01-23 11:55:41 -08:00
Marin Jankovski
7c701acf57
Do a check which issue tracker is used inside the project.
2015-01-23 11:01:09 -08:00
Marin Jankovski
103a1bb06d
Use service settings instead of config file settings to present issues.
2015-01-23 10:28:38 -08:00
Marin Jankovski
737f6516e6
Update new services with initialization based on existing data.
2015-01-23 09:14:45 -08:00
Dmitriy Zaporozhets
98ee4a1fa7
Annotate models
2015-01-22 09:40:03 -08:00
Dmitriy Zaporozhets
a5b255fbdf
Code improvements according to styleguide
2015-01-22 09:37:47 -08:00
Dmitriy Zaporozhets
2b10520b30
Merge pull request #7999 from cirosantilli/append-inplace
...
Append in place for strings and arrays [failure unrelated]
2015-01-21 23:07:15 -08:00
Dmitriy Zaporozhets
7d1e6f1546
Merge pull request #8607 from skburgart/fix-typos
...
Fix various typos
2015-01-21 23:02:48 -08:00
Dmitriy Zaporozhets
581b2c5e90
Merge branch 'vote-count' of https://github.com/mc1arke/gitlabhq into mc1arke-vote-count
...
Conflicts:
CHANGELOG
2015-01-21 22:40:12 -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
2395b8f079
Merge branch 'show_tags_in_commit_view' into 'master'
...
Show tags in commit view
### What does this MR do?
With this MR you can see the assigned tags for a commit in the commit view.
### Are there points in the code the reviewer needs to double check?
I don't think so. But it would be awesome if the reviewer can tell me how to add a tag to the sample_commit in spec/support/repo_helpers.rb.
Then I can add a test for the new tag_names_contains method as soon as possible :)
### Why was this MR needed?
At the moment if one click on a commit will see details such as: parent commit, amount of additions, deletions, but will not see if this commit has Tag linked to it.
Showing branch, tag details will give better overview about the commit
### What are the relevant issue numbers / Feature requests?
Feature request: http://feedback.gitlab.com/forums/176466-general/suggestions/3962044-show-tags-in-commit-view
### Screenshots

@dblessing Can you take a look at this MR as well please?
See merge request !297
2015-01-21 18:23:46 +00:00
Marin Jankovski
e9d6d1e51a
Custom issue tracker service.
2015-01-20 16:55:35 -08:00
Marin Jankovski
09de0bfc37
Redmine doesn't require title and description change
2015-01-20 16:55:12 -08:00
Marin Jankovski
62c00661c4
Allow creation of the jira and redmine services.
2015-01-20 16:47:29 -08:00
Marin Jankovski
9371c6b901
Add issue tracker services.
2015-01-20 16:46:27 -08:00
Michael Clarke
505a492cd8
Only count the user's last vote
2015-01-19 21:18:36 +00: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
77adf81e87
Fix tests
2015-01-18 19:13:41 -08:00
Dmitriy Zaporozhets
390e380225
Merge branch 'hipchat_placeholder' into 'master'
...
Add placeholder values to hipchat service
This MR adds placeholder values to the hipchat service.
This should prevent issues like #279 or #772 that popped up because people didn't know what exactly they are supposed to enter in the fields.
See merge request !294
2015-01-18 19:23:39 +00:00
Steven Burgart
5c80160218
Fix various typos
...
signe-in -> signed-in
go_to_gihub_for_permissions -> go_to_github_for_permissions
descendand -> descendant
behavour -> behaviour
recepient_email -> recipient_email
generate_fingerpint -> generate_fingerprint
dependes -> depends
Cant't -> Can't
wisit -> visit
notifcation -> notification
sufficent_scope -> sufficient_scope?
levet -> level
2015-01-18 10:29:37 -05:00
Hannes Rosenögger
1e9e3fc73d
Make the project search case insensitive
2015-01-18 12:28:29 +01:00
Hannes Rosenögger
8243eb3f0e
Show tags in commit view
2015-01-17 19:22:35 +01:00
Hannes Rosenögger
33fea08944
Add placeholders to hipchat service
2015-01-17 18:06:43 +01:00
Dmitriy Zaporozhets
38600e328b
Validate application settings only if column exists
2015-01-16 17:22:17 -08:00
Dmitriy Zaporozhets
41d7be3ce1
Allow to specify home page for non logged-in users
2015-01-16 16:01:15 -08:00
Dmitriy Zaporozhets
c5ba87a2fb
Merge pull request #8096 from cirosantilli/regex-to-string
...
Replace regex methods by string ones since faster and more readable
2015-01-15 14:37:11 -08:00
Dmitriy Zaporozhets
9c4015f3e8
Merge pull request #8430 from cirosantilli/simplify-ssh-fingerprint-regex
...
Simplify SSH fingerprint regexp extraction
2015-01-15 14:33:24 -08:00
Dmitriy Zaporozhets
b758b4c80b
If noteable is nil - make discussion outdated
2015-01-10 19:26:00 -08:00
Dmitriy Zaporozhets
d0a50985ec
Create ApplicationSettings if does not exist in runtime
2015-01-08 11:26:16 -08:00
Dmitriy Zaporozhets
57a65ede77
Improve application settings and write tests
2015-01-08 09:53:35 -08:00
Dmitriy Zaporozhets
8589b4e137
Init ApplicationSettings resource with defaults from config file
2015-01-08 00:22:50 -08:00
Dmitriy Zaporozhets
de6256ee67
Merge branch 'master' of github.com:gitlabhq/gitlabhq
2015-01-06 21:50:00 -08:00
Dmitriy Zaporozhets
1269faa6ad
Merge pull request #8503 from cirosantilli/unused-ex-var
...
Remove unused ex local variable from event.rb
2015-01-06 16:54:27 -08:00
Dmitriy Zaporozhets
ccdf08d80a
Refactor merge request merge service
...
* Add system note when user merges MR in same way as it closes it
* Remove duplicating code
2015-01-06 16:24:47 -08:00
Robert Schilling
05dd6309ba
Raise group avatar filesize limit to 200kb, fixes #8527
2015-01-02 14:54:51 +01:00
Ciro Santilli
33c9f05c6b
Append in place for strings and arrays
2015-01-01 21:12:00 +01:00