Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-12-28Set default sort for tags to Last updatedSam Rose
Fix spacing between nav control elements Wrap navigation text on Tags list page
2016-10-28Fix lightweight tags not processed correctly by GitTagPushServiceAlejandro Rodríguez
When we updated gitlab_git to 10.4.1, `tag.target` changed from pointing to the sha of the tag to the sha of the commit the tag points to. The problem is that only annotated tags have `object_sha`s, lightweight tags don't (it's nil), so (only) in their case we still need to use `tag.target`.
2016-10-05Respond with 404 Not Found for non-existent tagsLinus G Thiel
Non-existent tags should be handled with 404 Not Found.
2016-10-05Respond with 404 Not Found for non-existent tagsLinus G Thiel
Non-existent tags should be handled with 404 Not Found.
2016-08-31add specs for tags findertiagonbotelho
2016-08-31filters tags by nametiagonbotelho
2016-07-26Show release notes in tag listSean McGivern
A release's tag reference is just the name of the tag, not the entire tag object. This also fixes the tags index if a tag's message contains non-UTF8 byte sequences.
2016-06-16Add sorting dropdown to tag pageAlejandro Rodríguez
2016-03-20Use the configured Kaminari "per page" defaultRobert Speicher
2016-03-01Make the tags delete button remote in the tags listRémy Coutable
2015-12-03Add authorization to new branch/tag pages.Douwe Maan
2015-11-09Add missing param and title for tagDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-11-09Refactor release code a bitDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-11-05Improve UI for tags pageDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-11-05After tag is created - redirect to tag pageDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-11-05Add release description to new tag formDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-11-05Create show page for tag and render release notes there and on index pageDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-11-05More release related logic to separate resourceDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-11-05Add edit/update tag actions for future release notesDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2015-04-20Fixed the Rails/ActionFilter copJeroen van Baarsen
Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
2015-03-13Move tag deletion to service and execute hooks and services.Douwe Maan
2015-03-13Use same constant for amount of items per pageDmitriy Zaporozhets
2015-03-10Use Gitlab::Git helper methods and constants as much as possible.Douwe Maan
2015-02-20Merge branch 'master' into rails-4.1.9Vinnie Okada
Conflicts: app/views/dashboard/_project.html.haml app/views/events/event/_common.html.haml app/views/explore/projects/_project.html.haml app/views/groups/_projects.html.haml app/views/projects/_home_panel.html.haml app/views/projects/_issues_nav.html.haml app/views/projects/issues/_discussion.html.haml app/views/projects/issues/_issues.html.haml app/views/projects/issues/show.html.haml app/views/projects/merge_requests/_discussion.html.haml app/views/projects/merge_requests/_show.html.haml app/views/projects/milestones/index.html.haml app/views/projects/notes/_edit_form.html.haml app/views/shared/_issuable_filter.html.haml
2015-02-14Upgrade to Rails 4.1.9Vinnie Okada
Make the following changes to deal with new behavior in Rails 4.1.2: * Use nested resources to avoid slashes in arguments to path helpers.
2015-02-13Move all event creation to EventCreateService.Douwe Maan
2015-01-12Refactor push data builder. Moved it to separate classDmitriy Zaporozhets
Also execute GitLab CI on creating tag via UI
2014-11-05remove auth duplicationValery Sizov
2014-10-13Factor authorize_push! and authorize_code_access!Ciro Santilli
with existing method_missing. Pattern already used extensively, so let's be consistent and use it everywhere.
2014-09-21Factor error and success methods from services.Ciro Santilli
2014-09-12update tags count if tag gets deletedRobert Schilling
2014-09-04Added annotated tags. Updated tag haml file and call to gitlab-shell. ↵Sean Edge
Updated API for annotated tags. Added tests for API. Strip leading/trailing whitespace from message, if present. Update CHANGELOG.
2014-09-03Validate tag-names and references in WebUI, APIRobert Schilling
2014-05-28Update tags_controller.rb to use CreateTagService.Sean Edge
2014-04-14Use VersionSorter on the Project > Tags pageRobert Speicher
2014-02-03Use new tags/branches from gitlab_gitDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2013-07-17create corresponding events when create branch/tag with UIDmitriy Zaporozhets
2013-07-17Feature: add git tag via uiDmitriy Zaporozhets
2013-07-17Improve permissions on tags/branchesDmitriy Zaporozhets
2013-07-17Move repo tags to own controller. add ability to remove tagsDmitriy Zaporozhets