<?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>Alonso Robles</title>
	<atom:link href="http://alonsorobles.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://alonsorobles.com</link>
	<description>technology, academia, and other tidbits from the trenches of a boggled mind</description>
	<lastBuildDate>Wed, 24 Jun 2009 18:19:03 +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>jQuery and jCarousel in SharePoint</title>
		<link>http://alonsorobles.com/2009/06/24/jquery-and-jcarousel-in-sharepoint/</link>
		<comments>http://alonsorobles.com/2009/06/24/jquery-and-jcarousel-in-sharepoint/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 18:17:11 +0000</pubDate>
		<dc:creator>Alonso Robles</dc:creator>
				<category><![CDATA[Sharepoint Server]]></category>
		<category><![CDATA[Windows Sharepoint Services]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jCarousel]]></category>
		<category><![CDATA[moss 2007]]></category>
		<category><![CDATA[wss 3.0]]></category>

		<guid isPermaLink="false">http://alonsorobles.com/?p=155</guid>
		<description><![CDATA[I recently had to integrate jCarousel into a SharePoint web part. Since jCarousel is a plugin for jQuery, it means I also had to get jQuery integrated with SharePoint. In order to accomplish this, I followed some good feature packaging instructions found from a few different blog posts:

SharePoint jQuery Deployment Feature
SharePoint + jQuery = Stay [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had to integrate <a href="http://sorgalla.com/jcarousel/">jCarousel</a> into a SharePoint web part. Since jCarousel is a plugin for <a href="http://jquery.com/">jQuery</a>, it means I also had to get jQuery integrated with SharePoint. In order to accomplish this, I followed some good feature packaging instructions found from a few different blog posts:</p>
<ul>
<li><a href="http://weblogs.asp.net/gunnarpeipman/archive/2008/12/12/sharepoint-jquery-deployment-feature.aspx">SharePoint jQuery Deployment Feature</a></li>
<li><a href="http://weblogs.asp.net/wesleybakker/archive/2008/12/18/sharepoint-jquery-stay-here-feature.aspx">SharePoint + jQuery = Stay Here Feature</a></li>
<li><a href="http://weblogs.asp.net/wesleybakker/archive/2008/12/16/sharepoint-slideshow-webpart.aspx">SharePoint Slideshow Web Part</a></li>
</ul>
<p>After figuring out how to package jCarousel and jQuery using SharePoint delegate controls, I was ready for business with the implementation of the web part.</p>
<p>The web part itself was nothing fancy. I used a Repeater control to generate the list item (LI) elements with the content I needed in the carousel. I wrapped the Repeater in an unordered list (UL) which was wrapped in a DIV tag that had the runat attribute set to server. So basically, I just followed the mark up instructions provided in the <a href="http://sorgalla.com/projects/jcarousel/#Getting-Started">jCarousel documentation</a>.</p>
<p>The wrapping DIV tag was used in my webpart code to initialize jCarousel. The code snippet below shows how I implemented it:</p>
<p><code><br />
protected override void OnLoad(EventArgs e)<br />
{<br />
  if (!Page.ClientScript.IsStartupScriptRegistered(this.GetType(), this.ClientID))<br />
  {<br />
    Page.ClientScript.RegisterStartupScript(this.GetType(), this.ClientID, @"<br />
      &lt;script type=""text/javascript""&gt;<br />
        jQuery(document).ready(function() {<br />
          jQuery('#" + carouselDiv.ClientID + @"').jcarousel({<br />
            // Configuration goes here<br />
            vertical: true,<br />
            scroll: 2,<br />
            visible: 4<br />
          });<br />
        });<br />
      &lt;/script&gt;<br />
    ");<br />
  }<br />
}<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://alonsorobles.com/2009/06/24/jquery-and-jcarousel-in-sharepoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Rails 2.3.2 on Mac OS X 10.5</title>
		<link>http://alonsorobles.com/2009/06/23/installing-rails-2-3-2-on-mac-os-x-10-5/</link>
		<comments>http://alonsorobles.com/2009/06/23/installing-rails-2-3-2-on-mac-os-x-10-5/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 20:47:28 +0000</pubDate>
		<dc:creator>Alonso Robles</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://alonsorobles.com/?p=153</guid>
		<description><![CDATA[Recently, I needed to update my local installation of Ruby and Rails to versions 1.8.7 and 2.3.2 respectively on an iMac at home. I am bit rusty on some of my *nix skills since I have been working in predominantly Microsoft based environment for a significant amount of time. Thankfully, I found a great step-by-step [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I needed to update my local installation of Ruby and Rails to versions 1.8.7 and 2.3.2 respectively on an iMac at home. I am bit rusty on some of my *nix skills since I have been working in predominantly Microsoft based environment for a significant amount of time. Thankfully, I found a great <a href="http://hivelogic.com/articles/view/ruby-rails-leopard">step-by-step how-to blog post</a> that walked me through the process flawlessly.</p>
]]></content:encoded>
			<wfw:commentRss>http://alonsorobles.com/2009/06/23/installing-rails-2-3-2-on-mac-os-x-10-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rails Resources</title>
		<link>http://alonsorobles.com/2009/06/19/rails-resources/</link>
		<comments>http://alonsorobles.com/2009/06/19/rails-resources/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 20:58:18 +0000</pubDate>
		<dc:creator>Alonso Robles</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://alonsorobles.com/?p=150</guid>
		<description><![CDATA[Sometimes, I have a bit of free time. Over the last few months, I have spent a few moments on some old projects of mine that have been essentially abandoned. These projects (which I may mention at some later date since they are not complete at this time) use some open source technologies since I [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes, I have a bit of free time. Over the last few months, I have spent a few moments on some old projects of mine that have been essentially abandoned. These projects (which I may mention at some later date since they are not complete at this time) use some open source technologies since I can&#8217;t afford to personally purchase licensing for most of the technologies that I use professionally. In any case, I have spent some time getting reacquainted with <a href="http://rubyonrails.org/">Ruby on Rails</a>. During this learning journey, I have come across a plethora of information (some good, some bad) that have helped me get familiar with this technology again. And now I will share these resources with you&#8230;</p>
<ul>
<li><a href="http://rubyonrails.org/">Ruby on Rails</a> &#8211; The official web site has tons of goodies such as downloads, documentation, guides. This is a great place to get started.</li>
<li><a href="http://railscasts.com/">Railscasts</a> &#8211; The best source I found with free Ruby on Rails screen-casts.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://alonsorobles.com/2009/06/19/rails-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Vendor Client Relationship</title>
		<link>http://alonsorobles.com/2009/06/10/the-vendor-client-relationship/</link>
		<comments>http://alonsorobles.com/2009/06/10/the-vendor-client-relationship/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 18:44:26 +0000</pubDate>
		<dc:creator>Alonso Robles</dc:creator>
				<category><![CDATA[Other Tidbits]]></category>

		<guid isPermaLink="false">http://alonsorobles.com/?p=146</guid>
		<description><![CDATA[A colleauge of mine recently pointed me to this video and it is great. The funny thing is I can relate to it from both ends. As a consultant, I usualy play the role of a vendor. However, out side of work I am usually a client. Either way, it&#8217;s a fun video to watch [...]]]></description>
			<content:encoded><![CDATA[<p>A colleauge of mine recently <a href="http://www.youtube.com/watch?v=R2a8TRSgzZY">pointed me to this video</a> and it is great. The funny thing is I can relate to it from both ends. As a consultant, I usualy play the role of a vendor. However, out side of work I am usually a client. Either way, it&#8217;s a fun video to watch and it&#8217;s work safe. Enjoy!</p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube-nocookie.com/v/R2a8TRSgzZY&#038;hl=en&#038;fs=1&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube-nocookie.com/v/R2a8TRSgzZY&#038;hl=en&#038;fs=1&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://alonsorobles.com/2009/06/10/the-vendor-client-relationship/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Come and Get It! SP2 for MOSS 2007 and WSS 3.0 Is Here</title>
		<link>http://alonsorobles.com/2009/04/28/come-and-get-it-sp2-for-moss-2007-and-wss-30-is-here/</link>
		<comments>http://alonsorobles.com/2009/04/28/come-and-get-it-sp2-for-moss-2007-and-wss-30-is-here/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 03:46:46 +0000</pubDate>
		<dc:creator>Alonso Robles</dc:creator>
				<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[Sharepoint Server]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Windows Sharepoint Services]]></category>
		<category><![CDATA[moss 2007]]></category>
		<category><![CDATA[wss 3.0]]></category>

		<guid isPermaLink="false">http://alonsorobles.com/?p=141</guid>
		<description><![CDATA[Service Pack 2 for Microsoft Office SharePoint Server 2007 and Windows SharePoint Services 3.0 have been officially annouced and are available for download from the Microsoft Download Center. I ran across the annoucement on the Microsoft SharePoint Team Blog where you can find links to the knowledgebase articles, downloads, and other resources including installation instructions. [...]]]></description>
			<content:encoded><![CDATA[<p>Service Pack 2 for Microsoft Office SharePoint Server 2007 and Windows SharePoint Services 3.0 have been officially annouced and are available for download from the Microsoft Download Center. I ran across <a href="http://blogs.msdn.com/sharepoint/archive/2009/04/28/announcing-service-pack-2-for-office-sharepoint-server-2007-and-windows-sharepoint-services-3-0.aspx">the annoucement on the Microsoft SharePoint Team Blog</a> where you can find links to the knowledgebase articles, downloads, and other resources including installation instructions. Below are quick links for the downloads:</p>
<p>SP2 for WSS 3.0: <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=79BADA82-C13F-44C1-BDC1-D0447337051B&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?FamilyId=79BADA82-C13F-44C1-BDC1-D0447337051B&amp;displaylang=en</a></p>
<p>SP2 for MOSS 2007: <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=B7816D90-5FC6-4347-89B0-A80DEB27A082&amp;displaylang=en">http://www.microsoft.com/downloads/details.aspx?FamilyId=B7816D90-5FC6-4347-89B0-A80DEB27A082&amp;displaylang=en</a></p>
]]></content:encoded>
			<wfw:commentRss>http://alonsorobles.com/2009/04/28/come-and-get-it-sp2-for-moss-2007-and-wss-30-is-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint Test Driven Development</title>
		<link>http://alonsorobles.com/2009/04/02/sharepoint-test-driven-development/</link>
		<comments>http://alonsorobles.com/2009/04/02/sharepoint-test-driven-development/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 22:18:21 +0000</pubDate>
		<dc:creator>Alonso Robles</dc:creator>
				<category><![CDATA[Sharepoint Server]]></category>
		<category><![CDATA[Test Driven Development]]></category>
		<category><![CDATA[Windows Sharepoint Services]]></category>
		<category><![CDATA[moss 2007]]></category>
		<category><![CDATA[tdd]]></category>
		<category><![CDATA[wss 3.0]]></category>

		<guid isPermaLink="false">http://alonsorobles.com/?p=136</guid>
		<description><![CDATA[[Via Joel Oleson]
I love finding a good and useful blog post and this morning I did just that. The post from Joel Oleson regading SharePoint test driven development is great. It has a quick exerpt from his twitter conversation with other SharePoint pros regarding this topic, a summary of what he learned, and list of useful resources with [...]]]></description>
			<content:encoded><![CDATA[<p>[Via <a href="http://www.sharepointjoel.com/Lists/Posts/Post.aspx?List=0cd1a63d%2D183c%2D4fc2%2D8320%2Dba5369008acb&amp;ID=205">Joel Oleson</a>]</p>
<p>I love finding a good and useful blog post and this morning I did just that. The <a href="http://www.sharepointjoel.com/Lists/Posts/Post.aspx?List=0cd1a63d%2D183c%2D4fc2%2D8320%2Dba5369008acb&amp;ID=205">post from Joel Oleson regading SharePoint test driven development</a> is great. It has a quick exerpt from his <a href="http://twitter.com/">twitter</a> conversation with other SharePoint pros regarding this topic, a summary of what he learned, and list of useful resources with descriptions. If you follow or practice test driven development (TDD) and are involved with SharePoint development, then this post will be a good resource for you too.</p>
]]></content:encoded>
			<wfw:commentRss>http://alonsorobles.com/2009/04/02/sharepoint-test-driven-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Office SharePoint Designer 2007 or Not</title>
		<link>http://alonsorobles.com/2009/03/31/microsoft-office-sharepoint-designer-2007-or-not/</link>
		<comments>http://alonsorobles.com/2009/03/31/microsoft-office-sharepoint-designer-2007-or-not/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 22:20:20 +0000</pubDate>
		<dc:creator>Alonso Robles</dc:creator>
				<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[SharePoint Designer]]></category>
		<category><![CDATA[Sharepoint Server]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Windows Sharepoint Services]]></category>
		<category><![CDATA[moss 2007]]></category>
		<category><![CDATA[wss 3.0]]></category>

		<guid isPermaLink="false">http://alonsorobles.com/?p=116</guid>
		<description><![CDATA[SharePoint Designer (SPD) is a nifty tool to use to customize SharePoint sites. It is very powerful and allows us to quickly make style, organizational, functional, and content changes quickly and easily. Today, I ran across a post from Joel Oleseon where he shared his professional opinion in response to another post about the tool from [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://office.microsoft.com/en-us/sharepointdesigner/FX100487631033.aspx">SharePoint Designer</a> (SPD) is a nifty tool to use to customize SharePoint sites. It is very powerful and allows us to quickly make style, organizational, functional, and content changes quickly and easily. Today, I ran across <a title="SharePoint Designer – More than a Maybe" href="http://www.sharepointjoel.com/Lists/Posts/Post.aspx?List=0cd1a63d-183c-4fc2-8320-ba5369008acb&amp;ID=204">a post from Joel Oleseon</a> where he shared his professional opinion in response to <a title="SharePoint Designer – A definite Maybe" href="http://www.soyouknow.net/archive/2009/03/29/sharepoint-designer-ndash-a-definite-maybe.aspx">another post about the tool from Mark Rackley</a> which was motivated in response to <a title="SharePoint Designer Available as Free Download after 4/1/09" href="http://blogs.msdn.com/mattbremer/archive/2009/03/26/sharepoint-designer-available-as-free-download-after-4-1-09.aspx">Microsoft&#8217;s announcement to make the tool available for free</a>. There really is nothing new about the debate as it deals with the advantages and disadvantages of empowering an end user with all of the power the tool has to offer. It has just resurfaced since the tool will be freely available.</p>
<p>So&#8230; if the debate is not new, what&#8217;s all the fuss about?</p>
<p>Regardless of the stance that you take about allowing SPD to be used in a production SharePoint deployment or not, the real cause of concern is how SPD can impact production environment when used by untrained/uninformed users with appropriate rights. This reminds me of the quote &#8211; <em>with great power comes great responsibility</em>&#8230; or something like that. I don&#8217;t see the need for huge concern. That is assuming people with those rights have already been trained and informed. For the most part, people with contributor or higher permission role assignments can already do plenty of damage to a production environment with only the web browser at hand. Hence, the need and argument for appropriate training, content approval (and publishing) planning and enforcement, and governance plans (especially in Extranet/Internet facing deployments).</p>
<p>Okay&#8230; so what should we do?</p>
<p>There shouldn&#8217;t be too much to do (assuming training, content approval, governance, etc. has already been addressed). Professionally, I will be making sure to emphasize the role of SPD in SharePoint projects. I will also make sure to encourage the inclusion or addition of SPD training for existing and new SharePoint users (especially &#8220;power&#8221; users), administrators, and developers.</p>
]]></content:encoded>
			<wfw:commentRss>http://alonsorobles.com/2009/03/31/microsoft-office-sharepoint-designer-2007-or-not/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joel Oleson&#8217;s Recommendations for SharePoint Application Pool Settings</title>
		<link>http://alonsorobles.com/2009/03/03/joel-olesons-recommendations-for-sharepoint-application-pool-settings/</link>
		<comments>http://alonsorobles.com/2009/03/03/joel-olesons-recommendations-for-sharepoint-application-pool-settings/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 23:40:45 +0000</pubDate>
		<dc:creator>Alonso Robles</dc:creator>
				<category><![CDATA[Internet Information Services]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Windows Sharepoint Services]]></category>
		<category><![CDATA[IIS 6]]></category>
		<category><![CDATA[moss 2007]]></category>
		<category><![CDATA[Sharepoint Server]]></category>
		<category><![CDATA[wss 3.0]]></category>

		<guid isPermaLink="false">http://blogs.importchaos.com/alonsorobles/?p=107</guid>
		<description><![CDATA[I have used Joel Oleson&#8217;s recommenations to tweak many IIS application pools for countless SharePoint sites. The nice things about his recommendations is that he explains his logic behind them. This lets you decide whether or not to follow each recommendation based on the effect you are trying to acheive.
]]></description>
			<content:encoded><![CDATA[<p>I have used <a title="Recommendations for SharePoint Application Pool Settings" href="http://blogs.msdn.com/joelo/archive/2007/10/29/sharepoint-app-pool-settings.aspx">Joel Oleson&#8217;s recommenations</a> to tweak many IIS application pools for countless SharePoint sites. The nice things about his recommendations is that he explains his logic behind them. This lets you decide whether or not to follow each recommendation based on the effect you are trying to acheive.</p>
]]></content:encoded>
			<wfw:commentRss>http://alonsorobles.com/2009/03/03/joel-olesons-recommendations-for-sharepoint-application-pool-settings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The PeopleEditor Class and the Visibility Attribute</title>
		<link>http://alonsorobles.com/2008/10/22/the-peopleeditor-class-and-the-visibility-attribute/</link>
		<comments>http://alonsorobles.com/2008/10/22/the-peopleeditor-class-and-the-visibility-attribute/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 10:56:19 +0000</pubDate>
		<dc:creator>Alonso Robles</dc:creator>
				<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[Sharepoint Server]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Windows Sharepoint Services]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[moss 2007]]></category>
		<category><![CDATA[wss 3.0]]></category>

		<guid isPermaLink="false">http://blogs.importchaos.com/alonsorobles/?p=104</guid>
		<description><![CDATA[When doing custom development for MOSS 2007 or WSS 3.0, the PeopleEditor class can come in handy. However, it seems that it begins misbehaving when the the Visibility attribute is changed from its default value of true. Recently, I had the need to make it disappear and reappear depending on certain conditions in a custom form [...]]]></description>
			<content:encoded><![CDATA[<p>When doing custom development for MOSS 2007 or WSS 3.0, the <a title="PeopleEditor Class (Microsoft.SharePoint.WebControls)" href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.webcontrols.peopleeditor.aspx">PeopleEditor class</a> can come in handy. However, it seems that it begins misbehaving when the the Visibility attribute is changed from its default value of <em>true</em>. Recently, I had the need to make it disappear and reappear depending on certain conditions in a custom form that was developed and I ran into this problem. The work around simply involves using a <em>display</em> style attribute. To make control invisible, set the <em>display</em> style attribute value to <em>none</em>. To make the control visible again, set the <em>display</em> style attribute value back to <em>block</em>.</p>
<p>Here is a sample C# method that I used to make this happen:</p>
<p><code><br />
private void SetPeopleEditorVisibility(ref PeopleEditor pe, bool visible)<br />
{<br />
  if (pe.Style.Keys.Count &gt; 0 &amp;&amp; pe.Style["display"] != null)<br />
  {<br />
    pe.Style.Remove("display");<br />
  }<br />
  if (visible)<br />
  {<br />
    pe.Style.Add("display", "block");<br />
  }<br />
  else<br />
  {<br />
    pe.Style.Add("display", "none");<br />
  }<br />
}</code></p>
]]></content:encoded>
			<wfw:commentRss>http://alonsorobles.com/2008/10/22/the-peopleeditor-class-and-the-visibility-attribute/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Come See Me at the Orange County SharePoint User Group</title>
		<link>http://alonsorobles.com/2008/09/16/come-see-me-at-the-orange-county-sharepoint-user-group/</link>
		<comments>http://alonsorobles.com/2008/09/16/come-see-me-at-the-orange-county-sharepoint-user-group/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 22:01:40 +0000</pubDate>
		<dc:creator>Alonso Robles</dc:creator>
				<category><![CDATA[Sharepoint Server]]></category>
		<category><![CDATA[enterprise search]]></category>
		<category><![CDATA[moss 2007]]></category>
		<category><![CDATA[ocspug]]></category>
		<category><![CDATA[sharepoint user group]]></category>
		<category><![CDATA[Windows Sharepoint Services]]></category>
		<category><![CDATA[wss 3.0]]></category>

		<guid isPermaLink="false">http://blogs.importchaos.com/alonsorobles/?p=97</guid>
		<description><![CDATA[Tomorrow, September 17th, I will be speaking at the Orange County SharePoint User Group along with Bob Mixon.
Improving SharePoint Search Relevancy through Scopes
6:30pm &#8211; 8:00pm &#8211; QuickStart, Irvine, CA

Organizations struggle with delivering information within the scope and context of business users needs.  Understanding scope and contextual search needs can be a daunting task.  However, results [...]]]></description>
			<content:encoded><![CDATA[<p>Tomorrow, September 17th, I will be speaking at the Orange County SharePoint User Group along with <a href="http://masteringsharepoint.com/blogs/bobmixon/archive/2008/09/15/i-ll-be-speaking-at-the-orange-county-sharepoint-user-group.aspx">Bob Mixon</a>.</p>
<blockquote><p><strong>Improving SharePoint Search Relevancy through Scopes<br />
</strong>6:30pm &#8211; 8:00pm &#8211; QuickStart, Irvine, CA</p>
<div>
<div>Organizations struggle with delivering information within the scope and context of business users needs.  Understanding scope and contextual search needs can be a daunting task.  However, results can be dramatically improved through careful planning, architecture, design, and development techniques.</div>
<div> </div>
</div>
<div>In this session, you will learn the techniques and best practices required to deliver a SharePoint solution that supports scoping of information.  We will cover appropriate architecture, design, and configuration techniques then dive into development.  Development topics will include an introduction to search syntax options and the key query classes offered in MOSS, and search object model with a demonstration of executing queries with scope information.</div>
</blockquote>
<div>So if you are in the area, stop by and say hello!</div>
]]></content:encoded>
			<wfw:commentRss>http://alonsorobles.com/2008/09/16/come-see-me-at-the-orange-county-sharepoint-user-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
