Lab 8
Mashups
Introduction
This week we’ve learned how mashups exploit web technology to improve the presentation of a service and/or to combine multiple sources of data. Now is your chance to make it happen.
Required Milestone
You have a little less than 2 weeks for this lab. Note two important things:
1. Save a copy of your working files
2. Email the instructor a link that demonstrates it working.
Meeting this milestone on-time is worth 10% of your final grade.
Requirements
2. Pick some idea for integrating things. Here are a few basic ideas:
3. Before proceeding, talk to the instructor about what you propose to do. Here are some requirements to keep in mind:
5. Add a link to your mashup from your default.htm and provide a brief overview and instructions on how it should be used. Mention what sources of data you are using.
6. Ensure your page works with Firefox. Having it work on IE is encouraged but not required.
7. Ensure all your pages validate and that you have met all requirements.
NOTE: all HTML files must validate as XHTML without errors for full credit. The penalty for a file that does not validate is 10%.
my $str = "sdfadfdsf<h1>yadda</h1> <b> adfdf</b> <h1>dabba</h1> <br/> blah";
# Notes:
# [^<] matches any character EXCEPT <
# the 'g' at the end makes this a 'global' search -- so it will returns all matches in the array, not just the first one
# Notice to match the </h1> we need to escape the slash, e.g. <\/h1>
my @matches = ($str =~ m/<h1>([^<]*)<\/h1>/gx );
for (my $ii=0;$ii<@matches;$ii++) {
print "$ii: $matches[$ii]\n";
}
1) All of your files for Lab08 should be in a folder called "Lab08" (without the quotes) on the Web drive.
2) Your main page for Lab08 should be called "index.html" (without the quotes) and placed inside the folder Lab08.
3) Your instructor will assume that your web pages are viewable at http://www.mXXXXXX.it452.cs.usna.edu/Lab08/index.html where XXXXXX is your alpha number. You should check that this URL is viewable and that everything works correctly from a computer where somebody else is logged in. If you've goofed and linked to a file on your X drive, this will help you catch it!
4) All files must be complete and saved to your Web drive before you submit the hardcopy of your assignment. Do NOT modify your files after you have submitted your assignment.
5) Turn in the following hardcopy on or before the due date, stapled together in the following order (coversheet on top):
a) A completed assignment coversheet. Your comments will help us improve the course.
b) The first page of the output of the W3C validator, as run on the final version of your Lab08/index.html. This should show that your document correctly validated, but turn it in anyway if you can’t get your page to validate.
c) A printout of the source to your files – as appropriate for what you do (JavaScript, HTML etc.). Truncated lines are not acceptable – use Crimson Editor vice Notepad if needed for printing. You could also paste into Microsoft Word etc. if needed.