You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(57) |
Jun
(5) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
|
Feb
(86) |
Mar
(385) |
Apr
(198) |
May
(359) |
Jun
(199) |
Jul
(202) |
Aug
(667) |
Sep
(519) |
Oct
(128) |
Nov
(96) |
Dec
(65) |
2008 |
Jan
(145) |
Feb
(539) |
Mar
(1042) |
Apr
(48) |
May
(26) |
Jun
(11) |
Jul
(36) |
Aug
(9) |
Sep
(25) |
Oct
(46) |
Nov
(23) |
Dec
(19) |
2009 |
Jan
(6) |
Feb
|
Mar
(4) |
Apr
(1) |
May
|
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ro...@us...> - 2008-11-03 20:15:01
|
Revision: 4863 http://openuss.svn.sourceforge.net/openuss/?rev=4863&view=rev Author: roekens Date: 2008-11-03 20:14:58 +0000 (Mon, 03 Nov 2008) Log Message: ----------- bugfixed file handling. after uploading a file b, uploading a file a and the editing file b (e.g. change filename), the inputstream of file b was overwritten, and the file got invalid. this is fixed now. Modified Paths: -------------- branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/java/org/openuss/web/upload/UploadFileManager.java Modified: branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/java/org/openuss/web/upload/UploadFileManager.java =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/java/org/openuss/web/upload/UploadFileManager.java 2008-11-03 17:31:56 UTC (rev 4862) +++ branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/java/org/openuss/web/upload/UploadFileManager.java 2008-11-03 20:14:58 UTC (rev 4863) @@ -65,7 +65,7 @@ */ public void removeDocument(UploadedDocument document) { Validate.notNull(document, "Parameter document must not be null!"); - + setSessionBean(Constants.UPLOADED_FILE, null); files.remove(document); document.remove(); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ro...@us...> - 2008-11-03 19:27:03
|
Revision: 4861 http://openuss.svn.sourceforge.net/openuss/?rev=4861&view=rev Author: roekens Date: 2008-11-03 16:57:33 +0000 (Mon, 03 Nov 2008) Log Message: ----------- added missing resource property for chat package Modified Paths: -------------- branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/resources/resources.properties branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/resources/resources_de.properties Modified: branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/resources/resources.properties =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/resources/resources.properties 2008-11-03 15:43:54 UTC (rev 4860) +++ branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/resources/resources.properties 2008-11-03 16:57:33 UTC (rev 4861) @@ -1,5 +1,5 @@ #Created by JInto - www.guh-software.de -#Wed Oct 29 21:40:34 CET 2008 +#Mon Nov 03 16:52:50 CET 2008 MYUNI_INSITUTE_COURSECOUNT_STRING=Current courses MYUNI_INSITUTE_COURSECOUNT_STRING_SINGULAR=Current course activation_error_code_expired=Your activation code has expired. @@ -139,6 +139,7 @@ chat_userlist=Users chatservice_chatroom_created=Chatroom successfully created. chatservice_chatroom_deleted=Chatroom deleted. +chatservice_room_contains_user_cannot_deleted_message=Could not delete chatroom, because the room contains users. chatservice_user_enter_message=User {0} has enter the chatroom. chatservice_user_leave_message=User {0} has left the chatroom. collaboration_colheader_name=Name Modified: branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/resources/resources_de.properties =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/resources/resources_de.properties 2008-11-03 15:43:54 UTC (rev 4860) +++ branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/resources/resources_de.properties 2008-11-03 16:57:33 UTC (rev 4861) @@ -1,5 +1,5 @@ #Created by JInto - www.guh-software.de -#Wed Oct 29 21:40:34 CET 2008 +#Mon Nov 03 16:52:50 CET 2008 MYUNI_INSITUTE_COURSECOUNT_STRING=aktuelle Veranstaltungen MYUNI_INSITUTE_COURSECOUNT_STRING_SINGULAR=aktuelle Veranstaltung activation_error_code_expired=Der Aktivierungscode hat die G\xFCltigkeitsdauer von 15 Minuten \xFCberschritten. @@ -139,6 +139,7 @@ chat_userlist=Mitglieder chatservice_chatroom_created=Chatraum erstellt. chatservice_chatroom_deleted=Chatraum wurde gel\xF6scht. +chatservice_room_contains_user_cannot_deleted_message=Konnte den Chatraum nicht l\xF6schen, da sich noch Benutzer im Chat befinden. chatservice_user_enter_message={0} hat den Chatraum betreten. chatservice_user_leave_message={0} hat den Chatraum verlassen. collaboration_colheader_name=Name This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
Revision: 4862 http://openuss.svn.sourceforge.net/openuss/?rev=4862&view=rev Author: roekens Date: 2008-11-03 17:31:56 +0000 (Mon, 03 Nov 2008) Log Message: ----------- bugfix for not working quiz answering with entry in top list Modified Paths: -------------- branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/braincontest/BrainContestServiceImpl.java Modified: branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/braincontest/BrainContestServiceImpl.java =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/braincontest/BrainContestServiceImpl.java 2008-11-03 16:57:33 UTC (rev 4861) +++ branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/braincontest/BrainContestServiceImpl.java 2008-11-03 17:31:56 UTC (rev 4862) @@ -192,6 +192,7 @@ answerObject.setAnswerPk(new AnswerPK()); answerObject.getAnswerPk().setSolver(getSecurityService().getUserObject(user)); answerObject.getAnswerPk().setContest(brainContest); + getAnswerDao().create(answerObject); brainContest.addAnswer(answerObject); } getBrainContestDao().update(brainContest); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ro...@us...> - 2008-11-03 15:44:06
|
Revision: 4860 http://openuss.svn.sourceforge.net/openuss/?rev=4860&view=rev Author: roekens Date: 2008-11-03 15:43:54 +0000 (Mon, 03 Nov 2008) Log Message: ----------- bugfixes for newsfeeds several elements were visible even if they should be published in future. Modified Paths: -------------- branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/java/org/openuss/web/feeds/CourseFeed.java branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/java/org/openuss/web/feeds/GlobalFeed.java branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/java/org/openuss/web/feeds/InstituteFeed.java Modified: branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/java/org/openuss/web/feeds/CourseFeed.java =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/java/org/openuss/web/feeds/CourseFeed.java 2008-11-03 15:20:56 UTC (rev 4859) +++ branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/java/org/openuss/web/feeds/CourseFeed.java 2008-11-03 15:43:54 UTC (rev 4860) @@ -7,6 +7,7 @@ import java.util.ArrayList; import java.util.Collections; +import java.util.Date; import java.util.Iterator; import java.util.List; @@ -45,8 +46,11 @@ newsItem = (NewsItemInfo) i.next(); link = getSystemService().getProperty(SystemProperties.OPENUSS_SERVER_URL).getValue() + "/views/public/news/newsDetail.faces?news=" + newsItem.getId(); - this.addEntry(entries, newsItem.getTitle(), link, newsItem.getPublishDate(), newsItem.getText(), course - .getName(), newsItem.getPublisherName()); + if (newsItem.getPublishDate().before(new Date())) { + this.addEntry(entries, newsItem.getTitle(), link, newsItem + .getPublishDate(), newsItem.getText(), course + .getName(), newsItem.getPublisherName()); + } } newsItem = (NewsItemInfo) newsEntries.get(0); Modified: branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/java/org/openuss/web/feeds/GlobalFeed.java =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/java/org/openuss/web/feeds/GlobalFeed.java 2008-11-03 15:20:56 UTC (rev 4859) +++ branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/java/org/openuss/web/feeds/GlobalFeed.java 2008-11-03 15:43:54 UTC (rev 4860) @@ -1,6 +1,7 @@ package org.openuss.web.feeds; import java.util.ArrayList; +import java.util.Date; import java.util.List; import org.apache.log4j.Logger; @@ -47,13 +48,12 @@ //Collections.reverse(newsEntries); for (NewsItemInfo item : newsEntries) { - this.addEntry(entries, - item.getTitle() + " (" + item.getPublisherName() + ")", - linkNewsItem + item.getId(), - item.getPublishDate(), - item.getText(), - "Global", - item.getPublisherName()); + if (item.getPublishDate().before(new Date())) { + this.addEntry(entries, item.getTitle() + " (" + + item.getPublisherName() + ")", linkNewsItem + + item.getId(), item.getPublishDate(), item + .getText(), "Global", item.getPublisherName()); + } } feedWrapper.setLastModified(newsEntries.get(0).getPublishDate()); Modified: branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/java/org/openuss/web/feeds/InstituteFeed.java =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/java/org/openuss/web/feeds/InstituteFeed.java 2008-11-03 15:20:56 UTC (rev 4859) +++ branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/java/org/openuss/web/feeds/InstituteFeed.java 2008-11-03 15:43:54 UTC (rev 4860) @@ -2,6 +2,7 @@ import java.util.ArrayList; import java.util.Collections; +import java.util.Date; import java.util.List; import org.apache.log4j.Logger; @@ -47,13 +48,15 @@ if (newsEntries != null && newsEntries.size() != 0) { Collections.reverse(newsEntries); for (NewsItemInfo item : newsEntries) { - this.addEntry(entries, - item.getTitle(), - linkNewsItem + item.getId(), - item.getPublishDate(), - item.getText(), - institute.getName(), - item.getPublisherName()); + if (item.getPublishDate().before(new Date())){ + this.addEntry(entries, + item.getTitle(), + linkNewsItem + item.getId(), + item.getPublishDate(), + item.getText(), + institute.getName(), + item.getPublisherName()); + } } feedWrapper.setLastModified(newsEntries.get(0).getPublishDate()); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ro...@us...> - 2008-11-03 15:21:01
|
Revision: 4859 http://openuss.svn.sourceforge.net/openuss/?rev=4859&view=rev Author: roekens Date: 2008-11-03 15:20:56 +0000 (Mon, 03 Nov 2008) Log Message: ----------- cumulative update for discussion package: removed circular dependency from lecture package. buggy watch emails (containing "ISSUE: Find domain name" string) are now generated with correct forum name. forum name is saved in database to prevent dependency to lecture package -> db change is needed migration sql script for change of 3.1 to light is included. Modified Paths: -------------- branches/openuss-plexus-3.1-light/plexus/plexus-api/src/main/java/org/openuss/discussion/DiscussionService.java branches/openuss-plexus-3.1-light/plexus/plexus-api/src/main/java/org/openuss/discussion/Forum.java branches/openuss-plexus-3.1-light/plexus/plexus-api/src/main/java/org/openuss/discussion/ForumInfo.java branches/openuss-plexus-3.1-light/plexus/plexus-api/src/main/java/org/openuss/lecture/Course.java branches/openuss-plexus-3.1-light/plexus/plexus-api/src/main/java/org/openuss/lecture/CourseInfo.java branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/discussion/DiscussionServiceBase.java branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/discussion/DiscussionServiceImpl.java branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/discussion/ForumBase.java branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/discussion/ForumDaoBase.java branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/discussion/ForumDaoImpl.java branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/discussion/ForumImpl.java branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/resources/org/openuss/discussion/Forum.hbm.xml branches/openuss-plexus-3.1-light/plexus/plexus-core/src/test/java/org/openuss/discussion/DiscussionServiceIntegrationTest.java Added Paths: ----------- branches/openuss-plexus-3.1-light/plexus/plexus-api/src/main/java/org/openuss/foundation/DefaultNamedDomainObject.java branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/data/delete_double_g2a.sql Modified: branches/openuss-plexus-3.1-light/plexus/plexus-api/src/main/java/org/openuss/discussion/DiscussionService.java =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-api/src/main/java/org/openuss/discussion/DiscussionService.java 2008-11-02 21:45:06 UTC (rev 4858) +++ branches/openuss-plexus-3.1-light/plexus/plexus-api/src/main/java/org/openuss/discussion/DiscussionService.java 2008-11-03 15:20:56 UTC (rev 4859) @@ -4,6 +4,7 @@ /** * @author Ingo Dueppe + * @author Sebastian Roekens */ public interface DiscussionService { @@ -39,7 +40,7 @@ public void addForum(ForumInfo forum); - public ForumInfo getForum(org.openuss.foundation.DomainObject domainObject); + public ForumInfo getForum(org.openuss.foundation.NamedDomainObject domainObject); public void changeEditState(ForumInfo forum); Modified: branches/openuss-plexus-3.1-light/plexus/plexus-api/src/main/java/org/openuss/discussion/Forum.java =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-api/src/main/java/org/openuss/discussion/Forum.java 2008-11-02 21:45:06 UTC (rev 4858) +++ branches/openuss-plexus-3.1-light/plexus/plexus-api/src/main/java/org/openuss/discussion/Forum.java 2008-11-03 15:20:56 UTC (rev 4859) @@ -4,6 +4,7 @@ /** * @author Ingo Dueppe + * @author Sebastian Roekens */ public interface Forum extends org.openuss.foundation.DomainObject { @@ -14,6 +15,10 @@ public Long getDomainIdentifier(); public void setDomainIdentifier(Long domainIdentifier); + + public void setName(String name); + + public String getName(); public boolean isReadOnly(); Modified: branches/openuss-plexus-3.1-light/plexus/plexus-api/src/main/java/org/openuss/discussion/ForumInfo.java =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-api/src/main/java/org/openuss/discussion/ForumInfo.java 2008-11-02 21:45:06 UTC (rev 4858) +++ branches/openuss-plexus-3.1-light/plexus/plexus-api/src/main/java/org/openuss/discussion/ForumInfo.java 2008-11-03 15:20:56 UTC (rev 4859) @@ -2,12 +2,12 @@ import java.io.Serializable; -import org.openuss.foundation.DomainObject; +import org.openuss.foundation.NamedDomainObject; /** * @author Ingo Dueppe */ -public class ForumInfo implements Serializable, DomainObject { +public class ForumInfo implements Serializable, NamedDomainObject { private static final long serialVersionUID = 3319166831448246399L; @@ -15,9 +15,10 @@ this.domainIdentifier = null; this.readOnly = false; this.id = null; + this.name = null; } - public ForumInfo(Long domainIdentifier, boolean readOnly, Long id) { + public ForumInfo(Long domainIdentifier, String name, boolean readOnly, Long id) { this.domainIdentifier = domainIdentifier; this.readOnly = readOnly; this.id = id; @@ -32,7 +33,7 @@ * if the argument is <code>null</code> */ public ForumInfo(ForumInfo otherBean) { - this(otherBean.getDomainIdentifier(), otherBean.isReadOnly(), otherBean.getId()); + this(otherBean.getDomainIdentifier(), otherBean.getName(), otherBean.isReadOnly(), otherBean.getId()); } /** @@ -43,6 +44,7 @@ this.setDomainIdentifier(otherBean.getDomainIdentifier()); this.setReadOnly(otherBean.isReadOnly()); this.setId(otherBean.getId()); + this.setName(otherBean.getName()); } private Long domainIdentifier; @@ -58,6 +60,19 @@ this.domainIdentifier = domainIdentifier; } + private String name; + + /** + * + */ + public String getName() { + return this.name; + } + + public void setName(String name) { + this.name = name; + } + private boolean readOnly; /** Added: branches/openuss-plexus-3.1-light/plexus/plexus-api/src/main/java/org/openuss/foundation/DefaultNamedDomainObject.java =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-api/src/main/java/org/openuss/foundation/DefaultNamedDomainObject.java (rev 0) +++ branches/openuss-plexus-3.1-light/plexus/plexus-api/src/main/java/org/openuss/foundation/DefaultNamedDomainObject.java 2008-11-03 15:20:56 UTC (rev 4859) @@ -0,0 +1,52 @@ +/** + * + */ +package org.openuss.foundation; + +/** + * Default implementation of NamedDomainObject interface. + * + * @author Sebastian Roekens + */ +public class DefaultNamedDomainObject implements NamedDomainObject { + + + /** + * + */ + private static final long serialVersionUID = 7776152368697029697L; + + private Long id; + + private String name; + + public DefaultNamedDomainObject() { + }; + + public DefaultNamedDomainObject(Long id) { + super(); + this.id = id; + } + + public DefaultNamedDomainObject(Long id, String name) { + super(); + this.id = id; + this.name = name; + } + + public Long getId() { + return id; + } + + public void setId(final Long id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(final String name) { + this.name = name; + } +} \ No newline at end of file Property changes on: branches/openuss-plexus-3.1-light/plexus/plexus-api/src/main/java/org/openuss/foundation/DefaultNamedDomainObject.java ___________________________________________________________________ Added: svn:mime-type + text/plain Modified: branches/openuss-plexus-3.1-light/plexus/plexus-api/src/main/java/org/openuss/lecture/Course.java =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-api/src/main/java/org/openuss/lecture/Course.java 2008-11-02 21:45:06 UTC (rev 4858) +++ branches/openuss-plexus-3.1-light/plexus/plexus-api/src/main/java/org/openuss/lecture/Course.java 2008-11-03 15:20:56 UTC (rev 4859) @@ -7,6 +7,7 @@ * time (like a specific semester) by one institute. * * @author Ingo D\xFCppe + * @author Sebastian Roekens */ public interface Course extends org.openuss.foundation.DomainObject { Modified: branches/openuss-plexus-3.1-light/plexus/plexus-api/src/main/java/org/openuss/lecture/CourseInfo.java =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-api/src/main/java/org/openuss/lecture/CourseInfo.java 2008-11-02 21:45:06 UTC (rev 4858) +++ branches/openuss-plexus-3.1-light/plexus/plexus-api/src/main/java/org/openuss/lecture/CourseInfo.java 2008-11-03 15:20:56 UTC (rev 4859) @@ -3,7 +3,7 @@ /** * */ -public class CourseInfo implements java.io.Serializable, org.openuss.foundation.DomainObject { +public class CourseInfo implements java.io.Serializable, org.openuss.foundation.NamedDomainObject { /** * The serial version UID of this class. Needed for serialization. */ Added: branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/data/delete_double_g2a.sql =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/data/delete_double_g2a.sql (rev 0) +++ branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/data/delete_double_g2a.sql 2008-11-03 15:20:56 UTC (rev 4859) @@ -0,0 +1,47 @@ +-- backup g2a table +create table security_g2aback( + members_fk bigint not null, + groups_fk bigint not null +); +insert into security_g2aback select * from security_group2authority; + +-- create table with multiple entries +create table security_g2abackup( + members_fk bigint not null, + groups_fk bigint not null +); + +insert into security_g2abackup +select a1, b1 +from (select distinct members_fk as a1, groups_fk as b1 from security_group2authority) +where ((select count(*) + from security_group2authority + where security_group2authority.groups_fk = b1 + and security_group2authority.members_fk = a1 ) + > 1) + +-- remove multiple entries from original table +create procedure delete_double_g2a +as +declare variable userId bigint; +declare variable groupId bigint; +begin + for + SELECT members_fk as userId, groups_fk as groupId + FROM security_g2abackup + into + :userId, :groupId do + begin + DELETE FROM security_group2authority WHERE members_fk = :userId and groups_fk = :groupId; + + INSERT INTO security_group2authority + (members_fk, groups_fk) + VALUES (:userId,:groupId); + end +end; +execute procedure delete_double_g2a; +drop PROCEDURE delete_double_g2a; + +drop table security_g2abackup; + +drop table security_g2aback; Modified: branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/discussion/DiscussionServiceBase.java =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/discussion/DiscussionServiceBase.java 2008-11-02 21:45:06 UTC (rev 4858) +++ branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/discussion/DiscussionServiceBase.java 2008-11-03 15:20:56 UTC (rev 4859) @@ -561,9 +561,9 @@ throws java.lang.Exception; /** - * @see org.openuss.discussion.DiscussionService#getForum(org.openuss.foundation.DomainObject) + * @see org.openuss.discussion.DiscussionService#getForum(org.openuss.foundation.NamedDomainObject) */ - public org.openuss.discussion.ForumInfo getForum(org.openuss.foundation.DomainObject domainObject) + public org.openuss.discussion.ForumInfo getForum(org.openuss.foundation.NamedDomainObject domainObject) { try { @@ -578,9 +578,9 @@ } /** - * Performs the core logic for {@link #getForum(org.openuss.foundation.DomainObject)} + * Performs the core logic for {@link #getForum(org.openuss.foundation.NamedDomainObject)} */ - protected abstract org.openuss.discussion.ForumInfo handleGetForum(org.openuss.foundation.DomainObject domainObject) + protected abstract org.openuss.discussion.ForumInfo handleGetForum(org.openuss.foundation.NamedDomainObject domainObject) throws java.lang.Exception; /** Modified: branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/discussion/DiscussionServiceImpl.java =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/discussion/DiscussionServiceImpl.java 2008-11-02 21:45:06 UTC (rev 4858) +++ branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/discussion/DiscussionServiceImpl.java 2008-11-03 15:20:56 UTC (rev 4859) @@ -19,7 +19,7 @@ import org.openuss.documents.DocumentApplicationException; import org.openuss.documents.FileInfo; import org.openuss.documents.FolderInfo; -import org.openuss.foundation.DomainObject; +import org.openuss.foundation.NamedDomainObject; import org.openuss.security.User; import org.openuss.system.SystemProperties; @@ -384,13 +384,14 @@ } @Override - protected ForumInfo handleGetForum(final DomainObject domainObject) { + protected ForumInfo handleGetForum(final NamedDomainObject domainObject) { Validate.notNull(domainObject, "DomainObject must not be null."); Validate.notNull(domainObject.getId(), "DomainObject must provide an id."); Forum forum = getForumDao().findByDomainIdentifier(domainObject.getId()); if (forum == null) { ForumInfo forumInfo = new ForumInfo(); forumInfo.setDomainIdentifier(domainObject.getId()); + forumInfo.setName(domainObject.getName()); forumInfo.setReadOnly(false); handleAddForum(forumInfo); forum = getForumDao().findByDomainIdentifier(domainObject.getId()); @@ -444,14 +445,7 @@ Map parameters = new HashMap(); parameters.put("topicname", topic.getTitle()); - -// FIXME AOP2Events - Dependency from diskussion to lecture is not allowed -// Course course = getCourseDao().load(topic.getForum().getDomainIdentifier()); -// CourseInfo courseInfo = getCourseDao().toCourseInfo(course); -// parameters.put("coursename", courseInfo.getName()); - - // FIXME AOP2Events - Use forum name and an application event if course is updated - parameters.put("forumname", "ISSUE: Find domain name"); + parameters.put("forumname", topic.getForum().getName()); parameters.put("topiclink", link); getMessageService().sendMessage("user.discussion.watch.sender", "user.discussion.watch.subject", Modified: branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/discussion/ForumBase.java =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/discussion/ForumBase.java 2008-11-02 21:45:06 UTC (rev 4858) +++ branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/discussion/ForumBase.java 2008-11-03 15:20:56 UTC (rev 4859) @@ -4,6 +4,7 @@ /** * @author Ingo Dueppe + * @author Sebastian Roekens */ public abstract class ForumBase implements Forum, Serializable { /** @@ -12,8 +13,24 @@ private static final long serialVersionUID = 781295000319312230L; private java.lang.Long id; + + private String name; + + /** + * @see org.openuss.discussion.Forum#getName() + */ + public java.lang.String getName(){ + return this.name; + } /** + * @see org.openuss.discussion.Forum#setName(java.lang.String name) + */ + public void setName(java.lang.String name){ + this.name = name; + } + + /** * @see org.openuss.discussion.Forum#getId() */ public java.lang.Long getId() { Modified: branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/discussion/ForumDaoBase.java =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/discussion/ForumDaoBase.java 2008-11-02 21:45:06 UTC (rev 4858) +++ branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/discussion/ForumDaoBase.java 2008-11-03 15:20:56 UTC (rev 4859) @@ -423,6 +423,7 @@ target.setDomainIdentifier(source.getDomainIdentifier()); target.setReadOnly(source.isReadOnly()); target.setId(source.getId()); + target.setName(source.getName()); } /** @@ -447,6 +448,14 @@ { target.setDomainIdentifier(source.getDomainIdentifier()); } + if (copyIfNull || source.getId() != null) + { + target.setId(source.getId()); + } + if (copyIfNull || source.getName() != null) + { + target.setName(source.getName()); + } target.setReadOnly(source.isReadOnly()); } Modified: branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/discussion/ForumDaoImpl.java =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/discussion/ForumDaoImpl.java 2008-11-02 21:45:06 UTC (rev 4858) +++ branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/discussion/ForumDaoImpl.java 2008-11-03 15:20:56 UTC (rev 4859) @@ -16,6 +16,9 @@ if (sourceEntity.getId() != null) { targetVO.setId(sourceEntity.getId()); } + if (sourceEntity.getName() != null) { + targetVO.setName(sourceEntity.getName()); + } targetVO.setReadOnly(sourceEntity.isReadOnly()); } } Modified: branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/discussion/ForumImpl.java =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/discussion/ForumImpl.java 2008-11-02 21:45:06 UTC (rev 4858) +++ branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/java/org/openuss/discussion/ForumImpl.java 2008-11-03 15:20:56 UTC (rev 4859) @@ -4,7 +4,7 @@ /** * @author ingo dueppe - * @author sebasitan roekens + * @author Sebastian Roekens * @see org.openuss.discussion.Forum */ public class ForumImpl extends ForumBase implements Forum { Modified: branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/resources/org/openuss/discussion/Forum.hbm.xml =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/resources/org/openuss/discussion/Forum.hbm.xml 2008-11-02 21:45:06 UTC (rev 4858) +++ branches/openuss-plexus-3.1-light/plexus/plexus-core/src/main/resources/org/openuss/discussion/Forum.hbm.xml 2008-11-03 15:20:56 UTC (rev 4859) @@ -14,6 +14,9 @@ <property name="domainIdentifier" type="java.lang.Long"> <column name="DOMAIN_IDENTIFIER" not-null="true" unique="false" sql-type="BIGINT"/> </property> + <property name="name" type="java.lang.String"> + <column name="NAME" unique="false" sql-type="VARCHAR(100)"/> + </property> <property name="readOnly" type="boolean"> <column name="READ_ONLY" not-null="true" unique="false" sql-type="SMALLINT"/> </property> Modified: branches/openuss-plexus-3.1-light/plexus/plexus-core/src/test/java/org/openuss/discussion/DiscussionServiceIntegrationTest.java =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-core/src/test/java/org/openuss/discussion/DiscussionServiceIntegrationTest.java 2008-11-02 21:45:06 UTC (rev 4858) +++ branches/openuss-plexus-3.1-light/plexus/plexus-core/src/test/java/org/openuss/discussion/DiscussionServiceIntegrationTest.java 2008-11-03 15:20:56 UTC (rev 4859) @@ -9,14 +9,15 @@ import java.util.List; import org.openuss.TestUtility; -import org.openuss.foundation.DefaultDomainObject; -import org.openuss.foundation.DomainObject; +import org.openuss.foundation.DefaultNamedDomainObject; +import org.openuss.foundation.NamedDomainObject; import org.openuss.security.SecurityService; import org.openuss.security.User; /** * JUnit Test for Spring Hibernate DiscussionService class. * @see org.openuss.discussion.DiscussionService + * @author Sebastian Roekens */ @SuppressWarnings("unchecked") public class DiscussionServiceIntegrationTest extends DiscussionServiceIntegrationTestBase { @@ -28,8 +29,9 @@ return generateUserPost(user); } - private DomainObject generateDomainObject(){ - DomainObject domainObject = new DefaultDomainObject(TestUtility.unique()); + private NamedDomainObject generateDomainObject(){ + NamedDomainObject domainObject = new DefaultNamedDomainObject(TestUtility.unique()); + securityService.createObjectIdentity(domainObject, null); //securityService.setPermissions(user, domainId, LectureAclEntry.ASSIST); return domainObject; @@ -38,7 +40,7 @@ public void testCreateDeleteTopic(){ //test correct creation of a example topic ForumInfo fi = new ForumInfo(); - DomainObject domainObject = generateDomainObject(); + NamedDomainObject domainObject = generateDomainObject(); fi.setDomainIdentifier(domainObject.getId()); fi.setReadOnly(false); discussionService.addForum(fi); @@ -75,7 +77,7 @@ public void testAddPost(){ ForumInfo fi = new ForumInfo(); - DomainObject domainObject = generateDomainObject(); + NamedDomainObject domainObject = generateDomainObject(); fi.setDomainIdentifier(domainObject.getId()); fi.setReadOnly(false); discussionService.addForum(fi); @@ -108,7 +110,7 @@ public void testDeletePost(){ ForumInfo fi = new ForumInfo(); - DomainObject domainObject = generateDomainObject(); + NamedDomainObject domainObject = generateDomainObject(); fi.setDomainIdentifier(domainObject.getId()); fi.setReadOnly(false); discussionService.addForum(fi); @@ -152,7 +154,7 @@ public void testAddGetForum(){ ForumInfo fi = new ForumInfo(); - DomainObject domainObject = generateDomainObject(); + NamedDomainObject domainObject = generateDomainObject(); fi.setDomainIdentifier(domainObject.getId()); fi.setReadOnly(false); discussionService.addForum(fi); @@ -167,7 +169,7 @@ //create forum ForumInfo fi = new ForumInfo(); - DomainObject domainObject = generateDomainObject(); + NamedDomainObject domainObject = generateDomainObject(); fi.setDomainIdentifier(domainObject.getId()); fi.setReadOnly(false); discussionService.addForum(fi); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ro...@us...> - 2008-11-02 21:45:13
|
Revision: 4858 http://openuss.svn.sourceforge.net/openuss/?rev=4858&view=rev Author: roekens Date: 2008-11-02 21:45:06 +0000 (Sun, 02 Nov 2008) Log Message: ----------- bugfixed institute members page Modified Paths: -------------- branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/webapp/views/secured/lecture/auth/institutemembers.xhtml Modified: branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/webapp/views/secured/lecture/auth/institutemembers.xhtml =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/webapp/views/secured/lecture/auth/institutemembers.xhtml 2008-11-02 20:52:28 UTC (rev 4857) +++ branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/webapp/views/secured/lecture/auth/institutemembers.xhtml 2008-11-02 21:45:06 UTC (rev 4858) @@ -44,7 +44,7 @@ <c:if test="#{views$secured$lecture$auth$aspirants.data.data.rowCount > 0}"> <s:acl domainObject="#{instituteInfo}" hasPermission="#{ACL.GRANT}" ifNot="error"/> - <h:form id="membersForm"> + <h:form id="aspirantsForm"> <ui:include src="aspirantstable.xhtml" /> <o:block> <h:commandButton value="${msg.save}" title="#{msg.save_hint}" action="#{views$secured$lecture$auth$aspirants.save}" styleClass="button_save"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ro...@us...> - 2008-11-02 20:52:31
|
Revision: 4857 http://openuss.svn.sourceforge.net/openuss/?rev=4857&view=rev Author: roekens Date: 2008-11-02 20:52:28 +0000 (Sun, 02 Nov 2008) Log Message: ----------- bugfix for broken news detail page Modified Paths: -------------- branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/webapp/views/layout/news.xhtml Modified: branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/webapp/views/layout/news.xhtml =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/webapp/views/layout/news.xhtml 2008-11-02 20:14:05 UTC (rev 4856) +++ branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/webapp/views/layout/news.xhtml 2008-11-02 20:52:28 UTC (rev 4857) @@ -17,7 +17,7 @@ <link href="#{theme.stylesheet}" rel="stylesheet" type="text/css" media="screen"/> </head> <body> - <ui:decorate template="standard"> + <ui:decorate template="/views/layout/standard.xhtml"> <f:loadBundle basename="resources" var="msg" /> <ui:define name="userportlet"> <ui:include src="/views/commons/user/userportlet.xhtml"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ro...@us...> - 2008-11-02 20:14:09
|
Revision: 4856 http://openuss.svn.sourceforge.net/openuss/?rev=4856&view=rev Author: roekens Date: 2008-11-02 20:14:05 +0000 (Sun, 02 Nov 2008) Log Message: ----------- extended search results were not deleted after search page was left, so that search results were displayed on next search page visit again. BUGFIXED Modified Paths: -------------- branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/java/org/openuss/web/search/ExtendedSearchPage.java Modified: branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/java/org/openuss/web/search/ExtendedSearchPage.java =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/java/org/openuss/web/search/ExtendedSearchPage.java 2008-11-02 19:51:10 UTC (rev 4855) +++ branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/java/org/openuss/web/search/ExtendedSearchPage.java 2008-11-02 20:14:05 UTC (rev 4856) @@ -68,6 +68,10 @@ @Prerender public void prerender(){ breadcrumbs.loadExtendedSearchCrumbs(); + if (!isPostBack()){ + extendedSearchResults = new ExtendedSearchResults(); + initSearchForm(); + } } /** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ro...@us...> - 2008-11-02 19:51:14
|
Revision: 4855 http://openuss.svn.sourceforge.net/openuss/?rev=4855&view=rev Author: roekens Date: 2008-11-02 19:51:10 +0000 (Sun, 02 Nov 2008) Log Message: ----------- bugfix for missing resend activation code functionality Modified Paths: -------------- branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/webapp/WEB-INF/faces-navigation.xml Modified: branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/webapp/WEB-INF/faces-navigation.xml =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/webapp/WEB-INF/faces-navigation.xml 2008-10-31 14:48:56 UTC (rev 4854) +++ branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/webapp/WEB-INF/faces-navigation.xml 2008-11-02 19:51:10 UTC (rev 4855) @@ -1291,6 +1291,11 @@ <from-outcome>institute_registration_step1</from-outcome> <to-view-id>/views/secured/lecture/registration/step1.xhtml</to-view-id> </navigation-case> + + <navigation-case> + <from-outcome>user_activation_request</from-outcome> + <to-view-id>/views/public/user/activate/request.xhtml</to-view-id> + </navigation-case> </navigation-rule> </faces-config> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ro...@us...> - 2008-10-31 14:49:07
|
Revision: 4854 http://openuss.svn.sourceforge.net/openuss/?rev=4854&view=rev Author: roekens Date: 2008-10-31 14:48:56 +0000 (Fri, 31 Oct 2008) Log Message: ----------- resource properties fix Modified Paths: -------------- branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/resources/resources.properties branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/resources/resources_de.properties Modified: branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/resources/resources.properties =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/resources/resources.properties 2008-10-31 12:32:55 UTC (rev 4853) +++ branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/resources/resources.properties 2008-10-31 14:48:56 UTC (rev 4854) @@ -1,2010 +1,2070 @@ -MYUNI_INSITUTE_COURSECOUNT_STRING =Current courses -MYUNI_INSITUTE_COURSECOUNT_STRING_SINGULAR =Current course -activation_error_code_expired =Your activation code has expired. -activation_error_code_not_found =The activation code is invalid, please request a new one. -admin_command_departments =Departments -admin_command_groups =Groups -admin_command_institutes =Institutes -admin_command_ldap_index =LDAP Configuration -admin_command_properties =System Settings -admin_command_universities =Universities -admin_command_users =Users -admin_groups_colheader_label =Label -admin_groups_colheader_name =Name -admin_groups_colheader_password =Password -admin_groups_colheader_userdefined =User-defined -admin_lectureindex_recreate =Recreate lecture index -admin_lectureindex_recreated_success =Index of lecture search successfully recreated -admin_navigation_header =Administration -admin_properties_colheader_name =Parameter -admin_properties_colheader_value =Value -admin_properties_edit =Edit properties -admin_properties_heading =System properties -admin_properties_saved_success =System properties successfully saved. -admin_users_colheader_credentials_expired =Password expired -admin_users_colheader_email =E-Mail -admin_users_colheader_enabled =Enabled -admin_users_colheader_expired =Expired -admin_users_colheader_firstname =First name -admin_users_colheader_lastlogin =last login -admin_users_colheader_lastname =Last name -admin_users_colheader_locked =Locked -admin_users_colheader_username =User name -admin_users_heading =Users -all_active_periods =- ALL ACTIVE COURSES - -all_periods =- ALL COURSES - -application_accept_info =--- The application request has been accepted -application_applied_date =application date -application_confirmed =confirmed -application_confirmed_yes =Yes -application_confirmes_no =No -application_pending_info =The application for {0} is still pending. -application_pending_responsible_info =Please contact the responsible of the department, {0}, for further information. -application_username =application submitted by -attachment_delete =Remove -attachment_delete_hint =Remove attachment -attributemappinginfo_emailkey =Mapping emailkey -attributemappinginfo_emailkey_hint =Enter the attributemapping's emailkey -attributemappinginfo_firstnamekey =Mapping firstnamekey -attributemappinginfo_firstnamekey_hint =Enter the attributemapping's firstnamekey -attributemappinginfo_grouproleattributekey =Mapping grouproleattributekey -attributemappinginfo_grouproleattributekey_hint =Enter the grouproleattributekey's name -attributemappinginfo_lastnamekey =Mapping lastnamekey -attributemappinginfo_lastnamekey_hint =Enter the attributemapping's lastnamekey -attributemappinginfo_mappingname =AttributeMapping name -attributemappinginfo_mappingname_hint =Enter the AttributeMapping's name -attributemappinginfo_usernamekey =Mapping usernamekey -attributemappinginfo_usernamekey_hint =Enter the attributemapping's usernamekey -auth_message_error_removed_member =The last member must not be removed! -authentication_error_account_deleted =Your account is deleted. Please contact an administrator. -authentication_error_account_disabled =Your account is not activated yet. -authentication_error_account_expired =Your account has expired. -authentication_error_account_locked =Your account is locked. -authentication_error_account_notfound =Combination of username and password is unknown. -authentication_error_password_expired =Your password has expired. -authentication_error_password_mismatch =Combination of user name and password is unknown. -authentication_error_required =This page requires authentification. -authenticationcontroller_password_hint =Enter your password here. -authenticationcontroller_username_hint =Please enter your username. -authenticationdomaininfo_changepasswordurl =changePasswordUrl -authenticationdomaininfo_changepasswordurl_hint =Enter an URL where the user can change her central user password . -authenticationdomaininfo_name =Name of domain -authenticationdomaininfo_name_hint =Enter the AuthenticationDomain's name -autogroup_administrator_label =Administrator -autogroup_assistant_label =Assistants -autogroup_tutor_label =Tutor -back =Back -braincontest_add_attachment =Attach -braincontest_answer_answer =Answer -braincontest_answer_answer_hint =Please enter your answer here. -braincontest_answer_toplist =Add to Ranking -braincontest_answer_toplist_hint =Please choose, if you want to be added to the top list. -braincontest_attachment =Attachment -braincontest_cancel =Cancel -braincontest_confirm_delete_post =Should this quiz really be deleted? -braincontest_contest_releasedate =Release Date -braincontest_contest_releasedate_hint =Please enter the date, when the quiz should be released. -braincontest_contest_solution =Solution -braincontest_contest_solution_hint =Please enter your solution here. -braincontest_contest_title =Title -braincontest_contest_title_hint =Please enter quiz title here. -braincontest_description =Description -braincontest_main_button_change =Edit -braincontest_main_button_edit =Edit -braincontest_main_button_remove =Delete -braincontest_main_button_solve =Solve -braincontest_main_button_top =Winners -braincontest_main_column_actions =Actions -braincontest_main_column_answers =Answers -braincontest_main_column_date =Date -braincontest_main_column_title =Title -braincontest_main_deleted =The quiz {0} was deleted successfully. -braincontest_main_header =Quiz -braincontest_message_contest_not_found =This quiz does not exist. -braincontest_message_contest_not_released =This quiz has not been released yet. -braincontest_message_created =New quiz was created. -braincontest_message_saved =Quiz changes saved. -braincontest_message_user_correct_answer =You have already entered a correct answer. -braincontest_new =New Quiz -braincontest_result_button_solve =Try again -braincontest_result_header =Result -braincontest_result_right =Congratulations\! Your answer is correct\! -braincontest_result_wrong =Your answer was wrong, do you want to try again? -braincontest_save =Save -braincontest_solve_answer =Submit -braincontest_solve_header =Quiz -braincontest_toplist_header =Winners -braincontest_toplist_rank =Rank -braincontest_toplist_time =Time -braincontest_toplist_user =User -braincontestanswer_addtotoplist =Add to Winners List -braincontestanswer_answer =Answer -cancel =Cancel -cancel_hint =Cancel operation -chat_command_send =Send -chat_message =Message -chat_messages =Messages -chat_rooms_create =Create -chat_rooms_create_hint =Create a new chat room with the given topic -chat_rooms_delete =Delete -chat_rooms_delete_hint =Delete chat room with all messages. -chat_rooms_enter =Enter chatroom. -chat_rooms_messages =Number of Messages -chat_rooms_onlineusers =Number of Users -chat_rooms_subheading =Chatrooms -chat_rooms_topic =Topic of chatroom -chat_rooms_topics =Topics -chat_userlist =Users -chatservice_chatroom_created =Chatroom successfully created. -chatservice_user_enter_message =User {0} has enter the chatroom. -chatservice_user_leave_message =User {0} has left the chatroom. -collaboration_colheader_name =Name -collaboration_command_add_workspace =Add Workspace -collaboration_command_add_workspace_hint =Add a new workspace. -collaboration_command_edit_file =Edit File -collaboration_command_edit_file_hint =Edit File -collaboration_command_edit_workspace =Edit Workspace -collaboration_command_edit_workspace_hint =Edit this workspace. -collaboration_command_remove_file =Remove File -collaboration_command_remove_file_hint =Remove File -collaboration_command_remove_workspace =Remove Workspace -collaboration_command_remove_workspace_hint =Remove this Workspace -collaboration_error_cannot_be_removed =Workspace cannot be removed. -collaboration_error_workspace_not_found =The workspace could not be found. -collaboration_main_header =Workspaces -collaboration_main_info =What are Workspaces? -collaboration_main_info_detail =In a Workspace you can work together with your fellow students. <br />Everybody can download files, but you can also create folders, upload files and delete them. -collaboration_member_firstname =First Name -collaboration_member_lastname =Last Name -collaboration_member_username =Username -collaboration_message_add_workspace_succeed =Adding workspace succeeded. -collaboration_message_persist_workspace_succeed =Storing workspace succeeded. -collaboration_selected_file_description =Description -collaboration_selected_file_description_hint =Please enter description here. -collaboration_selected_file_filename =Filename -collaboration_selected_file_filename_hint =Additionally you can define a alternative filename for the downloaded file. -collaboration_selected_file_hint =This name will be displayed on the web page -collaboration_selected_file_name =Name -collaboration_selected_file_name_hint =This name will be displayed on the web page -collaboration_selected_folder_description =Description -collaboration_selected_folder_description_hint =Please enter description here. -collaboration_selected_folder_name =Name -collaboration_selected_folder_name_hint =Please enter name here. -collaboration_workspace_header =Workspace -collaboration_workspace_main_header =Workspace -collaboration_workspace_members_header =Members -collaboration_workspace_remove_confirmation_flag =Yes, do remove the workspace and all paper data. -collaboration_workspace_remove_header =Removing a workspace -collaboration_workspace_remove_text =Do you really want to remove the following workspace and the related data permanently? -collaboration_workspace_removed_succeed =Removing workspace succeeded. -collaboration_workspacelist_header =Workspaces -collaboration_workspacetable_header =Workspaces -commands_header =Actions -controls_language_label =Language: -controls_option_label =Options: -controls_theme_label =Design: -controls_timezone_label =Time zone -course_aspirant_accepted =Aspirant has been accepted. -course_aspirant_reject =Application successfully rejected. -course_aspirants_aspire =Application -course_assistants_add =Add -course_assistants_add_hint =Adds the user to the table of lecturers. -course_assistants_admin =Admin -course_assistants_assist =Assist -course_assistants_delete =Remove -course_assistants_delete_hint =Remove -course_assistants_select =Please choose... -course_assistants_select_error =No assistant selected! -course_assistants_suspend =Suspend -course_braincontest =Quiz -course_braincontest_hint =Quiz -course_chat =Chat -course_chat_hint =Chat -course_colheader_edit =Options -course_colheader_name =Name (Shortcut) -course_colheader_period =Period -course_colheader_remove =Remove -course_colheader_shortcut =Link -course_command_add_institute_member =Members of the institute -course_command_add_user_as_assistant =Enter a username or a email address -course_command_add_user_as_assistant_hint =Enter a username or a email address to add a user as an assistant of the course. -course_command_chat =Chat -course_command_collaboration =Workspaces -course_command_disable =Disable -course_command_disable_hint =Disables the selected course. -course_command_discussion =Discussion -course_command_documents =Materials -course_command_edit =Edit -course_command_edit_hint =Edit course options -course_command_enable =Enable -course_command_enable_hint =Enables the selected course. -course_command_main =Course -course_command_move =Move -course_command_move_hint =Move course to a different period. -course_command_newsletter =Newsletter -course_command_newslettersubscribers =Subscribers -course_command_options =Administration -course_command_options_aspirants =Aspirants -course_command_options_assistants =Assistants -course_command_options_config =Settings -course_command_options_news =News -course_command_options_participants =Participants -course_command_overview =Overview -course_command_papersubmission =Papersubmission -course_command_quiz =Quiz -course_command_remove =Remove -course_command_remove_hint =Remove this course and all associated courses (incl. all data) -course_command_shortcut =Link -course_command_shortcut_end =End Membership -course_command_shortcut_hint =Creates a bookmark of this course on your My Uni page. -course_command_shortcut_hint_remove =Removes a bookmark for a course on My Uni page. -course_command_shortcut_remove =Remove Bookmark -course_command_wiki =Wiki -course_count_header =Number of courses -course_coursetype_name =Course -course_description =Description -course_discussion =Discussion -course_discussion_hint =Discussion -course_documents =Lecture materials -course_documents_hint =Enables to provide lecture materials in this course -course_freestylelearning =FreeStyleLearning -course_freestylelearning_hint =FreeStyleLearning -course_header =Courses of {0} -course_info =Courses realize course types for a certain time period. Therefore, assigning at least one time period to a course type is necessary to make a course accessible for students. -course_info_head =What are courses? -course_main_access =Login -course_main_access_application_running =Your application is pending -course_main_access_applybutton =Apply -course_main_access_applytext =You have to apply for this course, do you want to apply now? -course_main_access_closed_text =This course is temporary closed -course_main_access_openbutton =Approve -course_main_access_opentext =You have to approve your participation. After approval, you will be accepted as a participant of this course and get full access to course information. -course_main_access_passtext =Please enter the password for this course. -course_main_access_password =Password -course_main_assistants =Assistant -course_main_overview_allcourses_department =Courses of department -course_main_overview_allcourses_period =in period\: -course_main_title =Course -course_maintitle =Course main page - Openuss -course_member_active =Active Participation -course_member_readonly =Read only -course_member_suspend =Suspended -course_members_command_head =Add assistants to course -course_members_delete =Remove -course_members_delete_hint =Removes user from the member list -course_navigation_allcoursesbydepartment_link =Show all courses by department -course_navigation_header =Course menu -course_newsletter =Newsletter -course_newsletter_hint =Newsletter -course_newsletter_subscriber_export_comma_list_header =List of subscribers separated by comma -course_newsletter_subscriber_export_semicolon_list_header =List of subscribers separated by semicolon -course_options_access_anonymous =Anonymous access -course_options_access_anonymous_short =Anonym -course_options_access_application =Accept students manually -course_options_access_application_short =Manual acception -course_options_access_closed =Block area. Access is restricted to members of the institute. -course_options_access_closed_short =Blocked -course_options_access_headline =Access control -course_options_access_open =Open -course_options_access_open_short =Open -course_options_access_password =Closed with course password -course_options_access_password_short =Password -course_options_features_headline =Features -course_options_header =Course settings -course_options_headline =Course -course_options_text =This course can be opened for all students or closed to a group of students, who has to apply for the access first. <br/> If this course is only for a closed group, you have to accept or reject the application from the students. In addition you can define a password for this course to automate the acception of applications. <br/> <br/> You can enable or disable the functionality of the course. -course_password =Password -course_password_hint =Define a course password -course_remove_confirmation_flag =Yes, do remove the course and all course data. -course_remove_header =Removing a course -course_remove_text =Do you really want to remove the following course and the related data permanently? -course_shortcut =Shortcut -course_shortcut_hint =Define a shortcut for this course for quicker access. -course_success_remove_shortcut =Course participance deleted. -course_type_remove_header =Removing a course in ALL periods -course_type_remove_text =Do you really want to remove the following courses in ALL periods and the related data permanently? -course_wiki =Wiki -course_wiki_hint =Wiki -courseinfo_braincontest =Quiz -courseinfo_braincontest_hint =Quiz -courseinfo_chat =Chat -courseinfo_chat_hint =Chat -courseinfo_collaboration =Workspaces -courseinfo_discussion =Discussion -courseinfo_discussion_hint =Enables the opportunity of a discussion within in the course -courseinfo_documents =Lecture materials -courseinfo_documents_hint =Enables to provide lecture materials in this course -courseinfo_freestylelearning =FreeStyleLearning -courseinfo_freestylelearning_hint =FreeStyleLearning -courseinfo_newsletter =Newsletter -courseinfo_newsletter_hint =Newsletter -courseinfo_papersubmission =Papersubmission -courseinfo_password =Password -courseinfo_password_hint =Define a course password -courseinfo_shortcut =Shortcut -courseinfo_shortcut_hint =Define a shortcut for this course for quicker access. -courseinfo_wiki =Wiki -coursenews_confirm_delete =Do you really want to delete this news entry? -coursenews_saved =News entry successfully saved. -courseoptionsinfo_braincontest =Quiz -courseoptionsinfo_braincontest_hint =Quiz -courseoptionsinfo_chat =Chat -courseoptionsinfo_chat_hint =Chat -courseoptionsinfo_collaboration =Workspaces -courseoptionsinfo_collaboration_hint =Workspaces -courseoptionsinfo_discussion =Discussion -courseoptionsinfo_discussion_hint =Enables the opportunity of a discussion within in the course -courseoptionsinfo_documents =Lecture materials -courseoptionsinfo_documents_hint =Enables to provide lecture materials in this course -courseoptionsinfo_freestylelearning =FreeStyleLearning -courseoptionsinfo_freestylelearning_hint =FreeStyleLearning -courseoptionsinfo_newsletter =Newsletter -courseoptionsinfo_newsletter_hint =Newsletter -courseoptionsinfo_papersubmission =Papersubmission -courseoptionsinfo_papersubmission_hint =Papersubmission -courseoptionsinfo_password =Password -courseoptionsinfo_password_hint =Define a course password -courseoptionsinfo_shortcut =Shortcut -courseoptionsinfo_shortcut_hint =Define a shortcut for this course for quicker access. -courseoptionsinfo_wiki =Wiki -courseoptionsinfo_wiki_hint =Wiki -coursetype_colheader_edit =Edit -coursetype_colheader_name =Name (Shortcut) -coursetype_colheader_remove =Remove -coursetype_colheader_shortcut =Link -coursetype_colheader_shortcut_hint =A link to that course is added to your desktop. -coursetype_command_add =Add course type -coursetype_command_add_hint =Add a new course type to the institute -coursetype_command_assign_to_period =Assign to period -coursetype_command_assign_to_period_hint =Assign the selected course to a period -coursetype_command_edit =Edit -coursetype_command_edit_hint =Edit the course type. -coursetype_command_remove =Remove -coursetype_command_remove_hint =Remove course in all semesters -coursetype_command_shortcut =Link -coursetype_command_shortcut_link =Create a link to this course on your desktop -coursetype_coursetypestable_header =Course types -coursetype_description =Description -coursetype_description_hint =Please enter here additional information for the course -coursetype_header =Course -coursetype_info =A course type is a description for a course. There can be many courses of one certain type, but only one for each time period. -coursetype_info_head =What are course types? -coursetype_instantiate =Also create the first course of this type in the following period: -coursetype_instantiate_info =If this box is not checked, only the course type will be saved. You are able to create a course of this type later on using 'periods' in the navigation bar. -coursetype_name =Name -coursetype_name_hint =Please enter the name of the course here -coursetype_preferences_periods =Choose the period you want to assign to the course -coursetype_remove_confirmation_flag =Yes, please remove the course and all course data permanently -coursetype_remove_header =Deleting a course -coursetype_remove_text_part_1 =Do you really want to remove the following course -coursetype_remove_text_part_2 =in all semesters -coursetype_remove_text_part_3 =irretrievably? -coursetype_save_and_configure =Save and configure -coursetype_save_info =After creating a course you have to configure the access control and the range of functions. If the course is saved with standard configuration it will only be accessible by institute members. -coursetype_shortcut =Shortcut -coursetype_shortcut_hint =Please enter here a shortcut for this course. -coursetypeinfo_description =Description -coursetypeinfo_description_hint =Please enter here additional descriptions of the course -coursetypeinfo_name =Name -coursetypeinfo_name_hint =Please enter here the name of the course -coursetypeinfo_shortcut =Shortcut -coursetypeinfo_shortcut_hint =Please enter here a unique shortcut for this course. -default_department_donot_delete =Default department: Cannot be deleted! -default_period_donot_delete =Default period: Cannot be deleted! -delete_error_code_not_found =The submitted code to delete a user could not be found. -delete_error_code_expired =The submitted code to delete a user expired. -department =Department -departmentList_header =Departments -department_add_member_to_department =Add user {0} to department administrators. -department_auth_members_colheader_groups =Groups -department_auth_message_removed_member =User {0} from department administrators list removed. -department_command_add_department =Add department -department_command_add_department_hint =Add a new department -department_command_aspirants =Aspirants -department_command_authorisations =Authorisations -department_command_department =Settings -department_command_disable =Disable -department_command_disable_hint =Disables the selected department -department_command_edit =Edit -department_command_enable =Enable -department_command_enable_hint =Enables the selected department -department_command_institutes =Institutes -department_command_main =Department -department_command_members =Members -department_command_overview_shortcut =Add bookmark -department_command_remove =Remove -department_command_remove_hint =Delete the department and all the containing data. -department_command_remove_shortcut =Remove bookmark -department_command_settings =Settings -department_command_shortcut =Bookmark -department_data_subheading =Department data -department_disable_header =Disabling department -department_disable_text =Are you REALLY sure that you want to disable the selected department and all belonging institutes, course types and courses? -department_error_remove_shortcut =Bookmark could not be deleted -department_error_shortcut =Bookmark could not be created -department_maintitle =Department main page - OpenUSS -department_manage_institute_applications_header =Manage institutes -department_members_add_subheading =Add new member -department_members_command_add =Add -department_members_command_add_hint =Add user to the members list -department_members_command_remove =Remove -department_members_command_remove_hint =Delete users membership -department_members_subheading =Authorisations -department_message_command_save_succeed =Department data succesfully changed! -department_name =Department name -department_navigation_allcourses_link =List of all courses -department_navigation_header =Manage department -department_ownername =Person in charge -department_preferences_department =Select your department type -department_preferences_university =Select the university which you want to assign to the department -department_profile =Overview -department_registration_start_headline =Register department -department_registration_start_text =The process registering your department within OpenUSS is an easy process, but we do require a reasonable amount of information in order to automate things as much as possible. Registering the department consists of the two steps:<br/><ol><li>Fill in the data of the department</li><li>Confirm the entered data</li></ol>It should take about 5 minutes. -department_registration_step1_headline =Department Registration - Submit Data -department_registration_step2_headline =Department Registration - Confirm Data -department_registration_success =Department successfully created. -department_remove_header =Removing department -department_remove_text =Are you REALLY sure that you want to delete the selected department and all belonging institutes, course types and courses? -department_selection =Department -department_shortcut =Shortcut -department_single_remove_text_part_1 =Do you really want to remove the following department -department_single_remove_text_part_2 =irretrievably? -department_single_remove_text_part_3 =It is just possible to delete the department if there are no institutes assigned. -department_success_remove_shortcut =Bookmark deleted -department_success_shortcut =Bookmark created -departmentapplication_address =Address -departmentapplication_address_hint =Enter the department's address -departmentapplication_city =City -departmentapplication_city_hint =Enter the city in which the department is located -departmentapplication_country =Country -departmentapplication_country_hint =Enter the country in which the department is located -departmentapplication_departmentType =Department type -departmentapplication_description =Description -departmentapplication_description_hint =Enter a description for the department -departmentapplication_email =E-Mail -departmentapplication_email_hint =Enter an email address for the department -departmentapplication_locale =Language -departmentapplication_name =Department name -departmentapplication_name_hint =Enter the department's name -departmentapplication_ownername =Responsible person for the department -departmentapplication_ownername_hint =Enter a person which is responsible for the department -departmentapplication_postcode =Postcode -departmentapplication_postcode_hint =Enter the department's postcode -departmentapplication_shortcut =Shortcut -departmentapplication_shortcut_hint =Enter the department's shortcut -departmentapplication_shortname =Department short name -departmentapplication_shortname_hint =Enter the department's short name -departmentapplication_telefax =Fax -departmentapplication_telefax_hint =Enter the department's fax number -departmentapplication_telephone =Phone -departmentapplication_telephone_hint =Enter the department's telephone number -departmentapplication_theme =Theme -departmentapplication_university =University -departmentapplication_website =Website -departmentapplication_website_hint =Enter the department's homepage -departmentinfo_address =Address -departmentinfo_address_hint =Enter the department's address -departmentinfo_city =City -departmentinfo_city_hint =Enter the city in which the department is located -departmentinfo_country =Country -departmentinfo_country_hint =Enter the country in which the department is located -departmentinfo_departmentType =Department type -departmentinfo_description =Description -departmentinfo_description_hint =Enter a description for the department -departmentinfo_email =E-Mail -departmentinfo_email_hint =Enter an email address for the department -departmentinfo_locale =Language -departmentinfo_logo =Upload logo -departmentinfo_name =Department name -departmentinfo_name_hint =Enter the department's name -departmentinfo_ownername =Responsible person for the department -departmentinfo_ownername_hint =Enter a person which is responsible for the department -departmentinfo_postcode =Postcode -departmentinfo_postcode_hint =Enter the department's postcode -departmentinfo_shortcut =Shortcut -departmentinfo_shortcut_hint =Enter the department's shortcut -departmentinfo_shortname =Department short name -departmentinfo_shortname_hint =Enter the department's short name -departmentinfo_telefax =Fax -departmentinfo_telefax_hint =Enter the department's fax number -departmentinfo_telephone =Phone -departmentinfo_telephone_hint =Enter the department's telephone number -departmentinfo_theme =Theme -departmentinfo_university =University -departmentinfo_website =Website -departmentinfo_website_hint =Enter the department's homepage -departmentinstitutes_command_accept =Accept -departmentinstitutes_command_accept_hint =Accept a new institute -departmentinstitutes_command_reject =Reject -departmentinstitutes_command_reject_hint =Reject a institute -departments_disabled =--- DISABLED DEPARTMENTS --- -departments_enabled =--- ENABLED DEPARTMENTS --- -departmenttype_non_offical =Virtual department -departmenttype_official =Official department -desktop =Desktop -desktop_command_add_course_succeed =A bookmark for this course was created. -desktop_command_add_coursetype_succeed =Bookmark created. -desktop_command_bookmarks =Bookmarks -desktop_command_department_create =Department registration -desktop_command_institute_create =Institute registration -desktop_command_myuni =MyUni -desktop_command_university_create =University registration -desktop_command_userprofile =Profile -desktop_courses_colheader_name =Name (shortcut) -desktop_courses_colheader_remove =Unsubscribe -desktop_courses_command_remove =Unsubscribe -desktop_courses_command_remove_hint =Unsubscribe course -desktop_courses_header =Bookmarks to Courses -desktop_coursetypes_colheader_name =Name (Shortcut) -desktop_coursetypes_colheader_remove =Remove -desktop_coursetypes_command_remove =Remove -desktop_coursetypes_command_remove_hint =Remove bookmark from your desktop -desktop_coursetypes_header =Courses -desktop_department_admin =Departments -desktop_heading =Welcome to Openuss-Plexus {0} ! -desktop_institutes_colheader_name =Name (Shortcut) -desktop_institutes_colheader_remove =Remove -desktop_institutes_command_remove =Remove -desktop_institutes_command_remove_hint =Remove bookmark -desktop_institutes_header =Institutes -desktop_mesage_removed_course_succeed =Course link removed successfully -desktop_message_removed_institute_succeed =The institute '{0}' has been removed from your desktop. -desktop_navigation_header =Desktop -desktop_search_institute =Browse institutes -desktop_system_admin =Universities -desktop_title =OpenUSS Plexus - {0} -desktop_university_admin =university administration -disable =Disable -discussion_config_state_header =Configuration -discussion_confirm_delete_post =Do you really want to delete this post? -discussion_discussionentry_attachment =Attachment -discussion_discussionentry_button_attachment =Attach file -discussion_discussionentry_button_draft =Draft -discussion_discussionentry_button_formula =Add a formula -discussion_discussionentry_button_send =Send -discussion_discussionentry_formula =Formula -discussion_discussionentry_text =Text -discussion_discussionentry_title =Title -discussion_discussionentry_title_hint =Please enter title here. -discussion_filename_already_exists =The chosen filename exists already! -discussion_forum_readonly =Change -discussion_forum_readonly_false =This forum can be changed. -discussion_forum_readonly_true =This forum is read only. -discussion_forum_readonly_true_simple =This forum is read only. -discussion_forum_watch =Change -discussion_forum_watch_false =You don't receive emails on any changes in this forum -discussion_forum_watch_true =You get emails if a post is added to this forum -discussion_main_column_actions =Actions -discussion_main_column_answers =Answers -discussion_main_column_author =Author -discussion_main_column_clicks =Clicks -discussion_main_column_lastentry =Latest entry -discussion_main_column_name =Thread -discussion_main_header =Threads -discussion_new =New Thread -discussion_new_addpost =Answer -discussion_new_answer =Answer -discussion_new_discussion_entry =New Thread / Answer -discussion_new_discussion_title =Title -discussion_post_deleted =Post "{0}" was deleted successfully. -discussion_post_edited =This post was edited by -discussion_post_edited2 =at -discussion_post_not_author =You have to be author of this post to edit it. -discussion_post_not_found =Post not found! -discussion_readonly =This action is not possible, because the current topic is read-only -discussion_remove_topic_header =Delete thread -discussion_removethread_confirmation_flag =Do you really want to delete this thread? -discussion_search =Search forum -discussion_search_and_or =And / or -discussion_search_author =Author -discussion_search_button =Search -discussion_search_button_cancel =Cancel -discussion_search_button_clear =Clear list -discussion_search_modified =Modified -discussion_search_score =Score -discussion_search_search_fuzzy =Fuzzy search -discussion_search_submitter =Submitter -discussion_search_title =Title -discussion_search_title_only =Only search in title -discussion_subscribe_success =Forum successfully subscribed. -discussion_thread_column_author =Author -discussion_thread_column_message =Message -discussion_thread_column_picture =Picture -discussion_thread_edit_post =Edit Post -discussion_thread_not_found =Thread not found! -discussion_thread_quote =Quote -discussion_thread_remove_post =Delete post -discussion_thread_remove_text =Removing this thread leads to deleting all posts this thread contains. -discussion_thread_remove_topic =Delete topic -discussion_topic_deleted =Topic "{0}" was deleted successfully -discussion_topic_readonly =Change -discussion_topic_readonly_false =This thread can be changed. -discussion_topic_readonly_true =This thread is read only. -discussion_topic_readonly_true_simple =This topic is read only. -discussion_topic_subscribe_success =Thread successfully subscribed. -discussion_topic_unsubscribe_success =Thread subscription successfully canceled. -discussion_topic_watch =Change -discussion_topic_watch_false =You don't receive emails on any changes in this topic -discussion_topic_watch_true =You receive emails if a post is added to this thread -discussion_unsubscribe_success =Forum successfully unsubscribed. -discussion_watch_state_header =Notifications -document_addzip_cancel =Cancel -document_addzip_header =Add ZipFile -document_addzip_save =Save -document_file_edit_header =Create / Edit File -document_folder_edit_header =Create / Edit Folder -documentation_headline =OpenUSS User Documentation -documents_actual_path =Current folder -documents_choose_target =Choose target -documents_file =Upload file -documents_file_description_hint =File description -documents_file_not_found =File not found/! -documents_folder_not_a_unique_filename =A file or folder with this name is already existing, please choose a different one. -documents_folder_not_found =Folder not found/! -documents_main_button_change =Change -documents_main_button_delete =Delete -documents_main_button_download =Download Selection -documents_main_button_newfile =Upload new File -documents_main_button_newfolder =New Folder -documents_main_button_zip =Add ZipFile -documents_main_column_actions =Actions -documents_main_column_change =Changed -documents_main_column_create =Create Time -documents_main_column_mark =A -documents_main_column_name =Name -documents_main_column_size =Size -documents_main_column_type =Type -documents_main_header =Documents -documents_message_extr... [truncated message content] |
Revision: 4853 http://openuss.svn.sourceforge.net/openuss/?rev=4853&view=rev Author: idueppe Date: 2008-10-31 12:32:55 +0000 (Fri, 31 Oct 2008) Log Message: ----------- fixed NullPointerException of issue http://teamopenuss.uni-muenster.de/jira/browse/USS-1213 Modified Paths: -------------- branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/java/org/openuss/web/papersubmission/PaperSubmissionViewPage.java Modified: branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/java/org/openuss/web/papersubmission/PaperSubmissionViewPage.java =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/java/org/openuss/web/papersubmission/PaperSubmissionViewPage.java 2008-10-31 12:32:09 UTC (rev 4852) +++ branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/java/org/openuss/web/papersubmission/PaperSubmissionViewPage.java 2008-10-31 12:32:55 UTC (rev 4853) @@ -66,7 +66,7 @@ * @throws Exception */ @SuppressWarnings("unchecked") @Prerender - public void prerender() throws Exception { // NOPMD by Administrator on 13.03.08 12:57 + public void prerender() throws Exception { super.prerender(); refreshExamInfoBean(); refreshPaperInfoBean(); @@ -78,7 +78,7 @@ StringBuilder commentString = new StringBuilder(); List<PaperSubmissionInfo> submissionList = paperSubmissionService.findPaperSubmissionsByExamAndUser(examInfo.getId(), user.getId()); for(PaperSubmissionInfo submission : submissionList){ - if(!submission.getComment().isEmpty()){ + if(StringUtils.isNotEmpty(submission.getComment())){ commentString.append(submission.getComment()); commentString.append("<br/>"); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2008-10-31 12:32:20
|
Revision: 4852 http://openuss.svn.sourceforge.net/openuss/?rev=4852&view=rev Author: idueppe Date: 2008-10-31 12:32:09 +0000 (Fri, 31 Oct 2008) Log Message: ----------- fixed broken image paths Modified Paths: -------------- branches/openuss-plexus-3.1-light/framework/jsfcontrols/src/main/java/org/openuss/framework/jsfcontrols/components/flexlist/UIFlexList.java branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/webapp/css/buttons.css branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/webapp/css/flexlist.css branches/openuss-plexus-3.1-light/src/site/site.xml Modified: branches/openuss-plexus-3.1-light/framework/jsfcontrols/src/main/java/org/openuss/framework/jsfcontrols/components/flexlist/UIFlexList.java =================================================================== --- branches/openuss-plexus-3.1-light/framework/jsfcontrols/src/main/java/org/openuss/framework/jsfcontrols/components/flexlist/UIFlexList.java 2008-10-31 11:52:09 UTC (rev 4851) +++ branches/openuss-plexus-3.1-light/framework/jsfcontrols/src/main/java/org/openuss/framework/jsfcontrols/components/flexlist/UIFlexList.java 2008-10-31 12:32:09 UTC (rev 4852) @@ -40,7 +40,7 @@ writer.startElement("div", this); writer.writeAttribute("class", "flexList" + styleClass, null); - writeHeader(); + writeHeader(context); writeContent(); writer.endElement("div"); @@ -49,7 +49,7 @@ } //TODO remove li-element if css isnt broken afterwards - private void writeHeader() throws IOException { + private void writeHeader(FacesContext context) throws IOException { String title = (String)getAttributes().get("title"); //If title is not set, dont render if (title == null ) return; @@ -75,13 +75,13 @@ writer.writeAttribute("class", "flexListItemLeft", null); writer.startElement("img", this); - writer.writeAttribute("src", "/theme-plexus/img/collapsed_triangle_white.jpg", null); + writer.writeAttribute("src", context.getExternalContext().getRequestContextPath()+"/images/collapsed_triangle_white.jpg", null); if (expanded) writer.writeAttribute("style", "display: none;", null); writer.writeAttribute("id", "flexlist_arrow_collapsed" + this.getId(), null); writer.endElement("img"); writer.startElement("img", this); - writer.writeAttribute("src", "/theme-plexus/img/expanded_triangle_white.jpg", null); + writer.writeAttribute("src", context.getExternalContext().getRequestContextPath()+"/images/expanded_triangle_white.jpg", null); if (!expanded) writer.writeAttribute("style", "display: none;", null); writer.writeAttribute("id", "flexlist_arrow_expanded" + this.getId(), null); writer.endElement("img"); Modified: branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/webapp/css/buttons.css =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/webapp/css/buttons.css 2008-10-31 11:52:09 UTC (rev 4851) +++ branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/webapp/css/buttons.css 2008-10-31 12:32:09 UTC (rev 4852) @@ -14,7 +14,7 @@ a.icon_edit span { background-position: left top; - background-image: url(../img/buttons/edit_icon.png); + background-image: url(../images/buttons/edit_icon.png); background-repeat: no-repeat; display: block; height: 16px; @@ -44,7 +44,7 @@ a.icon_toplist span { background-position: left top; - background-image: url(../img/buttons/toplist_icon.png); + background-image: url(../images/buttons/toplist_icon.png); background-repeat: no-repeat; display: block; height: 16px; @@ -74,7 +74,7 @@ a.icon_settings span { background-position: left top; - background-image: url(../img/buttons/settings_icon.png); + background-image: url(../images/buttons/settings_icon.png); background-repeat: no-repeat; display: block; height: 16px; @@ -104,7 +104,7 @@ a.icon_remove span { background-position: left top; - background-image: url(../img/buttons/delete_icon.png); + background-image: url(../images/buttons/delete_icon.png); background-repeat: no-repeat; display: block; height: 16px; @@ -134,7 +134,7 @@ a.icon_profile span { background-position: left top; - background-image: url(../img/buttons/profile_icon.png); + background-image: url(../images/buttons/profile_icon.png); background-repeat: no-repeat; display: block; height: 16px; @@ -165,7 +165,7 @@ a.icon_bookmark span { background-position: left top; - background-image: url(../img/buttons/bookmark_icon.png); + background-image: url(../images/buttons/bookmark_icon.png); background-repeat: no-repeat; display: block; height: 16px; @@ -195,7 +195,7 @@ a.icon_bookmark_remove span { background-position: left top; - background-image: url(../img/buttons/bookmark_remove_icon.png); + background-image: url(../images/buttons/bookmark_remove_icon.png); background-repeat: no-repeat; display: block; height: 16px; @@ -225,7 +225,7 @@ a.icon_send span { background-position: left top; - background-image: url(../img/buttons/send_icon.png); + background-image: url(../images/buttons/send_icon.png); background-repeat: no-repeat; display: block; height: 16px; @@ -255,7 +255,7 @@ a.icon_sendnow span { background-position: left top; - background-image: url(../img/buttons/send_icon.png); + background-image: url(../images/buttons/send_icon.png); background-repeat: no-repeat; display: block; height: 16px; @@ -285,7 +285,7 @@ a.icon_public span { background-position: left top; - background-image: url(../img/buttons/public_icon.png); + background-image: url(../images/buttons/public_icon.png); background-repeat: no-repeat; display: block; height: 16px; @@ -315,7 +315,7 @@ a.icon_hide span { background-position: left top; - background-image: url(../img/buttons/hide_icon.png); + background-image: url(../images/buttons/hide_icon.png); background-repeat: no-repeat; display: block; height: 16px; @@ -345,7 +345,7 @@ a.icon_move span { background-position: left top; - background-image: url(../img/buttons/move_icon.png); + background-image: url(../images/buttons/move_icon.png); background-repeat: no-repeat; display: block; height: 16px; @@ -375,7 +375,7 @@ a.icon_cancel span { background-position: left top; - background-image: url(../img/buttons/cancel_icon.png); + background-image: url(../images/buttons/cancel_icon.png); background-repeat: no-repeat; display: block; height: 16px; @@ -428,7 +428,7 @@ a.icon_lock span { background-position: left top; - background-image: url(../img/buttons/lock_icon.png); + background-image: url(../images/buttons/lock_icon.png); background-repeat: no-repeat; display: block; height: 16px; @@ -454,7 +454,7 @@ a.icon_unlock span { background-position: left top; - background-image: url(../img/buttons/unlock_icon.png); + background-image: url(../images/buttons/unlock_icon.png); background-repeat: no-repeat; display: block; height: 16px; @@ -480,7 +480,7 @@ a.icon_mark_for_removal span { background-position: left top; - background-image: url(../img/buttons/mark_delete_icon.png); + background-image: url(../images/buttons/mark_delete_icon.png); background-repeat: no-repeat; display: block; height: 16px; @@ -506,7 +506,7 @@ a.icon_recover span { background-position: left top; - background-image: url(../img/buttons/unmark_delete_icon.png); + background-image: url(../images/buttons/unmark_delete_icon.png); background-repeat: no-repeat; display: block; height: 16px; @@ -551,31 +551,31 @@ } .flexListItemRight a.newsletter_subscribed span { - background-image: url(../img/buttons/newsletter_unsubscribe_icon.png); + background-image: url(../images/buttons/newsletter_unsubscribe_icon.png); } .flexListItemRight a.newsletter_notSubscribed span { - background-image: url(../img/buttons/newsletter_subscribe_icon.png); + background-image: url(../images/buttons/newsletter_subscribe_icon.png); } .flexListItemRight span.newsletter_none span { - background-image: url(../img/buttons/newsletter_none_icon.png); + background-image: url(../images/buttons/newsletter_none_icon.png); } .flexListItemRight a.forum_subscribed span { - background-image: url(../img/buttons/forum_unsubscribe_icon.png); + background-image: url(../images/buttons/forum_unsubscribe_icon.png); } .flexListItemRight a.forum_notSubscribed span { - background-image: url(../img/buttons/forum_subscribe_icon.png); + background-image: url(../images/buttons/forum_subscribe_icon.png); } .flexListItemRight span.forum_none span { - background-image: url(../img/buttons/forum_none_icon.png); + background-image: url(../images/buttons/forum_none_icon.png); } .flexListItemRight a.remove_bookmark span { - background-image: url(../img/buttons/bookmark_remove_icon.png); + background-image: url(../images/buttons/bookmark_remove_icon.png); } /*Actionbox*/ @@ -618,139 +618,139 @@ } ul.action_list li.newsletter_subscribe a span{ - background-image:url(../img/buttons/newsletter_subscribe_icon.png); + background-image:url(../images/buttons/newsletter_subscribe_icon.png); } ul.action_list li.newsletter_unsubscribe a span{ - background-image:url(../img/buttons/newsletter_unsubscribe_icon.png); + background-image:url(../images/buttons/newsletter_unsubscribe_icon.png); } ul.action_list li.newsletter_subscriberlist a span { - background-image:url(../img/buttons/personlist_icon.png); + background-image:url(../images/buttons/personlist_icon.png); } ul.action_list li.forum_subscribe a span{ - background-image:url(../img/buttons/forum_subscribe_icon.png); + background-image:url(../images/buttons/forum_subscribe_icon.png); } ul.action_list li.forum_unsubscribe a span{ - background-image:url(../img/buttons/forum_unsubscribe_icon.png); + background-image:url(../images/buttons/forum_unsubscribe_icon.png); } ul.action_list li.forum_lock a span{ - background-image:url(../img/buttons/lock_icon.png); + background-image:url(../images/buttons/lock_icon.png); } ul.action_list li.forum_unlock a span{ - background-image:url(../img/buttons/unlock_icon.png); + background-image:url(../images/buttons/unlock_icon.png); } ul.action_list li.institute_add_bookmark a span{ - background-image:url(../img/buttons/bookmark_icon.png); + background-image:url(../images/buttons/bookmark_icon.png); } ul.action_list li.institute_remove_bookmark a span{ - background-image:url(../img/buttons/bookmark_remove_icon.png); + background-image:url(../images/buttons/bookmark_remove_icon.png); } ul.action_list li.institute_apply_for_membership a span{ - background-image:url(../img/buttons/join_icon.png); + background-image:url(../images/buttons/join_icon.png); } ul.action_list li.topic_subscribe a span{ - background-image:url(../img/buttons/forum_subscribe_icon.png); + background-image:url(../images/buttons/forum_subscribe_icon.png); } ul.action_list li.topic_unsubscribe a span{ - background-image:url(../img/buttons/forum_unsubscribe_icon.png); + background-image:url(../images/buttons/forum_unsubscribe_icon.png); } ul.action_list li.topic_lock a span{ - background-image:url(../img/buttons/lock_icon.png); + background-image:url(../images/buttons/lock_icon.png); } ul.action_list li.topic_unlock a span{ - background-image:url(../img/buttons/unlock_icon.png); + background-image:url(../images/buttons/unlock_icon.png); } ul.action_list li.course_remove_bookmark a span{ - background-image:url(../img/buttons/bookmark_remove_icon.png); + background-image:url(../images/buttons/bookmark_remove_icon.png); } ul.action_list li.course_bookmark a span{ - background-image:url(../img/buttons/bookmark_icon.png); + background-image:url(../images/buttons/bookmark_icon.png); } ul.action_list li.department_bookmark a span{ - background-image:url(../img/buttons/bookmark_icon.png); + background-image:url(../images/buttons/bookmark_icon.png); } ul.action_list li.department_overview_of_all_courses a span{ - background-image:url(../img/buttons/list_icon.png) + background-image:url(../images/buttons/list_icon.png) } ul.action_list li.department_remove_bookmark a span{ - background-image:url(../img/buttons/bookmark_remove_icon.png); + background-image:url(../images/buttons/bookmark_remove_icon.png); } ul.action_list li.register_institute a span{ - background-image:url(../img/buttons/add_institute_icon.png); + background-image:url(../images/buttons/add_institute_icon.png); } ul.action_list li.register_department a span{ - background-image:url(../img/buttons/add_department_icon.png); + background-image:url(../images/buttons/add_department_icon.png); } ul.action_list li.register_university a span{ - background-image:url(../img/buttons/add_university_icon.png); + background-image:url(../images/buttons/add_university_icon.png); } ul.action_list li.webdav_guide a span{ - background-image:url(../img/buttons/webdav_icon.png); + background-image:url(../images/buttons/webdav_icon.png); } ul.action_list li.wiki_create_new a span { - background-image:url(../img/buttons/edit_icon.png); + background-image:url(../images/buttons/edit_icon.png); } ul.action_list li.wiki_overview a span { - background-image:url(../img/buttons/list_icon.png); + background-image:url(../images/buttons/list_icon.png); } ul.action_list li.wiki_versions a span { - background-image:url(../img/buttons/versions_icon.png); + background-image:url(../images/buttons/versions_icon.png); } ul.action_list li.wiki_last_stable a span { - background-image:url(../img/buttons/go_stable_icon.png); + background-image:url(../images/buttons/go_stable_icon.png); } ul.action_list li.wiki_print_preview a span { - background-image:url(../img/buttons/print_preview_icon.png); + background-image:url(../images/buttons/print_preview_icon.png); } ul.action_list li.wiki_lock a span { - background-image:url(../img/buttons/lock_icon.png); + background-image:url(../images/buttons/lock_icon.png); } ul.action_list li.wiki_unlock a span { - background-image:url(../img/buttons/unlock_icon.png); + background-image:url(../images/buttons/unlock_icon.png); } ul.action_list li.wiki_mark_stable a span { - background-image:url(../img/buttons/mark_stable_icon.png); + background-image:url(../images/buttons/mark_stable_icon.png); } ul.action_list li.wiki_unmark_stable a span { - background-image:url(../img/buttons/unmark_stable_icon.png); + background-image:url(../images/buttons/unmark_stable_icon.png); } ul.action_list li.wiki_import a span { - background-image:url(../img/buttons/import_wiki_icon.png); + background-image:url(../images/buttons/import_wiki_icon.png); } ul.action_list li.wiki_recover a span { - background-image:url(../img/buttons/unmark_delete_icon.png); + background-image:url(../images/buttons/unmark_delete_icon.png); } /*Legendbox*/ @@ -771,29 +771,29 @@ } ul.legend_list li.newsletter_none { - background-image:url(../img/capturebox/newsletter_none_icon.png); + background-image:url(../images/capturebox/newsletter_none_icon.png); } ul.legend_list li.newsletter_notSubscribed { - background-image:url(../img/capturebox/newsletter_subscribe_icon.png); + background-image:url(../images/capturebox/newsletter_subscribe_icon.png); } ul.legend_list li.newsletter_subscribed { - background-image:url(../img/capturebox/newsletter_unsubscribe_icon.png); + background-image:url(../images/capturebox/newsletter_unsubscribe_icon.png); } ul.legend_list li.forum_none { - background-image:url(../img/capturebox/forum_none_icon.png); + background-image:url(../images/capturebox/forum_none_icon.png); } ul.legend_list li.forum_notSubscribed { - background-image:url(../img/capturebox/forum_subscribe_icon.png); + background-image:url(../images/capturebox/forum_subscribe_icon.png); } ul.legend_list li.forum_subscribed { - background-image:url(../img/capturebox/forum_unsubscribe_icon.png); + background-image:url(../images/capturebox/forum_unsubscribe_icon.png); } ul.legend_list li.remove_bookmark { - background-image:url(../img/capturebox/bookmark_remove_icon.png); + background-image:url(../images/capturebox/bookmark_remove_icon.png); } \ No newline at end of file Modified: branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/webapp/css/flexlist.css =================================================================== --- branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/webapp/css/flexlist.css 2008-10-31 11:52:09 UTC (rev 4851) +++ branches/openuss-plexus-3.1-light/plexus/plexus-web/src/main/webapp/css/flexlist.css 2008-10-31 12:32:09 UTC (rev 4852) @@ -90,7 +90,7 @@ /* Specific rules for department, institute and course flexlist */ .flexListDepartments .header { - background:url(../img/department_small_flexlist.png) #5493d4 no-repeat center right; + background:url(../images/department_small_flexlist.png) #5493d4 no-repeat center right; } .flexListInstitutions .header { background:url(../images/institution_small_flexlist.png) #5493d4 no-repeat center right; Modified: branches/openuss-plexus-3.1-light/src/site/site.xml =================================================================== --- branches/openuss-plexus-3.1-light/src/site/site.xml 2008-10-31 11:52:09 UTC (rev 4851) +++ branches/openuss-plexus-3.1-light/src/site/site.xml 2008-10-31 12:32:09 UTC (rev 4852) @@ -3,7 +3,7 @@ <version position="left"/> <bannerLeft> <name>OpenUSS Logo</name> - <src>http://www.openuss.de/theme-plexus/img/logo.jpg</src> + <src>http://www.openuss.de/images/logo.jpg</src> <href>http://www.openuss.org</href> </bannerLeft> <body> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2008-10-31 11:54:28
|
Revision: 4847 http://openuss.svn.sourceforge.net/openuss/?rev=4847&view=rev Author: idueppe Date: 2008-10-31 11:42:39 +0000 (Fri, 31 Oct 2008) Log Message: ----------- fixed ignore list Property Changed: ---------------- branches/openuss-plexus-3.1-light/framework/core/ branches/openuss-plexus-3.1-light/framework/jsfcontrols/ branches/openuss-plexus-3.1-light/framework/tests/ branches/openuss-plexus-3.1-light/framework/tools/ branches/openuss-plexus-3.1-light/framework/utilities/ branches/openuss-plexus-3.1-light/framework/webdav/ branches/openuss-plexus-3.1-light/framework/wtp-facelets-hack/ branches/openuss-plexus-3.1-light/openformula/formula-editor/ Property changes on: branches/openuss-plexus-3.1-light/framework/core ___________________________________________________________________ Added: svn:ignore + .classpath .project Property changes on: branches/openuss-plexus-3.1-light/framework/jsfcontrols ___________________________________________________________________ Added: svn:ignore + .project .classpath Property changes on: branches/openuss-plexus-3.1-light/framework/tests ___________________________________________________________________ Added: svn:ignore + .classpath .project Property changes on: branches/openuss-plexus-3.1-light/framework/tools ___________________________________________________________________ Added: svn:ignore + .project .classpath Property changes on: branches/openuss-plexus-3.1-light/framework/utilities ___________________________________________________________________ Added: svn:ignore + .project .classpath Property changes on: branches/openuss-plexus-3.1-light/framework/webdav ___________________________________________________________________ Added: svn:ignore + .project .classpath Property changes on: branches/openuss-plexus-3.1-light/framework/wtp-facelets-hack ___________________________________________________________________ Added: svn:ignore + .project .classpath Property changes on: branches/openuss-plexus-3.1-light/openformula/formula-editor ___________________________________________________________________ Added: svn:ignore + .classpath .project This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2008-10-31 11:54:26
|
Revision: 4848 http://openuss.svn.sourceforge.net/openuss/?rev=4848&view=rev Author: idueppe Date: 2008-10-31 11:43:05 +0000 (Fri, 31 Oct 2008) Log Message: ----------- Property Changed: ---------------- branches/openuss-plexus-3.1-light/openformula/formula-web/ branches/openuss-plexus-3.1-light/plexus/plexus-api/ branches/openuss-plexus-3.1-light/plexus/plexus-core/ branches/openuss-plexus-3.1-light/plexus/plexus-remote/ branches/openuss-plexus-3.1-light/plexus/plexus-web/ Property changes on: branches/openuss-plexus-3.1-light/openformula/formula-web ___________________________________________________________________ Added: svn:ignore + .project .classpath Property changes on: branches/openuss-plexus-3.1-light/plexus/plexus-api ___________________________________________________________________ Added: svn:ignore + .project .classpath Property changes on: branches/openuss-plexus-3.1-light/plexus/plexus-core ___________________________________________________________________ Added: svn:ignore + .project .classpath Property changes on: branches/openuss-plexus-3.1-light/plexus/plexus-remote ___________________________________________________________________ Added: svn:ignore + .classpath .project Property changes on: branches/openuss-plexus-3.1-light/plexus/plexus-web ___________________________________________________________________ Added: svn:ignore + .classpath .project This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2008-10-31 11:54:17
|
Revision: 4849 http://openuss.svn.sourceforge.net/openuss/?rev=4849&view=rev Author: idueppe Date: 2008-10-31 11:43:44 +0000 (Fri, 31 Oct 2008) Log Message: ----------- Property Changed: ---------------- branches/openuss-plexus-3.1-light/documentation/src/ Property changes on: branches/openuss-plexus-3.1-light/documentation/src ___________________________________________________________________ Added: svn:ignore + manual-german.docx This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2008-10-31 11:54:14
|
Revision: 4850 http://openuss.svn.sourceforge.net/openuss/?rev=4850&view=rev Author: idueppe Date: 2008-10-31 11:49:34 +0000 (Fri, 31 Oct 2008) Log Message: ----------- removed not intended files Removed Paths: ------------- branches/openuss-plexus-3.1-light/openformula/formula-jsf/velocity.log branches/openuss-plexus-3.1-light/openformula/formula-jsf/velocity.log.1 Property Changed: ---------------- branches/openuss-plexus-3.1-light/openformula/formula-jsf/ Property changes on: branches/openuss-plexus-3.1-light/openformula/formula-jsf ___________________________________________________________________ Added: svn:ignore + .project .classpath Deleted: branches/openuss-plexus-3.1-light/openformula/formula-jsf/velocity.log =================================================================== --- branches/openuss-plexus-3.1-light/openformula/formula-jsf/velocity.log 2008-10-31 11:43:44 UTC (rev 4849) +++ branches/openuss-plexus-3.1-light/openformula/formula-jsf/velocity.log 2008-10-31 11:49:34 UTC (rev 4850) @@ -1,414 +0,0 @@ -2008-10-23 12:10:48,229 - Log4JLogChute initialized using file 'velocity.log' -2008-10-23 12:10:48,229 - Starting Apache Velocity v1.5 (compiled: 2007-02-22 08:52:29) -2008-10-23 12:10:48,229 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties -2008-10-23 12:10:48,229 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute -2008-10-23 12:10:48,229 - Couldn't find class org.apache.velocity.runtime.log.AvalonLogChute or necessary supporting classes in classpath. -java.lang.NoClassDefFoundError: org/apache/log/format/Formatter - at java.lang.Class.forName0(Native Method) - at java.lang.Class.forName(Class.java:247) - at org.apache.velocity.util.ClassUtils.getClass(ClassUtils.java:63) - at org.apache.velocity.util.ClassUtils.getNewInstance(ClassUtils.java:95) - at org.apache.velocity.runtime.log.LogManager.createLogChute(LogManager.java:147) - at org.apache.velocity.runtime.log.LogManager.updateLog(LogManager.java:208) - at org.apache.velocity.runtime.RuntimeInstance.initializeLog(RuntimeInstance.java:728) - at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:240) - at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:534) - at org.apache.velocity.runtime.RuntimeSingleton.init(RuntimeSingleton.java:227) - at org.apache.velocity.app.Velocity.init(Velocity.java:111) - at org.openuss.openformula.component.formula.EditorRenderer.<init>(EditorRenderer.java:39) - at org.openuss.openformula.component.formula.EditorRendererTest.setUp(EditorRendererTest.java:34) - at junit.framework.TestCase.runBare(TestCase.java:128) - at junit.framework.TestResult$1.protect(TestResult.java:106) - at junit.framework.TestResult.runProtected(TestResult.java:124) - at junit.framework.TestResult.run(TestResult.java:109) - at junit.framework.TestCase.run(TestCase.java:120) - at junit.framework.TestSuite.runTest(TestSuite.java:230) - at junit.framework.TestSuite.run(TestSuite.java:225) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) - at java.lang.reflect.Method.invoke(Method.java:597) - at org.apache.maven.surefire.junit.JUnitTestSet.execute(JUnitTestSet.java:213) - at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:140) - at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:127) - at org.apache.maven.surefire.Surefire.run(Surefire.java:177) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) - at java.lang.reflect.Method.invoke(Method.java:597) - at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:338) - at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:997) -Caused by: java.lang.ClassNotFoundException: org.apache.log.format.Formatter - at java.net.URLClassLoader$1.run(URLClassLoader.java:200) - at java.security.AccessController.doPrivileged(Native Method) - at java.net.URLClassLoader.findClass(URLClassLoader.java:188) - at java.lang.ClassLoader.loadClass(ClassLoader.java:306) - at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276) - at java.lang.ClassLoader.loadClass(ClassLoader.java:251) - at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) - ... 34 more -2008-10-23 12:10:48,245 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute -2008-10-23 12:10:48,245 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute -2008-10-23 12:10:48,245 - Default ResourceManager initializing. (class org.apache.velocity.runtime.resource.ResourceManagerImpl) -2008-10-23 12:10:48,245 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.FileResourceLoader -2008-10-23 12:10:48,245 - Do unicode file recognition: false -2008-10-23 12:10:48,245 - FileResourceLoader : adding path 'd:/development/workspaces/plexus-branches/openuss-plexus-3.1/openformula/formula-jsf/src/main/resources' -2008-10-23 12:10:48,260 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) -2008-10-23 12:10:48,260 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal -2008-10-23 12:10:48,260 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro -2008-10-23 12:10:48,260 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse -2008-10-23 12:10:48,276 - Loaded System Directive: org.apache.velocity.runtime.directive.Include -2008-10-23 12:10:48,276 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach -2008-10-23 12:10:48,307 - Created '20' parsers. -2008-10-23 12:10:48,323 - Velocimacro : "velocimacro.library" is not set. Trying default library: VM_global_library.vm -2008-10-23 12:10:48,323 - Velocimacro : Default library not found. -2008-10-23 12:10:48,323 - Velocimacro : allowInline = true : VMs can be defined inline in templates -2008-10-23 12:10:48,323 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions -2008-10-23 12:10:48,323 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed. -2008-10-23 12:10:48,323 - Velocimacro : autoload off : VM system will not automatically reload global library macros -2008-10-23 12:10:48,354 - ResourceManager : found templates/editor.vsl with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader -2008-10-23 12:56:17,804 - Log4JLogChute initialized using file 'velocity.log' -2008-10-23 12:56:17,851 - Starting Apache Velocity v1.5 (compiled: 2007-02-22 08:52:29) -2008-10-23 12:56:17,851 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties -2008-10-23 12:56:17,851 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute -2008-10-23 12:56:17,851 - Couldn't find class org.apache.velocity.runtime.log.AvalonLogChute or necessary supporting classes in classpath. -java.lang.NoClassDefFoundError: org/apache/log/format/Formatter - at java.lang.Class.forName0(Native Method) - at java.lang.Class.forName(Class.java:247) - at org.apache.velocity.util.ClassUtils.getClass(ClassUtils.java:63) - at org.apache.velocity.util.ClassUtils.getNewInstance(ClassUtils.java:95) - at org.apache.velocity.runtime.log.LogManager.createLogChute(LogManager.java:147) - at org.apache.velocity.runtime.log.LogManager.updateLog(LogManager.java:208) - at org.apache.velocity.runtime.RuntimeInstance.initializeLog(RuntimeInstance.java:728) - at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:240) - at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:534) - at org.apache.velocity.runtime.RuntimeSingleton.init(RuntimeSingleton.java:227) - at org.apache.velocity.app.Velocity.init(Velocity.java:111) - at org.openuss.openformula.component.formula.EditorRenderer.<init>(EditorRenderer.java:39) - at org.openuss.openformula.component.formula.EditorRendererTest.setUp(EditorRendererTest.java:34) - at junit.framework.TestCase.runBare(TestCase.java:128) - at junit.framework.TestResult$1.protect(TestResult.java:106) - at junit.framework.TestResult.runProtected(TestResult.java:124) - at junit.framework.TestResult.run(TestResult.java:109) - at junit.framework.TestCase.run(TestCase.java:120) - at junit.framework.TestSuite.runTest(TestSuite.java:230) - at junit.framework.TestSuite.run(TestSuite.java:225) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) - at java.lang.reflect.Method.invoke(Method.java:597) - at org.apache.maven.surefire.junit.JUnitTestSet.execute(JUnitTestSet.java:213) - at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:140) - at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:127) - at org.apache.maven.surefire.Surefire.run(Surefire.java:177) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) - at java.lang.reflect.Method.invoke(Method.java:597) - at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:338) - at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:997) -Caused by: java.lang.ClassNotFoundException: org.apache.log.format.Formatter - at java.net.URLClassLoader$1.run(URLClassLoader.java:200) - at java.security.AccessController.doPrivileged(Native Method) - at java.net.URLClassLoader.findClass(URLClassLoader.java:188) - at java.lang.ClassLoader.loadClass(ClassLoader.java:306) - at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276) - at java.lang.ClassLoader.loadClass(ClassLoader.java:251) - at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) - ... 34 more -2008-10-23 12:56:17,851 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute -2008-10-23 12:56:17,851 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute -2008-10-23 12:56:17,851 - Default ResourceManager initializing. (class org.apache.velocity.runtime.resource.ResourceManagerImpl) -2008-10-23 12:56:17,866 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.FileResourceLoader -2008-10-23 12:56:17,866 - Do unicode file recognition: false -2008-10-23 12:56:17,866 - FileResourceLoader : adding path 'd:/development/workspaces/plexus-branches/openuss-plexus-3.1/openformula/formula-jsf/src/main/resources' -2008-10-23 12:56:17,882 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) -2008-10-23 12:56:17,882 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal -2008-10-23 12:56:17,882 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro -2008-10-23 12:56:17,882 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse -2008-10-23 12:56:17,882 - Loaded System Directive: org.apache.velocity.runtime.directive.Include -2008-10-23 12:56:17,882 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach -2008-10-23 12:56:17,929 - Created '20' parsers. -2008-10-23 12:56:17,929 - Velocimacro : "velocimacro.library" is not set. Trying default library: VM_global_library.vm -2008-10-23 12:56:17,929 - Velocimacro : Default library not found. -2008-10-23 12:56:17,929 - Velocimacro : allowInline = true : VMs can be defined inline in templates -2008-10-23 12:56:17,929 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions -2008-10-23 12:56:17,929 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed. -2008-10-23 12:56:17,929 - Velocimacro : autoload off : VM system will not automatically reload global library macros -2008-10-23 12:56:17,960 - ResourceManager : found templates/editor.vsl with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader -2008-10-23 13:09:46,410 - Log4JLogChute initialized using file 'velocity.log' -2008-10-23 13:09:46,410 - Starting Apache Velocity v1.5 (compiled: 2007-02-22 08:52:29) -2008-10-23 13:09:46,410 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties -2008-10-23 13:09:46,410 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute -2008-10-23 13:09:46,410 - Couldn't find class org.apache.velocity.runtime.log.AvalonLogChute or necessary supporting classes in classpath. -java.lang.NoClassDefFoundError: org/apache/log/format/Formatter - at java.lang.Class.forName0(Native Method) - at java.lang.Class.forName(Class.java:247) - at org.apache.velocity.util.ClassUtils.getClass(ClassUtils.java:63) - at org.apache.velocity.util.ClassUtils.getNewInstance(ClassUtils.java:95) - at org.apache.velocity.runtime.log.LogManager.createLogChute(LogManager.java:147) - at org.apache.velocity.runtime.log.LogManager.updateLog(LogManager.java:208) - at org.apache.velocity.runtime.RuntimeInstance.initializeLog(RuntimeInstance.java:728) - at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:240) - at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:534) - at org.apache.velocity.runtime.RuntimeSingleton.init(RuntimeSingleton.java:227) - at org.apache.velocity.app.Velocity.init(Velocity.java:111) - at org.openuss.openformula.component.formula.EditorRenderer.<init>(EditorRenderer.java:39) - at org.openuss.openformula.component.formula.EditorRendererTest.setUp(EditorRendererTest.java:34) - at junit.framework.TestCase.runBare(TestCase.java:128) - at junit.framework.TestResult$1.protect(TestResult.java:106) - at junit.framework.TestResult.runProtected(TestResult.java:124) - at junit.framework.TestResult.run(TestResult.java:109) - at junit.framework.TestCase.run(TestCase.java:120) - at junit.framework.TestSuite.runTest(TestSuite.java:230) - at junit.framework.TestSuite.run(TestSuite.java:225) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) - at java.lang.reflect.Method.invoke(Method.java:597) - at org.apache.maven.surefire.junit.JUnitTestSet.execute(JUnitTestSet.java:213) - at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:140) - at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:127) - at org.apache.maven.surefire.Surefire.run(Surefire.java:177) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) - at java.lang.reflect.Method.invoke(Method.java:597) - at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:338) - at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:997) -Caused by: java.lang.ClassNotFoundException: org.apache.log.format.Formatter - at java.net.URLClassLoader$1.run(URLClassLoader.java:200) - at java.security.AccessController.doPrivileged(Native Method) - at java.net.URLClassLoader.findClass(URLClassLoader.java:188) - at java.lang.ClassLoader.loadClass(ClassLoader.java:306) - at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276) - at java.lang.ClassLoader.loadClass(ClassLoader.java:251) - at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) - ... 34 more -2008-10-23 13:09:46,410 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute -2008-10-23 13:09:46,410 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute -2008-10-23 13:09:46,410 - Default ResourceManager initializing. (class org.apache.velocity.runtime.resource.ResourceManagerImpl) -2008-10-23 13:09:46,410 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.FileResourceLoader -2008-10-23 13:09:46,410 - Do unicode file recognition: false -2008-10-23 13:09:46,410 - FileResourceLoader : adding path 'd:/development/workspaces/plexus-branches/openuss-plexus-3.1/openformula/formula-jsf/src/main/resources' -2008-10-23 13:09:46,425 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) -2008-10-23 13:09:46,425 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal -2008-10-23 13:09:46,441 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro -2008-10-23 13:09:46,441 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse -2008-10-23 13:09:46,441 - Loaded System Directive: org.apache.velocity.runtime.directive.Include -2008-10-23 13:09:46,441 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach -2008-10-23 13:09:46,472 - Created '20' parsers. -2008-10-23 13:09:46,488 - Velocimacro : "velocimacro.library" is not set. Trying default library: VM_global_library.vm -2008-10-23 13:09:46,488 - Velocimacro : Default library not found. -2008-10-23 13:09:46,488 - Velocimacro : allowInline = true : VMs can be defined inline in templates -2008-10-23 13:09:46,488 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions -2008-10-23 13:09:46,488 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed. -2008-10-23 13:09:46,488 - Velocimacro : autoload off : VM system will not automatically reload global library macros -2008-10-23 13:09:46,503 - ResourceManager : found templates/editor.vsl with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader -2008-10-24 10:00:03,920 - Log4JLogChute initialized using file 'velocity.log' -2008-10-24 10:00:03,936 - Starting Apache Velocity v1.5 (compiled: 2007-02-22 08:52:29) -2008-10-24 10:00:03,936 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties -2008-10-24 10:00:03,936 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute -2008-10-24 10:00:03,936 - Couldn't find class org.apache.velocity.runtime.log.AvalonLogChute or necessary supporting classes in classpath. -java.lang.NoClassDefFoundError: org/apache/log/format/Formatter - at java.lang.Class.forName0(Native Method) - at java.lang.Class.forName(Class.java:247) - at org.apache.velocity.util.ClassUtils.getClass(ClassUtils.java:63) - at org.apache.velocity.util.ClassUtils.getNewInstance(ClassUtils.java:95) - at org.apache.velocity.runtime.log.LogManager.createLogChute(LogManager.java:147) - at org.apache.velocity.runtime.log.LogManager.updateLog(LogManager.java:208) - at org.apache.velocity.runtime.RuntimeInstance.initializeLog(RuntimeInstance.java:728) - at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:240) - at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:534) - at org.apache.velocity.runtime.RuntimeSingleton.init(RuntimeSingleton.java:227) - at org.apache.velocity.app.Velocity.init(Velocity.java:111) - at org.openuss.openformula.component.formula.EditorRenderer.<init>(EditorRenderer.java:39) - at org.openuss.openformula.component.formula.EditorRendererTest.setUp(EditorRendererTest.java:34) - at junit.framework.TestCase.runBare(TestCase.java:128) - at junit.framework.TestResult$1.protect(TestResult.java:106) - at junit.framework.TestResult.runProtected(TestResult.java:124) - at junit.framework.TestResult.run(TestResult.java:109) - at junit.framework.TestCase.run(TestCase.java:120) - at junit.framework.TestSuite.runTest(TestSuite.java:230) - at junit.framework.TestSuite.run(TestSuite.java:225) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) - at java.lang.reflect.Method.invoke(Method.java:597) - at org.apache.maven.surefire.junit.JUnitTestSet.execute(JUnitTestSet.java:213) - at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:140) - at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:127) - at org.apache.maven.surefire.Surefire.run(Surefire.java:177) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) - at java.lang.reflect.Method.invoke(Method.java:597) - at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:338) - at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:997) -Caused by: java.lang.ClassNotFoundException: org.apache.log.format.Formatter - at java.net.URLClassLoader$1.run(URLClassLoader.java:200) - at java.security.AccessController.doPrivileged(Native Method) - at java.net.URLClassLoader.findClass(URLClassLoader.java:188) - at java.lang.ClassLoader.loadClass(ClassLoader.java:306) - at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276) - at java.lang.ClassLoader.loadClass(ClassLoader.java:251) - at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) - ... 34 more -2008-10-24 10:00:03,936 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute -2008-10-24 10:00:03,936 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute -2008-10-24 10:00:03,951 - Default ResourceManager initializing. (class org.apache.velocity.runtime.resource.ResourceManagerImpl) -2008-10-24 10:00:03,951 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.FileResourceLoader -2008-10-24 10:00:03,951 - Do unicode file recognition: false -2008-10-24 10:00:03,951 - FileResourceLoader : adding path 'd:/development/workspaces/plexus-branches/openuss-plexus-3.1/openformula/formula-jsf/src/main/resources' -2008-10-24 10:00:03,967 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) -2008-10-24 10:00:03,967 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal -2008-10-24 10:00:03,967 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro -2008-10-24 10:00:03,967 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse -2008-10-24 10:00:03,967 - Loaded System Directive: org.apache.velocity.runtime.directive.Include -2008-10-24 10:00:03,967 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach -2008-10-24 10:00:04,014 - Created '20' parsers. -2008-10-24 10:00:04,014 - Velocimacro : "velocimacro.library" is not set. Trying default library: VM_global_library.vm -2008-10-24 10:00:04,014 - Velocimacro : Default library not found. -2008-10-24 10:00:04,014 - Velocimacro : allowInline = true : VMs can be defined inline in templates -2008-10-24 10:00:04,014 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions -2008-10-24 10:00:04,014 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed. -2008-10-24 10:00:04,014 - Velocimacro : autoload off : VM system will not automatically reload global library macros -2008-10-24 10:00:04,076 - ResourceManager : found templates/editor.vsl with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader -2008-10-24 11:41:36,729 - Log4JLogChute initialized using file 'velocity.log' -2008-10-24 11:41:36,744 - Starting Apache Velocity v1.5 (compiled: 2007-02-22 08:52:29) -2008-10-24 11:41:36,744 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties -2008-10-24 11:41:36,744 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute -2008-10-24 11:41:36,744 - Couldn't find class org.apache.velocity.runtime.log.AvalonLogChute or necessary supporting classes in classpath. -java.lang.NoClassDefFoundError: org/apache/log/format/Formatter - at java.lang.Class.forName0(Native Method) - at java.lang.Class.forName(Class.java:247) - at org.apache.velocity.util.ClassUtils.getClass(ClassUtils.java:63) - at org.apache.velocity.util.ClassUtils.getNewInstance(ClassUtils.java:95) - at org.apache.velocity.runtime.log.LogManager.createLogChute(LogManager.java:147) - at org.apache.velocity.runtime.log.LogManager.updateLog(LogManager.java:208) - at org.apache.velocity.runtime.RuntimeInstance.initializeLog(RuntimeInstance.java:728) - at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:240) - at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:534) - at org.apache.velocity.runtime.RuntimeSingleton.init(RuntimeSingleton.java:227) - at org.apache.velocity.app.Velocity.init(Velocity.java:111) - at org.openuss.openformula.component.formula.EditorRenderer.<init>(EditorRenderer.java:39) - at org.openuss.openformula.component.formula.EditorRendererTest.setUp(EditorRendererTest.java:34) - at junit.framework.TestCase.runBare(TestCase.java:128) - at junit.framework.TestResult$1.protect(TestResult.java:106) - at junit.framework.TestResult.runProtected(TestResult.java:124) - at junit.framework.TestResult.run(TestResult.java:109) - at junit.framework.TestCase.run(TestCase.java:120) - at junit.framework.TestSuite.runTest(TestSuite.java:230) - at junit.framework.TestSuite.run(TestSuite.java:225) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) - at java.lang.reflect.Method.invoke(Method.java:597) - at org.apache.maven.surefire.junit.JUnitTestSet.execute(JUnitTestSet.java:213) - at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:140) - at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:127) - at org.apache.maven.surefire.Surefire.run(Surefire.java:177) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) - at java.lang.reflect.Method.invoke(Method.java:597) - at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:338) - at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:997) -Caused by: java.lang.ClassNotFoundException: org.apache.log.format.Formatter - at java.net.URLClassLoader$1.run(URLClassLoader.java:200) - at java.security.AccessController.doPrivileged(Native Method) - at java.net.URLClassLoader.findClass(URLClassLoader.java:188) - at java.lang.ClassLoader.loadClass(ClassLoader.java:306) - at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276) - at java.lang.ClassLoader.loadClass(ClassLoader.java:251) - at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) - ... 34 more -2008-10-24 11:41:36,744 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute -2008-10-24 11:41:36,744 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute -2008-10-24 11:41:36,744 - Default ResourceManager initializing. (class org.apache.velocity.runtime.resource.ResourceManagerImpl) -2008-10-24 11:41:36,760 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.FileResourceLoader -2008-10-24 11:41:36,760 - Do unicode file recognition: false -2008-10-24 11:41:36,760 - FileResourceLoader : adding path 'd:/development/workspaces/plexus-branches/openuss-plexus-3.1/openformula/formula-jsf/src/main/resources' -2008-10-24 11:41:36,775 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) -2008-10-24 11:41:36,775 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal -2008-10-24 11:41:36,775 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro -2008-10-24 11:41:36,775 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse -2008-10-24 11:41:36,775 - Loaded System Directive: org.apache.velocity.runtime.directive.Include -2008-10-24 11:41:36,775 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach -2008-10-24 11:41:36,822 - Created '20' parsers. -2008-10-24 11:41:36,822 - Velocimacro : "velocimacro.library" is not set. Trying default library: VM_global_library.vm -2008-10-24 11:41:36,853 - Velocimacro : Default library not found. -2008-10-24 11:41:36,853 - Velocimacro : allowInline = true : VMs can be defined inline in templates -2008-10-24 11:41:36,853 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions -2008-10-24 11:41:36,853 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed. -2008-10-24 11:41:36,853 - Velocimacro : autoload off : VM system will not automatically reload global library macros -2008-10-24 11:41:36,885 - ResourceManager : found templates/editor.vsl with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader -2008-10-25 11:23:37,620 - Log4JLogChute initialized using file 'velocity.log' -2008-10-25 11:23:37,651 - Starting Apache Velocity v1.5 (compiled: 2007-02-22 08:52:29) -2008-10-25 11:23:37,651 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties -2008-10-25 11:23:37,651 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute -2008-10-25 11:23:37,667 - Couldn't find class org.apache.velocity.runtime.log.AvalonLogChute or necessary supporting classes in classpath. -java.lang.NoClassDefFoundError: org/apache/log/format/Formatter - at java.lang.Class.forName0(Native Method) - at java.lang.Class.forName(Class.java:247) - at org.apache.velocity.util.ClassUtils.getClass(ClassUtils.java:63) - at org.apache.velocity.util.ClassUtils.getNewInstance(ClassUtils.java:95) - at org.apache.velocity.runtime.log.LogManager.createLogChute(LogManager.java:147) - at org.apache.velocity.runtime.log.LogManager.updateLog(LogManager.java:208) - at org.apache.velocity.runtime.RuntimeInstance.initializeLog(RuntimeInstance.java:728) - at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:240) - at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:534) - at org.apache.velocity.runtime.RuntimeSingleton.init(RuntimeSingleton.java:227) - at org.apache.velocity.app.Velocity.init(Velocity.java:111) - at org.openuss.openformula.component.formula.EditorRenderer.<init>(EditorRenderer.java:39) - at org.openuss.openformula.component.formula.EditorRendererTest.setUp(EditorRendererTest.java:34) - at junit.framework.TestCase.runBare(TestCase.java:128) - at junit.framework.TestResult$1.protect(TestResult.java:106) - at junit.framework.TestResult.runProtected(TestResult.java:124) - at junit.framework.TestResult.run(TestResult.java:109) - at junit.framework.TestCase.run(TestCase.java:120) - at junit.framework.TestSuite.runTest(TestSuite.java:230) - at junit.framework.TestSuite.run(TestSuite.java:225) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) - at java.lang.reflect.Method.invoke(Method.java:597) - at org.apache.maven.surefire.junit.JUnitTestSet.execute(JUnitTestSet.java:213) - at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:140) - at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:127) - at org.apache.maven.surefire.Surefire.run(Surefire.java:177) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) - at java.lang.reflect.Method.invoke(Method.java:597) - at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:338) - at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:997) -Caused by: java.lang.ClassNotFoundException: org.apache.log.format.Formatter - at java.net.URLClassLoader$1.run(URLClassLoader.java:200) - at java.security.AccessController.doPrivileged(Native Method) - at java.net.URLClassLoader.findClass(URLClassLoader.java:188) - at java.lang.ClassLoader.loadClass(ClassLoader.java:306) - at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276) - at java.lang.ClassLoader.loadClass(ClassLoader.java:251) - at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) - ... 34 more -2008-10-25 11:23:37,667 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute -2008-10-25 11:23:37,667 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute -2008-10-25 11:23:37,667 - Default ResourceManager initializing. (class org.apache.velocity.runtime.resource.ResourceManagerImpl) -2008-10-25 11:23:37,667 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.FileResourceLoader -2008-10-25 11:23:37,667 - Do unicode file recognition: false -2008-10-25 11:23:37,667 - FileResourceLoader : adding path 'd:/development/workspaces/plexus-branches/openuss-plexus-3.1/openformula/formula-jsf/src/main/resources' -2008-10-25 11:23:37,682 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) -2008-10-25 11:23:37,698 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal -2008-10-25 11:23:37,698 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro -2008-10-25 11:23:37,698 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse -2008-10-25 11:23:37,698 - Loaded System Directive: org.apache.velocity.runtime.directive.Include -2008-10-25 11:23:37,698 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach -2008-10-25 11:23:37,729 - Created '20' parsers. -2008-10-25 11:23:37,745 - Velocimacro : "velocimacro.library" is not set. Trying default library: VM_global_library.vm -2008-10-25 11:23:37,791 - Velocimacro : Default library not found. -2008-10-25 11:23:37,791 - Velocimacro : allowInline = true : VMs can be defined inline in templates -2008-10-25 11:23:37,791 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions -2008-10-25 11:23:37,791 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed. -2008-10-25 11:23:37,791 - Velocimacro : autoload off : VM system will not automatically reload global library macros -2008-10-25 11:23:37,823 - ResourceManager : found templates/editor.vsl with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader Deleted: branches/openuss-plexus-3.1-light/openformula/formula-jsf/velocity.log.1 =================================================================== --- branches/openuss-plexus-3.1-light/openformula/formula-jsf/velocity.log.1 2008-10-31 11:43:44 UTC (rev 4849) +++ branches/openuss-plexus-3.1-light/openformula/formula-jsf/velocity.log.1 2008-10-31 11:49:34 UTC (rev 4850) @@ -1,1222 +0,0 @@ -2008-08-14 19:45:29,202 - Log4JLogChute initialized using file 'velocity.log' -2008-08-14 19:45:29,202 - Starting Apache Velocity v1.5 (compiled: 2007-02-22 08:52:29) -2008-08-14 19:45:29,202 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties -2008-08-14 19:45:29,202 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute -2008-08-14 19:45:29,204 - Couldn't find class org.apache.velocity.runtime.log.AvalonLogChute or necessary supporting classes in classpath. -java.lang.NoClassDefFoundError: org/apache/log/format/Formatter - at java.lang.Class.forName0(Native Method) - at java.lang.Class.forName(Class.java:247) - at org.apache.velocity.util.ClassUtils.getClass(ClassUtils.java:63) - at org.apache.velocity.util.ClassUtils.getNewInstance(ClassUtils.java:95) - at org.apache.velocity.runtime.log.LogManager.createLogChute(LogManager.java:147) - at org.apache.velocity.runtime.log.LogManager.updateLog(LogManager.java:208) - at org.apache.velocity.runtime.RuntimeInstance.initializeLog(RuntimeInstance.java:728) - at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:240) - at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:534) - at org.apache.velocity.runtime.RuntimeSingleton.init(RuntimeSingleton.java:227) - at org.apache.velocity.app.Velocity.init(Velocity.java:111) - at org.openuss.openformula.component.formula.EditorRenderer.<init>(EditorRenderer.java:39) - at org.openuss.openformula.component.formula.EditorRendererTest.setUp(EditorRendererTest.java:34) - at junit.framework.TestCase.runBare(TestCase.java:128) - at junit.framework.TestResult$1.protect(TestResult.java:106) - at junit.framework.TestResult.runProtected(TestResult.java:124) - at junit.framework.TestResult.run(TestResult.java:109) - at junit.framework.TestCase.run(TestCase.java:120) - at junit.framework.TestSuite.runTest(TestSuite.java:230) - at junit.framework.TestSuite.run(TestSuite.java:225) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) - at java.lang.reflect.Method.invoke(Method.java:597) - at org.apache.maven.surefire.junit.JUnitTestSet.execute(JUnitTestSet.java:213) - at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:140) - at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:127) - at org.apache.maven.surefire.Surefire.run(Surefire.java:177) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) - at java.lang.reflect.Method.invoke(Method.java:597) - at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:338) - at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:997) -Caused by: java.lang.ClassNotFoundException: org.apache.log.format.Formatter - at java.net.URLClassLoader$1.run(URLClassLoader.java:200) - at java.security.AccessController.doPrivileged(Native Method) - at java.net.URLClassLoader.findClass(URLClassLoader.java:188) - at java.lang.ClassLoader.loadClass(ClassLoader.java:306) - at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276) - at java.lang.ClassLoader.loadClass(ClassLoader.java:251) - at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) - ... 34 more -2008-08-14 19:45:29,206 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute -2008-08-14 19:45:29,206 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute -2008-08-14 19:45:29,209 - Default ResourceManager initializing. (class org.apache.velocity.runtime.resource.ResourceManagerImpl) -2008-08-14 19:45:29,213 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.FileResourceLoader -2008-08-14 19:45:29,215 - Do unicode file recognition: false -2008-08-14 19:45:29,215 - FileResourceLoader : adding path 'd:/development/workspaces/plexus-branches/openuss-plexus-3.1/openformula/formula-jsf/src/main/resources' -2008-08-14 19:45:29,234 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) -2008-08-14 19:45:29,235 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal -2008-08-14 19:45:29,237 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro -2008-08-14 19:45:29,240 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse -2008-08-14 19:45:29,242 - Loaded System Directive: org.apache.velocity.runtime.directive.Include -2008-08-14 19:45:29,243 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach -2008-08-14 19:45:29,290 - Created '20' parsers. -2008-08-14 19:45:29,299 - Velocimacro : "velocimacro.library" is not set. Trying default library: VM_global_library.vm -2008-08-14 19:45:29,299 - Velocimacro : Default library not found. -2008-08-14 19:45:29,299 - Velocimacro : allowInline = true : VMs can be defined inline in templates -2008-08-14 19:45:29,299 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions -2008-08-14 19:45:29,299 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed. -2008-08-14 19:45:29,299 - Velocimacro : autoload off : VM system will not automatically reload global library macros -2008-08-14 19:45:29,325 - ResourceManager : found templates/editor.vsl with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader -2008-08-14 19:50:48,637 - Log4JLogChute initialized using file 'velocity.log' -2008-08-14 19:50:48,658 - Starting Apache Velocity v1.5 (compiled: 2007-02-22 08:52:29) -2008-08-14 19:50:48,658 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties -2008-08-14 19:50:48,659 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute -2008-08-14 19:50:48,660 - Couldn't find class org.apache.velocity.runtime.log.AvalonLogChute or necessary supporting classes in classpath. -java.lang.NoClassDefFoundError: org/apache/log/format/Formatter - at java.lang.Class.forName0(Native Method) - at java.lang.Class.forName(Class.java:247) - at org.apache.velocity.util.ClassUtils.getClass(ClassUtils.java:63) - at org.apache.velocity.util.ClassUtils.getNewInstance(ClassUtils.java:95) - at org.apache.velocity.runtime.log.LogManager.createLogChute(LogManager.java:147) - at org.apache.velocity.runtime.log.LogManager.updateLog(LogManager.java:208) - at org.apache.velocity.runtime.RuntimeInstance.initializeLog(RuntimeInstance.java:728) - at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:240) - at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:534) - at org.apache.velocity.runtime.RuntimeSingleton.init(RuntimeSingleton.java:227) - at org.apache.velocity.app.Velocity.init(Velocity.java:111) - at org.openuss.openformula.component.formula.EditorRenderer.<init>(EditorRenderer.java:39) - at org.openuss.openformula.component.formula.EditorRendererTest.setUp(EditorRendererTest.java:34) - at junit.framework.TestCase.runBare(TestCase.java:128) - at junit.framework.TestResult$1.protect(TestResult.java:106) - at junit.framework.TestResult.runProtected(TestResult.java:124) - at junit.framework.TestResult.run(TestResult.java:109) - at junit.framework.TestCase.run(TestCase.java:120) - at junit.framework.TestSuite.runTest(TestSuite.java:230) - at junit.framework.TestSuite.run(TestSuite.java:225) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) - at java.lang.reflect.Method.invoke(Method.java:597) - at org.apache.maven.surefire.junit.JUnitTestSet.execute(JUnitTestSet.java:213) - at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:140) - at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:127) - at org.apache.maven.surefire.Surefire.run(Surefire.java:177) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) - at java.lang.reflect.Method.invoke(Method.java:597) - at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:338) - at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:997) -Caused by: java.lang.ClassNotFoundException: org.apache.log.format.Formatter - at java.net.URLClassLoader$1.run(URLClassLoader.java:200) - at java.security.AccessController.doPrivileged(Native Method) - at java.net.URLClassLoader.findClass(URLClassLoader.java:188) - at java.lang.ClassLoader.loadClass(ClassLoader.java:306) - at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276) - at java.lang.ClassLoader.loadClass(ClassLoader.java:251) - at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) - ... 34 more -2008-08-14 19:50:48,662 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute -2008-08-14 19:50:48,662 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute -2008-08-14 19:50:48,665 - Default ResourceManager initializing. (class org.apache.velocity.runtime.resource.ResourceManagerImpl) -2008-08-14 19:50:48,668 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.FileResourceLoader -2008-08-14 19:50:48,669 - Do unicode file recognition: false -2008-08-14 19:50:48,669 - FileResourceLoader : adding path 'd:/development/workspaces/plexus-branches/openuss-plexus-3.1/openformula/formula-jsf/src/main/resources' -2008-08-14 19:50:48,686 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) -2008-08-14 19:50:48,687 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal -2008-08-14 19:50:48,689 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro -2008-08-14 19:50:48,690 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse -2008-08-14 19:50:48,692 - Loaded System Directive: org.apache.velocity.runtime.directive.Include -2008-08-14 19:50:48,693 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach -2008-08-14 19:50:48,731 - Created '20' parsers. -2008-08-14 19:50:48,738 - Velocimacro : "velocimacro.library" is not set. Trying default library: VM_global_library.vm -2008-08-14 19:50:48,739 - Velocimacro : Default library not found. -2008-08-14 19:50:48,739 - Velocimacro : allowInline = true : VMs can be defined inline in templates -2008-08-14 19:50:48,739 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions -2008-08-14 19:50:48,739 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed. -2008-08-14 19:50:48,739 - Velocimacro : autoload off : VM system will not automatically reload global library macros -2008-08-14 19:50:48,756 - ResourceManager : found templates/editor.vsl with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader -2008-08-14 19:56:09,564 - Log4JLogChute initialized using file 'velocity.log' -2008-08-14 19:56:09,579 - Starting Apache Velocity v1.5 (compiled: 2007-02-22 08:52:29) -2008-08-14 19:56:09,579 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties -2008-08-14 19:56:09,579 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute -2008-08-14 19:56:09,580 - Couldn't find class org.apache.velocity.runtime.log.AvalonLogChute or necessary supporting classes in classpath. -java.lang.NoClassDefFoundError: org/apache/log/format/Formatter - at java.lang.Class.forName0(Native Method) - at java.lang.Class.forName(Class.java:247) - at org.apache.velocity.util.ClassUtils.getClass(ClassUtils.java:63) - at org.apache.velocity.util.ClassUtils.getNewInstance(ClassUtils.java:95) - at org.apache.velocity.runtime.log.LogManager.createLogChute(LogManager.java:147) - at org.apache.velocity.runtime.log.LogManager.updateLog(LogManager.java:208) - at org.apache.velocity.runtime.RuntimeInstance.initializeLog(RuntimeInstance.java:728) - at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:240) - at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:534) - at org.apache.velocity.runtime.RuntimeSingleton.init(RuntimeSingleton.java:227) - at org.apache.velocity.app.Velocity.init(Velocity.java:111) - at org.openuss.openformula.component.formula.EditorRenderer.<init>(EditorRenderer.java:39) - at org.openuss.openformula.component.formula.EditorRendererTest.setUp(EditorRendererTest.java:34) - at junit.framework.TestCase.runBare(TestCase.java:128) - at junit.framework.TestResult$1.protect(TestResult.java:106) - at junit.framework.TestResult.runProtected(TestResult.java:124) - at junit.framework.TestResult.run(TestResult.java:109) - at junit.framework.TestCase.run(TestCase.java:120) - at junit.framework.TestSuite.runTest(TestSuite.java:230) - at junit.framework.TestSuite.run(TestSuite.java:225) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) - at java.lang.reflect.Method.invoke(Method.java:597) - at org.apache.maven.surefire.junit.JUnitTestSet.execute(JUnitTestSet.java:213) - at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:140) - at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:127) - at org.apache.maven.surefire.Surefire.run(Surefire.java:177) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) - at java.lang.reflect.Method.invoke(Method.java:597) - at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:338) - at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:997) -Caused by: java.lang.ClassNotFoundException: org.apache.log.format.Formatter - at java.net.URLClassLoader$1.run(URLClassLoader.java:200) - at java.security.AccessController.doPrivileged(Native Method) - at java.net.URLClassLoader.findClass(URLClassLoader.java:188) - at java.lang.ClassLoader.loadClass(ClassLoader.java:306) - at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276) - at java.lang.ClassLoader.loadClass(ClassLoader.java:251) - at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) - ... 34 more -2008-08-14 19:56:09,586 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute -2008-08-14 19:56:09,586 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute -2008-08-14 19:56:09,589 - Default ResourceManager initializing. (class org.apache.velocity.runtime.resource.ResourceManagerImpl) -2008-08-14 19:56:09,593 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.FileResourceLoader -2008-08-14 19:56:09,594 - Do unicode file recognition: false -2008-08-14 19:56:09,594 - FileResourceLoader : adding path 'd:/development/workspaces/plexus-branches/openuss-plexus-3.1/openformula/formula-jsf/src/main/resources' -2008-08-14 19:56:09,612 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) -2008-08-14 19:56:09,613 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal -2008-08-14 19:56:09,615 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro -2008-08-14 19:56:09,616 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse -2008-08-14 19:56:09,618 - Loaded System Directive: org.apache.velocity.runtime.directive.Include -2008-08-14 19:56:09,619 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach -2008-08-14 19:56:09,660 - Created '20' parsers. -2008-08-14 19:56:09,668 - Velocimacro : "velocimacro.library" is not set. Trying default library: VM_global_library.vm -2008-08-14 19:56:09,669 - Velocimacro : Default library not found. -2008-08-14 19:56:09,669 - Velocimacro : allowInline = true : VMs can be defined inline in templates -2008-08-14 19:56:09,669 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions -2008-08-14 19:56:09,669 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed. -2008-08-14 19:56:09,669 - Velocimacro : autoload off : VM system will not automatically reload global library macros -2008-08-14 19:56:09,696 - ResourceManager : found templates/editor.vsl with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader -2008-08-14 19:59:34,562 - Log4JLogChute initialized using file 'velocity.log' -2008-08-14 19:59:34,563 - Starting Apache Velocity v1.5 (compiled: 2007-02-22 08:52:29) -2008-08-14 19:59:34,563 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties -2008-08-14 19:59:34,563 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute -2008-08-14 19:59:34,565 - Couldn't find class org.apache.velocity.runtime.log.AvalonLogChute or necessary supporting classes in classpath. -java.lang.NoClassDefFoundError: org/apache/log/format/Formatter - at java.lang.Class.forName0(Native Method) - at java.lang.Class.forName(Class.java:247) - at org.apache.velocity.util.ClassUtils.getClass(ClassUtils.java:63) - at org.apache.velocity.util.ClassUtils.getNewInstance(ClassUtils.java:95) - at org.apache.velocity.runtime.log.LogManager.createLogChute(LogManager.java:147) - at org.apache.velocity.runtime.log.LogManager.updateLog(LogManager.java:208) - at org.apache.velocity.runtime.RuntimeInstance.initializeLog(RuntimeInstance.java:728) - at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:240) - at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:534) - at org.apache.velocity.runtime.RuntimeSingleton.init(RuntimeSingleton.java:227) - at org.apache.velocity.app.Velocity.init(Velocity.java:111) - at org.openuss.openformula.component.formula.EditorRenderer.<init>(EditorRenderer.java:39) - at org.openuss.openformula.component.formula.EditorRendererTest.setUp(EditorRendererTest.java:34) - at junit.framework.TestCase.runBare(TestCase.java:128) - at junit.framework.TestResult$1.protect(TestResult.java:106) - at junit.framework.TestResult.runProtected(TestResult.java:124) - at junit.framework.TestResult.run(TestResult.java:109) - at junit.framework.TestCase.run(TestCase.java:120) - at junit.framework.TestSuite.runTest(TestSuite.java:230) - at junit.framework.TestSuite.run(TestSuite.java:225) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) - at java.lang.reflect.Method.invoke(Method.java:597) - at org.apache.maven.surefire.junit.JUnitTestSet.execute(JUnitTestSet.java:213) - at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:140) - at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:127) - at org.apache.maven.surefire.Surefire.run(Surefire.java:177) - at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) - at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) - at java.lang.reflect.Method.invoke(Method.java:597) - at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:338) - at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:997) -Caused by: java.lang.ClassNotFoundException: org.apache.log.format.Formatter - at java.net.URLClassLoader$1.run(URLClassLoader.java:200) - at java.security.AccessController.doPrivileged(Native Method) - at java.net.URLClassLoader.findClass(URLClassLoader.java:188) - at java.lang.ClassLoader.loadClass(ClassLoader.java:306) - at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276) - at java.lang.ClassLoader.loadClass(ClassLoader.java:251) - at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319) - ... 34 more -2008-08-14 19:59:34,572 - Trying to use logger class org.apache.velocity.runtime.log.Log4JLogChute -2008-08-14 19:59:34,572 - Using logger class org.apache.velocity.runtime.log.Log4JLogChute -2008-08-14 19:59:34,575 - Default ResourceManager initializing. (class org.apache.velocity.runtime.resource.ResourceManagerImpl) -2008-08-14 19:59:34,581 - ResourceLoader instantiated: org.apache.velocity.runtime.resource.loader.FileResourceLoader -2008-08-14 19:59:34,583 - Do unicode file recognition: false -2008-08-14 19:59:34,583 - FileResourceLoader : adding path 'd:/development/workspaces/plexus-branches/openuss-plexus-3.1/openformula/formula-jsf/src/main/resources' -2008-08-14 19:59:34,606 - ResourceCache: initialized (class org.apache.velocity.runtime.resource.ResourceCacheImpl) -2008-08-14 19:59:34,608 - Loaded System Directive: org.apache.velocity.runtime.directive.Literal -2008-08-14 19:59:34,611 - Loaded System Directive: org.apache.velocity.runtime.directive.Macro -2008-08-14 19:59:34,613 - Loaded System Directive: org.apache.velocity.runtime.directive.Parse -2008-08-14 19:59:34,616 - Loaded System Directive: org.apache.velocity.runtime.directive.Include -2008-08-14 19:59:34,617 - Loaded System Directive: org.apache.velocity.runtime.directive.Foreach -2008-08-14 19:59:34,670 - Created '20' parsers. -2008-08-14 19:59:34,680 - Velocimacro : "velocimacro.library" is not set. Trying default library: VM_global_library.vm -2008-08-14 19:59:34,680 - Velocimacro : Default library not found. -2008-08-14 19:59:34,680 - Velocimacro : allowInline = true : VMs can be defined inline in templates -2008-08-14 19:59:34,680 - Velocimacro : allowInlineToOverride = false : VMs defined inline may NOT replace previous VM definitions -2008-08-14 19:59:34,680 - Velocimacro : allowInlineLocal = false : VMs defined inline will be global in scope if allowed. -2008-08-14 19:59:34,680 - Velocimacro : autoload off : VM system will not automatically reload global library macros -2008-08-14 19:59:34,733 - ResourceManager : found templates/editor.vsl with loader org.apache.velocity.runtime.resource.loader.FileResourceLoader -2008-08-14 20:02:38,016 - Log4JLogChute initialized using file 'velocity.log' -2008-08-14 20:02:38,016 - Starting Apache Velocity v1.5 (compiled: 2007-02-22 08:52:29) -2008-08-14 20:02:38,016 - Default Properties File: org\apache\velocity\runtime\defaults\velocity.properties -2008-08-14 20:02:38,016 - Trying to use logger class org.apache.velocity.runtime.log.AvalonLogChute -2008-08-14 20:02:38,017 - Couldn't find class org.apache.velocity.runtime.log.AvalonLogChute or necessary supporting classes in classpath. -java.lang.NoClassDefFoundError: org/apache/log/format/Formatter - at java.lang.Class.forName0(Native Method) - at java.lang.Class.forName(Class.java:247) - at org.apache.velocity.util.ClassUtils.getClass(ClassUtils.java:63) - at org.apache.velocity.util.ClassUtils.getNewInstance(ClassUtils.java:95) - at org.apache.velocity.runtime.log.LogManager.createLogChute(LogManager.java:147) - at org.apache.velocity.runtime.log.LogManager.updateLog(LogManager.java:208) - at org.apache.velocity.runtime.RuntimeInstance.initializeLog(RuntimeInstance.java:728) - at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:240) - at org.apache.velocity.runtime.RuntimeInstance.init(RuntimeInstance.java:534) - at org.apache.velocity.runtime.RuntimeSingleton.init(RuntimeSingleton.java:227) - at org.apache.velocity.app.Velocity.init(Velocity.java:111) - at org.openuss.openformula.component.formula.EditorRenderer.<init>(EditorRenderer.java:39) - at org.open... [truncated message content] |
From: <id...@us...> - 2008-10-31 11:54:11
|
Revision: 4851 http://openuss.svn.sourceforge.net/openuss/?rev=4851&view=rev Author: idueppe Date: 2008-10-31 11:52:09 +0000 (Fri, 31 Oct 2008) Log Message: ----------- removed not intended files Removed Paths: ------------- branches/openuss-plexus-3.1-light/framework/core/src/main/java/META-INF/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2008-10-31 07:09:38
|
Revision: 4846 http://openuss.svn.sourceforge.net/openuss/?rev=4846&view=rev Author: idueppe Date: 2008-10-31 07:09:37 +0000 (Fri, 31 Oct 2008) Log Message: ----------- removed not intended folders. Removed Paths: ------------- branches/openuss-plexus-3.1-light/trunk/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2008-10-31 07:07:47
|
Revision: 4845 http://openuss.svn.sourceforge.net/openuss/?rev=4845&view=rev Author: idueppe Date: 2008-10-31 07:07:39 +0000 (Fri, 31 Oct 2008) Log Message: ----------- fixed pom.xml Modified Paths: -------------- branches/openuss-plexus-3.1-light/openformula/formula-jsf/pom.xml Modified: branches/openuss-plexus-3.1-light/openformula/formula-jsf/pom.xml =================================================================== --- branches/openuss-plexus-3.1-light/openformula/formula-jsf/pom.xml 2008-10-30 17:50:09 UTC (rev 4844) +++ branches/openuss-plexus-3.1-light/openformula/formula-jsf/pom.xml 2008-10-31 07:07:39 UTC (rev 4845) @@ -10,9 +10,9 @@ <version>3.1-SNAPSHOT</version> </parent> - <artifactId>OpenFormula - formula-jsf</artifactId> + <artifactId>formula-jsf</artifactId> <packaging>jar</packaging> - <name>OpenUSS OpenFormula JSF-Component</name> + <name>OpenFormula - formula-jsf</name> <description> This is the OpenFormula JSF-Component This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ro...@us...> - 2008-10-30 17:50:23
|
Revision: 4844 http://openuss.svn.sourceforge.net/openuss/?rev=4844&view=rev Author: roekens Date: 2008-10-30 17:50:09 +0000 (Thu, 30 Oct 2008) Log Message: ----------- fixed resource property files Modified Paths: -------------- branches/openuss-plexus-3.1/plexus/plexus-web/src/main/resources/resources.properties branches/openuss-plexus-3.1/plexus/plexus-web/src/main/resources/resources_de.properties Modified: branches/openuss-plexus-3.1/plexus/plexus-web/src/main/resources/resources.properties =================================================================== --- branches/openuss-plexus-3.1/plexus/plexus-web/src/main/resources/resources.properties 2008-10-30 07:30:06 UTC (rev 4843) +++ branches/openuss-plexus-3.1/plexus/plexus-web/src/main/resources/resources.properties 2008-10-30 17:50:09 UTC (rev 4844) @@ -1,2000 +1,2070 @@ -MYUNI_INSITUTE_COURSECOUNT_STRING =Current courses -MYUNI_INSITUTE_COURSECOUNT_STRING_SINGULAR =Current course -activation_error_code_expired =Your activation code has expired. -activation_error_code_not_found =The activation code is invalid, please request a new one. -admin_command_departments =Departments -admin_command_groups =Groups -admin_command_institutes =Institutes -admin_command_ldap_index =LDAP Configuration -admin_command_properties =System Settings -admin_command_universities =Universities -admin_command_users =Users -admin_groups_colheader_label =Label -admin_groups_colheader_name =Name -admin_groups_colheader_password =Password -admin_groups_colheader_userdefined =User-defined -admin_lectureindex_recreate =Recreate lecture index -admin_lectureindex_recreated_success =Index of lecture search successfully recreated -admin_navigation_header =Administration -admin_properties_colheader_name =Parameter -admin_properties_colheader_value =Value -admin_properties_edit =Edit properties -admin_properties_heading =System properties -admin_properties_saved_success =System properties successfully saved. -admin_users_colheader_credentials_expired =Password expired -admin_users_colheader_email =E-Mail -admin_users_colheader_enabled =Enabled -admin_users_colheader_expired =Expired -admin_users_colheader_firstname =First name -admin_users_colheader_lastlogin =last login -admin_users_colheader_lastname =Last name -admin_users_colheader_locked =Locked -admin_users_colheader_username =User name -admin_users_heading =Users -all_active_periods =- ALL ACTIVE COURSES - -all_periods =- ALL COURSES - -application_accept_info =--- The application request has been accepted -application_applied_date =application date -application_confirmed =confirmed -application_confirmed_yes =Yes -application_confirmes_no =No -application_pending_info =The application for {0} is still pending. -application_pending_responsible_info =Please contact the responsible of the department, {0}, for further information. -application_username =application submitted by -attachment_delete =Remove -attachment_delete_hint =Remove attachment -attributemappinginfo_emailkey =Mapping emailkey -attributemappinginfo_emailkey_hint =Enter the attributemapping's emailkey -attributemappinginfo_firstnamekey =Mapping firstnamekey -attributemappinginfo_firstnamekey_hint =Enter the attributemapping's firstnamekey -attributemappinginfo_grouproleattributekey =Mapping grouproleattributekey -attributemappinginfo_grouproleattributekey_hint =Enter the grouproleattributekey's name -attributemappinginfo_lastnamekey =Mapping lastnamekey -attributemappinginfo_lastnamekey_hint =Enter the attributemapping's lastnamekey -attributemappinginfo_mappingname =AttributeMapping name -attributemappinginfo_mappingname_hint =Enter the AttributeMapping's name -attributemappinginfo_usernamekey =Mapping usernamekey -attributemappinginfo_usernamekey_hint =Enter the attributemapping's usernamekey -auth_message_error_removed_member =The last member must not be removed! -authentication_error_account_deleted =Your account is deleted. Please contact an administrator. -authentication_error_account_disabled =Your account is not activated yet. -authentication_error_account_expired =Your account has expired. -authentication_error_account_locked =Your account is locked. -authentication_error_account_notfound =Combination of username and password is unknown. -authentication_error_password_expired =Your password has expired. -authentication_error_password_mismatch =Combination of user name and password is unknown. -authentication_error_required =This page requires authentification. -authenticationcontroller_password_hint =Enter your password here. -authenticationcontroller_username_hint =Please enter your username. -authenticationdomaininfo_changepasswordurl =changePasswordUrl -authenticationdomaininfo_changepasswordurl_hint =Enter an URL where the user can change her central user password . -authenticationdomaininfo_name =Name of domain -authenticationdomaininfo_name_hint =Enter the AuthenticationDomain's name -autogroup_administrator_label =Administrator -autogroup_assistant_label =Assistants -autogroup_tutor_label =Tutor -back =Back -braincontest_add_attachment =Attach -braincontest_answer_answer =Answer -braincontest_answer_answer_hint =Please enter your answer here. -braincontest_answer_toplist =Add to Ranking -braincontest_answer_toplist_hint =Please choose, if you want to be added to the top list. -braincontest_attachment =Attachment -braincontest_cancel =Cancel -braincontest_confirm_delete_post =Should this quiz really be deleted? -braincontest_contest_releasedate =Release Date -braincontest_contest_releasedate_hint =Please enter the date, when the quiz should be released. -braincontest_contest_solution =Solution -braincontest_contest_solution_hint =Please enter your solution here. -braincontest_contest_title =Title -braincontest_contest_title_hint =Please enter quiz title here. -braincontest_description =Description -braincontest_main_button_change =Edit -braincontest_main_button_edit =Edit -braincontest_main_button_remove =Delete -braincontest_main_button_solve =Solve -braincontest_main_button_top =Winners -braincontest_main_column_actions =Actions -braincontest_main_column_answers =Answers -braincontest_main_column_date =Date -braincontest_main_column_title =Title -braincontest_main_deleted =The quiz {0} was deleted successfully. -braincontest_main_header =Quiz -braincontest_message_contest_not_found =This quiz does not exist. -braincontest_message_contest_not_released =This quiz has not been released yet. -braincontest_message_created =New quiz was created. -braincontest_message_saved =Quiz changes saved. -braincontest_message_user_correct_answer =You have already entered a correct answer. -braincontest_new =New Quiz -braincontest_result_button_solve =Try again -braincontest_result_header =Result -braincontest_result_right =Congratulations\! Your answer is correct\! -braincontest_result_wrong =Your answer was wrong, do you want to try again? -braincontest_save =Save -braincontest_solve_answer =Submit -braincontest_solve_header =Quiz -braincontest_toplist_header =Winners -braincontest_toplist_rank =Rank -braincontest_toplist_time =Time -braincontest_toplist_user =User -braincontestanswer_addtotoplist =Add to Winners List -braincontestanswer_answer =Answer -cancel =Cancel -cancel_hint =Cancel operation -chat_command_send =Send -chat_message =Message -chat_messages =Messages -chat_rooms_create =Create -chat_rooms_create_hint =Create a new chat room with the given topic -chat_rooms_delete =Delete -chat_rooms_delete_hint =Delete chat room with all messages. -chat_rooms_enter =Enter chatroom. -chat_rooms_messages =Number of Messages -chat_rooms_onlineusers =Number of Users -chat_rooms_subheading =Chatrooms -chat_rooms_topic =Topic of chatroom -chat_rooms_topics =Topics -chat_userlist =Users -chatservice_chatroom_created =Chatroom successfully created. -chatservice_user_enter_message =User {0} has enter the chatroom. -chatservice_user_leave_message =User {0} has left the chatroom. -collaboration_colheader_name =Name -collaboration_command_add_workspace =Add Workspace -collaboration_command_add_workspace_hint =Add a new workspace. -collaboration_command_edit_file =Edit File -collaboration_command_edit_file_hint =Edit File -collaboration_command_edit_workspace =Edit Workspace -collaboration_command_edit_workspace_hint =Edit this workspace. -collaboration_command_remove_file =Remove File -collaboration_command_remove_file_hint =Remove File -collaboration_command_remove_workspace =Remove Workspace -collaboration_command_remove_workspace_hint =Remove this Workspace -collaboration_error_cannot_be_removed =Workspace cannot be removed. -collaboration_error_workspace_not_found =The workspace could not be found. -collaboration_main_header =Workspaces -collaboration_main_info =What are Workspaces? -collaboration_main_info_detail =In a Workspace you can work together with your fellow students. <br />Everybody can download files, but you can also create folders, upload files and delete them. -collaboration_member_firstname =First Name -collaboration_member_lastname =Last Name -collaboration_member_username =Username -collaboration_message_add_workspace_succeed =Adding workspace succeeded. -collaboration_message_persist_workspace_succeed =Storing workspace succeeded. -collaboration_selected_file_description =Description -collaboration_selected_file_description_hint =Please enter description here. -collaboration_selected_file_filename =Filename -collaboration_selected_file_filename_hint =Additionally you can define a alternative filename for the downloaded file. -collaboration_selected_file_hint =This name will be displayed on the web page -collaboration_selected_file_name =Name -collaboration_selected_file_name_hint =This name will be displayed on the web page -collaboration_selected_folder_description =Description -collaboration_selected_folder_description_hint =Please enter description here. -collaboration_selected_folder_name =Name -collaboration_selected_folder_name_hint =Please enter name here. -collaboration_workspace_header =Workspace -collaboration_workspace_main_header =Workspace -collaboration_workspace_members_header =Members -collaboration_workspace_remove_confirmation_flag =Yes, do remove the workspace and all paper data. -collaboration_workspace_remove_header =Removing a workspace -collaboration_workspace_remove_text =Do you really want to remove the following workspace and the related data permanently? -collaboration_workspace_removed_succeed =Removing workspace succeeded. -collaboration_workspacelist_header =Workspaces -collaboration_workspacetable_header =Workspaces -commands_header =Actions -controls_language_label =Language: -controls_option_label =Options: -controls_theme_label =Design: -controls_timezone_label =Time zone -course_aspirant_accepted =Aspirant has been accepted. -course_aspirant_reject =Application successfully rejected. -course_aspirants_aspire =Application -course_assistants_add =Add -course_assistants_add_hint =Adds the user to the table of lecturers. -course_assistants_admin =Admin -course_assistants_assist =Assist -course_assistants_delete =Remove -course_assistants_delete_hint =Remove -course_assistants_select =Please choose... -course_assistants_select_error =No assistant selected! -course_assistants_suspend =Suspend -course_braincontest =Quiz -course_braincontest_hint =Quiz -course_chat =Chat -course_chat_hint =Chat -course_colheader_edit =Options -course_colheader_name =Name (Shortcut) -course_colheader_period =Period -course_colheader_remove =Remove -course_colheader_shortcut =Link -course_command_add_institute_member =Members of the institute -course_command_add_user_as_assistant =Enter a username or a email address -course_command_add_user_as_assistant_hint =Enter a username or a email address to add a user as an assistant of the course. -course_command_chat =Chat -course_command_collaboration =Workspaces -course_command_disable =Disable -course_command_disable_hint =Disables the selected course. -course_command_discussion =Discussion -course_command_documents =Materials -course_command_edit =Edit -course_command_edit_hint =Edit course options -course_command_enable =Enable -course_command_enable_hint =Enables the selected course. -course_command_main =Course -course_command_move =Move -course_command_move_hint =Move course to a different period. -course_command_newsletter =Newsletter -course_command_newslettersubscribers =Subscribers -course_command_options =Administration -course_command_options_aspirants =Aspirants -course_command_options_assistants =Assistants -course_command_options_config =Settings -course_command_options_news =News -course_command_options_participants =Participants -course_command_overview =Overview -course_command_papersubmission =Papersubmission -course_command_quiz =Quiz -course_command_remove =Remove -course_command_remove_hint =Remove this course and all associated courses (incl. all data) -course_command_shortcut =Link -course_command_shortcut_end =End Membership -course_command_shortcut_hint =Creates a bookmark of this course on your My Uni page. -course_command_shortcut_hint_remove =Removes a bookmark for a course on My Uni page. -course_command_shortcut_remove =Remove Bookmark -course_command_wiki =Wiki -course_count_header =Number of courses -course_coursetype_name =Course -course_description =Description -course_discussion =Discussion -course_discussion_hint =Discussion -course_documents =Lecture materials -course_documents_hint =Enables to provide lecture materials in this course -course_freestylelearning =FreeStyleLearning -course_freestylelearning_hint =FreeStyleLearning -course_header =Courses of {0} -course_info =Courses realize course types for a certain time period. Therefore, assigning at least one time period to a course type is necessary to make a course accessible for students. -course_info_head =What are courses? -course_main_access =Login -course_main_access_application_running =Your application is pending -course_main_access_applybutton =Apply -course_main_access_applytext =You have to apply for this course, do you want to apply now? -course_main_access_closed_text =This course is temporary closed -course_main_access_openbutton =Approve -course_main_access_opentext =You have to approve your participation. After approval, you will be accepted as a participant of this course and get full access to course information. -course_main_access_passtext =Please enter the password for this course. -course_main_access_password =Password -course_main_assistants =Assistant -course_main_overview_allcourses_department =Courses of department -course_main_overview_allcourses_period =in period\: -course_main_title =Course -course_maintitle =Course main page - Openuss -course_member_active =Active Participation -course_member_readonly =Read only -course_member_suspend =Suspended -course_members_command_head =Add assistants to course -course_members_delete =Remove -course_members_delete_hint =Removes user from the member list -course_navigation_allcoursesbydepartment_link =Show all courses by department -course_navigation_header =Course menu -course_newsletter =Newsletter -course_newsletter_hint =Newsletter -course_newsletter_subscriber_export_comma_list_header =List of subscribers separated by comma -course_newsletter_subscriber_export_semicolon_list_header =List of subscribers separated by semicolon -course_options_access_anonymous =Anonymous access -course_options_access_anonymous_short =Anonym -course_options_access_application =Accept students manually -course_options_access_application_short =Manual acception -course_options_access_closed =Block area. Access is restricted to members of the institute. -course_options_access_closed_short =Blocked -course_options_access_headline =Access control -course_options_access_open =Open -course_options_access_open_short =Open -course_options_access_password =Closed with course password -course_options_access_password_short =Password -course_options_features_headline =Features -course_options_header =Course settings -course_options_headline =Course -course_options_text =This course can be opened for all students or closed to a group of students, who has to apply for the access first. <br/> If this course is only for a closed group, you have to accept or reject the application from the students. In addition you can define a password for this course to automate the acception of applications. <br/> <br/> You can enable or disable the functionality of the course. -course_password =Password -course_password_hint =Define a course password -course_remove_confirmation_flag =Yes, do remove the course and all course data. -course_remove_header =Removing a course -course_remove_text =Do you really want to remove the following course and the related data permanently? -course_shortcut =Shortcut -course_shortcut_hint =Define a shortcut for this course for quicker access. -course_success_remove_shortcut =Course participance deleted. -course_type_remove_header =Removing a course in ALL periods -course_type_remove_text =Do you really want to remove the following courses in ALL periods and the related data permanently? -course_wiki =Wiki -course_wiki_hint =Wiki -courseinfo_braincontest =Quiz -courseinfo_braincontest_hint =Quiz -courseinfo_chat =Chat -courseinfo_chat_hint =Chat -courseinfo_collaboration =Workspaces -courseinfo_discussion =Discussion -courseinfo_discussion_hint =Enables the opportunity of a discussion within in the course -courseinfo_documents =Lecture materials -courseinfo_documents_hint =Enables to provide lecture materials in this course -courseinfo_freestylelearning =FreeStyleLearning -courseinfo_freestylelearning_hint =FreeStyleLearning -courseinfo_newsletter =Newsletter -courseinfo_newsletter_hint =Newsletter -courseinfo_papersubmission =Papersubmission -courseinfo_password =Password -courseinfo_password_hint =Define a course password -courseinfo_shortcut =Shortcut -courseinfo_shortcut_hint =Define a shortcut for this course for quicker access. -courseinfo_wiki =Wiki -coursenews_confirm_delete =Do you really want to delete this news entry? -coursenews_saved =News entry successfully saved. -courseoptionsinfo_braincontest =Quiz -courseoptionsinfo_braincontest_hint =Quiz -courseoptionsinfo_chat =Chat -courseoptionsinfo_chat_hint =Chat -courseoptionsinfo_collaboration =Workspaces -courseoptionsinfo_collaboration_hint =Workspaces -courseoptionsinfo_discussion =Discussion -courseoptionsinfo_discussion_hint =Enables the opportunity of a discussion within in the course -courseoptionsinfo_documents =Lecture materials -courseoptionsinfo_documents_hint =Enables to provide lecture materials in this course -courseoptionsinfo_freestylelearning =FreeStyleLearning -courseoptionsinfo_freestylelearning_hint =FreeStyleLearning -courseoptionsinfo_newsletter =Newsletter -courseoptionsinfo_newsletter_hint =Newsletter -courseoptionsinfo_papersubmission =Papersubmission -courseoptionsinfo_papersubmission_hint =Papersubmission -courseoptionsinfo_password =Password -courseoptionsinfo_password_hint =Define a course password -courseoptionsinfo_shortcut =Shortcut -courseoptionsinfo_shortcut_hint =Define a shortcut for this course for quicker access. -courseoptionsinfo_wiki =Wiki -courseoptionsinfo_wiki_hint =Wiki -coursetype_colheader_edit =Edit -coursetype_colheader_name =Name (Shortcut) -coursetype_colheader_remove =Remove -coursetype_colheader_shortcut =Link -coursetype_colheader_shortcut_hint =A link to that course is added to your desktop. -coursetype_command_add =Add course type -coursetype_command_add_hint =Add a new course type to the institute -coursetype_command_assign_to_period =Assign to period -coursetype_command_assign_to_period_hint =Assign the selected course to a period -coursetype_command_edit =Edit -coursetype_command_edit_hint =Edit the course type. -coursetype_command_remove =Remove -coursetype_command_remove_hint =Remove course in all semesters -coursetype_command_shortcut =Link -coursetype_command_shortcut_link =Create a link to this course on your desktop -coursetype_coursetypestable_header =Course types -coursetype_description =Description -coursetype_description_hint =Please enter here additional information for the course -coursetype_header =Course -coursetype_info =A course type is a description for a course. There can be many courses of one certain type, but only one for each time period. -coursetype_info_head =What are course types? -coursetype_instantiate =Also create the first course of this type in the following period: -coursetype_instantiate_info =If this box is not checked, only the course type will be saved. You are able to create a course of this type later on using 'periods' in the navigation bar. -coursetype_name =Name -coursetype_name_hint =Please enter the name of the course here -coursetype_preferences_periods =Choose the period you want to assign to the course -coursetype_remove_confirmation_flag =Yes, please remove the course and all course data permanently -coursetype_remove_header =Deleting a course -coursetype_remove_text_part_1 =Do you really want to remove the following course -coursetype_remove_text_part_2 =in all semesters -coursetype_remove_text_part_3 =irretrievably? -coursetype_save_and_configure =Save and configure -coursetype_save_info =After creating a course you have to configure the access control and the range of functions. If the course is saved with standard configuration it will only be accessible by institute members. -coursetype_shortcut =Shortcut -coursetype_shortcut_hint =Please enter here a shortcut for this course. -coursetypeinfo_description =Description -coursetypeinfo_description_hint =Please enter here additional descriptions of the course -coursetypeinfo_name =Name -coursetypeinfo_name_hint =Please enter here the name of the course -coursetypeinfo_shortcut =Shortcut -coursetypeinfo_shortcut_hint =Please enter here a unique shortcut for this course. -default_department_donot_delete =Default department: Cannot be deleted! -default_period_donot_delete =Default period: Cannot be deleted! -delete_error_code_not_found =The submitted code to delete a user could not be found. -delete_error_code_expired =The submitted code to delete a user expired. -department =Department -departmentList_header =Departments -department_add_member_to_department =Add user {0} to department administrators. -department_auth_members_colheader_groups =Groups -department_auth_message_removed_member =User {0} from department administrators list removed. -department_command_add_department =Add department -department_command_add_department_hint =Add a new department -department_command_aspirants =Aspirants -department_command_authorisations =Authorisations -department_command_department =Settings -department_command_disable =Disable -department_command_disable_hint =Disables the selected department -department_command_edit =Edit -department_command_enable =Enable -department_command_enable_hint =Enables the selected department -department_command_institutes =Institutes -department_command_main =Department -department_command_members =Members -department_command_overview_shortcut =Add bookmark -department_command_remove =Remove -department_command_remove_hint =Delete the department and all the containing data. -department_command_remove_shortcut =Remove bookmark -department_command_settings =Settings -department_command_shortcut =Bookmark -department_data_subheading =Department data -department_disable_header =Disabling department -department_disable_text =Are you REALLY sure that you want to disable the selected department and all belonging institutes, course types and courses? -department_error_remove_shortcut =Bookmark could not be deleted -department_error_shortcut =Bookmark could not be created -department_maintitle =Department main page - OpenUSS -department_manage_institute_applications_header =Manage institutes -department_members_add_subheading =Add new member -department_members_command_add =Add -department_members_command_add_hint =Add user to the members list -department_members_command_remove =Remove -department_members_command_remove_hint =Delete users membership -department_members_subheading =Authorisations -department_message_command_save_succeed =Department data succesfully changed! -department_name =Department name -department_navigation_allcourses_link =List of all courses -department_navigation_header =Manage department -department_ownername =Person in charge -department_preferences_department =Select your department type -department_preferences_university =Select the university which you want to assign to the department -department_profile =Overview -department_registration_start_headline =Register department -department_registration_start_text =The process registering your department within OpenUSS is an easy process, but we do require a reasonable amount of information in order to automate things as much as possible. Registering the department consists of the two steps:<br/><ol><li>Fill in the data of the department</li><li>Confirm the entered data</li></ol>It should take about 5 minutes. -department_registration_step1_headline =Department Registration - Submit Data -department_registration_step2_headline =Department Registration - Confirm Data -department_registration_success =Department successfully created. -department_remove_header =Removing department -department_remove_text =Are you REALLY sure that you want to delete the selected department and all belonging institutes, course types and courses? -department_selection =Department -department_shortcut =Shortcut -department_single_remove_text_part_1 =Do you really want to remove the following department -department_single_remove_text_part_2 =irretrievably? -department_single_remove_text_part_3 =It is just possible to delete the department if there are no institutes assigned. -department_success_remove_shortcut =Bookmark deleted -department_success_shortcut =Bookmark created -departmentapplication_address =Address -departmentapplication_address_hint =Enter the department's address -departmentapplication_city =City -departmentapplication_city_hint =Enter the city in which the department is located -departmentapplication_country =Country -departmentapplication_country_hint =Enter the country in which the department is located -departmentapplication_departmentType =Department type -departmentapplication_description =Description -departmentapplication_description_hint =Enter a description for the department -departmentapplication_email =E-Mail -departmentapplication_email_hint =Enter an email address for the department -departmentapplication_locale =Language -departmentapplication_name =Department name -departmentapplication_name_hint =Enter the department's name -departmentapplication_ownername =Responsible person for the department -departmentapplication_ownername_hint =Enter a person which is responsible for the department -departmentapplication_postcode =Postcode -departmentapplication_postcode_hint =Enter the department's postcode -departmentapplication_shortcut =Shortcut -departmentapplication_shortcut_hint =Enter the department's shortcut -departmentapplication_shortname =Department short name -departmentapplication_shortname_hint =Enter the department's short name -departmentapplication_telefax =Fax -departmentapplication_telefax_hint =Enter the department's fax number -departmentapplication_telephone =Phone -departmentapplication_telephone_hint =Enter the department's telephone number -departmentapplication_theme =Theme -departmentapplication_university =University -departmentapplication_website =Website -departmentapplication_website_hint =Enter the department's homepage -departmentinfo_address =Address -departmentinfo_address_hint =Enter the department's address -departmentinfo_city =City -departmentinfo_city_hint =Enter the city in which the department is located -departmentinfo_country =Country -departmentinfo_country_hint =Enter the country in which the department is located -departmentinfo_departmentType =Department type -departmentinfo_description =Description -departmentinfo_description_hint =Enter a description for the department -departmentinfo_email =E-Mail -departmentinfo_email_hint =Enter an email address for the department -departmentinfo_locale =Language -departmentinfo_logo =Upload logo -departmentinfo_name =Department name -departmentinfo_name_hint =Enter the department's name -departmentinfo_ownername =Responsible person for the department -departmentinfo_ownername_hint =Enter a person which is responsible for the department -departmentinfo_postcode =Postcode -departmentinfo_postcode_hint =Enter the department's postcode -departmentinfo_shortcut =Shortcut -departmentinfo_shortcut_hint =Enter the department's shortcut -departmentinfo_shortname =Department short name -departmentinfo_shortname_hint =Enter the department's short name -departmentinfo_telefax =Fax -departmentinfo_telefax_hint =Enter the department's fax number -departmentinfo_telephone =Phone -departmentinfo_telephone_hint =Enter the department's telephone number -departmentinfo_theme =Theme -departmentinfo_university =University -departmentinfo_website =Website -departmentinfo_website_hint =Enter the department's homepage -departmentinstitutes_command_accept =Accept -departmentinstitutes_command_accept_hint =Accept a new institute -departmentinstitutes_command_reject =Reject -departmentinstitutes_command_reject_hint =Reject a institute -departments_disabled =--- DISABLED DEPARTMENTS --- -departments_enabled =--- ENABLED DEPARTMENTS --- -departmenttype_non_offical =Virtual department -departmenttype_official =Official department -desktop =Desktop -desktop_command_add_course_succeed =A bookmark for this course was created. -desktop_command_add_coursetype_succeed =Bookmark created. -desktop_command_bookmarks =Bookmarks -desktop_command_department_create =Department registration -desktop_command_institute_create =Institute registration -desktop_command_myuni =MyUni -desktop_command_university_create =University registration -desktop_command_userprofile =Profile -desktop_courses_colheader_name =Name (shortcut) -desktop_courses_colheader_remove =Unsubscribe -desktop_courses_command_remove =Unsubscribe -desktop_courses_command_remove_hint =Unsubscribe course -desktop_courses_header =Bookmarks to Courses -desktop_coursetypes_colheader_name =Name (Shortcut) -desktop_coursetypes_colheader_remove =Remove -desktop_coursetypes_command_remove =Remove -desktop_coursetypes_command_remove_hint =Remove bookmark from your desktop -desktop_coursetypes_header =Courses -desktop_department_admin =Departments -desktop_heading =Welcome to Openuss-Plexus {0} ! -desktop_institutes_colheader_name =Name (Shortcut) -desktop_institutes_colheader_remove =Remove -desktop_institutes_command_remove =Remove -desktop_institutes_command_remove_hint =Remove bookmark -desktop_institutes_header =Institutes -desktop_mesage_removed_course_succeed =Course link removed successfully -desktop_message_removed_institute_succeed =The institute '{0}' has been removed from your desktop. -desktop_navigation_header =Desktop -desktop_search_institute =Browse institutes -desktop_system_admin =Universities -desktop_title =OpenUSS Plexus - {0} -desktop_university_admin =university administration -disable =Disable -discussion_config_state_header =Configuration -discussion_confirm_delete_post =Do you really want to delete this post? -discussion_discussionentry_attachment =Attachment -discussion_discussionentry_button_attachment =Attach file -discussion_discussionentry_button_draft =Draft -discussion_discussionentry_button_formula =Add a formula -discussion_discussionentry_button_send =Send -discussion_discussionentry_formula =Formula -discussion_discussionentry_text =Text -discussion_discussionentry_title =Title -discussion_discussionentry_title_hint =Please enter title here. -discussion_filename_already_exists =The chosen filename exists already! -discussion_forum_readonly =Change -discussion_forum_readonly_false =This forum can be changed. -discussion_forum_readonly_true =This forum is read only. -discussion_forum_readonly_true_simple =This forum is read only. -discussion_forum_watch =Change -discussion_forum_watch_false =You don't receive emails on any changes in this forum -discussion_forum_watch_true =You get emails if a post is added to this forum -discussion_main_column_actions =Actions -discussion_main_column_answers =Answers -discussion_main_column_author =Author -discussion_main_column_clicks =Clicks -discussion_main_column_lastentry =Latest entry -discussion_main_column_name =Thread -discussion_main_header =Threads -discussion_new =New Thread -discussion_new_addpost =Answer -discussion_new_answer =Answer -discussion_new_discussion_entry =New Thread / Answer -discussion_new_discussion_title =Title -discussion_post_deleted =Post "{0}" was deleted successfully. -discussion_post_edited =This post was edited by -discussion_post_edited2 =at -discussion_post_not_author =You have to be author of this post to edit it. -discussion_post_not_found =Post not found! -discussion_readonly =This action is not possible, because the current topic is read-only -discussion_remove_topic_header =Delete thread -discussion_removethread_confirmation_flag =Do you really want to delete this thread? -discussion_search =Search forum -discussion_search_and_or =And / or -discussion_search_author =Author -discussion_search_button =Search -discussion_search_button_cancel =Cancel -discussion_search_button_clear =Clear list -discussion_search_modified =Modified -discussion_search_score =Score -discussion_search_search_fuzzy =Fuzzy search -discussion_search_submitter =Submitter -discussion_search_title =Title -discussion_search_title_only =Only search in title -discussion_subscribe_success =Forum successfully subscribed. -discussion_thread_column_author =Author -discussion_thread_column_message =Message -discussion_thread_column_picture =Picture -discussion_thread_edit_post =Edit Post -discussion_thread_not_found =Thread not found! -discussion_thread_quote =Quote -discussion_thread_remove_post =Delete post -discussion_thread_remove_text =Removing this thread leads to deleting all posts this thread contains. -discussion_thread_remove_topic =Delete topic -discussion_topic_deleted =Topic "{0}" was deleted successfully -discussion_topic_readonly =Change -discussion_topic_readonly_false =This thread can be changed. -discussion_topic_readonly_true =This thread is read only. -discussion_topic_readonly_true_simple =This topic is read only. -discussion_topic_subscribe_success =Thread successfully subscribed. -discussion_topic_unsubscribe_success =Thread subscription successfully canceled. -discussion_topic_watch =Change -discussion_topic_watch_false =You don't receive emails on any changes in this topic -discussion_topic_watch_true =You receive emails if a post is added to this thread -discussion_unsubscribe_success =Forum successfully unsubscribed. -discussion_watch_state_header =Notifications -document_addzip_cancel =Cancel -document_addzip_header =Add ZipFile -document_addzip_save =Save -document_file_edit_header =Create / Edit File -document_folder_edit_header =Create / Edit Folder -documentation_headline =OpenUSS User Documentation -documents_actual_path =Current folder -documents_choose_target =Choose target -documents_file =Upload file -documents_file_description_hint =File description -documents_file_not_found =File not found/! -documents_folder_not_a_unique_filename =A file or folder with this name is already existing, please choose a different one. -documents_folder_not_found =Folder not found/! -documents_main_button_change =Change -documents_main_button_delete =Delete -documents_main_button_download =Download Selection -documents_main_button_newfile =Upload new File -documents_main_button_newfolder =New Folder -documents_main_button_zip =Add ZipFile -documents_main_column_actions =Actions -documents_main_column_change =Changed -documents_main_column_create =Create Time -documents_main_column_mark =A -documents_main_column_name =Name -documents_main_column_size =Size -documents_main_column_type =Type -documents_main_header =Documents -documents_message_extract_files_succeed ... [truncated message content] |
From: <id...@us...> - 2008-10-30 07:30:12
|
Revision: 4843 http://openuss.svn.sourceforge.net/openuss/?rev=4843&view=rev Author: idueppe Date: 2008-10-30 07:30:06 +0000 (Thu, 30 Oct 2008) Log Message: ----------- fixed naming of openformula module Modified Paths: -------------- branches/openuss-plexus-3.1-light/openformula/formula-editor/pom.xml branches/openuss-plexus-3.1-light/openformula/formula-jsf/pom.xml branches/openuss-plexus-3.1-light/openformula/formula-web/pom.xml Modified: branches/openuss-plexus-3.1-light/openformula/formula-editor/pom.xml =================================================================== --- branches/openuss-plexus-3.1-light/openformula/formula-editor/pom.xml 2008-10-30 07:12:24 UTC (rev 4842) +++ branches/openuss-plexus-3.1-light/openformula/formula-editor/pom.xml 2008-10-30 07:30:06 UTC (rev 4843) @@ -8,7 +8,7 @@ </parent> <groupId>org.openuss.openformula</groupId> <artifactId>formula-editor</artifactId> - <name>FormulaEditor</name> + <name>OpenFormula - formula-editor</name> <packaging>jar</packaging> <url>http://openuss.sf.net/plexus</url> Modified: branches/openuss-plexus-3.1-light/openformula/formula-jsf/pom.xml =================================================================== --- branches/openuss-plexus-3.1-light/openformula/formula-jsf/pom.xml 2008-10-30 07:12:24 UTC (rev 4842) +++ branches/openuss-plexus-3.1-light/openformula/formula-jsf/pom.xml 2008-10-30 07:30:06 UTC (rev 4843) @@ -10,7 +10,7 @@ <version>3.1-SNAPSHOT</version> </parent> - <artifactId>formula-jsf</artifactId> + <artifactId>OpenFormula - formula-jsf</artifactId> <packaging>jar</packaging> <name>OpenUSS OpenFormula JSF-Component</name> Modified: branches/openuss-plexus-3.1-light/openformula/formula-web/pom.xml =================================================================== --- branches/openuss-plexus-3.1-light/openformula/formula-web/pom.xml 2008-10-30 07:12:24 UTC (rev 4842) +++ branches/openuss-plexus-3.1-light/openformula/formula-web/pom.xml 2008-10-30 07:30:06 UTC (rev 4843) @@ -11,7 +11,7 @@ <groupId>org.openuss.openformula</groupId> <artifactId>formula-web</artifactId> - <name>Formula Web Sample</name> + <name>OpenFormula - formula-web sample</name> <packaging>war</packaging> <dependencies> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2008-10-30 07:12:29
|
Revision: 4842 http://openuss.svn.sourceforge.net/openuss/?rev=4842&view=rev Author: idueppe Date: 2008-10-30 07:12:24 +0000 (Thu, 30 Oct 2008) Log Message: ----------- Share project "openuss-plexus-3.1" into "https://openuss.svn.sourceforge.net/svnroot/openuss/branches/openuss-plexus-3.1-light" Added Paths: ----------- branches/openuss-plexus-3.1-light/trunk/ branches/openuss-plexus-3.1-light/trunk/openuss-plexus-3.1/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <id...@us...> - 2008-10-30 07:11:17
|
Revision: 4841 http://openuss.svn.sourceforge.net/openuss/?rev=4841&view=rev Author: idueppe Date: 2008-10-30 07:11:11 +0000 (Thu, 30 Oct 2008) Log Message: ----------- fixed modules configuration - removed reference to old themes modul. Modified Paths: -------------- branches/openuss-plexus-3.1-light/pom.xml Modified: branches/openuss-plexus-3.1-light/pom.xml =================================================================== --- branches/openuss-plexus-3.1-light/pom.xml 2008-10-30 04:45:25 UTC (rev 4840) +++ branches/openuss-plexus-3.1-light/pom.xml 2008-10-30 07:11:11 UTC (rev 4841) @@ -209,7 +209,6 @@ <modules> <!-- <module>documentation</module> --> <module>framework</module> - <module>themes</module> <module>openformula</module> <module>plexus</module> </modules> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pet...@us...> - 2008-10-30 04:45:33
|
Revision: 4840 http://openuss.svn.sourceforge.net/openuss/?rev=4840&view=rev Author: peterschuh Date: 2008-10-30 04:45:25 +0000 (Thu, 30 Oct 2008) Log Message: ----------- # Refactoring of setting username for authz.tld: Using setter method instead of constructor, due to maven error (cannot find symbol symbol : constructor ShibbolethUserDetailsImpl(java.lang.String)) Modified Paths: -------------- branches/openuss-plexus-3.1-shibboleth/framework/core/src/main/java/org/openuss/framework/web/acegi/shibboleth/ShibbolethUserDetailsImpl.java branches/openuss-plexus-3.1-shibboleth/plexus/plexus-core/src/main/java/org/openuss/security/acegi/shibboleth/ShibbolethAuthenticationProcessingFilter.java Modified: branches/openuss-plexus-3.1-shibboleth/framework/core/src/main/java/org/openuss/framework/web/acegi/shibboleth/ShibbolethUserDetailsImpl.java =================================================================== --- branches/openuss-plexus-3.1-shibboleth/framework/core/src/main/java/org/openuss/framework/web/acegi/shibboleth/ShibbolethUserDetailsImpl.java 2008-10-30 01:51:30 UTC (rev 4839) +++ branches/openuss-plexus-3.1-shibboleth/framework/core/src/main/java/org/openuss/framework/web/acegi/shibboleth/ShibbolethUserDetailsImpl.java 2008-10-30 04:45:25 UTC (rev 4840) @@ -66,10 +66,6 @@ public ShibbolethUserDetailsImpl() {} - public ShibbolethUserDetailsImpl(String username) { - setUsername(username); - } - //~ Methods ======================================================================================================== public Attributes getAttributes() { Modified: branches/openuss-plexus-3.1-shibboleth/plexus/plexus-core/src/main/java/org/openuss/security/acegi/shibboleth/ShibbolethAuthenticationProcessingFilter.java =================================================================== --- branches/openuss-plexus-3.1-shibboleth/plexus/plexus-core/src/main/java/org/openuss/security/acegi/shibboleth/ShibbolethAuthenticationProcessingFilter.java 2008-10-30 01:51:30 UTC (rev 4839) +++ branches/openuss-plexus-3.1-shibboleth/plexus/plexus-core/src/main/java/org/openuss/security/acegi/shibboleth/ShibbolethAuthenticationProcessingFilter.java 2008-10-30 04:45:25 UTC (rev 4840) @@ -403,7 +403,9 @@ public class ShibbolethAuthenticationDetailsSource implements AuthenticationDetailsSource { public Object buildDetails(HttpServletRequest request) { - shibbolethUserDetails = new ShibbolethUserDetailsImpl(request.getHeader(shibbolethUsernameHeaderKey)); + ShibbolethUserDetailsImpl shibbolethUserDetailsImpl = new ShibbolethUserDetailsImpl(); + shibbolethUserDetailsImpl.setUsername(request.getHeader(shibbolethUsernameHeaderKey)); + shibbolethUserDetails = shibbolethUserDetailsImpl; shibbolethUserDetails.getAttributes().put(ShibbolethUserDetailsImpl.USERNAME_KEY, request.getHeader(shibbolethUsernameHeaderKey)); if (request.getHeader(shibbolethEmailHeaderKey)!=null) { shibbolethUserDetails.getAttributes().put(ShibbolethUserDetailsImpl.EMAIL_KEY, ((String) request.getHeader(shibbolethEmailHeaderKey)).toLowerCase(Locale.ENGLISH)); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pet...@us...> - 2008-10-30 01:51:38
|
Revision: 4839 http://openuss.svn.sourceforge.net/openuss/?rev=4839&view=rev Author: peterschuh Date: 2008-10-30 01:51:30 +0000 (Thu, 30 Oct 2008) Log Message: ----------- # Thread safety issues + Support for getUsername according to authz.tld Modified Paths: -------------- branches/openuss-plexus-3.1-shibboleth/framework/core/src/main/java/org/openuss/framework/web/acegi/shibboleth/ShibbolethUserDetailsImpl.java branches/openuss-plexus-3.1-shibboleth/plexus/plexus-core/src/main/java/org/openuss/security/acegi/shibboleth/ShibbolethAuthenticationProcessingFilter.java branches/openuss-plexus-3.1-shibboleth/plexus/plexus-core/src/test/java/org/openuss/security/acegi/shibboleth/ShibbolethAuthenticationProcessingFilterTest.java Modified: branches/openuss-plexus-3.1-shibboleth/framework/core/src/main/java/org/openuss/framework/web/acegi/shibboleth/ShibbolethUserDetailsImpl.java =================================================================== --- branches/openuss-plexus-3.1-shibboleth/framework/core/src/main/java/org/openuss/framework/web/acegi/shibboleth/ShibbolethUserDetailsImpl.java 2008-10-29 10:56:04 UTC (rev 4838) +++ branches/openuss-plexus-3.1-shibboleth/framework/core/src/main/java/org/openuss/framework/web/acegi/shibboleth/ShibbolethUserDetailsImpl.java 2008-10-30 01:51:30 UTC (rev 4839) @@ -65,6 +65,10 @@ //~ Constructors =================================================================================================== public ShibbolethUserDetailsImpl() {} + + public ShibbolethUserDetailsImpl(String username) { + setUsername(username); + } //~ Methods ======================================================================================================== Modified: branches/openuss-plexus-3.1-shibboleth/plexus/plexus-core/src/main/java/org/openuss/security/acegi/shibboleth/ShibbolethAuthenticationProcessingFilter.java =================================================================== --- branches/openuss-plexus-3.1-shibboleth/plexus/plexus-core/src/main/java/org/openuss/security/acegi/shibboleth/ShibbolethAuthenticationProcessingFilter.java 2008-10-29 10:56:04 UTC (rev 4838) +++ branches/openuss-plexus-3.1-shibboleth/plexus/plexus-core/src/main/java/org/openuss/security/acegi/shibboleth/ShibbolethAuthenticationProcessingFilter.java 2008-10-30 01:51:30 UTC (rev 4839) @@ -3,6 +3,7 @@ import java.io.IOException; import java.util.Locale; +import javax.naming.NamingException; import javax.servlet.FilterChain; import javax.servlet.ServletException; import javax.servlet.ServletRequest; @@ -106,7 +107,7 @@ */ protected String migrationTargetUrl = null; - protected boolean migrationNecessary = false; + protected String MIGRATION_NECESSARY_KEY = "ACEGI_SHIBBOLETH_MIGRATION_NECESSARY_KEY"; /** * Enables HTTP redirect in case of a successful authentication.</br> @@ -279,8 +280,11 @@ // Set switch for redirect to migration page if (isMigrationEnabled() && authentication.equals(authRequest)) { - setMigrationNecessary(true); + setMigrationNecessary(true, authentication); } + else { + setMigrationNecessary(false, authentication); + } return authentication; } @@ -399,8 +403,8 @@ public class ShibbolethAuthenticationDetailsSource implements AuthenticationDetailsSource { public Object buildDetails(HttpServletRequest request) { - shibbolethUserDetails = new ShibbolethUserDetailsImpl(); - shibbolethUserDetails.getAttributes().put(ShibbolethUserDetailsImpl.USERNAME_KEY, request.getHeader(shibbolethUsernameHeaderKey)); + shibbolethUserDetails = new ShibbolethUserDetailsImpl(request.getHeader(shibbolethUsernameHeaderKey)); + shibbolethUserDetails.getAttributes().put(ShibbolethUserDetailsImpl.USERNAME_KEY, request.getHeader(shibbolethUsernameHeaderKey)); if (request.getHeader(shibbolethEmailHeaderKey)!=null) { shibbolethUserDetails.getAttributes().put(ShibbolethUserDetailsImpl.EMAIL_KEY, ((String) request.getHeader(shibbolethEmailHeaderKey)).toLowerCase(Locale.ENGLISH)); } @@ -435,6 +439,26 @@ } } + protected boolean isMigrationNecessary() { + Boolean migrationNecessary = Boolean.FALSE; + try { + migrationNecessary = (Boolean) ((ShibbolethUserDetails) SecurityContextHolder.getContext().getAuthentication().getDetails()).getAttributes().get(MIGRATION_NECESSARY_KEY).get(); + } catch (NamingException e) {} + return migrationNecessary; + } + + protected void setMigrationNecessary(boolean migrationNecessary, Authentication authentication) { + ((ShibbolethUserDetails) authentication.getDetails()).getAttributes().put(MIGRATION_NECESSARY_KEY, Boolean.valueOf(migrationNecessary)); + } + + protected void setMigrationNecessary(boolean migrationNecessary) { + ((ShibbolethUserDetails) SecurityContextHolder.getContext().getAuthentication().getDetails()).getAttributes().put(MIGRATION_NECESSARY_KEY, Boolean.valueOf(migrationNecessary)); + } + + public boolean isProcessEachUrlEnabled() { + return processEachUrlEnabled; + } + public String getShibbolethUsernameHeaderKey() { return shibbolethUsernameHeaderKey; } @@ -534,18 +558,6 @@ setMigrationEnabled(migrationTargetUrl == null? false : true); } - protected boolean isMigrationNecessary() { - return migrationNecessary; - } - - protected void setMigrationNecessary(boolean migrationNecessary) { - this.migrationNecessary = migrationNecessary; - } - - public boolean isProcessEachUrlEnabled() { - return processEachUrlEnabled; - } - public void setProcessEachUrlEnabled(boolean processEachUrlEnabled) { this.processEachUrlEnabled = processEachUrlEnabled; } Modified: branches/openuss-plexus-3.1-shibboleth/plexus/plexus-core/src/test/java/org/openuss/security/acegi/shibboleth/ShibbolethAuthenticationProcessingFilterTest.java =================================================================== --- branches/openuss-plexus-3.1-shibboleth/plexus/plexus-core/src/test/java/org/openuss/security/acegi/shibboleth/ShibbolethAuthenticationProcessingFilterTest.java 2008-10-29 10:56:04 UTC (rev 4838) +++ branches/openuss-plexus-3.1-shibboleth/plexus/plexus-core/src/test/java/org/openuss/security/acegi/shibboleth/ShibbolethAuthenticationProcessingFilterTest.java 2008-10-30 01:51:30 UTC (rev 4839) @@ -138,7 +138,10 @@ // Setup authentication manager AuthenticationManager authManager = new AuthenticationManager() {public org.acegisecurity.Authentication authenticate(org.acegisecurity.Authentication authentication) throws org.acegisecurity.AuthenticationException { - return new UsernamePasswordAuthenticationToken(USERNAME,"protected",new GrantedAuthority[]{new GrantedAuthorityImpl(DEFAULTROLE)});}}; + UsernamePasswordAuthenticationToken authResult = new UsernamePasswordAuthenticationToken(USERNAME,"protected",new GrantedAuthority[]{new GrantedAuthorityImpl(DEFAULTROLE)}); + authResult.setDetails(new ShibbolethUserDetailsImpl()); + return authResult; + }}; // Setup our test object, to grant access and redirect migrated user to defaultTargetUrl. String defaultTargetUrl = "/foobar"; @@ -652,7 +655,10 @@ // Setup authentication manager AuthenticationManager authManager = new AuthenticationManager() {public org.acegisecurity.Authentication authenticate(org.acegisecurity.Authentication authentication) throws org.acegisecurity.AuthenticationException { - return new UsernamePasswordAuthenticationToken(USERNAME,"protected",new GrantedAuthority[]{new GrantedAuthorityImpl(DEFAULTROLE)});}}; + UsernamePasswordAuthenticationToken authResult = new UsernamePasswordAuthenticationToken(USERNAME,"protected",new GrantedAuthority[]{new GrantedAuthorityImpl(DEFAULTROLE)}); + authResult.setDetails(new ShibbolethUserDetailsImpl()); + return authResult; + }}; // Setup our test object, to grant access filter.setAuthenticationManager(authManager); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |