mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Point checkin.
Virt server notification is still needed for submit & rollback ops. AVMHostConfig.java Made virt server clean up virtual webapps in work dir when sandboxes and/or web projects are deleted. AVMUrlValve.java Made virt server respond with an error page when a bad virtual hostname is accessed (rather than just put up a blank page and throw an exception in the logfile). The error page is currently hard-coded in English (hopefully that will change soon). AVMEditBean.java Inserted more virt server notifications DeleteWebsiteDialog.java Inserted virt server notification git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4908 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -48,6 +48,31 @@ public class DeleteWebsiteDialog extends DeleteSpaceDialog
|
||||
|
||||
// delete all attached website sandboxes in reverse order to the layering
|
||||
String storeRoot = (String)websiteNode.getProperties().get(WCMAppModel.PROP_AVMSTORE);
|
||||
|
||||
// Notifiy virtualization server about removing this website
|
||||
//
|
||||
// Implementation note:
|
||||
//
|
||||
// Because the removal of virtual webapps in the virtualization
|
||||
// server is recursive, it only needs to be given the name of
|
||||
// the main staging store.
|
||||
//
|
||||
// This notification must occur *prior* to purging content
|
||||
// within the AVM because the virtualization server must list
|
||||
// the avm_webapps dir in each store to discover which
|
||||
// virtual webapps must be unloaded. The virtualization
|
||||
// server traverses the sandbox's stores in most-to-least
|
||||
// dependent order, so clients don't have to worry about
|
||||
// accessing a preview layer whose main layer has been torn
|
||||
// out from under it.
|
||||
//
|
||||
// It does not matter what webapp name we give here, so "/ROOT"
|
||||
// is as sensible as anything else. It's all going away.
|
||||
|
||||
String sandbox = AVMConstants.buildStagingStoreName(storeRoot);
|
||||
String path = AVMConstants.buildStoreWebappPath(sandbox, "/ROOT");
|
||||
AVMConstants.removeVServerWebapp(path, true);
|
||||
|
||||
|
||||
// get the list of users who have a sandbox in the website
|
||||
List<ChildAssociationRef> userInfoRefs = nodeService.getChildAssocs(
|
||||
|
Reference in New Issue
Block a user