JBoss Tools SVN: r24577 - trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/contentassist/computers.
by jbosstools-commits@lists.jboss.org
Author: vrubezhny
Date: 2010-08-31 11:12:05 -0400 (Tue, 31 Aug 2010)
New Revision: 24577
Modified:
trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/contentassist/computers/XmlTagCompletionProposalComputer.java
Log:
JBIDE-6939: Code completion for attribute values works only for EL.
Issue is fixed
Modified: trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/contentassist/computers/XmlTagCompletionProposalComputer.java
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/contentassist/computers/XmlTagCompletionProposalComputer.java 2010-08-31 14:57:52 UTC (rev 24576)
+++ trunk/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/contentassist/computers/XmlTagCompletionProposalComputer.java 2010-08-31 15:12:05 UTC (rev 24577)
@@ -43,6 +43,7 @@
import org.jboss.tools.common.el.core.resolver.ELResolver;
import org.jboss.tools.common.el.core.resolver.ELResolverFactoryManager;
import org.jboss.tools.common.text.TextProposal;
+import org.jboss.tools.common.text.ext.util.Utils;
import org.jboss.tools.jst.jsp.contentassist.AutoContentAssistantProposal;
import org.jboss.tools.jst.web.kb.IPageContext;
import org.jboss.tools.jst.web.kb.KbQuery;
@@ -218,7 +219,7 @@
}
String matchString = contentAssistRequest.getMatchString();
- String query = matchString;
+ String query = Utils.trimQuotes(matchString);
if (query == null)
query = ""; //$NON-NLS-1$
String stringQuery = matchString;
14 years, 3 months
JBoss Tools SVN: r24576 - trunk/gwt/plugins/org.jboss.tools.gwt.core/META-INF.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2010-08-31 10:57:52 -0400 (Tue, 31 Aug 2010)
New Revision: 24576
Modified:
trunk/gwt/plugins/org.jboss.tools.gwt.core/META-INF/MANIFEST.MF
Log:
Modified: trunk/gwt/plugins/org.jboss.tools.gwt.core/META-INF/MANIFEST.MF
===================================================================
--- trunk/gwt/plugins/org.jboss.tools.gwt.core/META-INF/MANIFEST.MF 2010-08-31 14:34:41 UTC (rev 24575)
+++ trunk/gwt/plugins/org.jboss.tools.gwt.core/META-INF/MANIFEST.MF 2010-08-31 14:57:52 UTC (rev 24576)
@@ -8,7 +8,6 @@
Require-Bundle:
org.jboss.tools.common;bundle-version="[3.2.0,4.0.0)",
com.google.gwt.eclipse.core;bundle-version="[1.3.3,2.0.0)",
- com.google.gwt.eclipse.sdkbundle.2.0.4;bundle-version="[2.0.4,3.0.0)",
org.eclipse.core.runtime;bundle-version="[3.5.0,4.0.0)",
org.eclipse.wst.common.project.facet.core;bundle-version="[1.4.0,2.0.0)",
org.eclipse.core.resources;bundle-version="[3.5.0,4.0.0)",
14 years, 3 months
JBoss Tools SVN: r24575 - in trunk/ws/plugins: org.jboss.tools.ws.creation.core/src/org/jboss/tools/ws/creation/core/utils and 2 other directories.
by jbosstools-commits@lists.jboss.org
Author: bfitzpat
Date: 2010-08-31 10:34:41 -0400 (Tue, 31 Aug 2010)
New Revision: 24575
Added:
trunk/ws/plugins/org.jboss.tools.ws.creation.core/src/org/jboss/tools/ws/creation/core/utils/RestEasyLibUtils.java
Modified:
trunk/ws/plugins/org.jboss.tools.ws.creation.core/src/org/jboss/tools/ws/creation/core/messages/JBossWSCreationCore.properties
trunk/ws/plugins/org.jboss.tools.ws.creation.core/src/org/jboss/tools/ws/creation/core/messages/JBossWSCreationCoreMessages.java
trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUI.properties
trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUIMessages.java
trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossRSGenerateWizardPage.java
Log:
OPEN - issue JBIDE-6752: [restwizard] provide warning if selected web project does not have configured runtime
https://jira.jboss.org/browse/JBIDE-6752
Modified: trunk/ws/plugins/org.jboss.tools.ws.creation.core/src/org/jboss/tools/ws/creation/core/messages/JBossWSCreationCore.properties
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.creation.core/src/org/jboss/tools/ws/creation/core/messages/JBossWSCreationCore.properties 2010-08-31 12:14:24 UTC (rev 24574)
+++ trunk/ws/plugins/org.jboss.tools.ws.creation.core/src/org/jboss/tools/ws/creation/core/messages/JBossWSCreationCore.properties 2010-08-31 14:34:41 UTC (rev 24575)
@@ -38,6 +38,7 @@
Error_Create_Client_Sample=When create a client sample, a error comes up. Please check the generated files.
Error_No_Package=The service implementation selected does not follow Java naming conventions. This may result in not being able to generate your WebService.
Error_JBossWS_GenerateWizard_WSName_Same=The Web Service Name has been used in the web.xml of the web project.
+RestEasyLibUtils_Error_UnableToFindRuntimeForProject=Unable to find runtime associated with selected project.
RSMergeWebXMLCommand_REST_App_Exists=Rest Application exists with same name
RSMergeWebXMLCommand_REST_Servlet_Exists=RestEasy servlet already exists.
RSMergeWebXMLCommand_REST_Servlet_Mapping_Exists=RestEasy servlet mapping already exists.
Modified: trunk/ws/plugins/org.jboss.tools.ws.creation.core/src/org/jboss/tools/ws/creation/core/messages/JBossWSCreationCoreMessages.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.creation.core/src/org/jboss/tools/ws/creation/core/messages/JBossWSCreationCoreMessages.java 2010-08-31 12:14:24 UTC (rev 24574)
+++ trunk/ws/plugins/org.jboss.tools.ws.creation.core/src/org/jboss/tools/ws/creation/core/messages/JBossWSCreationCoreMessages.java 2010-08-31 14:34:41 UTC (rev 24575)
@@ -45,6 +45,8 @@
public static String Error_Message_No_Runtime_Specified;
public static String Error_JBossWS_GenerateWizard_WSName_Same;
+ public static String RestEasyLibUtils_Error_UnableToFindRuntimeForProject;
+
public static String RSMergeWebXMLCommand_REST_App_Exists;
public static String RSMergeWebXMLCommand_REST_Servlet_Exists;
Added: trunk/ws/plugins/org.jboss.tools.ws.creation.core/src/org/jboss/tools/ws/creation/core/utils/RestEasyLibUtils.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.creation.core/src/org/jboss/tools/ws/creation/core/utils/RestEasyLibUtils.java (rev 0)
+++ trunk/ws/plugins/org.jboss.tools.ws.creation.core/src/org/jboss/tools/ws/creation/core/utils/RestEasyLibUtils.java 2010-08-31 14:34:41 UTC (rev 24575)
@@ -0,0 +1,123 @@
+/**
+ * JBoss by Red Hat
+ * Copyright 2010, Red Hat Middleware, LLC, and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.tools.ws.creation.core.utils;
+
+import java.io.File;
+import java.io.FilenameFilter;
+
+import org.eclipse.core.resources.IProject;
+import org.eclipse.core.runtime.CoreException;
+import org.eclipse.core.runtime.IStatus;
+import org.eclipse.core.runtime.Status;
+import org.jboss.tools.ws.core.utils.StatusUtils;
+import org.jboss.tools.ws.creation.core.JBossWSCreationCorePlugin;
+import org.jboss.tools.ws.creation.core.messages.JBossWSCreationCoreMessages;
+
+/**
+ * @author bfitzpat
+ *
+ */
+public class RestEasyLibUtils {
+
+ private static final String REST_EASY = "RestEasy"; //$NON-NLS-1$
+ private static final String JAXRS_API_JAR = "jaxrs-api.jar"; //$NON-NLS-1$
+ private static final String LIB = "lib"; //$NON-NLS-1$
+
+ /**
+ * Simple check to see if the JBoss WS runtime associated with a project
+ * actually includes the RESTEasy jars. If so, returns Status.OK_STATUS.
+ * If not, returns null.
+ *
+ * @param project
+ * @return
+ */
+ public static IStatus doesRuntimeSupportRestEasy ( IProject project ) {
+ try {
+ String path =
+ JBossWSCreationUtils.getJBossWSRuntimeLocation(project);
+ File runtime = new File(path);
+ if (runtime.exists()) {
+ File findJar = findLibDir(runtime);
+ if (findJar == null) {
+ File parent = runtime.getParentFile();
+ if (parent.exists() && parent.isDirectory()) {
+ File[] restEasyDir = parent.listFiles(new FilenameFilter() {
+ public boolean accept(File dir, String name) {
+ if (name.equalsIgnoreCase(REST_EASY)) {
+ return true;
+ }
+ return false;
+ }
+ });
+ if (restEasyDir != null && restEasyDir.length > 0) {
+ findJar = findLibDir(restEasyDir[0]);
+ }
+ }
+ }
+ if (findJar == null) {
+ // if it's still null, resteasy's not installed
+ return StatusUtils.errorStatus(JBossWSCreationCoreMessages.AddRestEasyJarsCommand_RestEasy_JARS_Not_Found);
+ }
+ }
+ } catch (CoreException ce) {
+ return StatusUtils.errorStatus(JBossWSCreationCoreMessages.RestEasyLibUtils_Error_UnableToFindRuntimeForProject);
+ }
+ return Status.OK_STATUS;
+ }
+
+ /*
+ * Finds the RESTEasy lib in the runtime path
+ * @param in
+ * @return
+ */
+ private static File findLibDir ( File in ) {
+ File[] children =
+ in.listFiles(new FilenameFilter() {
+ public boolean accept(File dir, String name) {
+ if (dir.isDirectory() && name.equals(LIB)) {
+ return true;
+ }
+ return false;
+ }
+ });
+ if (children != null ) {
+ for (int i = 0; i < children.length; i++) {
+ File libDir = (File) children[i];
+ if (libDir.exists() && libDir.isDirectory()) {
+ File[] jars = libDir.listFiles(new FilenameFilter() {
+ public boolean accept(File dir, String name) {
+ if (name.equalsIgnoreCase(JAXRS_API_JAR)) {
+ return true;
+ }
+ return false;
+ }
+ });
+ if (jars != null && jars.length > 0) {
+ return libDir;
+ }
+ }
+ }
+ }
+ return null;
+ }
+
+}
Property changes on: trunk/ws/plugins/org.jboss.tools.ws.creation.core/src/org/jboss/tools/ws/creation/core/utils/RestEasyLibUtils.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Modified: trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUI.properties
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUI.properties 2010-08-31 12:14:24 UTC (rev 24574)
+++ trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUI.properties 2010-08-31 14:34:41 UTC (rev 24575)
@@ -7,6 +7,7 @@
# END NON-TRANSLATABLE
JBossRSGenerateWizard_RS_Wizard_Window_Title=Generate a Sample RESTful Web Service
+JBossRSGenerateWizardPage_Error_RestEasyJarsNotFoundInRuntime=RESTEasy jars not found in the runtime associated with the selected project. Make sure RESTEasy is installed and try again.
JBossRSGenerateWizardPage_Label_Application_Class_Name=Application Class Name:
JBossRSGenerateWizardPage_Page_title=Specify the Dynamic Web Project, service, package and class name for the sample web service and web service classes.
JBossRSGenerateWizardValidator_ERROR_Can_Only_Add_Sample_Once=Project already has the sample RESTful service installed. Cannot be added a second time.
Modified: trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUIMessages.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUIMessages.java 2010-08-31 12:14:24 UTC (rev 24574)
+++ trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUIMessages.java 2010-08-31 14:34:41 UTC (rev 24575)
@@ -39,6 +39,7 @@
public static String Endorsed;
public static String JBossRSGenerateWizard_RS_Wizard_Window_Title;
+ public static String JBossRSGenerateWizardPage_Error_RestEasyJarsNotFoundInRuntime;
public static String JBossRSGenerateWizardPage_Label_Application_Class_Name;
public static String JBossRSGenerateWizardPage_Page_title;
public static String JBossRSGenerateWizardValidator_ERROR_Can_Only_Add_Sample_Once;
Modified: trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossRSGenerateWizardPage.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossRSGenerateWizardPage.java 2010-08-31 12:14:24 UTC (rev 24574)
+++ trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/wizards/JBossRSGenerateWizardPage.java 2010-08-31 14:34:41 UTC (rev 24575)
@@ -36,6 +36,7 @@
import org.eclipse.swt.widgets.Text;
import org.jboss.tools.ws.creation.core.data.ServiceModel;
import org.jboss.tools.ws.creation.core.utils.JBossWSCreationUtils;
+import org.jboss.tools.ws.creation.core.utils.RestEasyLibUtils;
import org.jboss.tools.ws.ui.messages.JBossWSUIMessages;
public class JBossRSGenerateWizardPage extends WizardPage {
@@ -324,6 +325,13 @@
setErrorMessage(JBossWSUIMessages.Error_JBossWS_GenerateWizard_NotDynamicWebProject);
return false;
}
+
+ IStatus reInstalledStatus =
+ RestEasyLibUtils.doesRuntimeSupportRestEasy(((JBossRSGenerateWizard) this.getWizard()).getProject());
+ if (reInstalledStatus.getSeverity() != IStatus.OK){
+ setErrorMessage(JBossWSUIMessages.JBossRSGenerateWizardPage_Error_RestEasyJarsNotFoundInRuntime);
+ return false;
+ }
// no source folder in web project
try {
14 years, 3 months
JBoss Tools SVN: r24574 - trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/internal/mapping/details.
by jbosstools-commits@lists.jboss.org
Author: dgeraskov
Date: 2010-08-31 08:14:24 -0400 (Tue, 31 Aug 2010)
New Revision: 24574
Modified:
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/internal/mapping/details/HibernateDiscriminatorColumnComposite.java
Log:
https://jira.jboss.org/browse/JBIDE-4663
Initialize discriminator formula
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/internal/mapping/details/HibernateDiscriminatorColumnComposite.java
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/internal/mapping/details/HibernateDiscriminatorColumnComposite.java 2010-08-31 11:37:39 UTC (rev 24573)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/internal/mapping/details/HibernateDiscriminatorColumnComposite.java 2010-08-31 12:14:24 UTC (rev 24574)
@@ -86,7 +86,7 @@
@Override
protected void initialize() {
super.initialize();
- discriminatorFormulaHolder = new SimplePropertyValueModel<DiscriminatorFormula>();
+ discriminatorFormulaHolder = new SimplePropertyValueModel<DiscriminatorFormula>(getSubject().getDiscriminatorFormula());
}
@Override
14 years, 3 months
JBoss Tools SVN: r24573 - trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/dialog.
by jbosstools-commits@lists.jboss.org
Author: dmaliarevich
Date: 2010-08-31 07:37:39 -0400 (Tue, 31 Aug 2010)
New Revision: 24573
Modified:
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/dialog/ExternalizeStringsWizardPage.java
Log:
https://jira.jboss.org/browse/JBIDE-6945 , initial error message was removed, key value was updated.
Modified: trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/dialog/ExternalizeStringsWizardPage.java
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/dialog/ExternalizeStringsWizardPage.java 2010-08-31 09:38:47 UTC (rev 24572)
+++ trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/dialog/ExternalizeStringsWizardPage.java 2010-08-31 11:37:39 UTC (rev 24573)
@@ -108,7 +108,7 @@
private Group propsFilesGroup;
private Status propsKeyStatus;
private Status propsValueStatus;
- private Status rbComboStatus;
+ private Status duplicateKeyStatus;
private Table tagsTable;
@@ -133,7 +133,7 @@
}
propsKeyStatus = new Status(IStatus.OK, VpePlugin.PLUGIN_ID, Constants.EMPTY);
propsValueStatus = new Status(IStatus.OK, VpePlugin.PLUGIN_ID, Constants.EMPTY);
- rbComboStatus = new Status(IStatus.OK, VpePlugin.PLUGIN_ID, Constants.EMPTY);
+ duplicateKeyStatus = new Status(IStatus.OK, VpePlugin.PLUGIN_ID, Constants.EMPTY);
}
public void createControl(Composite parent) {
@@ -332,8 +332,6 @@
/*
* Update text string field.
* Trim the text to remove line breaks and caret returns.
- */
- /*
* Replace line delimiters white space
*/
for (char ch : LINE_DELEMITERS) {
@@ -365,6 +363,42 @@
}
}
/*
+ * Check the initial key value
+ * If there is the error - add sequence number to the key
+ */
+ updateDuplicateKeyStatus();
+ while (!duplicateKeyStatus.isOK()) {
+ int index = propsKey.getText().lastIndexOf('_');
+ String newKey = Constants.EMPTY;
+ if (index != -1) {
+ /*
+ * String sequence at the end should be checked.
+ * If it is a sequence number - it should be increased by 1.
+ * If not - new number should be added.
+ */
+ String numberString = propsKey.getText().substring(index + 1);
+ int number;
+ try {
+ number = Integer.parseInt(numberString);
+ number++;
+ newKey = propsKey.getText().substring(0, index + 1) + number;
+ } catch (NumberFormatException e) {
+ newKey = propsKey.getText() + "_1"; //$NON-NLS-1$
+ }
+ } else {
+ /*
+ * If the string has no sequence number - add it.
+ */
+ newKey = propsKey.getText() + "_1"; //$NON-NLS-1$
+ }
+ /*
+ * Set the new key text
+ * Update the key status
+ */
+ propsKey.setText(newKey);
+ updateDuplicateKeyStatus();
+ }
+ /*
* Update status message.
*/
updateStatus();
@@ -559,12 +593,12 @@
*/
private void updateDuplicateKeyStatus() {
if (isDuplicatedKey(propsKey.getText())) {
- rbComboStatus = new Status(
+ duplicateKeyStatus = new Status(
IStatus.ERROR,
VpePlugin.PLUGIN_ID,
VpeUIMessages.EXTERNALIZE_STRINGS_DIALOG_KEY_ALREADY_EXISTS);
} else {
- rbComboStatus = new Status(IStatus.OK, VpePlugin.PLUGIN_ID, Constants.EMPTY);
+ duplicateKeyStatus = new Status(IStatus.OK, VpePlugin.PLUGIN_ID, Constants.EMPTY);
}
}
@@ -611,7 +645,7 @@
/*
* Apply status to the dialog
*/
- applyStatus(this, new IStatus[] {propsKeyStatus, propsValueStatus, rbComboStatus});
+ applyStatus(this, new IStatus[] {propsKeyStatus, propsValueStatus, duplicateKeyStatus});
/*
* Set page complete
*/
14 years, 3 months
JBoss Tools SVN: r24572 - trunk/vpe/plugins/org.jboss.tools.vpe.docbook/templates.
by jbosstools-commits@lists.jboss.org
Author: dvinnichek
Date: 2010-08-31 05:38:47 -0400 (Tue, 31 Aug 2010)
New Revision: 24572
Modified:
trunk/vpe/plugins/org.jboss.tools.vpe.docbook/templates/vpe-templates-docbook.xml
Log:
fix for 'Add additional templates for docbook editor' (https://jira.jboss.org/browse/JBIDE-6805)
Modified: trunk/vpe/plugins/org.jboss.tools.vpe.docbook/templates/vpe-templates-docbook.xml
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe.docbook/templates/vpe-templates-docbook.xml 2010-08-31 06:21:47 UTC (rev 24571)
+++ trunk/vpe/plugins/org.jboss.tools.vpe.docbook/templates/vpe-templates-docbook.xml 2010-08-31 09:38:47 UTC (rev 24572)
@@ -25,6 +25,11 @@
<div />
</vpe:template>
</vpe:tag>
+ <vpe:tag name="bookinfo" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes">
+ <span class="vpe-text"/>
+ </vpe:template>
+ </vpe:tag>
<vpe:tag name="title" case-sensitive="yes" docbook="yes">
<vpe:template children="no" modify="yes">
<h1>
@@ -32,11 +37,61 @@
</h1>
</vpe:template>
</vpe:tag>
+ <vpe:tag name="subtitle" case-sensitive="yes" docbook="yes">
+ <vpe:template children="no" modify="yes">
+ <h2>
+ <vpe:value expr="{tagtext()}" />
+ </h2>
+ </vpe:template>
+ </vpe:tag>
+ <vpe:tag name="productname" case-sensitive="yes" docbook="yes">
+ <vpe:template children="no" modify="yes">
+ <label>
+ <vpe:value expr="{tagtext()}" />
+ </label>
+ </vpe:template>
+ </vpe:tag>
+ <vpe:tag name="productnumber" case-sensitive="yes" docbook="yes">
+ <vpe:template children="no" modify="yes">
+ <label>
+ <vpe:value expr=" {tagtext()}" />
+ </label>
+ </vpe:template>
+ </vpe:tag>
+ <vpe:tag name="edition" case-sensitive="yes" docbook="yes">
+ <vpe:template children="no" modify="yes">
+ <label>
+ <vpe:value expr=" (v.{tagtext()})" />
+ </label>
+ </vpe:template>
+ </vpe:tag>
+ <vpe:tag name="pubsnumber" case-sensitive="yes" docbook="yes">
+ <vpe:template children="no" modify="yes">
+ <div>
+ <vpe:value expr="pubsnumber: {tagtext()}" />
+ </div>
+ </vpe:template>
+ </vpe:tag>
+ <vpe:tag name="abstract" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes">
+ <span class="vpe-text"/>
+ </vpe:template>
+ </vpe:tag>
<vpe:tag name="para" case-sensitive="yes" docbook="yes">
<vpe:template children="yes" modify="yes">
<p />
</vpe:template>
</vpe:tag>
+ <vpe:tag name="corpauthor" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes">
+ <span class="vpe-text"/>
+ </vpe:template>
+ </vpe:tag>
+ <vpe:tag name="inlinemediaobject" case-sensitive="yes">
+ <vpe:template children="yes" modify="yes">
+ <span class="vpe-text"/>
+ </vpe:template>
+ </vpe:tag>
<vpe:tag name="itemizedlist" case-sensitive="yes" docbook="yes">
<vpe:template children="yes" modify="yes">
<ul />
14 years, 3 months
JBoss Tools SVN: r24568 - in trunk/drools: features/org.drools.eclipse.task.feature and 4 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-08-30 21:39:23 -0400 (Mon, 30 Aug 2010)
New Revision: 24568
Modified:
trunk/drools/features/org.drools.eclipse.feature/pom.xml
trunk/drools/features/org.drools.eclipse.task.feature/pom.xml
trunk/drools/features/org.guvnor.tools.feature/pom.xml
trunk/drools/plugins/org.drools.eclipse.task/pom.xml
trunk/drools/plugins/org.drools.eclipse/pom.xml
trunk/drools/plugins/org.guvnor.tools/pom.xml
Log:
bump up to Drools 5.1.1
Modified: trunk/drools/features/org.drools.eclipse.feature/pom.xml
===================================================================
--- trunk/drools/features/org.drools.eclipse.feature/pom.xml 2010-08-31 01:29:24 UTC (rev 24567)
+++ trunk/drools/features/org.drools.eclipse.feature/pom.xml 2010-08-31 01:39:23 UTC (rev 24568)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.drools.features</groupId>
<artifactId>org.drools.eclipse.feature</artifactId>
- <version>5.1.0</version>
+ <version>5.1.1</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/drools/features/org.drools.eclipse.task.feature/pom.xml
===================================================================
--- trunk/drools/features/org.drools.eclipse.task.feature/pom.xml 2010-08-31 01:29:24 UTC (rev 24567)
+++ trunk/drools/features/org.drools.eclipse.task.feature/pom.xml 2010-08-31 01:39:23 UTC (rev 24568)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.drools.features</groupId>
<artifactId>org.drools.eclipse.task.feature</artifactId>
- <version>5.1.0</version>
+ <version>5.1.1</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/drools/features/org.guvnor.tools.feature/pom.xml
===================================================================
--- trunk/drools/features/org.guvnor.tools.feature/pom.xml 2010-08-31 01:29:24 UTC (rev 24567)
+++ trunk/drools/features/org.guvnor.tools.feature/pom.xml 2010-08-31 01:39:23 UTC (rev 24568)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.drools.features</groupId>
<artifactId>org.guvnor.tools.feature</artifactId>
- <version>5.1.0</version>
+ <version>5.1.1</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/drools/plugins/org.drools.eclipse/pom.xml
===================================================================
--- trunk/drools/plugins/org.drools.eclipse/pom.xml 2010-08-31 01:29:24 UTC (rev 24567)
+++ trunk/drools/plugins/org.drools.eclipse/pom.xml 2010-08-31 01:39:23 UTC (rev 24568)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.drools.plugins</groupId>
<artifactId>org.drools.eclipse</artifactId>
- <version>5.1.0</version>
+ <version>5.1.1</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/drools/plugins/org.drools.eclipse.task/pom.xml
===================================================================
--- trunk/drools/plugins/org.drools.eclipse.task/pom.xml 2010-08-31 01:29:24 UTC (rev 24567)
+++ trunk/drools/plugins/org.drools.eclipse.task/pom.xml 2010-08-31 01:39:23 UTC (rev 24568)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.drools.plugins</groupId>
<artifactId>org.drools.eclipse.task</artifactId>
- <version>5.1.0</version>
+ <version>5.1.1</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/drools/plugins/org.guvnor.tools/pom.xml
===================================================================
--- trunk/drools/plugins/org.guvnor.tools/pom.xml 2010-08-31 01:29:24 UTC (rev 24567)
+++ trunk/drools/plugins/org.guvnor.tools/pom.xml 2010-08-31 01:39:23 UTC (rev 24568)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.drools.plugins</groupId>
<artifactId>org.guvnor.tools</artifactId>
- <version>5.1.0</version>
+ <version>5.1.1</version>
<packaging>eclipse-plugin</packaging>
</project>
14 years, 3 months