aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRomain Bignon <romain@peerfuse.org>2009-11-04 00:21:58 +0100
committerRomain Bignon <romain@peerfuse.org>2009-11-04 00:21:58 +0100
commit5744634094628bcf2637dae6998a9340818026f7 (patch)
tree5edf6336323891c3fb7672ec35fd3bce26ddf088
parent4dc25d3908648cc781fe43e54243bb64aec4b2cb (diff)
sticker comments in code and example configuration file
Signed-off-by: Romain Bignon <romain@peerfuse.org>
-rw-r--r--doc/mpdconf.example5
-rw-r--r--src/command.c5
2 files changed, 10 insertions, 0 deletions
diff --git a/doc/mpdconf.example b/doc/mpdconf.example
index 6da84fc3..1a054709 100644
--- a/doc/mpdconf.example
+++ b/doc/mpdconf.example
@@ -49,6 +49,11 @@
#
#state_file "~/.mpd/state"
#
+# The location of the sticker database. This is a database which
+# manages dynamic information attached to songs.
+#
+#sticker_file "~/.mpd/sticker.sql"
+#
###############################################################################
diff --git a/src/command.c b/src/command.c
index 38673f00..ba087dc4 100644
--- a/src/command.c
+++ b/src/command.c
@@ -1597,6 +1597,7 @@ sticker_song_find_print_cb(struct song *song, const char *value,
static enum command_return
handle_sticker_song(struct client *client, int argc, char *argv[])
{
+ /* get song song_id key */
if (argc == 5 && strcmp(argv[1], "get") == 0) {
struct song *song;
char *value;
@@ -1619,6 +1620,7 @@ handle_sticker_song(struct client *client, int argc, char *argv[])
g_free(value);
return COMMAND_RETURN_OK;
+ /* list song song_id */
} else if (argc == 4 && strcmp(argv[1], "list") == 0) {
struct song *song;
struct sticker *sticker;
@@ -1641,6 +1643,7 @@ handle_sticker_song(struct client *client, int argc, char *argv[])
sticker_free(sticker);
return COMMAND_RETURN_OK;
+ /* set song song_id id key */
} else if (argc == 6 && strcmp(argv[1], "set") == 0) {
struct song *song;
bool ret;
@@ -1660,6 +1663,7 @@ handle_sticker_song(struct client *client, int argc, char *argv[])
}
return COMMAND_RETURN_OK;
+ /* delete song song_id [key] */
} else if ((argc == 4 || argc == 5) &&
strcmp(argv[1], "delete") == 0) {
struct song *song;
@@ -1682,6 +1686,7 @@ handle_sticker_song(struct client *client, int argc, char *argv[])
}
return COMMAND_RETURN_OK;
+ /* find song dir key */
} else if (argc == 5 && strcmp(argv[1], "find") == 0) {
/* "sticker find song a/directory name" */
struct directory *directory;