About the author

Author Name is someone.
E-mail me Send mail

Recent posts

Recent comments

Don't show

Authors

Disclaimer

The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

© Copyright 2010

Day of stupidity...

2 things

1. Google putting images on their search page and no way to turn them off!

2. Microsoft moving Sketchflow into Expression Studio Ultimate! Oh well, back to Balsamiq.

Stupid, stupid, stupid!

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Categories: Stupid
Posted by tb on Wednesday, June 09, 2010 10:01 PM
Permalink | Comments (0) | Post RSSRSS comment feed

First SharePoint beta exam tomorrow :-)

I'm booked in to take TS: 71-667 - Microsoft SharePoint 2010, Configuring in the morning.

Should be fun Smile

Then I'm taking PRO: 71-668 - Microsoft SharePoint 2010, Administrator on Friday.

Unfortunately I didn't have spare time to book in the developer beta exams. I'll have to do them when they go live.

 

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Posted by tb on Tuesday, June 01, 2010 9:33 PM
Permalink | Comments (0) | Post RSSRSS comment feed

Adding a Flash header to the Suffusion WordPress template

I've been doing some web design work for a charity recently using Sayontan Sinha's brilliant Suffusion WordPress template.

 The template isn't designed to support Flash so a little digging was required to integrate a Flash header into the site.

 The header is generated by a function called suffusion_display_header whch you can find in a file called actions.php.

function suffusion_display_header() {
 global $suf_sub_header_vertical_alignment, $suf_header_fg_image_type, $suf_header_fg_image; ?>
    <div id="header" class="fix">
 <?php $header = $suf_header_fg_image_type == 'image' ? "<img src='$suf_header_fg_image' alt='".get_bloginfo('name')."'/>" : get_bloginfo('name');
 if ($suf_sub_header_vertical_alignment == "above") { ?>
     <div class="description"><?php echo bloginfo('description');?></div>
     <div class="blogtitle"><a href="<?php echo get_option('home');?>"><?php echo $header;?></a></div>
 <?php
 }
 else { ?>
     <div class="blogtitle"><a href="<?php echo get_option('home');?>"><?php echo $header;?></a></div>
     <div class="description"><?php echo bloginfo('description');?></div>
<?php
 } ?>
    </div><!-- /header -->
<?php
}

The bit that generates the header is inside the <div class="blogtitle"></div> section. Adding Flash simply requires replacing the current contents with the appropriate Flash tags.

<div class="blogtitle">
<object
        classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
        codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0" id="header1" width="1000" height="125">
        <param name="movie" value="header1.swf">
        <param name="bgcolor" value="#FFFFFF">
        <param name="quality" value="high">
        <param name="allowscriptaccess" value="samedomain">
        <embed
          type="application/x-shockwave-flash"
          pluginspage="http://www.macromedia.com/go/getflashplayer"
          name="header1"
          width="1000" height="125"
          src="header1.swf"
          bgcolor="#FFFFFF"
          quality="high"
          swliveconnect="true"
          allowscriptaccess="samedomain">
          <noembed>
          </noembed>
        </embed>
</object>
</div>

and now you have a Flash header Smile

In my case I had to modify the div in the else branch to get the header to appear.

NOTES:

  1. this is very simplistic but it works.
  2. making this work across all browsers and degrade nicely when Flash is turned off also requires more work. Luckily that work has already been done by others and it just needs to be incorporated here.
  3. true Flash integration (adding menus to the config UI etc.) would require much more work.
  4. this may not work for all configurations of the template.

For now we have a working solution, if I get some more time I'll work on cleaning this up.

 

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Categories: WordPress | Suffusion
Posted by tb on Tuesday, June 01, 2010 8:58 PM
Permalink | Comments (0) | Post RSSRSS comment feed

New SharePoint resources site...

I finally got round to creating a web site to store all the resources I give out to students and clients.

It's at http://sharepoint-resources.co.uk and I'll be filling the content out over the next few weeks and maintaining it thereafter.

Hopefully it will become a useful resource for anyone working with SharePoint Smile

Currently rated 5.0 by 1 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Posted by tb on Tuesday, March 09, 2010 12:31 PM
Permalink | Comments (0) | Post RSSRSS comment feed

PowerShell v2 Training is now available :-)

Excellent news, Sapien have updated their PowerShell courses to cover the new features in v2. Instead of 3 separate courses there will now only be one 5 day course that can be delivered over 3 to 5 days according to need.

Streamline will be able to deliver the new course starting on March 1st 2010 (subject to courseware printing).

PowerShell v2 is now available for all versions of Windows and is the default scripting environment for SharePoint 2010, Windows Server 2008 R2 and Windows 7.

Please get in touch if you are interested.

PowerShell v2 Course Outline.pdf (15.67 kb)

Currently rated 5.0 by 1 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Categories: Prometric
Posted by tb on Monday, February 08, 2010 6:55 AM
Permalink | Comments (0) | Post RSSRSS comment feed

More SharePoint 2010 next week :-)

I just got a place on the SharePoint 2010 Developer Ignite training next week Smile

Microsoft are planning to release two 5 day SP2010 developer focussed courses in June that haven't been released to MCTs yet so this should be a good indication of what will be covered.

 

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Posted by tb on Monday, February 01, 2010 9:37 PM
Permalink | Comments (0) | Post RSSRSS comment feed

Ignite Training end of day 1

Highlight from today

- service applications

this is huge change, No more SSPs, lots of new farm architecture choices. This is going to be fun to teach. Microsoft really need to produce a Sharepoint Architects course for 2010.

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Posted by tb on Monday, February 01, 2010 9:14 AM
Permalink | Comments (0) | Post RSSRSS comment feed

SharePoint 2010 Ignite Training

I'm sitting on Microsoft's SharePoint Ignite training this week. It's a great opportunity to round out my knowledge of SharePoint 2010 before Microsoft release their new training courses.

There's already been a huge amount written about the new stuff in SharePoint 2010 so I'm not going to repeat what has already been said.

The training is being delivered via Live Meeting and it uses virtual labs. So far the lab experience is painfully slow. This is going to be so much better running on local machines and I'm really looking forward to running the new courses on real hardware Smile

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Posted by tb on Sunday, January 31, 2010 6:29 PM
Permalink | Comments (0) | Post RSSRSS comment feed

SharePoint 2010 hands on labs

In amongst the flood of new SharePoint 2010 content appearing on MSDN today there are a bunch of Hands on Labs at

http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=c010fc68-b47f-4db6-b8a8-ad4ba33a35c5#tm

With beta 2 of Visual Studio 2010 being released today as well we just need the the public beta of SharePoint to get goiing...

 

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Categories: SharePoint 2010
Posted by tb on Monday, October 19, 2009 9:47 AM
Permalink | Comments (0) | Post RSSRSS comment feed

Windows 2008 SP2 annoyances

As I noted in a earlier post I have switched to using Server 2008 as my main OS and configured it so that I can boot with or without the Hypervisor enabled.

Today I got round to installing SP2 and after the machine came back up it felt sluggish, as though the Hypervisor was enabled which is odd as my default boot configuration has it disabled.

A quick check of my boot config showed that the service pack had reset 'hypervisorlaunchtype' to 'Auto' for all entries Yell

Very annoying but easliy fixed...

The other issue I've had is that the SP install removed 'Windows Mail' from my quick launch bar. Also annoying but easliy fixed.

 

Currently rated 5.0 by 1 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Categories: Server 2008
Posted by tb on Friday, May 29, 2009 1:45 AM
Permalink | Comments (0) | Post RSSRSS comment feed