Skip to content

Commit

Permalink
complete
Browse files Browse the repository at this point in the history
  • Loading branch information
el239 committed Feb 10, 2018
1 parent 7210c65 commit 8731eec
Show file tree
Hide file tree
Showing 39 changed files with 1,831 additions and 1,695 deletions.
23 changes: 23 additions & 0 deletions .metadata/.log
Original file line number Diff line number Diff line change
Expand Up @@ -1002,3 +1002,26 @@ Java Model Exception: Java Model Status [C:\Program Files\Java\jre1.8.0_144\lib\
at org.eclipse.core.internal.jobs.Worker.run(Worker.java:56)
!SUBENTRY 1 org.eclipse.jdt.core 4 1006 2018-02-09 10:37:36.600
!MESSAGE C:\Program Files\Java\jre1.8.0_144\lib\rt.jar is not on its project's build path
!SESSION 2018-02-09 16:44:33.830 -----------------------------------------------
eclipse.buildId=4.7.0.I20170612-0950
java.version=1.8.0_144
java.vendor=Oracle Corporation
BootLoader constants: OS=win32, ARCH=x86_64, WS=win32, NL=en_US
Framework arguments: -product org.eclipse.epp.package.java.product C:\Users\BackUp Account\Documents\CS371\program1\WebWorker.java
Command-line arguments: -os win32 -ws win32 -arch x86_64 -product org.eclipse.epp.package.java.product C:\Users\BackUp Account\Documents\CS371\program1\WebWorker.java

!ENTRY org.eclipse.core.resources 2 10035 2018-02-09 16:44:48.758
!MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes.

!ENTRY org.eclipse.egit.ui 2 0 2018-02-09 16:45:42.320
!MESSAGE Warning: The environment variable HOME is not set. The following directory will be used to store the Git
user global configuration and to define the default location to store repositories: 'C:\Users\BackUp Account'. If this is
not correct please set the HOME environment variable and restart Eclipse. Otherwise Git for Windows and
EGit might behave differently since they see different configuration options.
This warning can be switched off on the Team > Git > Confirmations and Warnings preference page.

!ENTRY org.apache.ivyde.eclipse 1 0 2018-02-09 16:50:57.025
!MESSAGE starting IvyDE plugin

!ENTRY org.apache.ivyde.eclipse 1 0 2018-02-09 16:50:57.150
!MESSAGE IvyDE plugin started
Binary file not shown.
Binary file not shown.
Binary file modified .metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap
Binary file not shown.
Binary file not shown.
Binary file modified .metadata/.plugins/org.eclipse.core.resources/0.snap
Binary file not shown.
3,479 changes: 1,787 additions & 1,692 deletions .metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified .metadata/.plugins/org.eclipse.jdt.core/externalLibsTimeStamps
Binary file not shown.
18 changes: 18 additions & 0 deletions .metadata/.plugins/org.eclipse.jdt.core/savedIndexNames.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,20 @@
INDEX VERSION 1.130+C:\Users\BackUp Account\Documents\CS371\program1\.metadata\.plugins\org.eclipse.jdt.core
3449055620.index
3627084181.index
1686655237.index
2075892729.index
1924480154.index
1654674800.index
2725125150.index
1056031855.index
4062329064.index
134360950.index
3623557781.index
2816613229.index
189530877.index
3145607036.index
3608585563.index
197789008.index
4005617011.index
543409727.index
3982276604.index
Binary file modified .metadata/.plugins/org.eclipse.jdt.ui/jdt-images/0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified .metadata/.plugins/org.eclipse.jdt.ui/jdt-images/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified .metadata/.plugins/org.eclipse.jdt.ui/jdt-images/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed .metadata/.plugins/org.eclipse.jdt.ui/jdt-images/4.png
Binary file not shown.
Binary file removed .metadata/.plugins/org.eclipse.jdt.ui/jdt-images/5.png
Binary file not shown.
Binary file removed .metadata/.plugins/org.eclipse.jdt.ui/jdt-images/6.png
Binary file not shown.
Binary file removed .metadata/.plugins/org.eclipse.jdt.ui/jdt-images/7.png
Binary file not shown.
Binary file removed .metadata/.plugins/org.eclipse.jdt.ui/jdt-images/8.png
Binary file not shown.
Binary file removed .metadata/.plugins/org.eclipse.jdt.ui/jdt-images/9.png
Binary file not shown.
2 changes: 1 addition & 1 deletion .metadata/version.ini
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#Thu Feb 08 21:29:22 MST 2018
#Fri Feb 09 16:44:48 MST 2018
org.eclipse.core.runtime=2
org.eclipse.platform=4.7.0.v20170612-0950
Binary file modified WebWorker.class
Binary file not shown.
4 changes: 2 additions & 2 deletions WebWorker.java
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ private void writeHTTPHeader(OutputStream os, String contentType) throws Excepti
BufferedReader br = new BufferedReader (fr);
} // end try
catch (FileNotFoundException e){
os.write("<h1>404 Not Found</h1>".getBytes());
System.err.println(e + " " + file + " not found");
os.write("HTTP/1.1 404 Not Found\n".getBytes());
} // end catch
Expand All @@ -137,8 +138,7 @@ private void writeHTTPHeader(OutputStream os, String contentType) throws Excepti
os.write(contentType.getBytes());
os.write("\n\n".getBytes()); // HTTP header ends with 2 newlines
return;

}
} // end writeHTTPHeader

/**
* Write the data content to the client network connection. This MUST
Expand Down

0 comments on commit 8731eec

Please sign in to comment.