<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Musicplayer module for pluck</title>
	<atom:link href="http://jopsen.dk/blog/2009/10/musicplayer-module-for-pluck/feed/" rel="self" type="application/rss+xml" />
	<link>http://jopsen.dk/blog/2009/10/musicplayer-module-for-pluck/</link>
	<description>Thoughts mixed with random memory dumps...</description>
	<lastBuildDate>Fri, 13 Jan 2012 08:11:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Jonas Finnemann Jensen</title>
		<link>http://jopsen.dk/blog/2009/10/musicplayer-module-for-pluck/comment-page-1/#comment-12422</link>
		<dc:creator>Jonas Finnemann Jensen</dc:creator>
		<pubDate>Sun, 09 Jan 2011 10:21:07 +0000</pubDate>
		<guid isPermaLink="false">http://jopsen.dk/blog/?p=150#comment-12422</guid>
		<description>Hmm... Acoording to [1] it&#039;s possible to load the variables like this:
xspf_jukebox.swf?autoplay=true&amp;playlist_url=playlist.xml&amp;...
Or this:
xspf_jukebox.swf?loadurl=var.txt&amp;playlist_url=playlist.xml
where var.txt contains the variables...

What you&#039;re doing is obviously the first approach, and if that works better than the second then why not use it...

You can mail me the patch my email is jopsen@gmail.com
(If you know how to use git format-patch that&#039;s probably the easiest, otherwise just send me a list of changes).
Or you can create a fork of the project on github, push you changes there and send a pull-request...

Thanks for fixing this bug...

[1] http://lacymorrow.com/projects/jukebox/xspfdoc.html</description>
		<content:encoded><![CDATA[<p>Hmm&#8230; Acoording to [1] it&#8217;s possible to load the variables like this:<br />
xspf_jukebox.swf?autoplay=true&#038;playlist_url=playlist.xml&#038;&#8230;<br />
Or this:<br />
xspf_jukebox.swf?loadurl=var.txt&#038;playlist_url=playlist.xml<br />
where var.txt contains the variables&#8230;</p>
<p>What you&#8217;re doing is obviously the first approach, and if that works better than the second then why not use it&#8230;</p>
<p>You can mail me the patch my email is <a href="mailto:jopsen@gmail.com">jopsen@gmail.com</a><br />
(If you know how to use git format-patch that&#8217;s probably the easiest, otherwise just send me a list of changes).<br />
Or you can create a fork of the project on github, push you changes there and send a pull-request&#8230;</p>
<p>Thanks for fixing this bug&#8230;</p>
<p>[1] <a href="http://lacymorrow.com/projects/jukebox/xspfdoc.html" rel="nofollow">http://lacymorrow.com/projects/jukebox/xspfdoc.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: giux</title>
		<link>http://jopsen.dk/blog/2009/10/musicplayer-module-for-pluck/comment-page-1/#comment-12420</link>
		<dc:creator>giux</dc:creator>
		<pubDate>Sun, 09 Jan 2011 09:04:53 +0000</pubDate>
		<guid isPermaLink="false">http://jopsen.dk/blog/?p=150#comment-12420</guid>
		<description>perhaps i can send you code because in the textarea i cannot paste it correctly?</description>
		<content:encoded><![CDATA[<p>perhaps i can send you code because in the textarea i cannot paste it correctly?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: giux</title>
		<link>http://jopsen.dk/blog/2009/10/musicplayer-module-for-pluck/comment-page-1/#comment-12419</link>
		<dc:creator>giux</dc:creator>
		<pubDate>Sun, 09 Jan 2011 09:02:53 +0000</pubDate>
		<guid isPermaLink="false">http://jopsen.dk/blog/?p=150#comment-12419</guid>
		<description>hi,
 the problem was in pluckplayer/pages_site/player.php, when it build the url to pass loadurl parameter to player use vars.php. 
I don&#039;t know reason, but if i pass  url in loadurl the player don&#039;t work fine, but if i print parameter the player work.
You can see this on:
http://pluck.ath.cx

Excusme for my very bad english, i understand but i don&#039;t able to write fine:(


....
//$variables =    &quot;data/modules/pluckplayer/player/vars.php&quot;;
$variables=&quot;&amp;activeDownload=&quot;.m_v_bool_out($settings[&quot;activeDownload&quot;]).&quot;&amp;alphabetize=&quot;.m_v_bool_out($settings[&quot;alphabetize&quot;]);
$variables=$variables.&quot;&amp;autoload=&quot;.m_v_bool_out($settings[&quot;autoload&quot;]).&quot;&amp;autoplay=&quot;.m_v_bool_out($settings[&quot;autoplay&quot;]).&quot;&amp;repeat=&quot;.m_v_bool_out($settings[&quot;repeat&quot;]);
$variables=$variables.&quot;&amp;repeat_playlist=&quot;.m_v_bool_out($settings[&quot;repeat_playlist&quot;]).&quot;&amp;shuffle=&quot;.m_v_bool_out($settings[&quot;shuffle&quot;]).&quot;&amp;crossFade=&quot;.m_v_bool_out($settings[&quot;crossFade&quot;]);

$p_w = $settings[&quot;width&quot;];
$p_h = $settings[&quot;height&quot;];
?&gt;

&lt;object classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; width=&quot;&quot; height=&quot;&quot; id=&quot;flashObject&quot; align=&quot;middle&quot;&gt;
&lt;param name=&quot;movie&quot;
       value=&quot;?playlist_url=&amp;skin_url=&amp;loadurl=&quot; /&gt;

&lt;embed
    src=&quot;?playlist_url=&amp;skin_url=&amp;loadurl=&quot;
....
bie</description>
		<content:encoded><![CDATA[<p>hi,<br />
 the problem was in pluckplayer/pages_site/player.php, when it build the url to pass loadurl parameter to player use vars.php.<br />
I don&#8217;t know reason, but if i pass  url in loadurl the player don&#8217;t work fine, but if i print parameter the player work.<br />
You can see this on:<br />
<a href="http://pluck.ath.cx" rel="nofollow">http://pluck.ath.cx</a></p>
<p>Excusme for my very bad english, i understand but i don&#8217;t able to write fine:(</p>
<p>&#8230;.<br />
//$variables =    &#8220;data/modules/pluckplayer/player/vars.php&#8221;;<br />
$variables=&#8221;&amp;activeDownload=&#8221;.m_v_bool_out($settings["activeDownload"]).&#8221;&amp;alphabetize=&#8221;.m_v_bool_out($settings["alphabetize"]);<br />
$variables=$variables.&#8221;&amp;autoload=&#8221;.m_v_bool_out($settings["autoload"]).&#8221;&amp;autoplay=&#8221;.m_v_bool_out($settings["autoplay"]).&#8221;&amp;repeat=&#8221;.m_v_bool_out($settings["repeat"]);<br />
$variables=$variables.&#8221;&amp;repeat_playlist=&#8221;.m_v_bool_out($settings["repeat_playlist"]).&#8221;&amp;shuffle=&#8221;.m_v_bool_out($settings["shuffle"]).&#8221;&amp;crossFade=&#8221;.m_v_bool_out($settings["crossFade"]);</p>
<p>$p_w = $settings["width"];<br />
$p_h = $settings["height"];<br />
?&gt;</p>
<p>&lt;object classid=&quot;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&quot; width=&quot;&#8221; height=&#8221;" id=&#8221;flashObject&#8221; align=&#8221;middle&#8221;&gt;<br />
&lt;param name=&quot;movie&quot;<br />
       value=&quot;?playlist_url=&amp;skin_url=&amp;loadurl=&#8221; /&gt;</p>
<p>&lt;embed<br />
    src=&quot;?playlist_url=&amp;skin_url=&amp;loadurl=&#8221;<br />
&#8230;.<br />
bie</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: giux</title>
		<link>http://jopsen.dk/blog/2009/10/musicplayer-module-for-pluck/comment-page-1/#comment-12396</link>
		<dc:creator>giux</dc:creator>
		<pubDate>Sun, 09 Jan 2011 01:09:25 +0000</pubDate>
		<guid isPermaLink="false">http://jopsen.dk/blog/?p=150#comment-12396</guid>
		<description>hi, i&#039;ve correct the bug 
if you want i can send you a patch.
Giuseppe</description>
		<content:encoded><![CDATA[<p>hi, i&#8217;ve correct the bug<br />
if you want i can send you a patch.<br />
Giuseppe</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonas Finnemann Jensen</title>
		<link>http://jopsen.dk/blog/2009/10/musicplayer-module-for-pluck/comment-page-1/#comment-12383</link>
		<dc:creator>Jonas Finnemann Jensen</dc:creator>
		<pubDate>Sat, 08 Jan 2011 20:32:26 +0000</pubDate>
		<guid isPermaLink="false">http://jopsen.dk/blog/?p=150#comment-12383</guid>
		<description>Have you tried to change the settings?
If that doesn&#039;t work try out another theme, some of them can be broken... Else you can take a look into the source, it&#039;s not that complicated. You can set extra variables for XSPF Jukebox in player/vars.php
Take a look at:
http://lacymorrow.com/projects/jukebox/xspfdoc.html
and
https://github.com/jopsen/pluckplayer/blob/master/player/vars.php</description>
		<content:encoded><![CDATA[<p>Have you tried to change the settings?<br />
If that doesn&#8217;t work try out another theme, some of them can be broken&#8230; Else you can take a look into the source, it&#8217;s not that complicated. You can set extra variables for XSPF Jukebox in player/vars.php<br />
Take a look at:<br />
<a href="http://lacymorrow.com/projects/jukebox/xspfdoc.html" rel="nofollow">http://lacymorrow.com/projects/jukebox/xspfdoc.html</a><br />
and<br />
<a href="https://github.com/jopsen/pluckplayer/blob/master/player/vars.php" rel="nofollow">https://github.com/jopsen/pluckplayer/blob/master/player/vars.php</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: giux</title>
		<link>http://jopsen.dk/blog/2009/10/musicplayer-module-for-pluck/comment-page-1/#comment-12379</link>
		<dc:creator>giux</dc:creator>
		<pubDate>Sat, 08 Jan 2011 19:52:35 +0000</pubDate>
		<guid isPermaLink="false">http://jopsen.dk/blog/?p=150#comment-12379</guid>
		<description>hi,
 i want test your modules on this demo webpage:

http://pluck.ath.cx

but i&#039;ve some problem with it. The player work fine if i want listen one song, but don&#039;t start next song. For me is a bug. You can help me?
Excusme for my bad english
Thank you in advance.
Giuseppe</description>
		<content:encoded><![CDATA[<p>hi,<br />
 i want test your modules on this demo webpage:</p>
<p><a href="http://pluck.ath.cx" rel="nofollow">http://pluck.ath.cx</a></p>
<p>but i&#8217;ve some problem with it. The player work fine if i want listen one song, but don&#8217;t start next song. For me is a bug. You can help me?<br />
Excusme for my bad english<br />
Thank you in advance.<br />
Giuseppe</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://jopsen.dk/blog/2009/10/musicplayer-module-for-pluck/comment-page-1/#comment-8069</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sun, 07 Feb 2010 20:28:09 +0000</pubDate>
		<guid isPermaLink="false">http://jopsen.dk/blog/?p=150#comment-8069</guid>
		<description>Okay, I&#039;ve fixed the bugs and released the source on http://github.com/jopsen/pluckplayer

Enjoy... If you find any bugs or similar feel free to contact me or create an issue at github...</description>
		<content:encoded><![CDATA[<p>Okay, I&#8217;ve fixed the bugs and released the source on <a href="http://github.com/jopsen/pluckplayer" rel="nofollow">http://github.com/jopsen/pluckplayer</a></p>
<p>Enjoy&#8230; If you find any bugs or similar feel free to contact me or create an issue at github&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://jopsen.dk/blog/2009/10/musicplayer-module-for-pluck/comment-page-1/#comment-7616</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sun, 03 Jan 2010 19:37:06 +0000</pubDate>
		<guid isPermaLink="false">http://jopsen.dk/blog/?p=150#comment-7616</guid>
		<description>I think I have the security thing in order... at least on the pages_admin/playlist.php file... Don&#039;t know if it should be anywhere else... :)

And yeah, I probably need to make the mkdir call recursive... Thanks... will fix it as soon as a get a test install up and running... :)</description>
		<content:encoded><![CDATA[<p>I think I have the security thing in order&#8230; at least on the pages_admin/playlist.php file&#8230; Don&#8217;t know if it should be anywhere else&#8230; <img src='http://jopsen.dk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>And yeah, I probably need to make the mkdir call recursive&#8230; Thanks&#8230; will fix it as soon as a get a test install up and running&#8230; <img src='http://jopsen.dk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: A_Bach</title>
		<link>http://jopsen.dk/blog/2009/10/musicplayer-module-for-pluck/comment-page-1/#comment-7614</link>
		<dc:creator>A_Bach</dc:creator>
		<pubDate>Sun, 03 Jan 2010 19:08:03 +0000</pubDate>
		<guid isPermaLink="false">http://jopsen.dk/blog/?p=150#comment-7614</guid>
		<description>You forget about two things:

http://www.pluck-cms.org/docs/dev:modules:security

And second - you cant mkdir with a dir and subdir with one operation. Thats why Musicplayer module cant be install in pluck.</description>
		<content:encoded><![CDATA[<p>You forget about two things:</p>
<p><a href="http://www.pluck-cms.org/docs/dev:modules:security" rel="nofollow">http://www.pluck-cms.org/docs/dev:modules:security</a></p>
<p>And second &#8211; you cant mkdir with a dir and subdir with one operation. Thats why Musicplayer module cant be install in pluck.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://jopsen.dk/blog/2009/10/musicplayer-module-for-pluck/comment-page-1/#comment-7556</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 29 Dec 2009 19:09:15 +0000</pubDate>
		<guid isPermaLink="false">http://jopsen.dk/blog/?p=150#comment-7556</guid>
		<description>Music Player module uses spyc (an YAML reader) for it&#039;s configuration file... The spyc.php files included module requires php5...

So my guess is that you&#039;re running php4, from the error message it looks like a problem parsing a php5 class...

If you&#039;re on php4, you may try to replace spyc.php with a the version for php4, it&#039;s in the same zip, available from:
http://code.google.com/p/spyc/
Note: From the spyc changelog, it appears the php4 version have been generated using the 5-to-4 tool. So I have no idea if it&#039;ll work...</description>
		<content:encoded><![CDATA[<p>Music Player module uses spyc (an YAML reader) for it&#8217;s configuration file&#8230; The spyc.php files included module requires php5&#8230;</p>
<p>So my guess is that you&#8217;re running php4, from the error message it looks like a problem parsing a php5 class&#8230;</p>
<p>If you&#8217;re on php4, you may try to replace spyc.php with a the version for php4, it&#8217;s in the same zip, available from:<br />
<a href="http://code.google.com/p/spyc/" rel="nofollow">http://code.google.com/p/spyc/</a><br />
Note: From the spyc changelog, it appears the php4 version have been generated using the 5-to-4 tool. So I have no idea if it&#8217;ll work&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

