Merge "441140 - Added copy/cut/paste to description field in Project settings"
diff --git a/ecl/plugins/org.eclipse.rcptt.ecl.core/src/org/eclipse/rcptt/ecl/core/util/CommandToStringConverter.java b/ecl/plugins/org.eclipse.rcptt.ecl.core/src/org/eclipse/rcptt/ecl/core/util/CommandToStringConverter.java
index c5a8a00..698e98c 100644
--- a/ecl/plugins/org.eclipse.rcptt.ecl.core/src/org/eclipse/rcptt/ecl/core/util/CommandToStringConverter.java
+++ b/ecl/plugins/org.eclipse.rcptt.ecl.core/src/org/eclipse/rcptt/ecl/core/util/CommandToStringConverter.java
@@ -162,7 +162,7 @@
} else {
EReference ref = (EReference) feature;
EClass eclass = ref.getEReferenceType();
- if (eclass.getEPackage().getName() == CorePackage.eNAME
+ if (eclass.getEPackage() == CorePackage.eINSTANCE
&& eclass.getClassifierID() == CorePackage.COMMAND) {
boolean singleLine = !(val instanceof Sequence);
formatter.addAttrName(name, forced);
diff --git a/releng/publish.sh b/releng/publish.sh
index bbfbceb..7f93491 100755
--- a/releng/publish.sh
+++ b/releng/publish.sh
@@ -35,6 +35,8 @@
# copy full repository
cp -r $WORKSPACE/repository/full/target/repository $buildDestination
+# copy full repository archive
+cp -r $WORKSPACE/repository/full/target/full-$productVersion-SNAPSHOT.zip $buildDestination/repository-$productVersion-$typeAbbr$productQualifier.zip
# copy runtimes
cp -r $WORKSPACE/runtime/updates/org.eclipse.rcptt.updates.runtime/q7 $buildDestination/runtime3x
@@ -56,6 +58,7 @@
mkdir -p $latest
cp -r $buildDestination/repository $latest/repository
+cp -r $buildDestination/repository-$productVersion-$typeAbbr$productQualifier.zip $latest/repository-nightly.zip
cp -r $buildDestination/runtime3x $latest/runtime3x
cp -r $buildDestination/runtime4x $latest/runtime4x