Posted on October 29, 2008 by profpittard
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”;
[...]
Filed under: meta | Leave a Comment »
Posted on October 22, 2008 by profpittard
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 [...]
Filed under: assignments, class summaries, meta | Leave a Comment »
Posted on October 22, 2008 by profpittard
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 [...]
Filed under: assignments | Leave a Comment »
Posted on October 21, 2008 by profpittard
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 [...]
Filed under: assignments | Leave a Comment »
Posted on October 19, 2008 by profpittard
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)
{
[...]
Filed under: assignments | Leave a Comment »
Posted on October 17, 2008 by profpittard
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 [...]
Filed under: meta | Leave a Comment »
Posted on October 14, 2008 by profpittard
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
Filed under: class summaries | Leave a Comment »
Posted on October 13, 2008 by profpittard
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 [...]
Filed under: class summaries | Leave a Comment »
Posted on October 13, 2008 by profpittard
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 [...]
Filed under: meta | Leave a Comment »
Posted on October 2, 2008 by profpittard
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 [...]
Filed under: assignments | Leave a Comment »