[JBoss JIRA] Created: (JBPM-1809) Installer improvements
by Thomas Diesler (JIRA)
Installer improvements
----------------------
Key: JBPM-1809
URL: https://jira.jboss.org/jira/browse/JBPM-1809
Project: JBoss jBPM
Issue Type: Task
Security Level: Public (Everyone can see)
Reporter: Thomas Diesler
Fix For: jBPM 3.3.1 GA
* Instead of "Install Path" we should have something like "Where is your JBoss installed ?" And as the default, the value should be ${jbpm.installation.directory}/jboss-${jboss.version}
* For eclipse, if eclipse is downloaded, a destination directory for eclipse should be asked. The default should be ${jbpm.installation.directory}/eclipse
* It would be good if the last page of the installer (after successfull completion) would provide a link to the wiki that describes the installation of the designer plugin through the site mechanism.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 11 months
[JBoss JIRA] Created: (JBPM-1194) Enable variable reference evaluation in Mail Templates
by Matthias Grossmann (JIRA)
Enable variable reference evaluation in Mail Templates
------------------------------------------------------
Key: JBPM-1194
URL: http://jira.jboss.com/jira/browse/JBPM-1194
Project: JBoss jBPM
Issue Type: Patch
Components: Core Engine
Affects Versions: jBPM jPDL 3.2
Reporter: Matthias Grossmann
Assigned To: Tom Baeyens
Changes in org.jbpm.mail.Mail:
public String getSubject() {
if (subject==null) return null;
Object parsedValue = null;
String ret = subject;
do {
ret = evaluate(ret);
ret = JbpmExpressionEvaluator.translateExpressionToDollars(ret);
parsedValue = new ExpressionEvaluatorImpl().parseExpressionString(ret);
} while (!(parsedValue instanceof String));
return ret;
}
public String getText() {
if (text==null) return null;
Object parsedValue = null;
String ret = text;
do {
ret = evaluate(ret);
ret = JbpmExpressionEvaluator.translateExpressionToDollars(ret);
parsedValue = new ExpressionEvaluatorImpl().parseExpressionString(ret);
} while (!(parsedValue instanceof String));
return ret;
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years, 11 months