Skip to content
Snippets Groups Projects
Commit 2e9d400f authored by Axel's avatar Axel
Browse files

gitignore. sry guys for losing settings =D

parent 711bb130
No related branches found
No related tags found
No related merge requests found
......@@ -19,4 +19,5 @@
**/.classpath
/.idea/vcs.xml
/.idea/workspace.xml
/.idea/workspace.xml
\ No newline at end of file
/.idea/workspace.xml
/.idea/workspace.xml
This diff is collapsed.
......@@ -8,13 +8,13 @@ import javax.servlet.jsp.JspWriter;
import javax.servlet.jsp.PageContext;
import javax.servlet.jsp.tagext.SimpleTagSupport;
import java.io.IOException;
//todo: isStudent is false for docents. use this for dynamic menus
public class Menu extends SimpleTagSupport {
public void doTag() throws JspException, IOException {
JspWriter out = getJspContext().getOut();
out.println("<div id=\"sidebar-wrapper\">\n" +
" <ul class=\"sidebar-nav\">\n" +
" <li class=\"sidebar-brand\"><a href=\"project-student.jspjsp\">overview</a></li>\n" +
" <li class=\"sidebar-brand\"><a href=\"project-student.jsp\">overview</a></li>\n" +
" <li><a href=\"takeQuiz.jsp\">Quizfrage</a></li>\n" +
" <li><a href=\"#\">ePortfolio</a></li>\n" +
" <li><a href=\"#\">Beitrag</a></li>\n" +
......
package unipotsdam.gf.interfaces;
import unipotsdam.gf.modules.assessment.controller.StudentIdentifier;
import unipotsdam.gf.modules.assessment.controller.model.StudentIdentifier;
/**
* Interface for learning journal
......
$(document).ready(function () {
$(document).ready(function () { //todo: paths should be relative
$("#giveItBack").on("click", function () {
$.ajax({
url: "http://localhost:8080/gemeinsamforschen/rest/assessments/total/project/" + "gemeinsamForschen" + "/student/" + "Bela",
type: 'GET',
success: function (data) {
alert("here is the TotalPerformance: " + data);
location.href="http://localhost:8080/gemeinsamforschen/pages/project-student.jsp?token="+getUserTokenFromUrl();
},
error: function (a, b, c) {
alert('some error' + a);
......
......@@ -3,10 +3,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta charset="utf-8">
<title>assessment calculator</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="../assets/js/assessmentCalculator.js"></script>
<script src="../assets/js/utility.js"></script>
</head>
<body>
<button id="calculateNow">Post Performance</button>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment