Spring Project UPDATES


CDS save-the-dateSpring is finally here and -for me- it seems to be just a good time to catch up on some notes and updates about things that have happened in the last two months as well as things that will happen in April.  Undoubtedly, many of my/our activities are driven by the upcoming Open House for our new department -scheduled for April 23rd.  This week, I helped in creating an interactive map for the CDS’ website -which is (heavily) based on an excellent example created by the Research Commons at the University of Washington.  We look forward to completing all the details for this special date.

Two examples of the type of work the center can help clients with are: a) developing websites such as the Digital Literacy Partnership (DLP) project with Valerie Ubbes; and b) developing e-books for selected works available on Computers and Composition Digital Press with Heidi McKee –for this project, we’re working with our colleague Jason Michel.  The DLP project will be our first project using Omeka and it has allowed us to understand better the functionality -and some of the limitations- of this great open source online exhibit tool.  For instance, because of the type of DLP files (video and slideshow), we had to edit the show.php file and customize it accordingly.  Here is an outline of the changes we made:

<?php if (item('Dublin Core', 'Type') == 'Moving Image') { ?>
<iframe src="http://player.vimeo.com/video/<?php echo $VimeoID;?>"
 width="500" height="375" frameborder="0" webkitAllowFullScreen
 mozallowfullscreen allowFullScreen></iframe>
<?php } else { // NOT a video, but a slideshow ?>
<!-- WOWSlider script -->
<?php $filename = item('Dublin Core', 'Identifier');
$dir = "/var/www/../viewer/" . $filename . "/";
if ($handle = opendir($dir)) {
$i = 0;
while (false !== ($entry = readdir($handle))) {
if ($entry != "." && $entry != "..") {
$all_files[] = $entry;
$i++; }}
closedir($handle); }
sort($all_files); // very important
$i=0;
foreach($all_files as $file) {
echo "<img src=\"/healthliteracy/viewer/$filename/$file\"
      alt=\"$file\" id=\"wowsl_$i\"/> \n";
$i++;
} ?>

Two other projects that I continue to work on are: CONTENTdm 6.x and DSpace 3.0.  In both cases, I’ve been quite pleased with the type of successful “tweaks” we’ve tested/implemented with pure jQuery & CSS code.  BTW: for those interested in hosted services, check out DSpaceDirect.

As for the next 2-3 weeks, some exciting things are also on the schedule: on Friday April 5, Kim Tully and I will be part of a panel at the 2012 SOA Conference and we’ll talk about the Civil War collection; on April 8-9, I’ll be at Case Western Reserve University attending their Second Colloquium on Digital Scholarship; on April 16, I’ll teach a class on HTML & CSS –which will serve as a first practice for my upcoming IMS 201 class in the fall; and of course, April 23 will “the day” for us in the center.

Last, my article on DSpace Mobile Interface was published this month … and thanks to a comment, now I know that for future tests I can also use The Responsinator site … now time to check the latest issue of Research Information.

.