<?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; Uncategorized</title>
	<atom:link href="http://www.sharepointboris.net/category/uncategorized/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>Enable site/web specific theme elements and branding</title>
		<link>http://www.sharepointboris.net/2009/05/enable-site-specific-theme-elements-and-branding/</link>
		<comments>http://www.sharepointboris.net/2009/05/enable-site-specific-theme-elements-and-branding/#comments</comments>
		<pubDate>Fri, 08 May 2009 09:17:09 +0000</pubDate>
		<dc:creator>Boris Gomiunik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://boris.gomiunik.net/2009/05/enable-site-specific-theme-elements-and-branding/</guid>
		<description><![CDATA[I’ve had an interesting challenge recently. I’ve needed to create a custom site theme where certain subwebs would have their “identifiers” in design. What I mean by that: The site collection would have a specific theme applied, but in certain subwebs you should have the option of changing the banner for example. The solution is [...]]]></description>
			<content:encoded><![CDATA[<p>I’ve had an interesting challenge recently. I’ve needed to create a custom site theme where certain subwebs would have their “identifiers” in design. What I mean by that: The site collection would have a specific theme applied, but in certain subwebs you should have the option of changing the banner for example.</p>
<p>The solution is actually quite simple:</p>
<p>When creating a theme you have to customize the theme.css file. Instead of putting all your class and id css definitions in theme.css, create additional CSS – for example main.css and put all of them there. Next, in theme.css import that file and right after this import, import another css in a document library (for example customCSS). So the whole scenario would be as follows:</p>
<p><strong>theme.css </strong></p>
<pre name="code" class="css">/*Main theme css*/
@import url('main.css');
/*enable custom styling*/
@import url('../../customCSS/custom.css');</pre>
<p><strong>main.css </strong></p>
<pre name="code" class="css">
/*all your CSS styling here*/
</pre>
<p>and in the (sub)webs where you need custom styling just create a document library called customCSS and inside put <strong>custom.css</strong> where you override the styles in main.css</p>
<p>Here’s an example:</p>
<p>Default theme:</p>
<p><a href="http://boris.gomiunik.net/wp-content/uploads/2009/05/image.png" rel="lightbox[299]" title="image"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://boris.gomiunik.net/wp-content/uploads/2009/05/image-thumb.png" border="0" alt="image" width="244" height="135" /></a></p>
<p><em>main.css<strong><br />
&#8230;</strong></em></p>
<pre name="code" class="css">td.ms-bannerContainer {
    border-bottom: 1px solid #326666;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 100px;
    background: #ece9e4 url('header.jpg') no-repeat left bottom;
}</pre>
<p>&#8230;</p>
<p>Customized theme</p>
<p><a href="http://boris.gomiunik.net/wp-content/uploads/2009/05/image1.png" rel="lightbox[299]" title="image"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" src="http://boris.gomiunik.net/wp-content/uploads/2009/05/image-thumb1.png" border="0" alt="image" width="244" height="135" /></a></p>
<p><em>main.css<br />
… </em></p>
<pre name="code" class="css">td.ms-bannerContainer {
border-bottom: 1px solid #326666;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 100px;
	background: #ece9e4 url('header.jpg') no-repeat left bottom;
}</pre>
<p>…</p>
<p>../../customCSS/custom.css</p>
<p>…</p>
<pre name="code" class="css">td.ms-bannerContainer {
     background: #ece9e4 url('header.jpg') no-repeat left bottom;
}</pre>
<p>&#8230;</p>
<div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:0becd685-d6d8-420a-acb8-008ab8649e6e" class="wlWriterEditableSmartContent" style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px">Technorati Tags: <a rel="tag" href="http://technorati.com/tags/SharePoint+branding">SharePoint branding</a>,<a rel="tag" href="http://technorati.com/tags/MOSS">MOSS</a>,<a rel="tag" href="http://technorati.com/tags/SharePoint">SharePoint</a>,<a rel="tag" href="http://technorati.com/tags/CSS">CSS</a></div>
<p>…<!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointboris.net/2009/05/enable-site-specific-theme-elements-and-branding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Service Pack 2 available and promising!</title>
		<link>http://www.sharepointboris.net/2009/04/service-pack-2-available-and-promising/</link>
		<comments>http://www.sharepointboris.net/2009/04/service-pack-2-available-and-promising/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 05:11:00 +0000</pubDate>
		<dc:creator>Boris Gomiunik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://boris.gomiunik.net/2009/04/service-pack-2-available-and-promising/</guid>
		<description><![CDATA[If you’re reading this, head over to windows update and start downloading the Office system service pack 2 (available from yesterday – 28th apr). Then you can continue here. I was just going through list of bugs that SP2 fixes (xslx) in Office system and especially in SharePoint Designer (Thanks, Joel for posting link). Just [...]]]></description>
			<content:encoded><![CDATA[<p>If you’re reading this, head over to <a href="http://update.microsoft.com/microsoftupdate/v6/default.aspx" target="_blank">windows update</a> and start downloading the Office system service pack 2 (available from yesterday – 28th apr). Then you can continue here. I was just going through <a href="http://download.microsoft.com/download/C/2/C/C2C36159-600C-4EEA-B80A-F988EE7A418F/2007%20Office%20Service%20Pack%202%20Changes.xlsx" target="_blank">list of bugs that SP2 fixes</a> (xslx) in Office system and especially in SharePoint Designer (Thanks, Joel for posting link). Just to name couple of which I was already writing about and also wanted to blog about:</p>
<ul>
<li>“After you back up a SharePoint Server site that spans multiple CMP files by using SharePoint Designer, you cannot restore the Web site.”</li>
<li>“Custom list forms do not support attachments.”</li>
<li>“Editing a page that contains Web parts that participate in Web part connections causes the connections to be broken.”</li>
<li>“When you restore a SharePoint site from an STP site template, data views are broken because of errors in the GUID.”</li>
<li>“When you use a data form against a SharePoint Server list that uses lookup fields, SharePoint Server does not submit the form correctly if the lookup source has 20 or more values.”</li>
<li>“You cannot successfully configure a Web part connection that contains a SharePoint Server filtering Web part.”</li>
</ul>
<p><font face="Arial">And tons more. In the <a href="http://download.microsoft.com/download/C/2/C/C2C36159-600C-4EEA-B80A-F988EE7A418F/2007%20Office%20Service%20Pack%202%20Changes.xlsx" target="_blank">Excel</a> with changes you can find links to all other updates in Office and Office servers SP2.</font></p>
<div class="wlWriterEditableSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:b1836643-8fcb-4c59-87a0-9a6486df29f3" style="padding-right: 0px; display: inline; padding-left: 0px; float: none; 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/SharePoint+designer" rel="tag">SharePoint designer</a>,<a href="http://technorati.com/tags/Windows+SharePoint+Services" rel="tag">Windows SharePoint Services</a>,<a href="http://technorati.com/tags/MOSS" rel="tag">MOSS</a>,<a href="http://technorati.com/tags/Office+SharePoint+Server" rel="tag">Office SharePoint Server</a>,<a href="http://technorati.com/tags/Update" rel="tag">Update</a>,<a href="http://technorati.com/tags/SP" rel="tag">SP</a>,<a href="http://technorati.com/tags/SP2" rel="tag">SP2</a></div>
<p><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointboris.net/2009/04/service-pack-2-available-and-promising/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Sign in link / button</title>
		<link>http://www.sharepointboris.net/2008/10/sign-in-link-button/</link>
		<comments>http://www.sharepointboris.net/2008/10/sign-in-link-button/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 13:21:23 +0000</pubDate>
		<dc:creator>Boris Gomiunik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://boris.gomiunik.net/2008/10/sign-in-link-button/</guid>
		<description><![CDATA[If you don&#8217;t want the users to have the &#8220;Sign in&#8221; button only in the top right corner of the page or if you&#8217;re using custom master pages, you might want to add a Sign in button. The code is very simple: &#60;a href=&#8221;/_layouts/authenticate.aspx&#8221; onclick=&#8221;document.location=&#8217;/_layouts/authenticate.aspx?Source=&#8217;+document.location.href; return false;&#8221;&#62;Sign in&#60;/a&#62; Ofcourse replace the &#8220;Sign in&#8221; text with [...]]]></description>
			<content:encoded><![CDATA[<p>If you don&#8217;t want the users to have the &#8220;Sign in&#8221; button only in the top right corner of the page or if you&#8217;re using custom master pages, you might want to add a Sign in button. The code is very simple:</p>
<p>&lt;a href=&#8221;/_layouts/authenticate.aspx&#8221; onclick=&#8221;document.location=&#8217;/_layouts/authenticate.aspx?Source=&#8217;+document.location.href; return false;&#8221;&gt;Sign in&lt;/a&gt;</p>
<p>Ofcourse replace the &#8220;Sign in&#8221; text with text / image of your choice.</p>
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:18fb80ec-0bb6-4572-8c60-18f9a3498c80" 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></div>
<p><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointboris.net/2008/10/sign-in-link-button/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where have I disappeared?</title>
		<link>http://www.sharepointboris.net/2008/06/where-have-i-disappeared/</link>
		<comments>http://www.sharepointboris.net/2008/06/where-have-i-disappeared/#comments</comments>
		<pubDate>Fri, 27 Jun 2008 09:04:00 +0000</pubDate>
		<dc:creator>Boris Gomiunik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://doma.gomiunik.net/?p=111</guid>
		<description><![CDATA[It&#8217;s been a while since I was blogging here. I haven&#8217;t disappeared from the face of the earth. I&#8217;ve made quite some progress and discoveries, so keep tuned in the future. Mainly I&#8217;ve been working on some projects.. 1. The Biggest one: SharePoint Simple CMS Enables you to have a beautiful web design over your [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while since I was blogging here. I haven&#8217;t disappeared from the face of the earth. I&#8217;ve made quite some progress and discoveries, so keep tuned in the future. </p>
</p>
<p>Mainly I&#8217;ve been working on some projects.. </p>
</p>
<p>1. The Biggest one: <strong>SharePoint Simple CMS     <br /></strong>Enables you to have a beautiful web design over your WSS site and really easy-to-edit contents of websites. Jose has already prepared some videos.</p>
<p>&#160;</p>
<p>
<div class="wlWriterSmartContent" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:21f95885-2aac-427b-9298-77767f81eab4" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">
<div><embed src="http://www.jumpcut.com/media/flash/jump.swf?id=4E0246363C4F11DD9E78000423CEF5B0&amp;asset_type=movie&amp;asset_id=4E0246363C4F11DD9E78000423CEF5B0&amp;eb=1" width="408" height="324" type="application/x-shockwave-flash"></embed></div>
</div>
</p>
<div class="wlWriterSmartContent" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:4d899599-3451-4da7-8e97-1005314118d6" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">
<div><embed src="http://www.jumpcut.com/media/flash/jump.swf?id=BD3A5D1C3AD911DD949C000423CEF5B0&amp;asset_type=movie&amp;asset_id=BD3A5D1C3AD911DD949C000423CEF5B0&amp;eb=1" width="408" height="324" type="application/x-shockwave-flash"></embed></div>
</div>
<p>
<div class="wlWriterSmartContent" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:bbe939ca-c5fc-416c-a91f-300c42fbab0d" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">
<div><embed src="http://www.jumpcut.com/media/flash/jump.swf?id=CB4BC28A3BEA11DDB9C1000423CEF682&amp;asset_type=movie&amp;asset_id=CB4BC28A3BEA11DDB9C1000423CEF682&amp;eb=1" width="408" height="324" type="application/x-shockwave-flash"></embed></div>
</div>
</p>
<p>Thanks also to <a href="http://www.mikegannotti.com/" target="_blank">Mike Gannotti</a> for a <a href="http://sharepoint.microsoft.com/blogs/mikeg/Lists/Posts/Post.aspx?ID=963" target="_blank">nice review</a>.</p>
</p>
<p>
<p>2. <strong>The other &#8211; personal:       <br /></strong>Even though he&#8217;s small&#8230; he&#8217;s quite a big project <img src='http://www.sharepointboris.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
</p>
<p>
<div class="wlWriterSmartContent" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:9ec06b95-5eb3-4c34-902a-051fb5d68c63" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">
<div><object type="application/x-shockwave-flash" width="400" height="300" data="http://www.flickr.com/apps/video/stewart.swf?v=55430" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><param name="flashvars" value="intl_lang=en-us&amp;photo_secret=727abae9ba&amp;photo_id=2561537337"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=55430"></param><param name="bgcolor" value="#000000"></param><param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=55430" bgcolor="#000000" allowfullscreen="true" flashvars="intl_lang=en-us&amp;photo_secret=727abae9ba&amp;photo_id=2561537337" height="300" width="400"></embed></object></div>
</div>
</p>
<p> In the SharePoint I&#8217;ve come up with quite some tricks, so stay tuned.<!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointboris.net/2008/06/where-have-i-disappeared/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learn SilverLight on Lynda</title>
		<link>http://www.sharepointboris.net/2008/05/learn-silverlight-on-lynda/</link>
		<comments>http://www.sharepointboris.net/2008/05/learn-silverlight-on-lynda/#comments</comments>
		<pubDate>Thu, 08 May 2008 06:11:00 +0000</pubDate>
		<dc:creator>Boris Gomiunik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://doma.gomiunik.net/?p=110</guid>
		<description><![CDATA[A quickie: If you want to learn to create SilverLight applications, Lynda has published free video training for it. The whole course is available for free. Click here to start learning. Oznake ponudnika Technorati: learning,e-learning,silverlight]]></description>
			<content:encoded><![CDATA[<p>A quickie: If you want to learn to create <a href="http://www.silverlight.net" target="_blank">SilverLight</a> applications, <a href="http://www.lynda.com" target="_blank">Lynda</a> has published free video training for it. The whole course is available for free. </p>
</p>
<p> <a href="http://movielibrary.lynda.com/html/modPage.asp?ID=473" target="_blank">Click here to start learning</a>.
</p>
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:eb38bd4b-b2eb-438b-8433-1f8ec3cbd3d1" 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/learning" rel="tag">learning</a>,<a href="http://technorati.com/tags/e-learning" rel="tag">e-learning</a>,<a href="http://technorati.com/tags/silverlight" rel="tag">silverlight</a></div>
<p><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointboris.net/2008/05/learn-silverlight-on-lynda/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Access server different server with certain host name &#8211; build a new site while current still exists</title>
		<link>http://www.sharepointboris.net/2007/08/access-server-different-server-with-certain-host-name-build-a-new-site-while-current-still-exists/</link>
		<comments>http://www.sharepointboris.net/2007/08/access-server-different-server-with-certain-host-name-build-a-new-site-while-current-still-exists/#comments</comments>
		<pubDate>Tue, 14 Aug 2007 20:39:00 +0000</pubDate>
		<dc:creator>Boris Gomiunik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://doma.gomiunik.net/?p=77</guid>
		<description><![CDATA[The upgrade from Windows SharePoint Services 2.0 to 3.0 gave us in the company the opportunity to reconstruct some of the sites. The issue was that while the new site in WSS3 was in development, the site in the current server would stay active. With version 2 this wouldn&#8217;t be a problem. While having the [...]]]></description>
			<content:encoded><![CDATA[<p>The upgrade from Windows SharePoint Services 2.0 to 3.0 gave us in the company the opportunity to reconstruct some of the sites. The issue was that while the new site in WSS3 was in development, the site in the current server would stay active.</p>
</p>
<p>With version 2 this wouldn&#8217;t be a problem. While having the <strong>existing www.site.com</strong> we&#8217;d create a new SharePoint site with the <strong>same host header </strong>and add a host header like <strong>new.site.com </strong>and work on it using new.site.com, while the DNS server is still pointing to the old site with www.site.com. At the end you just need to change dns for www.site.com.</p>
<p>The challenge comes with the <strong>version 3.0</strong>, because it&#8217;s <a href="http://webborg.blogspot.com/2007/07/sharepoint-3-is-bound-to-host-headers.html" target="_blank">bound to host headers</a>. Therefore it&#8217;s best to work with the original host header from beginning. So how to build a website on a new server with a host header www.site.com while the other one still exists? </p>
</p>
<p>
<p><strong>One alternative</strong> is already described in <a href="http://webborg.blogspot.com/2007/07/sharepoint-3-is-bound-to-host-headers.html" target="_blank">one of my previous posts.</a> </p>
</p>
<p><strong>The second alternative</strong> is to set up a DNS server to point to the new IP with the existing domain and use it like primary dns server on the development computer. Not practical &#8211; just to sacrifice the whole DNS server for one site.</p>
</p>
<p>My friend Miha &#8211; who in my oppinion should have a blog for all the great stuff that he advised me untill now &#8211; showed me even a better alternative. <strong>The third &#8211; best &#8211; alternative</strong> is that you trick your Windows XP or Windows Vista that www.site.com is on a certain IP &#8211; therefore server. Let&#8217;s say for example that the existing site <a href="http://www.b4business.si/">www.b4business.si</a> is on IP 123.123.123.123. And the new server where we want to develop the site is on IP 123.123.123.321. </p>
</p>
<p>All we need to do is to <strong><em>edit the hosts file</em></strong>, which is located in <strong><em>c:windowssystem32driversetc</em></strong> folder. At the end add the hostname (domain) and desired IP. &#8211; like in the picture below:
</p>
<p>
<p><img src="http://www.piflar.com/boris/pics/20070814-HostsFile01.gif" /></p>
</p>
<p>
<p>In Vista you have to have administrative rights to edit that file. After you&#8217;ve updated the hosts file, flush the DNS resolver cache (Start &#8211;&gt; Run &#8211;&gt; ipconfig /flushdns) and the the hosts file overrides any dns. Now you can edit the www.b4business.si on a new server. </p>
</p>
<p>When the site is ready, change the DNS to point to the new site and <u>don&#8217;t forget to remove the entry in hosts file.</u></p>
<p>Update: I&#8217;ve had the path to the file wrong. Now it&#8217;s ok.</p>
</p>
<div class="wlWriterSmartContent" id="0767317B-992E-4b12-91E0-4F059A8CECA8:f76c8357-84a9-45c9-8766-bf12764871da" 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/DNS" rel="tag">DNS</a>, <a href="http://technorati.com/tags/domains" rel="tag">domains</a>, <a href="http://technorati.com/tags/host%20headers" rel="tag">host headers</a>, <a href="http://technorati.com/tags/web%20development" rel="tag">web development</a>, <a href="http://technorati.com/tags/sharepoint" rel="tag">sharepoint</a></div>
</p>
<p><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointboris.net/2007/08/access-server-different-server-with-certain-host-name-build-a-new-site-while-current-still-exists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create favicon online</title>
		<link>http://www.sharepointboris.net/2007/04/create-favicon-online/</link>
		<comments>http://www.sharepointboris.net/2007/04/create-favicon-online/#comments</comments>
		<pubDate>Sun, 08 Apr 2007 13:48:00 +0000</pubDate>
		<dc:creator>Boris Gomiunik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://doma.gomiunik.net/?p=61</guid>
		<description><![CDATA[Usually for websites we just have to create the favicon only once. So it&#8217;s a bit of unuseful to download and install extra software for this (even though we can make the icons with paint.net) For one time ocasion you can draw or create the icon from an image file online. Here&#8217;s an online icon-maker.]]></description>
			<content:encoded><![CDATA[<p>Usually for websites we just have to create the favicon only once. So it&#8217;s a bit of unuseful to download and install extra software for this (even though we can make the icons with <a href="http://webborg.blogspot.com/2006/09/free-tools-galore-pt-3-graphics-program.html">paint.net</a>)</p>
</p>
<p>For one time ocasion you can draw or create the icon from an image file online. <a href="http://www.rw-designer.com/online_icon_maker.php">Here&#8217;s an online icon-maker</a>.<!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointboris.net/2007/04/create-favicon-online/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SharePoint list view filtered by ID</title>
		<link>http://www.sharepointboris.net/2007/02/sharepoint-list-view-filtered-by-id/</link>
		<comments>http://www.sharepointboris.net/2007/02/sharepoint-list-view-filtered-by-id/#comments</comments>
		<pubDate>Mon, 26 Feb 2007 19:32:00 +0000</pubDate>
		<dc:creator>Boris Gomiunik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://doma.gomiunik.net/?p=58</guid>
		<description><![CDATA[For some time now I was experimenting with the SharePoint Blog template. Did you notice, how when viewing the post under permalink you also have the related comments? Being curious I continued to research, found that there are no web part connections. But when editing the web part current view, I&#8217;ve discovered a beautiful thing! [...]]]></description>
			<content:encoded><![CDATA[<p>For some time now I was experimenting with the SharePoint Blog template. Did you notice, how when viewing the post under permalink you also have the related comments? </p>
</p>
<p>Being curious I continued to research, found that there are no web part connections. But when editing the web part current view, I&#8217;ve discovered a beautiful thing! </p>
</p>
<p>Now there is besides [Today] and [Me] that you can use for filter value, also <strong>[ID].</strong> Perfect for making display forms and related contents. So now in new SharePoint you can filter also by ID passed in URL parameter.</p>
</p>
<p>Let me run that through again: First when setting up a list view, set up the filter with the following value: ID is equal to [ID]</p>
</p>
<p><img src="http://www.piflar.com/boris/pics/20070202_SharePoint_ViewFilter_By_ID_01.gif" /></p>
</p>
<p>When the list view is set, now you can use the ID parameter in the listview:</p>
</p>
</p>
<p><img src="http://www.piflar.com/boris/pics/20070202_SharePoint_ViewFilter_By_ID_02.gif" /> </p>
</p>
<p>And the list view is going to display the item with that ID.</p>
</p>
<div class="wlWriterSmartContent" id="0767317B-992E-4b12-91E0-4F059A8CECA8:c2493934-1486-4924-8a80-93ef1c357bdb" contenteditable="false" style="PADDING-RIGHT: 0px; DISPLAY: inline; PADDING-LEFT: 0px; FLOAT: none; 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/web%20design" rel="tag">web design</a>, <a href="http://technorati.com/tags/ID" rel="tag">ID</a>, <a href="http://technorati.com/tags/sharepoint%20list" rel="tag">sharepoint list</a>, <a href="http://technorati.com/tags/sharepoint%20view" rel="tag">sharepoint view</a>, <a href="http://technorati.com/tags/improvement" rel="tag">improvement</a>, <a href="http://technorati.com/tags/customization" rel="tag">customization</a></div>
<p><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointboris.net/2007/02/sharepoint-list-view-filtered-by-id/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Protect your email from spammers</title>
		<link>http://www.sharepointboris.net/2007/02/protect-your-email-from-spammers/</link>
		<comments>http://www.sharepointboris.net/2007/02/protect-your-email-from-spammers/#comments</comments>
		<pubDate>Sat, 24 Feb 2007 09:11:00 +0000</pubDate>
		<dc:creator>Boris Gomiunik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://doma.gomiunik.net/?p=57</guid>
		<description><![CDATA[If you&#8217;ve suddenly started to receive a lot of spam, check if you&#8217;ve written your email address somewhere on the Web. This can be dangerous, a published email address on the Internet can be harvested by special bots. There are ways to protect yourself and still publish the email so anyone can write you without [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve suddenly started to receive a lot of spam, check if you&#8217;ve written your email address somewhere on the Web. This can be dangerous, a published email address on the Internet can be harvested by special bots. There are ways to protect yourself and still publish the email so anyone can write you without a hassle. </p>
</p>
<p>If you&#8217;re a FrontPage user, you can use a good plugin &#8211; <a title="Find Spam Spoiler amongst other software" href="http://www.jimcosoftware.com/addins.aspx" target="_blank">Jimco Spam Spoiler</a>. (There are other useful plugins for FP there also)</p>
</p>
<p>Other solutions for encrypting your email from harvest bots are:</p>
</p>
<p><a href="http://www.wbwip.com/wbw/emailencoder.htmljk" target="_blank">http://www.wbwip.com/wbw/emailencoder.html<br /></a><a href="http://w2.syronex.com/jmr/safemailto/" target="_blank">http://w2.syronex.com/jmr/safemailto/</a> <br /><a href="http://automaticlabs.com/products/enkoderform" target="_blank">http://automaticlabs.com/products/enkoderform</a> <br /><a href="http://www.seoconsultants.com/tools/email/" target="_blank">http://www.seoconsultants.com/tools/email/</a>&nbsp;<br /><a href="http://www.ohlone.cc.ca.us/org/webcenter/emailencoder.html" target="_blank">http://www.ohlone.cc.ca.us/org/webcenter/emailencoder.html</a></p>
</p>
<p>Thanks <a href="http://tips4uall.blogspot.com/">Jose</a> for sending me the links above.</p>
</p>
<div class="wlWriterSmartContent" id="0767317B-992E-4b12-91E0-4F059A8CECA8:c79a848f-d557-4c76-86f9-cc5b5663445e" 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/frontpage" rel="tag">frontpage</a>, <a href="http://technorati.com/tags/web%20design" rel="tag">web design</a>, <a href="http://technorati.com/tags/security" rel="tag">security</a>, <a href="http://technorati.com/tags/antispam" rel="tag">antispam</a></div>
<p><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointboris.net/2007/02/protect-your-email-from-spammers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint Designer watches over our code?</title>
		<link>http://www.sharepointboris.net/2007/02/sharepoint-designer-watches-over-our-code/</link>
		<comments>http://www.sharepointboris.net/2007/02/sharepoint-designer-watches-over-our-code/#comments</comments>
		<pubDate>Tue, 20 Feb 2007 20:53:00 +0000</pubDate>
		<dc:creator>Boris Gomiunik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://doma.gomiunik.net/?p=56</guid>
		<description><![CDATA[Today I was making some custom scripting for one of our customers. And after finishing the code, I saved it and tried to preview&#8230; And nothing happened. Double-, triple- checked the code and all should be in order&#8230; Then at the end I&#8217;ve discovered some interesting feature or bug which tries to fix the code. [...]]]></description>
			<content:encoded><![CDATA[<p>Today I was making some custom scripting for one of our customers. And after finishing the code, I saved it and tried to preview&#8230; And nothing happened. Double-, triple- checked the code and all should be in order&#8230; Then at the end I&#8217;ve discovered some interesting feature or bug which tries to fix the code. </p>
<p>In the video below pay special attention to what happens to the <strong>&lt;/script&gt;</strong> tag after I save the document.</p>
<p><embed name="flv_demo" pluginspage="http://www.macromedia.com/go/getflashplayer" align="middle" src="http://www.afcomponents.com/flv/swf/flv_demo.swf" width="330" height="270" type="application/x-shockwave-flash" allowscriptaccess="sameDomain" bgcolor="#ffffff" quality="high" flashvars="autoPlay=false&amp;flvPath=http://boris.gomiunik.googlepages.com/SD_ScriptGone.flv&amp;flvTitle=Disappearing tag in SharePoint Designer&amp;startFrame=1&amp;bgColor=0xFFFFFF"></p>
</p>
<p>The video is a bit fuzzy because of resizing, but Yes! The &lt;/script&gt; tag automatically disappears even though it should be there. Probably calling the dvt_1.body template between confused the designer.</p>
</p>
<p>Anyone know a fix or how to turn this feature off? Right now I opened the site in FrontPage and there it doesn&#8217;t care. <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:a8556732-58bc-41d4-8cd3-f687ba96b043" 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/sharepoint" rel="tag">sharepoint</a>, <a href="http://technorati.com/tags/sharepoint%20designer" rel="tag">sharepoint designer</a>, <a href="http://technorati.com/tags/frontpage" rel="tag">frontpage</a></div>
<p><!-- PHP 5.x --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sharepointboris.net/2007/02/sharepoint-designer-watches-over-our-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

