Die Eigenschaften der Verknüpfung zwischen einer Reihe (Series) und einer Person (=Herausgeber) lassen sich jetzt bearbeiten
git-svn-id: https://svn.libreccm.org/ccm/trunk@761 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
49e1587d43
commit
5509d7e5b6
|
|
@ -272,3 +272,4 @@ publications.ui.inProceedings.proceedings.remove=Remove this association
|
||||||
publications.ui.inProceedings.proceedings.confirm_remove=Do really want to remove this association
|
publications.ui.inProceedings.proceedings.confirm_remove=Do really want to remove this association
|
||||||
publications.ui.series.name=Name (URL)
|
publications.ui.series.name=Name (URL)
|
||||||
publications.ui.authors.edit_assoc=Edit association
|
publications.ui.authors.edit_assoc=Edit association
|
||||||
|
publications.ui.series.editship.edit=Edit edithship
|
||||||
|
|
|
||||||
|
|
@ -271,3 +271,4 @@ publications.ui.inProceedings.proceedings.remove=Verkn\u00fcpfung entfernen
|
||||||
publications.ui.inProceedings.proceedings.confirm_remove=Wollen Sie diese Verkn\u00fcpfung wirklich entfernen
|
publications.ui.inProceedings.proceedings.confirm_remove=Wollen Sie diese Verkn\u00fcpfung wirklich entfernen
|
||||||
publications.ui.series.name=Name (URL)
|
publications.ui.series.name=Name (URL)
|
||||||
publications.ui.authors.edit_assoc=Verkn\u00fcpfung bearbeiten
|
publications.ui.authors.edit_assoc=Verkn\u00fcpfung bearbeiten
|
||||||
|
publications.ui.series.editship.edit=Herausgeberschaft bearbeiten
|
||||||
|
|
|
||||||
|
|
@ -112,6 +112,8 @@ public class SeriesEditshipTable extends Table implements TableActionListener {
|
||||||
colModel.get(4).setCellRenderer(new DeleteCellRenderer());
|
colModel.get(4).setCellRenderer(new DeleteCellRenderer());
|
||||||
//colModel.get(5).setCellRenderer(new UpCellRenderer());
|
//colModel.get(5).setCellRenderer(new UpCellRenderer());
|
||||||
//colModel.get(6).setCellRenderer(new DownCellRenderer());
|
//colModel.get(6).setCellRenderer(new DownCellRenderer());
|
||||||
|
|
||||||
|
addTableActionListener(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
private class SeriesEditshipTableModelBuilder
|
private class SeriesEditshipTableModelBuilder
|
||||||
|
|
@ -239,13 +241,13 @@ public class SeriesEditshipTable extends Table implements TableActionListener {
|
||||||
int col) {
|
int col) {
|
||||||
SecurityManager securityManager =
|
SecurityManager securityManager =
|
||||||
Utilities.getSecurityManager(state);
|
Utilities.getSecurityManager(state);
|
||||||
Publication publication = (Publication) m_itemModel.
|
Series series = (Series) m_itemModel.
|
||||||
getSelectedObject(state);
|
getSelectedObject(state);
|
||||||
|
|
||||||
boolean canEdit = securityManager.canAccess(
|
boolean canEdit = securityManager.canAccess(
|
||||||
state.getRequest(),
|
state.getRequest(),
|
||||||
SecurityManager.EDIT_ITEM,
|
SecurityManager.EDIT_ITEM,
|
||||||
publication);
|
series);
|
||||||
|
|
||||||
if (canEdit) {
|
if (canEdit) {
|
||||||
ControlLink link = new ControlLink(value.toString());
|
ControlLink link = new ControlLink(value.toString());
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue