JBoss Tools SVN: r21045 - branches/jbosstools-3.1.x/documentation/guides/Beginners_Guide/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-03-25 21:41:49 -0400 (Thu, 25 Mar 2010)
New Revision: 21045
Modified:
branches/jbosstools-3.1.x/documentation/guides/Beginners_Guide/en-US/Feedback.xml
Log:
updated
Modified: branches/jbosstools-3.1.x/documentation/guides/Beginners_Guide/en-US/Feedback.xml
===================================================================
--- branches/jbosstools-3.1.x/documentation/guides/Beginners_Guide/en-US/Feedback.xml 2010-03-26 00:51:46 UTC (rev 21044)
+++ branches/jbosstools-3.1.x/documentation/guides/Beginners_Guide/en-US/Feedback.xml 2010-03-26 01:41:49 UTC (rev 21045)
@@ -7,10 +7,10 @@
<secondary>contact information for this manual</secondary>
</indexterm>
<para>
- If you find a typographical error in this manual, or if you have thought of a way to make this manual better, we would love to hear from you! Please submit a report in JIRA against JBoss Developer Studio: <ulink url="https://jira.jboss.org/jira/browse/JBDS">https://jira.jboss.org/jira/browse/JBDS</ulink>
+ If you find a typographical error in this manual, or if you have thought of a way to make this manual better, we would love to hear from you! Please submit a report in JIRA against JBoss Developer Studio: <ulink url="https://jira.jboss.org/jira/secure/CreateIssue.jspa?pid=12310500&issu...">https://jira.jboss.org/jira/secure/CreateIssue.jspa?pid=12310500&issu...</ulink>
</para>
<para>
- When submitting a bug report, be sure to mention the manual's name.
+ When submitting a bug report, be sure to mention the manual's name and to select the "documentation" component.
</para>
<para>
If you have a suggestion for improving the documentation, try to be as specific as possible when describing it. If you have found an error, please include the section number and some of the surrounding text so we can find it easily.
14 years, 9 months
JBoss Tools SVN: r21044 - in trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core: internal/project/facet and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2010-03-25 20:51:46 -0400 (Thu, 25 Mar 2010)
New Revision: 21044
Modified:
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/PortletCoreActivator.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDelegate.java
trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletPostInstallListener.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-5968 JSF Portlet Facet always adds richfaces fragments to web.xml
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/PortletCoreActivator.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/PortletCoreActivator.java 2010-03-25 23:58:17 UTC (rev 21043)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/PortletCoreActivator.java 2010-03-26 00:51:46 UTC (rev 21044)
@@ -38,6 +38,9 @@
public static final String CHECK_RUNTIMES = "checkRuntimes"; //$NON-NLS-1$
public static final boolean DEFAULT_CHECK_RUNTIMES = true;
+ public static final String JSFPORTLET_LIBRARY_PROVIDER = "jsfportlet-library-provider"; //$NON-NLS-1$
+ public static final String JSFPORTLETBRIDGE_LIBRARY_PROVIDER = "jsfportletbridge-library-provider"; //$NON-NLS-1$
+
public static final IOverwriteQuery OVERWRITE_ALL_QUERY = new IOverwriteQuery() {
public String queryOverwrite(String pathString) {
return IOverwriteQuery.ALL;
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDelegate.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDelegate.java 2010-03-25 23:58:17 UTC (rev 21043)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/JSFPortletFacetInstallDelegate.java 2010-03-26 00:51:46 UTC (rev 21044)
@@ -31,6 +31,7 @@
import org.eclipse.jdt.core.IJavaProject;
import org.eclipse.jdt.core.JavaCore;
import org.eclipse.jdt.core.JavaModelException;
+import org.eclipse.jst.common.project.facet.core.libprov.ILibraryProvider;
import org.eclipse.jst.common.project.facet.core.libprov.LibraryInstallDelegate;
import org.eclipse.jst.j2ee.classpathdep.ClasspathDependencyUtil;
import org.eclipse.jst.j2ee.classpathdep.IClasspathDependencyConstants;
@@ -50,6 +51,7 @@
import org.eclipse.wst.common.componentcore.resources.IVirtualComponent;
import org.eclipse.wst.common.componentcore.resources.IVirtualFile;
import org.eclipse.wst.common.frameworks.datamodel.IDataModel;
+import org.eclipse.wst.common.project.facet.core.FacetedProjectFramework;
import org.eclipse.wst.common.project.facet.core.IDelegate;
import org.eclipse.wst.common.project.facet.core.IFacetedProjectWorkingCopy;
import org.eclipse.wst.common.project.facet.core.IProjectFacetVersion;
@@ -62,6 +64,8 @@
import org.jboss.tools.portlet.core.JBossWebUtil25;
import org.jboss.tools.portlet.core.Messages;
import org.jboss.tools.portlet.core.PortletCoreActivator;
+import org.jboss.tools.portlet.core.libprov.AbstractLibraryProviderInstallOperationConfig;
+import org.jboss.tools.portlet.core.libprov.JSFPortletbridgeRuntimeLibraryProviderInstallOperationConfig;
/**
* @author snjeza
@@ -69,6 +73,7 @@
*/
public class JSFPortletFacetInstallDelegate implements IDelegate {
+ private static final String JST_SEAM_FACET = "jst.seam"; //$NON-NLS-1$
private static final String ORG_JBOSS_PORTLET_STATE_MANAGER = "org.jboss.portletbridge.application.PortletStateManager"; //$NON-NLS-1$
private static final String ORG_JBOSS_PORTLET_VIEW_HANDLER = "org.jboss.portletbridge.application.PortletViewHandler"; //$NON-NLS-1$
@@ -249,7 +254,7 @@
}
private void configureWebApp(final IProject project,
- final IProgressMonitor monitor, IDataModel config) {
+ final IProgressMonitor monitor, final IDataModel config) {
final IModelProvider provider = PortletCoreActivator
.getModelProvider(project);
IPath modelPath = new Path("WEB-INF").append("web.xml"); //$NON-NLS-1$ //$NON-NLS-2$
@@ -267,55 +272,92 @@
} else {
util = new JBossWebUtil();
}
- String name = "org.ajax4jsf.VIEW_HANDLERS"; //$NON-NLS-1$
- String value = "org.jboss.portletbridge.application.FaceletPortletViewHandler"; //$NON-NLS-1$
- String description = null;
- util.configureContextParam(project, monitor, name, value,
+ if (addRichfacesLibraries(config, project)) {
+
+ String name = "org.ajax4jsf.VIEW_HANDLERS"; //$NON-NLS-1$
+ String value = "org.jboss.portletbridge.application.FaceletPortletViewHandler"; //$NON-NLS-1$
+ String description = null;
+ util.configureContextParam(project, monitor, name, value,
description);
- name = "javax.portlet.faces.renderPolicy"; //$NON-NLS-1$
- value = "ALWAYS_DELEGATE"; //$NON-NLS-1$
- util.configureContextParam(project, monitor, name, value,
+ name = "javax.portlet.faces.renderPolicy"; //$NON-NLS-1$
+ value = "ALWAYS_DELEGATE"; //$NON-NLS-1$
+ util.configureContextParam(project, monitor, name, value,
description);
// RichFaces settings
- name = "org.richfaces.LoadStyleStrategy"; //$NON-NLS-1$
- value = "NONE"; //$NON-NLS-1$
- util.configureContextParam(project, monitor, name, value,
+
+ name = "org.richfaces.LoadStyleStrategy"; //$NON-NLS-1$
+ value = "NONE"; //$NON-NLS-1$
+ util.configureContextParam(project, monitor, name, value,
description);
- name = "org.richfaces.LoadScriptStrategy"; //$NON-NLS-1$
- value = "NONE"; //$NON-NLS-1$
- util.configureContextParam(project, monitor, name, value,
+ name = "org.richfaces.LoadScriptStrategy"; //$NON-NLS-1$
+ value = "NONE"; //$NON-NLS-1$
+ util.configureContextParam(project, monitor, name, value,
description);
- name = "org.ajax4jsf.RESOURCE_URI_PREFIX"; //$NON-NLS-1$
- value = "rfRes"; //$NON-NLS-1$
- util.configureContextParam(project, monitor, name, value,
+ name = "org.ajax4jsf.RESOURCE_URI_PREFIX"; //$NON-NLS-1$
+ value = "rfRes"; //$NON-NLS-1$
+ util.configureContextParam(project, monitor, name, value,
description);
- String displayName = "Ajax4jsf Filter"; //$NON-NLS-1$
- String filterName = "ajax4jsf"; //$NON-NLS-1$
- String className = "org.ajax4jsf.Filter"; //$NON-NLS-1$
- util.configureFilter(project, monitor, filterName, className,
+ String displayName = "Ajax4jsf Filter"; //$NON-NLS-1$
+ String filterName = "ajax4jsf"; //$NON-NLS-1$
+ String className = "org.ajax4jsf.Filter"; //$NON-NLS-1$
+ util.configureFilter(project, monitor, filterName, className,
displayName, description);
- String servletName = util.findJsfServlet(provider
+ String servletName = util.findJsfServlet(provider
.getModelObject());
- if (servletName == null) {
- RuntimeException e = new RuntimeException(
+ if (servletName == null) {
+ RuntimeException e = new RuntimeException(
Messages.JSFPortletFacetInstallDelegate_Cannot_find_the_JSF_servlet);
- PortletCoreActivator.log(e);
- throw e;
+ PortletCoreActivator.log(e);
+ throw e;
+ }
+ util.configureFilterMapping(project, monitor, filterName,
+ servletName);
+ } else {
+ String name = "javax.portlet.faces.renderPolicy"; //$NON-NLS-1$
+ String value = "NEVER_DELEGATE"; //$NON-NLS-1$
+ String description = null;
+ util.configureContextParam(project, monitor, name, value,
+ description);
}
- util.configureFilterMapping(project, monitor, filterName,
- servletName);
-
}
}, modelPath);
}
+ private boolean addRichfacesLibraries(IDataModel config, IProject project) {
+ LibraryInstallDelegate libraryDelegate = ( (LibraryInstallDelegate) config.getProperty( IPortletConstants.JSFPORTLET_LIBRARY_PROVIDER_DELEGATE ) );
+ if (libraryDelegate != null) {
+ ILibraryProvider libraryProvider = libraryDelegate
+ .getLibraryProvider();
+ String providerId = libraryProvider.getId();
+ if (PortletCoreActivator.JSFPORTLETBRIDGE_LIBRARY_PROVIDER.equals(providerId)
+ || PortletCoreActivator.JSFPORTLET_LIBRARY_PROVIDER.equals(providerId)) {
+ AbstractLibraryProviderInstallOperationConfig libraryConfig = (AbstractLibraryProviderInstallOperationConfig) libraryDelegate.getLibraryProviderOperationConfig(libraryProvider);
+
+ boolean isSeamFacet = false;
+ try {
+ isSeamFacet = FacetedProjectFramework.hasProjectFacet(project, JST_SEAM_FACET);
+ } catch (CoreException e) {
+ PortletCoreActivator.log(e);
+ }
+ if (isSeamFacet) {
+ return true;
+ }
+ if (!libraryConfig.isAddRichfacesCapabilities()) {
+ return false;
+ }
+ }
+
+ }
+ return false;
+ }
+
private void configureClassPath(final IProject project,
final IProgressMonitor monitor, IDataModel config)
throws JavaModelException {
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletPostInstallListener.java
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletPostInstallListener.java 2010-03-25 23:58:17 UTC (rev 21043)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/src/org/jboss/tools/portlet/core/internal/project/facet/PortletPostInstallListener.java 2010-03-26 00:51:46 UTC (rev 21044)
@@ -53,8 +53,6 @@
public class PortletPostInstallListener implements IFacetedProjectListener {
- private static final String JSFPORTLET_LIBRARY_PROVIDER = "jsfportlet-library-provider"; //$NON-NLS-1$
- private static final String JSFPORTLETBRIDGE_LIBRARY_PROVIDER = "jsfportletbridge-library-provider"; //$NON-NLS-1$
private static final IProjectFacet seamFacet = ProjectFacetsManager.getProjectFacet("jst.seam"); //$NON-NLS-1$
private static final IOverwriteQuery OVERWRITE_NONE_QUERY = new IOverwriteQuery()
{
@@ -104,17 +102,17 @@
ILibraryProvider libraryProvider = libraryDelegate
.getLibraryProvider();
String providerId = libraryProvider.getId();
- if (JSFPORTLETBRIDGE_LIBRARY_PROVIDER.equals(providerId)) {
+ if (PortletCoreActivator.JSFPORTLETBRIDGE_LIBRARY_PROVIDER.equals(providerId)) {
JSFPortletbridgeRuntimeLibraryProviderInstallOperationConfig libraryConfig = (JSFPortletbridgeRuntimeLibraryProviderInstallOperationConfig) libraryDelegate
.getLibraryProviderOperationConfig(libraryProvider);
portletbridgeRuntime = libraryConfig.getPortletbridgeHome();
} else {
portletbridgeRuntime = null;
}
- richfacesFromServerRuntime = JSFPORTLET_LIBRARY_PROVIDER.equals(providerId); //$NON-NLS-1$
+ richfacesFromServerRuntime = PortletCoreActivator.JSFPORTLET_LIBRARY_PROVIDER.equals(providerId); //$NON-NLS-1$
- if (JSFPORTLETBRIDGE_LIBRARY_PROVIDER.equals(providerId)
- || JSFPORTLET_LIBRARY_PROVIDER.equals(providerId)) {
+ if (PortletCoreActivator.JSFPORTLETBRIDGE_LIBRARY_PROVIDER.equals(providerId)
+ || PortletCoreActivator.JSFPORTLET_LIBRARY_PROVIDER.equals(providerId)) {
AbstractLibraryProviderInstallOperationConfig libraryConfig = (AbstractLibraryProviderInstallOperationConfig) libraryDelegate.getLibraryProviderOperationConfig(libraryProvider);
richfacesCapabilities = libraryConfig.isAddRichfacesCapabilities();
richfacesRuntime = libraryConfig.getRichfacesRuntime();
@@ -259,6 +257,9 @@
private void addRichfacesFromRichfacesRuntime(
IFacetedProject facetedProject) {
final boolean isSeamProject = facetedProject.hasProjectFacet(seamFacet);
+ if (!isSeamProject && !richfacesCapabilities) {
+ return;
+ }
File richfacesRuntimeHome = new File(richfacesRuntime);
File richfacesLib = new File(richfacesRuntimeHome, "lib"); //$NON-NLS-1$
if (!richfacesLib.exists()) {
@@ -543,6 +544,10 @@
return null;
}
List<ZipEntry> list = new ArrayList<ZipEntry>();
+ if (!isSeamProject && !richfacesCapabilities) {
+ return list;
+ }
+
Enumeration<? extends ZipEntry> entries = rootEntry.entries();
IProject earProject = getEarProject(facetedProject.getProject(),isSeamProject);
14 years, 9 months
JBoss Tools SVN: r21043 - branches/jbosstools-3.1.x/ws/docs/reference/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-03-25 19:58:17 -0400 (Thu, 25 Mar 2010)
New Revision: 21043
Added:
branches/jbosstools-3.1.x/ws/docs/reference/en-US/Feedback.xml
Log:
added feedback xml
Added: branches/jbosstools-3.1.x/ws/docs/reference/en-US/Feedback.xml
===================================================================
--- branches/jbosstools-3.1.x/ws/docs/reference/en-US/Feedback.xml (rev 0)
+++ branches/jbosstools-3.1.x/ws/docs/reference/en-US/Feedback.xml 2010-03-25 23:58:17 UTC (rev 21043)
@@ -0,0 +1,20 @@
+<?xml version='1.0' encoding='utf-8' ?>
+
+<section id="sect-Beginners_Guide-We_Need_Feedback" lang="en-US">
+ <title>We Need Feedback!</title>
+ <indexterm>
+ <primary>feedback</primary>
+ <secondary>contact information for this manual</secondary>
+ </indexterm>
+ <para>
+ If you find a typographical error in this manual, or if you have thought of a way to make this manual better, we would love to hear from you! Please submit a report in JIRA against JBoss Developer Studio: <ulink url="https://jira.jboss.org/jira/secure/CreateIssue.jspa?pid=12310500&issu...">https://jira.jboss.org/jira/secure/CreateIssue.jspa?pid=12310500&issu...</ulink>
+ </para>
+ <para>
+ When submitting a bug report, be sure to mention the manual's name and to select the "documentation" component.
+ </para>
+ <para>
+ If you have a suggestion for improving the documentation, try to be as specific as possible when describing it. If you have found an error, please include the section number and some of the surrounding text so we can find it easily.
+ </para>
+</section>
+
+
14 years, 9 months
JBoss Tools SVN: r21042 - branches/jbosstools-3.1.x/struts/docs/struts_tools_tutorial/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-03-25 19:56:16 -0400 (Thu, 25 Mar 2010)
New Revision: 21042
Added:
branches/jbosstools-3.1.x/struts/docs/struts_tools_tutorial/en-US/Feedback.xml
Log:
added feedback xml
Added: branches/jbosstools-3.1.x/struts/docs/struts_tools_tutorial/en-US/Feedback.xml
===================================================================
--- branches/jbosstools-3.1.x/struts/docs/struts_tools_tutorial/en-US/Feedback.xml (rev 0)
+++ branches/jbosstools-3.1.x/struts/docs/struts_tools_tutorial/en-US/Feedback.xml 2010-03-25 23:56:16 UTC (rev 21042)
@@ -0,0 +1,20 @@
+<?xml version='1.0' encoding='utf-8' ?>
+
+<section id="sect-Beginners_Guide-We_Need_Feedback" lang="en-US">
+ <title>We Need Feedback!</title>
+ <indexterm>
+ <primary>feedback</primary>
+ <secondary>contact information for this manual</secondary>
+ </indexterm>
+ <para>
+ If you find a typographical error in this manual, or if you have thought of a way to make this manual better, we would love to hear from you! Please submit a report in JIRA against JBoss Developer Studio: <ulink url="https://jira.jboss.org/jira/secure/CreateIssue.jspa?pid=12310500&issu...">https://jira.jboss.org/jira/secure/CreateIssue.jspa?pid=12310500&issu...</ulink>
+ </para>
+ <para>
+ When submitting a bug report, be sure to mention the manual's name and to select the "documentation" component.
+ </para>
+ <para>
+ If you have a suggestion for improving the documentation, try to be as specific as possible when describing it. If you have found an error, please include the section number and some of the surrounding text so we can find it easily.
+ </para>
+</section>
+
+
14 years, 9 months
JBoss Tools SVN: r21041 - branches/jbosstools-3.1.x/struts/docs/struts_tools_ref_guide/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-03-25 19:35:33 -0400 (Thu, 25 Mar 2010)
New Revision: 21041
Added:
branches/jbosstools-3.1.x/struts/docs/struts_tools_ref_guide/en-US/Feedback.xml
Log:
added feedback xml
Added: branches/jbosstools-3.1.x/struts/docs/struts_tools_ref_guide/en-US/Feedback.xml
===================================================================
--- branches/jbosstools-3.1.x/struts/docs/struts_tools_ref_guide/en-US/Feedback.xml (rev 0)
+++ branches/jbosstools-3.1.x/struts/docs/struts_tools_ref_guide/en-US/Feedback.xml 2010-03-25 23:35:33 UTC (rev 21041)
@@ -0,0 +1,20 @@
+<?xml version='1.0' encoding='utf-8' ?>
+
+<section id="sect-Beginners_Guide-We_Need_Feedback" lang="en-US">
+ <title>We Need Feedback!</title>
+ <indexterm>
+ <primary>feedback</primary>
+ <secondary>contact information for this manual</secondary>
+ </indexterm>
+ <para>
+ If you find a typographical error in this manual, or if you have thought of a way to make this manual better, we would love to hear from you! Please submit a report in JIRA against JBoss Developer Studio: <ulink url="https://jira.jboss.org/jira/secure/CreateIssue.jspa?pid=12310500&issu...">https://jira.jboss.org/jira/secure/CreateIssue.jspa?pid=12310500&issu...</ulink>
+ </para>
+ <para>
+ When submitting a bug report, be sure to mention the manual's name and to select the "documentation" component.
+ </para>
+ <para>
+ If you have a suggestion for improving the documentation, try to be as specific as possible when describing it. If you have found an error, please include the section number and some of the surrounding text so we can find it easily.
+ </para>
+</section>
+
+
14 years, 9 months
JBoss Tools SVN: r21040 - branches/jbosstools-3.1.x/smooks/docs/reference/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-03-25 19:35:03 -0400 (Thu, 25 Mar 2010)
New Revision: 21040
Added:
branches/jbosstools-3.1.x/smooks/docs/reference/en-US/Feedback.xml
Log:
added feedback xml
Added: branches/jbosstools-3.1.x/smooks/docs/reference/en-US/Feedback.xml
===================================================================
--- branches/jbosstools-3.1.x/smooks/docs/reference/en-US/Feedback.xml (rev 0)
+++ branches/jbosstools-3.1.x/smooks/docs/reference/en-US/Feedback.xml 2010-03-25 23:35:03 UTC (rev 21040)
@@ -0,0 +1,20 @@
+<?xml version='1.0' encoding='utf-8' ?>
+
+<section id="sect-Beginners_Guide-We_Need_Feedback" lang="en-US">
+ <title>We Need Feedback!</title>
+ <indexterm>
+ <primary>feedback</primary>
+ <secondary>contact information for this manual</secondary>
+ </indexterm>
+ <para>
+ If you find a typographical error in this manual, or if you have thought of a way to make this manual better, we would love to hear from you! Please submit a report in JIRA against JBoss Developer Studio: <ulink url="https://jira.jboss.org/jira/secure/CreateIssue.jspa?pid=12310500&issu...">https://jira.jboss.org/jira/secure/CreateIssue.jspa?pid=12310500&issu...</ulink>
+ </para>
+ <para>
+ When submitting a bug report, be sure to mention the manual's name and to select the "documentation" component.
+ </para>
+ <para>
+ If you have a suggestion for improving the documentation, try to be as specific as possible when describing it. If you have found an error, please include the section number and some of the surrounding text so we can find it easily.
+ </para>
+</section>
+
+
14 years, 9 months
JBoss Tools SVN: r21039 - branches/jbosstools-3.1.x/seam/docs/reference/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-03-25 19:34:08 -0400 (Thu, 25 Mar 2010)
New Revision: 21039
Added:
branches/jbosstools-3.1.x/seam/docs/reference/en-US/Feedback.xml
Log:
added feedback xml
Added: branches/jbosstools-3.1.x/seam/docs/reference/en-US/Feedback.xml
===================================================================
--- branches/jbosstools-3.1.x/seam/docs/reference/en-US/Feedback.xml (rev 0)
+++ branches/jbosstools-3.1.x/seam/docs/reference/en-US/Feedback.xml 2010-03-25 23:34:08 UTC (rev 21039)
@@ -0,0 +1,20 @@
+<?xml version='1.0' encoding='utf-8' ?>
+
+<section id="sect-Beginners_Guide-We_Need_Feedback" lang="en-US">
+ <title>We Need Feedback!</title>
+ <indexterm>
+ <primary>feedback</primary>
+ <secondary>contact information for this manual</secondary>
+ </indexterm>
+ <para>
+ If you find a typographical error in this manual, or if you have thought of a way to make this manual better, we would love to hear from you! Please submit a report in JIRA against JBoss Developer Studio: <ulink url="https://jira.jboss.org/jira/secure/CreateIssue.jspa?pid=12310500&issu...">https://jira.jboss.org/jira/secure/CreateIssue.jspa?pid=12310500&issu...</ulink>
+ </para>
+ <para>
+ When submitting a bug report, be sure to mention the manual's name and to select the "documentation" component.
+ </para>
+ <para>
+ If you have a suggestion for improving the documentation, try to be as specific as possible when describing it. If you have found an error, please include the section number and some of the surrounding text so we can find it easily.
+ </para>
+</section>
+
+
14 years, 9 months
JBoss Tools SVN: r21038 - branches/jbosstools-3.1.x/jsf/docs/userguide/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-03-25 19:32:46 -0400 (Thu, 25 Mar 2010)
New Revision: 21038
Added:
branches/jbosstools-3.1.x/jsf/docs/userguide/en-US/Feedback.xml
Log:
added feedback xml
Added: branches/jbosstools-3.1.x/jsf/docs/userguide/en-US/Feedback.xml
===================================================================
--- branches/jbosstools-3.1.x/jsf/docs/userguide/en-US/Feedback.xml (rev 0)
+++ branches/jbosstools-3.1.x/jsf/docs/userguide/en-US/Feedback.xml 2010-03-25 23:32:46 UTC (rev 21038)
@@ -0,0 +1,20 @@
+<?xml version='1.0' encoding='utf-8' ?>
+
+<section id="sect-Beginners_Guide-We_Need_Feedback" lang="en-US">
+ <title>We Need Feedback!</title>
+ <indexterm>
+ <primary>feedback</primary>
+ <secondary>contact information for this manual</secondary>
+ </indexterm>
+ <para>
+ If you find a typographical error in this manual, or if you have thought of a way to make this manual better, we would love to hear from you! Please submit a report in JIRA against JBoss Developer Studio: <ulink url="https://jira.jboss.org/jira/secure/CreateIssue.jspa?pid=12310500&issu...">https://jira.jboss.org/jira/secure/CreateIssue.jspa?pid=12310500&issu...</ulink>
+ </para>
+ <para>
+ When submitting a bug report, be sure to mention the manual's name and to select the "documentation" component.
+ </para>
+ <para>
+ If you have a suggestion for improving the documentation, try to be as specific as possible when describing it. If you have found an error, please include the section number and some of the surrounding text so we can find it easily.
+ </para>
+</section>
+
+
14 years, 9 months
JBoss Tools SVN: r21037 - branches/jbosstools-3.1.x/jsf/docs/jsf_tools_tutorial/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-03-25 19:27:21 -0400 (Thu, 25 Mar 2010)
New Revision: 21037
Added:
branches/jbosstools-3.1.x/jsf/docs/jsf_tools_tutorial/en-US/Feedback.xml
Log:
added feedback xml
Added: branches/jbosstools-3.1.x/jsf/docs/jsf_tools_tutorial/en-US/Feedback.xml
===================================================================
--- branches/jbosstools-3.1.x/jsf/docs/jsf_tools_tutorial/en-US/Feedback.xml (rev 0)
+++ branches/jbosstools-3.1.x/jsf/docs/jsf_tools_tutorial/en-US/Feedback.xml 2010-03-25 23:27:21 UTC (rev 21037)
@@ -0,0 +1,20 @@
+<?xml version='1.0' encoding='utf-8' ?>
+
+<section id="sect-Beginners_Guide-We_Need_Feedback" lang="en-US">
+ <title>We Need Feedback!</title>
+ <indexterm>
+ <primary>feedback</primary>
+ <secondary>contact information for this manual</secondary>
+ </indexterm>
+ <para>
+ If you find a typographical error in this manual, or if you have thought of a way to make this manual better, we would love to hear from you! Please submit a report in JIRA against JBoss Developer Studio: <ulink url="https://jira.jboss.org/jira/secure/CreateIssue.jspa?pid=12310500&issu...">https://jira.jboss.org/jira/secure/CreateIssue.jspa?pid=12310500&issu...</ulink>
+ </para>
+ <para>
+ When submitting a bug report, be sure to mention the manual's name and to select the "documentation" component.
+ </para>
+ <para>
+ If you have a suggestion for improving the documentation, try to be as specific as possible when describing it. If you have found an error, please include the section number and some of the surrounding text so we can find it easily.
+ </para>
+</section>
+
+
14 years, 9 months
JBoss Tools SVN: r21036 - branches/jbosstools-3.1.x/jsf/docs/jsf_tools_ref_guide/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-03-25 19:25:24 -0400 (Thu, 25 Mar 2010)
New Revision: 21036
Added:
branches/jbosstools-3.1.x/jsf/docs/jsf_tools_ref_guide/en-US/Feedback.xml
Log:
added feedback xml
Added: branches/jbosstools-3.1.x/jsf/docs/jsf_tools_ref_guide/en-US/Feedback.xml
===================================================================
--- branches/jbosstools-3.1.x/jsf/docs/jsf_tools_ref_guide/en-US/Feedback.xml (rev 0)
+++ branches/jbosstools-3.1.x/jsf/docs/jsf_tools_ref_guide/en-US/Feedback.xml 2010-03-25 23:25:24 UTC (rev 21036)
@@ -0,0 +1,20 @@
+<?xml version='1.0' encoding='utf-8' ?>
+
+<section id="sect-Beginners_Guide-We_Need_Feedback" lang="en-US">
+ <title>We Need Feedback!</title>
+ <indexterm>
+ <primary>feedback</primary>
+ <secondary>contact information for this manual</secondary>
+ </indexterm>
+ <para>
+ If you find a typographical error in this manual, or if you have thought of a way to make this manual better, we would love to hear from you! Please submit a report in JIRA against JBoss Developer Studio: <ulink url="https://jira.jboss.org/jira/secure/CreateIssue.jspa?pid=12310500&issu...">https://jira.jboss.org/jira/secure/CreateIssue.jspa?pid=12310500&issu...</ulink>
+ </para>
+ <para>
+ When submitting a bug report, be sure to mention the manual's name and to select the "documentation" component.
+ </para>
+ <para>
+ If you have a suggestion for improving the documentation, try to be as specific as possible when describing it. If you have found an error, please include the section number and some of the surrounding text so we can find it easily.
+ </para>
+</section>
+
+
14 years, 9 months