JBoss Tools SVN: r14321 - trunk/jbpm/docs/reference/en/images/the_views.
by jbosstools-commits@lists.jboss.org
Author: ochikvina
Date: 2009-03-25 07:31:41 -0400 (Wed, 25 Mar 2009)
New Revision: 14321
Modified:
trunk/jbpm/docs/reference/en/images/the_views/the_views_5.png
trunk/jbpm/docs/reference/en/images/the_views/the_views_6.png
Log:
https://jira.jboss.org/jira/browse/JBDS-645 - updating the screens;
Modified: trunk/jbpm/docs/reference/en/images/the_views/the_views_5.png
===================================================================
(Binary files differ)
Modified: trunk/jbpm/docs/…
[View More]reference/en/images/the_views/the_views_6.png
===================================================================
(Binary files differ)
[View Less]
15 years, 11 months
JBoss Tools SVN: r14320 - trunk/common/plugins/org.jboss.tools.common.text.xml/src/org/jboss/tools/common/text/xml.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2009-03-25 06:31:11 -0400 (Wed, 25 Mar 2009)
New Revision: 14320
Modified:
trunk/common/plugins/org.jboss.tools.common.text.xml/src/org/jboss/tools/common/text/xml/XMLTextViewerConfiguration.java
Log:
JBIDE-4079
Modified: trunk/common/plugins/org.jboss.tools.common.text.xml/src/org/jboss/tools/common/text/xml/XMLTextViewerConfiguration.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.text.xml/…
[View More]src/org/jboss/tools/common/text/xml/XMLTextViewerConfiguration.java 2009-03-25 00:37:09 UTC (rev 14319)
+++ trunk/common/plugins/org.jboss.tools.common.text.xml/src/org/jboss/tools/common/text/xml/XMLTextViewerConfiguration.java 2009-03-25 10:31:11 UTC (rev 14320)
@@ -23,6 +23,7 @@
import org.eclipse.jface.text.source.ISourceViewer;
import org.eclipse.jface.text.source.SourceViewerConfiguration;
import org.eclipse.ui.texteditor.AbstractDecoratedTextEditorPreferenceConstants;
+import org.eclipse.wst.sse.ui.StructuredTextViewerConfiguration;
import org.eclipse.wst.xml.ui.StructuredTextViewerConfigurationXML;
import org.jboss.tools.common.text.xml.contentassist.ContentAssistProcessorBuilder;
import org.jboss.tools.common.text.xml.contentassist.ContentAssistProcessorDefinition;
@@ -131,12 +132,14 @@
IContentAssistProcessor[] getInitialProcessors(ISourceViewer sourceViewer, String partitionType) {
if(initial == null) return null;
+ //method getContentAssistProcessors() is declared in StructuredTextViewerConfiguration
+ //and its subclasses
+ if(!(initial instanceof StructuredTextViewerConfiguration)) return null;
try {
- Method m = initial.getClass().getDeclaredMethod("getContentAssistProcessors", new Class[]{ISourceViewer.class, String.class});
+ Method m = findDeclaredMethod(initial.getClass(), "getContentAssistProcessors", new Class[]{ISourceViewer.class, String.class});
+ if(m == null) return null;
m.setAccessible(true);
return (IContentAssistProcessor[])m.invoke(initial, new Object[]{sourceViewer, partitionType});
- } catch (NoSuchMethodException e) {
- XmlEditorPlugin.getPluginLog().logError(e);
} catch (IllegalArgumentException e) {
XmlEditorPlugin.getPluginLog().logError(e);
} catch (IllegalAccessException e) {
@@ -148,4 +151,23 @@
return null;
}
+ private Method findDeclaredMethod(Class cls, String name, Class[] paramTypes) {
+ Method[] ms = cls.getDeclaredMethods();
+ if (ms != null) for (int i = 0; i < ms.length; i++) {
+ if(!ms[i].getName().equals(name)) continue;
+ Class<?>[] ps = ms[i].getParameterTypes();
+ if(ps == null || ps.length != paramTypes.length) continue;
+ boolean equal = true;
+ for (int j = 0; j < ps.length && equal; j++) {
+ if(!ps[j].getName().equals(paramTypes[j].getName())) equal = false;
+ }
+ if(!equal) continue;
+ return ms[i];
+ }
+ Class<?> sc = cls.getSuperclass();
+ if(sc == null || sc == Object.class)
+ return null;
+ return findDeclaredMethod(sc, name, paramTypes);
+ }
+
}
[View Less]
15 years, 11 months
JBoss Tools SVN: r14319 - trunk/drools/docs/reference/en/modules.
by jbosstools-commits@lists.jboss.org
Author: smukhina
Date: 2009-03-24 20:37:09 -0400 (Tue, 24 Mar 2009)
New Revision: 14319
Modified:
trunk/drools/docs/reference/en/modules/create_new_project.xml
Log:
https://jira.jboss.org/jira/browse/JBDS-359 - spelling and validation is checked
Modified: trunk/drools/docs/reference/en/modules/create_new_project.xml
===================================================================
--- trunk/drools/docs/reference/en/modules/create_new_project.xml 2009-03-25 00:37:03 UTC (rev 14318)
+++ …
[View More]trunk/drools/docs/reference/en/modules/create_new_project.xml 2009-03-25 00:37:09 UTC (rev 14319)
@@ -64,7 +64,7 @@
</mediaobject>
</figure>
- <para>You should see the <property>Prefernces window</property> where you can configure the
+ <para>You should see the <property>Preferences window</property> where you can configure the
workspace settings for Drools runtimes. To create a new runtime, press the <emphasis>
<property>Add</property>
</emphasis> button. The appeared dialog prompts you to enter a
[View Less]
15 years, 11 months
JBoss Tools SVN: r14318 - trunk/jmx/docs/reference/en/modules.
by jbosstools-commits@lists.jboss.org
Author: smukhina
Date: 2009-03-24 20:37:03 -0400 (Tue, 24 Mar 2009)
New Revision: 14318
Modified:
trunk/jmx/docs/reference/en/modules/extensions.xml
Log:
https://jira.jboss.org/jira/browse/JBDS-359 - spelling and validation is checked
Modified: trunk/jmx/docs/reference/en/modules/extensions.xml
===================================================================
--- trunk/jmx/docs/reference/en/modules/extensions.xml 2009-03-25 00:36:08 UTC (rev 14317)
+++ trunk/jmx/docs/reference/en/…
[View More]modules/extensions.xml 2009-03-25 00:37:03 UTC (rev 14318)
@@ -24,7 +24,7 @@
one child, a connectionProvider with a class that implements
org.jboss.tools.jmx.core.IConnectionProvider.</para>
- <para>An IConnectionProvider is resposnbile for creation and deletion of IConnectionWrapper
+ <para>An IConnectionProvider is responsible for creation and deletion of IConnectionWrapper
objects. It must also keep a list of listeners that it is expected to inform when a
connection is added or removed from its list. </para>
[View Less]
15 years, 11 months
JBoss Tools SVN: r14317 - trunk/ws/docs/reference/en/modules.
by jbosstools-commits@lists.jboss.org
Author: smukhina
Date: 2009-03-24 20:36:08 -0400 (Tue, 24 Mar 2009)
New Revision: 14317
Modified:
trunk/ws/docs/reference/en/modules/preference.xml
trunk/ws/docs/reference/en/modules/topdown.xml
Log:
https://jira.jboss.org/jira/browse/JBDS-359 - spelling and validation is checked
Modified: trunk/ws/docs/reference/en/modules/preference.xml
===================================================================
--- trunk/ws/docs/reference/en/modules/preference.xml 2009-03-25 00:36:00 UTC (…
[View More]rev 14316)
+++ trunk/ws/docs/reference/en/modules/preference.xml 2009-03-25 00:36:08 UTC (rev 14317)
@@ -80,7 +80,7 @@
<property>Window > Preferences > Web Services > Server and Runtime</property>
</emphasis>. On this page, you can specify a default server and runtime.</para>
<para>For ease of use, the better way is to set runtime to JBoss WS.</para>
- <para>After server and runtime are specified, click on the <property>Aply</property> button
+ <para>After server and runtime are specified, click on the <property>Apply</property> button
to save the values.</para>
<figure>
<title/>
Modified: trunk/ws/docs/reference/en/modules/topdown.xml
===================================================================
--- trunk/ws/docs/reference/en/modules/topdown.xml 2009-03-25 00:36:00 UTC (rev 14316)
+++ trunk/ws/docs/reference/en/modules/topdown.xml 2009-03-25 00:36:08 UTC (rev 14317)
@@ -124,7 +124,7 @@
</figure>
<para>First, please select <property>Top down Java bean Web Service</property> from the Web
Service type list, and select a WSDL document from workspace, click on the Server name
- lilnk on the page will bring you to another dialog. Here you can specify the server to a
+ link on the page will bring you to another dialog. Here you can specify the server to a
JBoss Server and Web Service runtime to JBossWS runtime:</para>
<figure id="figure_create_ws_topdown_setserver">
<title>Select Server and Web Service runtime</title>
[View Less]
15 years, 11 months
JBoss Tools SVN: r14316 - trunk/smooks/docs/reference/en/modules.
by jbosstools-commits@lists.jboss.org
Author: smukhina
Date: 2009-03-24 20:36:00 -0400 (Tue, 24 Mar 2009)
New Revision: 14316
Modified:
trunk/smooks/docs/reference/en/modules/smooksformeditor_configurationpage.xml
Log:
https://jira.jboss.org/jira/browse/JBDS-359 - spelling and validation is checked
Modified: trunk/smooks/docs/reference/en/modules/smooksformeditor_configurationpage.xml
===================================================================
--- trunk/smooks/docs/reference/en/modules/…
[View More]smooksformeditor_configurationpage.xml 2009-03-24 19:43:18 UTC (rev 14315)
+++ trunk/smooks/docs/reference/en/modules/smooksformeditor_configurationpage.xml 2009-03-25 00:36:00 UTC (rev 14316)
@@ -20,7 +20,7 @@
</figure>
<para> You can add/edit/remove the <link linkend="configurationpage_datedecoder">Date
- Decoder</link> on the Сonfiguration page of the <property>Smooks Editor</property>. </para>
+ Decoder</link> on the Configuration page of the <property>Smooks Editor</property>. </para>
<para> The configuration also edit the <link linkend="configurationpage_parsetype">Smooks parse
type</link> and manage the <link linkend="configurationpage_importfile">Import
Files</link>.</para>
@@ -58,7 +58,7 @@
<tip>
<title>Tip:</title>
- <para> If the import file dosen't exist, the image of the import file will change to
+ <para> If the import file doesn't exist, the image of the import file will change to
"Error Image". If you double-click the import file in the Import File list, the file
will be open with a new default editor. </para>
[View Less]
15 years, 11 months
JBoss Tools SVN: r14315 - branches/jbosstools-3.0.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2009-03-24 15:43:18 -0400 (Tue, 24 Mar 2009)
New Revision: 14315
Modified:
branches/jbosstools-3.0.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamBaseWizardPage.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-4077 - Fixed
Modified: branches/jbosstools-3.0.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamBaseWizardPage.java
===================================================================
--- branches/…
[View More]jbosstools-3.0.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamBaseWizardPage.java 2009-03-24 19:41:51 UTC (rev 14314)
+++ branches/jbosstools-3.0.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamBaseWizardPage.java 2009-03-24 19:43:18 UTC (rev 14315)
@@ -442,9 +442,14 @@
* @return
*/
public IProject getSelectedProject() {
- IResource project = ResourcesPlugin.getWorkspace().getRoot().findMember(
- editorRegistry.get(IParameter.SEAM_PROJECT_NAME).getValueAsString());
- return (IProject)project;
+ String projectName = editorRegistry.get(IParameter.SEAM_PROJECT_NAME).getValueAsString();
+ if(projectName!=null && projectName.trim().length()>0) {
+ IResource project = ResourcesPlugin.getWorkspace().getRoot().findMember(projectName);
+ if(project!=null && project instanceof IProject) {
+ return (IProject)project;
+ }
+ }
+ return null;
}
public boolean isWar() {
[View Less]
15 years, 11 months
JBoss Tools SVN: r14314 - trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2009-03-24 15:41:51 -0400 (Tue, 24 Mar 2009)
New Revision: 14314
Modified:
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamBaseWizardPage.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-4077 - Fixed
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamBaseWizardPage.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/…
[View More]jboss/tools/seam/ui/wizard/SeamBaseWizardPage.java 2009-03-24 17:02:19 UTC (rev 14313)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamBaseWizardPage.java 2009-03-24 19:41:51 UTC (rev 14314)
@@ -442,9 +442,14 @@
* @return
*/
public IProject getSelectedProject() {
- IResource project = ResourcesPlugin.getWorkspace().getRoot().findMember(
- editorRegistry.get(IParameter.SEAM_PROJECT_NAME).getValueAsString());
- return (IProject)project;
+ String projectName = editorRegistry.get(IParameter.SEAM_PROJECT_NAME).getValueAsString();
+ if(projectName!=null && projectName.trim().length()>0) {
+ IResource project = ResourcesPlugin.getWorkspace().getRoot().findMember(projectName);
+ if(project!=null && project instanceof IProject) {
+ return (IProject)project;
+ }
+ }
+ return null;
}
public boolean isWar() {
[View Less]
15 years, 11 months
JBoss Tools SVN: r14313 - in trunk: vpe/plugins/org.jboss.tools.vpe.resref/src/org/jboss/tools/vpe/resref/core and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: yradtsevich
Date: 2009-03-24 13:02:19 -0400 (Tue, 24 Mar 2009)
New Revision: 14313
Modified:
trunk/common/plugins/org.jboss.tools.common.resref.ui/src/org/jboss/tools/common/resref/ui/BaseAddReferenceSupport.java
trunk/vpe/plugins/org.jboss.tools.vpe.resref/src/org/jboss/tools/vpe/resref/core/Messages.java
trunk/vpe/plugins/org.jboss.tools.vpe.resref/src/org/jboss/tools/vpe/resref/core/VpeELReferenceSupport.java
trunk/vpe/plugins/org.jboss.tools.vpe.resref/src/org/jboss/…
[View More]tools/vpe/resref/core/VpeElVariableValidator.java
trunk/vpe/plugins/org.jboss.tools.vpe.resref/src/org/jboss/tools/vpe/resref/core/messages.properties
Log:
CODING IN PROGRESS - issue JBIDE-3576: EL expression overriding
https://jira.jboss.org/jira/browse/JBIDE-3576
- now validator for 'EL References' dialog checks if the expression already exists.
Modified: trunk/common/plugins/org.jboss.tools.common.resref.ui/src/org/jboss/tools/common/resref/ui/BaseAddReferenceSupport.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.resref.ui/src/org/jboss/tools/common/resref/ui/BaseAddReferenceSupport.java 2009-03-24 15:43:02 UTC (rev 14312)
+++ trunk/common/plugins/org.jboss.tools.common.resref.ui/src/org/jboss/tools/common/resref/ui/BaseAddReferenceSupport.java 2009-03-24 17:02:19 UTC (rev 14313)
@@ -32,6 +32,7 @@
object.setAttributeValue("prefix", css.getProperties()); //$NON-NLS-1$
}
Properties p = new Properties();
+ p.put("resourceReference", css); //$NON-NLS-1$
p.put("scope",Integer.valueOf(css.getScope())); //$NON-NLS-1$
p.put("list", list); //$NON-NLS-1$
if(file != null) p.put("file", file); //$NON-NLS-1$
@@ -111,7 +112,7 @@
getProperties().put("scope", Integer.valueOf(scope)); //$NON-NLS-1$
}
- int getSelectedScope(Properties p0) {
+ public int getSelectedScope(Properties p0) {
String scopeName = p0.getProperty("scope"); //$NON-NLS-1$
for (int i = 0; i < scopeNames.length; i++) {
if(scopeNames[i].equals(scopeName)) return i;
Modified: trunk/vpe/plugins/org.jboss.tools.vpe.resref/src/org/jboss/tools/vpe/resref/core/Messages.java
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe.resref/src/org/jboss/tools/vpe/resref/core/Messages.java 2009-03-24 15:43:02 UTC (rev 14312)
+++ trunk/vpe/plugins/org.jboss.tools.vpe.resref/src/org/jboss/tools/vpe/resref/core/Messages.java 2009-03-24 17:02:19 UTC (rev 14313)
@@ -41,4 +41,5 @@
public static String ACTUAL_RUN_TIME_ABSOLUTE_FOLDER;
public static String ACTUAL_RUN_TIME_RELATIVE_FOLDER;
public static String INVALID_EL_EXPRESSION;
+ public static String EL_EXPRESSION_ALREADY_EXISTS;
}
Modified: trunk/vpe/plugins/org.jboss.tools.vpe.resref/src/org/jboss/tools/vpe/resref/core/VpeELReferenceSupport.java
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe.resref/src/org/jboss/tools/vpe/resref/core/VpeELReferenceSupport.java 2009-03-24 15:43:02 UTC (rev 14312)
+++ trunk/vpe/plugins/org.jboss.tools.vpe.resref/src/org/jboss/tools/vpe/resref/core/VpeELReferenceSupport.java 2009-03-24 17:02:19 UTC (rev 14313)
@@ -11,19 +11,21 @@
package org.jboss.tools.vpe.resref.core;
import org.jboss.tools.common.meta.action.impl.WizardDataValidator;
+import org.jboss.tools.common.resref.core.ResourceReference;
/**
* @author mareshkau
*
*/
public class VpeELReferenceSupport extends VpeAddReferenceSupport {
-
/* (non-Javadoc)
* @see org.jboss.tools.common.meta.action.impl.SpecialWizardSupport#getValidator(int)
*/
@Override
public WizardDataValidator getValidator(int step) {
- return new VpeElVariableValidator(this ,getStepId());
+ ResourceReference[] currentReferenceList = (ResourceReference[])p.get("list"); //$NON-NLS-1$
+ ResourceReference editingReference = (ResourceReference)p.get("resourceReference"); //$NON-NLS-1$
+ return new VpeElVariableValidator(this, getStepId(), currentReferenceList, editingReference);
}
}
Modified: trunk/vpe/plugins/org.jboss.tools.vpe.resref/src/org/jboss/tools/vpe/resref/core/VpeElVariableValidator.java
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe.resref/src/org/jboss/tools/vpe/resref/core/VpeElVariableValidator.java 2009-03-24 15:43:02 UTC (rev 14312)
+++ trunk/vpe/plugins/org.jboss.tools.vpe.resref/src/org/jboss/tools/vpe/resref/core/VpeElVariableValidator.java 2009-03-24 17:02:19 UTC (rev 14313)
@@ -16,21 +16,28 @@
import org.jboss.tools.common.el.core.parser.ELParser;
import org.jboss.tools.common.el.core.parser.ELParserUtil;
import org.jboss.tools.common.meta.action.impl.DefaultWizardDataValidator;
-import org.jboss.tools.common.meta.action.impl.SpecialWizardSupport;
+import org.jboss.tools.common.resref.core.ResourceReference;
+import org.jboss.tools.common.resref.ui.BaseAddReferenceSupport;
/**
* @author mareshkau
*
*/
public class VpeElVariableValidator extends DefaultWizardDataValidator {
+ private ResourceReference[] currentReferenceList;
+ private ResourceReference editingReference;
/**
*
* @param support
* @param step
+ * @param resourceReferences
+ * @param editingReference
*/
- public VpeElVariableValidator(SpecialWizardSupport support, int step) {
+ public VpeElVariableValidator(BaseAddReferenceSupport support, int step, ResourceReference[] currentReferenceList, ResourceReference editingReference) {
super.setSupport(support, step);
+ this.currentReferenceList = currentReferenceList;
+ this.editingReference = editingReference;
}
/* (non-Javadoc)
@@ -43,14 +50,25 @@
if( (getErrorMessage()!=null) ||
(getWarningMessage()!=null)) {
return;
- }
+ }
String location = (String) data.get("location"); //$NON-NLS-1$
ELParser elParser = ELParserUtil.getDefaultFactory().createParser();
ELModel model = elParser.parse("#{"+location+'}'); //$NON-NLS-1$
if(model == null || model.getSyntaxErrors().size()>0) {
- message=Messages.INVALID_EL_EXPRESSION;
+ message = Messages.INVALID_EL_EXPRESSION;
+ } else {
+ // yradtsevich: JBIDE-3576: EL expression overriding
+ // check if there is no another EL reference in the same scope with the same name
+ final int selectedScope = ((BaseAddReferenceSupport)support).getSelectedScope(data);
+ for (ResourceReference listItemReference : currentReferenceList) {
+ if (editingReference != listItemReference
+ && listItemReference.getScope() == selectedScope
+ && location.equals(listItemReference.getLocation())) {
+ message = Messages.EL_EXPRESSION_ALREADY_EXISTS;
+ break;
+ }
+ }
}
-
}
}
Modified: trunk/vpe/plugins/org.jboss.tools.vpe.resref/src/org/jboss/tools/vpe/resref/core/messages.properties
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe.resref/src/org/jboss/tools/vpe/resref/core/messages.properties 2009-03-24 15:43:02 UTC (rev 14312)
+++ trunk/vpe/plugins/org.jboss.tools.vpe.resref/src/org/jboss/tools/vpe/resref/core/messages.properties 2009-03-24 17:02:19 UTC (rev 14313)
@@ -1,7 +1,8 @@
INCLUDED_CSS_FILES=Included css files
INCLUDED_TAG_LIBS=Included tag libs
-SUBSTITUTED_EL_EXPRESSIONS=Substituted El expressions
+SUBSTITUTED_EL_EXPRESSIONS=Substituted EL expressions
ACTUAL_RUN_TIME_ABSOLUTE_FOLDER=Absolute Folder
ACTUAL_RUN_TIME_RELATIVE_FOLDER=Relative Folder
ACTUAL_RUN_TIME_FOLDERS=Actual Run-Time Folders
-INVALID_EL_EXPRESSION=Invalid El Expression
+INVALID_EL_EXPRESSION=Invalid EL Expression.
+EL_EXPRESSION_ALREADY_EXISTS=EL expression already exists in the selected scope.
[View Less]
15 years, 11 months
JBoss Tools SVN: r14312 - trunk/seam/docs/reference/en/modules.
by jbosstools-commits@lists.jboss.org
Author: ochikvina
Date: 2009-03-24 11:43:02 -0400 (Tue, 24 Mar 2009)
New Revision: 14312
Modified:
trunk/seam/docs/reference/en/modules/seam_editors.xml
Log:
https://jira.jboss.org/jira/browse/JBDS-636 - adding the note to the "Seam Validation" section;
Modified: trunk/seam/docs/reference/en/modules/seam_editors.xml
===================================================================
--- trunk/seam/docs/reference/en/modules/seam_editors.xml 2009-03-24 14:56:57 UTC (rev 14311)
+++ trunk/seam/…
[View More]docs/reference/en/modules/seam_editors.xml 2009-03-24 15:43:02 UTC (rev 14312)
@@ -376,8 +376,6 @@
<section id="SeamEditors">
<title>Main Features of Seam Editors</title>
-
-
<para>In this chapter you will know what Seam Editors features are and how to work with them. </para>
<section id="ContentAssist">
@@ -513,6 +511,10 @@
</mediaobject>
</figure>
+ <note>
+ <title>Note:</title>
+ <para>Please note, only files within source path and web content are validated, meaning temporary files or test files are not included.</para>
+ </note>
<para>In the preferences page for Seam Validator you can see and modify the validator
behavior. Go to <emphasis>
[View Less]
15 years, 11 months