~ubuntu-branches/debian/squeeze/gnome-do-plugins/squeeze

« back to all changes in this revision

Viewing changes to BundledLibraries/libgoogle-data-mono-1.4.0.2/src/ghealth/healthfeed.cs

  • Committer: Bazaar Package Importer
  • Author(s): Christopher James Halse Rogers
  • Date: 2009-06-27 16:11:49 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090627161149-b74nc297di2842u1
* New upstream release
  + Pidgin plugin now supports initial text for messages (LP: #338608)
  + Pidgin plugin opens conversations on the correct IM network (LP: #370965)
* debian/rules:
  + Update get-orig-source target.  Upstream no longer ships gdata* binaries,
    so we no longer need to strip them
* debian/patches/00_use_system_gdata
  + Drop.  Upstream now builds against system libgdata.
* debian/patches/04_fix_pidgin_dbus_ints
* debian/patches/10_fix_rhythmbox_file
* debian/patches/15_twitter_api
* debian/patches/20_twitter_overflow:
  + Drop.  Included upstream.
* debian/patches/01_firefox_iceweasel_rename:
  + Refresh for new version
* debian/patches/02_fix_banshee_plugin:
  + Drop refernce to /usr/lib/banshee-1/Banshee.CollectionIndexer.dll.
    This is unnecessary, and causes errors when Banshee isn't installed.
* debian/patches/00_debian_default_plugins:
  + Enable a bunch of useful plugins that do not require configuration from 
    the "Official" plugin set by default.  Makes Do more useful out of the 
    box.
* debian/control:
  + Bump versioned build-dep on gnome-do to 0.8.2
  + Split out gnome-do-plugin-evolution package, now that this is possible.
    libevolution5.0-cil has an annoyingly large dependency stack.
    (LP: #351535) (Closes: #524993).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (c) 2006 Google Inc.
2
 
 *
3
 
 * Licensed under the Apache License, Version 2.0 (the "License");
4
 
 * you may not use this file except in compliance with the License.
5
 
 * You may obtain a copy of the License at
6
 
 *
7
 
 *     http://www.apache.org/licenses/LICENSE-2.0
8
 
 *
9
 
 * Unless required by applicable law or agreed to in writing, software
10
 
 * distributed under the License is distributed on an "AS IS" BASIS,
11
 
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
 
 * See the License for the specific language governing permissions and
13
 
 * limitations under the License.
14
 
*/
15
 
 
16
 
using System;
17
 
using System.Collections;
18
 
using System.Text;
19
 
using System.Xml;
20
 
using Google.GData.Client;
21
 
using Google.GData.Extensions;
22
 
 
23
 
namespace Google.GData.Health {
24
 
 
25
 
 
26
 
    //////////////////////////////////////////////////////////////////////
27
 
    /// <summary>
28
 
    /// The Google Health Data API allows applications to view and send health data in the form of Google Data feeds. 
29
 
    /// </summary>
30
 
    //////////////////////////////////////////////////////////////////////
31
 
    public class HealthFeed : AbstractFeed
32
 
    {
33
 
 
34
 
        /// <summary>
35
 
        ///  default constructor
36
 
        /// </summary>
37
 
        /// <param name="uriBase">the base URI of the feedEntry</param>
38
 
        /// <param name="iService">the Service to use</param>
39
 
        public HealthFeed(Uri uriBase, IService iService) : base(uriBase, iService)
40
 
        {
41
 
        }
42
 
 
43
 
        /// <summary>
44
 
        /// this needs to get implemented by subclasses
45
 
        /// </summary>
46
 
        /// <returns>AtomEntry</returns>
47
 
        public override AtomEntry CreateFeedEntry()
48
 
        {
49
 
            return new HealthEntry();
50
 
        }
51
 
 
52
 
        /// <summary>
53
 
        /// get's called after we already handled the custom entry, to handle all 
54
 
        /// other potential parsing tasks
55
 
        /// </summary>
56
 
        /// <param name="e"></param>
57
 
        /// <param name="parser">the atom feed parser used</param>
58
 
        protected override void HandleExtensionElements(ExtensionElementEventArgs e, AtomFeedParser parser)
59
 
        {
60
 
            base.HandleExtensionElements(e, parser);
61
 
        }
62
 
    }
63
 
}