JBoss Tools SVN: r7451 - trunk/hibernatetools/docs/reference/en.
by jbosstools-commits@lists.jboss.org
Author: afedosik
Date: 2008-04-09 09:10:41 -0400 (Wed, 09 Apr 2008)
New Revision: 7451
Modified:
trunk/hibernatetools/docs/reference/en/master.xml
Log:
http://jira.jboss.com/jira/browse/JBDS-292 guide version update according to beta1 release
Modified: trunk/hibernatetools/docs/reference/en/master.xml
===================================================================
--- trunk/hibernatetools/docs/reference/en/master.xml 2008-04-09 13:05:46 UTC (rev 7450)
+++ trunk/hibernatetools/docs/reference/en/master.xml 2008-04-09 13:10:41 UTC (rev 7451)
@@ -14,8 +14,15 @@
<subtitle>Reference Guide</subtitle>
+ <pubdate>April 2008</pubdate>
+ <copyright>
+ <year>2007</year>
+ <year>2008</year>
+ <holder>JBoss, a division of Red Hat Inc.</holder>
+ </copyright>
+
<releaseinfo>
- <para>Version: 3.2.1.GA</para>
+ <para>Version: 3.2.1.Beta1</para>
</releaseinfo>
17 years, 8 months
JBoss Tools SVN: r7450 - trunk/as/docs/reference/en.
by jbosstools-commits@lists.jboss.org
Author: afedosik
Date: 2008-04-09 09:05:46 -0400 (Wed, 09 Apr 2008)
New Revision: 7450
Modified:
trunk/as/docs/reference/en/master.xml
Log:
http://jira.jboss.com/jira/browse/JBDS-292 guide version update according to beta1 release
Modified: trunk/as/docs/reference/en/master.xml
===================================================================
--- trunk/as/docs/reference/en/master.xml 2008-04-09 13:00:47 UTC (rev 7449)
+++ trunk/as/docs/reference/en/master.xml 2008-04-09 13:05:46 UTC (rev 7450)
@@ -14,12 +14,14 @@
<bookinfo>
<title>JBoss Server Manager Reference Guide</title>
+ <pubdate>April 2008</pubdate>
<copyright>
<year>2007</year>
- <holder>Red Hat</holder>
+ <year>2008</year>
+ <holder>JBoss, a division of Red Hat Inc.</holder>
</copyright>
<releaseinfo>
-<para>Version: 1.0.1.GA</para>
+<para>Version: 1.1.0.Beta1</para>
</releaseinfo>
</bookinfo>
17 years, 8 months
JBoss Tools SVN: r7449 - in trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui: widget/editor and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2008-04-09 09:00:47 -0400 (Wed, 09 Apr 2008)
New Revision: 7449
Modified:
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamSettingsPreferencePage.java
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/BaseFieldEditor.java
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/ButtonFieldEditor.java
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamWizardFactory.java
Log:
http://jira.jboss.com/jira/browse/JBIDE-1990
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamSettingsPreferencePage.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamSettingsPreferencePage.java 2008-04-09 12:51:38 UTC (rev 7448)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamSettingsPreferencePage.java 2008-04-09 13:00:47 UTC (rev 7449)
@@ -163,7 +163,7 @@
registerEditor(projectNameEditor, generalGroup);
- IFieldEditor connProfileEditor = SeamWizardFactory.createConnectionProfileSelectionFieldEditor(getConnectionProfile(), ValidatorFactory.NO_ERRORS_VALIDATOR);
+ IFieldEditor connProfileEditor = SeamWizardFactory.createConnectionProfileSelectionFieldEditor(getConnectionProfile(), ValidatorFactory.NO_ERRORS_VALIDATOR, true);
registerEditor(connProfileEditor, generalGroup);
Group deploymentGroup = createGroup(
@@ -434,9 +434,11 @@
}
private String getConnectionProfile() {
- String defaultDs = SeamProjectPreferences.getStringPreference(
- SeamProjectPreferences.SEAM_DEFAULT_CONNECTION_PROFILE);
- return getProfileNameList().contains(defaultDs)?defaultDs:""; //$NON-NLS-1$
+ String ds = preferences.get(ISeamFacetDataModelProperties.SEAM_CONNECTION_PROFILE, null);
+ if(ds==null) {
+ ds = SeamProjectPreferences.getStringPreference(SeamProjectPreferences.SEAM_DEFAULT_CONNECTION_PROFILE);
+ }
+ return (ds!=null && getProfileNameList().contains(ds))?ds:""; //$NON-NLS-1$
}
private String getEjbProjectName() {
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/BaseFieldEditor.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/BaseFieldEditor.java 2008-04-09 12:51:38 UTC (rev 7448)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/BaseFieldEditor.java 2008-04-09 13:00:47 UTC (rev 7449)
@@ -166,6 +166,9 @@
public void setEnabled(boolean enabled) {
this.enabled = enabled;
Control[] controls = getSwtControls();
+ if(controls==null) {
+ return;
+ }
for(int i=0;i<controls.length;i++) {
Control control = controls[i];
control.setEnabled(enabled);
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/ButtonFieldEditor.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/ButtonFieldEditor.java 2008-04-09 12:51:38 UTC (rev 7448)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/ButtonFieldEditor.java 2008-04-09 13:00:47 UTC (rev 7449)
@@ -42,13 +42,16 @@
buttonAction = action;
buttonAction.setFieldEditor(this);
}
-
+
@Override
public void doFillIntoGrid(Object parent) {
}
@Override
public Object[] getEditorControls() {
+ if(button==null) {
+ return null;
+ }
return new Control[]{button.getControl()};
}
@@ -68,6 +71,7 @@
public Object[] getEditorControls(Object composite) {
if(button==null && composite!=null) {
button = new PushButtonField((Composite)composite,buttonAction);
+ setEnabled(isEnabled());
}
return new Control[]{button.getControl()};
}
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamWizardFactory.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamWizardFactory.java 2008-04-09 12:51:38 UTC (rev 7448)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/SeamWizardFactory.java 2008-04-09 13:00:47 UTC (rev 7449)
@@ -11,6 +11,8 @@
package org.jboss.tools.seam.ui.wizard;
+import java.beans.PropertyChangeEvent;
+import java.beans.PropertyChangeListener;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
@@ -174,24 +176,48 @@
/**
* Creates Selection Field of Connection Profiles
* @param defaultValue
+ * @param canBeEmpty
* @return
*/
- public static IFieldEditor createConnectionProfileSelectionFieldEditor(Object defaultValue, IValidator validator) {
+ public static IFieldEditor createConnectionProfileSelectionFieldEditor(Object defaultValue, IValidator validator, boolean canBeEmpty) {
EditConnectionProfileAction editAction = new EditConnectionProfileAction(validator);
NewConnectionProfileAction newAction = new NewConnectionProfileAction(validator);
+ List<String> profiles = getConnectionProfileNameList();
+ if(canBeEmpty) {
+ profiles.add(0, "");
+ }
IFieldEditor connProfileSelEditor = IFieldEditorFactory.INSTANCE.createComboWithTwoButtons(
ISeamFacetDataModelProperties.SEAM_CONNECTION_PROFILE,
SeamUIMessages.SEAM_INSTALL_WIZARD_PAGE_CONNECTION_PROFILE,
- getConnectionProfileNameList(),
+ profiles,
defaultValue,
false, editAction,
newAction,
ValidatorFactory.NO_ERRORS_VALIDATOR);
editAction.setEditor(connProfileSelEditor);
newAction.setEditor(connProfileSelEditor);
+ final ButtonFieldEditor editButton = (ButtonFieldEditor)((CompositeEditor)connProfileSelEditor).getEditors().get(2);
+ editButton.setEnabled(!"".equals(defaultValue));
+ if(canBeEmpty) {
+ connProfileSelEditor.addPropertyChangeListener(new PropertyChangeListener(){
+ public void propertyChange(PropertyChangeEvent evt) {
+ boolean ediatble = !"".equals(evt.getNewValue());
+ editButton.setEnabled(ediatble);
+ }
+ });
+ }
return connProfileSelEditor;
}
+ /**
+ * Creates Selection Field of Connection Profiles
+ * @param defaultValue
+ * @return
+ */
+ public static IFieldEditor createConnectionProfileSelectionFieldEditor(Object defaultValue, IValidator validator) {
+ return createConnectionProfileSelectionFieldEditor(defaultValue, validator, false);
+ }
+
private static class EditConnectionProfileAction extends ButtonFieldEditor.ButtonPressedAction {
private IValidator validator;
17 years, 8 months
JBoss Tools SVN: r7448 - trunk/seam/docs/reference/en.
by jbosstools-commits@lists.jboss.org
Author: afedosik
Date: 2008-04-09 08:51:38 -0400 (Wed, 09 Apr 2008)
New Revision: 7448
Modified:
trunk/seam/docs/reference/en/master.xml
Log:
http://jira.jboss.com/jira/browse/JBDS-292 guide version update according to beta1 release
Modified: trunk/seam/docs/reference/en/master.xml
===================================================================
--- trunk/seam/docs/reference/en/master.xml 2008-04-09 12:19:19 UTC (rev 7447)
+++ trunk/seam/docs/reference/en/master.xml 2008-04-09 12:51:38 UTC (rev 7448)
@@ -20,14 +20,19 @@
<book>
<bookinfo>
+
<title>Seam Dev Tools Reference Guide</title>
- <copyright>
- <year>2007</year>
- <holder>Red Hat</holder>
- </copyright>
- <releaseinfo>
-<para>Version: 2.0.1.GA</para>
-</releaseinfo>
+
+ <pubdate>April 2008</pubdate>
+ <copyright>
+ <year>2007</year>
+ <year>2008</year>
+ <holder>JBoss, a division of Red Hat Inc.</holder>
+ </copyright>
+ <releaseinfo>
+ <para>Version: 2.0.1.Beta1</para>
+ </releaseinfo>
+
</bookinfo>
17 years, 8 months
JBoss Tools SVN: r7447 - trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2008-04-09 08:19:19 -0400 (Wed, 09 Apr 2008)
New Revision: 7447
Modified:
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/OpenSeamComponentDialog.java
Log:
http://jira.jboss.com/jira/browse/JBIDE-1993
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/OpenSeamComponentDialog.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/OpenSeamComponentDialog.java 2008-04-09 10:33:35 UTC (rev 7446)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/wizard/OpenSeamComponentDialog.java 2008-04-09 12:19:19 UTC (rev 7447)
@@ -97,15 +97,11 @@
progressMonitor.subTask(SeamUIMessages.OPEN_SEAM_COMPONENT_DIALOG_WAIT);
- boolean interrupted= true;
- while (interrupted) {
- try {
- Job.getJobManager().join(ResourcesPlugin.FAMILY_AUTO_BUILD, null);
- interrupted= false;
- } catch (InterruptedException e) {
- interrupted= true;
- }
- }
+ try {
+ Job.getJobManager().join(ResourcesPlugin.FAMILY_AUTO_BUILD, null);
+ } catch (InterruptedException e) {
+ // do nothing
+ }
IProject[] projects = ResourcesPlugin.getWorkspace().getRoot()
.getProjects();
17 years, 8 months
JBoss Tools SVN: r7446 - trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor.
by jbosstools-commits@lists.jboss.org
Author: sdzmitrovich
Date: 2008-04-09 06:33:35 -0400 (Wed, 09 Apr 2008)
New Revision: 7446
Modified:
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/VpeVisualDomBuilder.java
Log:
http://jira.jboss.com/jira/browse/JBIDE-1583
Modified: trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/VpeVisualDomBuilder.java
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/VpeVisualDomBuilder.java 2008-04-09 10:30:34 UTC (rev 7445)
+++ trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/VpeVisualDomBuilder.java 2008-04-09 10:33:35 UTC (rev 7446)
@@ -57,7 +57,6 @@
import org.jboss.tools.vpe.editor.mapping.VpeElementMapping;
import org.jboss.tools.vpe.editor.mapping.VpeNodeMapping;
import org.jboss.tools.vpe.editor.mozilla.MozillaEditor;
-import org.jboss.tools.vpe.editor.template.ITemplateNodesManager;
import org.jboss.tools.vpe.editor.template.VpeChildrenInfo;
import org.jboss.tools.vpe.editor.template.VpeCreationData;
import org.jboss.tools.vpe.editor.template.VpeCreatorUtil;
@@ -167,6 +166,18 @@
private Map<IFile, Document> includeDocuments = new HashMap<IFile, Document>();
+
+ /**
+ * facelet elements, if there are these elements on a page then other
+ * elements are deleted
+ */
+ static private HashSet<String> faceletRootElements = new HashSet<String>();
+
+ static {
+ faceletRootElements.add("composition"); //$NON-NLS-1$
+ faceletRootElements.add("component"); //$NON-NLS-1$
+ }
+
public VpeVisualDomBuilder(VpeDomMapping domMapping,
INodeAdapter sorceAdapter, VpeTemplateManager templateManager,
MozillaEditor visualEditor, VpePageContext pageContext) {
@@ -190,27 +201,77 @@
}
public void buildDom(Document sourceDocument) {
- VpeSourceDomBuilder sourceBuilder = pageContext.getSourceBuilder();
- IDocument document = sourceBuilder.getStructuredTextViewer()
- .getDocument();
- if (document == null)
- return;
- includeStack = new ArrayList();
- IEditorInput input = pageContext.getEditPart().getEditorInput();
- if (input instanceof IFileEditorInput) {
- IFile file = ((IFileEditorInput) input).getFile();
- if (file != null) {
- includeStack.add(new VpeIncludeInfo(null, file, pageContext
- .getSourceBuilder().getSourceDocument()));
- }
+ VpeSourceDomBuilder sourceBuilder = pageContext.getSourceBuilder();
+ IDocument document = sourceBuilder.getStructuredTextViewer()
+ .getDocument();
+ if (document == null)
+ return;
+ includeStack = new ArrayList();
+ IEditorInput input = pageContext.getEditPart().getEditorInput();
+ if (input instanceof IFileEditorInput) {
+ IFile file = ((IFileEditorInput) input).getFile();
+ if (file != null) {
+ includeStack.add(new VpeIncludeInfo(null, file, pageContext
+ .getSourceBuilder().getSourceDocument()));
+ }
+ }
+ pageContext.refreshConnector();
+ pageContext.installIncludeElements();
+ if (isFacelet()) {
+ Element root = getRootElement(sourceDocument);
+ if(root != null)
+ {
+ addNode(root, null, visualContentArea);
+
+ }
+
+ } else {
+ addChildren(null, sourceDocument, visualContentArea);
+ registerNodes(new VpeNodeMapping(sourceDocument, visualContentArea));
+ }
}
- pageContext.refreshConnector();
- pageContext.installIncludeElements();
- addChildren(null, sourceDocument, visualContentArea);
- registerNodes(new VpeNodeMapping(sourceDocument, visualContentArea));
-
- }
+ private Element getRootElement(Document sourceDocument) {
+
+ NodeList nodeList = sourceDocument.getChildNodes();
+ Element root = null;
+
+ for (int i = 0; i < nodeList.getLength(); i++) {
+ Node child = nodeList.item(i);
+ if (child.getNodeType() == Node.ELEMENT_NODE) {
+ root = (Element) child;
+ break;
+ }
+ }
+
+ if (root != null) {
+ Element trimmedElement = findFaceletRootElement(root);
+ if (trimmedElement != null)
+ root = trimmedElement;
+ }
+ return root;
+ }
+
+ private Element findFaceletRootElement(Element element) {
+
+ NodeList children = element.getChildNodes();
+
+ for (int i = 0; i < children.getLength(); i++) {
+ Node child = children.item(i);
+ if (child.getNodeType() == Node.ELEMENT_NODE) {
+
+ Element trimmedElement = findFaceletRootElement((Element) child);
+ if (trimmedElement != null)
+ return trimmedElement;
+
+ }
+ }
+
+ if (faceletRootElements.contains(element.getLocalName()))
+ return element;
+ return null;
+ }
+
public void rebuildDom(Document sourceDocument) {
// clearIncludeDocuments();
cleanHead();
17 years, 8 months
JBoss Tools SVN: r7445 - trunk/jsf/docs/userguide/en/modules.
by jbosstools-commits@lists.jboss.org
Author: tromanovich
Date: 2008-04-09 06:30:34 -0400 (Wed, 09 Apr 2008)
New Revision: 7445
Modified:
trunk/jsf/docs/userguide/en/modules/Visual_Web_Tools.xml
trunk/jsf/docs/userguide/en/modules/editors.xml
Log:
http://jira.jboss.com/jira/browse/JBDS-140 links in docs should be relative
Changed internal links on the external
Modified: trunk/jsf/docs/userguide/en/modules/Visual_Web_Tools.xml
===================================================================
--- trunk/jsf/docs/userguide/en/modules/Visual_Web_Tools.xml 2008-04-09 10:28:43 UTC (rev 7444)
+++ trunk/jsf/docs/userguide/en/modules/Visual_Web_Tools.xml 2008-04-09 10:30:34 UTC (rev 7445)
@@ -68,39 +68,40 @@
<row>
<entry>JSF and Facelets support</entry>
<entry>Step-by-step wizards for creating new JSF and Facelets projects with a number of predefined templates, importing existing ones and adding JSF capabilities to non-jsf web projects.</entry>
- <entry><link linkend="SupportForJSFEnvironmentsJSF_RIMyFacesFaceletsShaleOrAnyCustom442">jsf support</link></entry>
+ <entry><link linkend="../../../jsf_tools_ref_guide/en/html_single/index.html#jsf_support">jsf support</link></entry>
</row>
<row>
<entry>Flexible and customizable project template management</entry>
<entry>Jump-start development with out-of-the-box templates or easily customized templates
for re-use.</entry>
- <entry><link linkend="WorkingWithProjects7844">working with projects</link></entry>
+ <entry><link linkend="../../../jsf_tools_ref_guide/en/html_single/index.html#projects">working with projects</link></entry>
</row>
<row>
<entry>Support for Managed Beans</entry>
<entry>Adding new managed beans, generating code for attributes, properties and getter/setter methods.</entry>
- <entry><link linkend="ManagedBeans96453">managed beans</link></entry>
+ <entry><link linkend="../../../jsf_tools_ref_guide/en/html_single/index.html#managed_beans">managed beans</link></entry>
</row>
<row>
<entry>OpenOn</entry>
<entry>Easy navigation between views and other parts of your projects.</entry>
- <entry><link linkend="FaceletsSupport865">facelets support</link></entry>
+ <entry><link linkend="../../../jsf_tools_ref_guide/en/html_single/index.html#FaceletsSupport865">facelets support</link></entry>
</row>
<row>
<entry>Content Assist</entry>
<entry>Code completion proposals while working in java, xml, jsp, xhtml, xhtml, seam project and jsf configuration files. Content assist based on project data (dynamic code assist); with graphical editor. Code completion for values from property files, beans attributes and methods, navigation rule outcomes and jsf variables.</entry>
- <entry><link linkend="ContentAssist976">content assist</link></entry>
+ <entry><link linkend="../../../jsf_tools_ref_guide/en/html_single/index.html#ContentAssist976">content assist</link></entry>
</row>
<row>
<entry>Support for Custom Converters and Validators</entry>
<entry>Fast creating of custom converters and validators with tree view of faces-config.xml file.</entry>
- <entry><link linkend="CreateAndRegisterACustomConverter94230">converters and validators</link></entry>
+ <entry><link linkend="../../../jsf_tools_ref_guide/en/html_single/index.html#CreateAndRegisterACustomConverter94230">converters and validators</link></entry>
</row>
<row>
<entry>Verification and Validation</entry>
<entry>All occuring errors will be immediately reported by verification feature, no matter in what view you are working. Constant validation and errors checking allows to catch many of the errors during development process that significantly reduces development time.</entry>
- <entry><link linkend="verif_valid">verification and validation</link></entry>
+ <entry><link linkend="../../../jsf_tools_ref_guide/en/html_single/index.html#jsf_project_verification">verification and validation</link></entry>
+
</row>
<row>
<entry>Drag-and-Drop</entry>
@@ -110,13 +111,13 @@
<row>
<entry>Struts Support</entry>
<entry>Step-by-step wizards for creating a new struts project with a number of predefined templates, importing existing ones and adding struts capabilities to non-struts web projects.</entry>
- <entry><link linkend="Struts_support">struts support</link></entry>
+ <entry><link linkend="../../../struts_tools_ref_guide/en/html_single/index.html#projects">struts support</link></entry>
</row>
<row>
<entry>Support for JSF and Struts Configuration Files</entry>
<entry>Working on files using three modes: diagram, tree and source. Synchronization between the modes and full control over the code. Easy moving around the diagram using the Diagram Navigator. Working with struts projects that have multiple modules. Possibility to use Struts configuration file debugger allowing to set break points on struts diagram and then launch the server in debug mode.</entry>
- <entry><link linkend="GraphicalEditorAndViewingForJSFConfigurationFiles76331">graphical editor for jsf</link> <link linkend="GraphicalEditorForStrutsConfigurationFiles564">graphical editor for struts</link> </entry>
+ <entry><link linkend="../../../jsf_tools_ref_guide/en/html_single/index.html#jsf_config_file">graphical editor for jsf</link> <link linkend="../../../struts_tools_ref_guide/en/html_single/index.html#struts_config_editor">graphical editor for struts</link> </entry>
</row>
<row>
<entry>Rich Faces Support</entry>
Modified: trunk/jsf/docs/userguide/en/modules/editors.xml
===================================================================
--- trunk/jsf/docs/userguide/en/modules/editors.xml 2008-04-09 10:28:43 UTC (rev 7444)
+++ trunk/jsf/docs/userguide/en/modules/editors.xml 2008-04-09 10:30:34 UTC (rev 7445)
@@ -12,10 +12,10 @@
<title>Editors</title>
<para>In previous chapters you had possibility to read about Graphical Editor for
- <link linkend="GraphicalEditorAndViewingForJSFConfigurationFiles76331">JSF</link> and
- <link linkend="GraphicalEditorForStrutsConfigurationFiles564">Struts</link> configuration files,
- <link linkend="GraphicalEditorForTilesFiles132">Graphical Editor for Tiles Files</link>,
- <link linkend="GraphicalEditorForStrutsValidationFiles86">Graphical Editor for Struts Validation Files</link>.
+ <link linkend="../../../jsf_tools_ref_guide/en/html_single/index.html#jsf_config_file">JSF</link> and
+ <link linkend="../../../struts_tools_ref_guide/en/html_single/index.html#struts_config_editor">Struts</link> configuration files,
+ <link linkend="../../../struts_tools_ref_guide/en/html_single/index.html#GraphicalEditorForTilesFiles132">Graphical Editor for Tiles Files</link>,
+ <link linkend="../../../struts_tools_ref_guide/en/html_single/index.html#GraphicalEditorForStrutsValidationFiles86">Graphical Editor for Struts Validation Files</link>.
All these editors have <link linkend="OpenOnSelection4Hyperlinknavigation"><property>OpenOn</property></link> and
<link linkend="CodeAssistAndDynamicCodeAssist42BasedOnProjectData"><property>Content Assist</property></link> features,
they are described more detail in this chapter. In addition you get to know a <link linkend="visual_page">Visual Page Editor</link> for combined visual and source editing
17 years, 8 months
JBoss Tools SVN: r7444 - trunk/jsf/docs/jsf_tools_ref_guide/en/modules.
by jbosstools-commits@lists.jboss.org
Author: tromanovich
Date: 2008-04-09 06:28:43 -0400 (Wed, 09 Apr 2008)
New Revision: 7444
Modified:
trunk/jsf/docs/jsf_tools_ref_guide/en/modules/jsf_config_file.xml
Log:
http://jira.jboss.com/jira/browse/JBDS-140 links in docs should be relative
Changed internal links on the external (verification link)
Modified: trunk/jsf/docs/jsf_tools_ref_guide/en/modules/jsf_config_file.xml
===================================================================
--- trunk/jsf/docs/jsf_tools_ref_guide/en/modules/jsf_config_file.xml 2008-04-09 09:58:28 UTC (rev 7443)
+++ trunk/jsf/docs/jsf_tools_ref_guide/en/modules/jsf_config_file.xml 2008-04-09 10:28:43 UTC (rev 7444)
@@ -223,7 +223,7 @@
error checking. This greatly reduces your development time as it allows you to catch
many of the errors during development.</para>
<para>Errors will be reported by JBoss Developer Studio's <link
- linkend="../../../jsf/en/html_single/index.html#verif_valid"> verification</link> facility:</para>
+ linkend="jsf_project_verification"> verification</link> facility:</para>
<figure>
<title>Error Reporting in Source View</title>
<mediaobject>
17 years, 8 months
JBoss Tools SVN: r7443 - trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template.
by jbosstools-commits@lists.jboss.org
Author: dmaliarevich
Date: 2008-04-09 05:58:28 -0400 (Wed, 09 Apr 2008)
New Revision: 7443
Modified:
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/VpeDefaultPseudoContentCreator.java
Log:
http://jira.jboss.com/jira/browse/JBIDE-2026, Fixes "td" size changing.
Modified: trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/VpeDefaultPseudoContentCreator.java
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/VpeDefaultPseudoContentCreator.java 2008-04-09 09:46:51 UTC (rev 7442)
+++ trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/VpeDefaultPseudoContentCreator.java 2008-04-09 09:58:28 UTC (rev 7443)
@@ -26,11 +26,16 @@
private static Set withoutPseudoContentSet = new HashSet();
static {
- withoutPseudoContentSet.add("br");
- withoutPseudoContentSet.add("nobr");
- withoutPseudoContentSet.add("input");
- withoutPseudoContentSet.add("textarea");
- withoutPseudoContentSet.add("select");
+ /*
+ * http://jira.jboss.com/jira/browse/JBIDE-2026
+ * Fixes "td" size changing.
+ */
+ withoutPseudoContentSet.add("td"); //$NON-NLS-1$
+ withoutPseudoContentSet.add("br"); //$NON-NLS-1$
+ withoutPseudoContentSet.add("nobr"); //$NON-NLS-1$
+ withoutPseudoContentSet.add("input"); //$NON-NLS-1$
+ withoutPseudoContentSet.add("textarea"); //$NON-NLS-1$
+ withoutPseudoContentSet.add("select"); //$NON-NLS-1$
}
public static final VpePseudoContentCreator getInstance() {
17 years, 8 months
JBoss Tools SVN: r7442 - trunk/documentation/guides/GettingStartedGuide/en/modules.
by jbosstools-commits@lists.jboss.org
Author: ochikvina
Date: 2008-04-09 05:46:51 -0400 (Wed, 09 Apr 2008)
New Revision: 7442
Modified:
trunk/documentation/guides/GettingStartedGuide/en/modules/further_reading.xml
Log:
http://jira.jboss.com/jira/browse/JBDS-172 - the descriptions for jBPM reference guide and Hibernate tools guide are added
Modified: trunk/documentation/guides/GettingStartedGuide/en/modules/further_reading.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en/modules/further_reading.xml 2008-04-09 09:18:15 UTC (rev 7441)
+++ trunk/documentation/guides/GettingStartedGuide/en/modules/further_reading.xml 2008-04-09 09:46:51 UTC (rev 7442)
@@ -91,6 +91,10 @@
<ulink url="../../../jbpm/en/html_single/index.html">(html single)</ulink>
<ulink url="../../../jbpm/en/pdf/jBPM_Tools_Ref.pdf">(PDF)</ulink>
</para>
+ <para>With jBPM Tools Reference Guide we'll help you to facilitate a cross-product
+ learning and know how you can speed your development using special editors and visual designers.
+ We'll also guide you through the steps on how to create a simple process and test it
+ within jBPM jPDL perspective.</para>
<para>
<emphasis role="bold">Hibernate Tools Reference Guide</emphasis>
@@ -98,6 +102,11 @@
<ulink url="../../../hibernatetools/en/html_single/index.html">(html single)</ulink>
<ulink url="../../../hibernatetools/en/pdf/hibernate_tools.pdf">(PDF)</ulink>
</para>
+ <para>Throughout this guide you will learn how to install and use Hibernate Tools bath via Ant and
+ through Eclipse. We'll supply you with the information on how to create mapping files,
+ configuration file as well as a file for controlling reverse engineering by using specific
+ wizards that Hibernate tooling provides. Also you will know about Code Generation and
+ peculiarities of work within Hibernate Console Perspective.</para>
<para>
<emphasis role="bold">Exadel Studio Migration Guide</emphasis>
17 years, 8 months