A technology professional's experiences with and observations about new technology products, new developments such as virtual environments, artificial intelligence, online gaming, entertainment and streaming services and software particularly image editing applications and Filemaker Pro.
Thursday, September 25, 2003
CGI module upgrade breaks Blosxom in IE 6
Was: $content_type =~ s!\n.*!!s;
Needs to be: $content_type =~ s!\s*\n\s*.*!!s;
Now it once more works with IE 6. He suspects that when the systems people updated the cgi modules, one of new modules must have been less forgiving than the older version. I thought I would share our experience with you in case it might help others.
Tuesday, September 23, 2003
Finally Got Calendar Plugin Working
Modified Calendar Plugin to Shrink the Calendar
I wanted to make the archive calendar created by the calendar plugin smaller so I wrote to Todd Larason, the author, and he said:
You have a couple options.
1. make flavour files for the calendar; if you just want to remove the day of week headers, then make empty files named calendar.month_sub_head.html, calendar.month_sub_day.html and calendar.month_sub_foot.html (replace the 'html' with your flavour name(s))
2. edit the plugin; if you have lots of flavours, this might be easier. near the bottom of the file, find the line that says "__DATA__". a fwe lines below that are lines that start "error month_sub_head", "error month_sub_day" and "error month_sub_foot"; just remove those lines.
3. don't remove the day headers, just shorten them; in the configuration section at the beginning, change @dowabbr = qw/Sun Mon Tue Wed Thu Fri Sat/ if ($#dowabbr != 6); to @dowabbr = qw/S M Tu W Th F S/ if ($#dowabbr != 6); or something similar
4. use CSS. In the CSS file, add a style like:
.month-calendar-day-head {display: none;}
so the headers are still there, they just don't get displayed.
I created a CSS file and linked it to the head portion of head flavour file but couldn't get it to recognize it. So, I opted to remark out the three related error lines in the plugin itself. I will write back to Todd and see if the style-sheet link needs to be elsewhere.
Using Autolink with a Glossary File
Magic Link Script Updated to Correct Problem with Dictionary.com
and went to http://www.Dictionary.com but could not find the word because it kept the quotes around it for the search. I tried removing the quotes but then I did not get the link and the [dict] part just showed up as part of the post. I posted my problem to the Blosxom discussion list and plugin author Bruce Alderson made an adjustment to the plugin and now it works!!! Thanks, Bruce!
Monday, September 22, 2003
May have solution to Recent Entries plugin error
Archive problem resolved in Blogger weblogs
Thursday, September 18, 2003
Using Date Time variable for Submission Filename
I like this solution much better because the length of the filename is the same for all files and the filename itself provides valuable creation date information.
Blogger Pro to be offered free
Submission Plugin: Using Title for Filename A Problem with RSS Validation
Blosxom Test Notes: Yesterday, I encountered a problem with validating the RSS feed for my blosxom blog. The default setting for the format file used with the submission plugin sets the filename to the contents of the Title field. I've configured my Title field to be the headline for my article and I want it to be descriptive without having to use underlines between each word. However, a filename with spaces in it makes the RSS validators choke. So, I have added a new field, Category, which has a one word category descriptor and set this for my filename parameter. Now to try it out.
Submission Plugin: Using Title for Filename A Problem with RSS Validation
Blosxom Test Notes: Yesterday, I encountered a problem with validating the RSS feed for my blosxom blog. The default setting for the format file used with the submission plugin sets the filename to the contents of the Title field. I've configured my Title field to be the headline for my article and I want it to be descriptive without having to use underlines between each word. However, a filename with spaces in it makes the RSS validators choke. So, I have added a new field, Category, which has a one word category descriptor and set this for my filename parameter. Now to try it out.
Wednesday, September 17, 2003
AutoLink plugin Terrific!
Of all the Blosxom plug-ins I have tried, this one actually seems to work without
a bunch of tweaking! Thanks, Fletcher! It is a real time saver too.
Another test of the submission format file
Configuring Blosxom A Challenge
Tweaking the Submission form format file
LastBuildDate Plugin Fowls RSS Output
Blosxom Test Notes: I tried Joe Francis' LastBuildDate plugin but it produced the entry "
Friday, September 12, 2003
Submission plugin finally working!
Monday, September 08, 2003
Blosxom Pollxn Plugin A Challenge
Blosxom Test Notes: Worked all day yesterday learning many of the ins and outs of Blosxom. I managed
to not only install it and get it working well but modified the templates so
my
blog
is more attractive. Then today, I installed the Pollxn plug-in to add comment
functionality. I had quite a time with it because I was a bit confused over the
instructions.
Problem 1: The instructions for adding the Comments link to the Blosxom blog
said to paste the following code into the story.html file.
<a href="/cgi-bin/pollxn.cgi?storypath=$path/$fn.$flavour">$pollxn::comments_count</a>
The first part of this link only works if the pollxn.cgi file has been copied
into a /cgi-bin directory under the Blosxom datadir. The instructions initially
recommended installing it directly in the Blosxom datadir then said it could
be installed
in a cgi-bin if necessary. Often an ISP will limit users to a single cgi-bin
directory directly under their public_html directory. However, if such a user
tries to use the above script, they will get a file not found. I’m trying
to work out a defined installation procedure with as much preconfigured as
possible since faculty don’t like editing configuration files. I prefer to install the cgi file directly in the blosxom directory then changing the url to:
<a href="pollxn.cgi?storypath=$path/$fn.$flavour">$pollxn::comments_count</a>
Now for the second problem. I couldn’t figure out why the link was resolving
to a filename ending in .html when my Blosxom.cgi file correctly specified
my file extension to be .txt. It appears that the $fn variable refers to only
the filename without the file extension. My Blosxom “flavour” is
specified as .html (I use modified .html templates). The result is that the
above link resolves to a filename ending in .html instead of .txt. I further
modified the link to:
<a href="pollxn.cgi?storypath=$fn.$file_extension">$pollxn::comments_count</a>
to correct this problem.
Friday, September 05, 2003
GreyMatter provides easy install but RSS module problematic
I've been asked to present information on Blogging and Syndication
for the Instructional Technology Council in a few weeks. Although I have a
number of personal blogs on commercial provider Blogger (http://www.blogger.com),
I wanted to search for software that provides the same functionality at a reduced
cost and came across this software from GreyMatter.
The installation instructions were very clear and I had no problem installing
it or configuring it. I particularly like the ability to censor Comments for
inappropriate language as I want my blog to be student-friendly for
all ages.
Although GreyMatter does not provide a built-in RSS conversion
process, I noticed there was an RSS Syndication module listed in the modules
section. The module requires PHP so first I had to check the version of PHP
running on my host server. The PHP script also choked on my weblog name -
"Mary's Technology Tips" - because it had an apostrophe in it. I had to correct that problem before I could get the script to run. I also had to make all paths absolute to ensure that the script would run properly. Then I was able to get
the script to run if I logged into my host server but could not get it to run
from the browser even when I placed it in the cgi-bin directory and set the
rights to 755. I had one of the perl experts look at it but he couldn't see
what the problem was either.
Thursday, September 04, 2003
HI-TECH TOME TAKES ON PAPERBACKS
I was quite impressed with this effort. It is only 1 cm thick! As long as the price is reasonable, this product or one like it could finally break open the e-book market