aboutsummaryrefslogtreecommitdiffstats
path: root/src/queue_print.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* copyright year 2011Max Kellermann2011-01-291-1/+1
|
* {queue,song}_print: print relative paths if possibleMax Kellermann2010-07-251-0/+1
| | | | | | 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.
* queue_print: hide HTTP password in the "playlist" commandMax Kellermann2010-07-251-5/+2
| | | | | | | I've already changed the "playlistinfo" command to hide HTTP passwords, but forgot to do the same for the simpler "playlist" command. This patch changes queue_print_uris() to use the code from song_print_uri().
* Update copyright notices.Avuton Olrich2009-12-311-1/+1
|
* include config.h in all sourcesMax Kellermann2009-11-121-0/+1
| | | | | | After we've been hit by Large File Support problems several times in the past week (which only occur on 32 bit platforms, which I don't have), this is yet another attempt to fix the issue.
* queue_print: queue_print_song_info() is not necessry for export.Avuton Olrich2009-03-301-1/+9
|
* all: Update copyright header.Avuton Olrich2009-03-131-3/+4
| | | | | | | | 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.
* locate: added locate_item_list_casefold()Max Kellermann2009-01-241-5/+1
| | | | | Merged casefolding code from two locations into this one library function.
* queue_print, dbUtils: use struct locate_item_listMax Kellermann2009-01-241-7/+8
| | | | | Changed the function prototypes to get locate_item_list objects instead of num_items/items.
* locate: added struct locate_item_listMax Kellermann2009-01-241-5/+5
| | | | | Instead of passing two parameters around (number of items, array of items), combine both in a variable size struct.
* locate: no CamelCaseMax Kellermann2009-01-241-3/+3
| | | | Renamed functions and variables.
* queue_print: use new_items instead of itemsMax Kellermann2009-01-241-1/+1
| | | | Fix a typo in one of the previous patches.
* playlist: removed locate functions to queue_print.cMax Kellermann2009-01-241-0/+34
| | | | Now playlist.c does not contain any protocol specific code anymore.
* playlist: moved some printing code to queue_print.cMax Kellermann2009-01-231-0/+79
Moved protocol printing functions which operate on the queue to queue_print.c.