Merged 2.1 to HEAD

8639: Fixed WCM-1138 (Need a way to remove AVM locks through the UI)
   8749: Fixed AR-2177, WCM-1059, WCM-1137 and improved fix for WCM-1089, all to do with locking issues on the create and edit web content wizards.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@8773 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Gavin Cornwell
2008-04-15 12:50:33 +00:00
parent 43c4e14560
commit 78d40348eb
11 changed files with 723 additions and 277 deletions

View File

@@ -1185,6 +1185,9 @@ delete_rendition_confirm=Are you sure you want to remove \"{0}\", \"{1}\", and i
delete_folder=Delete Folder
delete_avm_folder_info=To remove this folder and its contents from the sandbox, click OK.
delete_avm_folder_confirm=Are you sure you want to remove \"{0}\" and its contents from the sandbox?
unlock_file=Unlock File
unlock_file_info=To remove the lock from this file click OK.
unlock_file_confirm=Are you sure you want to remove the lock from \"{0}\"?
error_delete_folder=Unable to delete Folder due to system error:
create_web_content=Create Web Content
create_web_content_title=Create Web Content Wizard

View File

@@ -172,6 +172,10 @@
icon="/images/icons/delete_large.gif" title-id="delete_layered_folder"
description-id="delete_layered_folder_info" />
<dialog name="unlockAvmFile" page="/jsp/dialog/delete.jsp" managed-bean="UnlockFileDialog"
icon="/images/icons/unlock_large.gif" title-id="unlock_file"
description-id="unlock_file_info" />
<dialog name="promptForWebForm" page="/jsp/wcm/prompt-for-web-form.jsp" managed-bean="PromptForWebFormDialog"
icon="/images/icons/details_large.gif" title-id="prompt_for_web_form"
description-id="prompt_for_web_form_info" />

View File

@@ -77,6 +77,21 @@
</params>
</action>
<!-- Unlock AVM file -->
<action id="unlock_file">
<permissions>
<permission allow="true">Delete</permission>
</permissions>
<evaluator>org.alfresco.web.action.evaluator.WCMUnlockEvaluator</evaluator>
<label-id>unlock</label-id>
<image>/images/icons/unlock.gif</image>
<action-listener>#{AVMBrowseBean.setupContentAction}</action-listener>
<action>dialog:unlockAvmFile</action>
<params>
<param name="id">#{actionContext.id}</param>
</params>
</action>
<!-- Submit AVM node -->
<action id="submit">
<permissions>
@@ -329,6 +344,7 @@
<action idref="cut_avm_node" />
<action idref="copy_avm_node" />
<action idref="file_details" />
<action idref="unlock_file" />
<action idref="delete_file_browse" />
</action-group>

View File

@@ -0,0 +1,83 @@
/*
* Copyright (C) 2005-2007 Alfresco Software Limited.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* As a special exception to the terms and conditions of version 2.0 of
* the GPL, you may redistribute this Program in connection with Free/Libre
* and Open Source Software ("FLOSS") applications as described in Alfresco's
* FLOSS exception. You should have recieved a copy of the text describing
* the FLOSS exception, and it is also available here:
* http://www.alfresco.com/legal/licensing"
*/
package org.alfresco.web.action.evaluator;
import javax.faces.context.FacesContext;
import org.alfresco.repo.avm.AVMNodeConverter;
import org.alfresco.service.cmr.avm.AVMService;
import org.alfresco.service.cmr.avm.locking.AVMLock;
import org.alfresco.service.cmr.avm.locking.AVMLockingService;
import org.alfresco.util.Pair;
import org.alfresco.web.app.servlet.FacesHelper;
import org.alfresco.web.bean.repository.Node;
import org.alfresco.web.bean.repository.Repository;
import org.alfresco.web.bean.wcm.AVMBrowseBean;
import org.alfresco.web.bean.wcm.AVMUtil;
import org.alfresco.web.bean.wcm.WebProject;
/**
* UI Action Evaluator - return true if the node is not part of an in-progress
* WCM workflow and is locked
*
* @author Gavin Cornwell
*/
public class WCMUnlockEvaluator extends BaseActionEvaluator
{
/**
* @see org.alfresco.web.action.ActionEvaluator#evaluate(org.alfresco.web.bean.repository.Node)
*/
public boolean evaluate(final Node node)
{
boolean proceed = false;
FacesContext context = FacesContext.getCurrentInstance();
AVMService avmService = Repository.getServiceRegistry(context).getAVMService();
AVMLockingService avmLockingService = Repository.getServiceRegistry(context).getAVMLockingService();
AVMBrowseBean avmBrowseBean = (AVMBrowseBean)FacesHelper.getManagedBean(context, AVMBrowseBean.BEAN_NAME);
Pair<Integer, String> p = AVMNodeConverter.ToAVMVersionPath(node.getNodeRef());
String path = p.getSecond();
if (avmService.lookup(p.getFirst(), path) != null)
{
String relPath = AVMUtil.getStoreRelativePath(path);
WebProject webProject = avmBrowseBean.getWebProject();
if (webProject == null)
{
// when in a workflow context, the WebProject may not be accurate on the browsebean
// so get the web project associated with the path
webProject = new WebProject(path);
}
// determine if the item is locked
AVMLock lock = avmLockingService.getLock(webProject.getStoreId(), relPath);
proceed = (lock != null);
}
return proceed;
}
}

View File

@@ -54,6 +54,7 @@ import org.alfresco.repo.transaction.RetryingTransactionHelper.RetryingTransacti
import org.alfresco.service.cmr.avm.AVMExistsException;
import org.alfresco.service.cmr.avm.AVMNodeDescriptor;
import org.alfresco.service.cmr.avm.AVMService;
import org.alfresco.service.cmr.avm.locking.AVMLock;
import org.alfresco.service.cmr.avm.locking.AVMLockingService;
import org.alfresco.service.cmr.avmsync.AVMDifference;
import org.alfresco.service.cmr.avmsync.AVMSyncService;
@@ -101,6 +102,7 @@ public class CreateWebContentWizard extends CreateContentWizard
transient private Document instanceDataDocument = null;
protected boolean formSelectDisabled = false;
protected boolean startWorkflow = false;
protected List<String> locksToReturnToMainStoreOnCancel = null;
transient private AVMLockingService avmLockingService;
transient private AVMService avmService;
@@ -213,6 +215,7 @@ public class CreateWebContentWizard extends CreateContentWizard
this.createMimeTypes = null;
this.formChoices = null;
this.filePickerBean.clearUploadedFiles();
this.locksToReturnToMainStoreOnCancel = new ArrayList<String>(4);
// check for a form ID being passed in as a parameter
if (this.parameters.get(UIUserSandboxes.PARAM_FORM_NAME) != null)
@@ -347,6 +350,32 @@ public class CreateWebContentWizard extends CreateContentWizard
return super.back();
}
@Override
public String cancel()
{
if (this.formInstanceData != null && this.renditions != null)
{
if (this.locksToReturnToMainStoreOnCancel.size() > 0)
{
for (String path : this.locksToReturnToMainStoreOnCancel)
{
String storeId = AVMUtil.getStoreId(path);
String storePath = AVMUtil.getStoreRelativePath(path);
String storeName = AVMUtil.getStoreName(path);
String mainStore = AVMUtil.getCorrespondingMainStoreName(storeName);
if (logger.isDebugEnabled())
logger.debug("transferring lock from " + storeName + " to " + mainStore +
" for path: " + path + " as user chose to cancel");
this.getAvmLockingService().modifyLock(storeId, storePath, null, mainStore, null, null);
}
}
}
return super.cancel();
}
@Override
protected String finishImpl(final FacesContext context, String outcome)
throws Exception
@@ -482,10 +511,34 @@ public class CreateWebContentWizard extends CreateContentWizard
if (logger.isDebugEnabled())
logger.debug("creating file " + fileName + " in " + path);
// get current username for lock checks
String username = Application.getCurrentUser(FacesContext.getCurrentInstance()).getUserName();
// put the content of the file into the AVM store
String filePath = AVMNodeConverter.ExtendAVMPath(path, fileName);
try
{
getAvmService().createFile(path, fileName, new ByteArrayInputStream((this.content == null ? "" : this.content).getBytes("UTF-8")));
String storeId = AVMUtil.getStoreId(filePath);
String storePath = AVMUtil.getStoreRelativePath(filePath);
String storeName = AVMUtil.getStoreName(filePath);
AVMLock lock = this.getAvmLockingService().getLock(storeId, storePath);
if (lock != null && lock.getStore().equals(storeName) == false)
{
if (lock.getOwners().contains(username))
{
// lock already exists on path, check it's owned by the current user
if (logger.isDebugEnabled())
logger.debug("transferring lock from " + lock.getStore() + " to " + storeName + " for path: " + filePath);
// add the path to the list of locks to return to the preview store if cancel is pressed
this.locksToReturnToMainStoreOnCancel.add(filePath);
this.getAvmLockingService().modifyLock(storeId, storePath, null, storeName, null, null);
}
}
// create the file
getAvmService().createFile(path, fileName,
new ByteArrayInputStream((this.content == null ? "" : this.content).getBytes("UTF-8")));
}
catch (AVMExistsException avmee)
{
@@ -495,7 +548,7 @@ public class CreateWebContentWizard extends CreateContentWizard
}
// remember the created path
this.createdPath = AVMNodeConverter.ExtendAVMPath(path, fileName);
this.createdPath = filePath;
// add titled aspect for the read/edit properties screens
final NodeRef formInstanceDataNodeRef = AVMNodeConverter.ToNodeRef(-1, this.createdPath);
@@ -517,6 +570,29 @@ public class CreateWebContentWizard extends CreateContentWizard
try
{
path = ret.getOutputPathForRendition(this.formInstanceData, cwd);
if (logger.isDebugEnabled())
logger.debug("About to render path: " + path);
String storeId = AVMUtil.getStoreId(path);
String storePath = AVMUtil.getStoreRelativePath(path);
String storeName = AVMUtil.getStoreName(path);
AVMLock lock = this.getAvmLockingService().getLock(storeId, storePath);
if (lock != null && lock.getStore().equals(storeName) == false)
{
// see if the lock belongs to the current user, if it does modify the lock to point to the preview store
if (lock.getOwners().contains(username))
{
if (logger.isDebugEnabled())
logger.debug("transferring lock from " + lock.getStore() + " to " + storeName + " for path: " + path);
// add the path to the list of locks to return to the main store if cancel is pressed
this.locksToReturnToMainStoreOnCancel.add(path);
this.getAvmLockingService().modifyLock(storeId, storePath, null, storeName, null, null);
}
}
// generate the rendition
this.renditions.add(ret.render(this.formInstanceData, path));
}
catch (Exception e)

View File

@@ -24,6 +24,7 @@
*/
package org.alfresco.web.bean.wcm;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
@@ -53,8 +54,7 @@ public class EditWebContentWizard extends CreateWebContentWizard
private AVMNode avmNode;
private Form form;
private boolean wasFormLockPresent = false;
private boolean wasRenditionLockPresent = false;
protected List<String> locksPresentAtInit = null;
// ------------------------------------------------------------------------------
// Wizard implementation
@@ -87,8 +87,32 @@ public class EditWebContentWizard extends CreateWebContentWizard
this.content = this.getAvmService().getContentReader(-1, this.createdPath).getContentString();
this.fileName = this.formInstanceData.getName();
this.mimeType = MimetypeMap.MIMETYPE_XML;
this.wasFormLockPresent = false;
this.wasRenditionLockPresent = false;
// calculate which locks are present at init time
this.locksPresentAtInit = new ArrayList<String>(4);
AVMLock lock = this.getAvmLockingService().getLock(AVMUtil.getStoreId(this.createdPath),
AVMUtil.getStoreRelativePath(this.createdPath));
if (lock != null)
{
this.locksPresentAtInit.add(this.createdPath);
if (logger.isDebugEnabled())
logger.debug("Lock exists for xml instance " + this.createdPath + " at initialisation");
}
for (final Rendition r : this.formInstanceData.getRenditions())
{
String path = r.getPath();
lock = this.getAvmLockingService().getLock(AVMUtil.getStoreId(path),
AVMUtil.getStoreRelativePath(path));
if (lock != null)
{
this.locksPresentAtInit.add(path);
if (logger.isDebugEnabled())
logger.debug("Lock exists for rendition " + path + " at initialisation");
}
}
}
@Override
@@ -96,32 +120,34 @@ public class EditWebContentWizard extends CreateWebContentWizard
{
if (this.formInstanceData != null && this.renditions != null)
{
if (this.wasFormLockPresent == false)
if (this.locksPresentAtInit.contains(this.createdPath) == false)
{
// there wasn't a lock on the form at the start of the
// wizard so remove the one present now
if (logger.isDebugEnabled())
logger.debug("removing form instance data lock from " +
AVMUtil.getCorrespondingPathInMainStore(this.createdPath) +
" as user chose to cancel");
" as user chose to cancel and it wasn't present at initialisation");
this.getAvmLockingService().removeLock(AVMUtil.getStoreId(this.createdPath),
AVMUtil.getStoreRelativePath(this.createdPath));
}
if (this.wasRenditionLockPresent == false)
{
// there weren't locks on renditions at the start of
// the wizard so remove the ones present now
for (Rendition r : this.renditions)
{
if (logger.isDebugEnabled())
logger.debug("removing lock from " +
AVMUtil.getCorrespondingPathInMainStore(r.getPath()) +
" as user chose to cancel");
String path = r.getPath();
this.getAvmLockingService().removeLock(AVMUtil.getStoreId(r.getPath()),
AVMUtil.getStoreRelativePath(r.getPath()));
if (this.locksPresentAtInit.contains(path) == false)
{
// there wasn't a lock on the rendition at the start of
// the wizard so remove the one present now
if (logger.isDebugEnabled())
logger.debug("removing lock from rendition " +
AVMUtil.getCorrespondingPathInMainStore(path) +
" as user chose to cancel and it wasn't present at initialisation");
this.getAvmLockingService().removeLock(AVMUtil.getStoreId(path),
AVMUtil.getStoreRelativePath(path));
}
}
}
@@ -162,9 +188,6 @@ public class EditWebContentWizard extends CreateWebContentWizard
AVMUtil.getStoreName(this.createdPath),
null,
null);
// set the lock present flag
this.wasFormLockPresent = true;
}
final ContentWriter writer = this.getAvmService().getContentWriter(this.createdPath);
@@ -189,11 +212,9 @@ public class EditWebContentWizard extends CreateWebContentWizard
AVMUtil.getStoreName(r.getPath()),
null,
null);
}
}
// set the lock present flag
this.wasRenditionLockPresent = true;
}
}
final List<FormInstanceData.RegenerateResult> result = this.formInstanceData.regenerateRenditions();
this.renditions = new LinkedList<Rendition>();
for (FormInstanceData.RegenerateResult rr : result)
@@ -203,6 +224,23 @@ public class EditWebContentWizard extends CreateWebContentWizard
Utils.addErrorMessage("error regenerating rendition using " + rr.getRenderingEngineTemplate().getName() +
": " + rr.getException().getMessage(),
rr.getException());
// if the renditions were locked before the regenerate, move the lock back to main store
String path = rr.getPath();
if (this.locksPresentAtInit.contains(path))
{
if (logger.isDebugEnabled())
logger.debug("transferring existing lock for " + path +
" back to " + AVMUtil.getCorrespondingMainStoreName(AVMUtil.getStoreName(path)));
this.getAvmLockingService().modifyLock(AVMUtil.getStoreId(path),
AVMUtil.getStoreRelativePath(path),
null,
AVMUtil.getCorrespondingMainStoreName(AVMUtil.getStoreName(path)),
null,
null);
}
}
else
{

View File

@@ -0,0 +1,145 @@
/*
* Copyright (C) 2005-2007 Alfresco Software Limited.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* As a special exception to the terms and conditions of version 2.0 of
* the GPL, you may redistribute this Program in connection with Free/Libre
* and Open Source Software ("FLOSS") applications as described in Alfresco's
* FLOSS exception. You should have recieved a copy of the text describing
* the FLOSS exception, and it is also available here:
* http://www.alfresco.com/legal/licensing"
*/
package org.alfresco.web.bean.wcm;
import java.text.MessageFormat;
import javax.faces.context.FacesContext;
import org.alfresco.service.cmr.avm.AVMService;
import org.alfresco.service.cmr.avm.locking.AVMLockingService;
import org.alfresco.web.app.Application;
import org.alfresco.web.bean.dialog.BaseDialogBean;
import org.alfresco.web.bean.repository.Repository;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/**
* Bean implementation for the AVM "Unlock File" dialog
*
* @author Gavin Cornwell
*/
public class UnlockFileDialog extends BaseDialogBean
{
private static final long serialVersionUID = -2985826502913718770L;
private static final Log logger = LogFactory.getLog(UnlockFileDialog.class);
protected AVMService avmService;
protected AVMLockingService lockingService;
protected AVMBrowseBean avmBrowseBean;
/**
* @param avmBrowseBean The avmBrowseBean to set.
*/
public void setAvmBrowseBean(AVMBrowseBean avmBrowseBean)
{
this.avmBrowseBean = avmBrowseBean;
}
/**
* @param avmService The avmService to set.
*/
public void setAvmService(AVMService avmService)
{
this.avmService = avmService;
}
protected AVMService getAvmService()
{
if (this.avmService == null)
{
this.avmService = Repository.getServiceRegistry(FacesContext.getCurrentInstance()).getAVMService();
}
return this.avmService;
}
/**
* @param lockingService The avmLockingService to set.
*/
public void setAvmLockingService(AVMLockingService lockingService)
{
this.lockingService = lockingService;
}
protected AVMLockingService getAvmLockingService()
{
if (this.lockingService == null)
{
this.lockingService = Repository.getServiceRegistry(FacesContext.getCurrentInstance()).getAVMLockingService();
}
return this.lockingService;
}
// ------------------------------------------------------------------------------
// Dialog implementation
@Override
protected String finishImpl(final FacesContext context, final String outcome)
throws Exception
{
// get the content to delete
final AVMNode node = this.avmBrowseBean.getAvmActionNode();
if (node == null)
{
logger.warn("WARNING: unlock called without a current AVM Node!");
}
else
{
if (logger.isDebugEnabled())
logger.debug("Trying to unlock AVM node: " + node.getPath());
this.getAvmLockingService().removeLock(this.avmBrowseBean.getWebProject().getStoreId(),
AVMUtil.getStoreRelativePath(node.getPath()));
}
return outcome;
}
@Override
public boolean getFinishButtonDisabled()
{
return false;
}
// ------------------------------------------------------------------------------
// Bean Getters and Setters
/**
* Returns the confirmation to display to the user before deleting the content.
*
* @return The formatted message to display
*/
public String getConfirmMessage()
{
String unlockConfirmMsg = Application.getMessage(FacesContext.getCurrentInstance(),
"unlock_file_confirm");
return MessageFormat.format(unlockConfirmMsg,
new Object[] {this.avmBrowseBean.getAvmActionNode().getName()});
}
}

View File

@@ -47,23 +47,28 @@ public interface FormInstanceData
private static final long serialVersionUID = -3827878774655260635L;
private final RenderingEngineTemplate ret;
private final String path;
private final Rendition r;
private final Exception e;
public RegenerateResult(final RenderingEngineTemplate ret,
final String path,
final Rendition r)
{
this.ret = ret;
this.r = r;
this.e = null;
this.path = path;
}
public RegenerateResult(final RenderingEngineTemplate ret,
final String path,
final Exception e)
{
this.ret = ret;
this.e = e;
this.r = null;
this.path = path;
}
public RenderingEngineTemplate getRenderingEngineTemplate()
@@ -71,6 +76,11 @@ public interface FormInstanceData
return this.ret;
}
public String getPath()
{
return this.path;
}
public Rendition getRendition()
{
return this.r;

View File

@@ -41,6 +41,8 @@ import org.alfresco.repo.domain.PropertyValue;
import org.alfresco.service.ServiceRegistry;
import org.alfresco.service.cmr.avm.AVMNotFoundException;
import org.alfresco.service.cmr.avm.AVMService;
import org.alfresco.service.cmr.avm.locking.AVMLock;
import org.alfresco.service.cmr.avm.locking.AVMLockingService;
import org.alfresco.service.cmr.dictionary.DataTypeDefinition;
import org.alfresco.service.cmr.repository.NodeRef;
import org.alfresco.service.cmr.repository.StoreRef;
@@ -62,7 +64,7 @@ import org.xml.sax.SAXException;
{
private static final long serialVersionUID = -7806221587661854013L;
private static final Log LOGGER = LogFactory.getLog(RenditionImpl.class);
private static final Log logger = LogFactory.getLog(RenditionImpl.class);
private final NodeRef nodeRef;
private transient FormsService formsService;
@@ -175,9 +177,10 @@ import org.xml.sax.SAXException;
public List<FormInstanceData.RegenerateResult> regenerateRenditions()
throws FormNotFoundException
{
if (LOGGER.isDebugEnabled())
LOGGER.debug("regenerating renditions of " + this);
if (logger.isDebugEnabled())
logger.debug("regenerating renditions of " + this);
AVMLockingService avmLockService = this.getServiceRegistry().getAVMLockingService();
final AVMService avmService = this.getServiceRegistry().getAVMService();
PropertyValue pv = avmService.getNodeProperty(
AVMNodeConverter.ToAVMVersionPath(this.nodeRef).getFirst(),
@@ -191,6 +194,8 @@ import org.xml.sax.SAXException;
new HashSet<RenderingEngineTemplate>(this.getForm().getRenderingEngineTemplates());
final List<RegenerateResult> result = new LinkedList<RegenerateResult>();
// regenerate existing renditions
boolean renditionLockedBefore = false;
String path = null;
for (final Rendition r : this.getRenditions())
{
final RenderingEngineTemplate ret = r.getRenderingEngineTemplate();
@@ -200,14 +205,36 @@ import org.xml.sax.SAXException;
}
try
{
LOGGER.debug("regenerating rendition " + r + " using template " + ret);
if (logger.isDebugEnabled())
logger.debug("regenerating rendition " + r + " using template " + ret);
renditionLockedBefore = false;
path = r.getPath();
AVMLock lock = avmLockService.getLock(AVMUtil.getStoreId(path), AVMUtil.getStoreRelativePath(path));
if (lock != null)
{
renditionLockedBefore = true;
if (logger.isDebugEnabled())
logger.debug("Lock already exists for " + path);
}
ret.render(this, r);
allRets.remove(ret);
result.add(new RegenerateResult(ret, r));
result.add(new RegenerateResult(ret, path, r));
}
catch (Exception e)
{
result.add(new RegenerateResult(ret, e));
result.add(new RegenerateResult(ret, path, e));
// remove lock if there wasn't one before
if (renditionLockedBefore == false)
{
avmLockService.removeLock(AVMUtil.getStoreId(path), AVMUtil.getStoreRelativePath(path));
if (logger.isDebugEnabled())
logger.debug("Removed lock for " + path + " as it failed to generate");
}
}
}
@@ -216,15 +243,36 @@ import org.xml.sax.SAXException;
{
try
{
final String path = ret.getOutputPathForRendition(this, originalParentAvmPath);
LOGGER.debug("regenerating rendition of " + this.getPath() +
renditionLockedBefore = false;
path = ret.getOutputPathForRendition(this, originalParentAvmPath);
if (logger.isDebugEnabled())
logger.debug("regenerating rendition of " + this.getPath() +
" at " + path + " using template " + ret);
result.add(new RegenerateResult(ret, ret.render(this, path)));
AVMLock lock = avmLockService.getLock(AVMUtil.getStoreId(path), AVMUtil.getStoreRelativePath(path));
if (lock != null)
{
renditionLockedBefore = true;
if (logger.isDebugEnabled())
logger.debug("Lock already exists for " + path);
}
result.add(new RegenerateResult(ret, path, ret.render(this, path)));
}
catch (Exception e)
{
result.add(new RegenerateResult(ret, e));
result.add(new RegenerateResult(ret, path, e));
// remove lock if there wasn't one before
if (renditionLockedBefore == false)
{
avmLockService.removeLock(AVMUtil.getStoreId(path), AVMUtil.getStoreRelativePath(path));
if (logger.isDebugEnabled())
logger.debug("Removed lock for " + path + " as it failed to generate");
}
}
}
return result;
@@ -244,7 +292,8 @@ import org.xml.sax.SAXException;
{
if (avmService.lookup(-1, storeName + ':' + (String)path) == null)
{
LOGGER.debug("ignoring dangling rendition at " + storeName + ':' + (String)path);
if (logger.isDebugEnabled())
logger.debug("ignoring dangling rendition at " + storeName + ':' + (String)path);
}
else
{
@@ -255,7 +304,8 @@ import org.xml.sax.SAXException;
{
if (!this.equals(r.getPrimaryFormInstanceData()))
{
LOGGER.debug("rendition " + r +
if (logger.isDebugEnabled())
logger.debug("rendition " + r +
" points at form instance data " + r.getPrimaryFormInstanceData() +
" instead of " + this + ". Not including in renditions list.");
continue;

View File

@@ -3674,6 +3674,27 @@
</managed-property>
</managed-bean>
<managed-bean>
<description>
The bean that backs up the Unlock File Dialog
</description>
<managed-bean-name>UnlockFileDialog</managed-bean-name>
<managed-bean-class>org.alfresco.web.bean.wcm.UnlockFileDialog</managed-bean-class>
<managed-bean-scope>session</managed-bean-scope>
<managed-property>
<property-name>avmService</property-name>
<value>#{AVMLockingAwareService}</value>
</managed-property>
<managed-property>
<property-name>avmLockingService</property-name>
<value>#{AVMLockingService}</value>
</managed-property>
<managed-property>
<property-name>avmBrowseBean</property-name>
<value>#{AVMBrowseBean}</value>
</managed-property>
</managed-bean>
<managed-bean>
<description>
The bean that backs up the Create AVM Folder Dialog

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB