本文整理汇总了C#中Revision.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# Revision.ToString方法的具体用法?C# Revision.ToString怎么用?C# Revision.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Revision
的用法示例。
在下文中一共展示了Revision.ToString方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: SetRevision
public static void SetRevision(this IIntegrationResult integrationResult, Revision revision)
{
if (integrationResult == null)
{
throw new ArgumentNullException("integrationResult");
}
var sourceControlProperties = NameValuePair.ToDictionary(integrationResult.SourceControlData);
sourceControlProperties[RevisionKey] = revision.ToString();
integrationResult.SourceControlData.Clear();
NameValuePair.Copy(sourceControlProperties, integrationResult.SourceControlData);
}
示例2: GetTextAtRevision
public override string GetTextAtRevision (FilePath repositoryPath, Revision revision)
{
var repository = GetRepository (repositoryPath);
ObjectId id = repository.Resolve (revision.ToString ());
RevWalk rw = new RevWalk (repository);
RevCommit c = rw.ParseCommit (id);
if (c == null)
return string.Empty;
else
return GetCommitTextContent (c, repositoryPath);
}
示例3: SetRevision
public void SetRevision (MonoTextEditor toEditor, Revision rev)
{
BackgroundWorker worker = new BackgroundWorker ();
worker.DoWork += delegate(object sender, DoWorkEventArgs e) {
Revision workingRevision = (Revision)e.Argument;
string text = null;
try {
text = info.Item.Repository.GetTextAtRevision (info.VersionInfo.LocalPath, workingRevision);
} catch (Exception ex) {
text = string.Format (GettextCatalog.GetString ("Error while getting the text of revision {0}:\n{1}"), workingRevision, ex.ToString ());
MessageService.ShowError (text);
}
e.Result = new KeyValuePair<Revision, string> (workingRevision, text);
};
worker.RunWorkerCompleted += delegate(object sender, RunWorkerCompletedEventArgs e) {
Application.Invoke (delegate {
var result = (KeyValuePair<Revision, string>)e.Result;
var box = toEditor == editors[0] ? diffComboBox : originalComboBox;
RemoveLocal (toEditor.GetTextEditorData ());
box.SetItem (string.Format (GettextCatalog.GetString ("Revision {0}\t{1}\t{2}"), result.Key, result.Key.Time, result.Key.Author), null, result.Key);
toEditor.Text = result.Value;
IdeApp.Workbench.StatusBar.AutoPulse = false;
IdeApp.Workbench.StatusBar.EndProgress ();
IdeApp.Workbench.StatusBar.ShowReady ();
box.Sensitive = true;
UpdateDiff ();
});
};
worker.RunWorkerAsync (rev);
IdeApp.Workbench.StatusBar.BeginProgress (string.Format (GettextCatalog.GetString ("Retrieving revision {0}..."), rev.ToString ()));
IdeApp.Workbench.StatusBar.AutoPulse = true;
if (toEditor == editors[0]) {
diffRevision = rev;
} else {
originalRevision = rev;
}
var box2 = toEditor == editors[0] ? diffComboBox : originalComboBox;
box2.Sensitive = false;
}
示例4: OnGetTextAtRevision
protected override string OnGetTextAtRevision (FilePath repositoryPath, Revision revision)
{
var repository = GetRepository (repositoryPath);
ObjectId id = repository.Resolve (revision.ToString ());
RevWalk rw = new RevWalk (repository);
RevCommit c = rw.ParseCommit (id);
return c == null ? string.Empty : GetCommitTextContent (c, repositoryPath);
}
示例5: GetRevisionText
string GetRevisionText (Mono.TextEditor.TextEditor editor, Revision rev)
{
if (!editor.Document.ReadOnly)
return GettextCatalog.GetString ("(working copy)");
if (rev == null)
return GettextCatalog.GetString ("(base)");
return string.Format (GettextCatalog.GetString ("(revision {0})"), rev.ToString ());
}
示例6: Show
public static void Show (string file, Repository vc, string revPath, Revision revision) {
new Worker (Path.GetFileName (file) + " (revision " + revision.ToString () + ")",
file, vc, revPath, revision).Start ();
}
示例7: GetTextAtRevision
public override string GetTextAtRevision (FilePath repositoryPath, Revision revision)
{
StringReader sr = RunCommand ("show \"" + revision.ToString () + ":" + repositoryPath.ToRelative (path) + "\"", true);
return sr.ReadToEnd ();
}
示例8: Add
public HgArguments Add(Revision revision)
{
if (revision == null)
{
throw new ArgumentNullException("revision");
}
return revision != Revision.NotSpecified ? Add("--rev", revision.ToString()) : this;
}