<?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>SharePoint &#187; Flash</title>
	<atom:link href="http://www.sharepointboris.net/category/flash/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sharepointboris.net</link>
	<description>and Boris Gomiunik</description>
	<lastBuildDate>Thu, 22 Dec 2011 11:45:36 +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>ERTE 1.2 released</title>
		<link>http://www.sharepointboris.net/2009/05/erte-12-released/</link>
		<comments>http://www.sharepointboris.net/2009/05/erte-12-released/#comments</comments>
		<pubDate>Wed, 06 May 2009 17:02:00 +0000</pubDate>
		<dc:creator>Boris Gomiunik</dc:creator>
				<category><![CDATA[ERTE]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://boris.gomiunik.net/2009/05/erte-12-released/</guid>
		<description><![CDATA[Thanks Michael for pointing the issue out. I’ve finally caught up on some work that needed to be done on ERTE and now the new version is available for download. The updates are as follows: Fix for IE8, wrapped the thing in a function so you can run it on custom event added support for [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks <a href="sharepoint.microsoft.com/blogs/mikeg/default.aspx" target="_blank">Michael</a> for pointing the issue out. I’ve finally caught up on some work that needed to be done on ERTE and now the new version is available for download. The updates are as follows:</p>
<ul>
<li>Fix for IE8,</li>
<li>wrapped the thing in a function so you can run it on custom event</li>
<li>added support for _spBodyOnLoadFunctionNames array if it exists</li>
<li>set the button image location in a variable</li>
<li>added French language supprt. Thanks Slash71</li>
<li>isolated so it inserts only the &lt;embed… &lt;/embed&gt; part of code (to help bypass some limitations on truncated announcements views, if the embed code has &lt;object,…&gt;&lt;/object&gt;.</li>
</ul>
<p>Curently there are only 3 languages supported – English, Slovenian and French. If you have 5 minutes of time, you also could contribute to this project. All you need to do is translate one line of text and send it to me. Maybe you can even post it as a comment so you’ll be recognized <img src='http://www.sharepointboris.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Download the latest version from <a href="http://www.codeplex.com/erte" target="_blank">CodePlex site</a></p>
<div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:c1a77db0-0d97-44e7-a14a-97ee807e7199" class="wlWriterEditableSmartContent" style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px">Oznake ponudnika Technorati: <a rel="tag" href="http://technorati.com/tags/SharePoint">SharePoint</a>,<a rel="tag" href="http://technorati.com/tags/Rich+Text+Control">Rich Text Control</a>,<a rel="tag" href="http://technorati.com/tags/Flash">Flash</a>,<a rel="tag" href="http://technorati.com/tags/Embed">Embed</a>,<a rel="tag" href="http://technorati.com/tags/Video">Video</a></div>
<p><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointboris.net/2009/05/erte-12-released/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Quickly filter a List/Document Library View using URL</title>
		<link>http://www.sharepointboris.net/2008/02/quickly-filter-a-listdocument-library-view-using-url/</link>
		<comments>http://www.sharepointboris.net/2008/02/quickly-filter-a-listdocument-library-view-using-url/#comments</comments>
		<pubDate>Wed, 27 Feb 2008 11:38:00 +0000</pubDate>
		<dc:creator>Boris Gomiunik</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://doma.gomiunik.net/?p=98</guid>
		<description><![CDATA[This one&#8217;s very useful when you&#8217;re having a lot of items in a list or document library and you need a quick filter. If you&#8217;ll select the filter field it can happen that it will load for a long time. So lately I&#8217;m using URL. Suppose you have a long list of contacts and you [...]]]></description>
			<content:encoded><![CDATA[<p>This one&#8217;s very useful when you&#8217;re having a lot of items in a list or document library and you need a quick filter.</p>
</p>
<p>If you&#8217;ll select the filter field it can happen that it will load for a long time. So lately I&#8217;m using URL. Suppose you have a long list of contacts and you need to find a contact named Boris.</p>
</p>
<p>In the AllItems.aspx &#8211; view of the page, add parameters   </p>
<p><strong>?FilterField1=[Field Name]&amp;FilterValue1=[Value]</strong></p>
</p>
<p>You can add more filterfield and filtervalue parameters to apply filters to more fields (FilterField2, FilterValue2, &#8230;)
</p>
<p>The only trick is to know the Field Name like it&#8217;s saved in SharePoint. You can see this in the list settings page (click on a column name and check URL) or just make a manual filter for the first time.</p>
</p>
<p>In my case to find a contact with First Name Boris, I&#8217;d go to </p>
</p>
<p><a href="http://[site_URL]/lists/contacts/AllItems.aspx?FilterField1=FirstName&amp;FilterValue1=Boris">http://[site_URL]/lists/contacts/AllItems.aspx?FilterField1=FirstName&amp;FilterValue1=Boris</a></p>
</p>
<p>
<p>I&#8217;m always browsing a document library with filtering by specific document type. So I&#8217;ve created a simple script. Just add a Content Editor Webpart to your homepage, edit its source and add the following code (just update the url to your document library (docLibUrl):</p>
</p>
<p><strong>&lt;script type=&quot;text/javascript&quot;&gt;     <br />function docLib(dropdown) {      <br />&#160; var vtype = dropdown.options[dropdown.selectedIndex].value;      <br />&#160; var docLibUrl = &quot;/Shared Documents/Forms/AllItems.aspx&quot;;      <br />&#160; var filterField = &quot;DocIcon&quot;      <br />&#160; if (vtype != &#8216;Select&#8217;) {      <br />&#160;&#160;&#160; document.location=docLibUrl+&quot;?FilterField1=&quot;+filterField+&quot;&amp;FilterValue1=&quot;+vtype;      <br />&#160; }      <br />}      <br />&lt;/script&gt;      <br />&lt;select style=&quot;margin:10px; 0px;&quot; id=&quot;DocumentTypes&quot; onchange=&quot;docLib(this)&quot;&gt;      <br /> &lt;option value=&quot;Select&quot;&gt;Select document type&lt;/option&gt;      <br /> &lt;option value=&quot;Select&quot;&gt;&#8211; Office 2007 &#8211;&lt;/option&gt;      <br /> &lt;option value=&quot;docx&quot;&gt;Word 2007&lt;/option&gt;      <br /> &lt;option value=&quot;xlsx&quot;&gt;Excel 2007&lt;/option&gt;      <br /> &lt;option value=&quot;pptx&quot;&gt;PowerPoint 2007&lt;/option&gt;      <br /> &lt;option value=&quot;Select&quot;&gt;&#8211; Office 2003 &#8211;&lt;/option&gt;      <br /> &lt;option value=&quot;doc&quot;&gt;Word 2003&lt;/option&gt;      <br /> &lt;option value=&quot;xls&quot;&gt;Excel 2003&lt;/option&gt;      <br /> &lt;option value=&quot;ppt&quot;&gt;PowerPoint 2003&lt;/option&gt;      <br /> &lt;option value=&quot;Select&quot;&gt;&#8211; Other &#8211;&lt;/option&gt;      <br /> &lt;option value=&quot;pdf&quot;&gt;Acrobat (PDF)&lt;/option&gt;      <br />&lt;/select&gt;</strong></p>
</p>
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:e1898d8d-a55e-407c-bd30-bc0e3efc5306" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">Oznake ponudnika Technorati: <a href="http://technorati.com/tags/SharePoint" rel="tag">SharePoint</a>,<a href="http://technorati.com/tags/JavaScript" rel="tag">JavaScript</a></div>
<p><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointboris.net/2008/02/quickly-filter-a-listdocument-library-view-using-url/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Adding Flash animation in SharePoint Blog and other lists pt. 2</title>
		<link>http://www.sharepointboris.net/2008/02/adding-flash-animation-in-sharepoint-blog-and-other-lists-pt-2/</link>
		<comments>http://www.sharepointboris.net/2008/02/adding-flash-animation-in-sharepoint-blog-and-other-lists-pt-2/#comments</comments>
		<pubDate>Tue, 26 Feb 2008 22:45:00 +0000</pubDate>
		<dc:creator>Boris Gomiunik</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[SharePoint]]></category>

		<guid isPermaLink="false">http://doma.gomiunik.net/?p=97</guid>
		<description><![CDATA[This post continues the topic from my first part about embedding Flash videos in SharePoint Blogs where we&#8217;ve learned how to embed one Flash animation or video (or have a lot of work for publishing each flash).&#160; The problem arises if we want to embed more videos and have them displayed automatically. Since SharePoint is [...]]]></description>
			<content:encoded><![CDATA[<p>This post continues the topic from my <a href="http://webborg.blogspot.com/2008/02/adding-flash-animation-in-sharepoint.html">first part</a> about embedding Flash videos in SharePoint Blogs where we&#8217;ve learned how to embed one Flash animation or video (or have a lot of work for publishing each flash).&#160; The problem arises if we want to embed more videos and have them displayed automatically. </p>
</p>
<p>Since SharePoint is very strict about filtering a LOT of the code out, I&#8217;ve devised a way of passing all the parameters needed for swf object through ID. And how to recognize divs for the swfobject? Using CSS class name.</p>
</p>
<p>Here&#8217;s what we need to do:</p>
</p>
<p>1. Have te swfobject.js uploaded to the site.</p>
</p>
<p>2. Add the following javascript at the end of the page (or in a Content editor webpart below the posts or list items:</p>
</p>
<p> <strong>&lt;script type=&quot;text/javascript&quot; src=&quot;swfobject.js&quot;&gt;&lt;/script&gt;</strong>
<p><strong>&lt;script type=&quot;text/javascript&quot;&gt;</strong></p>
<p><strong>function embedFlashes() {       <br />&#160;&#160;&#160; var myLayers = document.getElementsByTagName(&#8216;div&#8217;);        <br />&#160;&#160;&#160; if (myLayers.length&gt;0) {        <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; var myFlashes = new Array()        <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; for (i=1; i&lt;myLayers.length; i++) {        <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (myLayers[i].className == &#8216;flashcontent&#8217;) {        <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; myFlashes.push(myLayers[i].id)        <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }        <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; }        <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; var so = new Array()        <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; for (j=0; j&lt;myFlashes.length; j++) {        <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; tempParam = myFlashes[j].split(&#8216;::&#8217;)        <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; so[j] = new SWFObject(tempParam[0], tempParam[1], tempParam[2], tempParam[3], tempParam[4], tempParam[5]);        <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; for (p=6; p&lt;tempParam.length; p++) {        <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; detail = tempParam[p].split(&#8216;=&#8217;)        <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; so[j].addVariable(detail[0], detail[1])        <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }        <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; so[j].write(myFlashes[j])        <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; }        <br />&#160;&#160;&#160; }        <br />}</strong></p>
</p>
<p><strong>embedFlashes()     <br />&lt;/script&gt;</strong></p>
</p>
<p>3. Now in the content you need to edit the HTML code of the body and insert the layers in the following format (note &#8211; input parameters are separated by double colon.:</p>
</p>
<p><strong>&lt;div class=&quot;flashcontent&quot; id=&quot;[url_of_swf_file]::[unique_id]::[width]::[height]::[minimum_flash_version]::[background_color]::[flashvar1=flashvar1_value]::[flashvar2=flashvar2_value]&#8230;&quot;&gt;[Alternate_content]&lt;/div&gt;</strong></p>
</p>
<p>
<p>Let&#8217;s reuse the sample from previous post and some color coding. To embed</p>
</p>
<p> &lt;object width=&quot;<font color="#ff0000">425</font>&quot; height=&quot;<font color="#ff0000">355</font>&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;<font color="#000080">http://www.youtube.com/v/Z2yNzw00mpA&amp;rel=1</font>&quot;&gt;&lt;/param&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;<font color="#000080">http://www.youtube.com/v/Z2yNzw00mpA&amp;rel=1</font>&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; width=&quot;<font color="#ff0000">425</font>&quot; height=&quot;<font color="#ff0000">355</font>&quot;&gt;&lt;/embed&gt;&lt;/object&gt;</p>
</p>
<p>Insert the following html to the blog post body:</p>
</p>
<p><strong>&lt;div class=&quot;flashcontent&quot; id=&quot;<font color="#000080">http://www.youtube.com/v/Z2yNzw00mpA&amp;rel=1</font>::video01::<font color="#ff0000">425</font>::<font color="#ff0000">355</font>::8::#FFFFFF&quot;&gt;Please view this post on my website to display the video.&lt;/div&gt;</strong></p>
</p>
<p> The rest of parameters are made up &#8211; video ID is video1, it requires flash 8 and background color is #FFFFFF &#8211; white. Let&#8217;s do another sample with flashvars &#8211; the same video on <a href="http://video.msn.com/video.aspx?vid=d41e1dfd-919b-4d57-89c9-736f9c75db14" target="_blank">MSN Video</a>. The Embed code is:  </p>
<p>&lt;embed
<p>src=&quot;<font color="#000080">http://images.video.msn.com/flash/soapbox1_1.swf</font>&quot; quality=&quot;high&quot; width=&quot;<font color="#ff0000">432</font>&quot; height=&quot;<font color="#ff0000">364</font>&quot; base=&quot;http://images.video.msn.com&quot; type=&quot;application/x-shockwave-flash&quot;       <br />allowFullScreen=&quot;true&quot; allowScriptAccess=&quot;always&quot; pluginspage=&quot;http://macromedia.com/go/getflashplayer&quot; flashvars=&quot;<font color="#800000">c=v</font>&amp;<font color="#800000">v=d41e1dfd-919b-4d57-89c9-736f9c75db14</font>&amp;<font color="#800000">ifs=true</font>&amp;<font color="#800000">fr=msnvideo</font>&amp;<font color="#800000">mkt=en-US</font>&amp;<font color="#800000">brand=</font>&quot;&gt;&lt;/embed&gt;</p>
</p>
<p> To embed this video you&#8217;d use the following HTML code:    <br />&#160;</p>
<p><strong>&lt;div class=&quot;flashcontent&quot; id=&quot;<font color="#000080">http://images.video.msn.com/flash/soapbox1_1.swf</font>::MSNVideo01::<font color="#ff0000">432</font>::<font color="#ff0000">364</font>::8::#FFFFFF::<font color="#800000">c=v</font>::<font color="#800000">v=d41e1dfd-919b-4d57-89c9-736f9c75db14</font>::<font color="#800000">ifs=true</font>::<font color="#800000">fr=msnvideo</font>::<font color="#800000">mkt=en-US</font>::<font color="#800000">brand=</font>&quot;&gt;Please view this post on my website to display the video.&lt;/div&gt;</strong></p>
</p>
<p>And the result:</p>
<p><img src="http://farm3.static.flickr.com/2327/2294182631_028385416f_o.gif" /></p>
<p>&#160;</p>
<p>Yeee, working!</p>
</p>
<h5>Technorati tags: <a href="http://technorati.com/tag/SharePoint">SharePoint</a> <a href="http://technorati.com/tag/JavaScript">JavaScript</a> <a href="http://technorati.com/tag/Flash">Flash</a> <a href="http://technorati.com/tag/SharePoint+Blog">SharePoint Blog</a></h5>
<p><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointboris.net/2008/02/adding-flash-animation-in-sharepoint-blog-and-other-lists-pt-2/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Unable to create SharePoint list from Excel (import spreadsheet)</title>
		<link>http://www.sharepointboris.net/2007/07/unable-to-create-sharepoint-list-from-excel-import-spreadsheet/</link>
		<comments>http://www.sharepointboris.net/2007/07/unable-to-create-sharepoint-list-from-excel-import-spreadsheet/#comments</comments>
		<pubDate>Mon, 09 Jul 2007 06:46:00 +0000</pubDate>
		<dc:creator>Boris Gomiunik</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://doma.gomiunik.net/?p=71</guid>
		<description><![CDATA[If you&#8217;re trying to import spreadsheet to create a SharePoint list in SharePoint 3.0 you can receive some errors. This especially occurs if you&#8217;re using Excel 2003. Thanks to Matjaž from Portorož, there is a resolution to this problem: update office 2003 to at least SP2 and the problem will go away.]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re trying to import spreadsheet to create a SharePoint list in SharePoint 3.0 you can receive some errors. This especially occurs if you&#8217;re using Excel 2003. </p>
</p>
<p>Thanks to Matjaž from Portorož, there is a resolution to this problem: <em>update office 2003 to at least SP2</em> and the problem will go away.<!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointboris.net/2007/07/unable-to-create-sharepoint-list-from-excel-import-spreadsheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Cannot connect to the configuration database&#8221; and SharePoint</title>
		<link>http://www.sharepointboris.net/2007/05/cannot-connect-to-the-configuration-database-and-sharepoint/</link>
		<comments>http://www.sharepointboris.net/2007/05/cannot-connect-to-the-configuration-database-and-sharepoint/#comments</comments>
		<pubDate>Fri, 04 May 2007 07:51:00 +0000</pubDate>
		<dc:creator>Boris Gomiunik</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[windows vista]]></category>

		<guid isPermaLink="false">http://doma.gomiunik.net/?p=63</guid>
		<description><![CDATA[Today I&#8217;ve received another of the cases when SharePoint (v2) couldn&#8217;t connect to the configuration database. This can be a common problem but it&#8217;s not so horrible to solve it. The reason for this is that SharePoint lost the connection to the database. Reasons may be the following: SQL or WMSDE database may not be [...]]]></description>
			<content:encoded><![CDATA[<p>Today I&#8217;ve received another of the cases when SharePoint (v2) couldn&#8217;t connect to the configuration database. This can be a common problem but it&#8217;s not so horrible to solve it.</p>
</p>
<p>The reason for this is that SharePoint lost the connection to the database.</p>
</p>
<p>Reasons may be the following:</p>
</p>
<ul>
<li>
<p>SQL or WMSDE database may not be running</p>
<li>IIS may be running in IIS 5.0 isolation mode
<li>The account for connecting to SQL or WMSDE might be gone or with changed password</li>
<li><em>update &#8211; </em>SQL Server Embedded Edition might not be running (check services) &#8211; Thanks, deanoc (see the comments)</li>
</ul>
<p>The solution to these is on the following link:</p>
</p>
<p><a title="http://support.microsoft.com/kb/823287/en-us" href="http://support.microsoft.com/kb/823287/en-us">http://support.microsoft.com/kb/823287/en-us</a></p>
</p>
<p>But I&#8217;ve found <strong>another reason</strong> that could be. Simple: The SQL is running, credentials are also ok and IIS isn&#8217;t in the 5.0 isolation mode. The problem may occur if <strong>sharepoint simply can&#8217;t find the database</strong>. Reasons for this may be many: the database has moved, dns has changed, &#8230; In my case was the later. By changing the DNS server in the network we&#8217;ve had to add one more record manually to point to the correct one and the sites started to work.<!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointboris.net/2007/05/cannot-connect-to-the-configuration-database-and-sharepoint/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Blog easier</title>
		<link>http://www.sharepointboris.net/2007/02/blog-easier/</link>
		<comments>http://www.sharepointboris.net/2007/02/blog-easier/#comments</comments>
		<pubDate>Thu, 15 Feb 2007 16:17:00 +0000</pubDate>
		<dc:creator>Boris Gomiunik</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Free tools]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://doma.gomiunik.net/?p=55</guid>
		<description><![CDATA[Even though all of the blog providers enable very easy posting to blog, I still prefer to do it offline. One option is already presented &#8211; with Word 2007, which really simplifies the posting and work with pictures. Another good program for blogging is Windows Live Writer. And I&#8217;m using this one. Why this one? [...]]]></description>
			<content:encoded><![CDATA[<p>Even though all of the blog providers enable very easy posting to blog, I still prefer to do it offline. One option is already presented &#8211; with Word 2007, which really simplifies the posting and work with pictures.</p>
</p>
<p>Another good program for blogging is Windows Live Writer. And I&#8217;m using this one. Why this one? Because it has some really neat features, a lot of plugins available, etc. A nice thing is that it can also ping the servers for you, so you don&#8217;t have to do it manually. Below is a list of ping servers I&#8217;ve found. In writer you enter those under <strong>Tools</strong> &#8211;&gt; <strong>Preferences</strong> &#8211;&gt; <strong>Ping servers</strong>:</p>
</p>
<p><a href="http://1470.net/api/ping">http://1470.net/api/ping</a><br /><a href="http://api.feedster.com/ping">http://api.feedster.com/ping</a><br /><a href="http://api.feedster.com/ping.php">http://api.feedster.com/ping.php</a><br /><a href="http://api.moreover.com/ping">http://api.moreover.com/ping</a><br /><a href="http://api.moreover.com/RPC2">http://api.moreover.com/RPC2</a><br /><a href="http://api.my.yahoo.com/RPC2">http://api.my.yahoo.com/RPC2</a><br /><a href="http://api.my.yahoo.com/rss/ping">http://api.my.yahoo.com/rss/ping</a><br /><a href="http://bblog.com/ping.php">http://bblog.com/ping.php</a><br /><a href="http://bitacoras.net/ping">http://bitacoras.net/ping</a><br /><a href="http://blogdb.jp/xmlrpc">http://blogdb.jp/xmlrpc</a><br /><a href="http://blog.goo.ne.jp/XMLRPC">http://blog.goo.ne.jp/XMLRPC</a><br /><a href="http://blogmatcher.com/u.php">http://blogmatcher.com/u.php</a><br /><a href="http://bulkfeeds.net/rpc">http://bulkfeeds.net/rpc</a><br /><a href="http://coreblog.org/ping/">http://coreblog.org/ping/</a><br /><a href="http://mod-pubsub.org/kn_apps/blogchatt">http://mod-pubsub.org/kn_apps/blogchatt</a><br /><a href="http://ping.amagle.com/">http://ping.amagle.com/</a><br /><a href="http://ping.bitacoras.com">http://ping.bitacoras.com</a><br /><a href="http://ping.bloggers.jp/rpc/">http://ping.bloggers.jp/rpc/</a><br /><a href="http://ping.blogmura.jp/rpc/">http://ping.blogmura.jp/rpc/</a><br /><a href="http://ping.blo.gs/">http://ping.blo.gs/</a><br /><a href="http://ping.cocolog-nifty.com/xmlrpc">http://ping.cocolog-nifty.com/xmlrpc</a><br /><a href="http://pinger.blogflux.com/rpc/">http://pinger.blogflux.com/rpc/</a><br /><a href="http://ping.exblog.jp/xmlrpc">http://ping.exblog.jp/xmlrpc</a><br /><a href="http://ping.feedburner.com">http://ping.feedburner.com</a><br /><a href="http://ping.myblog.jp">http://ping.myblog.jp</a><br /><a href="http://pingqueue.com/rpc/">http://pingqueue.com/rpc/</a><br /><a href="http://ping.blogg.de/">http://ping.blogg.de/</a><br /><a href="http://ping.rootblog.com/rpc.php">http://ping.rootblog.com/rpc.php</a><br /><a href="http://ping.syndic8.com/xmlrpc.php">http://ping.syndic8.com/xmlrpc.php</a><br /><a href="http://ping.weblogalot.com/rpc.php">http://ping.weblogalot.com/rpc.php</a><br /><a href="http://ping.weblogs.se/">http://ping.weblogs.se/</a><br /><a href="http://rcs.datashed.net/RPC2/">http://rcs.datashed.net/RPC2/</a><br /><a href="http://rpc.blogbuzzmachine.com/RPC2">http://rpc.blogbuzzmachine.com/RPC2</a><br /><a href="http://rpc.blogrolling.com/pinger/">http://rpc.blogrolling.com/pinger/</a><br /><a href="http://rpc.britblog.com/">http://rpc.britblog.com/</a><br /><a href="http://rpc.icerocket.com:10080/">http://rpc.icerocket.com:10080/</a><br /><a href="http://rpc.newsgator.com/">http://rpc.newsgator.com/</a><br /><a href="http://rpc.pingomatic.com/">http://rpc.pingomatic.com/</a><br /><a href="http://rpc.tailrank.com/feedburner/RPC2">http://rpc.tailrank.com/feedburner/RPC2</a><br /><a href="http://rpc.technorati.com/rpc/ping">http://rpc.technorati.com/rpc/ping</a><br /><a href="http://rpc.weblogs.com/RPC2">http://rpc.weblogs.com/RPC2</a><br /><a href="http://rpc.wpkeys.com/">http://rpc.wpkeys.com/</a><br /><a href="http://services.newsgator.com/ngws/xmlrpcping.aspx">http://services.newsgator.com/ngws/xmlrpcping.aspx</a><br /><a href="http://signup.alerts.msn.com/alerts-PREP/submitPingExtended.doz">http://signup.alerts.msn.com/alerts-PREP/submitPingExtended.doz</a><br /><a href="http://topicexchange.com/RPC2">http://topicexchange.com/RPC2</a><br /><a href="http://trackback.bakeinu.jp/bakeping.php">http://trackback.bakeinu.jp/bakeping.php</a><br /><a href="http://www.a2b.cc/setloc/bp.a2b">http://www.a2b.cc/setloc/bp.a2b</a><br /><a href="http://www.bitacoles.net/ping.php">http://www.bitacoles.net/ping.php</a><br /><a href="http://www.blogdigger.com/RPC2">http://www.blogdigger.com/RPC2</a><br /><a href="http://www.blogoole.com/ping/">http://www.blogoole.com/ping/</a><br /><a href="http://www.blogoon.net/ping/">http://www.blogoon.net/ping/</a><br /><a href="http://www.blogpeople.net/servlet/weblogUpdates">http://www.blogpeople.net/servlet/weblogUpdates</a><br /><a href="http://www.blogroots.com/tb_populi.blog?id=1">http://www.blogroots.com/tb_populi.blog?id=1</a><br /><a href="http://www.blogshares.com/rpc.php">http://www.blogshares.com/rpc.php</a><br /><a href="http://www.blogsnow.com/ping">http://www.blogsnow.com/ping</a><br /><a href="http://www.blogstreet.com/xrbin/xmlrpc.cgi">http://www.blogstreet.com/xrbin/xmlrpc.cgi</a><br /><a href="http://www.holycowdude.com/rpc/ping/">http://www.holycowdude.com/rpc/ping/</a><br /><a href="http://www.lasermemory.com/lsrpc/">http://www.lasermemory.com/lsrpc/</a><br /><a href="http://www.imblogs.net/ping/">http://www.imblogs.net/ping/</a><br /><a href="http://www.mod-pubsub.org/kn_apps/blogchatter/ping.php">http://www.mod-pubsub.org/kn_apps/blogchatter/ping.php</a><br /><a href="http://www.newsisfree.com/RPCCloud">http://www.newsisfree.com/RPCCloud</a><br /><a href="http://www.newsisfree.com/xmlrpctest.php">http://www.newsisfree.com/xmlrpctest.php</a><br /><a href="http://www.popdex.com/addsite.php">http://www.popdex.com/addsite.php</a><br /><a href="http://www.snipsnap.org/RPC2">http://www.snipsnap.org/RPC2</a><br /><a href="http://www.weblogues.com/RPC/">http://www.weblogues.com/RPC/</a><br /><a href="http://xmlrpc.blogg.de">http://xmlrpc.blogg.de</a><br /><a href="http://xping.pubsub.com/ping/">http://xping.pubsub.com/ping/</a> </p>
<p>
<p>What would be also very neat is that it would be able to post to SharePoint (so I could use it also for <a href="http://boris.b4contact.com/eco">my other blog</a>). Other thing is that it could have those neat effects for pictures and save pictures also to SharePoint Library.</p>
</p>
<p>On the other hand Word is missing the auto ping functionality, editing the code, etc. So: Word team and Writer team: please get together and exchange knowlege <img src='http://www.sharepointboris.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
</p>
<div class="wlWriterSmartContent" id="0767317B-992E-4b12-91E0-4F059A8CECA8:ce6338ef-8a49-49aa-b050-08cdd54a404f" contenteditable="false" style="PADDING-RIGHT: 0px; DISPLAY: inline; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px">Technorati tags: <a href="http://technorati.com/tags/blog" rel="tag">blog</a>, <a href="http://technorati.com/tags/blogging" rel="tag">blogging</a>, <a href="http://technorati.com/tags/post" rel="tag">post</a></div>
<p><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointboris.net/2007/02/blog-easier/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint Document Library showing only folders and top-level items&#8230;</title>
		<link>http://www.sharepointboris.net/2007/02/sharepoint-document-library-showing-only-folders-and-top-level-items/</link>
		<comments>http://www.sharepointboris.net/2007/02/sharepoint-document-library-showing-only-folders-and-top-level-items/#comments</comments>
		<pubDate>Fri, 02 Feb 2007 18:18:00 +0000</pubDate>
		<dc:creator>Boris Gomiunik</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://doma.gomiunik.net/?p=53</guid>
		<description><![CDATA[Today I was moving the videos for our e-learning portal Piflar&#160;to the new Windows SharePoint Services.&#160;And after moving videos for couple of hours &#8211; all one by one, not to break the links in data views, I start on working on the data view to display the videos. And I get terrified! The data view [...]]]></description>
			<content:encoded><![CDATA[<p>Today I was moving the videos for our <a href="http://www.piflar.com/">e-learning portal Piflar</a>&nbsp;to the new Windows SharePoint Services.&nbsp;And after moving videos for couple of hours &#8211; all one by one, not to break the links in data views, I start on working on the data view to display the videos. And I get terrified! The data view is showing only the folders I&#8217;ve created and videos that were in the main folder. So after first shock I&#8217;ve discovered what to do:</p>
</p>
<p>1. After inserting the data source click on the name of the data source in the <em>Data Source Details </em>pane to open the properties dialog.
<ol>
<li>After inserting the data source click on the name of the data source in the <em>Data Source Details </em>pane to open the properties dialog.<br /><img src="http://www.piflar.com/boris/pics/20070202_SharePoint_Document_Libraries01.gif"> </p>
</li>
<li>In the&nbsp;<em>Item and folder scope</em>&nbsp;dropdown select value <em>RecursiveAll</em>.</li>
</ol>
<p><img src="http://www.piflar.com/boris/pics/20070202_SharePoint_Document_Libraries02.gif">&nbsp;</p>
<p>
<p>And all my data is back! Happy SharePointing <img src='http://www.sharepointboris.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
</p>
<div class="wlWriterSmartContent" id="0767317B-992E-4b12-91E0-4F059A8CECA8:0f372b50-ddbd-42fb-8fa1-fad67703ad75" contenteditable="false" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">Technorati tags: <a href="http://technorati.com/tags/sharepoint" rel="tag">sharepoint</a>, <a href="http://technorati.com/tags/data%20view" rel="tag">data view</a>, <a href="http://technorati.com/tags/sharepoint%20library" rel="tag">sharepoint library</a></div>
</p>
<p><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointboris.net/2007/02/sharepoint-document-library-showing-only-folders-and-top-level-items/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>50 coolest websites</title>
		<link>http://www.sharepointboris.net/2007/01/50-coolest-websites/</link>
		<comments>http://www.sharepointboris.net/2007/01/50-coolest-websites/#comments</comments>
		<pubDate>Fri, 05 Jan 2007 17:57:00 +0000</pubDate>
		<dc:creator>Boris Gomiunik</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://doma.gomiunik.net/?p=43</guid>
		<description><![CDATA[Time.com&#160;announced 50 coolest websites. So if you&#8217;re up for becoming the candidate for the next year, check and compare yourself to them. It&#8217;s a good starting point .]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.time.com/" target="_blank">Time.com</a>&nbsp;announced <a href="http://www.time.com/time/2006/50coolest/" target="_blank">50 coolest websites</a>. So if you&#8217;re up for becoming the candidate for the next year, check and compare yourself to them. It&#8217;s a good starting point <img src='http://www.sharepointboris.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointboris.net/2007/01/50-coolest-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update to previous post &#8211; offline active content</title>
		<link>http://www.sharepointboris.net/2006/12/update-to-previous-post-offline-active-content/</link>
		<comments>http://www.sharepointboris.net/2006/12/update-to-previous-post-offline-active-content/#comments</comments>
		<pubDate>Fri, 29 Dec 2006 18:52:00 +0000</pubDate>
		<dc:creator>Boris Gomiunik</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://doma.gomiunik.net/?p=42</guid>
		<description><![CDATA[If you&#8217;ll be making the offline version of a website and you&#8217;re thinking to include the active content like Flash or JavaScript (or both) you can surely use the Mark of the Web, which I&#8217;ve described in the previous post. There is a catch though. You can&#8217;t make the mark of the web for pictures. [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ll be making the offline version of a website and you&#8217;re thinking to include the active content like Flash or JavaScript (or both) you can surely use the Mark of the Web, which I&#8217;ve described in the previous post.</p>
</p>
<p>There is a catch though. You can&#8217;t make the mark of the web for pictures. So if you&#8217;ll be linking from your web pages directly to some images it won&#8217;t work! The Internet Explorer security will block it. </p>
</p>
<p>The only way I could link &#8220;directly&#8221; to the image was to put the image into an empty page, equip the page with &#8220;mark of the web&#8221; comment and then link to that page.</p>
</p>
<p>If anyone knows a better way to resolve this, I&#8217;d be more than happy to read about it. You can let me know in the comments.</p>
</p>
<div class="wlWriterSmartContent" id="0767317B-992E-4b12-91E0-4F059A8CECA8:341d7baa-b7e7-47d1-8e1d-45ece662c864" contenteditable="false" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">Technorati tags: <a href="http://technorati.com/tags/web%20design" rel="tag">web design</a>, <a href="http://technorati.com/tags/Flash" rel="tag">Flash</a>, <a href="http://technorati.com/tags/JavaScript" rel="tag">JavaScript</a>, <a href="http://technorati.com/tags/Service%20Pack" rel="tag">Service Pack</a>, <a href="http://technorati.com/tags/Security" rel="tag">Security</a>, <a href="http://technorati.com/tags/Offline" rel="tag">Offline</a></div>
<p><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointboris.net/2006/12/update-to-previous-post-offline-active-content/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Expand &#8211; Colapse with more than just clicking on + / &#8211; in a data view web part</title>
		<link>http://www.sharepointboris.net/2006/10/expand-colapse-with-more-than-just-clicking-on-in-a-data-view-web-part/</link>
		<comments>http://www.sharepointboris.net/2006/10/expand-colapse-with-more-than-just-clicking-on-in-a-data-view-web-part/#comments</comments>
		<pubDate>Fri, 27 Oct 2006 22:21:00 +0000</pubDate>
		<dc:creator>Boris Gomiunik</dc:creator>
				<category><![CDATA[Flash]]></category>

		<guid isPermaLink="false">http://doma.gomiunik.net/?p=29</guid>
		<description><![CDATA[SharePoint and FrontPage have a very nice functionality of grouping the data in a list data view according to selected group. What in my opinion can be improved, is that you expand or colapse the group with a click on the whole cell rather than targeting that small plus or minus sign in front of [...]]]></description>
			<content:encoded><![CDATA[<p>SharePoint and FrontPage have a very nice functionality of grouping the data in a list data view according to selected group. What in my opinion can be improved, is that you expand or colapse the group with a click on the whole cell rather than targeting that small plus or minus sign in front of a group name.</p>
<p>Not to reinvent hot water again: this is already discovered so let me point it out:</p>
<p><a href="http://dev.collutions.com/blog/Pages/Grouping.aspx">http://dev.collutions.com/blog/Pages/Grouping.aspx</a></p>
<p>Thanks, Jim Duncan!<!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointboris.net/2006/10/expand-colapse-with-more-than-just-clicking-on-in-a-data-view-web-part/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

