~ubuntu-branches/ubuntu/hardy/do-plugins/hardy

« back to all changes in this revision

Viewing changes to Launchpad/src/LaunchpadAnswersItem.cs

  • Committer: Bazaar Package Importer
  • Author(s): Christopher James Halse Rogers
  • Date: 2008-03-15 13:06:35 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080315130635-jg1g6fbllv1sfjsx
Tags: 0.4.0-0ubuntu1
* New upstream release
* debian/watch:
  + Update for new Launchpad address
* debian/rules:
  + Don't build the Banshee plugin - it interferes with the normal running
    of Banshee
* debian/gnome-do-plugins.install:
  + Update for new plugins

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* LaunchpadAnswersItem.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
using System;
 
20
using System.Text.RegularExpressions;
 
21
using Do.Universe;
 
22
 
 
23
using Do.Addins;
 
24
 
 
25
namespace Do.Launchpad
 
26
{
 
27
        public class LaunchpadAnswerSearchItem : LaunchpadItem
 
28
        {
 
29
                public LaunchpadAnswerSearchItem() { }
 
30
                public string Name { get { return "Answers Search"; } }
 
31
                public string Description { get { return "Search for answers at Launchpad"; } }
 
32
                public string Icon
 
33
                { 
 
34
                        get { return LaunchpadIcons.Instance.GetIconPath("LaunchpadAnswers.png"); }
 
35
                }
 
36
 
 
37
                public bool SupportsItems(IItem[] items)
 
38
                {
 
39
                        return true;
 
40
                }
 
41
 
 
42
                public void Perform (IItem item)
 
43
                {
 
44
                        Regex spaces = new Regex(@"\s+");
 
45
                        string query = (item as ITextItem).Text;
 
46
                        string[] qwords = spaces.Split(query);
 
47
                        Util.Environment.Open("https://answers.launchpad.net/questions/+questions?field.search_text=" + string.Join("+", qwords));
 
48
                }
 
49
        }
 
50
 
 
51
        public class LaunchpadProjectAnswersItem : LaunchpadItem
 
52
        {
 
53
                public LaunchpadProjectAnswersItem() { }
 
54
                public string Name { get { return "Answers"; } }
 
55
                public string Description { get { return "Launchpad Answers"; } }
 
56
 
 
57
                public string Icon
 
58
                { 
 
59
                        get { return LaunchpadIcons.Instance.GetIconPath("LaunchpadAnswers.png"); }
 
60
                }
 
61
 
 
62
                public bool SupportsItems(IItem[] items)
 
63
                {
 
64
                        //Package name can't have a space
 
65
                        Regex numbers = new Regex(@"\s+");
 
66
                        return !numbers.IsMatch((items[0] as ITextItem).Text);
 
67
                }
 
68
 
 
69
                public void Perform (IItem item)
 
70
                {
 
71
                        Util.Environment.Open(string.Format("https://answers.launchpad.net/{0}", (item as ITextItem).Text));
 
72
                }
 
73
        }
 
74
}