<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" href="http://ideajam.net/ideajam/p/ij.nsf/rsstransform.xslt"?>
<rss version="2.0">
<channel>
	<language>en-us</language>
	<lastBuildDate>Thu, 23 May 2013 04:26:59 +0000</lastBuildDate>
	<title>IdeaJam(tm) feed for Thomas Bahn</title>
	<description>An RSS feed generated by IdeaJam(tm) for Thomas Bahn</description>
	<link>http://ideajam.net/ideajam/p/ij.nsf</link>
	<image>
	    <title>IdeaJam(tm) feed for Thomas Bahn</title>
	    <url>http://ideajam.net/ideajam/p/ij.nsf</url>
	    <link>http://ideajam.net/ideajam/p/ij.nsf/LogoSquare.gif?OpenImageResource</link>
	</image>
	<item>
		<pubDate>Sat, 03 Nov 2007 19:59:06 +0000</pubDate>
		<title>Domino Designer / : Add class methods and attributes to LotusScript</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Thomas Bahn&lt;br&gt;&lt;b&gt;Tags:&lt;/b&gt;  &lt;a href="http://ideajam.net/IdeaJam/P/ij.nsf/ProductByCategory?openview&amp;restricttocategory=LotusScript"&gt;LotusScript&lt;/a&gt;  &lt;a href="http://ideajam.net/IdeaJam/P/ij.nsf/ProductByCategory?openview&amp;restricttocategory=OOP"&gt;OOP&lt;/a&gt; &lt;br&gt;&lt;b&gt;Idea:&lt;/b&gt; 
&lt;div&gt;In other OO programming languages, there are class methods and attributes. These members are shared by all objects of the class.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;In Java, these members are flagged by the &amp;quot;static&amp;quot; modifier before the identifier.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;Class methods can be called on the class itself without the need for an object.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;They are essential for some class &amp;quot;self-management&amp;quot; capabilities, like counting the instances of a class or having a list of all created objects.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;Class members are necessary for the common Singleton design pattern and useful for object pools (like database connections).&lt;/div&gt;&lt;br&gt;</description>
		<link>http://ideajam.net/ideajam/p/ij.nsf/0/D56472EE2C9F1A1386257388006DC818?OpenDocument</link>
	</item>
	<item>
		<pubDate>Sat, 03 Nov 2007 19:47:10 +0000</pubDate>
		<title>Domino Designer / : Add the concept of "Interface" to LotusScript</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Thomas Bahn&lt;br&gt;&lt;b&gt;Tags:&lt;/b&gt;  &lt;a href="http://ideajam.net/IdeaJam/P/ij.nsf/ProductByCategory?openview&amp;restricttocategory=LotusScript"&gt;LotusScript&lt;/a&gt;  &lt;a href="http://ideajam.net/IdeaJam/P/ij.nsf/ProductByCategory?openview&amp;restricttocategory=OOP"&gt;OOP&lt;/a&gt; &lt;br&gt;&lt;b&gt;Idea:&lt;/b&gt; 
&lt;div&gt;In Java - like in other modern object-oriented programming languages - there is the concept of &amp;quot;&lt;strong&gt;Interfaces&lt;/strong&gt;&amp;quot;. They are like classes, but have no implemention code.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;Classes cannot extend Interfaces (like a superclass), but implement them. That is, they must implement each method of the interface. &lt;br /&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;Interfaces can be used as types for variables and attributes.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;Most design patterns (OO best practice solutions for common problems, commonly used in the &amp;quot;Java world&amp;quot;) use interfaces.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;Interface implementation is an alternative to multiple inheritance (one class has more than one superclass), which has some problems in itself.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;br&gt;</description>
		<link>http://ideajam.net/ideajam/p/ij.nsf/0/3F953ECBFFCF896B86257388006CB095?OpenDocument</link>
	</item>
	<item>
		<pubDate>Sat, 03 Nov 2007 19:51:18 +0000</pubDate>
		<title>Domino Designer / : Add abstract classes and methods to LotusScript</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Thomas Bahn&lt;br&gt;&lt;b&gt;Tags:&lt;/b&gt;  &lt;a href="http://ideajam.net/IdeaJam/P/ij.nsf/ProductByCategory?openview&amp;restricttocategory=LotusScript"&gt;LotusScript&lt;/a&gt;  &lt;a href="http://ideajam.net/IdeaJam/P/ij.nsf/ProductByCategory?openview&amp;restricttocategory=OOP"&gt;OOP&lt;/a&gt; &lt;br&gt;&lt;b&gt;Idea:&lt;/b&gt; 
&lt;div&gt;Add abstract classes to LotusScript: These classes can't be instantiated (New Class() throws an error). There are used as superclasses only.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;An abstract class usually has at least one abstract method, that is an method without an implementation. These can be called by other methods of the class, but have to be implemented in a subclass.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;The concept of abstract classes and methods are commonly implemented in other modern OO programming languages.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;br&gt;</description>
		<link>http://ideajam.net/ideajam/p/ij.nsf/0/B82029334641D46086257388006D1146?OpenDocument</link>
	</item>
	<item>
		<pubDate>Sat, 03 Nov 2007 19:35:57 +0000</pubDate>
		<title>Domino Designer / : Array/List literals in LotusScript</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Thomas Bahn&lt;br&gt;&lt;b&gt;Tags:&lt;/b&gt;  &lt;a href="http://ideajam.net/IdeaJam/P/ij.nsf/ProductByCategory?openview&amp;restricttocategory=LotusScript"&gt;LotusScript&lt;/a&gt;  &lt;a href="http://ideajam.net/IdeaJam/P/ij.nsf/ProductByCategory?openview&amp;restricttocategory=Arrays"&gt;Arrays&lt;/a&gt;  &lt;a href="http://ideajam.net/IdeaJam/P/ij.nsf/ProductByCategory?openview&amp;restricttocategory=Lists"&gt;Lists&lt;/a&gt; &lt;br&gt;&lt;b&gt;Idea:&lt;/b&gt; 
&lt;div&gt;In each and every other language the are array literals (ways to write arrays as constants), e. g. in @formula language you can write &amp;quot;a&amp;quot; : &amp;quot;b&amp;quot; : &amp;quot;c&amp;quot;.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;You could use Evaluate(|&amp;quot;a&amp;quot; : &amp;quot;b&amp;quot; : &amp;quot;c&amp;quot;|), but this isn't the best solution for performance and you can't use this for constant arrays (like names of weekdays, months, etc.)&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;Like for arrays, List literals would be useful for clearer and more maintainable code.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;br&gt;</description>
		<link>http://ideajam.net/ideajam/p/ij.nsf/0/B2FF0F498ADE7CF686257388006BA990?OpenDocument</link>
	</item>
	<item>
		<pubDate>Sat, 03 Nov 2007 23:50:42 +0000</pubDate>
		<title>Domino Designer / : Full DXL round-trip</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Thomas Bahn&lt;br&gt;&lt;b&gt;Tags:&lt;/b&gt;  &lt;a href="http://ideajam.net/IdeaJam/P/ij.nsf/ProductByCategory?openview&amp;restricttocategory=DXL"&gt;DXL&lt;/a&gt; &lt;br&gt;&lt;b&gt;Idea:&lt;/b&gt; 
&lt;div&gt;For every Notes version, the reimporting the exported DXL should result in (bit-)identical documents and design elements. Even if it is not possible, to create a real XML representation of everything stored in documents (especially RichText), it should be exported as Base64 encoded binaries.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;If there would be such an ex- and import, tools can be created based on DXL.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;I know, there are already tools of this kind, like Noteshound, but they are not reliable, yet.&lt;/div&gt;&lt;br&gt;</description>
		<link>http://ideajam.net/ideajam/p/ij.nsf/0/56D12B73FE788391862573880082FC33?OpenDocument</link>
	</item>
	<item>
		<pubDate>Mon, 05 Nov 2007 17:22:34 +0000</pubDate>
		<title>re: Full DXL round-trip</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Axel Janssen&lt;br /&gt;&lt;b&gt;Comment:&lt;/b&gt; 1 year ago, I was a big friend of full round trip dxl. I the meantime I have stated to believe it to be a dangerous illusion. There must be a reason that we don't have it now, as dxl was introduced in Version 6. The reason might be, that the data model of Notes Rich Text is to complex. I have learned illusions to be the one most dangerous thing in It-projects/products. &lt;br /&gt; Better start a non-downward compatible RichText 2.0 based on openOffice standards based on a clean xml-schema. I am a big friend of downward compability, but - from my pov - this might be a case where its too costly and everybody is hoping that one time we will get a nice, clean, full-roundtrip dxl. I fear, that this will never happen.&lt;br /&gt;</description>
		<link>http://ideajam.net/ideajam/p/ij.nsf/0/56D12B73FE788391862573880082FC33?opendocument&amp;#commentsanc&amp;id=CAF66F3B6F2C4D718625738A005F738B</link>
	</item>
	<item>
		<pubDate>Sat, 03 Nov 2007 21:01:42 +0000</pubDate>
		<title>re: Add subcategories for Domino Designer idea space</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Bruce Elgort&lt;br /&gt;&lt;b&gt;Comment:&lt;/b&gt; Thomas,&lt;br /&gt;&lt;br /&gt;We have asked IBM for sub categories that they would like to see for Domino Designer. They did provide the sub-cats for Sametime, Domino Admin. and the Notes Client. Hopefully we will get them soon.&lt;br /&gt;</description>
		<link>http://ideajam.net/ideajam/p/ij.nsf/0/FABF881FAE072BF286257388006B0DD3?opendocument&amp;#commentsanc&amp;id=F7E2430C53E0773A862573880073831A</link>
	</item>
	<item>
		<pubDate>Sat, 03 Nov 2007 20:27:23 +0000</pubDate>
		<title>Domino Designer / : Allow mulitple declarations of the same constant in LotusScript</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Thomas Bahn&lt;br&gt;&lt;b&gt;Tags:&lt;/b&gt;  &lt;a href="http://ideajam.net/IdeaJam/P/ij.nsf/ProductByCategory?openview&amp;restricttocategory=LotusScript"&gt;LotusScript&lt;/a&gt; &lt;br&gt;&lt;b&gt;Idea:&lt;/b&gt; 
&lt;div&gt;If you %Import e.g. errconst.lss in some script libraries and Use them in one place, the compiler complains, that a constant with the same name is already declared.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;This is right and prevents some &amp;quot;evil&amp;quot; effects, but results in a basic script library to %Import all lss-files to be included everywhere.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;If the compiler would check for the constants' values and if both have the same value, it could ignore the duplicate declaration (and use either one internally).&lt;/div&gt;&lt;br&gt;</description>
		<link>http://ideajam.net/ideajam/p/ij.nsf/0/9282BF3FCE3B5B758625738800705F0B?OpenDocument</link>
	</item>
	<item>
		<pubDate>Sat, 03 Nov 2007 20:18:13 +0000</pubDate>
		<title>Domino Designer / : Add some "reflection" API to LotusScript</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Thomas Bahn&lt;br&gt;&lt;b&gt;Tags:&lt;/b&gt;  &lt;a href="http://ideajam.net/IdeaJam/P/ij.nsf/ProductByCategory?openview&amp;restricttocategory=LotusScript"&gt;LotusScript&lt;/a&gt; &lt;br&gt;&lt;b&gt;Idea:&lt;/b&gt; 
&lt;div&gt;In Java, there is an API to access the classes, methods, attributes itself. For example, you can get a Class using&lt;/div&gt;
&lt;div&gt;Class x = Class.forName(&amp;quot;classname&amp;quot;)&lt;/div&gt;
&lt;div&gt;and then create instances by&lt;/div&gt;
&lt;div&gt;x.newInstance()&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;There lies a lot of &lt;strong&gt;magic&lt;/strong&gt; in this capability!&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;br&gt;</description>
		<link>http://ideajam.net/ideajam/p/ij.nsf/0/247EC997C3A62F8C86257388006F8814?OpenDocument</link>
	</item>
	<item>
		<pubDate>Sat, 03 Nov 2007 20:21:22 +0000</pubDate>
		<title>Domino Designer / : Add Function type for variables, attributes and parameters</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Thomas Bahn&lt;br&gt;&lt;b&gt;Tags:&lt;/b&gt;  &lt;a href="http://ideajam.net/IdeaJam/P/ij.nsf/ProductByCategory?openview&amp;restricttocategory=LotusScript"&gt;LotusScript&lt;/a&gt; &lt;br&gt;&lt;b&gt;Idea:&lt;/b&gt; 
&lt;div&gt;Create a new type for variables, attributes and parameters: &lt;strong&gt;Function&lt;/strong&gt; (like in JavaScript).&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;This way you can pass functions as parameters in procedure calls, e. g. for call-back functionality.&lt;/div&gt;&lt;br&gt;</description>
		<link>http://ideajam.net/ideajam/p/ij.nsf/0/EA8E6DF7336689F886257388006FD201?OpenDocument</link>
	</item>
	<item>
		<pubDate>Sat, 03 Nov 2007 20:05:37 +0000</pubDate>
		<title>Domino Designer / : Add namespaces/packages to LotusScript</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Thomas Bahn&lt;br&gt;&lt;b&gt;Tags:&lt;/b&gt;  &lt;a href="http://ideajam.net/IdeaJam/P/ij.nsf/ProductByCategory?openview&amp;restricttocategory=LotusScript"&gt;LotusScript&lt;/a&gt;  &lt;a href="http://ideajam.net/IdeaJam/P/ij.nsf/ProductByCategory?openview&amp;restricttocategory=OOP"&gt;OOP&lt;/a&gt; &lt;br&gt;&lt;b&gt;Idea:&lt;/b&gt; 
&lt;div&gt;For bigger applications, OO frameworks, reusable components in other OO language there is a concept of &lt;strong&gt;namespaces &lt;/strong&gt;or &lt;strong&gt;packages&lt;/strong&gt;.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;This would be useful in LotusScript, too.&lt;/div&gt;&lt;br&gt;</description>
		<link>http://ideajam.net/ideajam/p/ij.nsf/0/A48CEB977985DB3F86257388006E60B1?OpenDocument</link>
	</item>
	<item>
		<pubDate>Sat, 03 Nov 2007 21:53:35 +0000</pubDate>
		<title>Domino Designer / : List Members + Parameter Info for custom classes in LotusScript</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Thomas Bahn&lt;br&gt;&lt;b&gt;Tags:&lt;/b&gt;  &lt;a href="http://ideajam.net/IdeaJam/P/ij.nsf/ProductByCategory?openview&amp;restricttocategory=LotusScript"&gt;LotusScript&lt;/a&gt;  &lt;a href="http://ideajam.net/IdeaJam/P/ij.nsf/ProductByCategory?openview&amp;restricttocategory=OOP"&gt;OOP&lt;/a&gt; &lt;br&gt;&lt;b&gt;Idea:&lt;/b&gt; 
&lt;div&gt;Enhance List Members and Parameter Info (auto-completion feature) in Domino Designer to work for custom LotusScript classes.&lt;/div&gt;&lt;br&gt;</description>
		<link>http://ideajam.net/ideajam/p/ij.nsf/0/8607F37527DF1BDF862573880078437B?OpenDocument</link>
	</item>
	<item>
		<pubDate>Sat, 03 Nov 2007 21:47:41 +0000</pubDate>
		<title>Domino Designer / : Add NotesUI classes to Java</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Thomas Bahn&lt;br&gt;&lt;b&gt;Tags:&lt;/b&gt;  &lt;a href="http://ideajam.net/IdeaJam/P/ij.nsf/ProductByCategory?openview&amp;restricttocategory=Java"&gt;Java&lt;/a&gt; &lt;br&gt;&lt;b&gt;Idea:&lt;/b&gt; 
&lt;div&gt;Add the NotesUI classes like NotesUIDocument, NotesUIWorkspace etc. to the Java Notes-API.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;This would allow programming Notes client applications completely with Java (and @formulas/JavaScript) and thus replacing LoutsScript. I see this as an alternative to enhance LotusScript to become a &amp;quot;real&amp;quot; OO language.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;br&gt;</description>
		<link>http://ideajam.net/ideajam/p/ij.nsf/0/9E31A9E37C627BDE862573880077B924?OpenDocument</link>
	</item>
	<item>
		<pubDate>Sun, 04 Nov 2007 13:20:34 +0000</pubDate>
		<title>re: List Members + Parameter Info for custom classes in LotusScript</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Jens Polster&lt;br /&gt;&lt;b&gt;Comment:&lt;/b&gt; I hope to see that in the Eclipse based Domino Designer.&lt;br /&gt;</description>
		<link>http://ideajam.net/ideajam/p/ij.nsf/0/8607F37527DF1BDF862573880078437B?opendocument&amp;#commentsanc&amp;id=0249468626A6700D8625738900494B7F</link>
	</item>
	<item>
		<pubDate>Sun, 04 Nov 2007 18:11:19 +0000</pubDate>
		<title>re: BUG: RSS feed isn't valid</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Matt White&lt;br /&gt;&lt;b&gt;Comment:&lt;/b&gt; Thanks for the tip Thomas, we've fixed this in our dev system. It will be released some over the next few days.&lt;br /&gt;</description>
		<link>http://ideajam.net/ideajam/p/ij.nsf/0/E1D692BC14BC658D86257388006A406B?opendocument&amp;#commentsanc&amp;id=8DE3A98241CB0350862573890063E9FD</link>
	</item>
	<item>
		<pubDate>Mon, 05 Nov 2007 06:09:32 +0000</pubDate>
		<title>re: Add some "reflection" API to LotusScript</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Dan Sickles&lt;br /&gt;&lt;b&gt;Comment:&lt;/b&gt; this and first class functions along with the current ability to create untyped variables would make LS a real dynamic language (modulo metaclasses). Lotusscript could be fun!&lt;br /&gt;</description>
		<link>http://ideajam.net/ideajam/p/ij.nsf/0/247EC997C3A62F8C86257388006F8814?opendocument&amp;#commentsanc&amp;id=58F0219CB43611D18625738A0021D54B</link>
	</item>
	<item>
		<pubDate>Mon, 05 Nov 2007 09:14:52 +0000</pubDate>
		<title>re: Add NotesUI classes to Java</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Axel Janssen&lt;br /&gt;&lt;b&gt;Comment:&lt;/b&gt; If that were simple to implement for Lotus, it would have been done yet. Better build notes UI dev for Notes8 from scratch by base it on Eclipse RCP / JFace/swt (without downward compability for non-Eclipse Notes Clients).&lt;br /&gt;</description>
		<link>http://ideajam.net/ideajam/p/ij.nsf/0/9E31A9E37C627BDE862573880077B924?opendocument&amp;#commentsanc&amp;id=2F2D3B5D3E836BBA8625738A0032CCD8</link>
	</item>
	<item>
		<pubDate>Mon, 05 Nov 2007 14:01:46 +0000</pubDate>
		<title>re: List Members + Parameter Info for custom classes in LotusScript</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Tom Oneil&lt;br /&gt;&lt;b&gt;Comment:&lt;/b&gt; Sorry about the duplicate... I searched for type ahead before creating my entry.&lt;br /&gt;</description>
		<link>http://ideajam.net/ideajam/p/ij.nsf/0/8607F37527DF1BDF862573880078437B?opendocument&amp;#commentsanc&amp;id=FD257C661415A9038625738A004D1148</link>
	</item>
	<item>
		<pubDate>Mon, 05 Nov 2007 22:20:25 +0000</pubDate>
		<title>re: Full DXL round-trip</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Thomas Bahn&lt;br /&gt;&lt;b&gt;Comment:&lt;/b&gt; RichText is stored in data structures. In C/C++ it should be no problem to "serialize" these structures into byte stream and encode those streams in Base64.&lt;br /&gt;For the import, the stream could be decoded and "deserialized". &lt;br /&gt; &lt;br /&gt; If you store the RichText in the nsf file, exactly this must take place (without the encoding). Why should it be impossible for DXL?&lt;br /&gt;&lt;br /&gt;I do not assume, they will ever get RichText into a DXL representation with nodes and attribute, but a Base64 byte stream...&lt;br /&gt;</description>
		<link>http://ideajam.net/ideajam/p/ij.nsf/0/56D12B73FE788391862573880082FC33?opendocument&amp;#commentsanc&amp;id=04BAB404F8CC9CD68625738A007AB85F</link>
	</item>
	<item>
		<pubDate>Sun, 11 Nov 2007 15:39:45 +0000</pubDate>
		<title>re: Use stop words for tags</title>
		<description>&lt;b&gt;Author:&lt;/b&gt; Matt White&lt;br /&gt;&lt;b&gt;Comment:&lt;/b&gt; I don't disagree Thomas. The reason I'm demoting though is that I would like tags to happen organically. Also I'm worried that maintaining a black list of tags could become a maintenance problem. We are trying to make the system as low maintenance as possible.&lt;br /&gt;</description>
		<link>http://ideajam.net/ideajam/p/ij.nsf/0/07B474C8504147F186257390004CF8EE?opendocument&amp;#commentsanc&amp;id=30E57EC264902F878625739000560983</link>
	</item>
</channel></rss>
