    <?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Balbu Web Solutions &#187; mysql</title>
	<atom:link href="http://bws.balbu.eu/tag/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://bws.balbu.eu</link>
	<description>Our values are what the clients feel value. We have a creative team, but we always keep in mind what our clients want. We always try to improve our skills and we can use the latest techniques, but we won’t drop the long standing way to be successfull. Our main goal is to build sites where the needs and the working solutions can meet for the satisfaction of the client.</description>
	<lastBuildDate>Fri, 10 Jan 2014 06:09:48 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Mysql dump to separate files with archive exclusion</title>
		<link>http://bws.balbu.eu/mysql-dump-to-separate-files-with-archive-exclusion/</link>
		<comments>http://bws.balbu.eu/mysql-dump-to-separate-files-with-archive-exclusion/#comments</comments>
		<pubDate>Wed, 17 Apr 2013 12:55:57 +0000</pubDate>
		<dc:creator>oliver nadj</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[solution]]></category>

		<guid isPermaLink="false">http://bws.balbu.eu/?p=218</guid>
		<description><![CDATA[We run some LAMP server mostly on EC2 infrastructure. Considering the servers in different locations and environments there are no unified automate service for backpacking Mysql databases into separate files. And the other hand we don&#8217;t want to regular backup handle the fat archive tables. So what we need is a mysql backup solution, probably [...]]]></description>
				<content:encoded><![CDATA[<p>We run some LAMP server mostly on EC2 infrastructure. Considering the servers in different locations and environments there are no unified automate service for backpacking Mysql databases into separate files. And the other hand we don&#8217;t want to regular backup handle the fat archive tables.</p>
<p>So what we need is a mysql backup solution, probably a bash script what makes separate files per each db and ignores archive and memory engines of course with possibilities of gzipping.</p>
<p><span id="more-218"></span></p>
<p>I googled but I didn&#8217;t found what exactly we need, fortunately I found some similar like this one: <a title="How to dump all MySQL databases into separate files" href="http://carrotplant.com/en/blog/how-to-dump-all-mysql-databases-into-separate-files">http://carrotplant.com/en/blog/how-to-dump-all-mysql-databases-into-separate-files</a> and I combine them together.</p>
<p>Finally there are the dump script.</p>
<pre class="brush: bash; title: ; notranslate">
#!/bin/bash

############
# Settings #
############

# mysql parameters
MYSQL_USER=&quot;root&quot;
MYSQL_PASSWORD=&quot;******&quot;
MYSQLDUMP=&quot;/usr/bin/mysqldump&quot;
MYSQL=&quot;/usr/bin/mysql&quot;
BACKUP_LOCATION=&quot;/var/backups/ervername/mysql/&quot;
BACKUP_SQLDIR=$BACKUP_LOCATION$(date +%Y-%m-%d_%H-%M)
EXCLUDE_DBS=&quot;(Database|information_schema|phpmyadmin|mysql)&quot;
EXCLUDE_EGX=&quot;(MEMORY|ARCHIVE)&quot;
GZIP_ENABLED=1

##############
# THE SCRIPT #
##############

echo &quot;sophisticated dump of mysql databases&quot;
echo &quot;destination: $BACKUP_SQLDIR&quot;
echo &quot;ignore these databases: $EXCLUDE_DBS&quot;
echo &quot;ignore these engines: $EXCLUDE_EGX&quot;
echo &quot;gzipping: $GZIP_ENABLED&quot;

#returns list of ignired tables
ignoredtables () {
   local IGNORES
   TABLES=`$MYSQL --user=$MYSQL_USER --password=$MYSQL_PASSWORD -e &quot;USE $1; SHOW TABLE STATUS;&quot;  | grep -E $EXCLUDE_EGX | awk '{print $1}'`
   for CURRENT_TB in $TABLES; do
       IGNORES=&quot;$IGNORES --ignore-table=$1.$CURRENT_TB&quot;
   done
   echo $IGNORES
}

if [ ! -d &quot;$BACKUP_SQLDIR&quot; ]; then
    echo &quot;make dir: &quot;$BACKUP_SQLDIR
    mkdir -p $BACKUP_SQLDIR
fi

# get a list of databases
DATABASES=`$MYSQL --user=$MYSQL_USER --password=$MYSQL_PASSWORD -e &quot;SHOW DATABASES;&quot; | grep -Ev $EXCLUDE_DBS`

# dump each database in turn
echo &quot;dumping databases...&quot;
TIME_SPENT=`date +%s`
OVERAL_SPENT=`date +%s`
for CURRENT_DB in $DATABASES; do
    echo $CURRENT_DB
    IGNORED_TABLES=`ignoredtables $CURRENT_DB`
    if [ $GZIP_ENABLED == 1 ]; then
        $MYSQLDUMP --force --opt --routines --user=$MYSQL_USER --password=$MYSQL_PASSWORD $IGNORED_TABLES $CURRENT_DB | gzip &gt; &quot;$BACKUP_SQLDIR/$CURRENT_DB.sql.gz&quot;
    else
        $MYSQLDUMP --force --opt --routines --user=$mYSQL_USER --password=$MYSQL_PASSWORD $IGNORED_TABLES $CURRENT_DB &gt; &quot;$BACKUP_SQLDIR/$CURRENT_DB.sql&quot;
    fi
    TIME_SPENT=$((`date +%s` - $TIME_SPENT))
    echo &quot;spent: &quot;$TIME_SPENT&quot;s         overal: &quot;$((`date +%s` - $OVERAL_SPENT))&quot;s&quot;
    TIME_SPENT=`date +%s`
done

# removes previous backup older then 7 days
find $BACKUP_LOCATION -mtime +7 -type d -exec rm -Rv {} \;

echo &quot;[done]&quot;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://bws.balbu.eu/mysql-dump-to-separate-files-with-archive-exclusion/feed/</wfw:commentRss>
		<slash:comments>254</slash:comments>
		</item>
		<item>
		<title>Balbu</title>
		<link>http://bws.balbu.eu/balbu/</link>
		<comments>http://bws.balbu.eu/balbu/#comments</comments>
		<pubDate>Wed, 17 Apr 2013 07:04:39 +0000</pubDate>
		<dc:creator>Zsolt Nagy</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[shop]]></category>

		<guid isPermaLink="false">http://bws.balbu.eu/?p=185</guid>
		<description><![CDATA[Balbu is an international online bookstore, wich operates in most of the european countries. The company sells mainly hungarian books for the European and American countries. The main goal was to create th best possible user experience with the easiest interface in mind. We wanted to create a store where the user doesn’t have too [...]]]></description>
				<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-186" alt="balbu0" src="http://bws.balbu.eu/wp-content/uploads/2013/04/balbu0.jpg" width="800" height="350" /></p>
<p>Balbu is an international online bookstore, wich operates in most of the european countries. The company sells mainly hungarian books for the European and American countries.</p>
<p>The main goal was to create th best possible user experience with the easiest interface in mind. We wanted to create a store where the user doesn’t have too many unuseful informations, but enough to choose what books are in his/her main interests.</p>

<div class="ngg-galleryoverview" id="ngg-gallery-5-185">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-13" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/balbu/balbu002.jpg" title=" " class="myfancybox" rel="set_5" >
								<img title="balbu002" alt="balbu002" src="http://bws.balbu.eu/wp-content/gallery/balbu/thumbs/thumbs_balbu002.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-14" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/balbu/balbu01.jpg" title=" " class="myfancybox" rel="set_5" >
								<img title="balbu01" alt="balbu01" src="http://bws.balbu.eu/wp-content/gallery/balbu/thumbs/thumbs_balbu01.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-15" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/balbu/balbu03.jpg" title=" " class="myfancybox" rel="set_5" >
								<img title="balbu03" alt="balbu03" src="http://bws.balbu.eu/wp-content/gallery/balbu/thumbs/thumbs_balbu03.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


<p>The cart and the checkout process is also easy to use, so not just the “internet generation” knows how to use it, what and where to type. The site also have a news section, where the editors can write about the latest articles about the world of books and happenings. Besides the easy to use interface we wanted to have the fastest site possible, so the users with bad connections can use the site too.</p>
<h3>The site is available at: <a href="http://balbu.hu/" target="_blank">balbu.hu</a></h3>
]]></content:encoded>
			<wfw:commentRss>http://bws.balbu.eu/balbu/feed/</wfw:commentRss>
		<slash:comments>253</slash:comments>
		</item>
		<item>
		<title>Tantargyhalo</title>
		<link>http://bws.balbu.eu/tantargyhalo/</link>
		<comments>http://bws.balbu.eu/tantargyhalo/#comments</comments>
		<pubDate>Tue, 16 Apr 2013 09:41:30 +0000</pubDate>
		<dc:creator>Zsolt Nagy</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://bws.balbu.eu/?p=24</guid>
		<description><![CDATA[The client wanted to achieve a site where elementary and high school students can be informed about the Tantargyhalo competition. The students can compete with each other in literary, crativitie and technique.    We started to build to site from scratch, and tried to achieve a fully responsive solution with happy colors and many pictures. [...]]]></description>
				<content:encoded><![CDATA[<p><img class="size-full wp-image-59 aligncenter" alt="tant1" src="http://bws.balbu.eu/wp-content/uploads/2013/04/tant1.jpg" width="800" height="350" /></p>
<p style="text-align: left;">The client wanted to achieve a site where elementary and high school students can be informed about the Tantargyhalo competition. The students can compete with each other in literary, crativitie and technique.</p>
<div style="display: block; width: 800px; padding-left: 30px;">
<a href="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/tantargyhalo2.jpg" title="" class="myfancybox" rel="singlepic24" >
	<img class="ngg-singlepic" src="http://bws.balbu.eu/wp-content/gallery/cache/24__245x0_tantargyhalo2.jpg" alt="tantargyhalo2" title="tantargyhalo2" />
</a>
 
<a href="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/bws_mob.jpg" title="" class="myfancybox" rel="singlepic23" >
	<img class="ngg-singlepic" src="http://bws.balbu.eu/wp-content/gallery/cache/23__245x0_bws_mob.jpg" alt="bws_mob" title="bws_mob" />
</a>
 
<a href="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/03.png" title="" class="myfancybox" rel="singlepic22" >
	<img class="ngg-singlepic" src="http://bws.balbu.eu/wp-content/gallery/cache/22__245x0_03.png" alt="03" title="03" />
</a>
</div>
<p style="text-align: left;">We started to build to site from scratch, and tried to achieve a fully responsive solution with happy colors and many pictures. The site have a gallery where can the users can see the pictures from the previous years as well as the present year competition. The site have a download menu, where the previous works can be downloaded. The framework we used is WordPress with a custom theme and custom functions. We made the whole concept, design and sitebuild.</p>
<p>At the home page, the Tantargyhalo site have a featured image slider, where the picture appears from the selected post. That means the client have a very simple and user-friendly admin page, so they doesn’t need any knowledge about HTML editing.</p>
<p>We also built a mobile interface with the responsive technique, what means the users can browse the site at tablets and smartphones. Of course, the site can detect the resolution of the device, and if it’s a mobile than the small version automatically appears.</p>
<h3>The site is available at: <a href="http://tantargyhalo.net/" target="_blank">tantargyhalo.net</a></h3>

<div class="ngg-galleryoverview" id="ngg-gallery-1-24">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-1" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/tant2.png" title=" " class="myfancybox" rel="set_1" >
								<img title="tant2" alt="tant2" src="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/thumbs/thumbs_tant2.png" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-2" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/tant3.png" title=" " class="myfancybox" rel="set_1" >
								<img title="tant3" alt="tant3" src="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/thumbs/thumbs_tant3.png" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-3" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/tant4.png" title=" " class="myfancybox" rel="set_1" >
								<img title="tant4" alt="tant4" src="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/thumbs/thumbs_tant4.png" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-22" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/03.png" title=" " class="myfancybox" rel="set_1" >
								<img title="03" alt="03" src="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/thumbs/thumbs_03.png" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-23" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/bws_mob.jpg" title=" " class="myfancybox" rel="set_1" >
								<img title="bws_mob" alt="bws_mob" src="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/thumbs/thumbs_bws_mob.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-24" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/tantargyhalo2.jpg" title=" " class="myfancybox" rel="set_1" >
								<img title="tantargyhalo2" alt="tantargyhalo2" src="http://bws.balbu.eu/wp-content/gallery/tantargyhalo/thumbs/thumbs_tantargyhalo2.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://bws.balbu.eu/tantargyhalo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Builder.Shop Mobile</title>
		<link>http://bws.balbu.eu/builder-shop-mobile/</link>
		<comments>http://bws.balbu.eu/builder-shop-mobile/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 07:05:20 +0000</pubDate>
		<dc:creator>Zsolt Nagy</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://bws.balbu.eu/?p=170</guid>
		<description><![CDATA[Builder.Shop Mobile is the mobile version of the well-known body builder and fitness shop. As the owner of one of the finest fitness shops in Hungary, the client wanted to give the best possible experience for their users, and of course a very easy to use interface to buy the products. Builder.Shop Mobile was one [...]]]></description>
				<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-172" alt="buildermobile" src="http://bws.balbu.eu/wp-content/uploads/2013/04/buildermobile.jpg" width="800" height="350" /></p>
<p>Builder.Shop Mobile is the mobile version of the well-known body builder and fitness shop. As the owner of one of the finest fitness shops in Hungary, the client wanted to give the best possible experience for their users, and of course a very easy to use interface to buy the products.</p>
<p><img class="aligncenter size-full wp-image-173" alt="buildermob4" src="http://bws.balbu.eu/wp-content/uploads/2013/04/buildermob4.jpg" width="800" height="427" /></p>
<p>Builder.Shop Mobile was one of our first mobile project, so we had to make a very large research to get to know the mobile trends, the devices, the resolution and of course the users too. We started to build the site from paper scratch, and we started to use the well known jQuery Mobile.</p>
<p>We had to program a fully working shop first, then start to work with the portable device, where the users have a very small area to use as interactions. The finished project is easy to use, user-friendly and of course both the client and the users like it.</p>
<h3>The site is available at: <a href="http://m.builder.hu/" target="_blank">m.builder.hu</a></h3>

<div class="ngg-galleryoverview" id="ngg-gallery-4-170">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-11" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/builder-mobile/buildermob2.jpg" title=" " class="myfancybox" rel="set_4" >
								<img title="buildermob2" alt="buildermob2" src="http://bws.balbu.eu/wp-content/gallery/builder-mobile/thumbs/thumbs_buildermob2.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-10" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/builder-mobile/buildermob1.jpg" title=" " class="myfancybox" rel="set_4" >
								<img title="buildermob1" alt="buildermob1" src="http://bws.balbu.eu/wp-content/gallery/builder-mobile/thumbs/thumbs_buildermob1.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-12" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/builder-mobile/buildermob3.jpg" title=" " class="myfancybox" rel="set_4" >
								<img title="buildermob3" alt="buildermob3" src="http://bws.balbu.eu/wp-content/gallery/builder-mobile/thumbs/thumbs_buildermob3.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://bws.balbu.eu/builder-shop-mobile/feed/</wfw:commentRss>
		<slash:comments>230</slash:comments>
		</item>
		<item>
		<title>Banja Kanjiza</title>
		<link>http://bws.balbu.eu/banja-kanjiza/</link>
		<comments>http://bws.balbu.eu/banja-kanjiza/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 06:52:28 +0000</pubDate>
		<dc:creator>Zsolt Nagy</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://bws.balbu.eu/?p=162</guid>
		<description><![CDATA[Banja Kanjiža is a special hospital for medical rehabilitation located in Serbia. It gives hospitality for those who need rest, preventive recovery and medical rehabilitation, as well as the comforts of the curing water and mud. Our work was the full design planning and the sitebuild, for wich we used Symfony framework. The site have [...]]]></description>
				<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-165" alt="banja0" src="http://bws.balbu.eu/wp-content/uploads/2010/04/banja0.jpg" width="800" height="350" /></p>
<p>Banja Kanjiža is a special hospital for medical rehabilitation located in Serbia. It gives hospitality for those who need rest, preventive recovery and medical rehabilitation, as well as the comforts of the curing water and mud.</p>
<p>Our work was the full design planning and the sitebuild, for wich we used Symfony framework. The site have a complex mainmenu and gallery, what can reflect the complexity and first class work at the special hospital. Our job was also to make the pictures for the gallery, where we have used our photograph skills to achieve the best possible results.</p>
<h3>The site is available at: <a href="http://banja-kanjiza.com/" target="_blank">banja-kanjiza.com</a></h3>

<div class="ngg-galleryoverview" id="ngg-gallery-3-162">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-6" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/banja-kanjiza/banja1.jpg" title=" " class="myfancybox" rel="set_3" >
								<img title="banja1" alt="banja1" src="http://bws.balbu.eu/wp-content/gallery/banja-kanjiza/thumbs/thumbs_banja1.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-7" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/banja-kanjiza/banja2.jpg" title=" " class="myfancybox" rel="set_3" >
								<img title="banja2" alt="banja2" src="http://bws.balbu.eu/wp-content/gallery/banja-kanjiza/thumbs/thumbs_banja2.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-8" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://bws.balbu.eu/wp-content/gallery/banja-kanjiza/banja3.jpg" title=" " class="myfancybox" rel="set_3" >
								<img title="banja3" alt="banja3" src="http://bws.balbu.eu/wp-content/gallery/banja-kanjiza/thumbs/thumbs_banja3.jpg" width="200" height="150" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://bws.balbu.eu/banja-kanjiza/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
