in

SharePoint Blogs

The Best Place for SharePoint-related Blogs

The Dean's Office

February 2006 - Posts

  • Want more information on WSS v3?

    Updated: For a comprehensive list of new features, along with links to the original source, check out my new article about WSS v3.0 features. Thanks, Gene, for compiling this exhaustive list!

    Some people have written in to Gene Kraybill and to me wondering “where did you get that information about WSS v3?  Aren't you under NDA?”  Well, of course, I am under NDA, just like every other MVP and beta tester out there.  Microsoft recently released testers from their NDAs as that NDA pertains to the client-side applications of Office 2007, but the NDA still stands on server products.  So I can't talk about something that isn't already public (so don't even ask!).  Lucky for Gene and me, there's a HUGE body of information about WSS v3 that IS public.  Just waiting for you to read!  It may seem like the SharePoint Show interview was revelatory, but when it gets down to it, we basically paraphrased existing material (of course, my commentary on Outlook 2007 was my own, but hey, that's allowed now.  Who doesn't love Outlook 2007, I ask!).  If you want the REAL dirt on what's coming, you can refer to my post on the subject (made over six months ago, during PDC) -- this post contains just about everything mentioned in the interview.  There were a few bits of new news in that interview, so rather than leave you guessing, here's a link to the original sources.  Gene has the exhaustive list (with links!) on the SharePoint Show site, this is just a summary of the sources.

    PDC 2005, Arpan Shah, David Gainer, Channel 9 (Robert Scoble's video interview with PJ Hough and company), Maurice Prather, Mike Fitz, MS Press Pass, MS article on ECM, PJ Hough, the SharePoint Team Blog, and Tudor Toma.

    If you're not reading those sites, you're missing out!  My interview with Gene was only a brief recap of the stories on these sites.  For the REAL meat of the matter, go directly to the source.  Don't bookmark this for later, do it now.  There's so much information out there for you to read, so much to learn!  When you're done, come back here and talk about the features that are most exciting to you!  Personally, I'm excited about the navigation enhancements in WSS v3.  That, and the fact that all lists and libraries have event handlers.  What new feature makes you excited to upgrade?  (Be aware: If you're going to comment on a feature, and the source isn't obvious, quote it.  We take NDAs seriously around here, we've already asked bloggers to remove posts that were covered under NDA).

  • I'm on the SharePoint Show!

    Updated again!: For a comprehensive list of new features, along with links to the original source, check out my new article about WSS v3.0 features. Thanks, Gene, for compiling this exhaustive list!

    Update: For those with NDA-related concerns about this interview, you may be interested in reading a clarification.  Gene and I were discussing (mostly) six month old news!  I hope it was entertaining, though; give it a listen, and check out the clarification to find more sources of public information about WSS v3.

    Gene Kraybill's SharePoint Show (Episode #2) was just released, and I'm in it!  Thirty-five minutes of my own commentary and opinions about the next release of Windows SharePoint Services.  Thanks, Gene, for giving me the opportunity to talk about what's coming!  Check it out, and let Gene (and me!) know what you think!

  • SuperGeek Tip: Open off-site links in a new window

    I know I said I'd do these every week, but I might not be able to post this one next week, and I just can't sit on it any longer.

    Many people want to modify their links list (really, just the links web part on the default.aspx of a site) so that links open in a new window.  Typically, what they REALLY want is only off-site links opening in a new window.  Up until now, you've had to modify the site definition, or (heh) tell users to hold the SHIFT key down.

    Why not throw a Content Editor Web Part on the page, and use this code sample?  It will modify ALL links that leave the current domain (except JavaScript links, don't want to break the “Help” at the top of a SharePoint page) to open in a new window and, if you choose, will show a warning first.  Here's the code:


    <script>
       var theLinks = document.links;
       var thisDomain = window.location.hostname;
      
       // Edit "theMessage" to your liking
       var theMessage = "You are now leaving " + thisDomain + ".  The content of the requested web site is outside our control.  The requested web page will open in a new window.  You may click \"Cancel\" to stop loading the requested page.  You may need to hold your CTRL key down when pressing \"OK\" to bypass your pop-up blocking software.";
      
       // Change "showMessage" to 0 if you don't want the warning to pop up when navigating to external sites.
       var showMessage = 1;
      
       function updateLinks() {
      for (i=0; i < theLinks.length; i++) {
       var thisLink = theLinksIdea;
       if (thisLink.href.indexOf(thisDomain) == -1 && thisLink.href.indexOf("javascript") == -1) {
        thisLink.target = "_blank";
        if (showMessage == 1) {
         thisLink.onclick = confirmNav;
        }
       }
      }
     }
     
     function confirmNav() {
      return confirm(theMessage);
     }
     
     document.body.onload = updateLinks;
    </script>

Need SharePoint Training? Attend a SharePoint Bootcamp!

Posts (c) their respective authors. Everything else (c) 2007 SharePoint Experts