<?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>Alberto Ramacciotti</title>
	<atom:link href="http://obertfsp.com/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://obertfsp.com/wordpress</link>
	<description>Portfolio di uno sviluppatore web</description>
	<lastBuildDate>Fri, 20 Nov 2009 16:11:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Pagina con widget</title>
		<link>http://obertfsp.com/wordpress/2009/11/20/wordpress-pagina-con-widget/</link>
		<comments>http://obertfsp.com/wordpress/2009/11/20/wordpress-pagina-con-widget/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 13:25:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[articoli]]></category>
		<category><![CDATA[obertfsp]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://obertfsp.com/wordpress/?p=460</guid>
		<description><![CDATA[<p>Un metodo per inserire  i <strong>widget</strong> di WordPress in una <strong>pagina Pagina</strong> del tema in uso, via pannello di amministrazione, registrando ogni sidebar nel vostro <strong>functions.php</strong>.</p>]]></description>
			<content:encoded><![CDATA[<p>Un metodo per inserire  i <strong>widget</strong> di WordPress in una <strong>pagina Pagina</strong> del tema in uso, via pannello di amministrazione, registrando ogni sidebar nel vostro <strong>functions.php</strong>.</p>
<ul>
<li>Crare una nuova pagina PAGINA nel tema in uso di WordPress.</li>
<li>Utilizzare il modello di pagina di template seguente, contenente il codice di registrazione della sidebar:</li>
</ul>
<pre>&lt;?php
/*
Template Name: obertfsp.com widgettizzed wp page
*/

// includo header.php
get_header(); 

// inizio primo loop generale
if (have_posts()) :

// inizio primo sotto-loop
while (have_posts()) : the_post(); ?&gt;

&lt;!-- contenuto dinamico dentro al loop --&gt;
&lt;div class="entry"&gt;

&lt;h2&gt;&lt;?php the_title(); ?&gt;&lt;/h2&gt;

&lt;?php the_content(); ?&gt;

&lt;!-- Il Cuore: racchiudo il codice del widget in una lista non ordinata di oggetti --&gt;
&lt;ul class="obertfsp-widget"&gt;

&lt;?php if ( function_exists('dynamic_sidebar') &amp;&amp; dynamic_sidebar(2) ) : else : endif; ?&gt;

&lt;/ul&gt;

&lt;!-- chiudo il div.entry --&gt;
&lt;/div&gt;

&lt;!-- fine primo sotto-loop --&gt;
&lt;?php endwhile;

// condizione per inserire un messaggio di errore 404 e/o altro contenuto statico

else :

// includo un messaggio di errore 404 in un file di testo all interno del tema

include("path/404Msg.txt");

// fine primo loop generale
endif;

// includo sidebar.php del tema
get_sidebar();

// includo footer.php del tema
get_footer(); ?&gt;</pre>
<p>A questo punto non ci resta altro che <strong>registrare il widget</strong> nel file <strong>functions.php:</strong></p>
<pre>&lt;?php if ( function_exists('register_sidebars') ) register_sidebars(2); ?&gt;</pre>
<p>Adesso potremo andare nel pannello di amministrazione di WordPress,nella pagina <strong>Aspetto -&gt; Widget</strong>, vedremo la sezione del widget abilitata, pronta per inserirvi il widget desiderato.</p>
<p>Create una nuova <strong>Pagina</strong> in <strong>Pagine -&gt; Aggiungi Nuova</strong> ed utilizzate il template <strong>obertfsp.com widgettizzed wp page</strong> per la sua visualizzazione.</p>
<h3>Nota:</h3>
<p>Come potete notare nel mio esempio ho utilizzato come valore della sidebar il numero <strong>2, </strong>questo per mostrarvi il caso di due sezioni abilitate per i widget, per aggiungerne, basta aumentare il valore espresso in <strong>functions.php</strong>:</p>
<pre>
<pre>register_sidebars(2);</pre>
</pre>
<p>con uno maggiore, uguale al <strong>numero di sezioni per widget</strong> desiderate nel tema ed inserire il widget nella sezione del tema desiderata, utilizzando il valore relativo alla registrazione effettuata:</p>
<h3>functions.php</h3>
<pre>
<pre>
<pre>&lt;?php if ( function_exists('dynamic_sidebar') &amp;&amp; dynamic_sidebar(3) ) : else : endif; ?&gt;</pre>
</pre>
</pre>
<h3>obertfsp-com-widgettizzed-wp-page.php</h3>
<pre>
<pre>
<pre>&lt;?php
/*
Template Name: obertfsp.com widgettizzed wp page
*/

// includo header.php
get_header(); 

// inizio primo loop generale
if (have_posts()) :

// inizio primo sotto-loop
while (have_posts()) : the_post(); ?&gt;

&lt;!-- contenuto dinamico dentro al loop --&gt;
&lt;div&gt;

&lt;h2&gt;&lt;?php the_title(); ?&gt;&lt;/h2&gt;

&lt;?php the_content(); ?&gt;

&lt;!-- Il Cuore: racchiudo il codice del widget in una lista non ordinata di oggetti --&gt;
&lt;ul&gt;

&lt;?php if ( function_exists('dynamic_sidebar') &amp;&amp; dynamic_sidebar(3) ) : else : endif; ?&gt;

&lt;/ul&gt;

&lt;!-- chiudo il div.entry --&gt;
&lt;/div&gt;

&lt;!-- fine primo sotto-loop --&gt;
&lt;?php endwhile;

// condizione per inserire un messaggio di errore 404 e/o altro contenuto statico

else :

// includo un messaggio di errore 404 in un file di testo all interno del tema

include("path/404Msg.txt");

// fine primo loop generale
endif;

// includo sidebar.php del tema
get_sidebar();

// includo footer.php del tema
get_footer(); ?&gt;</pre>
</pre>
</pre>
<p>ogni sezione che vedrete tramite pannello di amministrazione sarà collegata al valore sopracitato, per cui inseriremo ogni cosa necessaria in ogni sezione,sapendo in quale sezione della pagina verrà stampato il contenuto.</p>
]]></content:encoded>
			<wfw:commentRss>http://obertfsp.com/wordpress/2009/11/20/wordpress-pagina-con-widget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tre plugin per personalizzare il pannello di amministrazione per i ruoli utente in Wordpress</title>
		<link>http://obertfsp.com/wordpress/2009/11/19/tre-plugin-per-personalizzare-il-pannello-di-amministrazione-per-i-ruoli-utente-in-wordpress/</link>
		<comments>http://obertfsp.com/wordpress/2009/11/19/tre-plugin-per-personalizzare-il-pannello-di-amministrazione-per-i-ruoli-utente-in-wordpress/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 16:05:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WebDev]]></category>
		<category><![CDATA[articoli]]></category>
		<category><![CDATA[obertfsp]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://obertfsp.com/wordpress/?p=452</guid>
		<description><![CDATA[<p>Dovendo creare all'interno di un sito che utilizza <a title="Pagina di download per Wordpress in italiano la piattaforma open source per blog" href="http://it.wordpress.org/">Wordpress</a> come CMS, ho avuto necessità di personalizzare l'area di amministrazione per i ruoli utente del gruppo <strong>autore</strong>, organizzando tale sezione in modo da limitare la visualizzazione da parte degli utenti appartenenti a tale gruppo, delle opzioni da visualizzare.</p>]]></description>
			<content:encoded><![CDATA[<p>Dovendo creare all&#8217;interno di un sito che utilizza <a title="Pagina di download per Wordpress in italiano la piattaforma open source per blog" href="http://it.wordpress.org/">Wordpress</a> come CMS, ho avuto necessità di personalizzare l&#8217;area di amministrazione per i ruoli utente del gruppo <strong>autore</strong>, organizzando tale sezione in modo da limitare la visualizzazione da parte degli utenti appartenenti a tale gruppo, delle opzioni da visualizzare.</p>
<p>Esistono molte strade per organizzare una sezione del genere, oggi ne condivido una,utilizzata da me per la sezione <a title="EffeBlog il blog di effecorta Lucca dove poter affrontare tematiche ecologiche e sul consumo sostenibile" href="http://www.effecorta.it/effeblog-il-blog-di-effecorta/">EffeBlog, il blog sul <strong>Consumo Sostenibile</strong></a> di <a title="effecorta filiera corta e di prodotti alla spina in Lucca" href="http://www.effecorta.it">Effecorta, il negozio di filiera corta e prodotti alla spina in Lucca</a>.</p>
<h3>Plugins utilizzati:</h3>
<ul>
<li><a href="http://agapetry.net/news/introducing-role-scoper/" title="Role Scoper Wordpress Plugin Limitare gli utenti">Role Scoper Wordpress Plugin</a>, di <a href="http://agapetry.net" title="Kevin Behrens homepage">Kevin Behrens</a>, <span>per limitare la visualizzazione delle opzioni nell&#8217;area di amministrazione, sia per interi gruppi che per singolo utente</span></li>
<li><a href="http://wordpress.org/extend/plugins/admin-trim-interface/" title="Admin Trim Interface Wordpress Plugin">Admin Trim Interface Wordpress Plugin</a> di <a href="http://wordpress.org/extend/plugins/profile/coffee2code" title="Scott Reilly pagina autore in wordpress org">Scott Reilly</a>, che permette una più facile personalizzazione del <abbr title="Cascading Style Sheets">CSS</abbr>, del tema della sezione amministrazione, in modo da farla assomigliare al design utilizzato nella parte <em>client side</em> del sito, senza doversi <a href="http://codex.wordpress.org/Creating_Admin_Themes#Creating_an_Admin_Theme_Plugin" title="Creare un plugin per personalizzare l'area amministrazione di Wordpress">scrivere di proprio pugno il plugin per personalizzare l&#8217;area amministrazione di Wordpress</a>.</span></li>
</ul>
<h3 id="role-scoper-localizzato-in-italiano">Role Scoper in italiano</h3>
<p>Per quanto riguarda <a href="http://agapetry.net/news/introducing-role-scoper/" title="Role Scoper Wordpress Plugin Limitare gli utenti">Role Scoper Wordpress Plugin</a>, ho localizzato il plugin in <strong>italiano</strong>, qualche tempo fa, lo renderò disponibile a breve anche in questo mio sito.</p>
]]></content:encoded>
			<wfw:commentRss>http://obertfsp.com/wordpress/2009/11/19/tre-plugin-per-personalizzare-il-pannello-di-amministrazione-per-i-ruoli-utente-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>W3c nuovo sito</title>
		<link>http://obertfsp.com/wordpress/2009/11/19/w3c-nuovo-sito/</link>
		<comments>http://obertfsp.com/wordpress/2009/11/19/w3c-nuovo-sito/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 15:29:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WebDev]]></category>
		<category><![CDATA[articoli]]></category>
		<category><![CDATA[obertfsp]]></category>

		<guid isPermaLink="false">http://obertfsp.com/wordpress/?p=450</guid>
		<description><![CDATA[<p>Nuovo sito per il <a title="World Wide Web Consortium" href="http://www.w3.org/">W3c</a>, basato su il <strong>Template Engine</strong>  o,come gli ideatori lo definiscono: un <strong><em>Template/Presentation Framework</em></strong>, <strong><a title="Smarty template engine" href="http://www.smarty.net/">Smarty</a></strong>.</p>]]></description>
			<content:encoded><![CDATA[<p>Nuovo sito per il <a title="World Wide Web Consortium" href="http://www.w3.org/">W3c</a>, basato su il <strong>Template Engine</strong>  o,come gli ideatori lo definiscono: un <strong><em>Template/Presentation Framework</em></strong>, <strong><a title="Smarty template engine" href="http://www.smarty.net/">Smarty</a></strong>.</p>
<p>Salta subito all&#8217;occhio la differente organizzazione e la ricerca dei contenuti,aiutata dalle icone relative ai collegamenti nei vari menu e riassunti. Tali immagini utilizzano la tecnica di posizionamento via <abbr title="Cascading Style Sheets">CSS</abbr> chiamata <a href="http://www.alistapart.com/articles/sprites" title="A list a part Article CSS Sprite method">Spriting</a>, autore dell&#8217;articolo il <a href="http://www.alistapart.com/authors/s/daveshea" title="A list A Part Authors Dave Shea">Dave Shea</a> del <a href="http://www.csszengarden.com/" title="CSS Zen Garden the beauty of CSS">CSS Zen Garden</a>; come si può notare andando a spulciare il sorgente della pagina principale del sito.</p>
<p>Sebbene sembra, da giugno 2009, che sia <a href="http://www.w3.org/News/2009#entry-6601" title="XHTML 2 Working Group Expected to Stop Work End of 2009, W3C to Increase Resources on HTML 5 ">prevista la chiusura del gruppo di lavoro addetto alla versione <strong>2</strong> di <abbr title="eXtensible Hyper Text Markup Language">XHTML</abbr></a>, per favorire lo sviluppo di <abbr title="Hyper Text Markup Language">HTML 5</abbr>, il <abbr title="Declaration Document Type">DTD</abbr> utilizzato in questa nuova versione rimane invariato: <strong>XHTML 1.0 Strict</strong>.</p>
<p>Molte le novità e poco il tempo per scrivere, per cui rimando al futuro l&#8217;implementazione di altre osservazioni pubblicate. Buona serata.</p>
<address>Alberto</address>
]]></content:encoded>
			<wfw:commentRss>http://obertfsp.com/wordpress/2009/11/19/w3c-nuovo-sito/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recensione Il Generale &#8220;Mille modi&#8221; 2009 CD e DVD</title>
		<link>http://obertfsp.com/wordpress/2009/10/15/recensione-il-generale-mille-modi-2009/</link>
		<comments>http://obertfsp.com/wordpress/2009/10/15/recensione-il-generale-mille-modi-2009/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 18:08:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[articoli]]></category>
		<category><![CDATA[obertfsp]]></category>

		<guid isPermaLink="false">http://obertfsp.com/wordpress/?p=408</guid>
		<description><![CDATA[Ho scritto la recensione del CD del Generale, Mille Modi, pubblicata in www.reggae.it.
]]></description>
			<content:encoded><![CDATA[<p>Ho scritto la <a href="http://www.reggae.it/index.php?option=com_content&#038;view=article&#038;id=8258:recensione-il-generale-qmille-modiq-2009-cd-e-dvd&#038;catid=40:cd&#038;Itemid=86" title="reggae it Recensione CD il Generale Mille modi">recensione del <abbr title="Compact Disc">CD</abbr> del Generale, Mille Modi</a>, pubblicata in <a href="http://www.reggae.it" title="reggae it Portale italiano dedicato al reggae">www.reggae.it</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://obertfsp.com/wordpress/2009/10/15/recensione-il-generale-mille-modi-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protetto: Preventivo Microel</title>
		<link>http://obertfsp.com/wordpress/2009/10/08/preventivo-microel/</link>
		<comments>http://obertfsp.com/wordpress/2009/10/08/preventivo-microel/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 03:22:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[obertfsp]]></category>
		<category><![CDATA[portfolio]]></category>

		<guid isPermaLink="false">http://obertfsp.com/wordpress/?p=401</guid>
		<description><![CDATA[Non vi è alcun riassunto in quanto si tratta di un articolo protetto.]]></description>
			<content:encoded><![CDATA[<form action="http://obertfsp.com/wordpress/wp-pass.php" method="post">
<p>Questo post è protetto da password. Per leggerlo inserire la password qui sotto:</p>
<p><label for="pwbox-401">Password:<br />
<input name="post_password" id="pwbox-401" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Invia" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://obertfsp.com/wordpress/2009/10/08/preventivo-microel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS, Two or more elements positioned in the same line</title>
		<link>http://obertfsp.com/wordpress/2009/08/06/css-two-or-more-elements-positioned-in-the-same-line/</link>
		<comments>http://obertfsp.com/wordpress/2009/08/06/css-two-or-more-elements-positioned-in-the-same-line/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 01:15:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[WebDev]]></category>
		<category><![CDATA[articoli]]></category>
		<category><![CDATA[obertfsp]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://obertfsp.com/wordpress/?p=361</guid>
		<description><![CDATA[Target:
Create a box that will contains some floated elements,to have two or more elements in the same horizontal line.
Development steps
We will use a method that is usually used to build a Two cols layout:
 &#60;div id="container-of-Foo-Bar"&#62;
&#60;div id="foo"&#62;&#60;/div&#62;&#60;div id="bar"&#62;&#60;/div&#62;
&#60;/div&#62;
#container-of-Foo-Bar {
overflow: hidden; /* clearing method */
width: 40em; /* elastic method, could be replaced by width: a-value-such-as-100%; though [...]]]></description>
			<content:encoded><![CDATA[<h3>Target:</h3>
<p>Create a box that will contains some floated elements,to have two or more elements in the same horizontal line.</p>
<h3>Development steps</h3>
<p>We will use a method that is usually used to build a Two cols layout:</p>
<pre><code> &lt;div id="container-of-Foo-Bar"&gt;
&lt;div id="foo"&gt;&lt;/div&gt;&lt;div id="bar"&gt;&lt;/div&gt;
&lt;/div&gt;
#container-of-Foo-Bar {
overflow: hidden; /* clearing method */
width: 40em; /* elastic method, could be replaced by width: a-value-such-as-100%; though */
}

#foo {
float: left;
width: 20em;
}

#bar {
float: right;
width: 20em;
}

#container-of-Foo-Bar, #foo, #bar {
border: 1px solid red;
}
</code></pre>
<h3>Analysis of the code:</h3>
<p>We created a structure starting from a container box for the elements that we want to get in the same line, gave it the following <abbr title="Cascading Style Sheets">CSS</abbr> rules: <strong>overflow: hidden;</strong> and <strong>width</strong>. The <strong>overflow</strong> property is <strong><a href="http://www.quirksmode.org/css/clearing.html#link8" title="Quirksmode easy clearing method Overflow method">clearing</a></strong> all floated elements inside the box, same result that we could get by using the <strong><a href="http://www.quirksmode.org/css/clearing.html#link2" title="Quirksmode easy clearing method Classic Method">other classic clearing method</a></strong>: add the <abbr title="Cascading Style Sheets">CSS</abbr> rule <strong>clear: both;</strong> to the next element after floated elements,as you can check in the <a href="http://www.quirksmode.org/" title="Quirksmode homepage">Quirksmode</a>&#8217;s page,that requires have a sibling element inside the box and next to the floated elements; since <strong><a href="http://www.quirksmode.org/css/clearing.html#link8" title="Quirksmode easy clearing method Overflow method">clearing</a></strong> exists we will don&#8217;t use the <strong><a href="http://www.quirksmode.org/css/clearing.html#link2" title="Quirksmode easy clearing method Classic Method">old clearing method</a></strong>, getting a more clean HTML code. Then, the structure will contains two or more elements with <strong>float: left;</strong> and a <strong>width</strong> to get them appears in the same horizontal line.</p>
<p>If you need to use an elastic layout, you will use <strong>em</strong> as <strong>width</strong> value for both <strong>container box</strong> and <strong>floated elements</strong> inside it; in our case: <strong>two floated elements</strong>, we choose <strong>40em</strong> then <strong>40em/2=20em</strong> as <strong>#foo</strong> and <strong>#foo</strong>&#8217;s width value, we assumed that we have not <strong>padding, border and margin</strong> set; in that case we will reduce the <strong>#foo</strong> and <strong>#foo</strong>&#8217;s width value until they will fill into <strong>#container-of-Foo-Bar</strong>.Following this method, you can calculate the width value to be used in case we want more than two elements in a box: <strong>container-width / number of wished elements that should appears in the same horizontal line = width value of elements</strong> (#foo and #bar divs,in our case).</p>
<h3>Border tip usage</h3>
<p>Notice the usage of <strong>border</strong> in the container: It is a good method to check the real space occupied by an element, especially if it contains some floated elements. <strong>red</strong> is short to be wrote and easy to see. It is to be used only for test the space occupied by all elements,remove it if you don&#8217;t need it.</p>
<h3>Conclusion</h3>
<p>Use a container element with <strong>overflow: hidden;</strong> rule applied in the <strong>.css</strong>, where to put elements with <strong>float: left;</strong>; calculate their width values and remember that <strong><a href="http://www.w3.org/TR/CSS2/box.html" title="W3c Box Model explanation page">box-model</a></strong> exists.</p>
<h3>Resources:</h3>
<ul>
<li><a href="http://www.quirksmode.org/css/clearing.html" title="Quirksmode easy clearing method">Quirksmode easy clearing method</a></li>
<li><a href="http://www.w3.org/TR/CSS2/box.html" title="W3c Box Model explanation page">box-model</a></li>
<li><a href="http://www.w3.org/TR/CSS2/visuren.html#floats" title="W3c Floats Explanation page">W3c Floats</a></li>
<li><a href="http://www.w3.org/TR/CSS2/visuren.html#block-boxes" title="W3c Block-level Explanation page">W3c Block-level elements</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://obertfsp.com/wordpress/2009/08/06/css-two-or-more-elements-positioned-in-the-same-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Opera beta 1</title>
		<link>http://obertfsp.com/wordpress/2009/06/04/opera-beta-1/</link>
		<comments>http://obertfsp.com/wordpress/2009/06/04/opera-beta-1/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 00:01:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[WebDev]]></category>
		<category><![CDATA[articoli]]></category>
		<category><![CDATA[obertfsp]]></category>

		<guid isPermaLink="false">http://obertfsp.com/wordpress/?p=326</guid>
		<description><![CDATA[Opera new beta 1!]]></description>
			<content:encoded><![CDATA[<h3>Prologo</h3>
<p>Il 3 giugno 2009 è stata rilasciata una nuova beta per il browser norvegese,purtroppo o per fortuna,poco usato,causa sua poca promozione,al contrario di come avviene per <a href="http://www.mozilla-europe.org/it/firefox/" title="Mozilla Firefox open source browser">firefox</a></p>
<h3>Novità</h3>
<p>Con un nuovo tema veramente d&#8217;impatto visivo,la prima modifica che salta agli occhi, è la personalizzazione della <strong>Speed Dial</strong>,la pagina con l&#8217;elenco dei siti preferiti,che appare se apriamo una nuova scheda,può essere scelta anche un&#8217;immagine come sfondo,il numero di siti mostrati e naturalmente l&#8217;opzione per nascondere del tutto tale pagina.</p>
<h3>Conclusioni (di già?!)</h3>
<p>Dato che sono un fannullone,vi invito a testare con le vostre mani questa nuova beta,rimandandovi direttamente alla <a href="http://my.opera.com/desktopteam/blog/2009/06/03/welcome-to-opera-10-beta-1" title="Opera New beta 1 from Desktop Team blog">pagina in questione</a>, del <a href="http://my.opera.com/desktopteam/blog/" title="Opera Desktop Team blog">blog</a> di <a href="http://www.opera.com/" title="Opera browser homepage">Opera</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://obertfsp.com/wordpress/2009/06/04/opera-beta-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Boo!</title>
		<link>http://obertfsp.com/wordpress/2009/01/29/boo-eeeeek-org/</link>
		<comments>http://obertfsp.com/wordpress/2009/01/29/boo-eeeeek-org/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 22:53:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WebDev]]></category>
		<category><![CDATA[articoli]]></category>
		<category><![CDATA[obertfsp]]></category>
		<category><![CDATA[giochi]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://obertfsp.com/wordpress/?p=164</guid>
		<description><![CDATA[<p>If I say <strong>boo!</strong> you say <a href="http://eeeeek.org/" title="Eeeek" class="url"> eeeeek!</a></p>]]></description>
			<content:encoded><![CDATA[<h4>Introduzione</h4>
<p>Ho creato questo fumetto dopo che qualcuno mi aveva segnalato il sito <a href="http://eeeeek.org" title="eeeeek.org">eeeeek.org</a>, che in inglese, è un esclamazione di spavento.</p>
<h4>Note di Sviluppo</h4>
<p>Le uniche due immagini utilizzate sono quelle che ritraggono gli occhi, il resto del fumetto è costruito utilizzando un <abbr title="Unordered List">&lt;ul&gt;</abbr>, un &lt;img&gt;, uno &lt;span&gt; ed servendosi dei <abbr title="Cascading Style Sheets">CSS</abbr> per posizionare tutti gli elementi <abbr title="Hyper Text Markup Language">HTML</abbr></p>
<h4>- Boo! &#8211; Eek! <span class="descrizione">un fumetto in CSS</span></h4>
<ul class="eek">
<li><span>.. (silenzio)</span></li>
<li>
<img alt="vignetta del fumetto ritraente il momento del grido di spavento Boo" src="http://obertfsp.com/wordpress/wp-content/uploads/boo.png" title="vignetta del fumetto ritraente il momento del grido di spavento Boo" width="216" height="54" /><br />
<span>Boo!</span>
</li>
<li>
<img alt="vignetta del fumetto ritraente il momento del grido di spavento Eek" src="http://obertfsp.com/wordpress/wp-content/uploads/eek.png" title="vignetta del fumetto ritraente il momento del grido di spavento Eek" width="252" height="72" /><br />
<span class="eeeeek"><a href="http://eeeeek.org/" title="Eeeeek-org collegamento esterno"> eeeeek!</a></span>
</li>
<li><span>fine</span></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://obertfsp.com/wordpress/2009/01/29/boo-eeeeek-org/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Obert FSP Obond Street Mix nov 2008</title>
		<link>http://obertfsp.com/wordpress/2009/01/20/obert-fsp-obond-street-mix-nov-2008/</link>
		<comments>http://obertfsp.com/wordpress/2009/01/20/obert-fsp-obond-street-mix-nov-2008/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 13:58:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[obertfsp]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[reggae]]></category>

		<guid isPermaLink="false">http://OBERTFSP.COM/wordpress/?p=39</guid>
		<description><![CDATA[Tracking list: Obond Street Mix by Obert Selector outta Free Soul Posse (Italy) Nov 2008]]></description>
			<content:encoded><![CDATA[<h3>Obond Street Mix tracking list:</h3>
<p>Listen it on <strong>Controradio</strong> <a href="http://controradiolive.info/Sito/Redazione_Musicale/Voci/2009/1/13_BONGOMAN_2008_-_2009.html" title="Listen Obond Street Mix on Bongoman on Controradio">10-02-2009 <strong>part 3</strong></a></p>
<pre>
Obert Selector
Free Soul Posse (Italy)
Nov 2008
Obond Street Mix

1.Intro Luciano.
  Bitty McLean - Tribute to Winston Wright.
2.Lady Lex - I am in the mood for love.
3.Kelly Makeda - Easy.
4.Lady Lex - Breaking up.
5.Alton Ellis - Breaking up.
6.Bitty McLean - Walking away from love.
-Tony Curtis - Heaven only knows.
-Lady Hype - Love you so.
-Frankie Paul - Love somebody.
-Sandy Smith - Make it with you.
7.Alton Ellis - Get ready to rocksteady.
8.Peter Hunningale - Take a little longer.
9.Kelly Makeda - Shake it off.
10.Janet Lee Davis - I dont Wanna Know.
11.Natijah - Cant get away.
12.Mikey Spice - Happy hour.
-Vivian Jones - Young girl.
-Leroy Mafia - There comes a time.
-Frankie Paul - You are my queen.
-Gyptian - When you love someone.
-Luckie D - True love.
-Danny Red - Look out.
-Luciano - Give thanks and praise.
-Richie Davis - Dont touch the crack.
-John Mouse - in New York.
-Ginjah - Difference in my life.
-Anthony B - What A Feeling.
-Lutan Fyah - Bring Back The Love.
-Chezidek - What I Deserve.
13.Bitty McLean - Baby Tonight.
14.Bitty McLean - Never let me go.
15.Bitty McLean - Make it with you.
16.Bitty McLean - sir Peckings special.
-Bitty McLean - Tell me.
17.Dean Frazer - King Majesty.
18.Dean Frazer - Tribute to Jackie Mittoo.
19.Bitty McLean - I have got love.
20.Bitty McLean - Inez.
21.Delroy Wilson - Run run.
22.Bitty McLean - Over the river.
23.Bitty McLean - It keeps raining.
24.Justin Hinds and the Dominoes - Here I stand.
-Bitty McLean - Here I stand.
25.Unknown.
26.Richards Brothers - I Shall Wear A Crown.
27.Bitty McLean - I am in love.
28.Bitty McLean - Only you.
29.Dennis Brown - Money in my pocket.
30.Bitty McLean - Indian love call.
31.Jackie Mittoo - In cold blood.
32.Bitty McLean - Free soul.
33.Unknown.
34.Unknown - Curly locks version.
35.Bob Marley - How many times.
36.Eric Donaldson - Cherry oh baby.
37.Eric Donaldson - More love.
38.Ray Darwin - People choices.
39.Bitty McLean - Fully loaded.
</pre>
<ul>
<li><a href="http://www.obertfsp.com/wordpress/wp-content/uploads/obondStreetMix/Obert_OBondStreetMix_front.jpg" title="Obert OBond Street Mix front cover large"><img src="http://www.obertfsp.com/wordpress/wp-content/uploads/obondStreetMix/Obert_OBondStreetMix_front_thumb.jpg" alt="Obert OBond Street Mix front cover thumb"></a></li>
<li><a href="http://www.obertfsp.com/wordpress/wp-content/uploads/obondStreetMix/Obert_OBondStreetMix_back.jpg" title="Obert OBond Street Mix back cover large"><img src="http://www.obertfsp.com/wordpress/wp-content/uploads/obondStreetMix/Obert_OBondStreetMix_back_thumb.jpg" alt="Obert OBond Street Mix back cover thumb"></a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://obertfsp.com/wordpress/2009/01/20/obert-fsp-obond-street-mix-nov-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Image Replacement Two Methods</title>
		<link>http://obertfsp.com/wordpress/2009/01/15/css-image-replacement-2methods/</link>
		<comments>http://obertfsp.com/wordpress/2009/01/15/css-image-replacement-2methods/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 16:38:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[WebDev]]></category>
		<category><![CDATA[articoli]]></category>
		<category><![CDATA[obertfsp]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://OBERTFSP.COM/wordpress/2009/01/15/css-image-replacement-methods/</guid>
		<description><![CDATA[CSS Image Replacement: two links to learn how to apply this method in a webpage.]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://faq.css-standards.org/Image_Replacement" title="Phark Method at CSS Standards">http://faq.css-standards.org/Image_Replacement</a></li>
<li><a href="http://www.mezzoblue.com/tests/revised-image-replacement/" title="Image Replacement on Shea blog">http://www.mezzoblue.com/tests/revised-image-replacement/</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://obertfsp.com/wordpress/2009/01/15/css-image-replacement-2methods/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
