Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 438470
Collapse All | Expand All

(-)a/bundles/org.eclipse.orion.client.git/web/git/plugins/gitPlugin.js (-3 / +3 lines)
Lines 414-422 Link Here
414
								Value: clone.GitUrl
414
								Value: clone.GitUrl
415
							},
415
							},
416
							{
416
							{
417
								Name: "Git Status",
417
								Name: "Git Repository",
418
								Value: "Git Status",
418
								Value: "Git Repository",
419
								Href: "{+OrionHome}/git/git-status.html#" + item.Git.StatusLocation
419
								Href: "{+OrionHome}/git/git-repository.html#" + item.Git.CloneLocation
420
							}
420
							}
421
						]
421
						]
422
					}
422
					}
(-)a/bundles/org.eclipse.orion.client.git/web/orion/git/util.js (-3 lines)
Lines 20-27 Link Here
20
	var interestedUnstagedGroup = ["Missing", "Modified", "Untracked", "Conflicting"]; //$NON-NLS-3$ //$NON-NLS-2$ //$NON-NLS-1$ //$NON-NLS-0$
20
	var interestedUnstagedGroup = ["Missing", "Modified", "Untracked", "Conflicting"]; //$NON-NLS-3$ //$NON-NLS-2$ //$NON-NLS-1$ //$NON-NLS-0$
21
	var interestedStagedGroup = ["Added", "Changed", "Removed"]; //$NON-NLS-2$ //$NON-NLS-1$ //$NON-NLS-0$
21
	var interestedStagedGroup = ["Added", "Changed", "Removed"]; //$NON-NLS-2$ //$NON-NLS-1$ //$NON-NLS-0$
22
	
22
	
23
	var statusUILocation = "git/git-status.html"; //$NON-NLS-0$
24
25
	function isStaged(change) {
23
	function isStaged(change) {
26
		for (var i = 0; i < interestedStagedGroup.length; i++) {
24
		for (var i = 0; i < interestedStagedGroup.length; i++) {
27
			if (change.type === interestedStagedGroup[i]) {
25
			if (change.type === interestedStagedGroup[i]) {
Lines 136-142 Link Here
136
	}
134
	}
137
135
138
	return {
136
	return {
139
		statusUILocation: statusUILocation,
140
		isStaged: isStaged,
137
		isStaged: isStaged,
141
		isUnstaged: isUnstaged,
138
		isUnstaged: isUnstaged,
142
		isChange: isChange,
139
		isChange: isChange,

Return to bug 438470