diff --git a/.gitignore b/.gitignore index 833c274..9c2cf50 100644 --- a/.gitignore +++ b/.gitignore @@ -18,4 +18,9 @@ /Assignments/MP07_CalebFontenot/nbproject/private/ /Assignments/JavaScript_1/nbproject/private/ /Assignments/JavaScript/chapter2LatBame/nbproject/private/ +<<<<<<< Updated upstream /Assignments/JavaScript/lab13js_CalebFontenot/nbproject/private/ +======= +/Assignments/JavaScript/Chapter3Examples/nbproject/private/ +/Assignments/JavaScript/lab12js/nbproject/private/ +>>>>>>> Stashed changes diff --git a/Assignments/JavaScript/Chapter3Examples/.bowerrc b/Assignments/JavaScript/Chapter3Examples/.bowerrc new file mode 100644 index 0000000..0ba26f2 --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/.bowerrc @@ -0,0 +1,3 @@ +{ + "directory": "public_html/bower_components" +} diff --git a/Assignments/JavaScript/Chapter3Examples/Gruntfile.js b/Assignments/JavaScript/Chapter3Examples/Gruntfile.js new file mode 100644 index 0000000..496183b --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/Gruntfile.js @@ -0,0 +1,9 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/Gruntfile.js to edit this template + */ +module.exports = function (grunt) { + // Project configuration. + grunt.initConfig({ + }); +}; diff --git a/Assignments/JavaScript/Chapter3Examples/bower.json b/Assignments/JavaScript/Chapter3Examples/bower.json new file mode 100644 index 0000000..fa55af0 --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/bower.json @@ -0,0 +1,13 @@ +{ + "name": "Chapter3Examples", + "version": "1.0.0", + "main": "path/to/main.css", + "ignore": [ + ".jshintrc", + "**/*.txt" + ], + "dependencies": { + }, + "devDependencies": { + } +} diff --git a/Assignments/JavaScript/Chapter3Examples/gulpfile.js b/Assignments/JavaScript/Chapter3Examples/gulpfile.js new file mode 100644 index 0000000..eccfb02 --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/gulpfile.js @@ -0,0 +1,10 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/gulpfile.js to edit this template + */ + +var gulp = require('gulp'); + +gulp.task('default', function () { + // place code for your default task here +}); diff --git a/Assignments/JavaScript/Chapter3Examples/nbproject/project.properties b/Assignments/JavaScript/Chapter3Examples/nbproject/project.properties new file mode 100644 index 0000000..63ae4fc --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/nbproject/project.properties @@ -0,0 +1,5 @@ +file.reference.Chapter3Examples-public_html=public_html +file.reference.Chapter3Examples-test=test +files.encoding=UTF-8 +site.root.folder=${file.reference.Chapter3Examples-public_html} +test.folder=${file.reference.Chapter3Examples-test} diff --git a/Assignments/JavaScript/Chapter3Examples/nbproject/project.xml b/Assignments/JavaScript/Chapter3Examples/nbproject/project.xml new file mode 100644 index 0000000..d264e8c --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/nbproject/project.xml @@ -0,0 +1,9 @@ + + + org.netbeans.modules.web.clientproject + + + Chapter3Examples + + + diff --git a/Assignments/JavaScript/Chapter3Examples/package.json b/Assignments/JavaScript/Chapter3Examples/package.json new file mode 100644 index 0000000..a5e765a --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/package.json @@ -0,0 +1,8 @@ +{ + "name": "Chapter3Examples", + "version": "1.0.0", + "keywords": ["util", "functional", "server", "client", "browser"], + "author": "caleb", + "contributors": [], + "dependencies": {} +} diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/.DS_Store b/Assignments/JavaScript/Chapter3Examples/public_html/.DS_Store new file mode 100755 index 0000000..9c17e55 Binary files /dev/null and b/Assignments/JavaScript/Chapter3Examples/public_html/.DS_Store differ diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/carla/carla.css b/Assignments/JavaScript/Chapter3Examples/public_html/carla/carla.css new file mode 100755 index 0000000..ff46595 --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/public_html/carla/carla.css @@ -0,0 +1,146 @@ +body { + background-color: #FFFFFF; + background-image: url(background.gif); + color: #0000FF; + font-family: Geneva, Arial, Helvetica, sans-serif; + font-size: 14px; +} +#container { margin-left: auto; + margin-right: auto; + width:85%; + min-width:700px; + } + + +#logo { + text-align:center; + margin: 0; + font-family: Verdana, Arial, Helvetica, sans-serif; + padding-top: 30px; + padding-bottom: 20px; + +} +#nav { + float: left; + width: 200px; + padding-top: 10px; + text-align:left; + color: #FF0000; + font-size: 14px; +} +#nav a { + text-decoration:none; + margin: 15px; + display: block; + color: #FF0000; + font-size: 14px; + font-weight: bold; +} +#content { + margin-left: 150px; + padding: 30px; + overflow:auto; + border: medium groove #0000FF; + line-height: 135%; + +} + +.floatright {padding-left:20px; + float:right; + } +.floatleft { + float:left; + padding: 2px 30px 20px; +} +#footer { + font-size: 16px; + font-style: normal; + text-align: justify; + border-top: thin none; + padding-top: 20px; + padding-bottom: 20px; + color: #FF0000; + font-family: Georgia, "Times New Roman", Times, serif; + font-weight: bold; +} + +h2 { text-transform: uppercase; + color: #0000FF; + font-size: 36px; + border-bottom: 1px none; + margin-right: 20px; +} +h3 { + color: #0000FF; + font-size: 1em; + border-bottom: thin none; + margin-right: auto; + text-align: left; + padding-top: 20px; + padding-right: 150px; + padding-bottom: 20px; + padding-left: 150px; + line-height: 130%; + border-top-style: none; + border-right-style: none; + border-left-style: none; +} +.details { padding-left:20%; + padding-right:20%; +} + + +img {border:0 none; } + + +.content { + margin: 20px; + padding: 20px; + height: 3700px; + width: 500px; +} +a { + color: #FF0000; + text-decoration: none; + margin: 15px; + color: #FF0000; + font-size: 14px; + font-weight: bold; +} +a:hover { + color: #FFFF00; + background-color: #0000FF; +} +h4 { + line-height: 150%; + margin-right: 20%; + margin-left: 15%; + text-align: center; +} +h1 { + font-family: Geneva, Arial, Helvetica, sans-serif; + font-size: 36pt; + text-align: center; + margin-right: 15%; + margin-left: 20%; +} +p { + font-family: Georgia, "Times New Roman", Times, serif; + font-size: 16px; + line-height: 130%; + font-weight: bold; + color: #0000FF; +} +.flt_img { + float: none; + padding-top: 3px; + padding-right: 20px; + padding-bottom: 3px; + padding-left: 20px; +} +specialh4 { + line-height: 150%; + margin-right: 20%; + margin-left: 15%; + text-align: center; +} diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/carla/carla_adding.html b/Assignments/JavaScript/Chapter3Examples/public_html/carla/carla_adding.html new file mode 100755 index 0000000..0c94aff --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/public_html/carla/carla_adding.html @@ -0,0 +1,329 @@ + + + +Carla's Classroom | It All Adds Up + + + + +
+ +

It All Adds Up!

+
+
+
+

Home + Meet Carla + Reading + Writing + Arithmetic +

+
+

This arithmetic test will increase in difficulty as you prove you are ready for harder problems. +As soon as you get 3 problems correct in Level One, you will progress to Level Two and then to Level Three.

+

+
+
+ + + diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/arith_big.jpg b/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/arith_big.jpg new file mode 100755 index 0000000..2779567 Binary files /dev/null and b/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/arith_big.jpg differ diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/arith_button.jpg b/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/arith_button.jpg new file mode 100755 index 0000000..59c70bd Binary files /dev/null and b/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/arith_button.jpg differ diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/carla_button.jpg b/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/carla_button.jpg new file mode 100755 index 0000000..75cf743 Binary files /dev/null and b/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/carla_button.jpg differ diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/carla_pic.jpg b/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/carla_pic.jpg new file mode 100755 index 0000000..5244298 Binary files /dev/null and b/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/carla_pic.jpg differ diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/owl_button.jpg b/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/owl_button.jpg new file mode 100755 index 0000000..096b4b9 Binary files /dev/null and b/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/owl_button.jpg differ diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/owl_logo.jpg b/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/owl_logo.jpg new file mode 100755 index 0000000..a46e016 Binary files /dev/null and b/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/owl_logo.jpg differ diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/read_button.jpg b/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/read_button.jpg new file mode 100755 index 0000000..6894d8f Binary files /dev/null and b/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/read_button.jpg differ diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/write_button.jpg b/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/write_button.jpg new file mode 100755 index 0000000..519d4bf Binary files /dev/null and b/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/write_button.jpg differ diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/writing_big.jpg b/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/writing_big.jpg new file mode 100755 index 0000000..d423fa1 Binary files /dev/null and b/Assignments/JavaScript/Chapter3Examples/public_html/carla/images/writing_big.jpg differ diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/carla/math.html b/Assignments/JavaScript/Chapter3Examples/public_html/carla/math.html new file mode 100755 index 0000000..14fd40e --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/public_html/carla/math.html @@ -0,0 +1,45 @@ + + + +Carla's Classroom | Math Lessons + + + + + +
+ + +

Carla's Classroom

+

 

+
+
+
+ Home + Meet Carla + Reading + Writing + Arithmetic +
+
+
+
+

Arithmetic Lessons:

+

Addition Exercise +

+ +
+ + diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/ex3_10.html b/Assignments/JavaScript/Chapter3Examples/public_html/ex3_10.html new file mode 100755 index 0000000..a6223cf --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/public_html/ex3_10.html @@ -0,0 +1,31 @@ + + + + + Example 3.10 + + + +
+

 

+

Rate the Site

+

Rate the site from 1 to 10, with 10 as the best ever and 1 as one of the worst

+

+
+ + diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/ex3_11.html b/Assignments/JavaScript/Chapter3Examples/public_html/ex3_11.html new file mode 100755 index 0000000..de5d9f3 --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/public_html/ex3_11.html @@ -0,0 +1,44 @@ + + + + + Example 3.11 + + + +
+

 

+

Rate the Site

+

Rate the site from 1 to 10, with 10 as the best ever and 1 as one of the worst

+

+
+ + diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/ex3_12.gif b/Assignments/JavaScript/Chapter3Examples/public_html/ex3_12.gif new file mode 100755 index 0000000..08acb15 Binary files /dev/null and b/Assignments/JavaScript/Chapter3Examples/public_html/ex3_12.gif differ diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/ex3_12.html b/Assignments/JavaScript/Chapter3Examples/public_html/ex3_12.html new file mode 100755 index 0000000..bb0e903 --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/public_html/ex3_12.html @@ -0,0 +1,62 @@ + + + + + Example 3.12 + + + +
+

 

+

Battle With the Troll!

+

+
+ + + diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/ex3_13.html b/Assignments/JavaScript/Chapter3Examples/public_html/ex3_13.html new file mode 100755 index 0000000..b40330d --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/public_html/ex3_13.html @@ -0,0 +1,41 @@ + + + + + Example 3.13 + + + +
+

 

+

Change the page color

+

Select from red, blue, green, yellow, or lavender.

+

+
+ + diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/ex3_14.html b/Assignments/JavaScript/Chapter3Examples/public_html/ex3_14.html new file mode 100755 index 0000000..badcf31 --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/public_html/ex3_14.html @@ -0,0 +1,48 @@ + + + + + Example 3.14 + + + +
+

 

+

Find the area of a shape

+
    +
  • For a cirlce, enter c
  • +
  • For a square, enter s
  • +
  • For a triangle, enter t
  • +
+

+
+ + diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/ex3_15.html b/Assignments/JavaScript/Chapter3Examples/public_html/ex3_15.html new file mode 100755 index 0000000..dd2adbe --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/public_html/ex3_15.html @@ -0,0 +1,49 @@ +500 + + + + Example 3.15 + + + +
+

 

+

Rate the Site

+

Rate the site from 1 to 10, with 10 as the best ever and 1 as one of the worst

+

+
+ + diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/ex3_9.html b/Assignments/JavaScript/Chapter3Examples/public_html/ex3_9.html new file mode 100755 index 0000000..fccc26c --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/public_html/ex3_9.html @@ -0,0 +1,31 @@ + + + + + Example 3.9 + + + +
+

 

+

Calculating the Paycheck

+

Click the button to calculate a paycheck with a compound condition

+

+
+ + diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/ex_3_1.html b/Assignments/JavaScript/Chapter3Examples/public_html/ex_3_1.html new file mode 100755 index 0000000..db1da9b --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/public_html/ex_3_1.html @@ -0,0 +1,20 @@ + + + Example 3.1 + + + +

What's the Weather?

+

Click the button!

+

+ + diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/ex_3_2.html b/Assignments/JavaScript/Chapter3Examples/public_html/ex_3_2.html new file mode 100755 index 0000000..e6fe419 --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/public_html/ex_3_2.html @@ -0,0 +1,28 @@ + + + + + Example 3.2 + + + +

What's the Weather?

+

Click the button!

+

+ + diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/ex_3_3.html b/Assignments/JavaScript/Chapter3Examples/public_html/ex_3_3.html new file mode 100755 index 0000000..1794f67 --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/public_html/ex_3_3.html @@ -0,0 +1,26 @@ + + + Example 3.3 + + + +

What's the Weather?

+

Click the button!

+

+ + diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/ex_3_4.html b/Assignments/JavaScript/Chapter3Examples/public_html/ex_3_4.html new file mode 100755 index 0000000..5b70b05 --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/public_html/ex_3_4.html @@ -0,0 +1,30 @@ + + + + + Example 3.4 + + + +
+

 

+

Student Score

+

Click the button!

+

+
+ + diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/ex_3_5.html b/Assignments/JavaScript/Chapter3Examples/public_html/ex_3_5.html new file mode 100755 index 0000000..f807299 --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/public_html/ex_3_5.html @@ -0,0 +1,45 @@ + + + + + Example 3.5 + + + +
+

 

+

Add x and y or Subtract

+

Click the button!

+

+
+ + diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/ex_3_6.html b/Assignments/JavaScript/Chapter3Examples/public_html/ex_3_6.html new file mode 100755 index 0000000..fbe74bb --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/public_html/ex_3_6.html @@ -0,0 +1,31 @@ + + + + + Example 3.6 + + + +
+

 

+

Calculating the Paycheck

+

Click the button to calculate a paycheck with a compound condition

+

+
+ + diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/ex_3_7.html b/Assignments/JavaScript/Chapter3Examples/public_html/ex_3_7.html new file mode 100755 index 0000000..3a00007 --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/public_html/ex_3_7.html @@ -0,0 +1,32 @@ + + + + + Example 3.7 + + + +
+

 

+

Calculating Shipping Costs

+

Click the button to calculate your shipping cost

+

+
+ + diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/ex_3_8.html b/Assignments/JavaScript/Chapter3Examples/public_html/ex_3_8.html new file mode 100755 index 0000000..76792ee --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/public_html/ex_3_8.html @@ -0,0 +1,33 @@ + + + + + Example 3.8 + + + +
+

 

+

Calculating Shipping Costs

+

Click the button to calculate your shipping cost

+

+
+ + diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/flyaway.jpg b/Assignments/JavaScript/Chapter3Examples/public_html/flyaway.jpg new file mode 100755 index 0000000..5c3bfba Binary files /dev/null and b/Assignments/JavaScript/Chapter3Examples/public_html/flyaway.jpg differ diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/greg/aboutyou.html b/Assignments/JavaScript/Chapter3Examples/public_html/greg/aboutyou.html new file mode 100755 index 0000000..d00dfcb --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/public_html/greg/aboutyou.html @@ -0,0 +1,63 @@ + + + +Greg's Gambits | About You + + + + + +
+ + +

Greg's Gambits

+ +

TELL GREG ABOUT YOU

+ +

 

+ +
+

+Hi there, Greg

+

+Username: KingGreg

+

+


+The avatar you selected is: kitty

+

 

+
+

 

+ +
+ + \ No newline at end of file diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/greg/avatars.html b/Assignments/JavaScript/Chapter3Examples/public_html/greg/avatars.html new file mode 100755 index 0000000..6570e29 --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/public_html/greg/avatars.html @@ -0,0 +1,24 @@ + + + + + Greg's Gambits | Avatars + + + + + + +
+

 

+

Here are your avatar options:

+
+


Bunny    + Elf    + Ghost     + Princess    + Wizard

+

You will enter your selection on the previous page.

+
+ + diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/greg/greg.css b/Assignments/JavaScript/Chapter3Examples/public_html/greg/greg.css new file mode 100755 index 0000000..f5add2d --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/public_html/greg/greg.css @@ -0,0 +1,119 @@ +body { background-color: #000040; + background-image: url(background.gif); + color: #88ffff; + font-family: Verdana, Arial, sans-serif; +} +#container { margin-left: auto; + margin-right: auto; + width:80%; + min-width:700px; + } + + +#logo { + text-align:center; + margin: 0; + font-family: Geneva, Arial, Helvetica, sans-serif; + padding-top: 30px; + padding-bottom: 20px; + +} +#nav { + float: left; + width: 200px; + padding-top: 10px; + text-align:left; + color: #88FFFF; + font-size: 12px; +} +#nav a {text-decoration:none; + margin: 15px; + display: block; + color: #88FFFF; + font-size: 12px; +} +#content { + margin-left: 150px; + padding: 30px; + overflow:auto; + border: medium groove #88FFFF; + line-height: 135%; + +} + +.floatright {padding-left:20px; + float:right; + } +.floatleft { + float:left; + padding: 30px 0px 20px; +} +#footer { font-size: .60em; + font-style: italic; + text-align: center; + border-top: 2px double #000040; + padding-top: 20px; + padding-bottom: 20px; +} + +h2 { text-transform: uppercase; + color: #88ffff; + font-size: 1.2em; + border-bottom: 1px none; + margin-right: 20px; +} +h3 { + color: #88ffff; + font-size: 1em; + border-bottom: 1px solid #000000; + margin-right: auto; + text-align: left; + padding-top: 20px; + padding-right: 150px; + padding-bottom: 20px; + padding-left: 150px; + line-height: 130%; +} +.details { padding-left:20%; + padding-right:20%; +} + + +img {border:0; } + + +.content { + margin: 20px; + padding: 20px; + height: 3700px; + width: 500px; +} +a {text-decoration:none; + margin: 15px; + display: block; + color: #88FFFF; + font-size: 12px; +} +a:hover { + color: #000040; + background-color: #88ffff; +} +span { + font-size: 36px; + font-weight: bold; + font-family: "Courier New", Courier, mono; + color: #88ffff; + background-position: center center; + text-align: center; + vertical-align: middle; +} +table { + border-collapse: collapse +} +td { + border: 2px solid #88ffff; + width: 5em; + font-family: "Courier New", Courier, mono; + font-size: 14px; + color: #88ffff; +} diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/greg/gregs_fortune.html b/Assignments/JavaScript/Chapter3Examples/public_html/greg/gregs_fortune.html new file mode 100755 index 0000000..e797f32 --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/public_html/greg/gregs_fortune.html @@ -0,0 +1,88 @@ + + + + +Greg's Gambits | Madame Vadoma Sees All + + + + +
+ + +

Madame Vadoma Sees All!

+ +

Ask Madame Vadoma anything that you are worried about

+ +

 

+ +
+

Madame Vadoma

+

+

 

+

+

 

+
+ +
+ + diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/greg/images/.DS_Store b/Assignments/JavaScript/Chapter3Examples/public_html/greg/images/.DS_Store new file mode 100644 index 0000000..019bc7e Binary files /dev/null and b/Assignments/JavaScript/Chapter3Examples/public_html/greg/images/.DS_Store differ diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/greg/images/bunny.jpg b/Assignments/JavaScript/Chapter3Examples/public_html/greg/images/bunny.jpg new file mode 100755 index 0000000..894cd03 Binary files /dev/null and b/Assignments/JavaScript/Chapter3Examples/public_html/greg/images/bunny.jpg differ diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/greg/images/elf.jpg b/Assignments/JavaScript/Chapter3Examples/public_html/greg/images/elf.jpg new file mode 100755 index 0000000..e860b56 Binary files /dev/null and b/Assignments/JavaScript/Chapter3Examples/public_html/greg/images/elf.jpg differ diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/greg/images/ghost.jpg b/Assignments/JavaScript/Chapter3Examples/public_html/greg/images/ghost.jpg new file mode 100755 index 0000000..dce7323 Binary files /dev/null and b/Assignments/JavaScript/Chapter3Examples/public_html/greg/images/ghost.jpg differ diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/greg/images/madame.jpg b/Assignments/JavaScript/Chapter3Examples/public_html/greg/images/madame.jpg new file mode 100755 index 0000000..a5a6deb Binary files /dev/null and b/Assignments/JavaScript/Chapter3Examples/public_html/greg/images/madame.jpg differ diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/greg/images/princess.jpg b/Assignments/JavaScript/Chapter3Examples/public_html/greg/images/princess.jpg new file mode 100755 index 0000000..02553af Binary files /dev/null and b/Assignments/JavaScript/Chapter3Examples/public_html/greg/images/princess.jpg differ diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/greg/images/superhero.jpg b/Assignments/JavaScript/Chapter3Examples/public_html/greg/images/superhero.jpg new file mode 100755 index 0000000..72f5f62 Binary files /dev/null and b/Assignments/JavaScript/Chapter3Examples/public_html/greg/images/superhero.jpg differ diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/greg/images/wizard.jpg b/Assignments/JavaScript/Chapter3Examples/public_html/greg/images/wizard.jpg new file mode 100755 index 0000000..a98cbbc Binary files /dev/null and b/Assignments/JavaScript/Chapter3Examples/public_html/greg/images/wizard.jpg differ diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/greg/index.html b/Assignments/JavaScript/Chapter3Examples/public_html/greg/index.html new file mode 100755 index 0000000..9b17ff2 --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/public_html/greg/index.html @@ -0,0 +1,34 @@ + + + +Greg's Gambits + + + + +
+ + +

Greg's Gambits

+ +

Games for Everyone!

+ +

 

+ +
+

Greg's Gambits offers a variety of games for all ages and more are added all the time. You can play our games any time you want for free.

+

Meet the real-life Greg in the About Greg page. Sign up to keep your account active or sign in every time you return through our Sign Up link. Choose your game from the Play a Game menu and contact us with questions, comments, and ideas. We're always looking for new games and new ideas!

+

 

+
+ +
+ + diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/greg/play_games.html b/Assignments/JavaScript/Chapter3Examples/public_html/greg/play_games.html new file mode 100755 index 0000000..5db49c7 --- /dev/null +++ b/Assignments/JavaScript/Chapter3Examples/public_html/greg/play_games.html @@ -0,0 +1,46 @@ + + + +Greg's Gambits | Games Menu + + + + + +
+ + +

Play A Game

+ +

 

+

 

+ +
+

Menu of Available Games

+ + + + + + + + + + + + + +
Greg's Tales Madame Vadoma Sees All
  
  
+

 

+
+ +
+ + diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/troll.jpg b/Assignments/JavaScript/Chapter3Examples/public_html/troll.jpg new file mode 100755 index 0000000..7d246dd Binary files /dev/null and b/Assignments/JavaScript/Chapter3Examples/public_html/troll.jpg differ diff --git a/Assignments/JavaScript/Chapter3Examples/public_html/victor.jpg b/Assignments/JavaScript/Chapter3Examples/public_html/victor.jpg new file mode 100755 index 0000000..f3efcc3 Binary files /dev/null and b/Assignments/JavaScript/Chapter3Examples/public_html/victor.jpg differ diff --git a/Assignments/JavaScript/JavaScript_1/nbproject/private/private.xml b/Assignments/JavaScript/JavaScript_1/nbproject/private/private.xml index e8eee2b..6807a2b 100644 --- a/Assignments/JavaScript/JavaScript_1/nbproject/private/private.xml +++ b/Assignments/JavaScript/JavaScript_1/nbproject/private/private.xml @@ -2,13 +2,6 @@ - - file:/home/caleb/ASDV-WebDev/Assignments/JavaScript_1/bower.json - file:/home/caleb/ASDV-WebDev/Assignments/JavaScript_1/package.json - file:/home/caleb/ASDV-WebDev/Assignments/JavaScript_1/public_html/index.html - file:/home/caleb/ASDV-WebDev/Assignments/JavaScript_1/Gruntfile.js - file:/home/caleb/ASDV-WebDev/Assignments/JavaScript_1/.bowerrc - file:/home/caleb/ASDV-WebDev/Assignments/JavaScript_1/gulpfile.js - + diff --git a/Assignments/JavaScript/ch03.zip b/Assignments/JavaScript/ch03.zip new file mode 100644 index 0000000..cc01154 Binary files /dev/null and b/Assignments/JavaScript/ch03.zip differ diff --git a/Assignments/JavaScript/ch03/.DS_Store b/Assignments/JavaScript/ch03/.DS_Store new file mode 100755 index 0000000..9c17e55 Binary files /dev/null and b/Assignments/JavaScript/ch03/.DS_Store differ diff --git a/Assignments/JavaScript/ch03/carla/carla.css b/Assignments/JavaScript/ch03/carla/carla.css new file mode 100755 index 0000000..ff46595 --- /dev/null +++ b/Assignments/JavaScript/ch03/carla/carla.css @@ -0,0 +1,146 @@ +body { + background-color: #FFFFFF; + background-image: url(background.gif); + color: #0000FF; + font-family: Geneva, Arial, Helvetica, sans-serif; + font-size: 14px; +} +#container { margin-left: auto; + margin-right: auto; + width:85%; + min-width:700px; + } + + +#logo { + text-align:center; + margin: 0; + font-family: Verdana, Arial, Helvetica, sans-serif; + padding-top: 30px; + padding-bottom: 20px; + +} +#nav { + float: left; + width: 200px; + padding-top: 10px; + text-align:left; + color: #FF0000; + font-size: 14px; +} +#nav a { + text-decoration:none; + margin: 15px; + display: block; + color: #FF0000; + font-size: 14px; + font-weight: bold; +} +#content { + margin-left: 150px; + padding: 30px; + overflow:auto; + border: medium groove #0000FF; + line-height: 135%; + +} + +.floatright {padding-left:20px; + float:right; + } +.floatleft { + float:left; + padding: 2px 30px 20px; +} +#footer { + font-size: 16px; + font-style: normal; + text-align: justify; + border-top: thin none; + padding-top: 20px; + padding-bottom: 20px; + color: #FF0000; + font-family: Georgia, "Times New Roman", Times, serif; + font-weight: bold; +} + +h2 { text-transform: uppercase; + color: #0000FF; + font-size: 36px; + border-bottom: 1px none; + margin-right: 20px; +} +h3 { + color: #0000FF; + font-size: 1em; + border-bottom: thin none; + margin-right: auto; + text-align: left; + padding-top: 20px; + padding-right: 150px; + padding-bottom: 20px; + padding-left: 150px; + line-height: 130%; + border-top-style: none; + border-right-style: none; + border-left-style: none; +} +.details { padding-left:20%; + padding-right:20%; +} + + +img {border:0 none; } + + +.content { + margin: 20px; + padding: 20px; + height: 3700px; + width: 500px; +} +a { + color: #FF0000; + text-decoration: none; + margin: 15px; + color: #FF0000; + font-size: 14px; + font-weight: bold; +} +a:hover { + color: #FFFF00; + background-color: #0000FF; +} +h4 { + line-height: 150%; + margin-right: 20%; + margin-left: 15%; + text-align: center; +} +h1 { + font-family: Geneva, Arial, Helvetica, sans-serif; + font-size: 36pt; + text-align: center; + margin-right: 15%; + margin-left: 20%; +} +p { + font-family: Georgia, "Times New Roman", Times, serif; + font-size: 16px; + line-height: 130%; + font-weight: bold; + color: #0000FF; +} +.flt_img { + float: none; + padding-top: 3px; + padding-right: 20px; + padding-bottom: 3px; + padding-left: 20px; +} +specialh4 { + line-height: 150%; + margin-right: 20%; + margin-left: 15%; + text-align: center; +} diff --git a/Assignments/JavaScript/ch03/carla/carla_adding.html b/Assignments/JavaScript/ch03/carla/carla_adding.html new file mode 100755 index 0000000..0c94aff --- /dev/null +++ b/Assignments/JavaScript/ch03/carla/carla_adding.html @@ -0,0 +1,329 @@ + + + +Carla's Classroom | It All Adds Up + + + + +
+ +

It All Adds Up!

+
+
+
+

Home + Meet Carla + Reading + Writing + Arithmetic +

+
+

This arithmetic test will increase in difficulty as you prove you are ready for harder problems. +As soon as you get 3 problems correct in Level One, you will progress to Level Two and then to Level Three.

+

+
+
+ + + diff --git a/Assignments/JavaScript/ch03/carla/images/arith_big.jpg b/Assignments/JavaScript/ch03/carla/images/arith_big.jpg new file mode 100755 index 0000000..2779567 Binary files /dev/null and b/Assignments/JavaScript/ch03/carla/images/arith_big.jpg differ diff --git a/Assignments/JavaScript/ch03/carla/images/arith_button.jpg b/Assignments/JavaScript/ch03/carla/images/arith_button.jpg new file mode 100755 index 0000000..59c70bd Binary files /dev/null and b/Assignments/JavaScript/ch03/carla/images/arith_button.jpg differ diff --git a/Assignments/JavaScript/ch03/carla/images/carla_button.jpg b/Assignments/JavaScript/ch03/carla/images/carla_button.jpg new file mode 100755 index 0000000..75cf743 Binary files /dev/null and b/Assignments/JavaScript/ch03/carla/images/carla_button.jpg differ diff --git a/Assignments/JavaScript/ch03/carla/images/carla_pic.jpg b/Assignments/JavaScript/ch03/carla/images/carla_pic.jpg new file mode 100755 index 0000000..5244298 Binary files /dev/null and b/Assignments/JavaScript/ch03/carla/images/carla_pic.jpg differ diff --git a/Assignments/JavaScript/ch03/carla/images/owl_button.jpg b/Assignments/JavaScript/ch03/carla/images/owl_button.jpg new file mode 100755 index 0000000..096b4b9 Binary files /dev/null and b/Assignments/JavaScript/ch03/carla/images/owl_button.jpg differ diff --git a/Assignments/JavaScript/ch03/carla/images/owl_logo.jpg b/Assignments/JavaScript/ch03/carla/images/owl_logo.jpg new file mode 100755 index 0000000..a46e016 Binary files /dev/null and b/Assignments/JavaScript/ch03/carla/images/owl_logo.jpg differ diff --git a/Assignments/JavaScript/ch03/carla/images/read_button.jpg b/Assignments/JavaScript/ch03/carla/images/read_button.jpg new file mode 100755 index 0000000..6894d8f Binary files /dev/null and b/Assignments/JavaScript/ch03/carla/images/read_button.jpg differ diff --git a/Assignments/JavaScript/ch03/carla/images/write_button.jpg b/Assignments/JavaScript/ch03/carla/images/write_button.jpg new file mode 100755 index 0000000..519d4bf Binary files /dev/null and b/Assignments/JavaScript/ch03/carla/images/write_button.jpg differ diff --git a/Assignments/JavaScript/ch03/carla/images/writing_big.jpg b/Assignments/JavaScript/ch03/carla/images/writing_big.jpg new file mode 100755 index 0000000..d423fa1 Binary files /dev/null and b/Assignments/JavaScript/ch03/carla/images/writing_big.jpg differ diff --git a/Assignments/JavaScript/ch03/carla/math.html b/Assignments/JavaScript/ch03/carla/math.html new file mode 100755 index 0000000..14fd40e --- /dev/null +++ b/Assignments/JavaScript/ch03/carla/math.html @@ -0,0 +1,45 @@ + + + +Carla's Classroom | Math Lessons + + + + + +
+ + +

Carla's Classroom

+

 

+
+
+
+ Home + Meet Carla + Reading + Writing + Arithmetic +
+
+
+
+

Arithmetic Lessons:

+

Addition Exercise +

+ +
+ + diff --git a/Assignments/JavaScript/ch03/ex3_10.html b/Assignments/JavaScript/ch03/ex3_10.html new file mode 100755 index 0000000..a6223cf --- /dev/null +++ b/Assignments/JavaScript/ch03/ex3_10.html @@ -0,0 +1,31 @@ + + + + + Example 3.10 + + + +
+

 

+

Rate the Site

+

Rate the site from 1 to 10, with 10 as the best ever and 1 as one of the worst

+

+
+ + diff --git a/Assignments/JavaScript/ch03/ex3_11.html b/Assignments/JavaScript/ch03/ex3_11.html new file mode 100755 index 0000000..de5d9f3 --- /dev/null +++ b/Assignments/JavaScript/ch03/ex3_11.html @@ -0,0 +1,44 @@ + + + + + Example 3.11 + + + +
+

 

+

Rate the Site

+

Rate the site from 1 to 10, with 10 as the best ever and 1 as one of the worst

+

+
+ + diff --git a/Assignments/JavaScript/ch03/ex3_12.gif b/Assignments/JavaScript/ch03/ex3_12.gif new file mode 100755 index 0000000..08acb15 Binary files /dev/null and b/Assignments/JavaScript/ch03/ex3_12.gif differ diff --git a/Assignments/JavaScript/ch03/ex3_12.html b/Assignments/JavaScript/ch03/ex3_12.html new file mode 100755 index 0000000..bb0e903 --- /dev/null +++ b/Assignments/JavaScript/ch03/ex3_12.html @@ -0,0 +1,62 @@ + + + + + Example 3.12 + + + +
+

 

+

Battle With the Troll!

+

+
+ + + diff --git a/Assignments/JavaScript/ch03/ex3_13.html b/Assignments/JavaScript/ch03/ex3_13.html new file mode 100755 index 0000000..b40330d --- /dev/null +++ b/Assignments/JavaScript/ch03/ex3_13.html @@ -0,0 +1,41 @@ + + + + + Example 3.13 + + + +
+

 

+

Change the page color

+

Select from red, blue, green, yellow, or lavender.

+

+
+ + diff --git a/Assignments/JavaScript/ch03/ex3_14.html b/Assignments/JavaScript/ch03/ex3_14.html new file mode 100755 index 0000000..badcf31 --- /dev/null +++ b/Assignments/JavaScript/ch03/ex3_14.html @@ -0,0 +1,48 @@ + + + + + Example 3.14 + + + +
+

 

+

Find the area of a shape

+
    +
  • For a cirlce, enter c
  • +
  • For a square, enter s
  • +
  • For a triangle, enter t
  • +
+

+
+ + diff --git a/Assignments/JavaScript/ch03/ex3_15.html b/Assignments/JavaScript/ch03/ex3_15.html new file mode 100755 index 0000000..7311335 --- /dev/null +++ b/Assignments/JavaScript/ch03/ex3_15.html @@ -0,0 +1,49 @@ + + + + + Example 3.15 + + + +
+

 

+

Rate the Site

+

Rate the site from 1 to 10, with 10 as the best ever and 1 as one of the worst

+

+
+ + diff --git a/Assignments/JavaScript/ch03/ex3_9.html b/Assignments/JavaScript/ch03/ex3_9.html new file mode 100755 index 0000000..fccc26c --- /dev/null +++ b/Assignments/JavaScript/ch03/ex3_9.html @@ -0,0 +1,31 @@ + + + + + Example 3.9 + + + +
+

 

+

Calculating the Paycheck

+

Click the button to calculate a paycheck with a compound condition

+

+
+ + diff --git a/Assignments/JavaScript/ch03/ex_3_1.html b/Assignments/JavaScript/ch03/ex_3_1.html new file mode 100755 index 0000000..db1da9b --- /dev/null +++ b/Assignments/JavaScript/ch03/ex_3_1.html @@ -0,0 +1,20 @@ + + + Example 3.1 + + + +

What's the Weather?

+

Click the button!

+

+ + diff --git a/Assignments/JavaScript/ch03/ex_3_2.html b/Assignments/JavaScript/ch03/ex_3_2.html new file mode 100755 index 0000000..e6fe419 --- /dev/null +++ b/Assignments/JavaScript/ch03/ex_3_2.html @@ -0,0 +1,28 @@ + + + + + Example 3.2 + + + +

What's the Weather?

+

Click the button!

+

+ + diff --git a/Assignments/JavaScript/ch03/ex_3_3.html b/Assignments/JavaScript/ch03/ex_3_3.html new file mode 100755 index 0000000..1794f67 --- /dev/null +++ b/Assignments/JavaScript/ch03/ex_3_3.html @@ -0,0 +1,26 @@ + + + Example 3.3 + + + +

What's the Weather?

+

Click the button!

+

+ + diff --git a/Assignments/JavaScript/ch03/ex_3_4.html b/Assignments/JavaScript/ch03/ex_3_4.html new file mode 100755 index 0000000..5b70b05 --- /dev/null +++ b/Assignments/JavaScript/ch03/ex_3_4.html @@ -0,0 +1,30 @@ + + + + + Example 3.4 + + + +
+

 

+

Student Score

+

Click the button!

+

+
+ + diff --git a/Assignments/JavaScript/ch03/ex_3_5.html b/Assignments/JavaScript/ch03/ex_3_5.html new file mode 100755 index 0000000..f807299 --- /dev/null +++ b/Assignments/JavaScript/ch03/ex_3_5.html @@ -0,0 +1,45 @@ + + + + + Example 3.5 + + + +
+

 

+

Add x and y or Subtract

+

Click the button!

+

+
+ + diff --git a/Assignments/JavaScript/ch03/ex_3_6.html b/Assignments/JavaScript/ch03/ex_3_6.html new file mode 100755 index 0000000..fbe74bb --- /dev/null +++ b/Assignments/JavaScript/ch03/ex_3_6.html @@ -0,0 +1,31 @@ + + + + + Example 3.6 + + + +
+

 

+

Calculating the Paycheck

+

Click the button to calculate a paycheck with a compound condition

+

+
+ + diff --git a/Assignments/JavaScript/ch03/ex_3_7.html b/Assignments/JavaScript/ch03/ex_3_7.html new file mode 100755 index 0000000..3a00007 --- /dev/null +++ b/Assignments/JavaScript/ch03/ex_3_7.html @@ -0,0 +1,32 @@ + + + + + Example 3.7 + + + +
+

 

+

Calculating Shipping Costs

+

Click the button to calculate your shipping cost

+

+
+ + diff --git a/Assignments/JavaScript/ch03/ex_3_8.html b/Assignments/JavaScript/ch03/ex_3_8.html new file mode 100755 index 0000000..76792ee --- /dev/null +++ b/Assignments/JavaScript/ch03/ex_3_8.html @@ -0,0 +1,33 @@ + + + + + Example 3.8 + + + +
+

 

+

Calculating Shipping Costs

+

Click the button to calculate your shipping cost

+

+
+ + diff --git a/Assignments/JavaScript/ch03/flyaway.jpg b/Assignments/JavaScript/ch03/flyaway.jpg new file mode 100755 index 0000000..5c3bfba Binary files /dev/null and b/Assignments/JavaScript/ch03/flyaway.jpg differ diff --git a/Assignments/JavaScript/ch03/troll.jpg b/Assignments/JavaScript/ch03/troll.jpg new file mode 100755 index 0000000..7d246dd Binary files /dev/null and b/Assignments/JavaScript/ch03/troll.jpg differ diff --git a/Assignments/JavaScript/ch03/victor.jpg b/Assignments/JavaScript/ch03/victor.jpg new file mode 100755 index 0000000..f3efcc3 Binary files /dev/null and b/Assignments/JavaScript/ch03/victor.jpg differ diff --git a/Assignments/JavaScript/greg.zip b/Assignments/JavaScript/greg.zip new file mode 100644 index 0000000..0daad3f Binary files /dev/null and b/Assignments/JavaScript/greg.zip differ diff --git a/Assignments/JavaScript/lab12js_CalebFontenot.tar.gz b/Assignments/JavaScript/lab12js_CalebFontenot.tar.gz new file mode 100644 index 0000000..ef9a7ec Binary files /dev/null and b/Assignments/JavaScript/lab12js_CalebFontenot.tar.gz differ diff --git a/Assignments/JavaScript/lab12js_CalebFontenot.zip b/Assignments/JavaScript/lab12js_CalebFontenot.zip new file mode 100644 index 0000000..6b2e92e Binary files /dev/null and b/Assignments/JavaScript/lab12js_CalebFontenot.zip differ diff --git a/Assignments/JavaScript/lab12js_CalebFontenot/.bowerrc b/Assignments/JavaScript/lab12js_CalebFontenot/.bowerrc new file mode 100644 index 0000000..0ba26f2 --- /dev/null +++ b/Assignments/JavaScript/lab12js_CalebFontenot/.bowerrc @@ -0,0 +1,3 @@ +{ + "directory": "public_html/bower_components" +} diff --git a/Assignments/JavaScript/lab12js_CalebFontenot/Gruntfile.js b/Assignments/JavaScript/lab12js_CalebFontenot/Gruntfile.js new file mode 100644 index 0000000..496183b --- /dev/null +++ b/Assignments/JavaScript/lab12js_CalebFontenot/Gruntfile.js @@ -0,0 +1,9 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/Gruntfile.js to edit this template + */ +module.exports = function (grunt) { + // Project configuration. + grunt.initConfig({ + }); +}; diff --git a/Assignments/JavaScript/lab12js_CalebFontenot/bower.json b/Assignments/JavaScript/lab12js_CalebFontenot/bower.json new file mode 100644 index 0000000..3e6e51b --- /dev/null +++ b/Assignments/JavaScript/lab12js_CalebFontenot/bower.json @@ -0,0 +1,13 @@ +{ + "name": "lab12js", + "version": "1.0.0", + "main": "path/to/main.css", + "ignore": [ + ".jshintrc", + "**/*.txt" + ], + "dependencies": { + }, + "devDependencies": { + } +} diff --git a/Assignments/JavaScript/lab12js_CalebFontenot/ch3.pdf b/Assignments/JavaScript/lab12js_CalebFontenot/ch3.pdf new file mode 100644 index 0000000..f0fc0f8 Binary files /dev/null and b/Assignments/JavaScript/lab12js_CalebFontenot/ch3.pdf differ diff --git a/Assignments/JavaScript/lab12js_CalebFontenot/chapter3.ppt b/Assignments/JavaScript/lab12js_CalebFontenot/chapter3.ppt new file mode 100644 index 0000000..40e373d Binary files /dev/null and b/Assignments/JavaScript/lab12js_CalebFontenot/chapter3.ppt differ diff --git a/Assignments/JavaScript/lab12js_CalebFontenot/gulpfile.js b/Assignments/JavaScript/lab12js_CalebFontenot/gulpfile.js new file mode 100644 index 0000000..eccfb02 --- /dev/null +++ b/Assignments/JavaScript/lab12js_CalebFontenot/gulpfile.js @@ -0,0 +1,10 @@ +/* + * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license + * Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/gulpfile.js to edit this template + */ + +var gulp = require('gulp'); + +gulp.task('default', function () { + // place code for your default task here +}); diff --git a/Assignments/JavaScript/lab12js_CalebFontenot/nbproject/private/private.properties b/Assignments/JavaScript/lab12js_CalebFontenot/nbproject/private/private.properties new file mode 100644 index 0000000..7b91381 --- /dev/null +++ b/Assignments/JavaScript/lab12js_CalebFontenot/nbproject/private/private.properties @@ -0,0 +1 @@ +browser=SL[/Browsers/FirefoxBrowser diff --git a/Assignments/JavaScript/lab12js_CalebFontenot/nbproject/private/private.xml b/Assignments/JavaScript/lab12js_CalebFontenot/nbproject/private/private.xml new file mode 100644 index 0000000..162cd2f --- /dev/null +++ b/Assignments/JavaScript/lab12js_CalebFontenot/nbproject/private/private.xml @@ -0,0 +1,11 @@ + + + + + + file:/home/caleb/ASDV-WebDev/Assignments/JavaScript/lab12js/bower.json + file:/home/caleb/ASDV-WebDev/Assignments/JavaScript/lab12js/.bowerrc + file:/home/caleb/ASDV-WebDev/Assignments/JavaScript/lab12js/package.json + + + diff --git a/Assignments/JavaScript/lab12js_CalebFontenot/nbproject/project.properties b/Assignments/JavaScript/lab12js_CalebFontenot/nbproject/project.properties new file mode 100644 index 0000000..39d4b59 --- /dev/null +++ b/Assignments/JavaScript/lab12js_CalebFontenot/nbproject/project.properties @@ -0,0 +1,5 @@ +file.reference.lab12js-public_html=public_html +file.reference.lab12js-test=test +files.encoding=UTF-8 +site.root.folder=${file.reference.lab12js-public_html} +test.folder=${file.reference.lab12js-test} diff --git a/Assignments/JavaScript/lab12js_CalebFontenot/nbproject/project.xml b/Assignments/JavaScript/lab12js_CalebFontenot/nbproject/project.xml new file mode 100644 index 0000000..7b3084b --- /dev/null +++ b/Assignments/JavaScript/lab12js_CalebFontenot/nbproject/project.xml @@ -0,0 +1,9 @@ + + + org.netbeans.modules.web.clientproject + + + lab12js + + + diff --git a/Assignments/JavaScript/lab12js_CalebFontenot/package.json b/Assignments/JavaScript/lab12js_CalebFontenot/package.json new file mode 100644 index 0000000..75d097e --- /dev/null +++ b/Assignments/JavaScript/lab12js_CalebFontenot/package.json @@ -0,0 +1,8 @@ +{ + "name": "lab12js", + "version": "1.0.0", + "keywords": ["util", "functional", "server", "client", "browser"], + "author": "caleb", + "contributors": [], + "dependencies": {} +} diff --git a/Assignments/JavaScript/lab12js_CalebFontenot/public_html/Problem1.html b/Assignments/JavaScript/lab12js_CalebFontenot/public_html/Problem1.html new file mode 100644 index 0000000..8fd2d22 --- /dev/null +++ b/Assignments/JavaScript/lab12js_CalebFontenot/public_html/Problem1.html @@ -0,0 +1,29 @@ + + + + + TODO supply a title + + + + + diff --git a/Assignments/JavaScript/lab12js_CalebFontenot/public_html/Problem2.html b/Assignments/JavaScript/lab12js_CalebFontenot/public_html/Problem2.html new file mode 100644 index 0000000..1fbf386 --- /dev/null +++ b/Assignments/JavaScript/lab12js_CalebFontenot/public_html/Problem2.html @@ -0,0 +1,23 @@ + + + + + TODO supply a title + + + + + diff --git a/Assignments/JavaScript/lab12js_CalebFontenot/public_html/index_1.html b/Assignments/JavaScript/lab12js_CalebFontenot/public_html/index_1.html new file mode 100644 index 0000000..2ec3591 --- /dev/null +++ b/Assignments/JavaScript/lab12js_CalebFontenot/public_html/index_1.html @@ -0,0 +1,15 @@ + + + + + TODO supply a title + + + + +