-
-
Ever want the “Incoming Links” page to show up on the wiki page rather than be a separate page? Well, here is a handy web part you can add to a wiki page.
This provided without warranty, just link to this article and tell folks how you used it.
It uses some clever JavaScript to get the content from that page and asynchronously render it in a web part.
- Upload the Incoming Links.dwp file to your Web Part Gallery
- Edit the wiki page in question (not the wiki content, the whole page)
- Add the Incoming Links web part to the web part zone at the bottom of the page.
This will either prevent you from the hassle of also having to support wikimedia in your environment (which is really great if you can) or buy you time until you can deploy SharePoint 2010.
-
-
Here is a handy macro that allows me to set the task priorities in Microsoft Project 2007 based on tasks that I have imported/synchronized to Visual Studio Team System.
The reason I do this is because this allows me to have dependencies between TFS work items, determine which ones need to happen first, level my resources, and calculate completion dates for the work items.
Attribute VB_Name = "Module2"
Sub SetPriorityFromTFS()
Attribute SetPriorityFromTFS.VB_Description = ""
‘Description
LevelingOptions Automatic:=False
For Each T In ActiveProject.Tasks
Select Case T.Text19
Case 1
T.Priority = "900"
Case 2
T.Priority = "700"
Case 3
T.Priority = "500"
Case 4
T.Priority = "300"
Case 5
T.Priority = "100"
End Select
Next T
LevelingOptions Automatic:=True
LevelNow
End Sub
-
-
I recently created a XML Web part that uses XSL and the DHS Threat Level web service to render the current threat level in a way that looks exactly like the DHS Threat Advisory image:

Here it is for free to download with no warranty: DHS Thread Advisory.dwp
There is also an image: http://www.dhs.gov/threat_level/current-sm.gif
For fun, link to this post if you use the web part.
-
-
Very handy for testing and help desk calls:
Tip: insert form version with the expression:
substring-before( substring-after( /processing-instruction()[local-name(.) = "mso-infoPathSolution"], 'solutionVersion="'), '"')
Source: http://www.nivot.org/2008/09/30/WhyVSTO30VisualStudio2008SharePointWindowsWorkflowAndInfoPathMightGiveYouAHernia.aspx
-
-
Scenario: “Please respond to this email indicating your t-shirt size and which session you can attend… or whatever” send to: 40 people.
Read this: http://office.microsoft.com/en-us/access/HA100154271033.aspx
-
-
Add and hide this web part on the page where the reminders web part is located.
Often folks will want to export the Reminders web part from Project Web Access (PWA) 2007 and have it shown on a related SharePoint (MOSS) page. You can export the web part, you can add it to a SharePoint page, you can set the PWA URL to your PWA URL and it will work.
It will throw a javascript error.
The error presents itself as a document.stylesheets[0] etc. etc. javascript error and prevents all javascripts from running (such as menu flyouts).
The attached web part is simply a function redefinition that doesn’t require a feature deployment that fixes the reminders web part on that and only that page.
-
-
These notes are in addition to http://technet.microsoft.com/en-us/library/cc296362.aspx
These are the notes I generated that I used in overlay with the installation instructions.
- Make sure Cert Server is installed and available
- Configure a certificate for ADAM
- Run ADAM setup from internet
· Add/Remove only works if you have the OS disk - Create DNS entries
· For example: collab and collab.external - Create Collab web app
- Reset IIS
- Create email address (e.g. SharePoint@yourdomain.com)
- Extend to an SSL external (e.g. collab.external)
- Create a site collection on the web application
- Run ADAM script that comes with kit
- Change the ADAM Service account
- Run database script
- Run SPScript
Note: ADAM ports are typically 389, 636 or 50000, 50001 - Request IIS Cert
-
-
For some reason my laptop got really sluggish a while back. Normally I wouldn’t blog about this type of thing, but it was so impactful I thought I would share. I’ve already done and always do the typical stuff: defrag, clean registry, uninstall add-ons, maintain free disk space, etc. This one, however, was the culprit.
Check this out if you are experiencing the same: kb822158 Virus scanning recommendations for computers that are running Windows Server 2003, Windows 2000, Windows XP, or Windows Vista
Excerpt: “This article also contains information to help you minimize the effect of antivirus software on system and network performance.”
-
-
Andrea takes a stab at stating it.
Excerpt:
- As simple as possible, and complete (Better not bigger, spanning the semantic space)
- Consistent
- Extensible and reusable (Designed to evolve and be used beyond original purposes)
- Design tradeoffs well-understood and documented
- Normalized (To a point)
- Incorporating stable and well-defined concepts and semantics – Usually taken from other standards and models
- Designed and encoded for interoperability and sharing of semantics – But not limited by a specific encoding (such as XML Schema or database limitiations)