Connect.Collaborate.SharePoint
Aug
18
This is the missing OneNote section from my Tech-ED presentation "Understanding SharePoint" which I have recorded. My Toshiba M4 refused to mirror the desktop onto the projector and trying to draw with the mouse was a joke (I tried, they laughed).
 
This version is on SoapBox and I'm trying to upload a higher quality copy to my streaming provider but having problems.
 

I'll try and narrate my PPT also as the slides themselves don't tell all the details.

Categories:

 
Aug
12
And I realised that I have been to every TechED in NZ bar the first one and that I have presented at all of these except for the one that I ran. Last year was only a cameo appearance because so many of the the SharePoint and Office product team came down for the 2007 launch that I wasn't needed. This year I'm doing 2.5 sessions and can't wait to get into it.
 
The speakers dinner was great as always and now there is the anticipation of tomorrows Key Note session.
 
My only problem is that this is yet another week of being away from home. That makes 8 in a row where I have been out of town for at least a day or more.
My outstanding blogging topics is growing at an alarming rate so I want to get at least one thing off my chest.
 
If you are installing SQL Server 2005 off a remotely shared CDROM you will get an error part way through the install and setup will not install any of the client utilities. What you are not seeing is the request for CD #2. That was several wasted hours and we couldn't find CD#2 so use the DVD instead ;-)
 
More technical posts to follow, I promise...
Categories:

 
Aug
4

There is no shortage of SharePoint content this year...

OFC304 - Microsoft Windows SharePoint Services and Microsoft SharePoint Portal Server 2003 Upgrade and Migration
13/08/2007 2:15 PM

OFC302 - Understanding SharePoint Infrastructure
13/08/2007 3:50 PM

OFC326 - Search in Microsoft Office SharePoint Server 2007: Customising, Extending, and Configuring
13/08/2007 5:15 PM

OFC313 - Document and Records Management Using Microsoft Office SharePoint Server 2007 and Microsoft Office Clients
14/08/2007 9:00 AM

OFC301 - Capacity and Performance Planning for Microsoft SharePoint Products and Technologies 2007
14/08/2007 10:45 AM

OFC303 - What is a SharePoint Site?
14/08/2007 12:10 PM

OFC418 - Microsoft SharePoint Products and Technologies 2007: Deployment and Advanced Administration Topics
14/08/2007 3:45 PM

SVR213 - Microsoft System Center Data Protection Manager (DPM) 2007: Protecting all types of data (including SharePoint)
14/08/2007 5:10 PM

OFC316 - Branding and Customizing Microsoft Office SharePoint Server 2007 Sites
15/08/2007 3:45 PM

OFC409 - Workflow in Microsoft SharePoint Products and Technologies 2007: Deep Dive for Developers
15/08/2007 10:45 AM

There are also 2 "voice of the customer" sessions

VOC201 - Building a collaboration platform for automation (KiwiBank)
13/08/2007 3:50 PM

VOC204 - Microsoft Office SharePoint 2007 as a platform in NZ Public service (Ministry of Transport)
14/08/2007 2:20 PM

I look forward to seeing you there...

Categories:

 
Aug
4

In your Data View or Data Form web part, you can conditionally display content based on the ddwrt:IfHasRights() function.

<xsl:if test="ddwrt:IfHasRights(permissionMask)">
something...
</xsl:if>

Trying to get info on values for permissionMask from the advanced conditional formatting dialog box was not possible because there is no scrolling of this information in the UI (bug)

After a bit of searching, I found the values in C:\Program Files (x86)\Microsoft Office\Office12\CAML2XSL.XSL

The permissinMask value is the sum of any of the values below:

ViewListItems - 1

AddListItems - 2

EditListItems - 4

DeleteListItems - 8

ApproveItems - 16

OpenItems - 32

ViewVersions - 64

DeleteVersions - 128

CancelCheckout - 256

PersonalViews - 512

ManageLists - 2048

ViewFormPages - 4096

Open - 65536

ViewPages - 131072

AddAndCustomizePages - 262144

ApplyThemeAndBorder - 524288

ApplyStyleSheets - 1048576

ViewUsageData - 2097152

CreateSSCSite - 4194314

ManageSubwebs - 8388608

CreateGroups - 16777216

ManagePermissions - 33554432

BrowseDirectories - 67108864

BrowseUserInfo - 134217728

AddDelPrivateWebParts - 268435456

UpdatePersonalWebParts - 536870912

ManageWeb - 1073741824

UseRemoteAPIs - 137438953472

ManageAlerts - 274877906944

CreateAlerts - 549755813888

EditMyUserInfo - 1099511627776

EnumeratePermissions - 4611686018427387904

FullMask - 9223372036854775807

Categories: