Profile in movie list

This commit is contained in:
Ruud
2011-08-21 21:06:20 +02:00
parent 6c960afad6
commit 332d7128b1
3 changed files with 17 additions and 5 deletions
@@ -39,12 +39,19 @@ var Movie = new Class({
'text': self.data.library.plot
}),
self.quality = new Element('div.quality', {
'text': self.profile ? self.profile.get('label') : ''
'text': self.profile.get('label')+ ':'
})
),
self.actions = new Element('div.actions')
)
);
self.profile.get('types').each(function(type){
var q = Quality.getQuality(type.quality_id);
new Element('span', {
'text': ' '+q.label
}).inject(self.quality);
})
Object.each(self.options.actions, function(action, key){
self.actions.adopt(
@@ -19,6 +19,12 @@ var QualityBase = new Class({
return this.profiles[id]
},
getQuality: function(id){
return this.qualities.filter(function(q){
return q.id == id;
}).pick();
},
addSettings: function(){
var self = this;
@@ -106,9 +112,7 @@ var QualityBase = new Class({
new Element('input.min', {'value': quality.size_min}),
new Element('input.max', {'value': quality.size_max})
).inject(group)
})
p(group)
});
}
+2 -1
View File
@@ -131,6 +131,7 @@ class Renamer(Plugin):
final_file_name = final_file_name.replace(' ', separator)
# Main file
group['destination_dir'] = os.path.join(destination, final_folder_name)
rename_files[file] = os.path.join(destination, final_folder_name, final_file_name)
# Check for extra subtitle files
@@ -176,7 +177,7 @@ class Renamer(Plugin):
for rename_me in rename_files:
filename = os.path.basename(rename_me)
rename_files[rename_me] = rename_me.replace(filename, '_EXISTS_%s' % filename)
# Notify on rename fail
download_message = 'Renaming of %s (%s) canceled, exists in %s already.' % (movie.library.titles[0].title, group['meta_data']['quality']['label'], release.quality.label)
fireEvent('notify', type = 'movie.renaming.canceled', message = download_message, data = group)