<?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>LOTUSCONNECTIONS.org &#187; blogs</title>
	<atom:link href="http://www.lotusconnections.org/wordpress/index.php/tag/blogs/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lotusconnections.org/wordpress</link>
	<description>Wikipedia &#34;Lotus Connections is often described as the leading product in enterprise social software market&#34;</description>
	<lastBuildDate>Thu, 29 Jul 2010 15:49:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Blogs &#8211; Uploading files, specifying MIME type in WAS not longer needed</title>
		<link>http://www.lotusconnections.org/wordpress/index.php/2009/03/blogs-uploading-files-specifying-mime-type-in-was-not-longer-needed/</link>
		<comments>http://www.lotusconnections.org/wordpress/index.php/2009/03/blogs-uploading-files-specifying-mime-type-in-was-not-longer-needed/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 21:43:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[lotus connections]]></category>
		<category><![CDATA[blogs]]></category>

		<guid isPermaLink="false">http://www.lotusconnections.org/wordpress/index.php/2009/03/blog-s-uploading-files-specifying-mime-type-in-was-not-longer-needed/</guid>
		<description><![CDATA[Think this topic is a bit outdated but just giving it a go to spread the info.
Few months back posted this one, it&#8217;s about the errors you get when specifying&#160; alternate files to upload in a blog. For every file you would like to upload in blogs you had to specify the MIME type in [...]]]></description>
			<content:encoded><![CDATA[<p>Think this topic is a bit outdated but just giving it a go to spread the info.</p>
<p>Few months back posted this <a target="_blank" href="http://www.lotusconnections.org/wordpress/index.php/2008/10/uploading-ms-office-files-into-a-blog/">one</a>, it&#8217;s about the errors you get when <br />specifying&nbsp; alternate files to upload in a blog. For every file you would<br /> like to upload in blogs you had to specify the MIME type in the WAS console.</p>
<p>Found out that this kind of configuration is not longer required in LC 2.0.1. <br />Also had this confirmed by the guys of IBM.</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=cf7530b2-12a5-48dc-b1d0-582b60dc93b6" /></div>
]]></content:encoded>
			<wfw:commentRss>http://www.lotusconnections.org/wordpress/index.php/2009/03/blogs-uploading-files-specifying-mime-type-in-was-not-longer-needed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image resizing in Blogs</title>
		<link>http://www.lotusconnections.org/wordpress/index.php/2009/01/image-resizing-in-blogs/</link>
		<comments>http://www.lotusconnections.org/wordpress/index.php/2009/01/image-resizing-in-blogs/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 13:15:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[lotus connections]]></category>
		<category><![CDATA[blogs]]></category>

		<guid isPermaLink="false">http://www.lotusconnections.org/wordpress/?p=138</guid>
		<description><![CDATA[The default behavior for images used in Blog post is to be scaled down to a
maximum of 350px, both width and height, aspect ratio is kept.
This is not really handy for screenshots that are posted on Blogs.
Thanks to the reply of Chris Whisonant at the Lotus Connections forum
I learned how to configure this behavior.
http://www-10.lotus.com/ldd/lcforum.nsf/DateAllThreadedweb/42a2b16da056408bc12575210040b42f?OpenDocument
Made some [...]]]></description>
			<content:encoded><![CDATA[<p>The default behavior for images used in Blog post is to be scaled down to a<br />
maximum of 350px, both width and height, aspect ratio is kept.</p>
<p>This is not really handy for screenshots that are posted on Blogs.</p>
<p>Thanks to the reply of Chris Whisonant at the Lotus Connections forum<br />
I learned how to configure this behavior.</p>
<p><a title="http://www-10.lotus.com/ldd/lcforum.nsf/DateAllThreadedweb/42a2b16da056408bc12575210040b42f?OpenDocument" href="http://www-10.lotus.com/ldd/lcforum.nsf/DateAllThreadedweb/42a2b16da056408bc12575210040b42f?OpenDocument">http://www-10.lotus.com/ldd/lcforum.nsf/DateAllThreadedweb/42a2b16da056408bc12575210040b42f?OpenDocument</a></p>
<p>Made some extra edits so that scaled down images are clickable and a<br />
full version of the image opens in a new window when you click on it.</p>
<p>Tested it with Firefox and IE</p>
<p>Changed the code in the file _day.vm as follow.</p>
<p>/opt/IBM/WebSphere/AppServer/profiles/AppSrv01/installedApps/localhostNode01Cell/Blogs.ear/blogs.war/themes/blog # vi _day.vm</p>
<p>function openImage(item)<br />
{<br />
window.open(item);<br />
}</p>
<p>dojo.addOnLoad(function(){<br />
dojo.query(&#8216;.entryContentContainer img&#8217;).forEach(<br />
function(item){</p>
<p>if(item.style != undefined &amp;&amp; item.style.width != undefined &amp;&amp; item.style.width == &#8220;100%&#8221;)<br />
return;<br />
if (item.width &gt; 400) {<br />
item.height = item.height * (400/item.width);<br />
item.width = 400;<br />
item.onclick=function(){openImage(this.src)};<br />
item.style.cursor=&#8217;pointer&#8217;;<br />
}<br />
}<br />
);<br />
});<br />
<span><span style="font-size: xx-small; font-family: Default Sans Serif;"><br />
</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lotusconnections.org/wordpress/index.php/2009/01/image-resizing-in-blogs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Uploading MS Office files into a blog</title>
		<link>http://www.lotusconnections.org/wordpress/index.php/2008/10/uploading-ms-office-files-into-a-blog/</link>
		<comments>http://www.lotusconnections.org/wordpress/index.php/2008/10/uploading-ms-office-files-into-a-blog/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 18:23:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[lotus connections]]></category>
		<category><![CDATA[blogs]]></category>

		<guid isPermaLink="false">http://www.lotusconnections.org/wordpress/?p=39</guid>
		<description><![CDATA[In the Blogs administration tab we defined the following files
that are allowed to be uploaded.
txt,ppt,doc,pdf,xls,pptx,docx,xlsx,mmap,png,gif,jpeg,jpg,odt,rtf
After applying this change we could upload any of the files
mentioned in Allowed extensions.
But when clicking on a MS office file (.doc, .xls, .ppt, .docx, .xlsx, pptx )
that you just uploaded it will give you an error.
Unexpected Exception
Blogs has encountered and [...]]]></description>
			<content:encoded><![CDATA[<p>In the Blogs administration tab we defined the following files<br />
that are allowed to be uploaded.</p>
<p>txt,ppt,doc,pdf,xls,pptx,docx,xlsx,mmap,png,gif,jpeg,jpg,odt,rtf</p>
<p>After applying this change we could upload any of the files<br />
mentioned in Allowed extensions.</p>
<p>But when clicking on a MS office file (.doc, .xls, .ppt, .docx, .xlsx, pptx )<br />
that you just uploaded it will give you an error.</p>
<p>Unexpected Exception</p>
<p>Blogs has encountered and logged an unexpected exception.</p>
<p>When you want to upload MS office files into a blog you must specify<br />
the Mime type in the WAS admin console. ( same rule applies if you<br />
would like to upload .mp3 files in to your blog, you will have to enter<br />
the Mime type for MP3 files in the WAS admin console )</p>
<p>http://publib.boulder.ibm.com/infocenter/wasinfo/v6r0//index.jsp?topic=/com.ibm.websphere.base.doc/info/aes/ae/urun_rvhost_mime.html</p>
<p>So navigate to the this part of the WAS admin console</p>
<p>WASadmin console -&gt; Environment -&gt; Virtual Hosts &gt; default_host &gt; MIME Types</p>
<p>And add the following three mimetypes to be able to upload MS office 2007 files</p>
<p>pptx application/vnd.openxmlformats-officedocument.presentationml.presentation<br />
xlsx application/vnd.openxmlformats-officedocument.spreadsheetml.sheet<br />
docx application/vnd.openxmlformats-officedocument.wordprocessingml.document</p>
<p>If you want to upload MS office files in the old .doc/.xls/.ppt format you will have<br />
to add these three mime types listed below.</p>
<p>xls application/msexcel<br />
ppt application/mspowerpoint<br />
doc application/msword</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lotusconnections.org/wordpress/index.php/2008/10/uploading-ms-office-files-into-a-blog/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
