根据我的实验,发现“查看所有网站内容”是有SharePoint里Role=“编辑项目”来控制的,所以当我们想让某一用户具有编辑权限,确不能查看所有网站内容时,就用到了下面的方法:
借鉴:http://www.crsw.com/mark/Lists/Posts/Post.aspx?ID=36
1. Open the SiteAction.xml file in Notepad from
"C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\LAYOUTS\EditingMenu\SiteAction.xml"
2. Find the ConsoleNode element that defines the “View All Site Content” link (look for Action="cms:ViewAllSiteContentAction").
3. Add “UserRights” and “RequiredRightsMode” attributes to define the permission levels that a user must have to see the link. For an example, see the ConsoleNode element for the Site Settings link.
4. Run "iisreset /noforce" on the web server to make the change visible.
5. Repeat for each web server on the farm.
修改如下:
<ConsoleNode Action="cms:ViewAllSiteContentAction"
DisplayText="cms,siteactions_viewallsitecontent_displaytext"
Description="cms,siteactions_viewallsitecontent_description"
UseResourceFile="true"
MenuGroupId="200"
Sequence="150"
PermissionContext="CurrentSite"
UserRights="ManageWeb"
RequiredRightsMode="Any"
ImageUrl="/_layouts/images/vwcntnt.gif"
ID="wsaViewAllContent" />
下面是来自MSDN上的关于:ConsoleNode 和 UserRights 的介绍。
1. ConsoleNode Properties
(Microsoft.SharePoint.Publishing.WebControls)
Name |
Description | |
|
Gets or sets the Access Key of this ConsoleNode object. | |
|
Gets or sets the ConsoleAction object that corresponds to this ConsoleNode object. | |
|
Gets a collection of all Attributes properties pertaining to this ConsoleNode object. | |
|
Gets or sets the ID of the ConsoleNode object being replaced, modified or deleted. | |
|
Gets the collection of ConsoleNode objects that are children of this ConsoleNode object. | |
|
Gets or sets how this ConsoleNode object is used with the existing hierarchy. | |
|
Gets or sets a string containing text that describes this ConsoleNode object. | |
|
Gets or sets whether the ConsoleNode object should be enabled for the user. | |
|
Gets a Boolean value that indicates whether this ConsoleNode object has any child ConsoleNode objects. | |
|
Gets or sets whether this ConsoleNode object should be hidden from view when it is disabled. | |
|
Gets or sets the states for which this ConsoleNode object should be hidden. | |
|
Gets or sets the ID of this ConsoleNode object. | |
|
Gets or sets the URL of the image shown when this ConsoleNode is used. | |
|
Gets or sets whether this ConsoleNode object is a separator of other items. | |
|
Gets or sets whether to interpret the NavigateUrl property as relative to the current SPWeb object. | |
|
Gets or sets the group ID in which this item should be displayed. | |
|
Gets or sets the href value of this ConsoleNode object. | |
|
Gets or sets the original ID of this ConsoleNode before an associated action modifies it. | |
|
Gets or sets the parent ConsoleNode of this ConsoleNode object. | |
|
Gets or sets the context in which to evaluate the permissions of this ConsoleNode object. | |
|
Gets or sets the states required for this ConsoleNode object to be enabled in the current context. | |
|
Gets or sets whether all or any UserRights properties must be satisfied. | |
|
Gets or sets the place where this ConsoleNode object appears in the node order. | |
|
Gets or sets the display text associated with this ConsoleNode object. | |
|
Gets or sets the title of this ConsoleNode object. | |
|
Gets or sets the type of this ConsoleNode object. | |
|
Gets or sets whether this ConsoleNode should use its own ImageUrl property or that of the referenced ConsoleAction object. | |
|
Gets or sets whether this ConsoleNode should use its own NavigateUrl property or that of the referenced ConsoleAction object. | |
|
Gets or sets whether this ConsoleNode should use its own UserRights property or that of the referenced ConsoleAction object. | |
|
Gets or sets whether this ConsoleNode should use its own RequiredStates property or those of the referenced ConsoleAction object. | |
|
Gets or sets whether this ConsoleNode object should use its own display text or that of a referenced ConsoleAction object. | |
|
Gets or sets the rights required for this user to see this ConsoleNode object. | |
|
Specifies whether the ConsoleNode should be displayed to the user. |
2. SPBasePermissions Enumeration
(Microsoft.SharePoint)
Member name |
Description | |
AddAndCustomizePages |
Add, change, or delete HTML pages or Web Part Pages, and edit the Web site using a Windows SharePoint Services–compatible editor. | |
AddDelPrivateWebParts |
Add or remove personal Web Parts on a Web Part Page. | |
AddListItems |
Add items to lists, add documents to document libraries, and add Web discussion comments. | |
ApplyStyleSheets |
Apply a style sheet (.css file) to the Web site. | |
ApplyThemeAndBorder |
Apply a theme or borders to the entire Web site. | |
ApproveItems |
Approve a minor version of a list item or document. | |
BrowseDirectories |
Enumerate files and folders in a Web site using Microsoft Office SharePoint Designer 2007 and WebDAV interfaces. | |
BrowseUserInfo |
View information about users of the Web site. | |
CancelCheckout |
Discard or check in a document which is checked out to another user. | |
CreateAlerts |
Create e-mail alerts. | |
CreateGroups |
Create a group of users that can be used anywhere within the site collection. | |
CreateSSCSite |
Create a Web site using Self-Service Site Creation. | |
DeleteListItems |
Delete items from a list, documents from a document library, and Web discussion comments in documents. | |
DeleteVersions |
Delete past versions of a list item or document. | |
EditListItems |
Edit items in lists, edit documents in document libraries, edit Web discussion comments in documents, and customize Web Part Pages in document libraries. | |
EditMyUserInfo |
Allows a user to change his or her user information, such as adding a picture. | |
EmptyMask |
Has no permissions on the Web site. Not available through the user interface. | |
EnumeratePermissions |
Enumerate permissions on the Web site, list, folder, document, or list item. | |
FullMask |
Has all permissions on the Web site. Not available through the user interface. | |
ManageAlerts |
Manage alerts for all users of the Web site. | |
ManageLists |
Create and delete lists, add or remove columns in a list, and add or remove public views of a list. | |
ManagePermissions |
Create and change permission levels on the Web site and assign permissions to users and groups. | |
ManagePersonalViews |
Create, change, and delete personal views of lists. | |
ManageSubwebs |
Create subsites such as team sites, Meeting Workspace sites, and Document Workspace sites. | |
ManageWeb |
Grant the ability to perform all administration tasks for the Web site as well as manage content. Activate, deactivate, or edit properties of Web site scoped Features through the object model or through the user interface (UI). When granted on the root Web site of a site collection, activate, deactivate, or edit properties of site collection scoped Features through the object model. To browse to the Site Collection Features page and activate or deactivate site collection scoped Features through the UI, you must be a site collection administrator. | |
Open |
Allow users to open a Web site, list, or folder to access items inside that container. | |
OpenItems |
View the source of documents with server-side file handlers. | |
UpdatePersonalWebParts |
Update Web Parts to display personalized information. | |
UseClientIntegration |
Use features that launch client applications; otherwise, users must work on documents locally and upload changes. | |
UseRemoteAPIs |
Use SOAP, WebDAV, or Microsoft Office SharePoint Designer 2007 interfaces to access the Web site. | |
ViewFormPages |
View forms, views, and application pages, and enumerate lists. | |
ViewListItems |
View items in lists, documents in document libraries, and view Web discussion comments. | |
ViewPages |
View pages in a Web site. | |
ViewUsageData |
View reports on Web site usage. | |
ViewVersions |
View past versions of a list item or document. |