<?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: Desenvolvimento do jQuery lightBox plugin ao vivo</title>
	<atom:link href="http://leandrovieira.com/archive/desenvolvimento-do-jquery-lightbox-plugin-ao-vivo/feed" rel="self" type="application/rss+xml" />
	<link>http://leandrovieira.com/archive/desenvolvimento-do-jquery-lightbox-plugin-ao-vivo</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Thu, 19 Jan 2012 20:33:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: ESV</title>
		<link>http://leandrovieira.com/archive/desenvolvimento-do-jquery-lightbox-plugin-ao-vivo/comment-page-1#comment-44500</link>
		<dc:creator>ESV</dc:creator>
		<pubDate>Sun, 12 Jul 2009 01:04:46 +0000</pubDate>
		<guid isPermaLink="false">http://leandrovieira.com/?p=181#comment-44500</guid>
		<description>First, thanks for your excellent work!  This is an elegant, easy-to-use extension.

Is lightbox available under a license that permits modification?  The bottom of the page says, &quot;This work is licensed under a Creative Commons Attribution-Share Alike 2.5 Brazil License.&quot; but the CC logo image and source code refer to the no-derivatives license.

I&#039;d really like to use this jQuery extension, but I&#039;d need to tweak it a bit for my particular case.  Thanks again!</description>
		<content:encoded><![CDATA[<p>First, thanks for your excellent work!  This is an elegant, easy-to-use extension.</p>
<p>Is lightbox available under a license that permits modification?  The bottom of the page says, &#8220;This work is licensed under a Creative Commons Attribution-Share Alike 2.5 Brazil License.&#8221; but the CC logo image and source code refer to the no-derivatives license.</p>
<p>I&#8217;d really like to use this jQuery extension, but I&#8217;d need to tweak it a bit for my particular case.  Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eddy Vlad</title>
		<link>http://leandrovieira.com/archive/desenvolvimento-do-jquery-lightbox-plugin-ao-vivo/comment-page-1#comment-40916</link>
		<dc:creator>Eddy Vlad</dc:creator>
		<pubDate>Thu, 07 May 2009 04:55:05 +0000</pubDate>
		<guid isPermaLink="false">http://leandrovieira.com/?p=181#comment-40916</guid>
		<description>Hi, your jQuery lightbox plugin will cause other scripts to break when minified together with other plugins.

Removing the comment, &quot;Call and execute the function immediately passing the jQuery object&quot; on line 472 solves this problem.

Please remove the last comment on your next release. Thanks. :o)</description>
		<content:encoded><![CDATA[<p>Hi, your jQuery lightbox plugin will cause other scripts to break when minified together with other plugins.</p>
<p>Removing the comment, &#8220;Call and execute the function immediately passing the jQuery object&#8221; on line 472 solves this problem.</p>
<p>Please remove the last comment on your next release. Thanks. <img src='http://leandrovieira.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RINIX</title>
		<link>http://leandrovieira.com/archive/desenvolvimento-do-jquery-lightbox-plugin-ao-vivo/comment-page-1#comment-31749</link>
		<dc:creator>RINIX</dc:creator>
		<pubDate>Thu, 01 Jan 2009 09:27:44 +0000</pubDate>
		<guid isPermaLink="false">http://leandrovieira.com/?p=181#comment-31749</guid>
		<description>function ___getPageSize() {
			var xScroll, yScroll;
			if (window.innerHeight &amp;&amp; window.scrollMaxY) {	
				xScroll = window.innerWidth + window.scrollMaxX;
				yScroll = window.innerHeight + window.scrollMaxY;
			} else if (document.body.scrollHeight &gt; document.body.offsetHeight){ // all but Explorer Mac
				xScroll = document.body.scrollWidth;
				yScroll = document.body.scrollHeight;
			} else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari
				xScroll = document.body.offsetWidth;
				yScroll = document.body.offsetHeight;
			}
			var windowWidth, windowHeight;
			if (self.innerHeight) {	// all except Explorer
				if(document.documentElement.clientWidth){
					windowWidth = document.documentElement.clientWidth; 
				} else {
					windowWidth = self.innerWidth;
				}
				windowHeight = self.innerHeight;
			} else if (document.documentElement &amp;&amp; document.documentElement.clientHeight) { // Explorer 6 Strict Mode
				windowWidth = document.documentElement.clientWidth;
				windowHeight = document.documentElement.clientHeight;
			} else if (document.body) { // other Explorers
				windowWidth = document.body.clientWidth;
				windowHeight = document.body.clientHeight;
			}	
			// for small pages with total height less then height of the viewport
			if(yScroll &lt; windowHeight){
				pageHeight = windowHeight;
			} else { 
				pageHeight = yScroll;
			}
			// for small pages with total width less then width of the viewport
			if(jQuery.browser.safari){	
				pageWidth = $(document).width();	
			} else {
				pageWidth = xScroll;
			}
			arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight);
			return arrayPageSize;
		};</description>
		<content:encoded><![CDATA[<p>function ___getPageSize() {<br />
			var xScroll, yScroll;<br />
			if (window.innerHeight &amp;&amp; window.scrollMaxY) {<br />
				xScroll = window.innerWidth + window.scrollMaxX;<br />
				yScroll = window.innerHeight + window.scrollMaxY;<br />
			} else if (document.body.scrollHeight &gt; document.body.offsetHeight){ // all but Explorer Mac<br />
				xScroll = document.body.scrollWidth;<br />
				yScroll = document.body.scrollHeight;<br />
			} else { // Explorer Mac&#8230;would also work in Explorer 6 Strict, Mozilla and Safari<br />
				xScroll = document.body.offsetWidth;<br />
				yScroll = document.body.offsetHeight;<br />
			}<br />
			var windowWidth, windowHeight;<br />
			if (self.innerHeight) {	// all except Explorer<br />
				if(document.documentElement.clientWidth){<br />
					windowWidth = document.documentElement.clientWidth;<br />
				} else {<br />
					windowWidth = self.innerWidth;<br />
				}<br />
				windowHeight = self.innerHeight;<br />
			} else if (document.documentElement &amp;&amp; document.documentElement.clientHeight) { // Explorer 6 Strict Mode<br />
				windowWidth = document.documentElement.clientWidth;<br />
				windowHeight = document.documentElement.clientHeight;<br />
			} else if (document.body) { // other Explorers<br />
				windowWidth = document.body.clientWidth;<br />
				windowHeight = document.body.clientHeight;<br />
			}<br />
			// for small pages with total height less then height of the viewport<br />
			if(yScroll &lt; windowHeight){<br />
				pageHeight = windowHeight;<br />
			} else {<br />
				pageHeight = yScroll;<br />
			}<br />
			// for small pages with total width less then width of the viewport<br />
			if(jQuery.browser.safari){<br />
				pageWidth = $(document).width();<br />
			} else {<br />
				pageWidth = xScroll;<br />
			}<br />
			arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight);<br />
			return arrayPageSize;<br />
		};</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lvm</title>
		<link>http://leandrovieira.com/archive/desenvolvimento-do-jquery-lightbox-plugin-ao-vivo/comment-page-1#comment-28809</link>
		<dc:creator>lvm</dc:creator>
		<pubDate>Mon, 01 Dec 2008 14:19:08 +0000</pubDate>
		<guid isPermaLink="false">http://leandrovieira.com/?p=181#comment-28809</guid>
		<description>Hi Leandro,

I am currently using your plugin on a django website (the website is martasmaldone.com but has not a webdesign interface still, simply a placeholder).

I installed it without problems (except some trouble with the MEDIA_URL path in django... but I am a newbie) and is providing images from the django-photologue.

So... great work, even a newbie can use it in a website... Thanks.


I have also a question. Would it be possible to have the photo selection visible when browsing the photos?

Something such as (randomly picked) http://sandbox.leigeber.com/slideshow/

with the possibiliti to choose the foto.

Anyway, thanks again

Andrea</description>
		<content:encoded><![CDATA[<p>Hi Leandro,</p>
<p>I am currently using your plugin on a django website (the website is martasmaldone.com but has not a webdesign interface still, simply a placeholder).</p>
<p>I installed it without problems (except some trouble with the MEDIA_URL path in django&#8230; but I am a newbie) and is providing images from the django-photologue.</p>
<p>So&#8230; great work, even a newbie can use it in a website&#8230; Thanks.</p>
<p>I have also a question. Would it be possible to have the photo selection visible when browsing the photos?</p>
<p>Something such as (randomly picked) <a href="http://sandbox.leigeber.com/slideshow/" rel="nofollow">http://sandbox.leigeber.com/slideshow/</a></p>
<p>with the possibiliti to choose the foto.</p>
<p>Anyway, thanks again</p>
<p>Andrea</p>
]]></content:encoded>
	</item>
</channel>
</rss>

