Check-in [fbb2beedd7]
Overview
Comment: | Use fallback title= for mkrow() importing. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
fbb2beedd771c384f9172568718b0a8e |
User & Date: | mario on 2015-05-06 17:06:56 |
Other Links: | manifest | tags |
Context
2015-05-06
| ||
17:36 | Converted help images to more grayscale/indexed variants to reduce filesize. check-in: 178fe1e006 user: mario tags: trunk | |
17:06 | Use fallback title= for mkrow() importing. check-in: fbb2beedd7 user: mario tags: trunk | |
17:06 | Fix urlencode references to urllib.quote. check-in: 334e951b04 user: mario tags: trunk | |
Changes
Modified README from [3f020cac1d] to [dcbecb8051].
︙ | ︙ | |||
49 50 51 52 53 54 55 | DEB / RPM --------- There are rudimentary packages built as .DEB and .RPM version. Install those if feasible. The dependencies may not match with your package | | | 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | DEB / RPM --------- There are rudimentary packages built as .DEB and .RPM version. Install those if feasible. The dependencies may not match with your package manager, and are somewhat incomplete. (See "Dependencies" section.) PYZ --- Other users may wish to try the new Python archive (.PYZ) instead. Which requires little installation and can be run asis: |
︙ | ︙ |
Modified action.py from [75cdfd8027] to [d816e37503].
︙ | ︙ | |||
514 515 516 517 518 519 520 | return rows # Add placeholder fields to extracted row def mkrow(self, row, title=None): url = row.get("url", "") comb = { | | | 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 | return rows # Add placeholder fields to extracted row def mkrow(self, row, title=None): url = row.get("url", "") comb = { "title": row.get("title") or title or re.sub("\.\w+$", "", os.path.basename(self.fn)), "playing": "", "url": None, "homepage": "", "listformat": self.probe_ext(url) or "href", # or srv? "format": self.mime_guess(url), "genre": "copy", } |
︙ | ︙ |
Modified st2.py from [f5518a5d34] to [833ae6e3d8].
1 2 3 4 5 6 | #!/usr/bin/env python # encoding: UTF-8 # api: python # type: application # title: streamtuner2 # description: Directory browser for internet radio, audio and video streams | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #!/usr/bin/env python # encoding: UTF-8 # api: python # type: application # title: streamtuner2 # description: Directory browser for internet radio, audio and video streams # version: 2.1.8-dev # state: beta # author: Mario Salzer <mario@include-once.org> # license: Public Domain # url: http://freshcode.club/projects/streamtuner2 # config: # { type: env, name: http_proxy, description: proxy for HTTP access } # { type: env, name: XDG_CONFIG_HOME, description: relocates user .config subdirectory } |
︙ | ︙ |