Archive for April, 2009

SharePoint Permissions – Part 1 April 24th, 2009

Mike

After some hunting, I discovered that the information from Microsoft (and elsewhere) regarding the SharePoint Permission Levels was somewhat sparse and also a little conflicting. There are a few good articles (links at the bottom) but they disagree and don’t fully represent the number of Permission Levels. So, I did this the hard way and clicked through them all and made some tables.

Permission Levels

Permission Levels

The following tables show the permissions that comprise each out of the box Permission Level, correct for an out of the box Collaboration Portal on Microsoft Office SharePoint Server 2007 Enterprise as of Service Pack 1 and the Infrastructure Update.

List Permissions

Permission Level
Permission Full Control Design Manage Hierarchy Approve Contribute Read Restricted Read Limited Access View Only
Manage Lists X X X
Override Check Out X X X X
Add Items X X X X X
Edit Items X X X X X
Delete Items X X X X X
View Items X X X X X X X X
Approve Items X X X
Open Items X X X X X X X
View Versions X X X X X X X
Delete Versions X X X X X
Create Alerts X X X X X X X
View Application Pages X X X X X X X X

Site Permissions

Permission Level
Permission Full Control Design Manage Hierarchy Approve Contribute Read Restricted Read Limited Access View Only
Manage Permissions X X
View Usage Data X X
Create Subsites X X
Manage Web Site X X
Add and Customise Pages X X X
Apply Themes and Borders X X
Apply Style Sheets X X
Create Groups X
Browse Directories X X X X X
View Pages X X X X X X X X
Enumerate Permissions X X
Browse User Information X X X X X X X X
Manage Alerts X X
Use Remote Interfaces X X X X X X X X
Use Client Integration Features X X X X X X X X
Open X X X X X X X X X
Edit Personal User Information X X X X X

Personal Permissions

Permission Level
Permission Full Control Design Manage Hierarchy Approve Contribute Read Restricted Read Limited Access View Only
Manage Personal Views X X X X X
Add/Remove Personal Web Parts X X X X X
Update Personal Web Parts X X X X X

See also: Permission Levels and Permissions at Office Online and Permissions behind the permission levels in SharePoint at Sridhar's Blog.

I'm sure there’ll be more articles to come on SharePoint Permissions, hence this is Part 1 :)

Continue reading...


 

Free Stuff! April 7th, 2009

Mike

Free stuff is great (when it's worth having) and recently I think I have found two resources that are.

Firstly, I am often looking for chunks of CSS to get me started, help me write good navigation menus and so forth. Invariably, I find such a resource, use it and then promptly forget about it. Well, no longer! Behold, Free CSS! This is a great resource to get you started when you have an idea in your mind of the desired end result but inspiration to CSS it is lacking. The terms of use for each item varies, so be sure to check the author's web site(s).

The second nomination for great free resource goes to Icons Etc. This is a repository of icons that, at the time of writing, are free for both personal and commercial use. The icon sets might not be to everyone's tastes or suitable for all projects but I think they are pretty nice and, best of all, completely free!

Enjoy!

Continue reading...


 

Floated Images Disappearing in IE6 April 1st, 2009

Mike

Having made quite good progress developing a site, I added a right float to an image only to have it disappear completely in IE6 (running on a Windows 98 SE Virtual Machine, if you’re interested ;) ). After a bit of Googling, I discovered that the simple solution was to ensure that all images had their position set to relative in the CSS file. I.e. all that was required was:


IMG  {
position: relative;
}

Credit where credit is due, I found the solution on this blog.

Continue reading...