~ubuntu-branches/debian/squeeze/f-spot/squeeze

« back to all changes in this revision

Viewing changes to extensions/FlickrExport/FlickrNet/PhotoSearchOrder.cs

  • Committer: Bazaar Package Importer
  • Author(s): Iain Lane, Mirco Bauer, Iain Lane
  • Date: 2009-02-07 20:23:32 UTC
  • mfrom: (1.1.18 upstream)
  • Revision ID: james.westby@ubuntu.com-20090207202332-oc93rfjo1st0571s
Tags: 0.5.0.3-2
[ Mirco Bauer]
* Upload to unstable.
* debian/control:
  + Lowered GNOME# build-deps to 2.0 ABI as that transition didn't happen
    yet in unstable.

[ Iain Lane ]
* debian/patches/svn-r4545_locales-import.dpatch: Patch backported from SVN
  trunk revision 4545 - initialize the translation catalog earlier (LP: #293305)
  (Closes: #514457). Thanks to Florian Heinle for finding the patch and to
  Chris Coulson for preparing the update.
* debian/control: Build-depend on libmono-dev (>= 1.2.4) to match configure
  checks.
* debian/rules: Pass CSC=/usr/bin/csc to configure for gio-sharp to fix FTBFS

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
using System;
2
 
 
3
 
namespace FlickrNet
4
 
{
5
 
        /// <summary>
6
 
        /// The sort order for the <see cref="Flickr.PhotosSearch"/>,
7
 
        /// <see cref="Flickr.PhotosGetWithGeoData"/>, <see cref="Flickr.PhotosGetWithoutGeoData"/> methods.
8
 
        /// </summary>
9
 
        public enum PhotoSearchSortOrder
10
 
        {
11
 
                /// <summary>
12
 
                /// No sort order.
13
 
                /// </summary>
14
 
                None,
15
 
                /// <summary>
16
 
                /// Sort by date uploaded (posted).
17
 
                /// </summary>
18
 
                DatePostedAsc,
19
 
                /// <summary>
20
 
                /// Sort by date uploaded (posted) in descending order.
21
 
                /// </summary>
22
 
                DatePostedDesc,
23
 
                /// <summary>
24
 
                /// Sort by date taken.
25
 
                /// </summary>
26
 
                DateTakenAsc,
27
 
                /// <summary>
28
 
                /// Sort by date taken in descending order.
29
 
                /// </summary>
30
 
                DateTakenDesc,
31
 
                /// <summary>
32
 
                /// Sort by interestingness.
33
 
                /// </summary>
34
 
                InterestingnessAsc,
35
 
                /// <summary>
36
 
                /// Sort by interestingness in descending order.
37
 
                /// </summary>
38
 
                InterestingnessDesc,
39
 
                /// <summary>
40
 
                /// Sort by relevance
41
 
                /// </summary>
42
 
                Relevance
43
 
        }
44
 
 
45
 
}