Sunday, February 17, 2013

One Step Access of SharePoint Feature Solution



  •  Add web parts to any page: append  ?PageView=Shared&ToolPaneView=2
  •  Create New Site Content  /_layouts/create.aspx
  •  List Template Gallery: _catalogs/lt/Forms/AllItems.aspx
  •  Master Page Gallery: _catalogs/masterpage/Forms/AllItems.aspx
  •  Manage your Alerts  _layouts/SubEdit.aspx
  •  Manage Site Collection Administrators  /_layouts/mngsiteadmin.aspx
  •  Manage Sites and Workspaces /_layouts/mngsubwebs.aspx
  •  Manage People  /_layouts/people.aspx
  •  Manage User Permissions /_layouts/user.aspx
  •  Modify Navigation  /_layouts/AreaNavigationSettings.aspx
  •  Recycle Bin /_layouts/AdminRecycleBin.aspx
  •  Save Site as Template: _layouts/savetmpl.aspx
  •  Site Settings page: _layouts/settings.aspx
  •  Site Template Gallery : _catalogs/wt/Forms/Common.aspx
  •  Site Column Gallery  /_layouts/mngfield.aspx
  •  Site Content Types /_layouts/mngctype.aspx
  •  Site Content and Structure Manager /_layouts/sitemanager.aspx
  •  Site Usage Summary /_layouts/SpUsageWeb.aspx
  •  User Alerts  /_layouts/sitesubs.aspx
  •  View All Site Content /_layouts/viewlsts.aspx
  •  Web Part Gallery: _catalogs/wp/Forms/AllItems.aspx
  •  Web part maintenance mode:  append ?contents=1 to the URL of the page

Magic of "New" Tag Indicator in SharePoint

 

        Want to replace it?

            
As part of branding, we can replace the New Indicator. Its just an image, new.gif , located       at:/_layouts/1033/images/new.gif (\14\template\layouts\1033\IMAGES\new.gif). Behind the scenes ddwrt:IfNew Function determines whether to display this image or not.

      Want to change the values?

           
You can query the current value of !New indicator by: 
                          stsadm -o getproperty -pn days-to-show-new-icon -url <URL-of-web-app>
            If you want to change the days:
                          stsadm -o setproperty -pn days-to-show-new-icon -pv <days-to-show> -url     <web-app-URL>

        Want about Disabling it?
Want to disable the !New tag indicator? execute the STSADM: stsadm -o setproperty -pn days-to-show-new-icon -pv 0 -url <web-app-URL>
Here we passed "0" in Property value, which disables the New indicator.