JBoss Tools SVN: r24246 - in trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/internal: mapping/details and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: dgeraskov
Date: 2010-08-18 02:01:35 -0400 (Wed, 18 Aug 2010)
New Revision: 24246
Modified:
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/internal/java/details/HibernateJavaEntityComposite.java
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/internal/mapping/details/HibernateBasicMappingComposite.java
Log:
https://jira.jboss.org/browse/JBIDE-6859
The UI for @DiscriminatorFormula @Generated disappeared
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/internal/java/details/HibernateJavaEntityComposite.java
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/internal/java/details/HibernateJavaEntityComposite.java 2010-08-18 05:51:05 UTC (rev 24245)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/internal/java/details/HibernateJavaEntityComposite.java 2010-08-18 06:01:35 UTC (rev 24246)
@@ -16,7 +16,6 @@
import org.eclipse.jpt.ui.internal.details.AbstractEntityComposite;
import org.eclipse.jpt.ui.internal.details.EntityNameComposite;
import org.eclipse.jpt.ui.internal.details.IdClassComposite;
-import org.eclipse.jpt.ui.internal.details.java.JavaInheritanceComposite;
import org.eclipse.jpt.ui.internal.details.java.JavaSecondaryTablesComposite;
import org.eclipse.jpt.utility.internal.model.value.PropertyAspectAdapter;
import org.eclipse.jpt.utility.model.value.PropertyValueModel;
@@ -81,7 +80,7 @@
@Override
protected void initializeInheritanceSection(Composite container) {
- new JavaInheritanceComposite(this, container);
+ new HibernateJavaInheritanceComposite(this, container);
}
}
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/internal/mapping/details/HibernateBasicMappingComposite.java
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/internal/mapping/details/HibernateBasicMappingComposite.java 2010-08-18 05:51:05 UTC (rev 24245)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/src/org/jboss/tools/hibernate/jpt/ui/internal/mapping/details/HibernateBasicMappingComposite.java 2010-08-18 06:01:35 UTC (rev 24246)
@@ -23,6 +23,7 @@
import org.eclipse.jpt.utility.model.value.PropertyValueModel;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
+import org.jboss.tools.hibernate.jpt.core.internal.context.Generated;
import org.jboss.tools.hibernate.jpt.core.internal.context.HibernateColumn;
import org.jboss.tools.hibernate.jpt.core.internal.context.IndexHolder;
@@ -99,6 +100,9 @@
protected void initializeBasicSection(Composite container) {
new HibernateColumnComposite(this, (PropertyValueModel<? extends HibernateColumn>) buildColumnHolder(), container);
+ if (getSubject() instanceof Generated) {
+ new GeneratedComposite((Pane<? extends Generated>) this, container);
+ }
new FetchTypeComposite(this, container);
new OptionalComposite(this, addSubPane(container, 4));
}
15 years, 4 months
JBoss Tools SVN: r24245 - trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/editor.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2010-08-18 01:51:05 -0400 (Wed, 18 Aug 2010)
New Revision: 24245
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/editor/DeploymentModuleOptionCompositeAssistant.java
Log:
JBIDE-6858 - NPE when using local copy server type
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/editor/DeploymentModuleOptionCompositeAssistant.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/editor/DeploymentModuleOptionCompositeAssistant.java 2010-08-18 01:12:08 UTC (rev 24244)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/editor/DeploymentModuleOptionCompositeAssistant.java 2010-08-18 05:51:05 UTC (rev 24245)
@@ -190,12 +190,7 @@
Composite inner = toolkit.createComposite(composite);
inner.setLayout(new GridLayout(1, false));
- IRuntime rt = getServer().getServer().getRuntime();
- boolean showRadios = true;
- if( rt == null || rt.loadAdapter(IJBossServerRuntime.class, null) == null)
- showRadios = false;
-
- if( showRadios ) {
+ if( getShowRadios() ) {
metadataRadio = toolkit.createButton(inner,
Messages.EditorUseWorkspaceMetadata, SWT.RADIO);
serverRadio = toolkit.createButton(inner,
@@ -356,19 +351,31 @@
return section;
}
+ protected boolean getShowRadios() {
+ IRuntime rt = getServer().getServer().getRuntime();
+ boolean showRadios = true;
+ if( rt == null || rt.loadAdapter(IJBossServerRuntime.class, null) == null)
+ showRadios = false;
+ return showRadios;
+ }
+
private void updateWidgets() {
- metadataRadio.setSelection(getDeployType().equals(
- IDeployableServer.DEPLOY_METADATA));
- serverRadio.setSelection(getDeployType().equals(
- IDeployableServer.DEPLOY_SERVER));
- customRadio.setSelection(getDeployType().equals(
- IDeployableServer.DEPLOY_CUSTOM));
- currentSelection = metadataRadio.getSelection() ? metadataRadio
- : serverRadio.getSelection() ? serverRadio : customRadio;
+ if( getShowRadios()) {
+ metadataRadio.setSelection(getDeployType().equals(
+ IDeployableServer.DEPLOY_METADATA));
+ serverRadio.setSelection(getDeployType().equals(
+ IDeployableServer.DEPLOY_SERVER));
+ customRadio.setSelection(getDeployType().equals(
+ IDeployableServer.DEPLOY_CUSTOM));
+ currentSelection = metadataRadio.getSelection() ? metadataRadio
+ : serverRadio.getSelection() ? serverRadio : customRadio;
+
+ String mode = page.getServer().getAttribute(IDeployableServer.SERVER_MODE, LocalPublishMethod.LOCAL_PUBLISH_METHOD);
+ boolean metaEnabled = callbackMappings.get(mode).metadataEnabled();
+ metadataRadio.setEnabled(metaEnabled);
+ }
- String mode = page.getServer().getAttribute(IDeployableServer.SERVER_MODE, LocalPublishMethod.LOCAL_PUBLISH_METHOD);
- boolean metaEnabled = callbackMappings.get(mode).metadataEnabled();
- metadataRadio.setEnabled(metaEnabled);
+
JBossServer jbs = ServerConverter.getJBossServer(page.getServer().getOriginal());
String newDir = getHelper().getAttribute(IDeployableServer.DEPLOY_DIRECTORY,
jbs == null ? "" : jbs.getDeployFolder(jbs, getDeployType()));
15 years, 4 months
JBoss Tools SVN: r24244 - in trunk/usage: features and 7 other directories.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-08-17 21:12:08 -0400 (Tue, 17 Aug 2010)
New Revision: 24244
Added:
trunk/usage/features/
trunk/usage/features/org.jboss.tools.usage.test/
trunk/usage/features/org.jboss.tools.usage.test/.project
trunk/usage/features/org.jboss.tools.usage.test/build.properties
trunk/usage/features/org.jboss.tools.usage.test/feature.properties
trunk/usage/features/org.jboss.tools.usage.test/feature.xml
trunk/usage/features/org.jboss.tools.usage.test/pom.xml
trunk/usage/features/org.jboss.tools.usage/
trunk/usage/features/org.jboss.tools.usage/.project
trunk/usage/features/org.jboss.tools.usage/build.properties
trunk/usage/features/org.jboss.tools.usage/feature.properties
trunk/usage/features/org.jboss.tools.usage/feature.xml
trunk/usage/features/org.jboss.tools.usage/license.html
trunk/usage/features/org.jboss.tools.usage/pom.xml
trunk/usage/features/pom.xml
trunk/usage/plugins/org.jboss.tools.usage/plugin.properties
trunk/usage/plugins/org.jboss.tools.usage/pom.xml
trunk/usage/plugins/pom.xml
trunk/usage/pom.xml
trunk/usage/tests/org.jboss.tools.usage.test/pom.xml
Modified:
trunk/usage/plugins/org.jboss.tools.usage/META-INF/MANIFEST.MF
trunk/usage/site/site.xml
Log:
https://jira.jboss.org/browse/JBIDE-6857 Include Usage component into JBT build
pom.xml files for maven build added
missing features added just in case
update site for nightly builds is created
Added: trunk/usage/features/org.jboss.tools.usage/.project
===================================================================
--- trunk/usage/features/org.jboss.tools.usage/.project (rev 0)
+++ trunk/usage/features/org.jboss.tools.usage/.project 2010-08-18 01:12:08 UTC (rev 24244)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.jboss.tools.usage.feature</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.pde.FeatureBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.FeatureNature</nature>
+ </natures>
+</projectDescription>
Added: trunk/usage/features/org.jboss.tools.usage/build.properties
===================================================================
--- trunk/usage/features/org.jboss.tools.usage/build.properties (rev 0)
+++ trunk/usage/features/org.jboss.tools.usage/build.properties 2010-08-18 01:12:08 UTC (rev 24244)
@@ -0,0 +1,3 @@
+bin.includes = feature.xml,\
+ license.html,\
+ feature.properties
Added: trunk/usage/features/org.jboss.tools.usage/feature.properties
===================================================================
--- trunk/usage/features/org.jboss.tools.usage/feature.properties (rev 0)
+++ trunk/usage/features/org.jboss.tools.usage/feature.properties 2010-08-18 01:12:08 UTC (rev 24244)
@@ -0,0 +1,54 @@
+###############################################################################
+# Copyright (c) 2008-2010 JBoss by Red Hat and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# JBoss by Red Hat - Initial implementation.
+##############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=JBoss Tools Usage Reporting
+
+# "providerName" property - name of the company that provides the feature
+providerName=JBoss by Red Hat
+
+# "updateSiteName" property - label for the update site
+updateSiteName=JBossTools Update Site
+
+# "description" property - description of the feature
+description=JBoss Tools Usage Reporting
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=Copyright (c) 2008-2010 JBoss by Red Hat and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http\://www.eclipse.org/legal/epl-v10.html\n\n\
+Contributors\:\n\
+JBoss by Red Hat - Initial implementation.
+ ############### end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# START NON-TRANSLATABLE
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=Red Hat, Inc. licenses these features and plugins to you under \
+certain open source licenses (or aggregations of such licenses), which \
+in a particular case may include the Eclipse Public License, the GNU \
+Lesser General Public License, and/or certain other open source \
+licenses. For precise licensing details, consult the corresponding \
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive, \
+Raleigh NC 27606 USA.
+# END NON-TRANSLATABLE
+########### end of license property ##########################################
Added: trunk/usage/features/org.jboss.tools.usage/feature.xml
===================================================================
--- trunk/usage/features/org.jboss.tools.usage/feature.xml (rev 0)
+++ trunk/usage/features/org.jboss.tools.usage/feature.xml 2010-08-18 01:12:08 UTC (rev 24244)
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.tools.usage"
+ label="%featureName"
+ version="1.0.0.qualifier"
+ provider-name="%providerName">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ %copyright
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <plugin
+ id="org.jboss.tools.usage"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+</feature>
Added: trunk/usage/features/org.jboss.tools.usage/license.html
===================================================================
--- trunk/usage/features/org.jboss.tools.usage/license.html (rev 0)
+++ trunk/usage/features/org.jboss.tools.usage/license.html 2010-08-18 01:12:08 UTC (rev 24244)
@@ -0,0 +1,14 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<html>
+
+<body>
+<p>Red Hat, Inc. licenses these features and plugins to you under
+certain open source licenses (or aggregations of such licenses), which
+in a particular case may include the Eclipse Public License, the GNU
+Lesser General Public License, and/or certain other open source
+licenses. For precise licensing details, consult the corresponding
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive,
+Raleigh NC 27606 USA.
+</p>
+</body>
+</html>
\ No newline at end of file
Property changes on: trunk/usage/features/org.jboss.tools.usage/license.html
___________________________________________________________________
Name: svn:executable
+ *
Added: trunk/usage/features/org.jboss.tools.usage/pom.xml
===================================================================
--- trunk/usage/features/org.jboss.tools.usage/pom.xml (rev 0)
+++ trunk/usage/features/org.jboss.tools.usage/pom.xml 2010-08-18 01:12:08 UTC (rev 24244)
@@ -0,0 +1,14 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.usage.features</groupId>
+ <artifactId>org.jboss.tools.usage</artifactId>
+ <name>org.jboss.tools.usage.feature</name>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+</project>
Added: trunk/usage/features/org.jboss.tools.usage.test/.project
===================================================================
--- trunk/usage/features/org.jboss.tools.usage.test/.project (rev 0)
+++ trunk/usage/features/org.jboss.tools.usage.test/.project 2010-08-18 01:12:08 UTC (rev 24244)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.jboss.tools.usage.test.feature</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.pde.FeatureBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.FeatureNature</nature>
+ </natures>
+</projectDescription>
Added: trunk/usage/features/org.jboss.tools.usage.test/build.properties
===================================================================
--- trunk/usage/features/org.jboss.tools.usage.test/build.properties (rev 0)
+++ trunk/usage/features/org.jboss.tools.usage.test/build.properties 2010-08-18 01:12:08 UTC (rev 24244)
@@ -0,0 +1 @@
+bin.includes = feature.xml
Added: trunk/usage/features/org.jboss.tools.usage.test/feature.properties
===================================================================
--- trunk/usage/features/org.jboss.tools.usage.test/feature.properties (rev 0)
+++ trunk/usage/features/org.jboss.tools.usage.test/feature.properties 2010-08-18 01:12:08 UTC (rev 24244)
@@ -0,0 +1,54 @@
+###############################################################################
+# Copyright (c) 2008-2010 JBoss by Red Hat and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# JBoss by Red Hat - Initial implementation.
+##############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=TPTP Profile On JBoss Server
+
+# "providerName" property - name of the company that provides the feature
+providerName=JBoss by Red Hat
+
+# "updateSiteName" property - label for the update site
+updateSiteName=JBossTools Update Site
+
+# "description" property - description of the feature
+description=TPTP Profile On JBoss Server
+
+# "copyright" property - text of the "Feature Update Copyright"
+copyright=Copyright (c) 2008-2010 JBoss by Red Hat and others.\n\
+All rights reserved. This program and the accompanying materials\n\
+are made available under the terms of the Eclipse Public License v1.0\n\
+which accompanies this distribution, and is available at\n\
+http\://www.eclipse.org/legal/epl-v10.html\n\n\
+Contributors\:\n\
+JBoss by Red Hat - Initial implementation.
+ ############### end of copyright property ####################################
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# START NON-TRANSLATABLE
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=Red Hat, Inc. licenses these features and plugins to you under \
+certain open source licenses (or aggregations of such licenses), which \
+in a particular case may include the Eclipse Public License, the GNU \
+Lesser General Public License, and/or certain other open source \
+licenses. For precise licensing details, consult the corresponding \
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive, \
+Raleigh NC 27606 USA.
+# END NON-TRANSLATABLE
+########### end of license property ##########################################
Added: trunk/usage/features/org.jboss.tools.usage.test/feature.xml
===================================================================
--- trunk/usage/features/org.jboss.tools.usage.test/feature.xml (rev 0)
+++ trunk/usage/features/org.jboss.tools.usage.test/feature.xml 2010-08-18 01:12:08 UTC (rev 24244)
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.tools.usage.test"
+ label="JBoss Tools Usage Reporting Test Feature"
+ version="1.0.0.qualifier">
+
+ <description url="http://www.example.com/description">
+ [Enter Feature Description here.]
+ </description>
+
+ <copyright url="http://www.example.com/copyright">
+ [Enter Copyright Description here.]
+ </copyright>
+
+ <license url="http://www.example.com/license">
+ [Enter License Description here.]
+ </license>
+
+ <plugin
+ id="org.jboss.tools.usage.test"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+</feature>
Added: trunk/usage/features/org.jboss.tools.usage.test/pom.xml
===================================================================
--- trunk/usage/features/org.jboss.tools.usage.test/pom.xml (rev 0)
+++ trunk/usage/features/org.jboss.tools.usage.test/pom.xml 2010-08-18 01:12:08 UTC (rev 24244)
@@ -0,0 +1,14 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.usage.features</groupId>
+ <artifactId>org.jboss.tools.usage.test</artifactId>
+ <name>org.jboss.tools.usage.test.feature</name>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+</project>
Added: trunk/usage/features/pom.xml
===================================================================
--- trunk/usage/features/pom.xml (rev 0)
+++ trunk/usage/features/pom.xml 2010-08-18 01:12:08 UTC (rev 24244)
@@ -0,0 +1,14 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss.tools.usage</groupId>
+ <artifactId>features</artifactId>
+ <name>usage.features</name>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <modules>
+ <module>org.jboss.tools.usage</module>
+ <module>org.jboss.tools.usage.test</module>
+ </modules>
+</project>
+
Modified: trunk/usage/plugins/org.jboss.tools.usage/META-INF/MANIFEST.MF
===================================================================
--- trunk/usage/plugins/org.jboss.tools.usage/META-INF/MANIFEST.MF 2010-08-18 00:38:18 UTC (rev 24243)
+++ trunk/usage/plugins/org.jboss.tools.usage/META-INF/MANIFEST.MF 2010-08-18 01:12:08 UTC (rev 24244)
@@ -1,9 +1,9 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
-Bundle-Name: JBoss Tools Usage Reporting
+Bundle-Name: %BundleName
Bundle-SymbolicName: org.jboss.tools.usage;singleton:=true
Bundle-Version: 1.0.0.qualifier
-Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Export-Package: org.jboss.tools.usage,
org.jboss.tools.usage.googleanalytics,
org.jboss.tools.usage.internal;x-friends:="org.jboss.tools.usage.test",
@@ -14,3 +14,4 @@
org.eclipse.ui;bundle-version="3.5.0"
Bundle-ActivationPolicy: lazy
Bundle-Activator: org.jboss.tools.usage.internal.JBossToolsUsageActivator
+Bundle-Vendor: %BundleVendor
Added: trunk/usage/plugins/org.jboss.tools.usage/plugin.properties
===================================================================
--- trunk/usage/plugins/org.jboss.tools.usage/plugin.properties (rev 0)
+++ trunk/usage/plugins/org.jboss.tools.usage/plugin.properties 2010-08-18 01:12:08 UTC (rev 24244)
@@ -0,0 +1,2 @@
+BundleName=JBoss Tools Usage Reporting
+BundleVendor=JBoss by Red Hat
\ No newline at end of file
Property changes on: trunk/usage/plugins/org.jboss.tools.usage/plugin.properties
___________________________________________________________________
Name: svn:executable
+ *
Added: trunk/usage/plugins/org.jboss.tools.usage/pom.xml
===================================================================
--- trunk/usage/plugins/org.jboss.tools.usage/pom.xml (rev 0)
+++ trunk/usage/plugins/org.jboss.tools.usage/pom.xml 2010-08-18 01:12:08 UTC (rev 24244)
@@ -0,0 +1,13 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.usage.plugins</groupId>
+ <artifactId>org.jboss.tools.usage</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
Added: trunk/usage/plugins/pom.xml
===================================================================
--- trunk/usage/plugins/pom.xml (rev 0)
+++ trunk/usage/plugins/pom.xml 2010-08-18 01:12:08 UTC (rev 24244)
@@ -0,0 +1,13 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss.tools.usage</groupId>
+ <artifactId>plugins</artifactId>
+ <name>usage.plugins</name>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <modules>
+ <module>org.jboss.tools.usage</module>
+ </modules>
+</project>
+
Added: trunk/usage/pom.xml
===================================================================
--- trunk/usage/pom.xml (rev 0)
+++ trunk/usage/pom.xml 2010-08-18 01:12:08 UTC (rev 24244)
@@ -0,0 +1,16 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>usage</artifactId>
+ <name>usage.all</name>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <modules>
+ <module>features</module>
+ <module>plugins</module>
+ <module>site</module>
+ <module>tests</module>
+ </modules>
+</project>
+
Modified: trunk/usage/site/site.xml
===================================================================
--- trunk/usage/site/site.xml 2010-08-18 00:38:18 UTC (rev 24243)
+++ trunk/usage/site/site.xml 2010-08-18 01:12:08 UTC (rev 24244)
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<site>
<description>To install these features, point Eclipse at this site.</description>
- <!-- JBoss Tools Usage Tracking Nightly Build Update Site -->
- <category-def label="JBoss Tools Usage Tracking Nightly Build Update Site" name="JBoss Tools Usage Tracking Nightly Build Update Site">
- <description>JBoss Tools Usage Tracking Nightly Build Update Site: contains all features in this build.</description>
+ <!-- JBoss Tools JBoss Tools Usage Reporting Nightly Build Update Site -->
+ <category-def label="JBoss Tools JBoss Tools Usage Reporting Nightly Build Update Site" name="JBoss Tools JBoss Tools Usage Reporting Nightly Build Update Site">
+ <description>JBoss Tools JBoss Tools Usage Reporting Nightly Build Update Site: contains all features in this build.</description>
</category-def>
<feature url="features/org.jboss.tools.usage_0.0.0.jar" id="org.jboss.tools.usage" version="0.0.0">
- <category name="JBoss Tools Usage Tracking Nightly Build Update Site"/>
+ <category name="JBoss Tools JBoss Tools Usage Reporting Nightly Build Update Site"/>
</feature>
</site>
Added: trunk/usage/tests/org.jboss.tools.usage.test/pom.xml
===================================================================
--- trunk/usage/tests/org.jboss.tools.usage.test/pom.xml (rev 0)
+++ trunk/usage/tests/org.jboss.tools.usage.test/pom.xml 2010-08-18 01:12:08 UTC (rev 24244)
@@ -0,0 +1,17 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.usage.tests</groupId>
+ <artifactId>org.jboss.tools.usage.test</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>eclipse-plugin</packaging>
+ <properties>
+ <emma.filter/>
+ <emma.instrument.bundles/>
+ </properties>
+</project>
15 years, 4 months
JBoss Tools SVN: r24243 - trunk/usage/site.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-08-17 20:38:18 -0400 (Tue, 17 Aug 2010)
New Revision: 24243
Modified:
trunk/usage/site/site.xml
Log:
usage update site errors fixed
Modified: trunk/usage/site/site.xml
===================================================================
--- trunk/usage/site/site.xml 2010-08-18 00:27:43 UTC (rev 24242)
+++ trunk/usage/site/site.xml 2010-08-18 00:38:18 UTC (rev 24243)
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<site>
<description>To install these features, point Eclipse at this site.</description>
- <!-- JBoss Tools tests Nightly Build Update Site -->
- <category-def label="JBoss Tools tests Nightly Build Update Site" name="JBoss Tools tests Nightly Build Update Site">
- <description>JBoss Tools tests Nightly Build Update Site: contains all features in this build.</description>
+ <!-- JBoss Tools Usage Tracking Nightly Build Update Site -->
+ <category-def label="JBoss Tools Usage Tracking Nightly Build Update Site" name="JBoss Tools Usage Tracking Nightly Build Update Site">
+ <description>JBoss Tools Usage Tracking Nightly Build Update Site: contains all features in this build.</description>
</category-def>
- <feature url="features/org.jboss.tools.test.feature_0.0.0.jar" id="org.jboss.tools.test.feature" version="0.0.0">
- <category name="JBoss Tools tests Nightly Build Update Site"/>
+ <feature url="features/org.jboss.tools.usage_0.0.0.jar" id="org.jboss.tools.usage" version="0.0.0">
+ <category name="JBoss Tools Usage Tracking Nightly Build Update Site"/>
</feature>
</site>
15 years, 4 months
JBoss Tools SVN: r24242 - in trunk/usage: site and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-08-17 20:27:43 -0400 (Tue, 17 Aug 2010)
New Revision: 24242
Added:
trunk/usage/site/
trunk/usage/site/.project
trunk/usage/site/pom.xml
trunk/usage/site/site.xml
Log:
https://jira.jboss.org/browse/JBIDE-6857 Include Usage component into JBT build
nightly update site for ussage component
Added: trunk/usage/site/.project
===================================================================
--- trunk/usage/site/.project (rev 0)
+++ trunk/usage/site/.project 2010-08-18 00:27:43 UTC (rev 24242)
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>usage-site</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ </buildSpec>
+ <natures>
+ </natures>
+</projectDescription>
Added: trunk/usage/site/pom.xml
===================================================================
--- trunk/usage/site/pom.xml (rev 0)
+++ trunk/usage/site/pom.xml 2010-08-18 00:27:43 UTC (rev 24242)
@@ -0,0 +1,13 @@
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.usage</groupId>
+ <artifactId>site</artifactId>
+ <name>usage.site</name>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>eclipse-update-site</packaging>
+</project>
Added: trunk/usage/site/site.xml
===================================================================
--- trunk/usage/site/site.xml (rev 0)
+++ trunk/usage/site/site.xml 2010-08-18 00:27:43 UTC (rev 24242)
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<site>
+ <description>To install these features, point Eclipse at this site.</description>
+ <!-- JBoss Tools tests Nightly Build Update Site -->
+ <category-def label="JBoss Tools tests Nightly Build Update Site" name="JBoss Tools tests Nightly Build Update Site">
+ <description>JBoss Tools tests Nightly Build Update Site: contains all features in this build.</description>
+ </category-def>
+ <feature url="features/org.jboss.tools.test.feature_0.0.0.jar" id="org.jboss.tools.test.feature" version="0.0.0">
+ <category name="JBoss Tools tests Nightly Build Update Site"/>
+ </feature>
+
+</site>
15 years, 4 months
JBoss Tools SVN: r24241 - trunk/maven/plugins/org.jboss.tools.maven.core.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-08-17 20:18:07 -0400 (Tue, 17 Aug 2010)
New Revision: 24241
Added:
trunk/maven/plugins/org.jboss.tools.maven.core/about.html
Modified:
trunk/maven/plugins/org.jboss.tools.maven.core/build.properties
Log:
about.html added to maven.core plugin
Added: trunk/maven/plugins/org.jboss.tools.maven.core/about.html
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.core/about.html (rev 0)
+++ trunk/maven/plugins/org.jboss.tools.maven.core/about.html 2010-08-18 00:18:07 UTC (rev 24241)
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+<title>JBoss Maven JSF Configurator</title>
+<style type="text/css" media="screen">
+<!--
+ body {
+ font-family: Sans-serif, Arial, Helvetica;
+ }
+
+-->
+</style>
+</head>
+<body>
+<h1>JBoss Maven JSF Configurator</h1>
+
+<p>
+This plugin is part of the JBoss Tools developed by the <a href="http://www.jboss.com">JBoss Inc.</a>
+</p>
+
+<p>Information about this plugin is available at <a href="http://www.jboss.org/tools">JBoss Tools project page</a></p>
+
+<p>
+This software is distributed under the terms of the Eclipse Public License - v 1.0
+(see <a href="www.eclipse.org/legal/epl-v10.html">Eclipse Public License - Version 1.0</a>).
+</p>
+</body>
+</html>
\ No newline at end of file
Property changes on: trunk/maven/plugins/org.jboss.tools.maven.core/about.html
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Modified: trunk/maven/plugins/org.jboss.tools.maven.core/build.properties
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.core/build.properties 2010-08-18 00:17:10 UTC (rev 24240)
+++ trunk/maven/plugins/org.jboss.tools.maven.core/build.properties 2010-08-18 00:18:07 UTC (rev 24241)
@@ -5,4 +5,5 @@
plugin.xml,\
poms/,\
OSGI-INF/l10n/bundle.properties,\
- plugin.properties
+ plugin.properties,\
+ about.html
15 years, 4 months
JBoss Tools SVN: r24240 - trunk/maven/plugins/org.jboss.tools.maven.hibernate.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-08-17 20:17:10 -0400 (Tue, 17 Aug 2010)
New Revision: 24240
Modified:
trunk/maven/plugins/org.jboss.tools.maven.hibernate/about.html
Log:
fix for title in hibernate maven configurator about.html
Modified: trunk/maven/plugins/org.jboss.tools.maven.hibernate/about.html
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.hibernate/about.html 2010-08-18 00:16:12 UTC (rev 24239)
+++ trunk/maven/plugins/org.jboss.tools.maven.hibernate/about.html 2010-08-18 00:17:10 UTC (rev 24240)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
-<title>Integration Seam projects with Maven</title>
+<title>JBoss Maven Hibernate Configurator</title>
<style type="text/css" media="screen">
<!--
body {
15 years, 4 months
JBoss Tools SVN: r24239 - trunk/maven/plugins/org.jboss.tools.maven.portlet.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-08-17 20:16:12 -0400 (Tue, 17 Aug 2010)
New Revision: 24239
Modified:
trunk/maven/plugins/org.jboss.tools.maven.portlet/about.html
Log:
fix for title in portlet maven configurator about.html
Modified: trunk/maven/plugins/org.jboss.tools.maven.portlet/about.html
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.portlet/about.html 2010-08-18 00:15:23 UTC (rev 24238)
+++ trunk/maven/plugins/org.jboss.tools.maven.portlet/about.html 2010-08-18 00:16:12 UTC (rev 24239)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
-<title>Integration Seam projects with Maven</title>
+<title>JBoss Maven Portlet Configurator</title>
<style type="text/css" media="screen">
<!--
body {
15 years, 4 months
JBoss Tools SVN: r24238 - trunk/maven/plugins/org.jboss.tools.maven.jsf.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-08-17 20:15:23 -0400 (Tue, 17 Aug 2010)
New Revision: 24238
Modified:
trunk/maven/plugins/org.jboss.tools.maven.jsf/about.html
Log:
fix for title in JSF maven configurator about.html
Modified: trunk/maven/plugins/org.jboss.tools.maven.jsf/about.html
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.jsf/about.html 2010-08-18 00:14:39 UTC (rev 24237)
+++ trunk/maven/plugins/org.jboss.tools.maven.jsf/about.html 2010-08-18 00:15:23 UTC (rev 24238)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
-<title>Integration Seam projects with Maven</title>
+<title>JBoss Maven JSF Configurator</title>
<style type="text/css" media="screen">
<!--
body {
15 years, 4 months
JBoss Tools SVN: r24237 - trunk/maven/plugins/org.jboss.tools.maven.cdi.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-08-17 20:14:39 -0400 (Tue, 17 Aug 2010)
New Revision: 24237
Modified:
trunk/maven/plugins/org.jboss.tools.maven.cdi/about.html
Log:
fix for title in CDI maven configurator about.html
Modified: trunk/maven/plugins/org.jboss.tools.maven.cdi/about.html
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.cdi/about.html 2010-08-17 23:54:07 UTC (rev 24236)
+++ trunk/maven/plugins/org.jboss.tools.maven.cdi/about.html 2010-08-18 00:14:39 UTC (rev 24237)
@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
-<title>Integration Seam projects with Maven</title>
+<title>JBoss Maven CDI Configurator</title>
<style type="text/css" media="screen">
<!--
body {
15 years, 4 months