FebMarch 2004Apr
SMTWTFS
29123456
78910111213
14151617181920
21222324252627
28293031123
45678910

Site Stats

  • Posts - 475
  • Articles - 94
  • Comments - 577
  • Trackbacks - 231

News

All the news that's fit to print.

Disclaimer

  • These postings are provided
    "AS IS" with no warranties, and confer no rights.

Desktop Cam

  •  

My Flickr Photos

  •          

Post Categories

Article Categories

Archives

Image Galleries

My Bookshelf

In My CD Player

Blogs I Like To Read

Longhorn Links

MCE 2005 Sites

Newsgator Online Services

Sharepoint Links

Useful Links

Web Design Sites

Windows Server Links

Miscellany

  •             

  •                 

  •                 

Wednesday, March 24, 2004 #

DotNetNuke, the open source .NET-based portal solution has just been updated to 2.0.  Can't wait to update http://dotnetnuke.roudybob.net.

Go here to download or to find out more information:  http://www.dotnetnuke.com/

posted @ 6:03 PM

See, this is exactly what I was talking about in my last post.   The problem with using WSS is this:  hosting solutions for WSS are quite expensive and if you decide to host it yourself on a machine, you need to have Windows CALs (Client Access Licenses) for each connection.  You could do that or buy an “external connector”.  Using DotNetNuke (an open-source portal) might be an even better solution…

Recently I've had a couple of questions from readers asking about the possibility of using SharePoint for blogging.  These questions have been sitting in my “Research as a possible blog topic someday when I have the time” folder, waiting for a spare moment.  Then today I received an email/comment from Sig Weber pointing me to his SharePoint Blog.  To be clear, Sig's created a blog that's done in SharePoint, which contains lots of good content including posts about his progress, trials and tribulations in using SharePoint as a blogging tool.  (Note: If you get a permissions error, you should be able to go past it -- as Sig points out in his blog, it's a work in progress :)  So check out Sig Weber's Playground (aka. "Extreme SharePoint'ing" or: doing more with less) blog, especially if you're interested in evaluating SharePoint as a blogging tool.


[OfficeZealot Recent Blogs]

posted @ 2:34 PM

SharePoint Services could be a great weblog platform.  It’s got all the pieces – discussion, documents, photos, etc.  Unfortunately, this is as close as we can get right now.  Unless you could write a Web Part that pulled data out of the blog database directly then formatted it… 

Here’s a handy tip for any Windows Sharepoint Services (WSS) aficionados out there… how to add a simple Blog web part into your team site.

Firstly, look at the top right of your WSS site – you should see a “Modify My Page” or “Modify Shared Page” link – click on the drop-down and you should be able to select ‘Add Web Parts’ then ‘Browse’. If you navigate to the end of the list of the team web site gallery, you should see the basic ‘XML Web Part’ which is part of the standard installation of WSS.

 

Drag & Drop the XML Web Part into one of your zones (the right one makes sense since it is typically narrower and used for links etc). Now, in the web part you’ve just dropped, click on the ‘open the tool pane’ link, and it will replace the list of parts at the right hand side with properties of the part you’ve just dropped.

 

Now you need to add the RSS feed URL for the Blog you’re interested in - http://blogs.msdn.com/exchange/Rss.aspx would be a good place to start – into the field under the ‘XML Link’ heading… this instructs the web part to fetch some raw XML which describes the content you’re ultimately going to be displaying. The next step is to add some XSL which will describe to the browser how to format the content being provided by the URL you’ve given already.

 

Click on the ‘XSL Editor’ and copy & paste the following XSL into the pane (don’t worry about the formatting).

 

<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<xsl:for-each select="rss">
<xsl:for-each select="channel">
<xsl:for-each select="item">
<xsl:for-each select="title">
<a>
<xsl:attribute name="href">
<xsl:value-of select="../link" />
</xsl:attribute>
<B>
<span style="color:navy; font-family:Tahoma; font-size:8pt; font-style:normal;">
<xsl:apply-templates />
</span>
</B>
</a>
</xsl:for-each>
<br />
<xsl:for-each select="pubDate">
<span style="font-family:Tahoma; font-size:8pt;font-style:italic;">
...
<xsl:apply-templates />
</span>
</xsl:for-each>
<br />
</xsl:for-each>
</xsl:for-each>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>

 

Now, all you need to do is go to Appearance and set a title for the web part… “You had me at EHLO!” for example. Now, you’re done – hit OK and you’ll go back to the main page; you should see the list of current posts and the date/time the post occurred. One thing which might catch you out is the fact that the WSS server may be behind a proxy – if so, you might see a timeout error on the XML Web Part. You may need to either install the Microsoft Firewall client or else edit the Web.config settings to tell the server which proxy to use – more details are in Q823375.

- Ewan Dalton


[You Had Me At EHLO...]

posted @ 2:27 PM

Yet another Microsoft Product Group dipping their toes in the blogging water.  This is great.   

KC just pointed out to me that the InfoPath team has a blog.  I was embarrassed to find that they've been blogging for a week (12 posts already) and I didn't notice!  They are interested in getting feedback on topics you'd like to see them cover in this post -- I'm sure you'll have some suggestions :)  I've added them to the right nav, as well.


[LauraJ's Weblog]

posted @ 10:14 AM