Category: Web Building

Dreamweaver: Mass Detach from Template

There are times when you may find it necessary to detach hundreds of pages from their Dreamweaver templates. Unfortunately, within the Dreamweaver interface the only way to detach multiple files from their templates is to open each one, then select “Modify:Templates:Detach from Template” from the menu.

A better way to go is to use a simple “grep” search in BBEdit:

  1. Make sure you have a backup of your site. You can cause truly spectacular destruction with mass search and replace! OK, you’ve been warned!
  2. Open BBEdit, and select Find from the Search menu. The Find & Replace dialog will appear. (click to enlarge)

  3. Continue reading

Customizing dotProject files

dotProject is the most promising open-source (and free) project management software that I’ve found so far.

There are many small changes that needed to be made to the dotProject interface in order for it to work for my team, though. Chief among them was that all projects be numbered. The “short name” field just wasn’t sufficient to uniquely identify projects. We use project numbers in our workflow, in documents, email, and file systems. The number needs to combine the month and year the project was started with a 4-digit unique number.

Continue reading

Review of MovableType 3.3 so far

I am happy to say that this site has been updated to the latest version of MoveableType with no serious problems at all.

Installation
My old templates all worked. The old database converted without any issues. Overall the basic installation took about 45 minutes, with me being extra careful and backing things up several ways.

Comments are back on!
The new comment features are WONDERFUL. I have turned commenting back ON and someone has already made a genuine comment! I feel like awarding him a prize! Of course there have also been about 150 junk comments, but they were easily disposed of.

Continue reading

Make any web-based Powerpoint presentation scorm compatible

It’s easy to export Powerpoint presentations to the web, but they aren’t automatically scorm compatible. To add simple scorm capability to your web-export, do the following:

This will add a button that will allow the user to mark the sco complete.

1. Add this to the head section of outline.htm or the final slide.

Continue reading

Debugging and troubleshooting HTML and javascript

Spreadfirefox Affiliate Button

Firefox, the web developer’s debugging tool of choice

The best browser to use to check javascript errors is Firefox, hands down. Other browsers have some error reporting, but none give you anywhere near the detailed information as Firebug, an addon to Firefox. The extensions available allow you to snoop into every aspect of your page, and into the communication between page and server.

You will need to get several Firefox extensions:

Firebug
Firebug is the one extension I can’t live without. It shows errors in javascript, css, allows you to inspect the HTML source, computed style, events, etc.

Continue reading