mirror of
https://github.com/fergalmoran/picard.git
synced 2026-02-21 07:04:02 +00:00
Basic support for loading the community ratings from MB.
This commit is contained in:
@@ -309,6 +309,8 @@ class Album(DataObject, Item):
|
||||
inc += ['track-level-rels']
|
||||
if self.config.setting['folksonomy_tags']:
|
||||
inc += ['tags']
|
||||
if self.config.setting['save_community_ratings']:
|
||||
inc += ['ratings']
|
||||
self.tagger.xmlws.get_release_by_id(self.id, self._release_request_finished, inc=inc)
|
||||
|
||||
def update(self, update_tracks=True):
|
||||
|
||||
@@ -125,6 +125,8 @@ def track_to_metadata(node, m, config=None, track=None):
|
||||
release_to_metadata(nodes[0].release[0], m)
|
||||
elif name == 'tag_list':
|
||||
add_folksonomy_tags(nodes[0], track)
|
||||
elif name == 'rating':
|
||||
m['rating'] = nodes[0].text
|
||||
|
||||
|
||||
def release_to_metadata(node, m, config=None, album=None):
|
||||
|
||||
@@ -30,6 +30,7 @@ from picard.ui.options import (
|
||||
general,
|
||||
interface,
|
||||
folksonomy,
|
||||
ratings,
|
||||
matching,
|
||||
metadata,
|
||||
naming,
|
||||
|
||||
58
picard/ui/options/ratings.py
Normal file
58
picard/ui/options/ratings.py
Normal file
@@ -0,0 +1,58 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Picard, the next-generation MusicBrainz tagger
|
||||
# Copyright (C) 2008 Philipp Wolfer
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or
|
||||
# modify it under the terms of the GNU General Public License
|
||||
# as published by the Free Software Foundation; either version 2
|
||||
# of the License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
from PyQt4 import QtCore, QtGui
|
||||
from picard.config import BoolOption, TextOption, IntOption
|
||||
from picard.ui.options import OptionsPage, OptionsCheckError, register_options_page
|
||||
#from picard.ui.ui_options_ratings import Ui_RatingsOptionsPage
|
||||
|
||||
|
||||
class RatingsOptionsPage(OptionsPage):
|
||||
|
||||
NAME = "ratings"
|
||||
TITLE = N_("Ratings")
|
||||
PARENT = "metadata"
|
||||
SORT_ORDER = 20
|
||||
ACTIVE = True
|
||||
|
||||
options = [
|
||||
BoolOption("setting", "save_community_ratings", False),
|
||||
]
|
||||
|
||||
def __init__(self, parent=None):
|
||||
super(RatingsOptionsPage, self).__init__(parent)
|
||||
#self.ui = Ui_FolksonomyOptionsPage()
|
||||
#self.ui.setupUi(self)
|
||||
|
||||
def load(self):
|
||||
pass
|
||||
# self.ui.max_tags.setValue(self.config.setting["max_tags"])
|
||||
# self.ui.min_tag_usage.setValue(self.config.setting["min_tag_usage"])
|
||||
# self.ui.join_tags.setEditText(self.config.setting["join_tags"])
|
||||
# self.ui.ignore_tags.setText(self.config.setting["ignore_tags"])
|
||||
|
||||
def save(self):
|
||||
pass
|
||||
# self.config.setting["max_tags"] = self.ui.max_tags.value()
|
||||
# self.config.setting["min_tag_usage"] = self.ui.min_tag_usage.value()
|
||||
# self.config.setting["join_tags"] = self.ui.join_tags.currentText()
|
||||
# self.config.setting["ignore_tags"] = self.ui.ignore_tags.text()
|
||||
|
||||
|
||||
register_options_page(RatingsOptionsPage)
|
||||
@@ -76,6 +76,7 @@ tag_names = {
|
||||
'mixer': N_('Mixer'),
|
||||
'language': N_('Language'),
|
||||
'script': N_('Script'),
|
||||
'rating': N_('Rating'),
|
||||
}
|
||||
|
||||
def display_tag_name(name):
|
||||
|
||||
Reference in New Issue
Block a user