-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#4616 - Option to disable displaying suggestions in sidebar curation …
…mode - Added options in the project settings to enable/disable displaying suggestions when in curation mode or when looking at annotations from other users - Added a status badge to the icon of the recommender sidebar - Switch icons of the recommedner sidebar and active learning sidebar - Disable recommender and active learning sidebar when recommenders are disabled in curation mode etc.
- Loading branch information
Showing
25 changed files
with
475 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
...main/java/de/tudarmstadt/ukp/inception/recommendation/event/RecommendersResumedEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
* Licensed to the Technische Universität Darmstadt under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The Technische Universität Darmstadt | ||
* licenses this file to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package de.tudarmstadt.ukp.inception.recommendation.event; | ||
|
||
import org.springframework.context.ApplicationEvent; | ||
|
||
import de.tudarmstadt.ukp.clarin.webanno.model.Project; | ||
import de.tudarmstadt.ukp.inception.support.wicket.event.HybridApplicationUIEvent; | ||
|
||
public class RecommendersResumedEvent | ||
extends ApplicationEvent | ||
implements HybridApplicationUIEvent | ||
{ | ||
private static final long serialVersionUID = -4736560772442881663L; | ||
|
||
private final Project project; | ||
private final String sessionOwner; | ||
|
||
public RecommendersResumedEvent(Object source, Project aProject, String aSessionOwner) | ||
{ | ||
super(source); | ||
project = aProject; | ||
sessionOwner = aSessionOwner; | ||
} | ||
|
||
public Project getProject() | ||
{ | ||
return project; | ||
} | ||
|
||
public String getUser() | ||
{ | ||
return sessionOwner; | ||
} | ||
} |
50 changes: 50 additions & 0 deletions
50
...in/java/de/tudarmstadt/ukp/inception/recommendation/event/RecommendersSuspendedEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
* Licensed to the Technische Universität Darmstadt under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The Technische Universität Darmstadt | ||
* licenses this file to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package de.tudarmstadt.ukp.inception.recommendation.event; | ||
|
||
import org.springframework.context.ApplicationEvent; | ||
|
||
import de.tudarmstadt.ukp.clarin.webanno.model.Project; | ||
import de.tudarmstadt.ukp.inception.support.wicket.event.HybridApplicationUIEvent; | ||
|
||
public class RecommendersSuspendedEvent | ||
extends ApplicationEvent | ||
implements HybridApplicationUIEvent | ||
{ | ||
private static final long serialVersionUID = -4736560772442881663L; | ||
|
||
private final Project project; | ||
private final String sessionOwner; | ||
|
||
public RecommendersSuspendedEvent(Object source, Project aProject, String aSessionOwner) | ||
{ | ||
super(source); | ||
project = aProject; | ||
sessionOwner = aSessionOwner; | ||
} | ||
|
||
public Project getProject() | ||
{ | ||
return project; | ||
} | ||
|
||
public String getUser() | ||
{ | ||
return sessionOwner; | ||
} | ||
} |
Oops, something went wrong.