~ubuntu-branches/ubuntu/natty/exaile/natty

« back to all changes in this revision

Viewing changes to plugins/lastfmproxy/config.py

  • Committer: Bazaar Package Importer
  • Author(s): Nick Ellery
  • Date: 2008-11-04 18:33:00 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20081104183300-e4t9seztl35bdb24
Tags: 0.2.14-0ubuntu1
* New upstream release (LP: #280287)
* debian/control:
  - tighten dependency on python-gtk2 to (>= 2.10)
  - added python-sexy to recommends to add a clear button to filters
  - added python-gnome2-extras to recommends for lyrics, better tray icon,
    etc.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
# Port and address to listen to
 
3
listenport = 1881
 
4
bind_address = "127.0.0.1"
 
5
 
 
6
# Stick your last.fm username and password between the quotes below.
 
7
username = "synic"
 
8
password = "fruitloops"
 
9
 
 
10
# Which theme (skin) to use
 
11
theme = "default"
 
12
 
 
13
# Change "useproxy" to True and set the host and port if 
 
14
# you need an external proxy.
 
15
useproxy = False
 
16
proxyhost = "my.proxy.host"
 
17
proxyport = 8000
 
18
# Set these if your proxy requires authentication.
 
19
# Note: Only "Basic" authentication is supported.
 
20
proxyuser = ""
 
21
proxypass = ""
 
22