<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IT Zug</title>
	<atom:link href="http://www.itzug.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.itzug.com</link>
	<description>IT Zug, Switzerland</description>
	<lastBuildDate>Wed, 14 Jul 2010 08:18:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Knowledgebase WebApp for iPhone released</title>
		<link>http://www.itzug.com/20/knowledgebase-webapp-for-iphone-released/</link>
		<comments>http://www.itzug.com/20/knowledgebase-webapp-for-iphone-released/#comments</comments>
		<pubDate>Wed, 14 Jul 2010 08:18:45 +0000</pubDate>
		<dc:creator>L. B. Misch</dc:creator>
				<category><![CDATA[Services]]></category>
		<category><![CDATA[dynamic-net]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Knowledgebase]]></category>
		<category><![CDATA[WebApp]]></category>

		<guid isPermaLink="false">http://www.itzug.com/?p=20</guid>
		<description><![CDATA[Knowledgebase WebApp for iPhone released]]></description>
			<content:encoded><![CDATA[<p>I have just released the Knowledgebase iPhone WebApp for <a href="http://www.dynamic-net.ch/">dynamic-net.ch AG</a>. Simply use your Safari Mobile browser and go to <a href="http://kb.dynamic-net.ch/">kb.dynamic-net.ch</a> to view the knowledgebase. A short tutorial on how to install this WebApp as an application is available <a href="http://kb.dynamic-net.ch/questions.php?questionid=377">here</a> (German).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itzug.com/20/knowledgebase-webapp-for-iphone-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox: Printing passwords (for migration, &#8230;)</title>
		<link>http://www.itzug.com/10/firefox-printing-passwords-for-migration/</link>
		<comments>http://www.itzug.com/10/firefox-printing-passwords-for-migration/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 09:25:15 +0000</pubDate>
		<dc:creator>L. B. Misch</dc:creator>
				<category><![CDATA[Services]]></category>
		<category><![CDATA[export]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[Password Manager]]></category>
		<category><![CDATA[passwords]]></category>
		<category><![CDATA[print]]></category>

		<guid isPermaLink="false">http://www.itzug.com/?p=10</guid>
		<description><![CDATA[A nice way to print user/password information saved in Firefox password manager can be found at: http://kb.mozillazine.org/Password_Manager#Printing_passwords Simply copy the following code into the "Error Console" (Tools-Menu within Firefox) and click the Evaluate button:]]></description>
			<content:encoded><![CDATA[<p>A nice way to print user/password information saved in Firefox password manager can be found at:</p>
<p><a title="Visit kb.mozillazine.org" href="http://kb.mozillazine.org/Password_Manager#Printing_passwords">http://kb.mozillazine.org/Password_Manager#Printing_passwords</a></p>
<p>Simply copy the following code into the "Error Console" (<em>Tools</em>-Menu within Firefox) and click the <em>Evaluate</em> button:</p>
<pre class="brush: jscript; light: false; title: ; toolbar: true; notranslate">
(function(){
function twodigs(str) {return (str.length &lt; 2) ? &quot;0&quot; + str : str;}
function fourdigs(num){return (num &lt; 1000) ? num + 2000 : num;}

var now = new Date();
var hours = twodigs(now.getHours() + &quot;&quot;) ;
var minutes = twodigs(now.getMinutes() + &quot;&quot;) ;
var seconds = twodigs(now.getSeconds() + &quot;&quot;) ;

var timeValue = &quot; | At  &quot; + hours + &quot;:&quot; + minutes + &quot;:&quot; + seconds;
var days = new Array(&quot;Sunday&quot;,&quot;Monday&quot;,&quot;Tuesday&quot;,&quot;Wednesday&quot;,&quot;Thursday&quot;,&quot;Friday&quot;,&quot;Saturday&quot;);
var months = new Array(&quot;January&quot;,&quot;February&quot;,&quot;March&quot;,&quot;April&quot;,&quot;May&quot;,&quot;June&quot;,&quot;July&quot;,&quot;August&quot;,&quot;September&quot;,&quot;October&quot;,&quot;November&quot;,&quot;December&quot;);
var date = ((now.getDate()&lt;10) ? &quot;0&quot; : &quot;&quot;)+ now.getDate();

var today =  &quot;On &quot; + days[now.getDay()] + &quot;, &quot; + date + &quot; &quot; + months[now.getMonth()] + &quot; &quot; +    (fourdigs(now.getYear())) + timeValue ;

var Cc = Components.classes;
var Ci = Components.interfaces;

netscape.security.PrivilegeManager.enablePrivilege(&quot;UniversalXPConnect&quot;);

var tokendb = Cc[&quot;@mozilla.org/security/pk11tokendb;1&quot;].createInstance(Ci.nsIPK11TokenDB);
var token = tokendb.getInternalKeyToken();

try {token.login(true);} catch (e) {}

if (token.isLoggedIn()) {
 var passwordmanager = Cc[&quot;@mozilla.org/login-manager;1&quot;].getService(Ci.nsILoginManager);
 var names=&quot;&quot;,signons = passwordmanager.getAllLogins({});

 for (i=0;i&lt;signons.length;i++) {
  try {
   var host = signons[i].hostname;
   var realm = signons[i].httpRealm;
   var user = signons[i].username;
   var userf = signons[i].usernameField;
   var password = signons[i].password;
   var passwordf = signons[i].passwordField;
   var submiturl = signons[i].formSubmitURL;
   if (user == &quot;&quot;){ user = &quot;&lt;br&gt;&quot;; }
   names+=&quot;  &lt;tr&gt;\n    &lt;td&gt; &quot; + host + &quot; &lt;/td&gt;\n    &lt;td&gt; &quot; + user + &quot; &lt;/td&gt;\n    &lt;td&gt; &quot; + password + &quot;  &lt;/td&gt;\n    &lt;td&gt; &quot; + submiturl + &quot; &lt;/td&gt;\n  &lt;/tr&gt;\n&quot;;
   } catch(e) {}
 }

 void(window.open('data:text/html,
&lt;html&gt;&lt;head&gt;
&lt;meta http-equiv=content-type&quot; content=&quot;text/html; charset=ISO-8859-1&quot;&gt;

&lt;title&gt;Exported Mozilla Passwords&lt;/title&gt;
&lt;style type=&quot;text/css&quot;&gt;
 td {
  font-family: &quot;Trebuchet MS&quot;, Arial, Verdana, Sans-Serif;
  font-size: 85%;
  padding: 1px 2px 1px 2px;
}
&lt;/style&gt;
&lt;/head&gt;&lt;body style=&quot;margin: 1em 3em; background-color: rgb(255, 221, 221);&quot;&gt;
&lt;b&gt;MOZILLA PASSWORD INFORMATION&lt;/b&gt;
&lt;p&gt;Produced by &lt;i&gt;Pasting Code in the &quot;Tools &gt; Error Console: Code field&quot;&lt;/i&gt; (by &quot;ernie&quot; - Andrew Poth - Ed Mullen - adapted by dickvl@kb.mozillazine.org to run in the Error Console)&lt;br&gt;'+today+
'&lt;/p&gt;&lt;p&gt;
&lt;table style=&quot;empty-cells: show; background-color: rgb(221, 255, 221);&quot; border=&quot;1&quot; cellspacing=&quot;0&quot;&gt;
&lt;tbody&gt;&lt;tr style=&quot;background-color: rgb(204, 204, 255);&quot;&gt;
&lt;td&gt;
&lt;b&gt;Host&lt;/b&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;b&gt;User name&lt;/b&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;b&gt;Password&lt;/b&gt;
&lt;/td&gt;
&lt;td&gt;
&lt;b&gt;Submit URL&lt;/b&gt;
&lt;/td&gt;
&lt;/tr&gt;'+names+'&lt;/tbody&gt;&lt;/table&gt;
&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;',&quot;&quot;,&quot;menubar=yes,resizable=yes,scrollbars=yes,width=1000,height:600&quot;));
}
})();
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.itzug.com/10/firefox-printing-passwords-for-migration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom URL Shortening Service Released</title>
		<link>http://www.itzug.com/5/custom-url-shortening-service-released/</link>
		<comments>http://www.itzug.com/5/custom-url-shortening-service-released/#comments</comments>
		<pubDate>Fri, 28 May 2010 07:32:03 +0000</pubDate>
		<dc:creator>L. B. Misch</dc:creator>
				<category><![CDATA[Services]]></category>
		<category><![CDATA[short url]]></category>

		<guid isPermaLink="false">http://www.itzug.com/?p=5</guid>
		<description><![CDATA[We have setup a custom URL shortening service for dynamic-net.ch AG using yourls.org. By now the Swiss Internet Provider uses http://dn.tl (dynamic-net top link) for shortening long URLs.]]></description>
			<content:encoded><![CDATA[<p>We have setup a custom URL shortening service for <a title="Visit dynamic-net.ch AG" href="http://www.dynamic-net.ch" target="_blank">dynamic-net.ch AG</a> using <a title="Visit yourls.org" href="http://yourls.org" target="_blank">yourls.org</a>. By now the Swiss Internet Provider uses <strong>http://dn.tl</strong> (dynamic-net top link) for shortening long URLs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itzug.com/5/custom-url-shortening-service-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

