Date Help from the Lab

This will help you figure out one key part of HW4. This reference for the Javascript Date object will also help!

daysofweek = new Array();
daysofweek[0] = “Sun”;
daysofweek[1] = “Mon”;
daysofweek[2] = “Tue”;
daysofweek[3] = “Wed”;
daysofweek[4] = “Thu”;
[...]

XML/XSL

In class this past Monday, we first went over the answers to the midterm exam. We then talked about XML, XML namespaces, a brief look at XPath, and styling XML with CSS and XSLT. Check the links to w3schools for some excellent tutorials, and use HW5 as a guide to knowing what you [...]

More Help from the Lab

These functions might help guide your efforts for HW4. Also not that though I posted HW5, it won’t be due for several weeks. I only posted it because it directly relates to what we did this past Monday, and so any of you can get ahead on your HW assignments. Enjoy!

// this [...]

HW5

Assignment 5
Assigned: Monday, November 3rd
Due: Monday, November 10th
Title: A Blog in XML/XSL
Scenario:
Adapt the structure of your CMS/blog to a single XML file containing a minimum
of the following data: post title, post date, post author, and post content.
Then author an XSL document that styles the above XML file to look as close as
you can get [...]

HW4

Assignment 4
Assigned: Monday, October 20th
Due: Monday, November 3rd
Title: A Yearly Calendar in Javascript
Scenario:
Write a “simple” yearly calendar using Javascript for your CMS that will.
Though you don’t have to use the approach below, the following starter
code is offered as a suggestion:

function writeMonth(year,month)
{
// writes out one entire month in tabular form
}

function writeCalendar(year)
{
[...]

Midterm Results

Your midterm exam grades should now be posted on myUCF Grades, and you should have also received an email response to your midterm. I’ll go over the correct answers on Monday, so save any questions related to that until after. Also, I’ll be posting HW4 sometime before Monday, so you can get a [...]

Last Week’s Class Materials

As presented by Professor Friskics, here are the links from last Monday’s class.

Dom Getter Examples
Javascript Events
Dom Scripting
Javascript Basics
Javascript Date Example
Example 1
Example 2

Today’s Javascript Review

In today’s class, I reviewed the midterm (due on Wednesday), some past material on Javascript to help with HW3a and 3b, and talked about modulus and the JS date object. I also extended the due date of HW3b until next Monday.
Here are the functions I gave in class:

function drawStarRow(width)
{
for [...]

Midterm

Fall 2008 DIG3716_01 Internet Interaction
Assigned: October 13, 2008
Due: October 15, 2008 by midnight
Send your answers back in an email directly to <my>.<name> @ gmail.com. Be sure to include your name at the top of your response, and please send everything, both questions and answers, in the body of the email itself. Finally, make [...]

HW3b

Assignment #3b
Assigned: Monday, October 6th
Due: Monday, October 13th Monday, October 20th
Scenario:
You’ll be modifying your form that posts to a CMS to add validation of each required field. The required fields are indicated with an asterisk on the HW3a description.
Description:
At a minimum, you must check for the following:
– all required fields have data [...]