Compare commits
6 Commits
c5bf71cb26
..
master
| Author | SHA1 | Date | |
|---|---|---|---|
| f5e66035c3 | |||
| 3e642d3f12 | |||
| c8a8f6f584 | |||
| 6529d9bf44 | |||
| fef25179d0 | |||
| 9872cd1291 |
Binary file not shown.
Binary file not shown.
Binary file not shown.
+13
-4
@@ -14,10 +14,19 @@ class DraftsView extends SecureView
|
|||||||
public function page(){
|
public function page(){
|
||||||
$body = <<<HTML
|
$body = <<<HTML
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<h2>Draft 1</h2>
|
<h2>Questions and Risks for the Customer</h2>
|
||||||
<p>
|
<ul>
|
||||||
Lol, just do the thing, bro!
|
<li><a href="./Questions.pdf">Collated Submission</a></li>
|
||||||
</p>
|
<li><a href="./James_Questions.pdf">Questions and Risks from James</a></li>
|
||||||
|
<li><a href="./Stephen_Questions.pdf">Questions and Risks from Stephen</a></li>
|
||||||
|
<li><a href="./Sean_Questions.pdf">Questions and Risks from Sean</a></li>
|
||||||
|
<li><a href="./Colin_Questions.pdf">Questions and Risks from Colin</a></li>
|
||||||
|
<li><a href="./Logan_Questions.pdf">Questions and Risks from Logan</a></li>
|
||||||
|
<ul>
|
||||||
|
</div>
|
||||||
|
<div class="card">
|
||||||
|
<h2>Prototype Source</h2>
|
||||||
|
<p>Source can be found in <a href="https://git.cse.msu.edu/cse-435-team-6/automotive-paint-defect-analysis/">this git repository</a>.</p>
|
||||||
</div>
|
</div>
|
||||||
HTML;
|
HTML;
|
||||||
return $body;
|
return $body;
|
||||||
|
|||||||
+17
-3
@@ -35,17 +35,31 @@ General Motors automotive plants check for paint defects at points along the ass
|
|||||||
|
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<h2>Other Resources</h2>
|
<h2>Other Resources</h2>
|
||||||
|
<h3>Project Info</h3>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="https://cse.msu.edu/~cse435/Projects/F2017/Project-Description-Assignment.pdf">Project Specification</a></li>
|
<li><a href="https://cse.msu.edu/~cse435/Projects/F2017/Project-Description-Assignment.pdf">Project Description Slides</a></li>
|
||||||
|
<li><a href="http://www.cse.msu.edu/~cse435/Projects/F2017/Project-Description.pdf">Project Description Document</a></li>
|
||||||
|
<li><a href="./Domain Research.pdf">Domain Research</a></li>
|
||||||
<li><a href="http://www.cse.msu.edu/~cse435/Projects/F2017/IntermediateAssignments/Questions%20and%20Answers.pdf">Questions for Customer and Customer Responses</a></li>
|
<li><a href="http://www.cse.msu.edu/~cse435/Projects/F2017/IntermediateAssignments/Questions%20and%20Answers.pdf">Questions for Customer and Customer Responses</a></li>
|
||||||
|
</ul>
|
||||||
|
<h3>Specifications</h3>
|
||||||
|
<ul>
|
||||||
<li><a href="./CSE 435 - SRS V1.pdf">Software Reqirement Specs V1 PDF</a></li>
|
<li><a href="./CSE 435 - SRS V1.pdf">Software Reqirement Specs V1 PDF</a></li>
|
||||||
<li><a href="./CSE 435 - SRS V1.docx">Software Reqirement Specs V1 DOCX</a></li>
|
<li><a href="./CSE 435 - SRS V1.docx">Software Reqirement Specs V1 DOCX</a></li>
|
||||||
<li><a href="./CSE 435 - SRS V2.pdf">Software Reqirement Specs V2 PDF</a></li>
|
<li><a href="./CSE 435 - SRS V2.pdf">Software Reqirement Specs V2 PDF</a></li>
|
||||||
<li><a href="./CSE 435 - SRS V2.docx">Software Reqirement Specs V2 DOCX</a></li>
|
<li><a href="./CSE 435 - SRS V2.docx">Software Reqirement Specs V2 DOCX</a></li>
|
||||||
<li><a href="./CSE 435 - Project Requirements Definition.pdf">Project Requirements</a></li>
|
<li><a href="./CSE 435 - Project Requirements Definition.pdf">Project Requirements Definition</a></li>
|
||||||
|
</ul>
|
||||||
|
<h3>Prototypes</h3>
|
||||||
|
<p>Prototypes Instructions: Visit the linked sites. They are live web-app implementations.</p>
|
||||||
|
<ul>
|
||||||
<li><a href="./prototype/login.html">Prototype V1</a></li>
|
<li><a href="./prototype/login.html">Prototype V1</a></li>
|
||||||
<li><a href="https://www.cse.msu.edu/~joseph62/prototype/login.html">Prototype V2</a></li>
|
<li><a href="https://www.cse.msu.edu/~joseph62/prototype/login.html">Prototype V2</a></li>
|
||||||
<li><a href=".">Bibliography</a></li>
|
</ul>
|
||||||
|
<h3>Miscellaneous</h3>
|
||||||
|
<ul>
|
||||||
|
<li><a href="./Presentation.pdf">Presentation</a></li>
|
||||||
|
<li><a href="./Bibliography.pdf">Bibliography</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
HTML;
|
HTML;
|
||||||
|
|||||||
+2
-2
@@ -6,5 +6,5 @@
|
|||||||
|
|
||||||
session_start();
|
session_start();
|
||||||
define("LOGIN","login");//login session constant
|
define("LOGIN","login");//login session constant
|
||||||
define("ROOT", "/./");
|
//define("ROOT", "/./");
|
||||||
//define("ROOT", "/~joseph62/cse435/");
|
define("ROOT", "/~joseph62/cse435/");
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user