October 2004 - Posts

Microsoft Windows SharePoint Services Help


Overview
This compiled help file provides searchable, up-to-date information about using and managing sites based on Microsoft Windows Sharepoint Services technology. The topics covered in this file include the following:
  • Basic concepts
  • Viewing information
  • Sharing files and documents
  • Sharing information
  • Deleting information
  • Organizing meetings
  • Customizing lists and pages
  • Customizing sites
  • Customizing pages by using Web Parts
  • Managing permissions and security
  • Managing sites and settings
  • Troubleshooting
  • Reference
Posted by arnon | with no comments
Filed under:

Nifty Html Tools

Thanks to Bryant for point these out
The accepted way to debug complex table-based HTML pages is to add a border="1" attribute to the
element. Toggle Borders is a utility which automates this and more. It is accessed from the context menu in Internet Explorer and will color-code tables, spans and divs for you to see how your website, or a third party website has been layed out. Select Toggle Borders again and the color-coding is removed.

Full Source
Full Source is an Internet Explorer menu extension which displays the source Internet Explorer is displaying, directly from the Internet Explorer object model. This is useful wherever javascript is dynamically writing HTML into the DOM, or where XSLT has been used to generate HTML.

Posted by arnon | 2 comment(s)
Filed under: ,

ADVIS Site Navigator 1.3 released

The new version 1.3 offers the following new or enhanced features:
 
Show document libraries and other lists and the number of items they contain
Specify multiple site anchors
Show all sites of one ore multiple virtual server(s) and even portal sites
Customize the icons and styles used by Site Navigator
Show or hide the root site in the tree
Open the site links in a new window
Show the site/list descriptions
Specify how many tree levels should be expanded in the default view
 
Posted by arnon | with no comments
Filed under:

Looking at Enterprise Deployments of Windows XP SP2 and SharePoint Technologies

 
XP SP2 Rollout: What's the Delay?
Almost 2 months after Microsoft started distributing XP SP2, a startling number of enterprises have still not rolled out XP's most significant update. Part of the reason, of course, is that most businesses need to test updates carefully, and Microsoft has done such an effective job of communicating how important XP SP2 is that these companies have held off even longer than usual out of fear that upgrading will cause massive problems. That said, many readers who've tested or deployed SP2 were surprised at how seamless the transition was, with few problems reported. Here are some of the most common reasons readers have delayed deploying SP2:
- Application incompatibilities. A lot of readers pointed to incompatibilities between SP2 and both commercial and inhouse software applications. A typical example is antivirus software. One reader noted that Symantec only belatedly offered SP2-compatible patches to its corporate antivirus package and did so for only the latest version (although I can say from experience that the previous software version works fine with SP2, but you need to turn off the Security Center's nag alert on nonmanaged machines).
 
 
Posted by arnon | with no comments
Filed under:

Introducing the ASP.NET 2.0 Web Parts Framework

Summary: Web Parts provide you with the infrastructure for creating customizable Web applications. When you build a Web site with Web Parts, the Web site can be easily customized by either the administrator of the Web site or the individual users of the Web site. Web Parts are all about flexibility. (54 printed pages)
 
Posted by arnon | with no comments
Filed under: ,

Hi all, some great products being offered by Syntergy. Check them out.

  • Audit for Sharepoint® - enhanced auditing of documents for Windows Sharepoint Services and Portal Server 2003. Track when a document has been viewed in addition to other operations on a file. Currently shipping, call for a demo.
     
  • Bulkloader for Sharepoint®  - providing the capability to load large volumes of data into Sharepoint®. Supports advanced features such as loading tasks, discussions as well as site and document library creation.
  • LiveMail for Sharepoint® - offline documents from Sharepoint (mail multiple documents from Sharepoint to yourself, then reply to email with any changes). Extending the email notification of events in Sharepoint® to include threaded discussions and providing inbound loading of information via email (Exchange is not a requirement). Currently in development for release in September '04, call for a demo.
     
  • Cut/Copy/Paste - GUI additions to the portal server to allow copying or moving of documents including all of it's versions. Currently available.
     
  • Site Manager Framework - a collection of webparts, internet applications and services to help organize sites based upon your business process.
     
  • Notification Defaults - set notification at global and site levels for specific users at an administrator, or site manager level.
     
  • ShareLink - products and services to enable Livelink® system to be available in part of the Sharepoint® portal, or to assist in migrating data from Livelink® into Sharepoint®
     
  • Replication technologies for Sharepoint® - Providing tools to export and import data from one server instance to another.
Posted by arnon | with no comments
Filed under:

Cascading Style Sheets Class Definitions for Microsoft Windows SharePoint Services

The classes for cascading style sheets that determine the styles and formatting applied to pages in Microsoft® Windows® SharePoint™ Services are defined in OWS.CSS, which is located in the following directory of each front-end Web server:
 
Local_Drive:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\60\TEMPLATE\LAYOUTS\1033\STYLES
 
Warning Changes made to OWS.CSS may be lost when Windows SharePoint Services is updated, such as through installation of service packs or patches. An alternate .css file can be specified in the ONET.XML file of a site definition by using the AlternateCSS attribute of the Project element.
 
Identifying Applied Classes
Add the following code sample within the BODY element of any ASPX page used in Windows SharePoint Services to identify which class is applied to a specified element in the user interface (UI). When you add the sample, a ToolTip appears when the pointer is passed over the UI, indicating which class is being used.
 
For example, you can add the sample to Default.aspx located at:
Local_Drive:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\60\TEMPLATE\1033\[SPS][STS]
You can also add the sample to an .aspx page used for a list stored in the following directory:
Local_Drive:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\60\TEMPLATE\1033\[MPS][STS]\LISTS\List_Type
Lastly, you can add it to an ASPX page used in SharePoint Central Administration such as:
Local_Drive:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\60\TEMPLATE\ADMIN\1033 
 
Once you identify the class in use for a specified UI, you can use the table that follows to customize the styles and formatting in use to suit your own needs.
 
Sample:
 
<script language="jscript">
function ClassInfo()
{
    if (window.event.srcElement.className != null)
    {
        stsclass.innerText = window.event.srcElement.className;
    }
    else
    {
        stsclass.innerText = "";
    }
}
 
window.document.body.onmouseover = ClassInfo;</script>
 
<div style="border-style:solid;border-width:1px; width: 281px; height: 34px;
position: absolute; left: 286px; top: 41px; z-index:15; padding-left:4px;
padding-right:4px; padding-top:2px; padding-bottom:2px; background-color:#EEEEF4">
<p id="stsclasstitle"><font face="Tahoma" id="stsclasstitle">Classname: </font>
<font face="Tahoma"id="stsclass">&#xa0;</font>
</p></div>
Posted by arnon | with no comments
Filed under:

Sharepoint: Adding New List Items Using the Lists.asmx Web Service

“The current MSDN documentation contains what I might call *adequate* coverage of the use of Web Services with Windows Sharepoint Services 2.0  In the case of simple operations, such as retrieving list items, the samples are more or less useful and can be adapted for use in a local environment with few challenges.  Other operations, however, are not particularly well-documented -- especially those that involve the use of CAML (Collaborative Application Markup Language) XML Batches.  Anyone who has attempted to delve into the wacky world of CAML has certainly discovered that working in CAML is somewhat convoluted.”
 
 
Posted by arnon | with no comments
Filed under:

SharePoint Portal Server 2003 Training Kit

Description
This training kit has been specifically designed to ensure that Sharepoint Portal Server users can effectively use the capabilities of the product to better share information, collaborate with others and find relevent information and resources within their organization. The training has been developed keeping in mind the unique need of the beginners and advanced users with easy to understand content that can be accessed either as a self paced study guide ot as a quick reference guide. Learn how to perform everyday tasks like collaborating on documents, setting up efficient meetings and searching for relevant information and resources.
 
 
Posted by arnon | with no comments
Filed under:

Sharepoint: Architectural Overview of Windows SharePoint Services

New article on MSDN:
 
Summary: Examine the architecture implemented in Microsoft Windows Sharepoint Services. Learn what happens on the server when users issue page requests, and how Windows Sharepoint Services responds. Understand the role of managed code in relation to unmanaged code in Windows Sharepoint Services, and the Windows Sharepoint Services database schema. (13 printed pages)
 
 
Posted by arnon | with no comments
Filed under:

Asp.Net Controls: nSurvey

“NSurvey is a free web based survey and form engine toolkit for Microsoft's .net. Written in pure managed C#, NSurvey aims anyone who needs to collect quickly valuable information from customers, visitors or employees.

Why continue to spend thousands of $$ on expensive and closed survey packages ?!
Thanks to the flexibilty of the NSurvey form engine and to the ASP.net platform, starting a survey has never been that cheap and easy! ”
 
 
Posted by arnon | with no comments
Filed under:

Sharepoint .Text Skin V0.00000001

Well, my first attempt at .Text skin aint looking all that grand, but ill get there. Hoping to do .Text skins for all the default Sharepoint Themes.
If anyone wants them, leave a comment and ill mail them to you.
Posted by arnon | 3 comment(s)
Filed under: ,

Asp.net: RssFeed

An ASP.NET server control that displays the list of items in an RSS feed.
 
Posted by arnon | with no comments
Filed under:

Sharepoint: gotsharepoint.com

“Offer a wide range of products from leading Microsoft Sharepoint ISVs and Partners. GSP continuously researches and enhances its product mix based on new product introductions and the needs of its valued customers.”
 
 
 
Posted by arnon | with no comments
Filed under:
More Posts Next page »