<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-1714693558558647215</id><updated>2012-03-16T19:08:12.062-07:00</updated><category term='temps'/><title type='text'>Pàgina personal compartida</title><subtitle type='html'>Notícies - Ràdio i televisió - El Temps - Mapes</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://jasabet.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1714693558558647215/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://jasabet.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>.</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>12</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-1714693558558647215.post-6472586579153782043</id><published>2011-10-24T11:09:00.001-07:00</published><updated>2011-10-24T11:11:46.784-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='temps'/><title type='text'>El temps a Sabadell</title><content type='html'>&lt;head&gt;&lt;br /&gt;    &lt;title&gt;Location Chooser and YoWindow weather widget&lt;/title&gt;&lt;br /&gt; &lt;br /&gt;&lt;!-- Location Chooser component --&gt;&lt;br /&gt;    &lt;script type="text/javascript" src="http://js.yowindow.com/js/yolc.js"&gt;&lt;/script&gt;&lt;br /&gt;&lt;!-- YoWindow widget component --&gt;&lt;br /&gt;    &lt;script type="text/javascript" src="http://js.yowindow.com/js/yowidget.js"&gt;&lt;/script&gt;&lt;br /&gt; &lt;br /&gt;    &lt;script language="JavaScript"&gt;&lt;br /&gt; &lt;br /&gt;//To track if commands can be sent to YoWidget&lt;br /&gt;        window.isYoWidgetReady = false;&lt;br /&gt; &lt;br /&gt;        function onLoad() {&lt;br /&gt;            installLocationChooser();&lt;br /&gt;            installYoWidget();&lt;br /&gt;        }&lt;br /&gt; &lt;br /&gt;        function installLocationChooser() {&lt;br /&gt;            var place = document.getElementById('location_chooser_place');&lt;br /&gt;//Create YoLocationChooser and keep it as a variable of HTML window&lt;br /&gt;            this.locationChooser = new YoLocationChooser(place);&lt;br /&gt; &lt;br /&gt;//Subscribe to onLocationChange event&lt;br /&gt;            this.locationChooser.onLocationChange = onLocationChange;&lt;br /&gt; &lt;br /&gt;/**&lt;br /&gt;lc.open(); - let the user to choose the location, starting on country-level&lt;br /&gt;lc.open("#auto"); - detect location by IP and open it&lt;br /&gt;lc.open("United Kingdom/London"); - open London&lt;br /&gt;*/&lt;br /&gt;            this.locationChooser.open("#auto");&lt;br /&gt;        }&lt;br /&gt; &lt;br /&gt;/**&lt;br /&gt;Event of YoLocationChooser&lt;br /&gt;It is called every time the location changes.&lt;br /&gt;When location was deselected - node is null&lt;br /&gt;node format&lt;br /&gt;node = {&lt;br /&gt;    @id, // GeoNames id&lt;br /&gt;    @name, // Name from the Geonames data-base&lt;br /&gt;    @p // Population&lt;br /&gt;}&lt;br /&gt; &lt;br /&gt;Here we reflect selected location in the widget.&lt;br /&gt;*/&lt;br /&gt;        function onLocationChange(node) {&lt;br /&gt;//Do not do anything if location was deselected (node is null).&lt;br /&gt;            if (!node) {&lt;br /&gt;                return;&lt;br /&gt;            }&lt;br /&gt;            var locationId = node['@id'];&lt;br /&gt; &lt;br /&gt;//You can call yowidget methods only after it gets ready to intercept commands&lt;br /&gt;            var yowidget = document.getElementById('yowidget');&lt;br /&gt;            if (!window.isYoWidgetReady) {&lt;br /&gt;                return;&lt;br /&gt;            }&lt;br /&gt;//Select location in YoWindow widget&lt;br /&gt;            yowidget.setLocationId(locationId);&lt;br /&gt;        }&lt;br /&gt; &lt;br /&gt;/**&lt;br /&gt;Creates YoWindow widget and adds it to the place-holder "yowidget_place"&lt;br /&gt;*/&lt;br /&gt;        function installYoWidget() {&lt;br /&gt; &lt;br /&gt;/**&lt;br /&gt;flashvars parameters&lt;br /&gt;See http://yowindow.com/widget_parameters.php&lt;br /&gt; &lt;br /&gt;I have put some examples in the code, uncomment to see them in effect&lt;br /&gt;*/&lt;br /&gt;            var flashvars = {&lt;br /&gt;                location_id: "auto"&lt;br /&gt;//              landscape: "seaside",&lt;br /&gt;//              background: "#FFFFFF",&lt;br /&gt;//              lang: "de",&lt;br /&gt;//              unit_system: "metric",&lt;br /&gt;//              time_format: "24"&lt;br /&gt;            };&lt;br /&gt; &lt;br /&gt;/**&lt;br /&gt;Flash parameters&lt;br /&gt;*/&lt;br /&gt;            var params = {&lt;br /&gt;                quality: "high",&lt;br /&gt;                bgcolor: "#FFFFFF",&lt;br /&gt;                allowscriptaccess: "always",&lt;br /&gt;                allowfullscreen: "true",&lt;br /&gt;                wmode: "opaque"&lt;br /&gt;            };&lt;br /&gt; &lt;br /&gt;            var attributes = {&lt;br /&gt;//Optionally control the color of the copyright text&lt;br /&gt;//              copyright_color: "#0000FF",&lt;br /&gt;//              copyright_link_color: "#FF0000",&lt;br /&gt; &lt;br /&gt;//id and name of YoWindow widget in HTML DOM&lt;br /&gt;                id: "yowidget",&lt;br /&gt;                name: "yowidget"&lt;br /&gt;            };&lt;br /&gt; &lt;br /&gt;            YoWidget.embed(&lt;br /&gt;                "yowidget_place", //place-holder id&lt;br /&gt;                700, //width&lt;br /&gt;                394, //height&lt;br /&gt;                flashvars,&lt;br /&gt;                params,&lt;br /&gt;                attributes&lt;br /&gt;            );&lt;br /&gt;        }&lt;br /&gt; &lt;br /&gt;//This function is called by YoWidget SWF when it is ready for commands&lt;br /&gt;        function yowidget_onReady() {&lt;br /&gt;            window.isYoWidgetReady = true;&lt;br /&gt;            var yowidget = document.getElementById('yowidget');&lt;br /&gt;//Display location selected in Chooser if any&lt;br /&gt;            var node = this.locationChooser.selectedLocation;&lt;br /&gt;            if (node) {&lt;br /&gt;                var locationId = node['@id'];&lt;br /&gt;                yowidget.setLocationId(locationId);&lt;br /&gt;            }&lt;br /&gt;        }&lt;br /&gt; &lt;br /&gt;    &lt;/script&gt;&lt;br /&gt;&lt;/head&gt;&lt;br /&gt; &lt;br /&gt; &lt;br /&gt;&lt;body onLoad="onLoad();"&gt;&lt;br /&gt; &lt;br /&gt;    &lt;div&gt;&lt;br /&gt;        &lt;span id="location_chooser_place" style="display:inline-block; width:250px; vertical-align:top;"&gt;&lt;br /&gt;        &lt;/span&gt;&lt;br /&gt; &lt;br /&gt;        &lt;span id="yowidget_place" style="display:inline-block;"&gt;&lt;br /&gt;        &lt;/span&gt;&lt;br /&gt;    &lt;/div&gt;&lt;br /&gt; &lt;br /&gt;&lt;/body&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1714693558558647215-6472586579153782043?l=jasabet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1714693558558647215/posts/default/6472586579153782043'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1714693558558647215/posts/default/6472586579153782043'/><link rel='alternate' type='text/html' href='http://jasabet.blogspot.com/2011_10_01_archive.html#6472586579153782043' title='El temps a Sabadell'/><author><name>.</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-1714693558558647215.post-5317183326929887914</id><published>2011-10-24T10:25:00.000-07:00</published><updated>2011-10-24T10:25:51.028-07:00</updated><title type='text'>Sabadell weather</title><content type='html'>&lt;a href="http://yowindow.com/online?location_id=gn%3A3111199&amp;amp;ln=Sabadell#.TqWflmPPMcY.blogger"&gt;Sabadell weather&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1714693558558647215-5317183326929887914?l=jasabet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1714693558558647215/posts/default/5317183326929887914'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1714693558558647215/posts/default/5317183326929887914'/><link rel='alternate' type='text/html' href='http://jasabet.blogspot.com/2011_10_01_archive.html#5317183326929887914' title='Sabadell weather'/><author><name>.</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-1714693558558647215.post-2305378414907063781</id><published>2011-07-04T17:57:00.001-07:00</published><updated>2011-07-04T17:57:45.320-07:00</updated><title type='text'>El Temps a Sabadell</title><content type='html'>&lt;div id="TT_v7s6I2Dm24SIpU3o6Iz"&gt;&lt;h2&gt;&lt;a href="http://www.tutiempo.net/Tiempo-Espana.html"&gt;El Tiempo&lt;/a&gt;&lt;/h2&gt;&lt;a href="http://www.tutiempo.net/Tiempo-Sabadell-E08558.html"&gt;El tiempo en Sabadell&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;script type="text/javascript" src="http://www.tutiempo.net/TTapi/v7s6I2Dm24SIpU3o6Iz_cat"&gt;&lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1714693558558647215-2305378414907063781?l=jasabet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1714693558558647215/posts/default/2305378414907063781'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1714693558558647215/posts/default/2305378414907063781'/><link rel='alternate' type='text/html' href='http://jasabet.blogspot.com/2011_07_01_archive.html#2305378414907063781' title='El Temps a Sabadell'/><author><name>.</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-1714693558558647215.post-2503442296809443757</id><published>2011-04-16T19:24:00.001-07:00</published><updated>2012-03-16T19:08:12.072-07:00</updated><title type='text'>Lluís Llach a València 16-4-2011</title><content type='html'>&lt;object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' width='640' height='360' id='EVP3478150IE'&gt;&lt;param name='movie' value='http://www.tv3.cat/ria/players/3ac/evp/Main.swf'&gt;&lt;/param&gt;&lt;param name='scale' value='noscale'&gt;&lt;/param&gt;&lt;param name='align' value='tl'&gt;&lt;/param&gt;&lt;param name='swliveconnect' value='true'&gt;&lt;/param&gt;&lt;param name='menu' value='true'&gt;&lt;/param&gt;&lt;param name='allowFullScreen' value='true'&gt;&lt;/param&gt;&lt;param name='allowScriptAccess' value='always'&gt;&lt;/param&gt;&lt;param name='wmode' value='transparent'&gt;&lt;/param&gt;&lt;param name='FlashVars' value='opcions=true&amp;instancename=playerEVP_0_3478150&amp;backgroundColor=#ffffff&amp;comentaris=false&amp;votacions=true&amp;minimal=false&amp;mesi=true&amp;hassinopsi=true&amp;relacionats=true&amp;hasrss=true&amp;relacionats_canals=true&amp;haspodcast=true&amp;autostart=false&amp;xtm=true&amp;hasinsereix=true&amp;basepath=http://www.tv3.cat/ria/players/3ac/evp/&amp;hascomparteix=true&amp;videoid=3478150&amp;themepath=themes/evp_advanced.swf&amp;controlbar=true&amp;refreshlock=true&amp;hasenvia=true&amp;subtitols=true&amp;basepath=http://www.tv3.cat/ria/players/3ac/evp/&amp;xtm=true'&gt;&lt;/param&gt;&lt;embed width='640' height='360' type='application/x-shockwave-flash' src='http://www.tv3.cat/ria/players/3ac/evp/Main.swf' id='EVP3478150' scale='noscale' name='EVP3478150' salign='tl' swliveconnect='true' menu='true' allowfullscreen='true' allowscriptaccess='always' wmode='transparent' FlashVars='opcions=true&amp;instancename=playerEVP_0_3478150&amp;backgroundColor=#ffffff&amp;comentaris=false&amp;votacions=true&amp;minimal=false&amp;mesi=true&amp;hassinopsi=true&amp;relacionats=true&amp;hasrss=true&amp;relacionats_canals=true&amp;haspodcast=true&amp;autostart=false&amp;xtm=true&amp;hasinsereix=true&amp;basepath=http://www.tv3.cat/ria/players/3ac/evp/&amp;hascomparteix=true&amp;videoid=3478150&amp;themepath=themes/evp_advanced.swf&amp;controlbar=true&amp;refreshlock=true&amp;hasenvia=true&amp;subtitols=true&amp;basepath=http://www.tv3.cat/ria/players/3ac/evp/&amp;xtm=true'&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1714693558558647215-2503442296809443757?l=jasabet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1714693558558647215/posts/default/2503442296809443757'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1714693558558647215/posts/default/2503442296809443757'/><link rel='alternate' type='text/html' href='http://jasabet.blogspot.com/2011_04_01_archive.html#2503442296809443757' title='Lluís Llach a València 16-4-2011'/><author><name>.</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-1714693558558647215.post-4713222485396791403</id><published>2011-01-05T03:38:00.000-08:00</published><updated>2011-01-05T03:44:46.171-08:00</updated><title type='text'>CASTELLS AMB PATRIMONI</title><content type='html'>&lt;object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' width='825' height='516' id='EVP3287350IE'&gt;&lt;param name='movie' value='http://www.tv3.cat/ria/players/3ac/evp/Main.swf'&gt;&lt;/param&gt;&lt;param name='scale' value='noscale'&gt;&lt;/param&gt;&lt;param name='align' value='tl'&gt;&lt;/param&gt;&lt;param name='swliveconnect' value='true'&gt;&lt;/param&gt;&lt;param name='menu' value='true'&gt;&lt;/param&gt;&lt;param name='allowFullScreen' value='true'&gt;&lt;/param&gt;&lt;param name='allowScriptAccess' value='always'&gt;&lt;/param&gt;&lt;param name='wmode' value='transparent'&gt;&lt;/param&gt;&lt;param name='FlashVars' value='autostart=false&amp;comentaris=false&amp;relacionats=true&amp;instancename=playerEVP_0_3287350&amp;minimal=false&amp;relacionats_canals=true&amp;backgroundColor=#ffffff&amp;mesi=true&amp;haspodcast=true&amp;basepath=http://www.tv3.cat/ria/players/3ac/evp/&amp;controlbar=true&amp;opcions=true&amp;votacions=true&amp;hasrss=true&amp;hasinsereix=true&amp;hassinopsi=true&amp;subtitols=true&amp;hascomparteix=true&amp;refreshlock=true&amp;themepath=themes/evp_advanced.swf&amp;videoid=3287350&amp;hasenvia=true&amp;basepath=http://www.tv3.cat/ria/players/3ac/evp/&amp;xtm=true'&gt;&lt;/param&gt;&lt;embed width='825' height='516' type='application/x-shockwave-flash' src='http://www.tv3.cat/ria/players/3ac/evp/Main.swf' id='EVP3287350' scale='noscale' name='EVP3287350' salign='tl' swliveconnect='true' menu='true' allowfullscreen='true' allowscriptaccess='always' wmode='transparent' FlashVars='autostart=false&amp;comentaris=false&amp;relacionats=true&amp;instancename=playerEVP_0_3287350&amp;minimal=false&amp;relacionats_canals=true&amp;backgroundColor=#ffffff&amp;mesi=true&amp;haspodcast=true&amp;basepath=http://www.tv3.cat/ria/players/3ac/evp/&amp;controlbar=true&amp;opcions=true&amp;votacions=true&amp;hasrss=true&amp;hasinsereix=true&amp;hassinopsi=true&amp;subtitols=true&amp;hascomparteix=true&amp;refreshlock=true&amp;themepath=themes/evp_advanced.swf&amp;videoid=3287350&amp;hasenvia=true&amp;basepath=http://www.tv3.cat/ria/players/3ac/evp/&amp;xtm=true'&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1714693558558647215-4713222485396791403?l=jasabet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1714693558558647215/posts/default/4713222485396791403'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1714693558558647215/posts/default/4713222485396791403'/><link rel='alternate' type='text/html' href='http://jasabet.blogspot.com/2011_01_01_archive.html#4713222485396791403' title='CASTELLS AMB PATRIMONI'/><author><name>.</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-1714693558558647215.post-8603494435592620636</id><published>2010-12-11T17:41:00.000-08:00</published><updated>2010-12-11T18:30:48.016-08:00</updated><title type='text'>Àlex Gorina entrevista a Jordi Grau sobre " La punyalada "</title><content type='html'>&lt;object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' width='825' height='516' id='EVP3260970IE'&gt;&lt;param name='movie' value='http://www.tv3.cat/ria/players/3ac/evp/Main.swf'&gt;&lt;/param&gt;&lt;param name='scale' value='noscale'&gt;&lt;/param&gt;&lt;param name='align' value='tl'&gt;&lt;/param&gt;&lt;param name='swliveconnect' value='true'&gt;&lt;/param&gt;&lt;param name='menu' value='true'&gt;&lt;/param&gt;&lt;param name='allowFullScreen' value='true'&gt;&lt;/param&gt;&lt;param name='allowScriptAccess' value='always'&gt;&lt;/param&gt;&lt;param name='wmode' value='transparent'&gt;&lt;/param&gt;&lt;param name='FlashVars' value='autostart=false&amp;comentaris=false&amp;relacionats=true&amp;instancename=playerEVP_0_3260970&amp;minimal=false&amp;relacionats_canals=true&amp;backgroundColor=#ffffff&amp;mesi=true&amp;haspodcast=true&amp;basepath=http://www.tv3.cat/ria/players/3ac/evp/&amp;controlbar=true&amp;opcions=true&amp;votacions=true&amp;hasrss=true&amp;hasinsereix=true&amp;hassinopsi=true&amp;subtitols=true&amp;hascomparteix=true&amp;refreshlock=true&amp;themepath=themes/evp_advanced.swf&amp;videoid=3260970&amp;hasenvia=true&amp;basepath=http://www.tv3.cat/ria/players/3ac/evp/&amp;xtm=true'&gt;&lt;/param&gt;&lt;embed width='825' height='516' type='application/x-shockwave-flash' src='http://www.tv3.cat/ria/players/3ac/evp/Main.swf' id='EVP3260970' scale='noscale' name='EVP3260970' salign='tl' swliveconnect='true' menu='true' allowfullscreen='true' allowscriptaccess='always' wmode='transparent' FlashVars='autostart=false&amp;comentaris=false&amp;relacionats=true&amp;instancename=playerEVP_0_3260970&amp;minimal=false&amp;relacionats_canals=true&amp;backgroundColor=#ffffff&amp;mesi=true&amp;haspodcast=true&amp;basepath=http://www.tv3.cat/ria/players/3ac/evp/&amp;controlbar=true&amp;opcions=true&amp;votacions=true&amp;hasrss=true&amp;hasinsereix=true&amp;hassinopsi=true&amp;subtitols=true&amp;hascomparteix=true&amp;refreshlock=true&amp;themepath=themes/evp_advanced.swf&amp;videoid=3260970&amp;hasenvia=true&amp;basepath=http://www.tv3.cat/ria/players/3ac/evp/&amp;xtm=true'&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1714693558558647215-8603494435592620636?l=jasabet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1714693558558647215/posts/default/8603494435592620636'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1714693558558647215/posts/default/8603494435592620636'/><link rel='alternate' type='text/html' href='http://jasabet.blogspot.com/2010_12_01_archive.html#8603494435592620636' title='Àlex Gorina entrevista a Jordi Grau sobre &quot; La punyalada &quot;'/><author><name>.</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-1714693558558647215.post-1246158011235064501</id><published>2010-06-04T09:36:00.000-07:00</published><updated>2010-12-11T18:37:29.708-08:00</updated><title type='text'>La Patum de Berga 2010</title><content type='html'>&lt;object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' width='825' height='516' id='EVP2947110IE'&gt;&lt;param name='movie' value='http://www.tv3.cat/ria/players/3ac/evp/Main.swf'&gt;&lt;/param&gt;&lt;param name='scale' value='noscale'&gt;&lt;/param&gt;&lt;param name='align' value='tl'&gt;&lt;/param&gt;&lt;param name='swliveconnect' value='true'&gt;&lt;/param&gt;&lt;param name='menu' value='true'&gt;&lt;/param&gt;&lt;param name='allowFullScreen' value='true'&gt;&lt;/param&gt;&lt;param name='allowScriptAccess' value='always'&gt;&lt;/param&gt;&lt;param name='wmode' value='transparent'&gt;&lt;/param&gt;&lt;param name='FlashVars' value='relacionats=true&amp;autostart=false&amp;minimal=false&amp;votacions=true&amp;instancename=playerEVP_0_2945850&amp;relacionats_canals=true&amp;backgroundColor=#2F8FBF&amp;subtitols=true&amp;themepath=themes/evp_advanced.swf&amp;mesi=true&amp;basepath=http://www.tv3.cat/ria/players/3ac/evp/&amp;videoid=2947110&amp;controlbar=true&amp;refreshlock=true&amp;comentaris=true&amp;basepath=http://www.tv3.cat/ria/players/3ac/evp/&amp;xtm=true'&gt;&lt;/param&gt;&lt;embed width='825' height='516' type='application/x-shockwave-flash' src='http://www.tv3.cat/ria/players/3ac/evp/Main.swf' id='EVP2947110' scale='noscale' name='EVP2947110' salign='tl' swliveconnect='true' menu='true' allowfullscreen='true' allowscriptaccess='always' wmode='transparent' FlashVars='relacionats=true&amp;autostart=false&amp;minimal=false&amp;votacions=true&amp;instancename=playerEVP_0_2945850&amp;relacionats_canals=true&amp;backgroundColor=#2F8FBF&amp;subtitols=true&amp;themepath=themes/evp_advanced.swf&amp;mesi=true&amp;basepath=http://www.tv3.cat/ria/players/3ac/evp/&amp;videoid=2947110&amp;controlbar=true&amp;refreshlock=true&amp;comentaris=true&amp;basepath=http://www.tv3.cat/ria/players/3ac/evp/&amp;xtm=true'&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1714693558558647215-1246158011235064501?l=jasabet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1714693558558647215/posts/default/1246158011235064501'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1714693558558647215/posts/default/1246158011235064501'/><link rel='alternate' type='text/html' href='http://jasabet.blogspot.com/2010_06_01_archive.html#1246158011235064501' title='La Patum de Berga 2010'/><author><name>.</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-1714693558558647215.post-2580802859960966824</id><published>2010-02-18T14:27:00.001-08:00</published><updated>2011-02-11T17:08:04.338-08:00</updated><title type='text'>TELEVISIÓ i STREAMING</title><content type='html'>&lt;select id="musica" name="selecta" onchange="document.all.playera.Filename=document.all.musica.value;" size="1" style="width: 501px;"&gt; &lt;option&gt;:::Trieu el Canal:::Escoja el Canal:::Choose Your Media Here----&amp;gt;&lt;/option&gt;&lt;option&gt;-------------::::CANALS EN DIRECTE -- LIVE CHANNELS::::-------------&lt;/option&gt;&lt;br /&gt;&lt;br /&gt;&lt;option value="http://barcelonatv.stream.flumotion.com/barcelonatv/barcelonatv.asf.asx"&gt;Barcelona TV "BTV""&lt;/option&gt; &lt;br /&gt;&lt;option value="http://www.tvgirona.tv/directe.asx"&gt;Girona TV "GTV""&lt;/option&gt;&lt;br /&gt;&lt;option value="http://stream.flumotion.com/tvmataro/tvmataro.asx"&gt;Mataró TV "MTV""&lt;/option&gt; &lt;br /&gt;&lt;br /&gt;&lt;option value="http://195.10.10.204:80/ib3/live1.asf?fspref=aHR0cDovL2liM25vdGljaWVzLmNvbS9zZWNjaW8vcHJvZ3JhbWVzL3Byb2dyYW1lcy1kZS10ZWxldmlzaW8%3D"&gt; Illes Balears "IB3"&lt;/option&gt; &lt;br /&gt;&lt;option value="http://rtvv.stream.flumotion.com/rtvv/canal9.flv.m3u&amp;amp"&gt; Televisió Valenciana Internacional "TVVI"&lt;/option&gt;&lt;br /&gt;&lt;option value=" http://www.crtvg.es/asfroot/television.asx"&gt; Televisió Gallega "TVG"&lt;/option&gt; &lt;br /&gt;&lt;option value="mms://194.158.91.91/Atv"&gt;ANDORRA TV "Atv"&lt;/option&gt; &lt;br /&gt;&lt;option value="mms://88.191.39.73/perpignantvstream"&gt; Perpinyà TV"Ptv"&lt;/option&gt; &lt;br /&gt;&lt;option value="mms://a217.l881320216.c8813.e.lm.akamaistream.net/D/217/8813/v0001/reflector:20216"&gt; Euskal Telebista "Etv"&lt;/option&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;option&gt;--------------------------::::STREAMING CHANNELS::::-------------------------&lt;/option&gt;&lt;br /&gt;&lt;option value="http://video.google.com/googleplayer.swf?docId=-549947666734333336"&gt; Concert Lluís Llach Verges 24 Març 2007 "Lluís Llach"&lt;/option&gt;&lt;br /&gt;&lt;option value="http://www.xtvl.tv/vid/0910/XTVL_vadecastells_20091126.flv"&gt;Els millors castells de la temporada 2009 "Va de castells"&lt;/option&gt;&lt;/select&gt; &lt;br /&gt;&lt;object classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95" height="423" id="playera" width="500"&gt;  &lt;param NAME="AutoStart" VALUE="True"&gt;&lt;param NAME="Balance" VALUE="False"&gt;&lt;param NAME="DisplaySize" VALUE="True"&gt;&lt;param NAME="Filename" VALUE=""&gt;&lt;param NAME="Mute" VALUE="False"&gt;&lt;param NAME="SelectionStart" VALUE="False"&gt;&lt;param NAME="SelectionEnd" VALUE="False"&gt;&lt;param NAME="ShowControls" VALUE="True"&gt;&lt;param NAME="ShowAudioControls" VALUE="True"&gt;&lt;param NAME="ShowDisplay" VALUE="False"&gt;&lt;param NAME="ShowPositionControls" VALUE="False"&gt;&lt;param NAME="Volume" VALUE="1"&gt;&lt;param NAME="AudioStream" VALUE="False"&gt;&lt;param NAME="AutoSize" VALUE="False"&gt;&lt;param NAME="AnimationAtStart" VALUE="False"&gt;&lt;param NAME="AllowScan" VALUE="False"&gt;&lt;param NAME="AllowChangeDisplaySize" VALUE="False"&gt;&lt;param NAME="AutoRewind" VALUE="True"&gt;&lt;param NAME="BaseURL" VALUE=""&gt;&lt;param NAME="BufferingTime" VALUE="5"&gt;&lt;param NAME="CaptioningID" VALUE=""&gt;&lt;param NAME="ClickToPlay" VALUE="True"&gt;&lt;param NAME="CursorType" VALUE="0"&gt;&lt;param NAME="CurrentPosition" VALUE="True"&gt;&lt;param NAME="CurrentMarker" VALUE="True"&gt;&lt;param NAME="DefaultFrame" VALUE="mainframe"&gt;&lt;param NAME="DisplayBackColor" VALUE="True"&gt;&lt;param NAME="DisplayForeColor" VALUE="16777215"&gt;&lt;param NAME="DisplayMode" VALUE="1"&gt;&lt;param NAME="Enabled" VALUE="-1"&gt;&lt;param NAME="EnableContextMenu" VALUE="False"&gt;&lt;param NAME="EnablePositionControls" VALUE="False"&gt;&lt;param NAME="EnableFullScreenControls" VALUE="False"&gt;&lt;param NAME="EnableTracker" VALUE="False"&gt;&lt;param NAME="InvokeURLs" VALUE="False"&gt;&lt;param NAME="Language" VALUE="False"&gt;&lt;param NAME="PlayCount" VALUE="1"&gt;&lt;param NAME="PreviewMode" VALUE="False"&gt;&lt;param NAME="ShowStatusBar" VALUE="True"&gt;&lt;param NAME="TransparentAtStart" VALUE="False"&gt;&lt;/OBJECT&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1714693558558647215-2580802859960966824?l=jasabet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1714693558558647215/posts/default/2580802859960966824'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1714693558558647215/posts/default/2580802859960966824'/><link rel='alternate' type='text/html' href='http://jasabet.blogspot.com/2010_02_01_archive.html#2580802859960966824' title='TELEVISIÓ i STREAMING'/><author><name>.</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-1714693558558647215.post-5176511641820009997</id><published>2010-02-17T17:23:00.000-08:00</published><updated>2011-02-11T17:03:41.718-08:00</updated><title type='text'>Televisió Valenciana "Canal 24/9 RTVV" (streaming)</title><content type='html'>&lt;embed pluginspage="http://get.adobe.com/es/flashplayer/" flashvars="showOptionEmbed=false&amp;amp;showOptionFullScreen=true&amp;amp;folder=http://www.rtve.es/swf/flvplayer/&amp;amp;overstretch=false&amp;amp;file=http://rtvv.stream.flumotion.com/rtvv/canal9.flv.m3u&amp;amp;image=http://2.bp.blogspot.com/_lOzsvBa1hiM/SutVQIuw88I/AAAAAAAAFKE/WBtaZEkQyLg/s400/flash.jpg&amp;amp;isExtern=true&amp;amp;playerId=rtve2 4&amp;amp;autostart=false&amp;amp;live=true" wmode="transparent" autostart="true" allownetworking="internal" allowscriptaccess="always" allowfullscreen="true" quality="high" src="http://www.rtve.es/swf/mediaplayer.swf" type="application/x-shockwave-flash" width="825" height="726"&gt;&lt;/embed&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1714693558558647215-5176511641820009997?l=jasabet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1714693558558647215/posts/default/5176511641820009997'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1714693558558647215/posts/default/5176511641820009997'/><link rel='alternate' type='text/html' href='http://jasabet.blogspot.com/2010_02_01_archive.html#5176511641820009997' title='Televisió Valenciana &quot;Canal 24/9 RTVV&quot; (streaming)'/><author><name>.</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-1714693558558647215.post-8218070290973828418</id><published>2010-02-11T14:09:00.001-08:00</published><updated>2010-02-26T17:14:32.806-08:00</updated><title type='text'>Maria de Medeiros, cantant "Així com cell...." de Raimon</title><content type='html'>&lt;object width="500" height="421" id="SVP2739910IE"&gt;&lt;param name="movie" value="http://www.tv3.cat/svp2/svp2.swf"&gt;&lt;/param&gt;&lt;param name="scale" value="noscale"&gt;&lt;/param&gt;&lt;param name="align" value="tl"&gt;&lt;/param&gt;&lt;param name="swliveconnect" value="true"&gt;&lt;/param&gt;&lt;param name="menu" value="true"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;param name="FlashVars" value="VIDEO_ID=2739910&amp;FD=49374&amp;WIDTH=500&amp;HEIGHT=421&amp;USE_LINK_TOCONTEXT=true"&gt;&lt;/param&gt;&lt;embed width="500" height="421" type="application/x-shockwave-flash" src="http://www.tv3.cat/svp2/svp2.swf" id="SVP2739910" scale="noscale" name="SVP2739910" salign="tl" swliveconnect="true" menu="true" allowfullscreen="true" allowscriptaccess="always" FlashVars="VIDEO_ID=2739910&amp;FD=640612&amp;WIDTH=500&amp;HEIGHT=375&amp;USE_LINK_TOCONTEXT=true" &gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="500" height="421" id="SVP2253259IE"&gt;&lt;param name="movie" value="http://www.tv3.cat/svp2/svp2.swf"&gt;&lt;/param&gt;&lt;param name="scale" value="noscale"&gt;&lt;/param&gt;&lt;param name="align" value="tl"&gt;&lt;/param&gt;&lt;param name="swliveconnect" value="true"&gt;&lt;/param&gt;&lt;param name="menu" value="true"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;param name="FlashVars" value="VIDEO_ID=2253259&amp;FD=2253259&amp;WIDTH=500&amp;HEIGHT=421&amp;USE_LINK_TOCONTEXT=true"&gt;&lt;/param&gt;&lt;embed width="500" height="421" type="application/x-shockwave-flash" src="http://www.tv3.cat/svp2/svp2.swf" id="SVP2253259" scale="noscale" name="SVP2253259" salign="tl" swliveconnect="true" menu="true" allowfullscreen="true" allowscriptaccess="always" FlashVars="VIDEO_ID=2253259&amp;FD=2253259&amp;WIDTH=500&amp;HEIGHT=375&amp;USE_LINK_TOCONTEXT=true" &gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="500" height="421" id="SVP768169IE"&gt;&lt;param name="movie" value="http://www.tv3.cat/svp2/svp2.swf"&gt;&lt;/param&gt;&lt;param name="scale" value="noscale"&gt;&lt;/param&gt;&lt;param name="align" value="tl"&gt;&lt;/param&gt;&lt;param name="swliveconnect" value="true"&gt;&lt;/param&gt;&lt;param name="menu" value="true"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;param name="FlashVars" value="VIDEO_ID=768169&amp;FD=768169&amp;WIDTH=500&amp;HEIGHT=421&amp;USE_LINK_TOCONTEXT=true"&gt;&lt;/param&gt;&lt;embed width="500" height="421" type="application/x-shockwave-flash" src="http://www.tv3.cat/svp2/svp2.swf" id="SVP768169" scale="noscale" name="SVP768169" salign="tl" swliveconnect="true" menu="true" allowfullscreen="true" allowscriptaccess="always" FlashVars="VIDEO_ID=768169&amp;FD=768169&amp;WIDTH=500&amp;HEIGHT=375&amp;USE_LINK_TOCONTEXT=true" &gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;object width="500" height="421" id="SVP2692850IE"&gt;&lt;param name="movie" value="http://www.tv3.cat/svp2/svp2.swf"&gt;&lt;/param&gt;&lt;param name="scale" value="noscale"&gt;&lt;/param&gt;&lt;param name="align" value="tl"&gt;&lt;/param&gt;&lt;param name="swliveconnect" value="true"&gt;&lt;/param&gt;&lt;param name="menu" value="true"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;param name="FlashVars" value="VIDEO_ID=2692850&amp;FD=891730&amp;WIDTH=500&amp;HEIGHT=375&amp;USE_LINK_TOCONTEXT=true"&gt;&lt;/param&gt;&lt;embed width="500" height="421" type="application/x-shockwave-flash" src="http://www.tv3.cat/svp2/svp2.swf" id="SVP2692850" scale="noscale" name="SVP2692850" salign="tl" swliveconnect="true" menu="true" allowfullscreen="true" allowscriptaccess="always" FlashVars="VIDEO_ID=2692850&amp;FD=973352&amp;WIDTH=500&amp;HEIGHT=375&amp;USE_LINK_TOCONTEXT=true" &gt;&lt;/embed&gt;&lt;/object&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1714693558558647215-8218070290973828418?l=jasabet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1714693558558647215/posts/default/8218070290973828418'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1714693558558647215/posts/default/8218070290973828418'/><link rel='alternate' type='text/html' href='http://jasabet.blogspot.com/2010_02_01_archive.html#8218070290973828418' title='Maria de Medeiros, cantant &quot;Així com cell....&quot; de Raimon'/><author><name>.</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-1714693558558647215.post-8172657709655776985</id><published>2010-01-21T10:45:00.001-08:00</published><updated>2011-02-11T16:55:34.895-08:00</updated><title type='text'>Lluís Llach concert despedida a Verges, 24 Març 2007</title><content type='html'>&lt;embed style="width:825px; height:645px;" id="VideoPlayback" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docId=-549947666734333336" flashvars=""&gt; &lt;/embed&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1714693558558647215-8172657709655776985?l=jasabet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1714693558558647215/posts/default/8172657709655776985'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1714693558558647215/posts/default/8172657709655776985'/><link rel='alternate' type='text/html' href='http://jasabet.blogspot.com/2010_01_01_archive.html#8172657709655776985' title='Lluís Llach concert despedida a Verges, 24 Març 2007'/><author><name>.</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-1714693558558647215.post-8929848659560926882</id><published>2009-03-18T06:49:00.000-07:00</published><updated>2010-02-09T18:17:06.378-08:00</updated><title type='text'>Mapes</title><content type='html'>&lt;script src="http://www.gmodules.com/ig/ifr?url=http://www.labpixies.com/campaigns/maps/maps.xml&amp;amp;up_last_location=0&amp;amp;synd=open&amp;amp;w=330&amp;amp;h=440&amp;amp;title=&amp;amp;lang=es&amp;amp;country=france&amp;amp;border=%23ffffff%7C3px%2C1px+solid+%23999999&amp;amp;output=js"&gt;&lt;/script&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1714693558558647215-8929848659560926882?l=jasabet.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1714693558558647215/posts/default/8929848659560926882'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1714693558558647215/posts/default/8929848659560926882'/><link rel='alternate' type='text/html' href='http://jasabet.blogspot.com/2009_03_01_archive.html#8929848659560926882' title='Mapes'/><author><name>.</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry></feed>
