<?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/"
	>

<channel>
	<title>mariolatronico.org</title>
	<atom:link href="http://mariolatronico.org/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://mariolatronico.org/blog</link>
	<description>My personal blog</description>
	<pubDate>Tue, 22 Sep 2009 13:46:30 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Maven deploy file to a repository</title>
		<link>http://mariolatronico.org/blog/?p=9</link>
		<comments>http://mariolatronico.org/blog/?p=9#comments</comments>
		<pubDate>Tue, 22 Sep 2009 13:46:30 +0000</pubDate>
		<dc:creator>mariolat</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[deploy]]></category>

		<category><![CDATA[maven]]></category>

		<guid isPermaLink="false">http://mariolatronico.org/blog/?p=9</guid>
		<description><![CDATA[How to deploy third party artifact to a maven repository :
mvn deploy:deploy-file -DgroupId=myGroupId -DartifactId=myArtifactId -Dversion=2.6.5 -Dfile=filename.jar -Dpackaging=jar -Durl=http://mymavenrepo/
For example, to deploy the eclipse eswt to a repository :
mvn deploy:deploy-file -DgroupId=org.eclipse.eswt -DartifactId=eswt-converged
-win32 -Dversion=1.3.0 -Dfile=eswt-converged.jar -Dpackaging=jar -Durl=http://www.myurl.org/nexus/content/repositories/thirdparty -DrepositoryId=thirdparty
In case of deploying of sources or javadoc use -Dclassifier=javadoc or -Dclassifier=sources
]]></description>
			<content:encoded><![CDATA[<p>How to deploy third party artifact to a maven repository :</p>
<p>mvn deploy:deploy-file -DgroupId=myGroupId -DartifactId=myArtifactId -Dversion=2.6.5 -Dfile=filename.jar -Dpackaging=jar -Durl=http://mymavenrepo/</p>
<p>For example, to deploy the eclipse eswt to a repository :<br />
mvn deploy:deploy-file -DgroupId=org.eclipse.eswt -DartifactId=eswt-converged<br />
-win32 -Dversion=1.3.0 -Dfile=eswt-converged.jar -Dpackaging=jar -Durl=http://www.myurl.org/nexus/content/repositories/thirdparty -DrepositoryId=thirdparty</p>
<p>In case of deploying of sources or javadoc use -Dclassifier=javadoc or -Dclassifier=sources</p>
]]></content:encoded>
			<wfw:commentRss>http://mariolatronico.org/blog/?feed=rss2&amp;p=9</wfw:commentRss>
		</item>
		<item>
		<title>Dynamically change CSS on body tag with dojo</title>
		<link>http://mariolatronico.org/blog/?p=6</link>
		<comments>http://mariolatronico.org/blog/?p=6#comments</comments>
		<pubDate>Tue, 24 Mar 2009 17:01:07 +0000</pubDate>
		<dc:creator>mariolat</dc:creator>
		
		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[css]]></category>

		<category><![CDATA[dojo]]></category>

		<category><![CDATA[dynamic css]]></category>

		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://mariolatronico.org/blog/?p=6</guid>
		<description><![CDATA[I searched on the net a quick and dirty way to change the CSS applied to the body tag and I eventually wrote a piace of code cutting and pasting from various sources on the net:

var cssRef = document.createElement("link");
cssRef.href = "mycss.css"
cssRef.rel = 'stylesheet';
cssRef.type = 'text/css';
dojo.query('head')[0].appendChild(cssRef);
dojo.body().setAttribute(&#8221;class&#8221;,value);

]]></description>
			<content:encoded><![CDATA[<p>I searched on the net a quick and dirty way to change the CSS applied to the body tag and I eventually wrote a piace of code cutting and pasting from various sources on the net:</p>
<p><code><br />
var cssRef = document.createElement("link");<br />
cssRef.href = "mycss.css"<br />
cssRef.rel = 'stylesheet';<br />
cssRef.type = 'text/css';<br />
dojo.query('head')[0].appendChild(cssRef);<br />
dojo.body().setAttribute(&#8221;class&#8221;,value);<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://mariolatronico.org/blog/?feed=rss2&amp;p=6</wfw:commentRss>
		</item>
	</channel>
</rss>
