Check-in [539c433d31]
Overview
| Comment: | Disable xiph plugin per default, introduce requests.Session() support for implicit cookies |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
539c433d318044c4dd8706c883caff78 |
| User & Date: | mario on 2014-04-28 02:05:34 |
| Other Links: | manifest | tags |
Context
|
2014-04-28
| ||
| 02:13 | changelog for 2.1.0 check-in: 5005ad1f3b user: mario tags: trunk, 2.1.0 | |
| 02:05 | Disable xiph plugin per default, introduce requests.Session() support for implicit cookies check-in: 539c433d31 user: mario tags: trunk | |
| 02:05 | Update for 2.1.0 files check-in: 7863a3ff19 user: mario tags: trunk | |
Changes
Modified ahttp.py from [cfbb6a842e] to [54ba22823f].
| ︙ | |||
10 11 12 13 14 15 16 | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | - + | # And a function to add trailings slashes on http URLs. # # from config import conf, __print__, dbg import requests |
| ︙ | |||
35 36 37 38 39 40 41 42 | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | + + - + - + - + - + - + |
if feedback:
try: [feedback(d) for d in args]
except: pass
# prepare default query object
session = requests.Session()
# default HTTP headers for requests
|
| ︙ |
bundle/requests/packages/chardet/chardetect.py became a regular file with contents [925391857a].
| ︙ |
Modified config.py from [9c4bf2dcba] to [8c6d57fc14].
| ︙ | |||
70 71 72 73 74 75 76 77 78 79 80 81 82 83 | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | + |
self.record = {
"*/*": "x-terminal-emulator -e streamripper %srv",
# x-terminal-emulator -e streamripper %srv -d /home/***USERNAME***/Musik
}
self.plugins = {
"bookmarks": 1, # built-in plugins, cannot be disabled
"shoutcast": 1,
"xiph": 0, # way too slow on first start
"punkcast": 0, # disable per default
"basicch": 0, # ceased
"tv": 0, # no longer working
}
self.tmp = os.environ.get("TEMP", "/tmp")
self.max_streams = "120"
self.show_bookmarks = 1
|
| ︙ |
Modified st2.py from [bd7fd6c62b] to [7776cafb92].
| ︙ | |||
89 90 91 92 93 94 95 96 97 98 99 100 101 102 | 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | + + | from config import __print__, dbg import ahttp import action # needs workaround... (action.main=main) from channels import * import favicon __version__ = "2.1.0" # this represents the main window # and also contains most application behaviour main = None class StreamTunerTwo(gtk.Builder): |
| ︙ | |||
528 529 530 531 532 533 534 | 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 | - + |
# auxiliary window: about dialog
class AboutStreamtuner2:
# about us
def __init__(self):
a = gtk.AboutDialog()
|
| ︙ |