One Dime Is All It Cost: How to Keep Your Content Current (And Why You Should…)
Thursday, July 31st, 2008
One dime is all it cost me and,
I found out for sure you know
That you double-crossed me.
Just how much can I endure?
That little refrain opens the song Innocence by Harlequin for those of you who don’t recognize the words. Of course “one dime” is a metaphor for “a phone call”, harkening back to the days of payphones. But in twenty years from now — maybe less — kids listening to this song will have no clue (a) what a payphone is and (b) that it used to cost a dime.
This also assumes that (a) Harlequin will be still relevant in 20 years and (b) that they ever were…
Although it is interesting to see turns of phrases recede into history, this is not a good thing for the copy that we write for our clients. Often we don’t even think about the copy we write as “aging”. But it does, if we don’t write it correctly. It reflects badly on us (and our clients) giving an unpolished, unprofessional feel to the marketing materials.
Luckily, there are a few things that we as writers can do to prevent it.
Use Absolute Dates
You’ve likely seen this yourself: on one page of a website, it says that the company has been around for “15 years” and in another spot see that the company started in 1991. When you do the math, that’s 17 years. Either they can’t count, or they haven’t updated their marketing materials in a while… If they are this unconcerned about their own business, how concerned will they be about yours?
Use absolute dates where possible. Unless the company started recently, give just the year (for new companies, you can give the month and year). By all means, if it is relevant to the copy, use the exact launch date. But don’t say “seven years ago” or any similar phrase that will be wrong next year.
Update Your Website Copyrights
This is a common one, and especially frustrating because it is so easy to fix. Have you come across a website that says “Copyright 2005″? How does it make you feel? For me, I wonder if this is just another site that got forgotten. Who knows what’s been going on in the past several years?
Here are two ways to keep your copyright notices up to date:
Find and Replace
In Dreamweaver or any other HTML editor, use the Find and Replace tool to change “Copyright 2005″ to “Copyright 2008″ or (better yet) “Copyright 2005-2008″. This lets people know that you are still around, and in the case of the latter, that you’ve been around for a while.
JavaScript
This is my favourite method because every year on January 1, the script updates my copyright notice automatically. It does involve a bit of code, but it is not that difficult. Here is the code that I use for this site:
var d=new Date();
yr=d.getFullYear();
if (yr!=2007)
{
document.write(’<span>© Copyright 2007 ‘);
document.write(”- “+yr);
document.write(’ ‘);
document.write(’<a href=”http://www.strongwhitepapers.com” target=”_top”>Graham Strong</a> ‘);
document.write(’All Rights Reserved<br>’);
document.write(’For more information, please ‘);
document.write(’ <A href=”mailto:gs@strongwhitepapers.com”>Contact Graham Strong</a>’);
document.write(’<br>’);
document.write(’ <A href=”http://www.strongwhitepapers.com/privacypolicy.htm”>Privacy Policy</a> / <A href=”http://www.strongwhitepapers.com/termsandconditions.htm”>Terms & Conditions</a>’);
document.write(’</span><br>’);
}
else
{
document.write(’<span class =”footertext”>© Copyright 2007 ‘);
document.write(’<a href=”http://www.strongwhitepapers.com” target=”_top”>Graham Strong</a> ‘);
document.write(’All Rights Reserved<br>’);
document.write(’For more information, please ‘);
document.write(’ <A href=”mailto:gs@strongwhitepapers.com”>Contact Graham Strong</a>’);
document.write(’<br>’);
document.write(’ <A href=”http://www.strongwhitepapers.com/privacypolicy.htm”>Privacy Policy</a> / <A href=”http://www.strongwhitepapers.com/termsandconditions.htm”>Terms & Conditions</a>’);
document.write(’</span><br>’);
}
Basically what this code does is tell the computer to check the year. If the year is the same as the launch date (in this case, 2007) then it simply says “Copyright 2007″. If the year is not the launch date, then it says “Copyright 2007 - Current Year” (i.e. 2008). You can see the results at the bottom of this page.
Feel free to cut and paste this into your own HTML editor, and change as necessary. You’ll notice too that I’ve added some links to my privacy policy, etc. You can remove these lines if they do not apply. Don’t forget to change “2007″ to the year you launched your website. Then save the whole thing as a JavaScript file like “copyright.js” and upload to your server.
Then place the following code at the spot on the page where you want to insert it:
<script language=”JavaScript” src=”copyright.js” type=”text/javascript”></script>
Save, upload, and you’re done!
Copyrights on Brochures
Sometimes you’ll find the need to add a copyright notice to a brochure, ebook, PDF document, or some similar document, which can lead to dated material. First you may want to consider whether it is worth adding in the first place. After all, in this day and age, people will take any information that suits them, and a copyright notice will not stop them.
(Not that this is right, mind you. My point is: Why put up an ugly chain link fence to keep tanks out of your yard?)
However if you feel that you must add it, then you should update it every year, or at least before you send out the copy again. There is no easy way to do this — you’ll simply have to go through these documents and do it manually. (Find and Replace is a great shortcut though.) Sometimes you can do this right on the PDF file if you have the full version of Adobe Acrobat, though usually you will have to change it on the original file (Word, Quark, etc.) and reprint the PDF.
Version Control
Quite often we use a date at the bottom of a document to designate the version. Usually, this is in the form of a date i.e. Jul08. Obviously, this can lead to a dated feel to your documents.
Sometimes this is fine. For example, if it is an internal document like a policy paper or a guidebook, it might actually be beneficial to have the date listed somewhere in the document.
But if the document will be sent out the general public, this will make the document look dated after a number of months or years.
Here are two ways to track the document date/version:
Encode the Date
You can easily convert the date on a Gregorian Calendar (the one we use now) to what is called a “Modified Julian Day”. The description of this calendar is fairly extensive so I won’t go into it here (Google it if you are truly interested) but essentially it is a calendar based strictly on the number of days. For example, July 30, 2008 converts to 54677.
The math used to calculate a Julian day is fairly straightforward, but luckily there are converters on the Internet that will do the work for you like this one:
http://www.diagnosis2012.co.uk/conv.htm
Today’s date will automatically be inserted, so just scroll down to the “Modified Julian Day” box to find out the number. Add this to the bottom of your documents instead, and only the very enterprising will know how to convert this back to the original date.
In the future, when you want to check the date on your document, go back to a converter, enter the Julian number, and calculate the date.
Record the Date Internally
You can simply keep a version date built right into the original document. For example, you could name your Word file “My Document 080730″ so that the date is right in the file name. When you create your PDF, leave the date out so that the name is simply “My Document”. Not as slick as the above example, but just as effective.
Dated File Names
This one was just mentioned above, but it warrants its own section. Don’t add dates to PDFs or other file names that you are sending to the public. Yes, people can look up the date in the PDF or Word properties, but there’s not much you can do about that short of reprinting every few months.
Remove “Last Modified” Tags from Your Website
Um, really? This is a classic case of “just because we can do it doesn’t mean that we should”. Back in the old days, it was cool to show when you last updated your page. Microsoft FrontPage made it even more popular by adding a button to the program that automatically inserted this on your page.
But really you are just setting yourself up. Yes, the information may still be current, but that won’t be the perception if you advertise the last time you set your rates was January 23, 2004.
On the flip side, you can easily add a line of script that tells the website visitor that your website was Last Modified today — every time they come to visit. I do not recommend this. Not only is this misleading, but your visitors are not stupid. They’ll figure out the trick eventually, and could be ticked off that you are trying to throw one over on them. (Because hey, you are…)
And does having the last modified date on your web page really add any value anyway?
My advice: take out these tags altogether.
Conclusion
There are likely times when you do not have control over your clients’ websites, ebooks, brochures, and other finalized documents. Perhaps you are just there to write the copy, and a graphic designer does the rest. If this is the case, the only things you have control over are how dates are presented within the copy.
But if you notice other things about your clients’ content (i.e. out-of-date copyright notices on their websites, etc.) it wouldn’t hurt to mention it to them. They may not act on it, but they’ll appreciate your attention to detail — and that will certainly help you get the next project they have.
What about you? Any ideas for avoiding dated content? Let me know by leaving a comment!
~Graham



















In the first two posts of this series, I asked
A couple of weeks ago, I asked:
Here’s a thought that makes you glad it’s Friday: Paris Hilton is a more famous writer than you.
It nagged at me before I started this blog, it continued to tug at my sleeve as I wrote, and now it’s starting to whisper in my ear with increasing volume… If we are writing blogs to increase sales, are we going about this the right way?