~ubuntu-branches/ubuntu/wily/remuco-server/wily

« back to all changes in this revision

Viewing changes to base/module/remuco/defs.py

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-03-30 00:59:36 UTC
  • Revision ID: james.westby@ubuntu.com-20090330005936-hkxki384hm0d33gj
Tags: upstream-0.8.2.1
ImportĀ upstreamĀ versionĀ 0.8.2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# =============================================================================
 
2
#
 
3
#    Remuco - A remote control system for media players.
 
4
#    Copyright (C) 2006-2009 Oben Sonne <obensonne@googlemail.com>
 
5
#
 
6
#    This file is part of Remuco.
 
7
#
 
8
#    Remuco is free software: you can redistribute it and/or modify
 
9
#    it under the terms of the GNU General Public License as published by
 
10
#    the Free Software Foundation, either version 3 of the License, or
 
11
#    (at your option) any later version.
 
12
#
 
13
#    Remuco is distributed in the hope that it will be useful,
 
14
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
#    GNU General Public License for more details.
 
17
#
 
18
#    You should have received a copy of the GNU General Public License
 
19
#    along with Remuco.  If not, see <http://www.gnu.org/licenses/>.
 
20
#
 
21
# =============================================================================
 
22
 
 
23
PLAYBACK_PAUSE = 1
 
24
PLAYBACK_PLAY = 2
 
25
PLAYBACK_STOP = 0
 
26
 
 
27
INFO_ABSTRACT = "__abstract__"
 
28
INFO_ALBUM = "album"
 
29
INFO_ARTIST = "artist"
 
30
INFO_BITRATE = "bitrate"
 
31
INFO_COMMENT = "comment"
 
32
INFO_GENRE = "genre"
 
33
INFO_LENGTH = "length"
 
34
INFO_RATING = "rating"
 
35
INFO_TAGS = "tags"
 
36
INFO_TITLE = "title"
 
37
INFO_TRACK = "track"
 
38
INFO_YEAR = "year"
 
39
 
 
40
REMUCO_VERSION = "0.8.2"
 
41