<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: jQuery (mb)Gallery 1.5 (new!)</title>
	<atom:link href="http://pupunzi.open-lab.com/2009/02/28/mbgallery/feed/" rel="self" type="application/rss+xml" />
	<link>http://pupunzi.open-lab.com/2009/02/28/mbgallery/</link>
	<description>mb.ideas.repository</description>
	<lastBuildDate>Fri, 12 Mar 2010 09:22:39 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Peter Burgess</title>
		<link>http://pupunzi.open-lab.com/2009/02/28/mbgallery/#comment-2534</link>
		<dc:creator>Peter Burgess</dc:creator>
		<pubDate>Wed, 10 Mar 2010 17:31:02 +0000</pubDate>
		<guid isPermaLink="false">http://pupunzi.wordpress.com/?p=427#comment-2534</guid>
		<description>quick Workarounds.

1. Discovered the hack line
&#039;full.each(function(){$(this).attr(&quot;src&quot;,$(this).attr(&quot;srcx&quot;));});&#039;, so I hacked my html gallery entries to &#039;srcx&#039; from &#039;src&#039;.

2. created a function &#039;preloadSlide(), derived from preloadImg() which does what I want

        IMGOBJ.onload = function()
        {
          $(thumbloading).find(&quot;img&quot;).attr(&quot;src&quot;, &quot;&quot;+opt.iconFolder+&quot;/loaded.gif&quot;);
          changePhoto(i);
          slideShowTimer = setTimeout(startShow, opt.slideTimer);
        };

and removed the setTimeout statement from startShow.

#3. added arguments &#039;.../loader.gif&#039; and &#039;.../stop.gif&#039; to $.preloadImages() invocation.

see http://www.williamwakehamphotography.com/index.1.htm</description>
		<content:encoded><![CDATA[<p>quick Workarounds.</p>
<p>1. Discovered the hack line<br />
&#8216;full.each(function(){$(this).attr(&#8220;src&#8221;,$(this).attr(&#8220;srcx&#8221;));});&#8217;, so I hacked my html gallery entries to &#8217;srcx&#8217; from &#8217;src&#8217;.</p>
<p>2. created a function &#8216;preloadSlide(), derived from preloadImg() which does what I want</p>
<p>        IMGOBJ.onload = function()<br />
        {<br />
          $(thumbloading).find(&#8220;img&#8221;).attr(&#8220;src&#8221;, &#8220;&#8221;+opt.iconFolder+&#8221;/loaded.gif&#8221;);<br />
          changePhoto(i);<br />
          slideShowTimer = setTimeout(startShow, opt.slideTimer);<br />
        };</p>
<p>and removed the setTimeout statement from startShow.</p>
<p>#3. added arguments &#8216;&#8230;/loader.gif&#8217; and &#8216;&#8230;/stop.gif&#8217; to $.preloadImages() invocation.</p>
<p>see <a href="http://www.williamwakehamphotography.com/index.1.htm" rel="nofollow">http://www.williamwakehamphotography.com/index.1.htm</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Burgess</title>
		<link>http://pupunzi.open-lab.com/2009/02/28/mbgallery/#comment-2530</link>
		<dc:creator>Peter Burgess</dc:creator>
		<pubDate>Wed, 10 Mar 2010 12:27:28 +0000</pubDate>
		<guid isPermaLink="false">http://pupunzi.wordpress.com/?p=427#comment-2530</guid>
		<description>oops, cut and paste problem

#1. Since the html gallery structure uses the form:
&lt;img class=&quot;imgThumb&quot; src=&quot;...
&lt;img class=&quot;imgFull&quot; src=&quot;...</description>
		<content:encoded><![CDATA[<p>oops, cut and paste problem</p>
<p>#1. Since the html gallery structure uses the form:<br />
&lt;img class=&quot;imgThumb&quot; src=&quot;&#8230;<br />
&lt;img class=&quot;imgFull&quot; src=&quot;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Burgess</title>
		<link>http://pupunzi.open-lab.com/2009/02/28/mbgallery/#comment-2529</link>
		<dc:creator>Peter Burgess</dc:creator>
		<pubDate>Wed, 10 Mar 2010 12:23:12 +0000</pubDate>
		<guid isPermaLink="false">http://pupunzi.wordpress.com/?p=427#comment-2529</guid>
		<description>Absolutely terrific graphics and user-interface, but there are performance problems when using lots of galleries and lots of images.

Suggestions.
#1. Since the html gallery structure uses the form:
			  
			  
			  Exterior
The browser is going to load ALL the thumbnails and all the High resolution images for all the galleries whenever the web page is loaded.  This simply does not scale.  (say 200 HR images @ 200kb = 20MB.  And the user immediately selects the 10th of 10 galleries to view...)

It would be better to delay loading at least the High Resolution images of a gallery until the user selected that gallery.  (many jquery galleries use &lt;a href=&quot;HR/img001.jpg... wrapper around the thumbnail  to reduce this scaling problem)

2. If the slide show timer is 6 seconds, then the image or image + animation should appear for 6 seconds, which means that the time out should NOT start until at least &quot;IMGOBJ.onload&quot; is triggered.  (Why set the timeout of the current image if the current image hasn&#039;t even been downloaded from the server yet?)

3. &#039;opt.iconFolder+&quot;/loader.gif&quot;, &#039;  should be inserted after line 38 (otherwise loading &quot;loader.gif&quot; may network-timeout many times.

Thanks,  Peter</description>
		<content:encoded><![CDATA[<p>Absolutely terrific graphics and user-interface, but there are performance problems when using lots of galleries and lots of images.</p>
<p>Suggestions.<br />
#1. Since the html gallery structure uses the form:</p>
<p>			  Exterior<br />
The browser is going to load ALL the thumbnails and all the High resolution images for all the galleries whenever the web page is loaded.  This simply does not scale.  (say 200 HR images @ 200kb = 20MB.  And the user immediately selects the 10th of 10 galleries to view&#8230;)</p>
<p>It would be better to delay loading at least the High Resolution images of a gallery until the user selected that gallery.  (many jquery galleries use &lt;a href=&quot;HR/img001.jpg&#8230; wrapper around the thumbnail  to reduce this scaling problem)</p>
<p>2. If the slide show timer is 6 seconds, then the image or image + animation should appear for 6 seconds, which means that the time out should NOT start until at least &#8220;IMGOBJ.onload&#8221; is triggered.  (Why set the timeout of the current image if the current image hasn&#8217;t even been downloaded from the server yet?)</p>
<p>3. &#8216;opt.iconFolder+&#8221;/loader.gif&#8221;, &#8216;  should be inserted after line 38 (otherwise loading &#8220;loader.gif&#8221; may network-timeout many times.</p>
<p>Thanks,  Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Julie</title>
		<link>http://pupunzi.open-lab.com/2009/02/28/mbgallery/#comment-2110</link>
		<dc:creator>Julie</dc:creator>
		<pubDate>Sun, 20 Dec 2009 00:11:24 +0000</pubDate>
		<guid isPermaLink="false">http://pupunzi.wordpress.com/?p=427#comment-2110</guid>
		<description>Fantastic gallery!  I&#039;ve been looking for something new for my photo site for a while now.  I have one question.  I have several large galleries on my site right now, which are all contained on index.php (it takes a very long time to load).  To decrease load time, I would rather not have all of the images load on the same page.  Is this possible with your script, or do all the gallery divs need to be on the same page?

Thanks!
Julie</description>
		<content:encoded><![CDATA[<p>Fantastic gallery!  I&#8217;ve been looking for something new for my photo site for a while now.  I have one question.  I have several large galleries on my site right now, which are all contained on index.php (it takes a very long time to load).  To decrease load time, I would rather not have all of the images load on the same page.  Is this possible with your script, or do all the gallery divs need to be on the same page?</p>
<p>Thanks!<br />
Julie</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: uberVU - social comments</title>
		<link>http://pupunzi.open-lab.com/2009/02/28/mbgallery/#comment-1633</link>
		<dc:creator>uberVU - social comments</dc:creator>
		<pubDate>Wed, 04 Nov 2009 10:28:25 +0000</pubDate>
		<guid isPermaLink="false">http://pupunzi.wordpress.com/?p=427#comment-1633</guid>
		<description>&lt;strong&gt;Social comments and analytics for this post...&lt;/strong&gt;

This post was mentioned on Twitter by ijosh91: mb.ideas.repository - mb.gallery http://tinyurl.com/yjjp93s...</description>
		<content:encoded><![CDATA[<p><strong>Social comments and analytics for this post&#8230;</strong></p>
<p>This post was mentioned on Twitter by ijosh91: mb.ideas.repository &#8211; mb.gallery <a href="http://tinyurl.com/yjjp93s.." rel="nofollow">http://tinyurl.com/yjjp93s..</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matteo Bicocchi</title>
		<link>http://pupunzi.open-lab.com/2009/02/28/mbgallery/#comment-1602</link>
		<dc:creator>Matteo Bicocchi</dc:creator>
		<pubDate>Thu, 29 Oct 2009 22:25:08 +0000</pubDate>
		<guid isPermaLink="false">http://pupunzi.wordpress.com/?p=427#comment-1602</guid>
		<description>Hi Bryce,
The jquery.mb.gallery is drawn in the body to have full controll of its positioning and to be shure it gets the higher z-index in the page; this component ideas is to get over all in the page and not to be constrained into a DOM element.
A solution for your issue could be to load the gallery into an iframe, as I do on the demo page of my site : http://pupunzi.com/#mb.components/mb.gallery/gallery.html.
Bye,
Matteo</description>
		<content:encoded><![CDATA[<p>Hi Bryce,<br />
The jquery.mb.gallery is drawn in the body to have full controll of its positioning and to be shure it gets the higher z-index in the page; this component ideas is to get over all in the page and not to be constrained into a DOM element.<br />
A solution for your issue could be to load the gallery into an iframe, as I do on the demo page of my site : <a href="http://pupunzi.com/#mb.components/mb.gallery/gallery.html" rel="nofollow">http://pupunzi.com/#mb.components/mb.gallery/gallery.html</a>.<br />
Bye,<br />
Matteo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bryce Martin</title>
		<link>http://pupunzi.open-lab.com/2009/02/28/mbgallery/#comment-1598</link>
		<dc:creator>Bryce Martin</dc:creator>
		<pubDate>Wed, 28 Oct 2009 16:49:30 +0000</pubDate>
		<guid isPermaLink="false">http://pupunzi.wordpress.com/?p=427#comment-1598</guid>
		<description>Great work on this gallery.  I notice that you always put the gallery in the page&#039;s body.  Is there a reason for this?  If I wanted to put it in a containing div instead of $(body) how would I do that?  Could I use something like $(this).partent()?  Or something like that?</description>
		<content:encoded><![CDATA[<p>Great work on this gallery.  I notice that you always put the gallery in the page&#8217;s body.  Is there a reason for this?  If I wanted to put it in a containing div instead of $(body) how would I do that?  Could I use something like $(this).partent()?  Or something like that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matteo Bicocchi</title>
		<link>http://pupunzi.open-lab.com/2009/02/28/mbgallery/#comment-1486</link>
		<dc:creator>Matteo Bicocchi</dc:creator>
		<pubDate>Fri, 16 Oct 2009 21:42:40 +0000</pubDate>
		<guid isPermaLink="false">http://pupunzi.wordpress.com/?p=427#comment-1486</guid>
		<description>Hi German,
At the moment there&#039;s a bug that prevent the rendering of an image inside the image description; I&#039;ll fix it for next release.
For the moment you can place a textual link.
Bye,
Matteo</description>
		<content:encoded><![CDATA[<p>Hi German,<br />
At the moment there&#8217;s a bug that prevent the rendering of an image inside the image description; I&#8217;ll fix it for next release.<br />
For the moment you can place a textual link.<br />
Bye,<br />
Matteo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: german</title>
		<link>http://pupunzi.open-lab.com/2009/02/28/mbgallery/#comment-1485</link>
		<dc:creator>german</dc:creator>
		<pubDate>Fri, 16 Oct 2009 13:56:35 +0000</pubDate>
		<guid isPermaLink="false">http://pupunzi.wordpress.com/?p=427#comment-1485</guid>
		<description>hello, i want to put a image into the image description. i need an image with a link &quot;send to friend&quot;
is it possible?

sorry for my english</description>
		<content:encoded><![CDATA[<p>hello, i want to put a image into the image description. i need an image with a link &#8220;send to friend&#8221;<br />
is it possible?</p>
<p>sorry for my english</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: links for 2009-10-07 &#171; Cache 242&#8217;s Blog</title>
		<link>http://pupunzi.open-lab.com/2009/02/28/mbgallery/#comment-1437</link>
		<dc:creator>links for 2009-10-07 &#171; Cache 242&#8217;s Blog</dc:creator>
		<pubDate>Wed, 07 Oct 2009 14:17:57 +0000</pubDate>
		<guid isPermaLink="false">http://pupunzi.wordpress.com/?p=427#comment-1437</guid>
		<description>[...] jQuery (mb)Gallery 1.5 (new!) « Matteo Bicocchi’s Blog (tags: jquery gallery plugin slideshow webdesign) [...]</description>
		<content:encoded><![CDATA[<p>[...] jQuery (mb)Gallery 1.5 (new!) « Matteo Bicocchi’s Blog (tags: jquery gallery plugin slideshow webdesign) [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
