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

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Skovhede <kenneth@hexad.dk>2017-01-24 00:12:24 +0300
committerKenneth Skovhede <kenneth@hexad.dk>2017-01-24 00:12:24 +0300
commit1424be05f91991cc47667d027babc70b045bf758 (patch)
tree54782d2e28af4d79d8ae2cedaec6f5a2d659fd18 /Duplicati/Library/Interface
parent56beda2941fde27055234a95ce7e9a725fec7a9c (diff)
Fixed a bunch of typos.
This fixes #2278.
Diffstat (limited to 'Duplicati/Library/Interface')
-rw-r--r--Duplicati/Library/Interface/IGenericModule.cs2
-rw-r--r--Duplicati/Library/Interface/IGenericSourceModule.cs98
2 files changed, 50 insertions, 50 deletions
diff --git a/Duplicati/Library/Interface/IGenericModule.cs b/Duplicati/Library/Interface/IGenericModule.cs
index 0db3eb7e0..9e6d1acaa 100644
--- a/Duplicati/Library/Interface/IGenericModule.cs
+++ b/Duplicati/Library/Interface/IGenericModule.cs
@@ -24,7 +24,7 @@ using System.Text;
namespace Duplicati.Library.Interface
{
/// <summary>
- /// An interface for a plugable generic module.
+ /// An interface for a pluggable generic module.
/// An instance of a module is loaded prior to a backup or restore operation,
/// and can perform tasks relating to the general execution environment, as
/// well as modify the options used in Duplicati.
diff --git a/Duplicati/Library/Interface/IGenericSourceModule.cs b/Duplicati/Library/Interface/IGenericSourceModule.cs
index f29161181..a48eaee38 100644
--- a/Duplicati/Library/Interface/IGenericSourceModule.cs
+++ b/Duplicati/Library/Interface/IGenericSourceModule.cs
@@ -1,49 +1,49 @@
-#region Disclaimer / License
-// Copyright (C) 2015, The Duplicati Team
-// http://www.duplicati.com, info@duplicati.com
-//
-// This library is free software; you can redistribute it and/or
-// modify it under the terms of the GNU Lesser General Public
-// License as published by the Free Software Foundation; either
-// version 2.1 of the License, or (at your option) any later version.
-//
-// This library is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-// Lesser General Public License for more details.
-//
-// You should have received a copy of the GNU Lesser General Public
-// License along with this library; if not, write to the Free Software
-// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-//
-#endregion
-using System;
-using System.Collections.Generic;
-
-namespace Duplicati.Library.Interface
-{
- /// <summary>
- /// An interface for a plugable source module.
- /// An instance of a module is loaded prior to a backup or restore operation,
- /// and can perform tasks relating to the source plugins, as
- /// well as modify backup source, the options and filters used in Duplicati.
- /// </summary>
- public interface IGenericSourceModule : IGenericModule
- {
- /// <summary>
- /// This method parse and alter backup source paths, apply and alter filters and returns changed or added options values.
- /// </summary>
- /// <param name="paths">Backup source paths</param>
- /// <param name="filter">Filters that are applied to backup paths (include, exclude)</param>
- /// <param name="commandlineOptions">A set of commandline options passed to Duplicati</param>
- /// <returns>A list of changed or added options values</returns>
- Dictionary<string, string> ParseSourcePaths(ref string[] paths, ref string filter, Dictionary<string, string> commandlineOptions);
-
- /// <summary>
- /// This method decides if input variables contains something to backup.
- /// </summary>
- /// <param name="paths">A set of source paths</param>
- /// <returns>If module is going to backup anything, it returns true, otherwise false</returns>
- bool ContainFilesForBackup(string[] paths);
- }
-}
+#region Disclaimer / License
+// Copyright (C) 2015, The Duplicati Team
+// http://www.duplicati.com, info@duplicati.com
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+//
+#endregion
+using System;
+using System.Collections.Generic;
+
+namespace Duplicati.Library.Interface
+{
+ /// <summary>
+ /// An interface for a pluggable source module.
+ /// An instance of a module is loaded prior to a backup or restore operation,
+ /// and can perform tasks relating to the source plugins, as
+ /// well as modify backup source, the options and filters used in Duplicati.
+ /// </summary>
+ public interface IGenericSourceModule : IGenericModule
+ {
+ /// <summary>
+ /// This method parse and alter backup source paths, apply and alter filters and returns changed or added options values.
+ /// </summary>
+ /// <param name="paths">Backup source paths</param>
+ /// <param name="filter">Filters that are applied to backup paths (include, exclude)</param>
+ /// <param name="commandlineOptions">A set of commandline options passed to Duplicati</param>
+ /// <returns>A list of changed or added options values</returns>
+ Dictionary<string, string> ParseSourcePaths(ref string[] paths, ref string filter, Dictionary<string, string> commandlineOptions);
+
+ /// <summary>
+ /// This method decides if input variables contains something to backup.
+ /// </summary>
+ /// <param name="paths">A set of source paths</param>
+ /// <returns>If module is going to backup anything, it returns true, otherwise false</returns>
+ bool ContainFilesForBackup(string[] paths);
+ }
+}