aboutsummaryrefslogtreecommitdiff
path: root/src/mapper.h
Commit message (Collapse)AuthorAge
* mapper: fix non-UTF8 music directory nameMax Kellermann2012-08-14
| | | | | | Duplicate the music_dir variable: one encoded in UTF-8, and another one using the configured filesystem character set. This fixes an ancient MPD bug.
* mapper: add mapper_get_music_directory()Max Kellermann2012-02-13
| | | | Shortcut for map_directory_fs(db_get_root()).
* mapper: add "pure" attributesMax Kellermann2012-02-13
|
* copyright year 2011Max Kellermann2011-01-29
|
* {queue,song}_print: print relative paths if possibleMax Kellermann2010-07-25
| | | | | | If a song with an absolute path points inside the music directory, print only the relative part. This happens when partial songs from a playlist file were loaded.
* Update copyright notices.Avuton Olrich2009-12-31
|
* Merge branch 'v0.15.x'Max Kellermann2009-12-14
|\ | | | | | | | | Conflicts: src/decoder/ffmpeg_plugin.c
| * mapper: apply filesystem_charset to playlistsMax Kellermann2009-12-08
| | | | | | | | | | | | | | | | This fixes an inconsistency in the stored playlist subsystem: when obtaining the list of playlists (listplaylist, listplaylistinfo), the file names in the playlist directory are converted to UTF-8 (according to filesystem_charset), but when saving or loading playlists, the filesystem_charset setting was ignored.
* | mapper: pass music and playlist directory to mapper_init()Max Kellermann2009-07-15
|/ | | | Added another glue function in main().
* all: Update copyright header.Avuton Olrich2009-03-13
| | | | | | | | This updates the copyright header to all be the same, which is pretty much an update of where to mail request for a copy of the GPL and the years of the MPD project. This also puts all committers under 'The Music Player Project' umbrella. These entries should go individually in the AUTHORS file, for consistancy.
* mapper: added dot to PLAYLIST_FILE_SUFFIXMax Kellermann2009-01-25
| | | | | Some code will be a little bit simpler if the dot is part of the string literal.
* mapper: make the music_directory optionalMax Kellermann2009-01-18
| | | | Without a music_directory, MPD is an excellent streaming client.
* mapper: allocate the result of map_fs_to_utf8()Max Kellermann2009-01-04
|
* mapper: allocate the result of map_directory_child_fs(), map_song_fs()Max Kellermann2009-01-02
| | | | Don't use fixed stack buffers.
* mapper: allocate the result of map_uri_fs(), map_directory_fs()Max Kellermann2009-01-02
| | | | Don't use fixed stack buffers.
* mapper: allocate playlist path from heapMax Kellermann2009-01-01
| | | | Don't pass a static buffer to map_spl_utf8_to_fs().
* playlist: fix stored playlist modifications with absolute pathsMax Kellermann2008-12-24
| | | | | | | | When save_absolute_paths_in_playlists was enabled in mpd.conf, MPD broke all playlists when manipulated using the "playlistdelete" command. The reason was that map_directory_child_fs() was used, which doesn't accept slashes in the file name. Use the new map_uri_fs() function instead.
* path: moved playlist_dir to mapper.cMax Kellermann2008-10-31
| | | | | Added the function map_spl_utf8_to_fs() which replaces utf8_to_fs_playlist_path().
* added prefix to header macrosMax Kellermann2008-10-31
| | | | | | | "LOG_H" is a macro which is also used by ffmpeg/log.h. This is ffmpeg's fault, because short macros should be reserved for applications, but since it's always a good idea to choose prefixed macro names, even for applications, we are going to do that in MPD.
* mapper: moved musicDir initialization from path.cMax Kellermann2008-10-15
| | | | | Moved the musicDir variable and its initialization code from path.c to mapper.c.
* mapper: new song-to-filesystem mapper libraryMax Kellermann2008-10-14
The mapper library maps directory and song objects to file system paths. With this central library, the code mixture in path.c should be cleaned up, and we will be able to add neat features like aliasing.