CSBlogs searching is great. Almost as good as the dotLucene code I grabbed from dotText 0.96 and added to my 0.95 build. I might have to tweak it a bit, but I haven't tested it much yet.
I thought I'd add a little extra sweetness to CSBlog searching and add a Setfocus() to the search text field when the page loads. As a result (in addition to CS search button DefaultButton behavior), anyone who loads a page can enter a search, press [Enter], retrieve their results, and never have to touch a mouse.
I added to Setfocus() method to SingleWeblogSearch.cs in CommunityServer.Blogs.Controls and that was pretty much that.
protected void SetFocus(Control controlToFocus)
{
System.Text.StringBuilder sb = new System.Text.StringBuilder();
string scid;
scid = controlToFocus.ClientID;
sb.Append("<script language='javascript'>");
sb.Append("document.getElementById('" + scid + "').focus();");
sb.Append("</script>");
Page.RegisterStartupScript("focus",sb.ToString());
}