JBoss Tools SVN: r10499 - in trunk/seam/plugins/org.jboss.tools.seam.ui.pages: resources/org/jboss/tools/seam/ui/pages/editor/icons and 2 other directories.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2008-09-26 08:08:30 -0400 (Fri, 26 Sep 2008)
New Revision: 10499
Added:
trunk/seam/plugins/org.jboss.tools.seam.ui.pages/resources/org/jboss/tools/seam/ui/pages/editor/icons/ico_cross.gif
Modified:
trunk/seam/plugins/org.jboss.tools.seam.ui.pages/images/xstudio/editors/seam-pages.gif
trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/edit/LinkEditPart.java
trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/edit/ParamListEditPart.java
trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/figures/ExceptionFigure.java
trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/figures/NodeFigure.java
trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/figures/PageFigure.java
trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/figures/ParamFigure.java
trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/figures/ParamListLayout.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-2254
fine diagram tuning
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui.pages/images/xstudio/editors/seam-pages.gif
===================================================================
(Binary files differ)
Added: trunk/seam/plugins/org.jboss.tools.seam.ui.pages/resources/org/jboss/tools/seam/ui/pages/editor/icons/ico_cross.gif
===================================================================
(Binary files differ)
Property changes on: trunk/seam/plugins/org.jboss.tools.seam.ui.pages/resources/org/jboss/tools/seam/ui/pages/editor/icons/ico_cross.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/edit/LinkEditPart.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/edit/LinkEditPart.java 2008-09-26 11:42:12 UTC (rev 10498)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/edit/LinkEditPart.java 2008-09-26 12:08:30 UTC (rev 10499)
@@ -27,17 +27,16 @@
import org.eclipse.gef.EditPolicy;
import org.eclipse.gef.Request;
import org.eclipse.gef.RequestConstants;
-import org.eclipse.gef.SelectionManager;
import org.eclipse.gef.editparts.AbstractConnectionEditPart;
import org.eclipse.jface.resource.ImageDescriptor;
-import org.eclipse.jface.viewers.ISelectionProvider;
import org.eclipse.jface.viewers.StructuredSelection;
+import org.eclipse.swt.SWT;
import org.eclipse.swt.accessibility.AccessibleEvent;
+import org.eclipse.swt.graphics.Font;
import org.eclipse.swt.graphics.Image;
import org.jboss.tools.common.gef.edit.GEFRootEditPart;
import org.jboss.tools.common.gef.figures.GEFLabel;
import org.jboss.tools.common.gef.figures.xpl.CustomLocator;
-import org.jboss.tools.common.model.XModelObject;
import org.jboss.tools.seam.ui.pages.editor.PagesEditor;
import org.jboss.tools.seam.ui.pages.editor.PagesEditor.ModelSelectionProvider;
import org.jboss.tools.seam.ui.pages.editor.ecore.pages.Link;
@@ -48,8 +47,10 @@
public class LinkEditPart extends AbstractConnectionEditPart implements
PropertyChangeListener, EditPartListener {
- public static final Image icon = ImageDescriptor.createFromFile(
+ private static final Image icon = ImageDescriptor.createFromFile(
PagesEditor.class, "icons/shortcut.gif").createImage();
+
+ private static final Font pathFont = new Font(null, "default", 8, SWT.NONE);
AccessibleEditPart acc;
@@ -119,8 +120,7 @@
pathLabel = new GEFLabel(getLink().getName(),
FigureFactory.normalColor);
-// pathLabel.setFont(getLink().getJSFModel().getOptions()
-// .getLinkPathFont());
+ pathLabel.setFont(pathFont);
pathLabel.setIcon(null);
pathLabel.setTextAlignment(Label.LEFT);
pathLabel.setLabelAlignment(Label.LEFT);
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/edit/ParamListEditPart.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/edit/ParamListEditPart.java 2008-09-26 11:42:12 UTC (rev 10498)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/edit/ParamListEditPart.java 2008-09-26 12:08:30 UTC (rev 10499)
@@ -91,7 +91,7 @@
if(links == 0)
links = 1;
loc.y += 25+links*NodeFigure.LINK_HEIGHT;
- size = new Dimension(200, getPageWrapperModel().getPage().getChildren().size()*19);
+ size = new Dimension(200, getPageWrapperModel().getPage().getChildren().size()*19+2);
adjustForGrid(loc);
Rectangle r = new Rectangle(loc, size);
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/figures/ExceptionFigure.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/figures/ExceptionFigure.java 2008-09-26 11:42:12 UTC (rev 10498)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/figures/ExceptionFigure.java 2008-09-26 12:08:30 UTC (rev 10499)
@@ -118,7 +118,7 @@
if(exc != null){
g.setFont(nodeLabelFont);
- g.drawString(getExceptionReadOnlyLabel(), 27, 1);
+ g.drawString(getExceptionReadOnlyLabel(), 27, 3);
}
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/figures/NodeFigure.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/figures/NodeFigure.java 2008-09-26 11:42:12 UTC (rev 10498)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/figures/NodeFigure.java 2008-09-26 12:08:30 UTC (rev 10499)
@@ -25,7 +25,7 @@
public final static Color ghostFillColor = new Color(null, 31, 31, 31);
- public static final Font nodeLabelFont = new Font(null, "default", 10, SWT.BOLD); // TODO: use preference font mechanism for this
+ public static final Font nodeLabelFont = new Font(null, "default", 8, SWT.BOLD); // TODO: use preference font mechanism for this
public static final Color lightGrayColor = new Color(null, 0xf1, 0xf1, 0xf1);
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/figures/PageFigure.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/figures/PageFigure.java 2008-09-26 11:42:12 UTC (rev 10498)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/figures/PageFigure.java 2008-09-26 12:08:30 UTC (rev 10499)
@@ -42,6 +42,8 @@
private static final Color greyForeground = new Color(null, 0x99, 0x95, 0x99);
+ private static final Color borderColor = new Color(null, 0xad, 0xa9, 0xad);
+
private static final Image pageImage = ImageDescriptor.createFromFile(
PagesEditor.class, "icons/ico_page.png").createImage();
@@ -50,6 +52,9 @@
private static final Image minusImage = ImageDescriptor.createFromFile(
PagesEditor.class, "icons/ico_minus.png").createImage();
+
+ private static final Image crossImage = ImageDescriptor.createFromFile(
+ PagesEditor.class, "icons/ico_cross.gif").createImage();
public Page page;
@@ -148,7 +153,7 @@
g.drawImage(pageImage, 1, 1);
if(page != null && page.getData() != null && SeamPagesDiagramStructureHelper.instance.isUnconfirmedPage((XModelObject)page.getData())){
- g.drawImage(errorIcon, getInsetX(), getInsetY()+8);
+ g.drawImage(crossImage, getInsetX()-1, getInsetY()+4);
}
if(page != null && page.getName() != null){
@@ -187,16 +192,17 @@
int width = r.width - 1;
int height = r.height - 1;
+ if (page != null)
+ graphics.setForegroundColor(foregroundColor);
+ else
+ graphics.setForegroundColor(greyForeground);
+
// if page has not page element
if(page != null && !page.isConfirmed()){
graphics.setLineDash(new int[]{3,3});
graphics.setLineStyle(SWT.LINE_CUSTOM);
+ graphics.setForegroundColor(borderColor);
}
-
- if (page != null)
- graphics.setForegroundColor(foregroundColor);
- else
- graphics.setForegroundColor(greyForeground);
graphics.drawLine(1, 0, width-1, 0);
graphics.drawLine(0, 1, 0, height - 1);
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/figures/ParamFigure.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/figures/ParamFigure.java 2008-09-26 11:42:12 UTC (rev 10498)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/figures/ParamFigure.java 2008-09-26 12:08:30 UTC (rev 10499)
@@ -18,6 +18,7 @@
import org.eclipse.gef.EditPart;
import org.eclipse.gef.handles.HandleBounds;
import org.eclipse.swt.SWT;
+import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.graphics.Font;
import org.jboss.tools.seam.ui.pages.editor.ecore.pages.Param;
import org.jboss.tools.seam.ui.pages.editor.edit.ParamEditPart;
@@ -25,9 +26,11 @@
public class ParamFigure extends NodeFigure implements HandleBounds {
private static final Dimension SIZE = new Dimension(56, 100);
- private static final Font nameParamFont = new Font(null, "default", 10, SWT.BOLD); // TODO: use preference font mechanism for this
+ private static final Font nameParamFont = new Font(null, "default", 8, SWT.BOLD); // TODO: use preference font mechanism for this
- private static final Font valueParamFont = new Font(null, "default", 10, SWT.NORMAL); // TODO: use preference font mechanism for this
+ private static final Font valueParamFont = new Font(null, "default", 8, SWT.NORMAL); // TODO: use preference font mechanism for this
+
+ private static final Color selectionColor = new Color(null, 0x41, 0x77, 0xa0);
public Param param;
@@ -74,11 +77,13 @@
if (editPart.getSelected() == EditPart.SELECTED_PRIMARY
|| editPart.getSelected() == EditPart.SELECTED) {
- g.setBackgroundColor(ColorConstants.white);
+ g.setBackgroundColor(selectionColor);
+ g.setForegroundColor(ColorConstants.white);
g.fillRectangle(1, 1, r.width-2, r.height-2);
} else {
g.setBackgroundColor(lightGrayColor);
+ g.setForegroundColor(ColorConstants.black);
g.fillRectangle(1, 1, r.width-2, r.height-2);
}
String name;
@@ -96,10 +101,10 @@
if(param != null){
g.setFont(nameParamFont);
- g.drawString(name, getTextInset(), 1);
+ g.drawString(name, getTextInset(), 2);
g.setFont(valueParamFont);
- g.drawString(value, getTextWidth()+3*getTextInset(), 1);
+ g.drawString(value, getTextWidth()+3*getTextInset(), 2);
}
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/figures/ParamListLayout.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/figures/ParamListLayout.java 2008-09-26 11:42:12 UTC (rev 10498)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui.pages/src/org/jboss/tools/seam/ui/pages/editor/figures/ParamListLayout.java 2008-09-26 12:08:30 UTC (rev 10499)
@@ -34,8 +34,8 @@
for (int i = 0; i < container.getChildren().size(); i++) {
IFigure figure = (IFigure) container.getChildren().get(i);
- figure.setLocation(new Point(bounds.x + 5, bounds.y + y));
- figure.setSize(container.getSize().width - 5, 19);
+ figure.setLocation(new Point(bounds.x + 1, bounds.y + y + 1));
+ figure.setSize(container.getSize().width - 2, 19);
y += 19;
}
}
16 years, 3 months
JBoss Tools SVN: r10498 - trunk/esb/docs/esb_ref_guide/en.
by jbosstools-commits@lists.jboss.org
Author: abogachuk
Date: 2008-09-26 07:42:12 -0400 (Fri, 26 Sep 2008)
New Revision: 10498
Modified:
trunk/esb/docs/esb_ref_guide/en/master.xml
Log:
Modified: trunk/esb/docs/esb_ref_guide/en/master.xml
===================================================================
--- trunk/esb/docs/esb_ref_guide/en/master.xml 2008-09-26 11:39:04 UTC (rev 10497)
+++ trunk/esb/docs/esb_ref_guide/en/master.xml 2008-09-26 11:42:12 UTC (rev 10498)
@@ -4,37 +4,26 @@
[
<!ENTITY introduction SYSTEM "modules/introduction.xml">
-<!ENTITY esb_support SYSTEM "modules/esb_support.xml">
-<!ENTITY esb_editor SYSTEM "modules/esb_editor.xml">
+<!ENTITY birt_support SYSTEM "modules/birt_support.xml">
+<!ENTITY birt_designer SYSTEM "modules/birt_designer.xml">
-<!ENTITY seamlink "../../seam/html_single/index.html">
-<!ENTITY aslink "../../as/html_single/index.html">
-<!ENTITY esblink "../../esb_ref_guide/html_single/index.html">
-<!ENTITY gsglink "../../GettingStartedGuide/html_single/index.html">
-<!ENTITY hibernatelink "../../hibernatetools/html_single/index.html">
-<!ENTITY jbpmlink "../../jbpm/html_single/index.html">
-<!ENTITY jsflink "../../jsf/html_single/index.html">
-<!ENTITY jsfreflink "../../jsf_tools_ref_guide/html_single/index.html">
-<!ENTITY jsftutoriallink "../../jsf_tools_tutorial/html_single/index.html">
-<!ENTITY strutsreflink "../../struts_tools_ref_guide/html_single/index.html">
-<!ENTITY strutstutoriallink "../../struts_tools_tutorial/html_single/index.html">
+
]>
<book>
<bookinfo>
- <title>ESB Tools Reference Guide</title>
+ <title>Birt Plugin Reference Guide</title>
- <author><firstname>Svetlana</firstname><surname>Mukhina</surname><email>smukhina(a)exadel.com</email></author>
- <author><firstname>Tatyana</firstname><surname>Romanovich</surname></author>
+ <author><firstname>Anastasiya</firstname><surname>Bogachuk</surname><email>abogachuk(a)exadel.com</email></author>
+
- <pubdate>April 2008</pubdate>
+ <pubdate>August 2008</pubdate>
<copyright>
- <year>2007</year>
- <year>2008</year>
+ <year>2008</year>
<holder>JBoss, a division of Red Hat Inc.</holder>
</copyright>
<releaseinfo>
- Version: 3.0.0.alpha
+ Version: 1.0.0.alpha
</releaseinfo>
<abstract>
@@ -48,7 +37,8 @@
<toc/>
&introduction;
- &esb_support;
- &esb_editor;
+ &birt_support;
+ &birt_designer;
+
</book>
\ No newline at end of file
16 years, 3 months
JBoss Tools SVN: r10497 - trunk/birt/docs/reference.
by jbosstools-commits@lists.jboss.org
Author: abogachuk
Date: 2008-09-26 07:39:04 -0400 (Fri, 26 Sep 2008)
New Revision: 10497
Added:
trunk/birt/docs/reference/pom.xml
Log:
Added: trunk/birt/docs/reference/pom.xml
===================================================================
--- trunk/birt/docs/reference/pom.xml (rev 0)
+++ trunk/birt/docs/reference/pom.xml 2008-09-26 11:39:04 UTC (rev 10497)
@@ -0,0 +1,103 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>birt-reference-guide-${translation}</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ <packaging>jdocbook</packaging>
+ <name>Birt_Reference_Guide</name>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.1.0-200803311251UTC-MPJDOCBOOK-8</version>
+ <extensions>true</extensions>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jbossorg-docbook-xslt</artifactId>
+ <version>1.1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jbossorg-jdocbook-style</artifactId>
+ <version>1.1.0</version>
+ <type>jdocbook-style</type>
+ </dependency>
+ </dependencies>
+
+ <configuration>
+ <sourceDocumentName>master.xml</sourceDocumentName>
+ <sourceDirectory>${pom.basedir}/en</sourceDirectory>
+ <imageResource>
+ <directory>${pom.basedir}/en</directory>
+ <includes>
+ <include>images/**/*</include>
+ </includes>
+ </imageResource>
+ <cssResource>
+ <directory>${pom.basedir}/${cssdir}</directory>
+ </cssResource>
+
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>file:${pom.basedir}/${stylesdir}/xslt/org/jboss/tools/pdf.xsl</stylesheetResource>
+ <finalName>${pom.name}.pdf</finalName>
+ </format>
+ <format>
+ <formatName>html</formatName>
+ <stylesheetResource>file:${pom.basedir}/${stylesdir}/xslt/org/jboss/tools/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>html_single</formatName>
+ <stylesheetResource>file:${pom.basedir}/${stylesdir}/xslt/org/jboss/tools/xhtml-single.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ <format>
+ <formatName>eclipse</formatName>
+ <stylesheetResource>file:${pom.basedir}/${stylesdir}/xslt/org/jboss/tools/eclipse.xsl</stylesheetResource>
+ <finalName>index.html</finalName>
+ </format>
+ </formats>
+ <options>
+ <xincludeSupported>true</xincludeSupported>
+ <xmlTransformerType>saxon</xmlTransformerType>
+ <!-- needed for uri-resolvers; can be ommitted if using 'current' uri scheme -->
+ <!-- could also locate the docbook dependency and inspect its version... -->
+ <docbookVersion>1.72.0</docbookVersion>
+ </options>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <distributionManagement>
+ <repository>
+ <!-- Copy the dist to the local checkout of the JBoss maven2 repo ${maven.repository.root} -->
+ <!-- It is anticipated that ${maven.repository.root} be set in user's settings.xml -->
+ <!-- todo : replace this with direct svn access once the svnkit providers are available -->
+ <id>repository.jboss.org</id>
+ <url>file://${maven.repository.root}</url>
+ </repository>
+ <snapshotRepository>
+ <id>snapshots.jboss.org</id>
+ <name>JBoss Snapshot Repository</name>
+ <url>dav:https://snapshots.jboss.org/maven2</url>
+ </snapshotRepository>
+ </distributionManagement>
+
+ <properties>
+ <stylesdir>../../../documentation/jbosstools-docbook-xslt/src/main/resources</stylesdir>
+ <cssdir>../../../documentation/jbosstools-jdocbook-style/src/main/org/css</cssdir>
+ <translation>en-US</translation>
+ </properties>
+
+</project>
16 years, 3 months
JBoss Tools SVN: r10495 - trunk/esb/docs/esb_ref_guide/en/modules.
by jbosstools-commits@lists.jboss.org
Author: abogachuk
Date: 2008-09-26 07:26:25 -0400 (Fri, 26 Sep 2008)
New Revision: 10495
Added:
trunk/esb/docs/esb_ref_guide/en/modules/birt_designer.xml
trunk/esb/docs/esb_ref_guide/en/modules/birt_support.xml
Log:
updated chapters added
Added: trunk/esb/docs/esb_ref_guide/en/modules/birt_designer.xml
===================================================================
--- trunk/esb/docs/esb_ref_guide/en/modules/birt_designer.xml (rev 0)
+++ trunk/esb/docs/esb_ref_guide/en/modules/birt_designer.xml 2008-09-26 11:26:25 UTC (rev 10495)
@@ -0,0 +1,213 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<chapter id="birt_designer" xreflabel="birt_designer">
+ <?dbhtml filename="birtDesigner.html"?>
+ <chapterinfo>
+ <keywordset>
+ <keyword>JBoss BIRT</keyword>
+ <keyword>BIRT</keyword>
+ <keyword>BIRT Designer</keyword>
+
+ </keywordset>
+ </chapterinfo>
+
+ <title>BIRT Designer</title>
+
+ <para>text here</para>
+
+ <section id="esb_file">
+
+ <title>ESB File Editor</title>
+ <para><property>ESB File Editor</property> is a powerful and customizable tool. ESB File Editor allows developing an
+ application using ESB technology.</para>
+
+ <para>ESB file editor has two tabs: Tree and Source.</para>
+
+ <para>You can switch to Tree. The Tree view for the editor displays all ESB artifacts in a tree format.
+ By selecting any node you can see and edit its properties which will appear in the right-hand area. For example, a Provider:</para>
+ <figure>
+ <title>Tree View</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/esb_editor/01_esb_tree_view.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para>You can easily switch from Tree to Source by selecting the Source tab at the bottom of the editor and work in <link linkend="sourceView">Source view</link>.</para>
+
+ <figure id="sourceView">
+ <title>Source View</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/esb_editor/02_esb_source_view.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>The Source view for the editor displays a text content of the ESB file. It is always synchronized with tree view,
+ so any changes made in one of the views will immediately appear in the other.</para>
+ <para>No matter what view you select, you get full integration with <!--Properties and -->Outline view<!-- views -->.
+ For example, you can work in the Source view with the help of the Outline view. The Outline view shows a tree structure of the ESB file.
+ Simply select any element in the Outline view and it will jump to the same place in the Source editor,
+ so you can navigate through the source code with Outline view.</para>
+ <figure>
+ <title>Outline View</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/esb_editor/03_esb_outline_view.png" scale="70"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para>Adding, editing or deleting of some artifacts operations are available right in the <property>Tree</property> view. Right-click any node and select one of the available actions in the context menu.
+ For example, you can easily add a new provider:</para>
+ <para></para>
+ <figure>
+ <title>Adding new provider</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/esb_editor/04_esb_add_provider.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para>You can easily add a new service too:</para>
+ <figure>
+ <title>Adding new service</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/esb_editor/05_esb_add_service.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para>The same way you can create a listener for service and other elements of ESB:</para>
+ <figure>
+ <title>Adding new listener for service</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/esb_editor/06_esb_add_listener.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>The same actions can be done in the right part of <property>Tree</property> view tab
+ using <property>Add</property>, <property>Edit</property> and <property>Remove</property> buttons.</para>
+ </section>
+
+
+
+ <section id="esb_editors_features">
+
+ <title>ESB Editors Features</title>
+ <para>JBoss ESB tooling has powerful editor features that help you easily make use of content and code assist.</para>
+
+ <section id="ESBsyntaxvalidation84">
+
+ <title>ESB syntax validation</title>
+ <para>When working in JBoss ESB editor you are constantly provided with feedback
+ and contextual error checking as you type. In the Source viewer, if at any point a tag is incorrect or incomplete, an error will be indicated next to the line and also in the Problems view below.</para>
+ </section>
+
+ <section id="ESBSupportXMLSchema">
+ <title>Support for XML Schema</title>
+
+ <para>JBoss ESB Framework fully
+ <link linkend="sourceView">supports XML files based on schemas as well as DTDs</link>.</para>
+ </section>
+
+ <!--<section id="OpenOnSelection">
+
+ <title>OpenOn</title>
+
+ <para><property>OpenOn</property> let's you easily navigate through your
+ project without using the Package Explorer view (project tree). With OpenOn, you can
+ simply click on a reference to another file and that file will be opened.</para>
+
+ <para>OpenOn is available for the XML files </para>
+
+ <para>Press and hold down the Ctrl key. As you move the mouse cursor over different
+ file references in the file, they display an underline. When you have the mouse
+ cursor over the name of the file you want to open, click and the file will open
+ in its own editor. In this example the managed bean NameBean will open.</para>
+
+ </section>
+ -->
+
+ <section id="ESBContentAssist">
+
+ <title>Content Assist for ESB XML file</title>
+
+ <para>When you work with any ESB XML file <property>Content Assist</property> is available to help you.
+ It provides pop-up tip to help you complete your code statements.
+ It allows you to write your code faster and with more accuracy.
+ Content assist is always available in the Source mode. Simply type <emphasis>
+ <property>Ctrl-Space</property></emphasis> to see what is available.</para>
+
+ <para>Content Assist for ESB XML file:</para>
+ <figure>
+ <title>Content Assist for ESB XML file</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata
+ fileref="images/esb_editor/08_esb_features.png" scale="80"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para>Content Assist for attributes:</para>
+ <figure>
+ <title>Content Assist for attributes:</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata
+ fileref="images/esb_editor/09_esb_features.png" scale="80"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <!-- </section>
+
+ <section id="ContentAssistWithinTreeEditor">
+
+ <title>Content Assist within Tree ESB Editor</title>
+
+ <para>JBoss Developer Studio also provides Content Assist when working within the Tree ESB editor.
+ Just click <emphasis><property>Ctrl-Space</property>.</emphasis></para>
+ <figure>
+ <title>Content Assist in Tree ESB Editor</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata
+ fileref="images/esb_file/09_editors_features.png" scale="85"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </section> -->
+ </section>
+
+ <section id="FullControlOverSourceFiles-SynchronizedSourcAndVisualEditing">
+
+ <title>Synchronized Source and Visual Editing</title>
+
+ <para>ESB file can be edited in either source
+ or extra visual modes at the same time.</para>
+
+ <para>JBoss Tools provide you two different editors to speed your development: a graphical view (<property>Tree</property>) and source
+ (<property>Source</property>). At the same time, you always have full control over esb source file. Any changes you
+ make in the source view will immediately appear in the tree view. Both views are synchronized, you can edit the file in any view.</para>
+
+ <figure>
+ <title>Two Views are Synchronized</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/esb_editor/10_esb_features.png" scale="70"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ </section>
+
+ <para>The last chapter covers capabilities on how you can use ESB editor.</para>
+
+ <para>In summary, this reference supplies you with all necessary information on the functionality
+ that JBoss ESB Editor provides for work with JBoss ESB.</para>
+ </section>
+</chapter>
Added: trunk/esb/docs/esb_ref_guide/en/modules/birt_support.xml
===================================================================
--- trunk/esb/docs/esb_ref_guide/en/modules/birt_support.xml (rev 0)
+++ trunk/esb/docs/esb_ref_guide/en/modules/birt_support.xml 2008-09-26 11:26:25 UTC (rev 10495)
@@ -0,0 +1,90 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<chapter id="esb_support">
+ <?dbhtml filename="esb_support.html"?>
+ <chapterinfo>
+ <keywordset>
+ <keyword>JBoss Developer Studio</keyword>
+ <keyword>Eclipse</keyword>
+ <keyword>BIRT</keyword>
+ <keyword>Java</keyword>
+ <keyword>JBoss</keyword>
+ </keywordset>
+ </chapterinfo>
+
+ <title>BIRT Support</title>
+
+ <para>In this section we will focus more on all concepts that JBoss Tools integrates for
+ working with BIRT.</para>
+
+ <section>
+ <title>BIRT Plugin Installation</title>
+
+ <para>This chapter will provide you with detailed information on how to install BIRT plugin into JBoss Developer Studio.</para>
+
+ <para>Since BIRT plugin is one of the modules of JBoss Tools project it has a dependence on other modules and will require their pre-installation. </para>
+
+ <para>These are the prerequisites to create a web project including Seam and BIRT capabilities:</para>
+ <itemizedlist>
+ <listitem><para>Eclipse Version 3.4 SDK</para></listitem>
+ <listitem><para>DTP Version 1.6 Release</para></listitem>
+ <listitem><para>EMF Version 2.4 Release EMF+XSD</para></listitem>
+ <listitem><para>GEF Version 3.4 Release runtime</para></listitem>
+ <listitem><para>WTP Version 3.0 Release</para></listitem>
+ <listitem><para>BIRT Report Designer SDK 2.3.0 Release or BIRT Report Designer 2.3.0 Release <ulink url="http://repository.jboss.org/eclipse/birt/2.3.0/birt-report-framework-2_3_...">download here</ulink></para></listitem>
+ <listitem><para>JBoss Application Server 4.2.2 GA</para></listitem>
+ <listitem><para>JBoss Seam 2.0.1 GA</para></listitem>
+ <listitem><para>BIRT Web Tools Integration <ulink url="http://repository.jboss.org/eclipse/birt/2.3.0/birt-wtp-integration-sdk-2...">download here</ulink></para></listitem>
+ <listitem><para>JBoss Tools nightly build</para></listitem>
+
+ </itemizedlist>
+
+
+
+ </section>
+
+<section>
+
+ <title>JBoss BIRT Integration</title>
+ <para>To understand Hibernate configuration, integration with Seam, and deployment see <ulink url="http://docs.jboss.org/tools/whatsnew/birt/birt-news-1.0.0.Alpha1.html">JBoss BIRT Integration 1.0.0.alpha1 - New and Noteworthy</ulink>.</para>
+
+</section>
+
+ <section>
+ <title>Creating a BIRT Report</title>
+ <para>In this chapter we suggest a step-by-step walk-through of creating your own BIRT report.</para>
+
+ <para>We will show you how to use the Creation wizard for creating a new BIRT report.</para>
+
+ <para>Select <emphasis><property>File >New > Other...</property>
+ </emphasis> in the main menu bar or context menu for selected project and then <emphasis><property>ESB > ESB File</property></emphasis> in the New dialog:</para>
+
+ <figure>
+ <title>New Dialog</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/esb_support/01_create_esb.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para> Clicking <emphasis><property>Next</property></emphasis> brings us to the wizard page where it's necessary to specify the
+ folder, name and version for the file. We choose, for example, <emphasis><property>jboss-esb.xml</property>
+ </emphasis> as the name and accept the selected projects folder and default version.</para>
+ <figure>
+ <title>Folder, Name and Version</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/esb_support/02_create_esb.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+
+ <para>Thus, our file will be created in the selected projects folder by default. If you want to change the folder
+ for your future file click <emphasis><property>Browse...</property></emphasis> button to set needed folder or simply type it.</para>
+
+ <para>Clicking on <emphasis><property>Finish</property>
+ </emphasis> results in the file being generated. The wizard creates one xml file.</para>
+
+ </section>
+
+</chapter>
16 years, 3 months
JBoss Tools SVN: r10494 - trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template.
by jbosstools-commits@lists.jboss.org
Author: sdzmitrovich
Date: 2008-09-26 06:51:30 -0400 (Fri, 26 Sep 2008)
New Revision: 10494
Modified:
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/VpeHtmlTemplate.java
Log:
// was commented to correct work of non-visual templates which have
// visual children
// (for example rich:graphValidator)
Modified: trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/VpeHtmlTemplate.java
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/VpeHtmlTemplate.java 2008-09-26 06:22:23 UTC (rev 10493)
+++ trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/VpeHtmlTemplate.java 2008-09-26 10:51:30 UTC (rev 10494)
@@ -188,7 +188,10 @@
}
@Override
public boolean isChildren() {
- return creator == null ? false : children;
+ // was commented to correct work of non-visual templates which have
+ // visual children
+ // (for example rich:graphValidator)
+ return /* creator == null ? false : */children;
}
private VpeCreatorInfo createVisualElement(VpePageContext pageContext, Element sourceElement, nsIDOMDocument visualDocument, nsIDOMElement visualParent, Map<VpeTemplate,ModifyInfo> visualNodeMap) {
16 years, 3 months
JBoss Tools SVN: r10493 - in trunk/smooks: plugins/org.jboss.tools.smooks.java2xml/src/org/jboss/tools/smooks/java2xml/analyzer and 2 other directories.
by jbosstools-commits@lists.jboss.org
Author: DartPeng
Date: 2008-09-26 02:22:23 -0400 (Fri, 26 Sep 2008)
New Revision: 10493
Modified:
trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/.classpath
trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/build.properties
trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/src/org/jboss/tools/smooks/java2xml/analyzer/FreeMarkerContentReplacer.java
trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/src/org/jboss/tools/smooks/java2xml/utils/XMLConstants.java
trunk/smooks/tests/org.jboss.tools.smooks.test/src/org/jboss/tools/smooks/test/xml/FreeMarkerTest.java
Log:
delete the freemarker.jar.
I will find other way to instead of it.
Modified: trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/.classpath
===================================================================
--- trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/.classpath 2008-09-26 06:21:37 UTC (rev 10492)
+++ trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/.classpath 2008-09-26 06:22:23 UTC (rev 10493)
@@ -4,6 +4,5 @@
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="lib" path="libs/dom4j-1.6.1.jar"/>
- <classpathentry kind="lib" path="libs/freemarker-2.3.8.jar"/>
<classpathentry kind="output" path="bin"/>
</classpath>
Modified: trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/build.properties
===================================================================
--- trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/build.properties 2008-09-26 06:21:37 UTC (rev 10492)
+++ trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/build.properties 2008-09-26 06:22:23 UTC (rev 10493)
@@ -3,5 +3,4 @@
bin.includes = META-INF/,\
.,\
plugin.xml,\
- libs/dom4j-1.6.1.jar,\
- libs/freemarker-2.3.8.jar
+ libs/dom4j-1.6.1.jar
Modified: trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/src/org/jboss/tools/smooks/java2xml/analyzer/FreeMarkerContentReplacer.java
===================================================================
--- trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/src/org/jboss/tools/smooks/java2xml/analyzer/FreeMarkerContentReplacer.java 2008-09-26 06:21:37 UTC (rev 10492)
+++ trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/src/org/jboss/tools/smooks/java2xml/analyzer/FreeMarkerContentReplacer.java 2008-09-26 06:22:23 UTC (rev 10493)
@@ -13,15 +13,7 @@
import java.io.IOException;
import java.io.Reader;
import java.io.StringReader;
-import java.util.Enumeration;
-import org.jboss.tools.smooks.java2xml.utils.XMLConstants;
-
-import freemarker.core.TemplateElement;
-import freemarker.core.TextBlock;
-import freemarker.template.Configuration;
-import freemarker.template.Template;
-
/**
* @author Dart Peng
* @Date : Sep 25, 2008
@@ -29,14 +21,14 @@
public class FreeMarkerContentReplacer {
public String replaceFreeMarkerTemplate(Reader reader) throws IOException {
-
- Configuration fmConfiguration = new Configuration();
- fmConfiguration.setTagSyntax(Configuration.AUTO_DETECT_TAG_SYNTAX);
StringBuffer buffer = new StringBuffer();
- Template template;
- template = new Template("XML2Java_FreeMarker", reader, fmConfiguration);
- TemplateElement root = template.getRootTreeNode();
- visitTemplateElement(root, buffer);
+// Configuration fmConfiguration = new Configuration();
+// fmConfiguration.setTagSyntax(Configuration.AUTO_DETECT_TAG_SYNTAX);
+//
+// Template template;
+// template = new Template("XML2Java_FreeMarker", reader, fmConfiguration);
+// TemplateElement root = template.getRootTreeNode();
+// visitTemplateElement(root, buffer);
return buffer.toString();
}
@@ -46,39 +38,39 @@
return replaceFreeMarkerTemplate(reader);
}
- private void visitTemplateElement(TemplateElement model, StringBuffer buffer) {
+// private void visitTemplateElement(TemplateElement model, StringBuffer buffer) {
- Enumeration children = ((TemplateElement) model).children();
- if (!"MixedContent".equals(model.getNodeName())) {
- buffer
- .append("<"
- + XMLConstants.REPLACE_FREEMARKER_FOR_EXPRESS_ELEMENT_NAME
- + " "
- + XMLConstants.REPLACE_FREEMARKER_FOR_EXPRESS_ELEMENT_ATTRIBUTE
- + "= \"" + model.getDescription() + "\">");
- }
- while (children.hasMoreElements()) {
- Object obj = children.nextElement();
- if (!(obj instanceof TextBlock)) {
- TemplateElement child = (TemplateElement) obj;
- String str = child.getSource();
- if (child.isLeaf()) {
- if (child.getNodeName().equals("DollarVariable")) {
- buffer.append(child.getSource());
- } else {
- buffer.append(child.getDescription());
- }
- continue;
- }
- visitTemplateElement(child, buffer);
- } else {
- buffer.append(obj);
- }
- }
- if (!"MixedContent".equals(model.getNodeName())) {
- buffer.append("</"
- + XMLConstants.REPLACE_FREEMARKER_FOR_EXPRESS_ELEMENT_NAME
- + ">");
- }
- }
+// Enumeration children = ((TemplateElement) model).children();
+// if (!"MixedContent".equals(model.getNodeName())) {
+// buffer
+// .append("<"
+// + XMLConstants.REPLACE_FREEMARKER_FOR_EXPRESS_ELEMENT_NAME
+// + " "
+// + XMLConstants.REPLACE_FREEMARKER_FOR_EXPRESS_ELEMENT_ATTRIBUTE
+// + "= \"" + model.getDescription() + "\">");
+// }
+// while (children.hasMoreElements()) {
+// Object obj = children.nextElement();
+// if (!(obj instanceof TextBlock)) {
+// TemplateElement child = (TemplateElement) obj;
+// String str = child.getSource();
+// if (child.isLeaf()) {
+// if (child.getNodeName().equals("DollarVariable")) {
+// buffer.append(child.getSource());
+// } else {
+// buffer.append(child.getDescription());
+// }
+// continue;
+// }
+// visitTemplateElement(child, buffer);
+// } else {
+// buffer.append(obj);
+// }
+// }
+// if (!"MixedContent".equals(model.getNodeName())) {
+// buffer.append("</"
+// + XMLConstants.REPLACE_FREEMARKER_FOR_EXPRESS_ELEMENT_NAME
+// + ">");
+// }
+// }
}
Modified: trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/src/org/jboss/tools/smooks/java2xml/utils/XMLConstants.java
===================================================================
--- trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/src/org/jboss/tools/smooks/java2xml/utils/XMLConstants.java 2008-09-26 06:21:37 UTC (rev 10492)
+++ trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/src/org/jboss/tools/smooks/java2xml/utils/XMLConstants.java 2008-09-26 06:22:23 UTC (rev 10493)
@@ -15,7 +15,7 @@
* @Date : Sep 25, 2008
*/
public class XMLConstants {
- public static final String REPLACE_FREEMARKER_FOR_EXPRESS_ELEMENT_NAME = "adfafdafafda_dfafda";
+ public static final String REPLACE_FREEMARKER_FOR_EXPRESS_ELEMENT_NAME = "replaceElementNameForFreeMarker";
public static final String REPLACE_FREEMARKER_FOR_EXPRESS_ELEMENT_ATTRIBUTE = "desc";
Modified: trunk/smooks/tests/org.jboss.tools.smooks.test/src/org/jboss/tools/smooks/test/xml/FreeMarkerTest.java
===================================================================
--- trunk/smooks/tests/org.jboss.tools.smooks.test/src/org/jboss/tools/smooks/test/xml/FreeMarkerTest.java 2008-09-26 06:21:37 UTC (rev 10492)
+++ trunk/smooks/tests/org.jboss.tools.smooks.test/src/org/jboss/tools/smooks/test/xml/FreeMarkerTest.java 2008-09-26 06:22:23 UTC (rev 10493)
@@ -10,18 +10,11 @@
******************************************************************************/
package org.jboss.tools.smooks.test.xml;
-import java.io.ByteArrayInputStream;
import java.io.IOException;
-import java.io.InputStreamReader;
-import java.io.Reader;
import junit.framework.TestCase;
-import org.dom4j.Document;
import org.dom4j.DocumentException;
-import org.dom4j.io.SAXReader;
-import org.jboss.tools.smooks.java2xml.analyzer.DOM2FreeMarkerTransformor;
-import org.jboss.tools.smooks.java2xml.analyzer.FreeMarkerContentReplacer;
/**
* @author Dart Peng
@@ -29,17 +22,17 @@
*/
public class FreeMarkerTest extends TestCase {
public void testParse() throws DocumentException, IOException {
- Reader reader = new InputStreamReader(FreeMarkerTest.class
- .getResourceAsStream("test.flt"));
- FreeMarkerContentReplacer replacer = new FreeMarkerContentReplacer();
- String contents = replacer.replaceFreeMarkerTemplate(reader);
- System.out.println(contents);
-
- SAXReader sax = new SAXReader();
- Document doc = sax.read(new ByteArrayInputStream(contents.getBytes()));
- DOM2FreeMarkerTransformor trans = new DOM2FreeMarkerTransformor();
- String result = trans.transformDOM(doc);
-
- System.out.println(result);
+// Reader reader = new InputStreamReader(FreeMarkerTest.class
+// .getResourceAsStream("test.flt"));
+// FreeMarkerContentReplacer replacer = new FreeMarkerContentReplacer();
+// String contents = replacer.replaceFreeMarkerTemplate(reader);
+// System.out.println(contents);
+//
+// SAXReader sax = new SAXReader();
+// Document doc = sax.read(new ByteArrayInputStream(contents.getBytes()));
+// DOM2FreeMarkerTransformor trans = new DOM2FreeMarkerTransformor();
+// String result = trans.transformDOM(doc);
+//
+// System.out.println(result);
}
}
16 years, 3 months
JBoss Tools SVN: r10492 - trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/META-INF.
by jbosstools-commits@lists.jboss.org
Author: DartPeng
Date: 2008-09-26 02:21:37 -0400 (Fri, 26 Sep 2008)
New Revision: 10492
Modified:
trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/META-INF/MANIFEST.MF
Log:
move the freemarker.jar from "Runtime"
Modified: trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/META-INF/MANIFEST.MF
===================================================================
--- trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/META-INF/MANIFEST.MF 2008-09-26 06:20:49 UTC (rev 10491)
+++ trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/META-INF/MANIFEST.MF 2008-09-26 06:21:37 UTC (rev 10492)
@@ -15,8 +15,7 @@
org.eclipse.ui.views
Eclipse-LazyStart: true
Bundle-ClassPath: libs/dom4j-1.6.1.jar,
- .,
- libs/freemarker-2.3.8.jar
+ .
Export-Package: org.jboss.tools.smooks.java2xml,
org.jboss.tools.smooks.java2xml.analyzer,
org.jboss.tools.smooks.java2xml.utils
16 years, 3 months
JBoss Tools SVN: r10491 - trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/libs.
by jbosstools-commits@lists.jboss.org
Author: DartPeng
Date: 2008-09-26 02:20:49 -0400 (Fri, 26 Sep 2008)
New Revision: 10491
Removed:
trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/libs/freemarker-2.3.8.jar
Log:
delete the freemarker.jar.
I will find other way to instead of it.
Deleted: trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/libs/freemarker-2.3.8.jar
===================================================================
(Binary files differ)
16 years, 3 months
JBoss Tools SVN: r10490 - in trunk/smooks/plugins/org.jboss.tools.smooks.java2xml: META-INF and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2008-09-25 16:40:43 -0400 (Thu, 25 Sep 2008)
New Revision: 10490
Modified:
trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/META-INF/MANIFEST.MF
trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/build.properties
Log:
fix build compilation errors related to fremarker libraries
Modified: trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/META-INF/MANIFEST.MF
===================================================================
--- trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/META-INF/MANIFEST.MF 2008-09-25 16:23:33 UTC (rev 10489)
+++ trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/META-INF/MANIFEST.MF 2008-09-25 20:40:43 UTC (rev 10490)
@@ -15,7 +15,8 @@
org.eclipse.ui.views
Eclipse-LazyStart: true
Bundle-ClassPath: libs/dom4j-1.6.1.jar,
- .
+ .,
+ libs/freemarker-2.3.8.jar
Export-Package: org.jboss.tools.smooks.java2xml,
org.jboss.tools.smooks.java2xml.analyzer,
org.jboss.tools.smooks.java2xml.utils
Modified: trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/build.properties
===================================================================
--- trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/build.properties 2008-09-25 16:23:33 UTC (rev 10489)
+++ trunk/smooks/plugins/org.jboss.tools.smooks.java2xml/build.properties 2008-09-25 20:40:43 UTC (rev 10490)
@@ -3,4 +3,5 @@
bin.includes = META-INF/,\
.,\
plugin.xml,\
- libs/dom4j-1.6.1.jar
+ libs/dom4j-1.6.1.jar,\
+ libs/freemarker-2.3.8.jar
16 years, 3 months