From 08fd8e01c120bcf497391edac7f43a156e30e2d1 Mon Sep 17 00:00:00 2001 From: Alexander Efremov Date: Fri, 17 Jun 2016 05:49:46 +0700 Subject: [PATCH] cleared tags --- .../Clients/IObservableStatisticsClient.cs | 20 +++++----- .../Clients/ObservableStatisticsClient.cs | 20 +++++----- Octokit/Clients/IStatisticsClient.cs | 40 +++++++++---------- Octokit/Clients/StatisticsClient.cs | 40 +++++++++---------- 4 files changed, 60 insertions(+), 60 deletions(-) diff --git a/Octokit.Reactive/Clients/IObservableStatisticsClient.cs b/Octokit.Reactive/Clients/IObservableStatisticsClient.cs index ec81cf82..442e66ef 100644 --- a/Octokit.Reactive/Clients/IObservableStatisticsClient.cs +++ b/Octokit.Reactive/Clients/IObservableStatisticsClient.cs @@ -16,14 +16,14 @@ namespace Octokit.Reactive /// /// The owner of the repository /// The name of the repository - /// A list of + /// IObservable> GetContributors(string owner, string name); /// /// Returns a list of for the given repository /// /// The ID of the repository - /// A list of + /// IObservable> GetContributors(int repositoryId); /// @@ -31,14 +31,14 @@ namespace Octokit.Reactive /// /// The owner of the repository /// The name of the repository - /// The last year of + /// IObservable GetCommitActivity(string owner, string name); /// /// Returns the last year of commit activity grouped by week. /// /// The ID of the repository - /// The last year of + /// IObservable GetCommitActivity(int repositoryId); /// @@ -46,14 +46,14 @@ namespace Octokit.Reactive /// /// The owner of the repository /// The name of the repository - /// Returns a weekly aggregate of the number additions and deletion + /// IObservable GetCodeFrequency(string owner, string name); /// /// Returns a weekly aggregate of the number of additions and deletions pushed to a repository. /// /// The ID of the repository - /// Returns a weekly aggregate of the number additions and deletion + /// IObservable GetCodeFrequency(int repositoryId); /// @@ -61,14 +61,14 @@ namespace Octokit.Reactive /// /// The owner of the repository /// The name of the repository - /// Returns from oldest week to now + /// IObservable GetParticipation(string owner, string name); /// /// Returns the total commit counts for the owner and total commit counts in total. /// /// The ID of the repository - /// Returns from oldest week to now + /// IObservable GetParticipation(int repositoryId); /// @@ -76,14 +76,14 @@ namespace Octokit.Reactive /// /// The owner of the repository /// The name of the repository - /// Returns commit counts per hour in each day + /// IObservable GetPunchCard(string owner, string name); /// /// Returns a list of the number of commits per hour in each day /// /// The ID of the repository - /// Returns commit counts per hour in each day + /// IObservable GetPunchCard(int repositoryId); } } \ No newline at end of file diff --git a/Octokit.Reactive/Clients/ObservableStatisticsClient.cs b/Octokit.Reactive/Clients/ObservableStatisticsClient.cs index 76e5913a..9163485d 100644 --- a/Octokit.Reactive/Clients/ObservableStatisticsClient.cs +++ b/Octokit.Reactive/Clients/ObservableStatisticsClient.cs @@ -26,7 +26,7 @@ namespace Octokit.Reactive /// /// The owner of the repository /// The name of the repository - /// A list of + /// public IObservable> GetContributors(string owner, string name) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -39,7 +39,7 @@ namespace Octokit.Reactive /// Returns a list of for the given repository /// /// The ID of the repository - /// A list of + /// public IObservable> GetContributors(int repositoryId) { return _client.Repository.Statistics.GetContributors(repositoryId).ToObservable(); @@ -50,7 +50,7 @@ namespace Octokit.Reactive /// /// The owner of the repository /// The name of the repository - /// The last year of + /// public IObservable GetCommitActivity(string owner, string name) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -63,7 +63,7 @@ namespace Octokit.Reactive /// Returns the last year of commit activity grouped by week. /// /// The ID of the repository - /// The last year of + /// public IObservable GetCommitActivity(int repositoryId) { return _client.Repository.Statistics.GetCommitActivity(repositoryId).ToObservable(); @@ -74,7 +74,7 @@ namespace Octokit.Reactive /// /// The owner of the repository /// The name of the repository - /// Returns a weekly aggregate of the number additions and deletion + /// public IObservable GetCodeFrequency(string owner, string name) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -87,7 +87,7 @@ namespace Octokit.Reactive /// Returns a weekly aggregate of the number of additions and deletions pushed to a repository. /// /// The ID of the repository - /// Returns a weekly aggregate of the number additions and deletion + /// public IObservable GetCodeFrequency(int repositoryId) { return _client.Repository.Statistics.GetCodeFrequency(repositoryId).ToObservable(); @@ -98,7 +98,7 @@ namespace Octokit.Reactive /// /// The owner of the repository /// The name of the repository - /// Returns from oldest week to now + /// public IObservable GetParticipation(string owner, string name) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -111,7 +111,7 @@ namespace Octokit.Reactive /// Returns the total commit counts for the owner and total commit counts in total. /// /// The ID of the repository - /// Returns from oldest week to now + /// public IObservable GetParticipation(int repositoryId) { return _client.Repository.Statistics.GetParticipation(repositoryId).ToObservable(); @@ -122,7 +122,7 @@ namespace Octokit.Reactive /// /// The owner of the repository /// The name of the repository - /// Returns commit counts per hour in each day + /// public IObservable GetPunchCard(string owner, string name) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -135,7 +135,7 @@ namespace Octokit.Reactive /// Returns a list of the number of commits per hour in each day /// /// The ID of the repository - /// Returns commit counts per hour in each day + /// public IObservable GetPunchCard(int repositoryId) { return _client.Repository.Statistics.GetPunchCard(repositoryId).ToObservable(); diff --git a/Octokit/Clients/IStatisticsClient.cs b/Octokit/Clients/IStatisticsClient.cs index 41da8219..e8a29071 100644 --- a/Octokit/Clients/IStatisticsClient.cs +++ b/Octokit/Clients/IStatisticsClient.cs @@ -17,14 +17,14 @@ namespace Octokit /// /// The owner of the repository /// The name of the repository - /// A list of + /// Task> GetContributors(string owner, string name); /// /// Returns a list of for the given repository /// /// The ID of the repository - /// A list of + /// Task> GetContributors(int repositoryId); /// @@ -33,7 +33,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// A token used to cancel this potentially long running request - /// A list of + /// Task> GetContributors(string owner, string name, CancellationToken cancellationToken); /// @@ -41,7 +41,7 @@ namespace Octokit /// /// The ID of the repository /// A token used to cancel this potentially long running request - /// A list of + /// Task> GetContributors(int repositoryId, CancellationToken cancellationToken); /// @@ -49,14 +49,14 @@ namespace Octokit /// /// The owner of the repository /// The name of the repository - /// The last year of + /// Task GetCommitActivity(string owner, string name); /// /// Returns the last year of commit activity grouped by week. /// /// The ID of the repository - /// The last year of + /// Task GetCommitActivity(int repositoryId); /// @@ -65,7 +65,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// A token used to cancel this potentially long running request - /// The last year of + /// Task GetCommitActivity(string owner, string name, CancellationToken cancellationToken); /// @@ -73,7 +73,7 @@ namespace Octokit /// /// The ID of the repository /// A token used to cancel this potentially long running request - /// The last year of + /// Task GetCommitActivity(int repositoryId, CancellationToken cancellationToken); /// @@ -81,14 +81,14 @@ namespace Octokit /// /// The owner of the repository /// The name of the repository - /// Returns a weekly aggregate of the number additions and deletion + /// Task GetCodeFrequency(string owner, string name); /// /// Returns a weekly aggregate of the number of additions and deletions pushed to a repository. /// /// The ID of the repository - /// Returns a weekly aggregate of the number additions and deletion + /// Task GetCodeFrequency(int repositoryId); /// @@ -97,7 +97,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// A token used to cancel this potentially long running request - /// Returns a weekly aggregate of the number additions and deletion + /// Task GetCodeFrequency(string owner, string name, CancellationToken cancellationToken); /// @@ -105,7 +105,7 @@ namespace Octokit /// /// The ID of the repository /// A token used to cancel this potentially long running request - /// Returns a weekly aggregate of the number additions and deletion + /// Task GetCodeFrequency(int repositoryId, CancellationToken cancellationToken); /// @@ -113,14 +113,14 @@ namespace Octokit /// /// The owner of the repository /// The name of the repository - /// Returns from oldest week to now + /// Task GetParticipation(string owner, string name); /// /// Returns the total commit counts for the owner and total commit counts in total. /// /// The ID of the repository - /// Returns from oldest week to now + /// Task GetParticipation(int repositoryId); /// @@ -129,7 +129,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// A token used to cancel this potentially long running request - /// Returns from oldest week to now + /// Task GetParticipation(string owner, string name, CancellationToken cancellationToken); /// @@ -137,7 +137,7 @@ namespace Octokit /// /// The ID of the repository /// A token used to cancel this potentially long running request - /// Returns from oldest week to now + /// Task GetParticipation(int repositoryId, CancellationToken cancellationToken); /// @@ -145,14 +145,14 @@ namespace Octokit /// /// The owner of the repository /// The name of the repository - /// Returns commit counts per hour in each day + /// Task GetPunchCard(string owner, string name); /// /// Returns a list of the number of commits per hour in each day /// /// The ID of the repository - /// Returns commit counts per hour in each day + /// Task GetPunchCard(int repositoryId); /// @@ -161,7 +161,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// A token used to cancel this potentially long running request - /// Returns commit counts per hour in each day + /// Task GetPunchCard(string owner, string name, CancellationToken cancellationToken); /// @@ -169,7 +169,7 @@ namespace Octokit /// /// The ID of the repository /// A token used to cancel this potentially long running request - /// Returns commit counts per hour in each day + /// Task GetPunchCard(int repositoryId, CancellationToken cancellationToken); } } \ No newline at end of file diff --git a/Octokit/Clients/StatisticsClient.cs b/Octokit/Clients/StatisticsClient.cs index 03f69f78..07c1a6d6 100644 --- a/Octokit/Clients/StatisticsClient.cs +++ b/Octokit/Clients/StatisticsClient.cs @@ -26,7 +26,7 @@ namespace Octokit /// /// The owner of the repository /// The name of the repository - /// A list of + /// public Task> GetContributors(string owner, string name) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -39,7 +39,7 @@ namespace Octokit /// Returns a list of for the given repository /// /// The ID of the repository - /// A list of + /// public Task> GetContributors(int repositoryId) { return GetContributors(repositoryId, CancellationToken.None); @@ -51,7 +51,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// A token used to cancel this potentially long running request - /// A list of + /// public Task> GetContributors(string owner, string name, CancellationToken cancellationToken) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -65,7 +65,7 @@ namespace Octokit /// /// The ID of the repository /// A token used to cancel this potentially long running request - /// A list of + /// public Task> GetContributors(int repositoryId, CancellationToken cancellationToken) { return ApiConnection.GetQueuedOperation(ApiUrls.StatsContributors(repositoryId), cancellationToken); @@ -76,7 +76,7 @@ namespace Octokit /// /// The owner of the repository /// The name of the repository - /// The last year of + /// public Task GetCommitActivity(string owner, string name) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -89,7 +89,7 @@ namespace Octokit /// Returns the last year of commit activity grouped by week. /// /// The ID of the repository - /// The last year of + /// public Task GetCommitActivity(int repositoryId) { return GetCommitActivity(repositoryId, CancellationToken.None); @@ -101,7 +101,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// A token used to cancel this potentially long running request - /// The last year of + /// public async Task GetCommitActivity(string owner, string name, CancellationToken cancellationToken) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -117,7 +117,7 @@ namespace Octokit /// /// The ID of the repository /// A token used to cancel this potentially long running request - /// The last year of + /// public async Task GetCommitActivity(int repositoryId, CancellationToken cancellationToken) { var activity = await ApiConnection.GetQueuedOperation( @@ -130,7 +130,7 @@ namespace Octokit /// /// The owner of the repository /// The name of the repository - /// Returns a weekly aggregate of the number additions and deletion + /// public Task GetCodeFrequency(string owner, string name) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -143,7 +143,7 @@ namespace Octokit /// Returns a weekly aggregate of the number of additions and deletions pushed to a repository. /// /// The ID of the repository - /// Returns a weekly aggregate of the number additions and deletion + /// public Task GetCodeFrequency(int repositoryId) { return GetCodeFrequency(repositoryId, CancellationToken.None); @@ -155,7 +155,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// A token used to cancel this potentially long running request - /// Returns a weekly aggregate of the number additions and deletion + /// public async Task GetCodeFrequency(string owner, string name, CancellationToken cancellationToken) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -171,7 +171,7 @@ namespace Octokit /// /// The ID of the repository /// A token used to cancel this potentially long running request - /// Returns a weekly aggregate of the number additions and deletion + /// public async Task GetCodeFrequency(int repositoryId, CancellationToken cancellationToken) { var rawFrequencies = await ApiConnection.GetQueuedOperation( @@ -184,7 +184,7 @@ namespace Octokit /// /// The owner of the repository /// The name of the repository - /// Returns from oldest week to now + /// public Task GetParticipation(string owner, string name) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -197,7 +197,7 @@ namespace Octokit /// Returns the total commit counts for the owner and total commit counts in total. /// /// The ID of the repository - /// Returns from oldest week to now + /// public Task GetParticipation(int repositoryId) { return GetParticipation(repositoryId, CancellationToken.None); @@ -209,7 +209,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// A token used to cancel this potentially long running request - /// Returns from oldest week to now + /// public async Task GetParticipation(string owner, string name, CancellationToken cancellationToken) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -225,7 +225,7 @@ namespace Octokit /// /// The ID of the repository /// A token used to cancel this potentially long running request - /// Returns from oldest week to now + /// public async Task GetParticipation(int repositoryId, CancellationToken cancellationToken) { var result = await ApiConnection.GetQueuedOperation( @@ -238,7 +238,7 @@ namespace Octokit /// /// The owner of the repository /// The name of the repository - /// Returns commit counts per hour in each day + /// public Task GetPunchCard(string owner, string name) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -251,7 +251,7 @@ namespace Octokit /// Returns a list of the number of commits per hour in each day /// /// The ID of the repository - /// Returns commit counts per hour in each day + /// public Task GetPunchCard(int repositoryId) { return GetPunchCard(repositoryId, CancellationToken.None); @@ -263,7 +263,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// A token used to cancel this potentially long running request - /// Returns commit counts per hour in each day + /// public async Task GetPunchCard(string owner, string name, CancellationToken cancellationToken) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -279,7 +279,7 @@ namespace Octokit /// /// The ID of the repository /// A token used to cancel this potentially long running request - /// Returns commit counts per hour in each day + /// public async Task GetPunchCard(int repositoryId, CancellationToken cancellationToken) { var punchCardData = await ApiConnection.GetQueuedOperation(