mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 15:30:18 +00:00
61 lines
1.4 KiB
Objective-C
61 lines
1.4 KiB
Objective-C
//
|
|
// PBWebDiffController.m
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 13-10-08.
|
|
// Copyright 2008 Pieter de Bie. All rights reserved.
|
|
//
|
|
|
|
#import "PBWebDiffController.h"
|
|
|
|
|
|
@implementation PBWebDiffController
|
|
|
|
- (void) awakeFromNib
|
|
{
|
|
startFile = @"diff";
|
|
[super awakeFromNib];
|
|
[diffController addObserver:self forKeyPath:@"diff" options:0 context:@"ChangedDiff"];
|
|
}
|
|
|
|
- (void)closeView
|
|
{
|
|
[diffController removeObserver:self forKeyPath:@"diff"];
|
|
|
|
[super closeView];
|
|
}
|
|
|
|
|
|
- (void) didLoad
|
|
{
|
|
[self showDiff:diffController.diff];
|
|
}
|
|
|
|
- (void) observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
|
|
{
|
|
if ([(NSString *)context isEqualToString: @"ChangedDiff"])
|
|
[self showDiff:diffController.diff];
|
|
}
|
|
|
|
- (void) showDiff: (NSString *) diff
|
|
{
|
|
if (diff == nil || !finishedLoading)
|
|
return;
|
|
|
|
id script = [view windowScriptObject];
|
|
if ([diff length] == 0)
|
|
[script callWebScriptMethod:@"setMessage" withArguments:[NSArray arrayWithObject:@"There are no differences"]];
|
|
else
|
|
[script callWebScriptMethod:@"showFile" withArguments:[NSArray arrayWithObject:diff]];
|
|
}
|
|
|
|
// TODO: need to be refactoring
|
|
- (void) openFileMerge:(NSString*)file sha:(NSString *)sha sha2:(NSString *)sha2;
|
|
{
|
|
NSArray *args=[NSArray arrayWithObjects:@"difftool",@"--no-prompt",@"--tool=opendiff",sha,sha2,file,nil];
|
|
[repository handleInWorkDirForArguments:args];
|
|
}
|
|
|
|
|
|
@end
|