mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
upgrading to chiba-1.3.0. there are several significant bug fixes that customers will notice - and several that make my life easier so i figure might as well go for it. things seem reasonably stable at this point so i'm comfortable with taking the hit sooner rather than later.
- adding chiba-1.3.0.jar in lib rather than chiba dir (removing chiba dir since we really only use one jar from them at this point) - need to generate xform with unprefixed id attributes - using a bunch of constants now defined within chiba. - generating my own xpaths in js using binding nodesets since chiba remove the once useful chiba:xpath attribute. - better error handling for breakage when processing schema and xform fixing bug in create form details screen where form-name and form-title weren't being prefilled after uploading the schema. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4625 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -109,9 +109,10 @@ public class UIFormProcessor extends SelfRenderingComponent
|
||||
out));
|
||||
}
|
||||
}
|
||||
catch (FormProcessor.ProcessingException fppe)
|
||||
catch (Throwable t)
|
||||
{
|
||||
Utils.addErrorMessage(fppe.getMessage(), fppe);
|
||||
Utils.addErrorMessage(t.getMessage(), t);
|
||||
out.write(t.toString());
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user