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
2015-06-10Add `respond_to_missing?` for Commit and RepositoryRobert Speicher
As of Ruby 1.9, this is the correct way to handle `respond_to?` for methods implemented by `method_missing`. See https://robots.thoughtbot.com/always-define-respond-to-missing-when-overriding
2015-05-26Surround Project.reference_pattern in parenthesis inside other patternsRobert Speicher
2015-05-26Add `reference_pattern` to Referable modelsRobert Speicher
2015-05-26Implement gfm_reference directly in MentionableRobert Speicher
Except for Note, which still overrides it.
2015-05-26Add `to_reference` for models that support referencesRobert Speicher
Now there is a single source of information for which attribute a model uses to be referenced, and its special character.
2015-05-26Add Commit#==Robert Speicher
Prior, comparison would use the Ruby object's ID, which got out of sync after a Spring fork and would result in erroneous test failures. Now we just check that the compared object is a Commit and then compare their underlying raw commit objects.
2015-04-24Move participants method to shared Participable concern.Douwe Maan
2015-04-24No longer needed to pass project argument to commit methods.Douwe Maan
2015-04-24Let commit model know about its project.Douwe Maan
2015-04-17Clean up code somewhat.Douwe Maan
2015-04-15Fix Snippet#participants.Douwe Maan
2015-04-15Clean up code around commit mentions.Douwe Maan
2015-04-14Don't use HTML ellipsis in EmailsOnPush subject truncated commit message.Douwe Maan
2015-04-03Refactor ClosingIssueExtractor.Douwe Maan
2015-04-02Only allow users to cross-reference and close issues they have access to.Douwe Maan
2015-04-02Add Commit#author and #committer.Douwe Maan
2015-02-03Rubocop: Style/ElseAlignment enabledDmitriy Zaporozhets
2014-12-29Replace regex methods by string ones since fasterCiro Santilli
and more readable.
2014-12-14Fixed a lot of already defined noticesJeroen van Baarsen
Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
2014-10-10Dontr decoarate already decorated stuffDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-10-10Use 8chars short sha for commit in viewsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-10-10Use full commit sha width for reference in note body to prevent Ambiguous ↵Dmitriy Zaporozhets
SHA1 prefix problem Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-10-10Use short_id instead of [0..N] for short version of commit shaDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-10-03Merge pull request #7754 from Bugagazavr/hooksDmitriy Zaporozhets
More information in merge request hook
2014-10-03Add parenthesis to function def with arguments.Ciro Santilli
2014-10-02Hook attributesKirill Zaitsev
2014-09-25Decorate commit parentsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-07-15Refactor diff suppress logic and diff viewsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-06-13Detect closing issues in Merge Request descriptionJacob Vosmaer
2014-05-28The hard limit should be a lot more liberal, 10x seems reasonable.dosire
2014-02-25commit description in commit listskv-headless
2014-02-03Use new tags/branches from gitlab_gitDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2013-09-07Improved large commit handling.Boyan Tabakov
Previously, only number of changed files mattered. Now, number of lines to render in the diff are also taken into account. A hard limit is set, above which diffs are not rendered and users are not allowed to override that. This prevents high server resource usage with huge commits. Related to #1745, #2259 In addition, handle large commits for MergeRequests and Compare controllers. Also fixes a bug where diffs are loaded twice, if user goes directly to merge_requests/:id/diffs URL.
2013-08-26Link issues from comments and automatically close themash wilson
Any mention of Issues, MergeRequests, or Commits via GitLab-flavored markdown references in descriptions, titles, or attached Notes creates a back-reference Note that links to the original referencer. Furthermore, pushing commits with commit messages that match a (configurable) regexp to a project's default branch will close any issues mentioned by GFM in the matched closing phrase. If accepting a merge request would close any Issues in this way, a banner is appended to the merge request's main panel to indicate this.
2013-08-12Increase commit title limit at Commit#show so it does not truncate most of ↵Dmitriy Zaporozhets
Merge messages
2013-04-01Use Gitlab::Git:: for git features across applicationDmitriy Zaporozhets
2013-04-01Extend models functionality with old decorator methods. Use Repository modelDmitriy Zaporozhets
2013-03-31Decorate Gitlab::Git::Commit with CommitDmitriy Zaporozhets
2013-03-31Remove grit logic from app/Dmitriy Zaporozhets
2013-03-22Dont show '0 additions and 0 deletions' message for commitDmitriy Zaporozhets
2013-03-20Dont load diff in compare over 100 commitsDmitriy Zaporozhets
2013-01-05Remove unused methodsDmitriy Zaporozhets
2013-01-05Fixed styles, ProjectHook specs etcDmitriy Zaporozhets
2013-01-05Show images preview in notes. Show line additions/deletions for commitDmitriy Zaporozhets
2013-01-03REpostiry, Team modelsDmitriy Zaporozhets
2013-01-03Rspec models Milestone, Commit, UsersProjectDmitriy Zaporozhets
2012-12-22Fix Commit#to_diffRiyad Preukschas
2012-12-20disabled sorting of commits before compareKoen Punt
2012-12-20Flipping commit ids in commits_between, fixes #513Koen Punt
2012-11-22Add Commit#to_diff for raw diffRiyad Preukschas