Menu

Webservice Commit Log


Commit Date  
[r623] by orth

orth

extended the Student and ExamParticipant with department and
examination regulation

Modified Files:
src/java/de/fhworms/ztt/ox/core/ExamParticipant.java
src/java/de/fhworms/ztt/ox/core/Student.java
src_test/java/unit/de/fhworms/ztt/ox/core/ExamParticipantTest.java
src_test/java/unit/de/fhworms/ztt/ox/core/StudentTest.java

2003-03-10 19:22:20 Tree
[r622] by orth

Orth, Raab

Splitted ProblemTest into MaterSolutionProblemTest and StudentSolutionTest.
Added the PipeElements Adder and Corrector.
Outsourced Adder and Corrector with their funktions out of the GradingAgent.
Added XML-Tag "Points" in StudentSolutionProblem,
XML-Tag "Mark" in ExamParticipant.
Aligned the UnitTests with the changed Classes.
Overworked the comments.

Modified Files:
src/java/de/fhworms/ztt/ox/core/Exam.java
src/java/de/fhworms/ztt/ox/core/ExamParticipant.java
src/java/de/fhworms/ztt/ox/core/MasterSolutionProblem.java
src/java/de/fhworms/ztt/ox/core/Problem.java
src/java/de/fhworms/ztt/ox/core/StudentSolutionProblem.java
src/java/de/fhworms/ztt/ox/examrepository/ProblemCatalog.java
src/java/de/fhworms/ztt/ox/examserver/RemoteExam.java
src/java/de/fhworms/ztt/ox/gradingwizard/AddPolicy.java
src/java/de/fhworms/ztt/ox/gradingwizard/DefaultAddPolicy.java
src/java/de/fhworms/ztt/ox/gradingwizard/DefaultTruthTable.java
src/java/de/fhworms/ztt/ox/gradingwizard/GradingAgent.java
src/java/de/fhworms/ztt/ox/gradingwizard/LevelPolicy.java
src/java/de/fhworms/ztt/ox/gradingwizard/LinearScoringPolicy.java
src/java/de/fhworms/ztt/ox/gradingwizard/MSSLevelPolicy.java
src/java/de/fhworms/ztt/ox/gradingwizard/NoNegativeAddPolicy.java
src/java/de/fhworms/ztt/ox/gradingwizard/OriginalTruthTable.java
src/java/de/fhworms/ztt/ox/gradingwizard/POFHWormsLevelPolicy.java
src/java/de/fhworms/ztt/ox/gradingwizard/PipeElement.java
src/java/de/fhworms/ztt/ox/gradingwizard/Quantifier.java
src/java/de/fhworms/ztt/ox/gradingwizard/RoundAveragePolicy.java
src/java/de/fhworms/ztt/ox/gradingwizard/Scorer.java
src/java/de/fhworms/ztt/ox/gradingwizard/ScoringPolicy.java
src/java/de/fhworms/ztt/ox/gradingwizard/TruthTable.java
src_test/java/unit/de/fhworms/ztt/ox/core/ExamParticipantTest.java
src_test/java/unit/de/fhworms/ztt/ox/core/ExamTest.java
src_test/java/unit/de/fhworms/ztt/ox/core/ListFactoryTest.java
Added Files:
src/java/de/fhworms/ztt/ox/gradingwizard/Adder.java
src/java/de/fhworms/ztt/ox/gradingwizard/Corrector.java
src_test/java/unit/de/fhworms/ztt/ox/core/MasterSolutionProblemTest.java
src_test/java/unit/de/fhworms/ztt/ox/core/StudentSolutionProblemTest.java
Removed Files:
src_test/java/unit/de/fhworms/ztt/ox/core/ProblemTest.java

2003-03-10 16:52:47 Tree
[r621] by keidel

Tackled the "FFT scaling problem" by means of reading the documentation
on the web. We decided to use the FFT found in
http://www.nauticom.net/www/jdtaft/inverseFFT.htm
as a black box. We had to scale with 1 / (array.length / 2.0) to
achieve proper results. Extensive unit test have to be provided to
get the needed convidence.

Wolf, Keidel

Modified Files:
src/java/de/fhworms/ztt/mepros/DoubleMath.java
test/src/java/unit/de/fhworms/ztt/mepros/DoubleMathTest.java

2003-03-10 12:18:45 Tree
[r620] by conner

Added some stuff used in zfunc for general use

Added Files:
build.bat build.sh build.xml lib/ant.jar lib/jdom.jar
lib/junit.jar lib/optional.jar lib/xerces.jar
src/java/de/fhworms/ztt/directory/AmbiguousNodeException.java
src/java/de/fhworms/ztt/directory/CorruptDirectoryException.java
src/java/de/fhworms/ztt/directory/NoSuchNodeException.java
src/java/de/fhworms/ztt/directory/Node.java
src/java/de/fhworms/ztt/directory/NodeManager.java
src/java/de/fhworms/ztt/directory/XMLNodeManager.java
src/java/de/fhworms/ztt/security/CorruptPasswordException.java
src/java/de/fhworms/ztt/security/PassCrypt.java
src/java/de/fhworms/ztt/ui/swing/BlockingFrame.java
src/java/de/fhworms/ztt/ui/swing/UserAuthFrame.java
src/java/de/fhworms/ztt/usermanagement/DuplicateDescriptorException.java
src/java/de/fhworms/ztt/usermanagement/UserDescriptor.java
src/java/de/fhworms/ztt/usermanagement/UserManager.java

2003-03-07 09:43:55 Tree
[r619] by conner

Threw out some old and unneeded stuff

Modified Files:
build.xml
Removed Files:
lib/jfunc.jar lib/oro.jar

2003-03-07 09:29:39 Tree
[r618] by raab

Orth
improved the GradingAgent for the splitted Problem

Modified Files:
src/java/de/fhworms/ztt/ox/gradingwizard/GradingAgent.java

2003-03-05 13:49:40 Tree
[r617] by raab

Raab

Implemented a new Design of the Scorer (LinearScoringPolicy),
with two Unittests, which proves the Running of it.

Modified Files:
src/java/de/fhworms/ztt/ox/gradingwizard/LevelPolicy.java
src/java/de/fhworms/ztt/ox/gradingwizard/MSSLevelPolicy.java
src/java/de/fhworms/ztt/ox/gradingwizard/POFHWormsLevelPolicy.java
Added Files:
src/java/de/fhworms/ztt/ox/gradingwizard/LinearScoringPolicy.java
src/java/de/fhworms/ztt/ox/gradingwizard/Scorer.java
src/java/de/fhworms/ztt/ox/gradingwizard/ScoringPolicy.java
src_test/java/unit/de/fhworms/ztt/ox/gradingwizard/LinearScoringPolicyMSSTest.java
src_test/java/unit/de/fhworms/ztt/ox/gradingwizard/LinearScoringPolicyPOFHWormsTest.java

2003-03-05 13:33:02 Tree
[r616] by orth

Orth

splitted Problem in MasterSolutionProblem and StudentSolutionProblem

Modified Files:
ox/src/java/de/fhworms/ztt/ox/core/Answer.java
ox/src/java/de/fhworms/ztt/ox/core/Exam.java
ox/src/java/de/fhworms/ztt/ox/core/ListFactory.java
ox/src/java/de/fhworms/ztt/ox/core/Problem.java
ox/src/java/de/fhworms/ztt/ox/examadministrationclient/ExamWizardProblemPane.java
ox/src/java/de/fhworms/ztt/ox/examadministrationclient/ProblemCatalogController.java
ox/src/java/de/fhworms/ztt/ox/examadministrationclient/ProblemModel.java
ox/src/java/de/fhworms/ztt/ox/examclient/ExamClientModel.java
ox/src/java/de/fhworms/ztt/ox/examrepository/ProblemCatalog.java
ox/src/java/de/fhworms/ztt/ox/examserver/RemoteExam.java
ox/src/java/de/fhworms/ztt/ox/repositoryserver/RemoteProblemCatalog.java
ox/src/java/de/fhworms/ztt/ox/repositoryserver/RemoteProblemCatalogImpl.java
ox/src_test/java/unit/de/fhworms/ztt/ox/core/AnswerTest.java
ox/src_test/java/unit/de/fhworms/ztt/ox/core/ExamTest.java
ox/src_test/java/unit/de/fhworms/ztt/ox/core/ListFactoryTest.java
ox/src_test/java/unit/de/fhworms/ztt/ox/core/ProblemTest.java
ox/src_test/java/unit/de/fhworms/ztt/ox/examadministrationclient/ProblemModelTest.java
ox/src_test/java/unit/de/fhworms/ztt/ox/examclient/ExamClientModelTest.java
ox/src_test/java/unit/de/fhworms/ztt/ox/examrepository/ProblemCatalogTest.java
ox/src_test/java/unit/de/fhworms/ztt/ox/examserver/RemoteExamTest.java
Added Files:
ox/src/java/de/fhworms/ztt/ox/core/MasterSolutionProblem.java
ox/src/java/de/fhworms/ztt/ox/core/StudentSolutionProblem.java

2003-03-05 13:15:55 Tree
[r615] by orth

orth
removed errors (compile) in the code

Modified Files:
src/java/de/fhworms/ztt/ox/gradingwizard/GradingAgent.java

2003-03-05 10:14:57 Tree
[r614] by raab

Raab

Added the RoundPolicy-Classes RoundDown and RoundAverage and implements units,
which tests them with the two different LevelPolicys(POFHWorms, MSS);

Modified Files:
src/java/de/fhworms/ztt/ox/gradingwizard/RoundUpPolicy.java
src_test/java/unit/de/fhworms/ztt/ox/gradingwizard/RoundUpPOFHWormsPolicyTest.java
Added Files:
src/java/de/fhworms/ztt/ox/gradingwizard/RoundAveragePolicy.java
src/java/de/fhworms/ztt/ox/gradingwizard/RoundDownPolicy.java
src_test/java/unit/de/fhworms/ztt/ox/gradingwizard/RoundAverageMSSPolicyTest.java
src_test/java/unit/de/fhworms/ztt/ox/gradingwizard/RoundAveragePOFHWormsPolicyTest.java
src_test/java/unit/de/fhworms/ztt/ox/gradingwizard/RoundDownMSSPolicyTest.java
src_test/java/unit/de/fhworms/ztt/ox/gradingwizard/RoundDownPOFHWormsPolicyTest.java
Removed Files:
src/java/de/fhworms/ztt/ox/gradingwizard/FifteenToZeroMarkLevel.java
src/java/de/fhworms/ztt/ox/gradingwizard/OneToFiveMarkLevel.java
src/java/de/fhworms/ztt/ox/gradingwizard/RoundValue.java
src_test/java/unit/de/fhworms/ztt/ox/gradingwizard/FifteenToZeroMarkLevelTest.java
src_test/java/unit/de/fhworms/ztt/ox/gradingwizard/OneToFiveMarkLevelTest.java

2003-03-04 15:39:12 Tree
Older >
MongoDB Logo MongoDB