Commit 8b7e8225 authored by Rémi Duraffort's avatar Rémi Duraffort

macosx: add the possibility to export the playlist as HTML (already possible using qt interface).

parent 39f4fd84
...@@ -462,6 +462,7 @@ ...@@ -462,6 +462,7 @@
[o_save_accessory_text setStringValue: _NS("File Format:")]; [o_save_accessory_text setStringValue: _NS("File Format:")];
[[o_save_accessory_popup itemAtIndex:0] setTitle: _NS("Extended M3U")]; [[o_save_accessory_popup itemAtIndex:0] setTitle: _NS("Extended M3U")];
[[o_save_accessory_popup itemAtIndex:1] setTitle: _NS("XML Shareable Playlist Format (XSPF)")]; [[o_save_accessory_popup itemAtIndex:1] setTitle: _NS("XML Shareable Playlist Format (XSPF)")];
[[o_save_accessory_popup itemAtIndex:2] setTitle: _NS("HTML playlist")];
} }
- (void)playlistUpdated - (void)playlistUpdated
...@@ -721,7 +722,27 @@ ...@@ -721,7 +722,27 @@
{ {
NSString *o_filename = [o_save_panel filename]; NSString *o_filename = [o_save_panel filename];
if( [o_save_accessory_popup indexOfSelectedItem] == 1 ) if( [o_save_accessory_popup indexOfSelectedItem] == 0 )
{
NSString * o_real_filename;
NSRange range;
range.location = [o_filename length] - [@".m3u" length];
range.length = [@".m3u" length];
if( [o_filename compare:@".m3u" options: NSCaseInsensitiveSearch
range: range] != NSOrderedSame )
{
o_real_filename = [NSString stringWithFormat: @"%@.m3u", o_filename];
}
else
{
o_real_filename = o_filename;
}
playlist_Export( p_playlist,
[o_real_filename fileSystemRepresentation],
p_playlist->p_local_category, "export-m3u" );
}
else if( [o_save_accessory_popup indexOfSelectedItem] == 1 )
{ {
NSString * o_real_filename; NSString * o_real_filename;
NSRange range; NSRange range;
...@@ -745,13 +766,13 @@ ...@@ -745,13 +766,13 @@
{ {
NSString * o_real_filename; NSString * o_real_filename;
NSRange range; NSRange range;
range.location = [o_filename length] - [@".m3u" length]; range.location = [o_filename length] - [@".html" length];
range.length = [@".m3u" length]; range.length = [@".html" length];
if( [o_filename compare:@".m3u" options: NSCaseInsensitiveSearch if( [o_filename compare:@".html" options: NSCaseInsensitiveSearch
range: range] != NSOrderedSame ) range: range] != NSOrderedSame )
{ {
o_real_filename = [NSString stringWithFormat: @"%@.m3u", o_filename]; o_real_filename = [NSString stringWithFormat: @"%@.html", o_filename];
} }
else else
{ {
...@@ -759,7 +780,7 @@ ...@@ -759,7 +780,7 @@
} }
playlist_Export( p_playlist, playlist_Export( p_playlist,
[o_real_filename fileSystemRepresentation], [o_real_filename fileSystemRepresentation],
p_playlist->p_local_category, "export-m3u" ); p_playlist->p_local_category, "export-html" );
} }
} }
pl_Release( VLCIntf ); pl_Release( VLCIntf );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment