~haakan/do-plugins/sshfix

« back to all changes in this revision

Viewing changes to AptURL/src/AptUrl.cs

  • Committer: Jason Smith
  • Date: 2008-12-24 04:37:17 UTC
  • mto: This revision was merged to the branch mainline in revision 337.
  • Revision ID: jassmith@gmail.com-20081224043717-9yq3uhajlmnyyg5k
Merge community into official

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* AptUrl.cs 
 
2
 *
 
3
 * GNOME Do is the legal property of its developers. Please refer to the
 
4
 * COPYRIGHT file distributed with this source distribution.
 
5
 *
 
6
 * This program is free software: you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation, either version 3 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
using System;
 
21
using System.Linq;
 
22
using System.Collections.Generic;
 
23
 
 
24
using Do.Universe;
 
25
 
 
26
namespace AptURL {
 
27
 
 
28
    public class AptAction : Act {
 
29
 
 
30
        public override string Name {
 
31
            get { return "Install";  }
 
32
        }
 
33
 
 
34
        public override string Description {
 
35
            get { return "Use apturl to install a package"; }
 
36
        }
 
37
 
 
38
        public override string Icon {
 
39
            get { return "update-manager"; }
 
40
        }
 
41
 
 
42
        public override IEnumerable<Type> SupportedItemTypes {
 
43
            get {
 
44
                return new Type[] {
 
45
                    typeof(ITextItem)
 
46
                };
 
47
            }
 
48
        }
 
49
 
 
50
        public override IEnumerable<Item> Perform (IEnumerable<Item> items, IEnumerable<Item> modItems)
 
51
        {
 
52
            string package = (items.First () as ITextItem).Text;
 
53
 
 
54
            System.Diagnostics.Process.Start ("apturl apt:" + package);
 
55
            return null;
 
56
        }
 
57
    }
 
58
}