<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<feed xmlns="http://www.w3.org/2005/Atom">

	<title>Planet Jabber</title>
	<!--<link rel="self" type="text/atom" href=""/>-->
	<link rel="alternate" type="text/html" href="http://planet.jabber.org/"/>
	<id></id>
	<updated>2012-02-04T05:39:04+00:00</updated>
	<generator uri="http://www.planetplanet.org/">http://intertwingly.net/code/venus/</generator>

	<entry>
		<title>Jérôme Poisson: Collective radio (with video)</title>
		<link rel="alternate" type="text/html" href="http://www.goffi.org/post/2012/02/02/Collective-radio-%28with-video%29"/>
		<id>urn:md5:8f80b834488ec2be6bf448edca839a61</id>
		<updated>2012-02-02T00:03:49+00:00</updated>
		<content type="html">G'day everybody&lt;br /&gt;&lt;br /&gt;&lt;p&gt;after the &lt;a href=&quot;http://www.goffi.org/post/2011/10/07/Shell%3A-pipe-you-commands-out-via-XMPP-with-S%C3%A0T&quot; hreflang=&quot;en&quot;&gt;shell pipe over XMPP&lt;/a&gt;, here is a new feature in &quot;Salut à Toi&quot;: collective radio.&lt;/p&gt;
&lt;p&gt;The idea is: you are in a chat room with a common playlist, and everybody can add a song to the playlist. The song is played simultaneously for everybody, making it a collective radio experiment.&lt;/p&gt;
&lt;p&gt;So far, there are maximum 2 songs in queue, as soon as one song is played, anybody can add a new one. In the future, we can imagine a more sophisticated system to choose who can add a song in queue (e.g. each one in turn, with a vote if songs played are appreciated, or with a game: the one who can answer a quiz question can choose next song).&lt;/p&gt;
&lt;p&gt;Maybe in the future we'll see thematic rooms: jazz, rock, experimental, discovery, song with nice lyrics, etc. Or maybe we'll spend some evenings with friends, each one adding nice songs after the other, or playing blind test. We can also imagine party were everybody can participate to the playlist.&lt;br /&gt;If in addition you use it on your phone: you are your own radio disc jockey :)&lt;/p&gt;
&lt;p&gt;Following is a video showing the current implementation of the proof of concept, it's in french but quite easy to understand.&lt;/p&gt;
&lt;p&gt;For the record: I'll be in Brussels next weekend for the &lt;a href=&quot;http://fosdem.org&quot;&gt;FOSDEM&lt;/a&gt;, where I'll make a demo of the project at the XSF stand; don't hesitate to come to have a chat :). In addition I'll have a short talk in the devroom on saturday evening (18:00), &lt;a href=&quot;http://fosdem.org/2012/schedule/event/xmpp_salut&quot;&gt;you can have more information by clicking on this link&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;To play the video, you nead a recent browser  (e.g. Firefox 4+ or the last Chromium).&lt;br /&gt;You can also use &lt;a href=&quot;http://www.videolan.org/vlc/&quot; title=&quot;VLC&quot;&gt;VLC&lt;/a&gt; (&amp;gt;=1.1 only), by using this url as a flux: &lt;strong&gt;http://www.goffi.org/videos/pr%c3%a9sentation_S%c3%a0T_5_radio_collective.webm&lt;/strong&gt; &lt;/p&gt;
&lt;p&gt;Last but not least, you can use &lt;a href=&quot;http://www.mplayerhq.hu/&quot;&gt;mplayer&lt;/a&gt;: &lt;em&gt;mplayer &quot;http://www.goffi.org/videos/pr%c3%a9sentation_S%c3%a0T_5_radio_collective.webm&quot;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;This video is licensed under &lt;a href=&quot;http://creativecommons.org/licenses/by-sa/2.0/fr/&quot;&gt;Creative Common BY-SA&lt;/a&gt;&lt;/p&gt;
&lt;video height=&quot;400&quot; src=&quot;http://www.goffi.org/videos/pr%c3%a9sentation_S%c3%a0T_5_radio_collective.webm&quot; tabindex=&quot;0&quot; controls=&quot;controls&quot; width=&quot;640&quot;&gt;
Your browser doesn't manage the « video » tag, you should update, e.g. with the last &lt;a href=&quot;http://www.mozilla-europe.org/fr/&quot;&gt;Firefox&lt;/a&gt;
&lt;/video&gt;</content>
		<author>
			<name>Goffi</name>
			<uri>http://www.goffi.org/</uri>
		</author>
	</entry>

	<entry>
		<title>Alexander Gnauck: BOSH prebind in MatriX and attach to Strophe</title>
		<link rel="alternate" type="text/html" href="http://www.ag-software.de/2012/01/31/bosh-prebind-in-matrix-and-attach-to-strophe/"/>
		<id>http://www.ag-software.de/?p=1271</id>
		<updated>2012-01-31T15:09:12+00:00</updated>
		<content type="html">&lt;h3&gt;Why prebind and attach?&lt;/h3&gt;
&lt;p&gt;When your web application is already logged in and needs to establish a XMPP connection you have a seamless and secure solution with &lt;strong&gt;prebind&lt;/strong&gt; and &lt;strong&gt;attach&lt;/strong&gt;. You don’t have to ask the user to provide the credentials again, and you don’t have to render the credentials insecure in your HTML output.&lt;/p&gt;

&lt;h3&gt;Prebind with MatriX&lt;/h3&gt;
&lt;p&gt;This code shows how to prebind a session with MatriX. On success MatriX raises the OnPrebind event and provides the &lt;strong&gt;Jid&lt;/strong&gt;, &lt;strong&gt;Rid&lt;/strong&gt; and &lt;strong&gt;Sid&lt;/strong&gt; in the PrebindEventArgs. The Rid is the last one used by MatriX and must be incremented before getting passed to &lt;a href=&quot;http://strophe.im/strophejs/&quot; target=&quot;_blank&quot; title=&quot;Strophe.js&quot;&gt;Strophe&lt;/a&gt;.&lt;br /&gt;
You can render this params in a new page and attach the session with &lt;a href=&quot;http://strophe.im/strophejs/&quot; target=&quot;_blank&quot; title=&quot;Strophe.js&quot;&gt;Strophe&lt;/a&gt;.&lt;/p&gt;

&lt;pre class=&quot;brush: csharp;&quot;&gt;var xmppClient = new XmppClient
{
	Username = &quot;testuser&quot;,
	XmppDomain = &quot;ag-software.de&quot;,
	Password = &quot;secret&quot;,
	Transport = Matrix.Net.Transport.BOSH,
	Uri = new System.Uri(&quot;http://ag-software.de/http-bind/&quot;)
};

// subscribe to the prebind event
xmppClient.OnPrebind += client_OnPrebind;

void client_OnPrebind(object sender, PrebindEventArgs e)
{
	prebindArgs = e;
	are.Set();
}
// start prebinding with MatriX now
xmppClient.Prebind();
&lt;/pre&gt;

&lt;p&gt;You can download a complete ASP .NET example project here:&lt;br /&gt;
&lt;a href=&quot;http://www.ag-software.de/wp-content/uploads/2012/01/BoshPrebindAndAttachWithStrophExample.zip&quot; class=&quot;download&quot;&gt;Bosh Prebind Example&lt;/a&gt;
&lt;/p&gt;</content>
		<author>
			<name>gnauck</name>
			<uri>http://www.ag-software.de</uri>
		</author>
	</entry>

	<entry>
		<title>Jappix news: Jappix Mobile website</title>
		<link rel="alternate" type="text/html" href="http://codingteam.net/project/jappix/news/show/521-jappix_mobile_website"/>
		<id>http://codingteam.net/project/jappix/news/show/521-jappix_mobile_website</id>
		<updated>2012-01-31T09:17:20+00:00</updated>
		<content type="html">Yay!&lt;br /&gt;
&lt;br /&gt;
Today we are opening &lt;a href=&quot;http://jappix.mobi/&quot;&gt;our fresh new Jappix Mobile (jappix.mobi) website&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
It is dedicated to the future Jappix Mobile smartphone app. For the moment, it suggests the user some good alternatives to our future app (Beem on Android for instance).&lt;br /&gt;
&lt;br /&gt;
Jappix Mobile will first be an Android app. It will feature instant messaging (both private and groupchat), social channel (instant sharing is a strong need on mobile phones) with picture attaching capabilities, and video/audio chatting. Our aim is to replace the whole old phone features which are SMS, MMS and calls. Our vision is that everything should pass through the Internet.&lt;br /&gt;
&lt;br /&gt;
That's why we are looking for great and talented Android developers, who would like to contribute to a new Jappix open-source project! If you are interested, &lt;a href=&quot;https://project.jappix.com/contact&quot;&gt;contact us on this page&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://codingteam.net/users/show/Vanaryon&quot;&gt;Vanaryon&lt;/a&gt;, Jappix founder.</content>
		<author>
			<name>Vanaryon</name>
			<uri></uri>
		</author>
	</entry>

	<entry>
		<title>Jack Moffitt: The Numbers Behind the Twitter Data Silo</title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/metajack/~3/cAqUYaY36M8/"/>
		<id>tag:metajack.im:/2012/01/30/the-numbers-behind-the-twitter-data-silo/</id>
		<updated>2012-01-30T20:47:00+00:00</updated>
		<content type="html">&lt;p&gt;The
&lt;a href=&quot;http://metajack.im/2012/01/12/the-potentially-dark-future-of-search/&quot;&gt;dark future of search&lt;/a&gt;
is being foreshadowed by this Twitter vs. Google fight. The latest
Twitter volley at Google is this quote (seen on
&lt;a href=&quot;http://gigaom.com/2012/01/30/costolo-twitter-google/&quot;&gt;GigaOm&lt;/a&gt;) from
Twitter CEO Dick Costolo:&lt;/p&gt;

&lt;blockquote&gt;
    &lt;p&gt;&quot;Google crawls us at a rate of 1300 hits per second... They've indexed
    3 billion of our pages,&quot; Costolo said. &quot;They have all the data they
    need.&quot;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;There's no doubt that 1,300 hits per second is a large number, but
let's put that in perspective:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;In
&lt;a href=&quot;http://mashable.com/2010/02/22/twitter-50-million-tweets/&quot;&gt;February 2010&lt;/a&gt;,
Twitter was at 50 million tweets per day. This is just under 600
tweets per second.&lt;/li&gt;
&lt;li&gt;In &lt;a href=&quot;http://blog.twitter.com/2011/06/200-million-tweets-per-day.html&quot;&gt;June 2011&lt;/a&gt;, Twitter was at 200 million tweets per day. This is
over 2,300 per second.&lt;/li&gt;
&lt;li&gt;In &lt;a href=&quot;http://techcrunch.com/2011/10/17/twitter-is-at-250-million-tweets-per-day/&quot;&gt;October 2011&lt;/a&gt;, Twitter hit 250 million tweets per day or just
under 3,000 per second.  &lt;/li&gt;
&lt;li&gt;They have &lt;a href=&quot;http://blog.twitter.com/2011/12/yearinreview-tweets-per-second.html&quot;&gt;spikes&lt;/a&gt; of over 7,000 tweets per second, with the
&lt;a href=&quot;https://twitter.com/#!/twittercomms/status/146751974904311808&quot;&gt;largest&lt;/a&gt; (so far) being just over 25,000 tweets per second.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For part of 2010, Google was perhaps able to keep up with the stream
at 1,300 requests per second. Somewhere between February and June, the
average volume of tweets outpaced them.&lt;/p&gt;

&lt;p&gt;Let's assume that they kept pace until June 2011, and that on June 1,
Twitter went from somewhere in the range of 1,300 tweets per second to
their reported 2,300 tweets per second. Google is 1,000 tweets behind
per second.&lt;/p&gt;

&lt;p&gt;By the end of the year, Google missed 15.5 billion tweets. They are
two months behind if they didn't skip any, and the tweet volume did
not increase. But it did increase by 25% or so by October, and surely
it has grown more since then.&lt;/p&gt;

&lt;p&gt;If Google has only indexed 3 billion pages so far, they have
approximately 12 days of tweets at current volume. It's pretty hard to
rationalize the 3 billion pages number against the 1,300 per second
number. Was Google indexing at a much slower rate before? Did they not
start until a few months ago?&lt;/p&gt;

&lt;p&gt;Of course Google may be getting multiple tweets per request, perhaps
by crawling the timelines of important users. But this means that they
probably get a lot of requests that don't give them any new tweets, or
else the timeliness of the data is poor.&lt;/p&gt;

&lt;p&gt;No matter how you slice it, it appears Google would be unable to keep
up. Even if they were keeping up now, Twitter's growth probably sets a
time limit for which keeping up remains possible.&lt;/p&gt;

&lt;p&gt;Perhaps Google is super clever, and can index only the right
tweets. I think that it's more probable they have &quot;enough&quot; data to
surface results for the super popular topics, and miss nearly
everything in the long tail of the distribution. I expect that this
adversely affects search quality, which one suspects is a high
priority for the world's best search engine.&lt;/p&gt;

&lt;p&gt;Google is no saint. They are just as guilty of the same data
hoarding. If you ran these numbers for YouTube indexing, I think you
will find the situation is much worse. I imagine that most of these
data silo companies purposefully set their crawl rates too low for
anyone to achieve high quality search results.&lt;/p&gt;

&lt;p&gt;In the case of Twitter, the end result for users is even worse because
Twitter's own attempts at search are terrible and are getting worse
over time. At least Google makes a decent YouTube search, even if no
one else can.&lt;/p&gt;

&lt;p&gt;Even if Google could get all the tweets, they still would have very
little to no Facebook data. I still think the best strategy in this
situation for them is to create their own social data and use that
instead. It's a tough road, but they seem to have little choice.&lt;/p&gt;

&lt;p&gt;In the end, it's not about Google or Twitter or Facebook, but the
stifling of innovation and competition around data. We can only hope
that some federated solution or some data-liberal company wins out in
the end.&lt;/p&gt;
    &lt;img src=&quot;http://feeds.feedburner.com/~r/metajack/~4/cAqUYaY36M8&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</content>
		<author>
			<name>Jack Moffitt (jack@metajack.im)</name>
			<uri>http://metajack.im/</uri>
		</author>
	</entry>

	<entry>
		<title>Tigase Blog: Tigase XMPP Server 5.1.0 Beta4</title>
		<link rel="alternate" type="text/html" href="http://www.tigase.org/content/tigase-xmpp-server-510-beta4"/>
		<id>http://www.tigase.org/3078 at http://www.tigase.org</id>
		<updated>2012-01-26T03:57:32+00:00</updated>
		<content type="html">&lt;p&gt;The final 5.1.0 for the Tigase XMPP Server is around the corner. While we are running the last tests you can &lt;a href=&quot;https://projects.tigase.org/projects/tigase-server/files?sort=filename%3Adesc&quot;&gt;grab Beta4 build&lt;/a&gt; which is most likely the same exact code we will publish as the final new version.....&lt;/p&gt;
&lt;p&gt;Please note, the download section has been moved to our &lt;a href=&quot;https://projects.tigase.org/&quot;&gt;project tracking system&lt;/a&gt; which hosts all our projects and is based on &lt;a href=&quot;http://www.redmine.org/&quot;&gt;Redmine&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;As usually any comments are very welcomed.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.tigase.org/content/tigase-xmpp-server-510-beta4&quot; target=&quot;_blank&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>kobit</name>
			<uri>http://www.tigase.org</uri>
		</author>
	</entry>

	<entry>
		<title>Peter Saint-Andre: Relaunching xmpp.net as a Server Directory</title>
		<link rel="alternate" type="text/html" href="http://stpeter.im/journal/1447.html"/>
		<id>tag:stpeter.im,1447</id>
		<updated>2012-01-24T00:00:00+00:00</updated>
		<content type="html">This evening I coverted the information from the xmpp.org web page at http://xmpp.org/resources/public-services/ into a format that will enable us to use XEP-0309 when server software starts to support that protocol. Instead of using WordPress tables at xmpp.org, I now store information about each server in a vCard4 XML file, which is converted into an old-style services.xml file (disco#info format) and into an index.html file using shell scripts and XSLT. You can see the results at http://xmpp.net/.</content>
		<author>
			<name>Peter Saint-Andre</name>
			<uri>http://stpeter.im/journal/</uri>
		</author>
	</entry>

	<entry>
		<title>Jack Moffitt: The More Things Change: A Review of The Soul of a New Machine</title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/metajack/~3/qRmZ4RpWwTg/"/>
		<id>tag:metajack.im:/2012/01/20/the-more-things-change/</id>
		<updated>2012-01-20T10:20:00+00:00</updated>
		<content type="html">&lt;p&gt;Already in my career I've experienced enormous passion, burnout,
extraordinary dedication to my team and projects, and depression. I'm
sure many others have as well. Has it always been this way with
technology? I often wonder if this rollercoaster is necessary,
healthy, or normal.&lt;/p&gt;

&lt;p&gt;I recently saw a recommendation for &lt;a href=&quot;http://www.amazon.com/Soul-New-Machine-Tracy-Kidder/dp/0316491977/?tag=metajack-20&quot;&gt;Soul of a New Machine&lt;/a&gt;,
which tells the story of a team of engineers at &lt;a href=&quot;http://en.wikipedia.org/wiki/Data_General&quot;&gt;Data General&lt;/a&gt;
who built a new 32-bit computer in the late 1970s. The book is
fascinating. Thirty year later, many of its descriptions of the
project and the way the team worked and was treated could apply to any
modern project.&lt;/p&gt;

&lt;p&gt;The plot summary will no doubt sound familiar to you: A team of mostly
young, mostly male engineers works grueling hours to build something
amazing in too short an amount of time. They succeed, albeit a bit
over their original schedule. Despite the project's commercial
success, the team is denied both recognition and financial rewards and
many end up leaving the company. Almost all of them ultimately enjoyed
it and would (and did) do it again.&lt;/p&gt;

&lt;p&gt;There were many pieces of this story that resonated with me.&lt;/p&gt;&lt;h2&gt;Work is a Drug&lt;/h2&gt;

&lt;p&gt;On overworking &lt;a href=&quot;http://en.wikipedia.org/wiki/Tom_West&quot;&gt;Tom West&lt;/a&gt;, the manager of the team in the book,
says:&lt;/p&gt;

&lt;blockquote&gt;
    &lt;p&gt;That's the bear trap, the greatest vice. Your job. You can justify
    just about any behavior with it. Maybe that's why you do it, so you
    don't have to deal with all those other problems.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Why deal with the unpredictable world, when the controllable world of
creation is available? It's code as escapist drug, and I love to get
high on it. Mundane things like cleaning my house, and more
serious ones like taking care of my health, are all easy to avoid
while fixing bugs or starting a new project.&lt;/p&gt;

&lt;p&gt;It's both possible and important to find a balance.&lt;/p&gt;

&lt;p&gt;The team's secretary, who was much more than her title suggests,
suffered and succeeded with the rest of the team. Even she says:&lt;/p&gt;

&lt;blockquote&gt;
    &lt;p&gt;I would do it again. I would be very grateful to do it again. I
    think I would take a cut in pay to do it again.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Even as I recover from projects that burned me out, I am constantly
thinking about how to do new ones. In fact, while I'm doing any
project, I'm already thinking about doing another. This sounds like
drugs again. But they are good drugs.&lt;/p&gt;

&lt;h2&gt;Harassment and Treatment of Women&lt;/h2&gt;

&lt;p&gt;The book describes how some team members tormented the lone female
engineer. This is something that still happens today, and it's
terrible. And people then wonder why there are so few women in our
industry.&lt;/p&gt;

&lt;p&gt;In addition to that, at the end when they hand out the peer awards,
their award to the woman was for putting up with them, not for any of
her actual accomplishments.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://societyofwomenengineers.swe.org/index.php?option=com_content&amp;amp;task=view&amp;amp;id=88&amp;amp;Itemid=78&quot;&gt;Betty Shanahan&lt;/a&gt;
was that lone woman, and it looks to me that she deserved more than
just an award for thick skin. She's the CEO of the Society of Women
Engineers, and she was &quot;a member of the design team for the first
parallel processing minicomputer and manager of hardware design for
subsequent systems.&quot;  She later moved to the business side of
technology, and I wonder if that had anything to do with her having to
put up with the Eagle team's harassment.&lt;/p&gt;

&lt;h2&gt;How Something is Done is Important Too&lt;/h2&gt;

&lt;p&gt;Often we judge things by their properties, but one can also rightly
judge something by how it is made. Shoes made from child labor are
less good than those made in other ways.&lt;/p&gt;

&lt;p&gt;Kidder, the book's author, discusses this:&lt;/p&gt;

&lt;blockquote&gt;
    &lt;p&gt;In &lt;em&gt;The Nature of the Gothic&lt;/em&gt; John Ruskin decries the tendency of
    the industrial age to fragment work into tasks so trivial that they
    are fit to be performed ony by the equivalent of slave
    labor. Writing in the nineteeth century, Ruskin was one of the
    first, with Marx, to have raised this now-familiar complaint. In the
    Gothic cathedrals of Europe, Ruskin believed, you can see the
    glorious fruits of free labor given freely. What is usually meant by
    the term craftsmanship is the production of things of high quality;
    Ruskin makes the crucial point that a thing may also be judged
    according to the conditions under which it was built.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;By this kind of measure, is the work many teams do good? Is the Eagle
computer that Tom West's team built really a success since the team
worked much overtime, suffered divorces and other problems, and in the
end received little to no reward? &lt;/p&gt;

&lt;p&gt;I think it's time for entrepreneurs and workers in our industry to
demand better. Our outputs will be better if they are made
sustainably, and not just by the measure above. In retrospect, maybe
the reviewers of &lt;a href=&quot;https://en.wikipedia.org/wiki/L.A._Noire&quot;&gt;LA Noire&lt;/a&gt; should have taken into the account
the &lt;a href=&quot;https://en.wikipedia.org/wiki/L.A._Noire#Staff_complaints&quot;&gt;trials&lt;/a&gt; of its developers; it certainly would not have
fared well.&lt;/p&gt;

&lt;h2&gt;Freedom of Expression&lt;/h2&gt;

&lt;p&gt;I want to hire &lt;a href=&quot;http://paulgraham.com/word.html&quot;&gt;resourceful&lt;/a&gt; people. I want to describe a
general outline of a design and not have to describe it in intricate
detail in order for them to build it.&lt;/p&gt;

&lt;p&gt;It turns out that this is critical for happiness. If we're told
exactly how to do something, it takes much of the creativity and fun
out of the work.&lt;/p&gt;

&lt;blockquote&gt;
    &lt;p&gt;Engineers are supposed to stand among the privileged members of
    industrial enterprises, but several studies suggest that a fairly
    large percentage of engineers in America are not content with their
    jobs. Among the reasons cited are the nature of the jobs themselves
    and the restrictive way sin which they are managed. Among the terms
    used to describe their malaise are *declining technical challenge;
    misutilization; limited freedom of action; tight control of working
    conditions*.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;You must trust those you work with to be resourceful. If you don't
trust them, you will end up micromanaging them into unhappiness, and
you will also remove their valuable creative input from your product.&lt;/p&gt;

&lt;p&gt;There is a balance to be struck with feedback. The Eagle engineers
thought that the managers didn't appreciate their efforts, but in
reality, some of this was them trying to stay out of the way. Kidder
asked the Tom West's boss:&lt;/p&gt;

&lt;blockquote&gt;
    &lt;p&gt;Had the Eagle project always interested him or had it grown in
    importance gradually?&lt;/p&gt;
    
    &lt;p&gt;&quot;From the start it was a very important project.&quot;&lt;/p&gt;
    
    &lt;p&gt;Was he pleased with the work of the Eclipse group?&lt;/p&gt;
    
    &lt;p&gt;&quot;Absolutely!&quot; His voice falls. &quot;They did a hell of a job.&quot;&lt;/p&gt;
    
    &lt;p&gt;But some members of the team felt that they had been rather
    neglected by the company.&lt;/p&gt;
    
    &lt;p&gt;&quot;That doesn't surprise me,&quot; he says. &quot;That's frequently the
    case. There's often a conflict in people's minds. How much direction
    do they want?&quot;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I've had this same issue with investors as well. You don't want them
to meddle with your company or your product, but you also want their
advice and guidance. It's possible to go too far in either direction,
but mostly you hear about stories where investors meddle too much. I
personally think it's probably better to err on the side of too little
help than to end up with too much meddling.&lt;/p&gt;

&lt;h2&gt;The Venture Capitalists&lt;/h2&gt;

&lt;p&gt;Even thirty years ago, the VCs had a bad rap. Tom West was asked in a
&lt;a href=&quot;http://www.wired.com/wired/archive/8.12/soul.html&quot;&gt;Wired article&lt;/a&gt; years after the book's publishing why he stayed
at Data General until he retired:&lt;/p&gt;

&lt;blockquote&gt;
    &lt;p&gt;&quot;You could do new products and companies within the company, rather
    than shag some venture capitalist and kill yourself for five years.&quot;
    To be an entrepreneur, he says, &quot;you have to be interested in
    networking, even with fools.&quot;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This is another reason why I would prefer to bootstrap companies if at
all possible.&lt;/p&gt;

&lt;p&gt;Tom West ended up working on many interesting projects at Data
General, but ultimately, none of them got the support or recognition
they deserved. The other members of the Eagle team spread out and
started or worked for new companies, and in general seemed much
happier.&lt;/p&gt;

&lt;h2&gt;Final Thoughts&lt;/h2&gt;

&lt;p&gt;In the end, it's both a fascinating tale of heroism and creativity and
a saddening tale of undervalued and underpaid engineers. I am both
emboldened to keep following my passions and more mindful of its
dangers. My troubles are not unique - not even modern. Thirty years
after this book was written, I feel like it could have been written
yesterday.&lt;/p&gt;
    &lt;img src=&quot;http://feeds.feedburner.com/~r/metajack/~4/qRmZ4RpWwTg&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</content>
		<author>
			<name>Jack Moffitt (jack@metajack.im)</name>
			<uri>http://metajack.im/</uri>
		</author>
	</entry>

	<entry>
		<title>ProcessOne: Leading Analyst Firm evaluated ProcessOne in Enterprise IM &amp;amp; Presence Critical Capabilities Report</title>
		<link rel="alternate" type="text/html" href="http://www.process-one.net/en/blogs/article/leading_analyst_firm_evaluated_processone_in_enterprise_im_presence_report/"/>
		<id>tag:process-one.net,2012:en/blogs/3.5164</id>
		<updated>2012-01-19T13:38:45+00:00</updated>
		<content type="html">&lt;p&gt;Critical Capabilities for Enterprise Instant Messaging and Presence (David Mario Smith / January, 10, 2012) report by leading analyst firm, Gartner, evaluated in 4 use case categories for enterprise IM &amp;amp; presence.&lt;/p&gt; &lt;p&gt;7 critical capabilities like chat, presence, clients, archiving, interoperability and integration, administration and conferencing help to assess the different vendors.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Study assesses a selection of 9 IM &amp;amp; Presence offerings&lt;/li&gt;
&lt;li&gt;ProcessOne believes study demonstrates the IM market maturity and industry leadership &lt;/li&gt;
&lt;li&gt;Categories include internal collaboration, external collaboration, business process support and customer support&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;ProcessOne was recently evaluated in the enterprise IM and Presence category in an &lt;a href=&quot;http://www.gartner.com/DisplayDocument?id=1891816&amp;amp;ref=g_fromdoc#document_history&quot;&gt;independent analysis, published on January 10, 2012&lt;/a&gt;, by leading industry analyst firm Gartner. This study complements other studies by Gartner such as the &lt;a href=&quot;http://www.gartner.com/id=1737614&quot;&gt;MarketScope for Enterprise IM and Presence published on July, 5, 2011&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;As more enterprises use real-time messaging to ease collaboration internally and externally between employees and customer relationship, business processes are requiring more flexibility and real-time interaction, especially while employees, applications and connected things are fully mixed together.&lt;/p&gt;
&lt;p&gt;A business environment, where all employees are connected through various devices, especially smartphones, is challenging for enterprises. Push notification tends to become extremely important as it enables processes to synchronize with employees again and promote real-time discussion and decision. This is why companies need seamless real-time chat and push interaction and it's great to see the top analyst firm rate and define ProcessOne in this way.&lt;/p&gt;</content>
		<author>
			<name>Arnaud Le Ruyet</name>
			<uri>http://www.process-one.net/en/blogs/</uri>
		</author>
	</entry>

	<entry>
		<title>Jappix news: The point for 2012</title>
		<link rel="alternate" type="text/html" href="http://codingteam.net/project/jappix/news/show/520-the_point_for_2012"/>
		<id>http://codingteam.net/project/jappix/news/show/520-the_point_for_2012</id>
		<updated>2012-01-19T13:25:02+00:00</updated>
		<content type="html">Yay!&lt;br /&gt;
&lt;br /&gt;
Months ago, &lt;a href=&quot;http://blog.julienbarrier.fr/jappix/2011/au-revoir-vanaryon/&quot;&gt;I announced I was stopping all my Jappix development&lt;/a&gt;. Well, I came back on my decision, and I decided now to code a little bit for Jappix itself. But my real motivation is to work hard to add new Jappix.com platform services (Jappix Me is one of them).&lt;br /&gt;
&lt;br /&gt;
I have now the idea to create a Jappix Pro platform, allowing companies and organizations to get commercial Jappix support. Four offers will be proposed:&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Jappix help&lt;/strong&gt; (EUR 10/resolved problem)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Jappix full setup&lt;/strong&gt; (EUR 50)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Jappix custom setup&lt;/strong&gt; (EUR 100)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Jappix development&lt;/strong&gt; (EUR 30/worked hour)&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
The last offer will be really interesting, both for companies (they will be able to get their own feature requests to work), developers (they will be able to get paid for their hard work) and community (the code created will be also added to our open project). This is a new ecosystem we really want to be created. It will make the project really go forward, and give us the possibility to make our activity a bit more &quot;professional&quot;.&lt;br /&gt;
&lt;br /&gt;
There's just a huge problem to that. We live in France. Well, French laws are not really permissive to this kind of work: we need to declare our revenues, so that it makes lots of papers to do (a looooot of work!). We still need to discuss about the idea before deciding to launch it!&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://julienbarrier.fr/&quot;&gt;Julien&lt;/a&gt; will soon open a developer website on Jappix.org. This website will help people who want to write code for Jappix join us. We know it is hard to get into the project - for the moment. It will be soon available at &lt;a href=&quot;http://developer.jappix.org/&quot;&gt;developer.jappix.org&lt;/a&gt; (soon!).&lt;br /&gt;
&lt;br /&gt;
Another announcement is that we goal to release a &quot;perfect&quot; 1.0 version, so that now, every new released version will be 0.9.X. The next Jappix version will be 0.9.1. We still did not decided whether we will give a new codename per sub-release or we will keep Spaco as a single codename.&lt;br /&gt;
&lt;br /&gt;
We also had many internal problems in the project development. I admit I did not listened enough to what others had to say. The reason to that is that I wanted to work fast, do what I had to do and release quickly (I have a life, apart from Jappix, I don't want to spend days and days behind my Mac screen in fact). There is a huge lack of communication, I know. I am part of this problem, that's why I will now give my best to go forward with what others have to say. Sorry for that. Again.&lt;br /&gt;
&lt;br /&gt;
Some of you have noticed we removed the &quot;Source code&quot; tab on our Codingteam.net page, and that it is also &lt;a href=&quot;http://codingteam.net/project/jappix/browse&quot;&gt;unavailable by direct URL access&lt;/a&gt;. Don't worry, we don't want to remove any free license. We just have a Google problem which is indexing data that we want to remove. The development code is &lt;a href=&quot;http://svn.codingteam.net/jappix/&quot;&gt;still available here&lt;/a&gt;, but you can also get it by &lt;a href=&quot;https://project.jappix.com/downloads&quot;&gt;downloading a Jappix package&lt;/a&gt;. We are currently working to remove that data on our repository. Then, the tab will be added again!&lt;br /&gt;
&lt;br /&gt;
Let's talk about our growth, we now have:&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;About &lt;strong&gt;11,000 registered users&lt;/strong&gt; on our XMPP server&lt;/li&gt;
&lt;li&gt;Up to &lt;strong&gt;300 logged in users&lt;/strong&gt; on our XMPP server in peak times&lt;/li&gt;
&lt;li&gt;Up to &lt;strong&gt;250 BOSH sessions&lt;/strong&gt; in peak times&lt;/li&gt;
&lt;li&gt;About &lt;strong&gt;17,000 Jappix downloads&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;About &lt;strong&gt;80 Jappix Me profiles&lt;/strong&gt; created in last 4 days&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
More statistics &lt;a href=&quot;https://stats.jappix.com/&quot;&gt;are available here&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
By the way, you may also want to know more about our financial situation. Actually it is pretty stable: last summer we though about a small monetization program on our commercial websites (for the moment only on project.jappix.com and mini.jappix.com):&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;We currently earn &lt;strong&gt;85$/month&lt;/strong&gt; (&lt;a href=&quot;http://backlinks.com/&quot;&gt;BackLinks.com&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;We get &lt;strong&gt;70$ bonus per hosting client&lt;/strong&gt; we refer (&lt;a href=&quot;http://www.arvixe.com/&quot;&gt;Arvixe.com&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;We get &lt;strong&gt;100$ bonus per advertiser&lt;/strong&gt; we refer (&lt;a href=&quot;http://backlinks.com/&quot;&gt;BackLinks.com&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;We get about &lt;strong&gt;10$/month&lt;/strong&gt; (&lt;a href=&quot;http://jappix.org/support&quot;&gt;community donations&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
We recently renewed our hosting, our TLS certificate and all our domain names for the 2012 year. Remember that all this money is received on PostPro's PayPal account and is only used for Jappix (mostly for hosting, we need about 500$/year for that). We don't withdraw anything for our personal use.&lt;br /&gt;
&lt;br /&gt;
Well, now you know everything. Jappix is going forward, we're giving our best for that project. Remember!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://codingteam.net/users/show/Vanaryon&quot;&gt;Vanaryon&lt;/a&gt;, Jappix founder.&lt;br /&gt;
&lt;br /&gt;
&lt;em&gt;Note: now you can read my new blog available on &lt;a href=&quot;https://me.jappix.com/vanaryon@jappix.com&quot;&gt;my Jappix Me profile&lt;/a&gt;. I post lots of pictures I take, and sometimes some news about Jappix and XMPP. Julien has also &lt;a href=&quot;https://me.jappix.com/julien@jappix.com&quot;&gt;his own profile&lt;/a&gt;.&lt;/em&gt;</content>
		<author>
			<name>Vanaryon</name>
			<uri></uri>
		</author>
	</entry>

	<entry>
		<title>XSF Google Summer of Code Blogs: Jefry Lagrange (Gajim) : Getting into I2P</title>
		<link rel="alternate" type="text/html" href="http://hacklogger.blogspot.com/2012/01/getting-into-i2p.html"/>
		<id>http://hacklogger.blogspot.com/2012/01/getting-into-i2p.html</id>
		<updated>2012-01-17T02:44:00+00:00</updated>
		<content type="html">For a long time I have heard of I2P and I thought it was a good idea, but never actually tried to install it. Today I installed I2P and I have to say that I'm amazed by it. I was expecting a barely functioning app, very slow response times and crappy ported apps running on top of it. I was wrong.&lt;br /&gt;&lt;br /&gt;The I2P router console is simply great. It include many apps, such as its own web, email and BitTorrent servers. I'm not very good at describing stuff, and reading about it's probably too dry. I would recommend anybody to try it first if they are interested. It is like discovering a new internet inside of the internet.&lt;br /&gt;&lt;br /&gt;It is true that it lacks a lot of services, and that's why I want to know more about developing apps for I2P.&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img src=&quot;https://blogger.googleusercontent.com/tracker/474623074325553428-5268614043251863092?l=hacklogger.blogspot.com&quot; alt=&quot;&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;/div&gt;</content>
		<author>
			<name>Jefry Lagrange</name>
			<uri>http://gsoc.xmpp.org/</uri>
		</author>
	</entry>

	<entry>
		<title>Jappix news: Jappix Spaco is here!</title>
		<link rel="alternate" type="text/html" href="http://codingteam.net/project/jappix/news/show/518-jappix_spaco_is_here"/>
		<id>http://codingteam.net/project/jappix/news/show/518-jappix_spaco_is_here</id>
		<updated>2012-01-16T22:23:29+00:00</updated>
		<content type="html">Hey!&lt;br /&gt;
&lt;br /&gt;
A short news to let you know we just released Jappix Spaco (0.9 version), which integrates Jappix Me support (when registering a new account).&lt;br /&gt;
A bunch of little bugs have been fixed, such as the image navigation issue with Safari on MacOS.&lt;br /&gt;
&lt;br /&gt;
Have fun with Spaco!&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://codingteam.net/users/show/Vanaryon&quot;&gt;Vanaryon&lt;/a&gt;, Jappix founder.</content>
		<author>
			<name>Vanaryon</name>
			<uri></uri>
		</author>
	</entry>

	<entry>
		<title>Jappix news: Jappix Me, a step forward for social XMPP</title>
		<link rel="alternate" type="text/html" href="http://codingteam.net/project/jappix/news/show/516-jappix_me_a_step_forward_for_social_xmpp"/>
		<id>http://codingteam.net/project/jappix/news/show/516-jappix_me_a_step_forward_for_social_xmpp</id>
		<updated>2012-01-15T10:56:36+00:00</updated>
		<content type="html">&lt;em&gt;Today, 12:00 a.m (Paris hour)&lt;/em&gt;, we are proud to release Jappix Me, which is a fresh new Jappix.com project with a bunch of amazing features. That's really a huge step forward for social XMPP.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Want a short description of what Jappix Me is?&lt;/strong&gt; Well, it's a kind of Web gateway of your profile for everyone. It makes your social channel public, your current position public, and your profile/vCard public. You can also use it as an image gallery viewer.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Want to use the same avatar everywhere on the Web (forums, blogs, ...)?&lt;/strong&gt; Yay! Jappix Me makes it possible, each profile have a page called &quot;Export&quot; to get the links to some part of this profile.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Want to post new updates?&lt;/strong&gt; You have to use Jappix itself, then it will appear in the next hours on your public profile. The profiles are updated everyday by our bot.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Want to know more about your privacy?&lt;/strong&gt; Jappix Me is a Jappix.com service, we respect your privacy and we ensure no security leak will remain. You can also set some parts of your profile private, like the social channel or your current position. Your profile can be removed whenever you want to, or you can disallow Google, Bing, ... to index your profile.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Hey, I want to create my profile, now!&lt;/strong&gt; Well, &lt;strong&gt;&lt;a href=&quot;https://me.jappix.com/&quot;&gt;let's go&lt;/a&gt;&lt;/strong&gt; &lt;img src=&quot;http://codingteam.net/public/images/icons/stock/emoticons/stock_smiley-10.png&quot; alt=&quot;:P&quot; /&gt; &lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://codingteam.net/project/jappix/upload/briefcase/jappix_me.png&quot;&gt;&lt;img src=&quot;http://codingteam.net/project/jappix/upload/briefcase/jappix_me.png&quot; alt=&quot;Jappix Me&quot; width=&quot;550&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://codingteam.net/users/show/Vanaryon&quot;&gt;Vanaryon&lt;/a&gt;, Jappix founder.</content>
		<author>
			<name>Vanaryon</name>
			<uri></uri>
		</author>
	</entry>

	<entry>
		<title>Jappix news: Something special. Tomorrow!</title>
		<link rel="alternate" type="text/html" href="http://codingteam.net/project/jappix/news/show/515-something_special_tomorrow"/>
		<id>http://codingteam.net/project/jappix/news/show/515-something_special_tomorrow</id>
		<updated>2012-01-14T12:45:56+00:00</updated>
		<content type="html">Yay!&lt;br /&gt;
&lt;br /&gt;
Tomorrow we will release something a bit special, a new Jappix project. We can tell you this will be awesome, a great innovation for XMPP world a once again we will provide a solution to something really missing for XMPP users.&lt;br /&gt;
&lt;br /&gt;
Tomorrow XMPP will be much more social, we promise you &lt;img src=&quot;http://codingteam.net/public/images/icons/stock/emoticons/stock_smiley-3.png&quot; alt=&quot;;)&quot; /&gt; &lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://codingteam.net/users/show/Vanaryon&quot;&gt;Vanaryon&lt;/a&gt;, Jappix founder.</content>
		<author>
			<name>Vanaryon</name>
			<uri></uri>
		</author>
	</entry>

	<entry>
		<title>Jack Moffitt: The Potentially Dark Future of Search</title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/metajack/~3/qTC-aH8q6Z8/"/>
		<id>tag:metajack.im:/2012/01/12/the-potentially-dark-future-of-search/</id>
		<updated>2012-01-12T10:12:00+00:00</updated>
		<content type="html">&lt;p&gt;Twitter sees Google's latest Google+ feature, integration into Google
search, as anti-competitive, and it probably is. However, it brings to
the surface some real issues with the future of search and of data.&lt;/p&gt;

&lt;p&gt;Twitter's argument:&lt;/p&gt;

&lt;blockquote&gt;
    &lt;p&gt;We're concerned that as a result of Google's changes, finding this
    information will be much harder for everyone. We think that's bad
    for people, publishers, news organizations and Twitter users.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href=&quot;https://plus.google.com/u/0/116899029375914044550/posts/24uqWqvALud&quot;&gt;Google's response&lt;/a&gt;
was:&lt;/p&gt;

&lt;blockquote&gt;
    &lt;p&gt;We are a bit surprised by Twitter's comments about Search plus Your
    World, because they chose not to renew their agreement with us last
    summer (&lt;a href=&quot;http://goo.gl/chKwi&quot;&gt;http://goo.gl/chKwi&lt;/a&gt;), and since then
    we have observed their rel=nofollow instructions.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;People have been digging into the semantics of nofollow (see
&lt;a href=&quot;http://marketingland.com/schmidt-google-not-favored-happy-to-talk-twitter-facebook-integration-3151&quot;&gt;Danny Sullivan&lt;/a&gt; and
&lt;a href=&quot;http://luigimontanez.com/2012/how-rel-nofollow-works/&quot;&gt;Luigi Montanez&lt;/a&gt;),
but there is a much bigger issue.&lt;/p&gt;

&lt;p&gt;Google and other established and up-and-coming search engines have no
real way to include lots of data in their index. It's easy to imagine
that the lack of access to Twitter and Facebook data was a motivator
for Google+ in the first place.&lt;/p&gt;

&lt;p&gt;Lots of sites now generate enough data that it is unrealistic to crawl
them. For example, Youtube has more new content every day than they
allow anyone to crawl. Twitter is essentially the same. This means
there is no way to index this data without special arrangements with
the provider. Twitter has closely guarded their firehose of data, but
at least they have some mechanism to obtain it. Youtube, as far as I
am aware, has no such mechanism.&lt;/p&gt;

&lt;p&gt;My team and I ran into this problem head on trying to build Collecta,
a real-time search engine. Access to the data was a primary blocker
for many features and product ideas, and over the too short life of
that company, access became significantly more difficult, not easier.&lt;/p&gt;

&lt;p&gt;Google can build an effective search, even a real-time one, for
Youtube, but no one else can. Twitter can build search for their data,
but few others can, and their data access policies can and do change
on a whim.&lt;/p&gt;

&lt;p&gt;If Google believes that microblogging data will improve their search
product, then a reasonable strategy to obtain that data is to try and
build their own microblogging service to generate it. I can't fault
Google for trying. If I thought Collecta could have effectively
competed against Twitter for their audience, I would certainly have
attempted that as well.&lt;/p&gt;

&lt;p&gt;Google, Twitter, Facebook and others are hoarding silos of otherwise
public data. Not only is this artificially limiting the features of
their products, but it squashes the potential for new and exciting
search applications. The search services that have sprung up are
limited to your own data, aggregate results from service-specific
search APIs, exist at the mercy of data providers, or make do with a
tiny subset of the data. I don't think Google could have built their
own search engine if the Web were similarly hostile.&lt;/p&gt;

&lt;p&gt;One could argue for requiring these bits of data to be openly
available, but unlike the data of the past, this data is expensive to
publish and consume. Most of these services may not even have a
mechanism to publish the data, even internally. Simply receiving the
Youtube or Twitter firehoses (and not counting video or image media)
would require significant engineering effort, and the rate of data
generation is only accelerating.&lt;/p&gt;

&lt;p&gt;I think we must push for open access to data, even if it is
costly. These data wars benefit very few. If things don't change, the
future of search is dark.&lt;/p&gt;
    &lt;img src=&quot;http://feeds.feedburner.com/~r/metajack/~4/qTC-aH8q6Z8&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;</content>
		<author>
			<name>Jack Moffitt (jack@metajack.im)</name>
			<uri>http://metajack.im/</uri>
		</author>
	</entry>

	<entry>
		<title>ProcessOne: CEAN 2.0 released</title>
		<link rel="alternate" type="text/html" href="http://www.process-one.net/en/blogs/article/cean_2.0_released/"/>
		<id>tag:process-one.net,2012:en/blogs/3.5126</id>
		<updated>2012-01-09T13:55:44+00:00</updated>
		<content type="html">&lt;p&gt;The Comprehensive Erlang Archive Network brings Erlang community a complete packaging system and a simple way to manage several installations of Erlang.&lt;br /&gt;
CEAN 2.0 comes with Erlang R12B-5, R13B04, R14B04, and R15B, for Linux/Mac/Windows.&lt;/p&gt; &lt;p&gt;More than providing binary packages, now we provide an Erlang development/build/package framework.&lt;br /&gt;
This way you can even build any other Erlang version you need and build your own repositories.&lt;br /&gt;
The aim is to reach a production quality level repository of auto-generated Erlang packages, using a cross-platform framework.&lt;/p&gt;

&lt;p&gt;The most valuable CEAN 2.0 features are:
&lt;/p&gt;&lt;ul&gt;
&lt;li&gt;Provide both Erlang and Unix shell commands.
&lt;/li&gt;&lt;li&gt;Build and packaging framework is now Open Source (GPL).
&lt;/li&gt;&lt;li&gt;Ability to generate packages and standalone installers.
&lt;/li&gt;&lt;li&gt;Work in cluster environment. It's possible to sync Erlang/CEAN installation on several hosts using just one command.
&lt;/li&gt;&lt;li&gt;Ability to have as many Erlang version installed as needed.
&lt;/li&gt;&lt;li&gt;Reliable package dependencies generator.
&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;&lt;/p&gt;

&lt;p&gt;See more on &lt;a href=&quot;http://cean.process-one.net/&quot; title=&quot;CEAN web site&quot;&gt;CEAN web site&lt;/a&gt; (&lt;a href=&quot;http://cean.process-one.net/&quot; title=&quot;CEAN web site&quot;&gt;cean.process-one.net&lt;/a&gt;).&lt;br /&gt;
Please post any issue or feature request on our &lt;a href=&quot;https://support.process-one.net/browse/CEAN&quot; title=&quot;Ticket Tracker&quot;&gt;Ticket Tracker&lt;/a&gt;.&lt;br /&gt;
Use the &lt;a href=&quot;http://www.process-one.net/en/forum/viewforum/7&quot; title=&quot;forum&quot;&gt;forum&lt;/a&gt; for any kind of request or help.&lt;/p&gt;</content>
		<author>
			<name>Christophe Romain</name>
			<uri>http://www.process-one.net/en/blogs/</uri>
		</author>
	</entry>

	<entry>
		<title>Alexander Gnauck: MatriX XMPP library for iOS and Android available</title>
		<link rel="alternate" type="text/html" href="http://www.ag-software.de/2012/01/07/matrix-xmpp-library-for-ios-and-android-available/"/>
		<id>http://www.ag-software.de/?p=1254</id>
		<updated>2012-01-07T23:13:00+00:00</updated>
		<content type="html">&lt;p&gt;MatriX XMPP library for iOS and Android is in Beta status now. Both versions are based on &lt;a href=&quot;http://xamarin.com/monotouch&quot;&gt;MonoTouch&lt;/a&gt; and &lt;a href=&quot;http://xamarin.com/monoforandroid&quot;&gt;Mono for Android&lt;/a&gt; from &lt;a href=&quot;http://xamarin.com/&quot;&gt;Xamarin&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Using this technology you can easily port your existing &lt;a href=&quot;http://www.ag-software.de/matrix-xmpp-sdk/&quot;&gt;MatriX&lt;/a&gt; based c# XMPP apps to iOS and Android and resuse most of your existing code and business logic.&lt;/p&gt;

&lt;p&gt;When you are interested in Beta testing then please &lt;a href=&quot;http://www.ag-software.de/contact/&quot; title=&quot;Contact&quot;&gt;contact us&lt;/a&gt;.&lt;/p&gt;</content>
		<author>
			<name>gnauck</name>
			<uri>http://www.ag-software.de</uri>
		</author>
	</entry>

	<entry>
		<title>The XMPP Standards Foundation: XMPP Summit coming soon to a FOSDEM near you!</title>
		<link rel="alternate" type="text/html" href="http://xmpp.org/2012/01/xmpp-summit-coming-soon-to-a-fosdem-near-you/"/>
		<id>http://xmpp.org/?p=2479</id>
		<updated>2012-01-06T22:27:32+00:00</updated>
		<content type="html">&lt;p&gt;As you’ll be aware if you’ve been following the XSF’s mailing lists and chatrooms, &lt;a href=&quot;http://fosdem.org/2012/&quot; title=&quot;FOSDEM 2012&quot;&gt;FOSDEM 2012&lt;/a&gt; is coming, and that means it’s also time for the &lt;a href=&quot;http://wiki.xmpp.org/web/Summit_11&quot; title=&quot;XMPP Summit 11&quot;&gt;XMPP Summit 11&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;A rough timetable is:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Friday 3rd February&lt;/strong&gt; – XSF Interop Day (Hosted by Cisco in Diegem)&lt;/p&gt;
&lt;p&gt;The testing to be done is being organized as I type on our mailing list at interop@xmpp.org&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Saturday 4th February&lt;/strong&gt; – XMPP Realtime Lounge at FOSDEM, XMPP Talks at FOSDEM&lt;/p&gt;
&lt;p&gt;If you’ve some fun project to demo at our stand, the Realtime Lounge, or an exciting talk about XMPP and related topics, we still have speaking slots available – tell us your idea on the summit@xmpp.org mailing list. Talks start at 11:00, and run through to 19:00.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Sunday 5th February&lt;/strong&gt; – XMPP Realtime Lounge at FOSDEM&lt;/p&gt;
&lt;p&gt;More demos of unusual and inventive uses of XMPP throughout the day at the Realtime Lounge.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Monday 6th February&lt;/strong&gt; – XMPP Summit 11 (Hosted by Cisco at Diegem)&lt;/p&gt;
&lt;p&gt;Technical talks and discussion for the participants of the standards@xmpp.org mailing list.&lt;/p&gt;
&lt;p&gt;All this, and evening entertainment too – on Friday, there’s the FOSDEM Beer Event (Look for the XSF logo projected onto the ceiling to find us there!), and on Saturday, we’ll have the XSF Dinner – free to XSF Members, and sponsors are always welcome – and very popular on the night!&lt;/p&gt;
&lt;p&gt;If you’re coming, join the summit@xmpp.org mailing list and make yourself known – we’re busy organizing hotel deals, speakers, demos, and so on there, so you’ll be able to get the best deals we can wangle and be ahead of the game.&lt;/p&gt;
&lt;p&gt;See you all there!&lt;/p&gt;</content>
		<author>
			<name>dwd</name>
			<uri>http://xmpp.org</uri>
		</author>
	</entry>

	<entry>
		<title>Peter Saint-Andre: Two Koreas</title>
		<link rel="alternate" type="text/html" href="http://stpeter.im/journal/1446.html"/>
		<id>tag:stpeter.im,1446</id>
		<updated>2012-01-06T00:00:00+00:00</updated>
		<content type="html">With the recent death of the dictator Kim Jong-il (replaced by his son, dictator Kim Jong-un), let us not forget how truly benighted these North Korean dictators are. Literally:</content>
		<author>
			<name>Peter Saint-Andre</name>
			<uri>http://stpeter.im/journal/</uri>
		</author>
	</entry>

	<entry>
		<title>Peter Saint-Andre: XMPP Federation Clearinghouses</title>
		<link rel="alternate" type="text/html" href="http://stpeter.im/journal/1445.html"/>
		<id>tag:stpeter.im,1445</id>
		<updated>2012-01-06T00:00:00+00:00</updated>
		<content type="html">Here's the problem: the traditional model for secure federation of XMPP servers assumes that the only policy decision required is checking of the certificate chain for a peer server. However, in some specialized communities (e.g., military networks, industry-specific networks or supply chains), additional policy concerns come into play (e.g., trust based on clearance levels or authentication methods used at remote domains, verified membership in a particular industry such as finance). Currently, server administrators might need to establish a connection policy and then whitelist peer servers that are within policy. Unfortunately, that approach is time-consuming and potentially error-prone.</content>
		<author>
			<name>Peter Saint-Andre</name>
			<uri>http://stpeter.im/journal/</uri>
		</author>
	</entry>

	<entry>
		<title>ProcessOne: 2012: The year of push</title>
		<link rel="alternate" type="text/html" href="http://www.process-one.net/en/blogs/article/2012_the_year_of_push/"/>
		<id>tag:process-one.net,2012:en/blogs/3.5103</id>
		<updated>2012-01-03T17:58:49+00:00</updated>
		<content type="html">&lt;p&gt;After many years building the reference XMPP chat server, we are now expanding to push as a platform, for ubiquitous realtime notifications.&lt;/p&gt;

 &lt;p&gt;&lt;img src=&quot;http://www.process-one.net/images/uploads/P1PP_wishes.jpg&quot; alt=&quot;ProcessOne Push Platform: best wishes&quot; height=&quot;375&quot; style=&quot;border: 0;&quot; width=&quot;500&quot; /&gt;&lt;/p&gt;
&lt;p&gt;First and foremost, thank you everyone, customers, partners for your trust and support during the past years. We would like to assure you that it has been well placed.&lt;/p&gt;
&lt;p&gt;Look at what we have accomplished together so far, in your behalf:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;We have built the most renowed XMPP server, powering a huge subset of XMPP federated infrastructures. Communication means federation.&lt;/li&gt;
&lt;li&gt;We have been developing our own improvements to XMPP in the form of mobile and reliability related extensions. Mobile is your key demand.&lt;/li&gt;
&lt;li&gt;We are hosting large XMPP deployments with exceptional scalability and uptime. Open source is shifting to managed and cloud services&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;We are now building a much more ambitious platform, the ProcessOne Push Platform, which intends to provide a self service, large scale, over-the-web notification platform. The platform is powering one of our new projects, that would change the experience people consume news, &lt;a href=&quot;http://www.upik.it/&quot;&gt;Upik&lt;/a&gt;, thanks to realtime personalized distribution. Especially in 2012 with the Olympics, the elections,...&lt;/p&gt;
&lt;p&gt;If you want to learn more about ProcessOne Push Platform, you can join the live tutorial we will demonstrate on the 9th February (&lt;a href=&quot;https://www2.gotomeeting.com/register/151496090&quot;&gt;Webinar registration link&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;2011 was the year of the emergence of group messaging, like &lt;a href=&quot;http://www.text-one.com&quot;&gt;TextOne&lt;/a&gt;, our prediction in 2012 is the year of push, as an ubiquitous realtime notification stream, coming at you, on your smartphone, computer...&lt;/p&gt;
&lt;p&gt;2012 is going to be pretty exciting for us and we wish to build even more exciting new projects with you all.&lt;/p&gt;
&lt;p&gt;We wish you all a happy new year, a great 2012!&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Credits: &lt;a href=&quot;http://www.flickr.com/photos/32569229@N06/6555639159&quot;&gt;Gare de Strasbourg&lt;/a&gt;, by &lt;a href=&quot;http://www.flickr.com/photos/alexprevot/&quot;&gt;Alexandre Prévot&lt;/a&gt;, under &lt;a href=&quot;http://creativecommons.org/licenses/by-sa/2.0/deed.en&quot;&gt;CC by-sa 2.0&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;</content>
		<author>
			<name>Mickaël Rémond</name>
			<uri>http://www.process-one.net/en/blogs/</uri>
		</author>
	</entry>

	<entry>
		<title>XSF Google Summer of Code Blogs: Jefry Lagrange (Gajim) : Jingle Bells, Jingle all the way</title>
		<link rel="alternate" type="text/html" href="http://hacklogger.blogspot.com/2011/12/jingle-bells-jingle-all-way.html"/>
		<id>http://hacklogger.blogspot.com/2011/12/jingle-bells-jingle-all-way.html</id>
		<updated>2012-01-01T03:56:00+00:00</updated>
		<content type="html">What have I been doing? I used the holidays to finally get some work done in the jingle_FT branch of gajim. It's progressing just fine. I would hope that before my vacations ends it will be stable enough to be merged into the main branch.&lt;br /&gt;&lt;br /&gt;&lt;div style=&quot;clear: both; text-align: center;&quot; class=&quot;separator&quot;&gt;&lt;a style=&quot;clear: left; float: left; margin-right: 1em; margin-bottom: 1em;&quot; href=&quot;http://i.imgur.com/r8RLs.jpg&quot;&gt;&lt;img src=&quot;http://i.imgur.com/r8RLs.jpg&quot; height=&quot;564&quot; border=&quot;0&quot; width=&quot;490&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;It would be a really good help if you check out the branch and report some bugs. &lt;br /&gt;&lt;br /&gt;It is easy to do just follow these steps:&lt;br /&gt;&lt;br /&gt;1- Check out the latest jingleFT branch&lt;br /&gt;&lt;br /&gt;hg clone http://hg.gajim.org/gajim gajim &lt;br /&gt;&lt;br /&gt;cd gajim&lt;br /&gt;&lt;br /&gt;hg update jingleFT&lt;br /&gt;&lt;br /&gt;2- Report any bugs you find.&lt;br /&gt;&lt;br /&gt;Go to https://trac.gajim.org/newticket&lt;div class=&quot;blogger-post-footer&quot;&gt;&lt;img src=&quot;https://blogger.googleusercontent.com/tracker/474623074325553428-75970827463011641?l=hacklogger.blogspot.com&quot; alt=&quot;&quot; height=&quot;1&quot; width=&quot;1&quot; /&gt;&lt;/div&gt;</content>
		<author>
			<name>Jefry Lagrange</name>
			<uri>http://gsoc.xmpp.org/</uri>
		</author>
	</entry>

	<entry>
		<title>ProcessOne: New releases: ejabberd 2.1.10 and exmpp 0.9.9</title>
		<link rel="alternate" type="text/html" href="http://www.process-one.net/en/blogs/article/new_releases_ejabberd_2.1.10_and_exmpp_0.9.9/"/>
		<id>tag:process-one.net,2011:en/blogs/3.5082</id>
		<updated>2011-12-24T01:09:26+00:00</updated>
		<content type="html">&lt;p&gt;We are pleased to announce the bugfix releases of ejabberd 2.1.10 and exmpp 0.9.9.&lt;/p&gt; &lt;h2&gt;ejabberd 2.1.10&lt;/h2&gt;

&lt;p&gt;This release includes a few bugfixes and improvements. This is just a short list of them:&lt;/p&gt;

&lt;p&gt;&lt;b&gt;* Erlang/OTP compatibility&lt;/b&gt;&lt;br /&gt;
- Support Erlang/OTP R15B regexp and drivers (EJAB-1521)&lt;br /&gt;
- Fix modules update in R14B04 and higher&lt;br /&gt;
- Fix modules update of stripped beams (EJAB-1520)&lt;/p&gt;

&lt;p&gt;&lt;b&gt;* XMPP Core&lt;/b&gt;&lt;br /&gt;
- Fix presence problem in C2S after first unavailable (EJAB-1466)&lt;br /&gt;
- Fix bug on S2S shaper when TLS is used&lt;br /&gt;
- Prevent overload of incoming S2S connections&lt;/p&gt;

&lt;p&gt;&lt;b&gt;* XEPs&lt;/b&gt;&lt;br /&gt;
- BOSH: Get rid of useless mnesia transaction (EJAB-1502)&lt;br /&gt;
- MUC: Don’t reveal invitee resource when room informs invitor&lt;br /&gt;
- Privacy: Activate “Blocked Contacts” to current c2s connection (EJAB-1519)&lt;br /&gt;
- Privacy: Always allow packets from user’s server and bare jid (EJAB-1441)&lt;br /&gt;
- Pubsub: Add hooks for node creation/deletion (EJAB-1470)&lt;br /&gt;
- Shared Rosters: support groupname@vhost in Displayed Groups (EJAB-506)&lt;br /&gt;
- Vcard: Fix error when lowercasing some search results (EJAB-1490)&lt;/p&gt;

&lt;p&gt;Check the Release Notes for a more complete list of changes: &lt;a href=&quot;http://www.process-one.net/en/ejabberd/release_notes/release_note_ejabberd_2.1.10&quot;&gt;Release Notes for ejabberd 2.1.10&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you upgrade from ejabberd 2.0.5 or older, read carefully the release notes of ejabberd 2.1.0 too, because there were several changes in the installation path and the configuration options.&lt;/p&gt;

&lt;p&gt;The list of solved tickets since the previous version is available on ProcessOne bug tracker:
&lt;a href=&quot;http://redir.process-one.net/ejabberd-2.1.10&quot;&gt;http://redir.process-one.net/ejabberd-2.1.10&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;ejabberd 2.1.10 is available as source code package and binary installers for Linux 32 bits, 64 bits, Mac OS X Intel, and Windows:
&lt;a href=&quot;http://www.process-one.net/en/ejabberd/downloads&quot;&gt;http://www.process-one.net/en/ejabberd/downloads&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;
&lt;/p&gt;&lt;h2&gt;exmpp 0.9.9&lt;/h2&gt;

&lt;p&gt;exmpp home page:
&lt;a href=&quot;http://support.process-one.net/doc/display/EXMPP/&quot;&gt;http://support.process-one.net/doc/display/EXMPP/&lt;/a&gt;
or easier to remember: &lt;a href=&quot;http://exmpp.org/&quot;&gt;http://exmpp.org/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Download exmpp 0.9.9 source code package from:
&lt;a href=&quot;http://download.process-one.net/exmpp/&quot;&gt;http://download.process-one.net/exmpp/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You can also check the ProcessOne Labs page:
&lt;a href=&quot;http://www.process-one.net/en/labs/&quot;&gt;http://www.process-one.net/en/labs/&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Marek Foss</name>
			<uri>http://www.process-one.net/en/blogs/</uri>
		</author>
	</entry>

	<entry>
		<title>Ignite Realtime Blog: Spark 2.7.0 beta 1</title>
		<link rel="alternate" type="text/html" href="http://community.igniterealtime.org/blogs/ignite/2011/12/23/spark-270-beta-1"/>
		<id>http://community.igniterealtime.org/blogs/ignite/2011/12/23/spark-270-beta-1</id>
		<updated>2011-12-23T19:46:37+00:00</updated>
		<content type="html">&lt;div class=&quot;jive-rendered-content&quot;&gt;&lt;p&gt;Dear Community,&lt;/p&gt;&lt;p style=&quot;height: 8pt; padding: 0px;&quot;&gt; &lt;/p&gt;&lt;p&gt;after some more weeks of testing, debugging and developing, we would like to ask for your support and publish the first beta of Spark 2.7.0. Ultimately, we would like to move Spark to Java 7, but that is currently not implemented via the installers. This will change in January after an update to the lastest version von Install4j provided by &lt;a href=&quot;http://www.ej-technologies.com/products/install4j/overview.html&quot; class=&quot;jive-link-external-small&quot;&gt;ej-Technologies&lt;/a&gt;.&lt;/p&gt;&lt;p style=&quot;height: 8pt; padding: 0px;&quot;&gt; &lt;/p&gt;&lt;p&gt;You can find the nightly build for Windows here:  &lt;a href=&quot;http://bamboo.igniterealtime.org/browse/SPARK-INSTALL4J-543/artifact/JOB1/Install4j&quot; class=&quot;jive-link-external-small&quot;&gt;&lt;span class=&quot;jive-link-external-small active_link&quot;&gt;http://bamboo.igniterealtime.org/browse/SPARK-INSTALL4J-543/artifact/JOB1/Instal l4j&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;height: 8pt; padding: 0px;&quot;&gt; &lt;/p&gt;&lt;p&gt;&lt;strong&gt;About Java 7:&lt;/strong&gt; Spark 2.7.0 will run with Java 7. Please interchange the bundled JRE (located at Spark-install-folder\JRE) against a Java 7 JRE or use the installer named spark_2_6_3_12555_online.exe and install Java 7 as default on Windows. Using Java 7 will stop Spark from stealing the focus, when a new message is received.&lt;/p&gt;&lt;p style=&quot;height: 8pt; padding: 0px;&quot;&gt; &lt;/p&gt;&lt;p&gt;&lt;strong&gt;Important Note: &lt;/strong&gt;Oracle has introduced a bug in Java 1.6.0 u 25-27 that prevents Spark from closing automatically during the log-off on the Windows plattform. This is not Spark related. This affects all users that install the Spark version without an included JRE.&lt;/p&gt;&lt;p style=&quot;height: 8pt; padding: 0px;&quot;&gt; &lt;/p&gt;&lt;p&gt;&lt;strong&gt;About file transfer: &lt;/strong&gt;Spark 2.7.0 beta 1 is fixing an big bug with file transfer. Spark 2.6.x has an programmatic error that was making IBB file transfer very unstable. Tim Jentz deserves a big credit for finding this after weeks of debugging. Great job Tim!!!&lt;/p&gt;&lt;p&gt;Spark 2.7.0 will also move to a standard implementation for IBB file transfer. As a result of moving to the standard IBB implementation, you may have issues with transfer between Spark 2.7.0 and Spark 2.5.8 on IBB. This is an unavoidable result of obeying the standard. IBB is the fall back implementation, if Bytestream is not an option. Hence IBB is not the regular transfer method as it is much slower than Bytestream. &lt;/p&gt;&lt;p style=&quot;height: 8pt; padding: 0px;&quot;&gt; &lt;/p&gt;&lt;p&gt;&lt;strong&gt;About plugins:&lt;/strong&gt; There were large scale changes in the way Spark is dealing internally with plugins/extensions. All Plugin developers are kindly ask to review, if their plugins are still working. This applies also to &lt;strong&gt;Fastpath&lt;/strong&gt;. Feedback regarding issues with this are highly appreciated.&lt;/p&gt;&lt;p style=&quot;height: 8pt; padding: 0px;&quot;&gt; &lt;/p&gt;&lt;p&gt;&lt;strong&gt;About GUI: &lt;/strong&gt;The Spark developers are only supporting JTattoo Luna. There are several reports that other skins are not working properly. This applies especially to Substance. If you are experiencing any GUI bug, please check if JTattoo Luna is also having this issue and report it. &lt;/p&gt;&lt;p&gt;As a general statement, I would urge all professional users to use the customizing options of Spark to get rid of Substance in corporate environments. The dev team may ultimately decide to remove Substance for 2.7x in a future release.&lt;/p&gt;&lt;p style=&quot;height: 8pt; padding: 0px;&quot;&gt; &lt;/p&gt;&lt;p&gt;&lt;strong&gt;About Mac and Windows7 64 bit:&lt;/strong&gt; The next Mac release is &lt;strong&gt;NOT&lt;/strong&gt; secured. We are looking for a developer who can provide a Mac beta release. The integration to Windows7 64 bit is ok, but the flashing notification in the tray may or may not work. A tester and developer (MS C++ Code)  for this is also needed.&lt;/p&gt;&lt;p style=&quot;height: 8pt; padding: 0px;&quot;&gt; &lt;/p&gt;&lt;p&gt;The change log for this beta is:&lt;/p&gt;&lt;p style=&quot;height: 8pt; padding: 0px;&quot;&gt; &lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot; title=&quot;Sub-task-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1465&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1465] Checkboxes appear bigger then normal since the jtattoo update&quot;&gt;&lt;strike&gt;SPARK-1465&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Checkboxes appear bigger then normal since the jtattoo update&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Closed: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1464&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1464] When user accepts group chat invitation, status is always online&quot;&gt;&lt;strike&gt;SPARK-1464&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     When user accepts group chat invitation, status is always online&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1460&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1460] No group context menu on a right click&quot;&gt;&lt;strike&gt;SPARK-1460&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     No group context menu on a right click&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/improvement.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/improvement.gif&quot; title=&quot;Improvement-- Closed: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1459&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1459] Update to the latest JTattoo version (Nov 2011)&quot;&gt;&lt;strike&gt;SPARK-1459&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Update to the latest JTattoo version (Nov 2011)&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Closed: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1452&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1452] If conferences tab is hidden, then Fastpath tab is hidden also&quot;&gt;&lt;strike&gt;SPARK-1452&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     If conferences tab is hidden, then Fastpath tab is hidden also&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Closed: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1451&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1451] Vcard popup is not always showing up on mouse hover&quot;&gt;&lt;strike&gt;SPARK-1451&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Vcard popup is not always showing up on mouse hover&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1450&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1450] When network connection is lost, chat window cannot be closed&quot;&gt;&lt;strike&gt;SPARK-1450&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     When network connection is lost, chat window cannot be closed&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1449&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1449] UNC Path does not link to folder&quot;&gt;&lt;strike&gt;SPARK-1449&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     UNC Path does not link to folder&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Closed: Wont Fix&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1445&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1445] Selecting Start a chat in a group chat room opens an incomplete chat window&quot;&gt;&lt;strike&gt;SPARK-1445&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Selecting 'Start a chat' in a group chat room opens an incomplete chat window&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1444&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1444] Subscription dialog shows the id value instead of the nickname&quot;&gt;&lt;strike&gt;SPARK-1444&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Subscription dialog shows the id value instead of the nickname&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1443&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1443] Privacy plugins cannot be accessed if we log into Spark through the IP address of the server&quot;&gt;&lt;strike&gt;SPARK-1443&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Privacy plugins cannot be accessed if we log into Spark through the IP address of the server&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot; title=&quot;Sub-task-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1465&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1465] Checkboxes appear bigger then normal since the jtattoo update&quot;&gt;&lt;strike&gt;SPARK-1465&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Checkboxes appear bigger then normal since the jtattoo update&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Closed: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1464&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1464] When user accepts group chat invitation, status is always online&quot;&gt;&lt;strike&gt;SPARK-1464&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     When user accepts group chat invitation, status is always online&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1460&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1460] No group context menu on a right click&quot;&gt;&lt;strike&gt;SPARK-1460&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     No group context menu on a right click&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/improvement.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/improvement.gif&quot; title=&quot;Improvement-- Closed: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1459&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1459] Update to the latest JTattoo version (Nov 2011)&quot;&gt;&lt;strike&gt;SPARK-1459&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Update to the latest JTattoo version (Nov 2011)&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Closed: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1452&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1452] If conferences tab is hidden, then Fastpath tab is hidden also&quot;&gt;&lt;strike&gt;SPARK-1452&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     If conferences tab is hidden, then Fastpath tab is hidden also&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Closed: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1451&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1451] Vcard popup is not always showing up on mouse hover&quot;&gt;&lt;strike&gt;SPARK-1451&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Vcard popup is not always showing up on mouse hover&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1450&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1450] When network connection is lost, chat window cannot be closed&quot;&gt;&lt;strike&gt;SPARK-1450&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     When network connection is lost, chat window cannot be closed&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1449&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1449] UNC Path does not link to folder&quot;&gt;&lt;strike&gt;SPARK-1449&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     UNC Path does not link to folder&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Closed: Wont Fix&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1445&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1445] Selecting Start a chat in a group chat room opens an incomplete chat window&quot;&gt;&lt;strike&gt;SPARK-1445&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Selecting 'Start a chat' in a group chat room opens an incomplete chat window&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1444&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1444] Subscription dialog shows the id value instead of the nickname&quot;&gt;&lt;strike&gt;SPARK-1444&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Subscription dialog shows the id value instead of the nickname&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1443&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1443] Privacy plugins cannot be accessed if we log into Spark through the IP address of the server&quot;&gt;&lt;strike&gt;SPARK-1443&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Privacy plugins cannot be accessed if we log into Spark through the IP address of the server&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1442&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1442] JabberVersion.java uses hardcoded value Spark IM Client for version name&quot;&gt;&lt;strike&gt;SPARK-1442&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     JabberVersion.java uses hardcoded value &quot;Spark IM Client&quot; for version name&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1441&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1441] ContactItem in shared group - right click popup menu performs copy when move is selected&quot;&gt;&lt;strike&gt;SPARK-1441&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     ContactItem in shared group - right click popup menu performs copy when move is selected&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Closed: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1440&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1440] Bug in ConferenceUtils.java that can break smack communication&quot;&gt;&lt;strike&gt;SPARK-1440&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Bug in ConferenceUtils.java that can break smack communication&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1439&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1439] Plugins are loaded in random order - plugins with no dependency has to be loaded first&quot;&gt;&lt;strike&gt;SPARK-1439&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Plugins are loaded in random order - plugins with no dependency has to be loaded first&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1438&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1438] Avatars are not scaled in user login/logout notification dialog&quot;&gt;&lt;strike&gt;SPARK-1438&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Avatars are not scaled in user login/logout notification dialog&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Closed: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1437&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1437] Bug in PrivacyManager that can break smack communication&quot;&gt;&lt;strike&gt;SPARK-1437&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Bug in PrivacyManager that can break smack communication&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/improvement.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/improvement.gif&quot; title=&quot;Improvement-- Closed: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1429&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1429] Update French translation&quot;&gt;&lt;strike&gt;SPARK-1429&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Update French translation&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1427&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1427] Default Appearance/Colors cannot be overwritten through plugin;Group-Chat colors are hard-coded&quot;&gt;&lt;strike&gt;SPARK-1427&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Default Appearance/Colors cannot be overwritten through plugin;Group-Chat colors are hard-coded&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1423&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1423] typo error in LayoutSettings.java&quot;&gt;&lt;strike&gt;SPARK-1423&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     typo error in LayoutSettings.java&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1422&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1422] persist vcard may throw file not found exception when jid is empty&quot;&gt;&lt;strike&gt;SPARK-1422&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     persist vcard may throw file not found exception when jid is empty&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1421&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1421] Application version and application name are hardcoded&quot;&gt;&lt;strike&gt;SPARK-1421&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Application version and application name are hardcoded&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1420&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1420] The messages in the set status message window is not getting deleted&quot;&gt;&lt;strike&gt;SPARK-1420&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     The messages in the set status message window is not getting deleted&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1419&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1419] Chat room configuration shows wrong roles for which presence is broadcast&quot;&gt;&lt;strike&gt;SPARK-1419&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Chat room configuration shows wrong roles for which presence is broadcast&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/improvement.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/improvement.gif&quot; title=&quot;Improvement-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1418&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1418] Update simplified Chinese translation&quot;&gt;&lt;strike&gt;SPARK-1418&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Update simplified Chinese translation&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Cannot Reproduce&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1414&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1414] Chat window is not flashing when receiving new message on Windows 7 64 bit&quot;&gt;&lt;strike&gt;SPARK-1414&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Chat window is not flashing when receiving new message on Windows 7 64 bit&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/task.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/task.gif&quot; title=&quot;Task-- Closed: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1413&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1413] Update build.xml to check for Java 7&quot;&gt;&lt;strike&gt;SPARK-1413&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Update build.xml to check for Java 7&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Closed: Cannot Reproduce&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1411&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1411] Sometimes file transfer indication is not updated on the receiving side&quot;&gt;&lt;strike&gt;SPARK-1411&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Sometimes file transfer indication is not updated on the receiving side&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1408&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1408] Remove # character next to Accounts button on the login screen&quot;&gt;&lt;strike&gt;SPARK-1408&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Remove &quot;#&quot; character next to Accounts button on the login screen&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/newfeature.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/newfeature.gif&quot; title=&quot;New Feature-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1405&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1405] Improved last activity recognition&quot;&gt;&lt;strike&gt;SPARK-1405&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Improved last activity recognition&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot; title=&quot;Sub-task-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1403&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1403] Enhance ability to extend core classes like ContactItem, ContactGroup, etc through plugin&quot;&gt;&lt;strike&gt;SPARK-1403&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Enhance ability to extend core classes like ContactItem, ContactGroup, etc through plugin&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/task.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/task.gif&quot; title=&quot;Task-- Closed: Wont Fix&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1400&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1400] Update to latest version Exe4J&quot;&gt;&lt;strike&gt;SPARK-1400&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Update to latest version Exe4J&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/improvement.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/improvement.gif&quot; title=&quot;Improvement-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1381&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1381] Group Chat - Actions/Start a conference menu: propose bookmarked room (if any) instead of adhoc (random) room name&quot;&gt;&lt;strike&gt;SPARK-1381&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Group Chat - Actions/Start a conference menu: propose bookmarked room (if any) instead of adhoc (random) room name&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/newfeature.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/newfeature.gif&quot; title=&quot;New Feature-- Closed: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1379&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1379] Support for XEP-0147&quot;&gt;&lt;strike&gt;SPARK-1379&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Support for XEP-0147&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot; title=&quot;Sub-task-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1326&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1326] Make tabs position optional: TOP or BOTTOM; make search input appearance optional&quot;&gt;&lt;strike&gt;SPARK-1326&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Make tabs position optional: TOP or BOTTOM; make search input appearance optional&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Closed: Duplicate&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1324&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1324] SparkToaster showing avatars in real size&quot;&gt;&lt;strike&gt;SPARK-1324&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     SparkToaster showing avatars in real size&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot; title=&quot;Sub-task-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1313&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1313] Enhance ability to overwrite spark properties values through plugin&quot;&gt;&lt;strike&gt;SPARK-1313&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Enhance ability to overwrite spark properties values through plugin&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/improvement.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/improvement.gif&quot; title=&quot;Improvement-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-1215&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-1215] Log out doesnt log out, it shuts down spark&quot;&gt;&lt;strike&gt;SPARK-1215&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;     Log out doesn't log out, it shuts down spark&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/improvement.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/improvement.gif&quot; title=&quot;Improvement-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SPARK-891&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SPARK-891] Typing notifications would be easier to see if also displayed near typing area&quot;&gt;&lt;strike&gt;SPARK-891&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;       Typing notifications would be easier to see if also displayed near typing area &lt;/p&gt;&lt;p style=&quot;height: 8pt; padding: 0px;&quot;&gt; &lt;/p&gt;&lt;p&gt;The beta release also includes a new Smack library that is based on Smack 3.2.1 plus the following bugfixes:&lt;/p&gt;&lt;p style=&quot;height: 8pt; padding: 0px;&quot;&gt; &lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SMACK-362&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SMACK-362] smack throw NoSuchElementException if the muc#roominfo_subject has no values&quot;&gt;&lt;strike&gt;SMACK-362&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;      smack throw NoSuchElementException if the muc#roominfo_subject has no values&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot; title=&quot;Sub-task-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SMACK-354&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SMACK-354] Provide milliseconds in timestamp colum debugwindow&quot;&gt;&lt;strike&gt;SMACK-354&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;      Provide milliseconds in timestamp colum debugwindow&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot; title=&quot;Sub-task-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SMACK-353&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SMACK-353] Thread leak in the FaultTolerantNegotiator&quot;&gt;&lt;strike&gt;SMACK-353&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;      Thread leak in the FaultTolerantNegotiator&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot; title=&quot;Sub-task-- Closed: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SMACK-350&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SMACK-350] Bytestream is not working in Spark 2.6.3 from XP to W7&quot;&gt;&lt;strike&gt;SMACK-350&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;      Bytestream is not working in Spark 2.6.3 from XP to W7&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot; title=&quot;Sub-task-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SMACK-349&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SMACK-349] Smacks IBB sends too much data in a packet&quot;&gt;&lt;strike&gt;SMACK-349&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;      Smack's IBB sends too much data in a packet&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SMACK-348&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SMACK-348] Documentation error - broken link&quot;&gt;&lt;strike&gt;SMACK-348&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;      Documentation error - broken link&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot; title=&quot;Sub-task-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SMACK-346&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SMACK-346] Bug in return code for rejection handling in FileTransferManager&quot;&gt;&lt;strike&gt;SMACK-346&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;      Bug in return code for rejection handling in FileTransferManager&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/improvement.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/improvement.gif&quot; title=&quot;Improvement-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SMACK-343&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SMACK-343] Make Smack jar an OSGi bundle.&quot;&gt;&lt;strike&gt;SMACK-343&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;      Make Smack jar an OSGi bundle.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot; title=&quot;Sub-task-- Closed: Wont Fix&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SMACK-338&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SMACK-338] IBB filetransfer doesnt work as expected&quot;&gt;&lt;strike&gt;SMACK-338&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;      IBB filetransfer doesn't work as expected&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Closed: Duplicate&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SMACK-336&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SMACK-336] There is an empty element in a SASL response&quot;&gt;&lt;strike&gt;SMACK-336&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;      There is an empty element in a SASL response&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot; title=&quot;Sub-task-- Closed: Duplicate&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SMACK-335&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SMACK-335] Need to set file size and name for outgoing file transfer from input stream&quot;&gt;&lt;strike&gt;SMACK-335&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;      Need to set file size and name for outgoing file transfer from input stream&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SMACK-324&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SMACK-324] Investigate SASL issue with jabberd2 servers&quot;&gt;&lt;strike&gt;SMACK-324&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;      Investigate SASL issue with jabberd2 servers&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/bug.gif&quot; title=&quot;Bug-- Resolved: Cannot Reproduce&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SMACK-322&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SMACK-322] NPE in XMPPConnection&quot;&gt;&lt;strike&gt;SMACK-322&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;      NPE in XMPPConnection&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot;&gt;&lt;img height=&quot;16&quot; src=&quot;http://issues.igniterealtime.org/images/icons/genericissue.gif&quot; title=&quot;Sub-task-- Resolved: Fixed&quot; border=&quot;0&quot; width=&quot;16&quot; /&gt;&lt;/a&gt; &lt;a href=&quot;http://issues.igniterealtime.org/browse/SMACK-263&quot; target=&quot;_blank&quot;&gt;&lt;span title=&quot;[SMACK-263] Set file info in all send* methods&quot;&gt;&lt;strike&gt;SMACK-263&lt;/strike&gt;&lt;/span&gt;&lt;/a&gt;      Set file info in all send* methods&lt;/p&gt;&lt;p style=&quot;height: 8pt; padding: 0px;&quot;&gt; &lt;/p&gt;&lt;p&gt;Expect a second beta in the first quarter 2012 that will include the latest final release of Smack&lt;/p&gt;&lt;p style=&quot;height: 8pt; padding: 0px;&quot;&gt; &lt;/p&gt;&lt;p&gt;Please report issues in the &lt;a class=&quot;jive-link-anchor-small&quot;&gt;Developer Forum&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</content>
		<author>
			<name>Ignite Realtime Blog (communityadmin@igniterealtime.org)</name>
			<uri>http://community.igniterealtime.org/blogs/ignite</uri>
		</author>
	</entry>

	<entry>
		<title>ProcessOne: Introducing the Upik app for iPhone and iPod Touch</title>
		<link rel="alternate" type="text/html" href="http://www.process-one.net/en/blogs/article/introducing_the_upik_app_for_iphone_and_ipod_touch/"/>
		<id>tag:process-one.net,2011:en/blogs/3.5069</id>
		<updated>2011-12-23T09:31:37+00:00</updated>
		<content type="html">&lt;p&gt;We've created a new personalized push inbox for your iPhone and iPod Touch. We've understood that people want today is real time news.&lt;/p&gt;

 &lt;p&gt;&lt;img src=&quot;http://www.process-one.net/images/uploads/UpikApp_launchingphoto.jpg&quot; alt=&quot;Live your news in real-time&quot; height=&quot;262&quot; style=&quot;border: 0;&quot; width=&quot;425&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Right after we powered on our smartphone, we are immediately connected. We are calling that, to be instant-on. From waking up, taking a bus, waiting in line, eating for lunch, having a meeting and going to sleep. We are always at a fingertip of a breaking news, an important email, an amazing post or even an incredible tweet. And we do not want to miss them. But we just want to be alerted personally in a simple manner so we can interact right after, by sharing, calling, posting, tweeting, whatever it is but reacting fast.&lt;/p&gt;

&lt;p&gt;With that in mind, we've created a new personalized push inbox for your iPhone and iPod Touch. We've understood that people want today is real time news. That's why we've combined personalization with smartphone and identity with push capability into one single inbox so we can solve the paradigm of living news in real time.&lt;/p&gt;

&lt;p&gt;
&lt;/p&gt;&lt;table border=&quot;0&quot;&gt;
&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;b&gt;Upik.it&lt;/b&gt; (You pick it)&lt;/td&gt;&lt;td&gt;= &lt;b&gt;Personalized&lt;/b&gt; (source selection)&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;+ &lt;b&gt;Push&lt;/b&gt; (Instant On)&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;+ &lt;b&gt;Inboxes&lt;/b&gt; (Aggregated easy-to-read views)&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;+ &lt;b&gt;Identified&lt;/b&gt; (You only)&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;+ &lt;b&gt;Multi-device&lt;/b&gt; (Your 360° mobile environment)&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;p&gt;&lt;/p&gt;

&lt;p&gt;So to summarize, it's all about your news coming at you, using the notification capabilities of your iPhone or iPod Touch.&lt;/p&gt;

&lt;p&gt;We've designed Upik to be easy to use, fast and remarkably efficient for everyone who is testing it for the very first time. There is still a lot to do to improve the overall experience. But bear in mind that we are fully committed to shaping a new smart content delivery to help you reduce your information overload.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Easy to use&lt;/li&gt;
&lt;li&gt;Fast&lt;/li&gt;
&lt;li&gt;Efficient&lt;/li&gt;
&lt;/ol&gt;


&lt;h2&gt;Easy to use&lt;/h2&gt;

&lt;p&gt;We've added an inbox and a catalog so you can perform actions on your notifications
&lt;/p&gt;&lt;ul&gt;
&lt;li&gt;Get alerted to all your notifications with push capabilities&lt;/li&gt;
&lt;li&gt;Scroll down your notifications just by sliding in your inbox&lt;/li&gt;
&lt;li&gt;Add sources using the Upik catalog to stay in contact with all the sources you love&lt;/li&gt;
&lt;li&gt;Custom your experience adding sounds per source or setup silent hours&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;/p&gt;

&lt;table align=&quot;center&quot; border=&quot;0&quot;&gt;
&lt;tbody&gt;&lt;tr&gt;&lt;td align=&quot;center&quot;&gt;&lt;img src=&quot;http://www.process-one.net/images/uploads/01Upik_get_alerted_to_new_notifications.jpg&quot; title=&quot;Get alerted to new notifications&quot; height=&quot;360&quot; width=&quot;240&quot; alt=&quot;Get alerted to new notifications&quot; border=&quot;0&quot; /&gt;&lt;br /&gt;Get alerted to new notifications&lt;br /&gt;&lt;/td&gt;
&lt;td align=&quot;center&quot;&gt;&lt;img src=&quot;http://www.process-one.net/images/uploads/02Upik_scroll_down_your_inbox.png&quot; title=&quot;Scroll down your inbox&quot; height=&quot;360&quot; width=&quot;240&quot; alt=&quot;Scroll down your inbox&quot; border=&quot;0&quot; /&gt;&lt;br /&gt;Scroll down your inbox&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;

&lt;h2&gt;Fast&lt;/h2&gt;

&lt;p&gt;We've understood that you want real time news coming on your iPhone, with no effort and no need to browse the web. That's why we've included time-saving features
&lt;/p&gt;&lt;ul&gt;
&lt;li&gt;View instantly your notification in a cleaner layout than the web, including photos, videos...&lt;/li&gt;
&lt;li&gt;Mute alerts but receive notifications in your inbox&lt;/li&gt;
&lt;li&gt;Stay in touch with all your social networks and email and display them like a notification&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;/p&gt;

&lt;table align=&quot;center&quot; border=&quot;0&quot;&gt;
&lt;tbody&gt;&lt;tr&gt;&lt;td align=&quot;center&quot;&gt;&lt;img src=&quot;http://www.process-one.net/images/uploads/03Upik_instant-viewed_notification.jpg&quot; title=&quot;Instant-viewed notification&quot; height=&quot;360&quot; width=&quot;240&quot; alt=&quot;Instant-viewed notification&quot; border=&quot;0&quot; /&gt;&lt;br /&gt;Instant-viewed notification&lt;br /&gt;&lt;/td&gt;
&lt;td align=&quot;center&quot;&gt;&lt;img src=&quot;http://www.process-one.net/images/uploads/04Upik_all_your_sources_in_a_split_view.jpg&quot; title=&quot;All your sources in a split view&quot; height=&quot;360&quot; width=&quot;240&quot; alt=&quot;All your sources in a split view&quot; border=&quot;0&quot; /&gt;&lt;br /&gt;All your sources in a split view&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;

&lt;h2&gt;Efficient&lt;/h2&gt;

&lt;p&gt;
We've designed Upik app to help you organize your notification flow so you just use your inbox like a &quot;rubik's cube&quot; and never miss key notifications
&lt;/p&gt;&lt;ul&gt;
&lt;li&gt;Navigate and read your sources with different views&lt;/li&gt;
&lt;li&gt;Focus on your important notifications by clicking on the &quot;blue ribbon&quot; to read them later&lt;/li&gt;
&lt;li&gt;Extend the source catalog by adding your custom sources by searching and/or entering the exact feed URL&lt;/li&gt;
&lt;li&gt;Many more smart features are coming soon, stay tuned...&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;/p&gt;

&lt;table align=&quot;center&quot; border=&quot;0&quot;&gt;
&lt;tbody&gt;&lt;tr&gt;&lt;td align=&quot;center&quot;&gt;&lt;img src=&quot;http://www.process-one.net/images/uploads/05Upik_sorted_view_by_source.png&quot; title=&quot;Sorted view by source&quot; height=&quot;360&quot; width=&quot;240&quot; alt=&quot;Sorted view by source&quot; border=&quot;0&quot; /&gt;&lt;br /&gt;Sorted view by source&lt;br /&gt;&lt;/td&gt;
&lt;td align=&quot;center&quot;&gt;&lt;img src=&quot;http://www.process-one.net/images/uploads/06Upik_read_your_notification_later.png&quot; title=&quot;Read your notification later&quot; height=&quot;360&quot; width=&quot;240&quot; alt=&quot;Read your notification later&quot; border=&quot;0&quot; /&gt;&lt;br /&gt;Read your notification later&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;

&lt;p&gt;We hope the Upik app makes you feel the notification differently and joins the brave new world of push content distribution. It is available in the &lt;a href=&quot;http://itunes.apple.com/app/upik/id483740921?mt=8&quot;&gt;AppStore&lt;/a&gt; today and works on all devices running iOS4.3+.&lt;br /&gt;
We are still in private beta so ask for an invitation on &lt;a href=&quot;http://launch.upik.it/&quot;&gt;Upik.it launch site&lt;/a&gt;: &lt;a href=&quot;http://launch.upik.it/&quot;&gt;http://launch.upik.it/&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;For more information, check out our support center or contact us at Upik@process-one.net&lt;br /&gt;
Enjoy yourselves and give us your feedbacks on social networks.&lt;/p&gt;
			
&lt;div&gt;
	&lt;a href=&quot;http://twitter.com/upikapp&quot;&gt;&lt;img src=&quot;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABAJJREFUeNq8V1toHFUY/ubM7GX20mWTjQlrL0sjCipEpDQVghFf9V18kLSg4Kvx8lBBV+qLPvkoVGwDggo+VaVURagUpIrR0icT3KSWpptttibZ7G1mzjn+Z3eSzaYzs01z+dmf2Rlmz/ed77+d1eDa+z//NZEyzfxAMpnDHtqdSmV+pV7Pf/D8U1MbDz+8fP3ct7MlebfBJRdyT11hXCwsSYWpsLV3f5yeGD3y8PnxIxlIetDkci8FQETXoNH1p7kSpm/ePmkkIuH84wMp1BwBa4/BlTUcIEwkRgbTmCmV80bKjOYYUarZHPtltFcoTIVtGDoj2QV09WQfjfIBCtswNAKmD5fe8v8xU8bkp1dRqdtImiGcnRzDowcP7JwBYSpsZnPeYuPnb079iUYihnC2r3Wd/Hw68P3tuMI2HCF8d6+sbkYRMsMb96VqM/D97eWCIAKuAn5mELiK1brJeCTw/W0RaCvAA3dkhvRuQkzfRQWIAO8RAn3T7pXZNQvjb//Qc/EEJeyZiRGMHE0HVIJwFaAvviFg3QRYLIL+3EM9CViWg9Pf/I0Lbx3voQAPVoBtJUC31Dx6t1wiulxrorRmoT8e8laAuwoIKeBHQW4JwXYs2xdH2lQ5I7zaQCcHFLivCg9IIB5ieOfZIThqdY+ldWpCbg4QASl9S8tLgUuvPNaTAE1eFOsNNDj3Ca3bBxQLhe2rwJYZYdctzK5WdlyCumwrwBy3Arj0dqXAZlf7+XXmP9/379c3OiFvJaGE8CnFONXzmtWR0UhE8cXVIo4Np3akgGBKAQ62OQm9fOxQop2IrrOwgTKL4PSFOVxbqGK16fj+NshlpxGth8A7B05ko7j0b7XrWXowhbnFVbx38ZbvDmNhhlOjA3jukWTwMGorIOFI7xAMxQXGDydx+VaHBCMlBg/2Udhkq+N5Lu5wTF1bwdhw3Lu6ILsVED5lWK438fqTadxucMwuW1vmxL3DqstCBqq2hKn7K8BaXapHvAory/joRAZPD8ag0e7v17N9McQMzXPNNqbodEInYMarlnn9zhLOHMtApcNXhQp+KdYDszxpMHzyTAaFuyWfELhJyKlT2Y7TiokIPERyXFlYRCYawRtPHMDHxwcCCdg0aK4sFKlv3LsxdRZUmHz9SGbRTYh6Y83pfTRfrDVavqM/J6SOwmxXARfzN8rl3NGhIVRsZ1+O5EnqJYViUY3jeSYEz/9+4yaq1TVkY1HKWGo2bnx201XSqbUVhsJSmAq7NWle/Ozrc6YZPjl6+BCGM/1UPSFyY1d3rWJuOzb+WSrjNwKvNazz37360qmNUffC2S8nhIY811iOBlVgQj6IKVU1qaYgyS6R//61l1t/z/8XYAAgnH68sQ+kegAAAABJRU5ErkJggg==&quot; alt=&quot;Twitter&quot; /&gt;&lt;/a&gt;
	
	 
	
	&lt;a href=&quot;http://www.facebook.com/pages/Upik/142250909153174&quot;&gt;&lt;img src=&quot;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA4FJREFUeNq8l01oE0EUx/+zO/moTRsSW1u1CVEr/ULFCn7UiyjqySqeRIW2IvQmnvwAi5GCXyevXrQi9ih+gQdBBPHrUEQFPahY2qqJ1bRpUpIm2RlnNumh2eiuW9MHCXmT2fd78+a9NzsEBenY19flcLrC7oqKEMoo6VRqOJuZCT+/039D6kR+bd1/9noosLx7R8c6NNT7y8nHWCSGxy/e4cvI6MCz2+d6yJZ9Z7qCDYGB3VvX41diBqPReFkdCNR5sbjKhYdPhzD27Ws3pQ5neHWwAa8//sCPiSTKLdFYEkt8HjSFgoiMj4ep0+EKTSYziMbTWCiJ/EqAe92QbAqiYDyeAmNYUJFMyaZEfGU1DnA+L4NuN0Xn9ka0NdagQvwulhOXn8zRs5xAsiljHNo8l7+s1oPeA2vh91aiqnIRKFUNc7TiBQpdsikDn1f43S4VhzubsbzOD1911R/nlWJItogAA+P2Pehob8Cq4JK/wnVYCYZkUy7CwOax/5vWLEWNz2s6rxSD61tQ2Au7sjJQaxi79eANBh+8teQU5dx+BHzVLpEDTsP4o+efLdmUbL0KwPPKv0psMg0nNZZcZDxh+iwhJF8FXCSHIo6kjM1tcDod5iVX6jkBlWw9AtIBq3lw8fgmQxiL5fyxjYaxU1dezdEVitkIcKjiVLaaB+1tzUWlxE3n5BPu5RxdMvM5wGUEiF4SVoQxzdZWFduXzHwViD9UYj0CzGbbLLavFhZNZYeSisbK60Cx/fyiC0moKtYjsP3ozbk1f/WQYc7O3lumdnTmbCdUhKLZbEalerwVW0ph0TQnQkqEkWwuZy+0mtEBK7YkU7JpNjWNTHoK6WTMXgRK5IQVW5m0Csmmy1pa0LS5A7movRdSphnLsm3bLtPnmuo8iKgq6HR8GqlYArHohM0IrDCeEVHzCKQcHJJNiX47yVeCZuM8sHOSulRFZ5J8MspOyOB1O2wmoWb4mEmli+pMna2w3PDEVBwB3yLbSVj8Mb0dCZZkSrbCZpLhT2NjqFByaA/4UOsRLxkO9b87QMUWS9uSIVmSKdn65XRDZ991T83S7lZxXar3+0VYFCiqNSeO7A0axq7dHSlZLdK5SCyGD8MjSPz8PjB0r7+HzE7YsOd0l+KqDGuEhmReWc3HkwdbDWOXBt8bOx+Rb0GiBfPcMJuZDg/dv6Bfz38LMADtLONxPx43OAAAAABJRU5ErkJggg==&quot; alt=&quot;Facebook&quot; /&gt;&lt;/a&gt;
	
	 
	
	&lt;a href=&quot;https://plus.google.com/u/0/111229014440243985029/posts&quot;&gt;&lt;img src=&quot;data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAIkklEQVQYGaXBC3TWZR3A8e/z/P/vde+78e7d2OYGTC5usAtELgy0AygEIp4k74l4TK3MPCez0LK0k3aUylPRKfUgBzQNQU0LEkXBA+XlhIowjKvAuI6NsXeX9/p/nl+80BAREuvzcTlCREY+Prj/ueVe+p7+rq4u9mkQARQW0IDl0wigOJnmGK2gyxNac2bnfl/w/lnbD65VSr3vcsSKcfUPTph28ZQB18xERQuxuRxYA9ZyppQ/AEoDwlFKgTFILsNRjsuAQJC6rkT1wUV/nPf6BY3Lganu3LLwrNHfu2dKlCQ9zy/AdLbhxkpwSisgEgHHBQSEU1KuDxUrIbt+LaqzHfwBQCG5DKqwH86AweTZw22Y1n24pZWUXDSRgvGTpzy27eZZ7llK7gtLlsTyZwmPnUhg/CXI2TU4KDRnpnXpn8isepGA0kggRF5u9zbCl1xHv5vvIi/58nN03X4l/toGsi1biV58Ded9ZcYcN9KdqnYKI5T8ehEUFNK5uZmeh+7CJjqIjL+Y2OTL0HzEAqmDB3BKyhAvR2LuvaTmPkigqgwvEgXrkWeVQkyWPpJKgVi8ZBdm52ay61ZQWjuiv9vwk9n4J80gC+y7fjLeqhX4faAFDi+cR2LieCp+/2dC0X7kiTV0v7WKzjmz8UUjBFq2EqwegAkEwPPoIwJihT5iPCygrCDZHNltH2BiGrfsBw+Sd+int2GfX0HBmLMx2gEUYTGkl73OwTtnMujRv5LnaIfyS6/B98bLJB5diGoahhHAs3yMgAjHCYK14Igiz/b0ks4ewDWANh6ZNctxagrJocBa8izgG1VN5sWldFy6iOJpV9On+IF5JP+5mtzhdnRRDG/Ph0iW43K7wK1vQQAFmEQnqe1gvR2gQAchVR3H1YBpP0CufT9uJIaylo/RGhWB7id+Q79pV6M5RjkuBVfdQtu9d+MPRYjd8XOcWCkiHGV7unEHDUZEUEoRHncR5Y/9AqewCFD4Ssvx79yOqwCbzSLZLKIUIsLHGIMuqyDdvI7kxneJ1I2mj7+mEStgM2li37ib/8Zf00BxTQMnCgOuAE60CFVQiJdLoXWYT/D7ybWlSa1cSqRuNH1UMIz4wYgh09tNoCDKyay1aK05FQu4HhAoKkbHy8nt3Y7yh/kEY1AB8NpaOZG1BnygXT8td9+ECkVQIuTl2tspOHcMVd/6IXkda15h/+O/JVhaCkoRqiqjfXcHrjEGHAffkOGkmj/AiWlEhBMpQDTkejs5kZfowKRBHB/essVIjuOyuyGQaEXd+iPy7JYNZBcuQ1UBCpwAZIaOxyWTgXCYgsmX0fbEczjKAxEUiuOUwssCxnCijpeWIC4YLOqsShQf0XovuqyCPipahFMJetBZoBSqMIAOBXD5j9jUy2kf/xDdb24gPGIAxvPIUyiUFnLdEBo1hj6H173N4UVLCFWX4BnLyTwDVviIKDwD2lhQCusZrAiuRZGn/QEGzF3CBxPq6W3eTXBoCSiNtYbU+kNELqwnPvM75CU72/nwlstxww7iBBBrOJn1QLRLHxUMYT0QK6BALFgBNxIO0SdcXUPdK++w49av0dvcjAWUQOHUcQx9bDHacenau4PNV0xAdu3Bf04lJudxSo7Cy6bIZdIIimx3AusoLBbQCBaD4K668QoumL8El2NCwxoZsWIDyeb3Se9twVccJ9o0lrz2tX9ny3XTcDq6CA6rwGRznI5bESe58X02TB+NUhrSSXwD4ggKRLBWsALulieeZdi595IyQYomfJnCwTXgBHDrR1JcP5I+yT072TxzEro9jb+mApMzCKenHBdJJ7Ft+0EEFQyhI4VYa8mzYhHAjcUD2Ob17HnyBfaW/5hgeRXZ/YcYMud3VM6YhQgoBYdefo7spjTR88rIZXIoPoW1oB0oKiZPAON59BFrsQJu1liktB8F5xRDJk12+y4cgdioL5BnrcVxNJGaRmwQ0gcO4i+JY43l/2GNwUNwhSMEjAj4Aui4ItuRxEulyBOxWAOx8ydR+4eH2XTbHZhUO4GBccSz/K8EsAKuB4gIIgoRi/UMmX3C1gfuZNRTK3G0g/E80JrKG75LcGg9zV+fQc/GQ4Rr44gVEOGzshYEcLM5j9y+BF3/6kD7wF/uo+iLVaQ2baNr03piwxtRjoPJZhHXR/z8STSt3sj6a6dzeNV6ChsKQbuItXwWYgURcK0oQl+6gGG1dcTGTqRf0wVov4+0BUn1kBEIOBrH8ZNJpbFaEy4bSNOKtay7diqtz79GwTkRlOMiIpwpEcEC7uRn/kLV1GnkdXel2LN6JW2r/obZ34I53Ea6NUG/CyfR8LOHCYSCZDIp0qlegqECPr/oVd795pUcmL+EyPAoiOJMiQgWcIdMnUZPyw7e+fYsuv6xBpsELeAPAS5goOXNZhJr36Jh7jziQ0eQzaZJ93QTjET53COLeWNrPV3rNhKsiALCmbBiEAT3heumU2sCJFesITzIQdwAKI2IoDhCa6KVlt7X3mRNUx0N8xYw5Kuz8AQy3V0EooUMvG027111PW65QaH5NFqBq4WcCO7KxUt3Nn3/xurikTFSSYOxgggoFEdZsGiCw4tw9iZ49/IbsM9kGXblzXiehwBFo8cSGhLC9KZxCwo4HQU4WhH0awrSOVL+4AH3kF/fl8g4CwZGNO1ayHqCCKekhhYTC3Ww74ZbKG4cQ7y2EQ8IVFTRv66W1Bvv4ZZoTkcp8LuKeNihdXMGZ1rdfPfpXrtwXEfq6ur1iSlNg4L44gGs5ZM0YEGNLMNb1opv62tQ24gDaMdhUP8AJgoq5nJKGhTgHcqwbkMPy6P9n/rVA3Medzni1vlP3nVT5UvPrt7SeU9cp6t9WBQgKE4l6UDV7F8yfcrtBByHHYuf5qUFb6O0wmnt5GSKYzwgIWrnwWjR/Y9s3/uqUmrXvwGHUN69dPLT+AAAAABJRU5ErkJggg==&quot; alt=&quot;Google+&quot; /&gt;&lt;/a&gt;

	&lt;br /&gt;&lt;br /&gt;
	Upik is powered by &lt;a href=&quot;http://www.process-one.net/&quot;&gt;ProcessOne&lt;/a&gt; Push Platform.
&lt;/div&gt;

&lt;p&gt;The Upik team&lt;/p&gt;</content>
		<author>
			<name>Arnaud Le Ruyet</name>
			<uri>http://www.process-one.net/en/blogs/</uri>
		</author>
	</entry>

	<entry>
		<title>Ignite Realtime Blog: Seasonal Greetings</title>
		<link rel="alternate" type="text/html" href="http://community.igniterealtime.org/blogs/ignite/2011/12/23/seasonal-greetings"/>
		<id>http://community.igniterealtime.org/blogs/ignite/2011/12/23/seasonal-greetings</id>
		<updated>2011-12-23T07:04:05+00:00</updated>
		<content type="html">&lt;div class=&quot;jive-rendered-content&quot;&gt;&lt;p&gt;Dear Community!&lt;/p&gt;&lt;p style=&quot;height: 8pt; padding: 0px;&quot;&gt; &lt;/p&gt;&lt;p&gt;Another year has passed for this open source project and various developers have contributed significantly to nearly all of our projects. We were able to finally release Openfire 3.7 and Spark 2.6.3 under Apache 2.0 license. The most important Smack library has also seen several releases and last but not least the good old instant messaging gateway Kraken returned to us. Some great innovations were presented like SparkWeb/Redfire, Websocks and Candy. I really would like to thank all developers involved by contributing code and all users and system admins that went through this year. A very special thank you goes to Daryl Herzmann who keeps the servers healthy and Wroot for outstanding work in the forum. I would also like to single out Guus der Kinderen for his insights in Openfire architecture and the release of Openfire 3.7.&lt;/p&gt;&lt;p style=&quot;height: 8pt; padding: 0px;&quot;&gt; &lt;/p&gt;&lt;p&gt;Merry Christmas to all of you and a happy, healthy and sucessful 2012&lt;/p&gt;&lt;/div&gt;</content>
		<author>
			<name>Ignite Realtime Blog (communityadmin@igniterealtime.org)</name>
			<uri>http://community.igniterealtime.org/blogs/ignite</uri>
		</author>
	</entry>

</feed>

